Updates to 6.4.0-RC1

This commit is contained in:
ACF 2025-03-11 10:20:42 +00:00
parent 9fa1872316
commit cb9cd3202f
166 changed files with 9521 additions and 3325 deletions

29
acf.php
View File

@ -9,10 +9,10 @@
* Plugin Name: Advanced Custom Fields PRO
* Plugin URI: https://www.advancedcustomfields.com
* Description: Customize WordPress with powerful, professional and intuitive fields.
* Version: 6.3.12
* Version: 6.4.0-RC1
* Author: WP Engine
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
* Update URI: false
* Update URI: https://www.advancedcustomfields.com/pro
* Text Domain: acf
* Domain Path: /lang
* Requires PHP: 7.4
@ -36,7 +36,7 @@ if ( ! class_exists( 'ACF' ) ) {
*
* @var string
*/
public $version = '6.3.12';
public $version = '6.4.0-RC1';
/**
* The plugin settings array.
@ -130,9 +130,11 @@ if ( ! class_exists( 'ACF' ) ) {
'enable_shortcode' => true,
'enable_bidirection' => true,
'enable_block_bindings' => true,
'enable_meta_box_cb_edit' => true,
);
// Include autoloader.
include_once __DIR__ . '/vendor/autoload.php';
// Include utility functions.
include_once ACF_PATH . 'includes/acf-utility-functions.php';
@ -144,13 +146,21 @@ if ( ! class_exists( 'ACF' ) ) {
// Include classes.
acf_include( 'includes/class-acf-data.php' );
acf_include( 'includes/class-acf-internal-post-type.php' );
acf_include( 'includes/class-acf-site-health.php' );
acf_include( 'includes/fields/class-acf-field.php' );
acf_include( 'includes/locations/abstract-acf-legacy-location.php' );
acf_include( 'includes/locations/abstract-acf-location.php' );
// Initialise autoloaded classes.
new ACF\Site_Health\Site_Health();
// Include functions.
acf_include( 'includes/acf-helper-functions.php' );
acf_new_instance( 'ACF\Meta\Comment' );
acf_new_instance( 'ACF\Meta\Post' );
acf_new_instance( 'ACF\Meta\Term' );
acf_new_instance( 'ACF\Meta\User' );
acf_include( 'includes/acf-hook-functions.php' );
acf_include( 'includes/acf-field-functions.php' );
acf_include( 'includes/acf-bidirectional-functions.php' );
@ -232,7 +242,9 @@ if ( ! class_exists( 'ACF' ) ) {
acf_include( 'includes/Updater/init.php' );
// Include PRO if included with this build.
acf_include( 'pro/acf-pro.php' );
if ( ! defined( 'ACF_PREVENT_PRO_LOAD' ) || ( defined( 'ACF_PREVENT_PRO_LOAD' ) && ! ACF_PREVENT_PRO_LOAD ) ) {
acf_include( 'pro/acf-pro.php' );
}
if ( is_admin() && function_exists( 'acf_is_pro' ) && ! acf_is_pro() ) {
acf_include( 'includes/admin/admin-options-pages-preview.php' );
@ -395,9 +407,8 @@ if ( ! class_exists( 'ACF' ) ) {
*/
do_action( 'acf/include_taxonomies', ACF_MAJOR_VERSION );
// If we're on 6.5 or newer, load block bindings. This will move to an autoloader in 6.4.
if ( version_compare( get_bloginfo( 'version' ), '6.5-beta1', '>=' ) ) {
acf_include( 'includes/Blocks/Bindings.php' );
// If we're on 6.5 or newer, load block bindings.
if ( version_compare( get_bloginfo( 'version' ), '6.5', '>=' ) ) {
new ACF\Blocks\Bindings();
}

View File

@ -11,44 +11,21 @@
* @return array
*/
function acf_get_meta( $post_id = 0 ) {
// Allow filter to short-circuit load_value logic.
$null = apply_filters( 'acf/pre_load_meta', null, $post_id );
if ( $null !== null ) {
return ( $null === '__return_null' ) ? null : $null;
}
// Decode $post_id for $type and $id.
$decoded = acf_decode_post_id( $post_id );
// Decode the $post_id for $type and $id.
$decoded = acf_decode_post_id( $post_id );
$instance = acf_get_meta_instance( $decoded['type'] );
$meta = array();
/**
* Determine CRUD function.
*
* - Relies on decoded post_id result to identify option or meta types.
* - Uses xxx_metadata(type) instead of xxx_type_meta() to bypass additional logic that could alter the ID.
*/
if ( $decoded['type'] === 'option' ) {
$allmeta = acf_get_option_meta( $decoded['id'] );
} else {
$allmeta = get_metadata( $decoded['type'], $decoded['id'], '' );
if ( $instance ) {
$meta = $instance->get_meta( $decoded['id'] );
}
// Loop over meta and check that a reference exists for each value.
$meta = array();
if ( $allmeta ) {
foreach ( $allmeta as $key => $value ) {
// If a reference exists for this value, add it to the meta array.
if ( isset( $allmeta[ "_$key" ] ) ) {
$meta[ $key ] = $allmeta[ $key ][0];
$meta[ "_$key" ] = $allmeta[ "_$key" ][0];
}
}
}
// Unserialized results (get_metadata does not unserialize if $key is empty).
$meta = array_map( 'acf_maybe_unserialize', $meta );
/**
* Filters the $meta array after it has been loaded.
*
@ -74,7 +51,6 @@ function acf_get_meta( $post_id = 0 ) {
* @return array
*/
function acf_get_option_meta( $prefix = '' ) {
// Globals.
global $wpdb;
@ -241,32 +217,23 @@ function acf_delete_metadata( $post_id = 0, $name = '', $hidden = false ) {
}
/**
* acf_copy_postmeta
*
* Copies meta from one post to another. Useful for saving and restoring revisions.
*
* @date 25/06/2016
* @since 5.3.8
*
* @param (int|string) $from_post_id The post id to copy from.
* @param (int|string) $to_post_id The post id to paste to.
* @return void
* @param integer|string $from_post_id The post id to copy from.
* @param integer|string $to_post_id The post id to paste to.
* @return void
*/
function acf_copy_metadata( $from_post_id = 0, $to_post_id = 0 ) {
// Get all postmeta.
// Get all metadata.
$meta = acf_get_meta( $from_post_id );
// Check meta.
if ( $meta ) {
$decoded = acf_decode_post_id( $to_post_id );
$instance = acf_get_meta_instance( $decoded['type'] );
// Slash data. WP expects all data to be slashed and will unslash it (fixes '\' character issues).
$meta = wp_slash( $meta );
// Loop over meta.
foreach ( $meta as $name => $value ) {
acf_update_metadata( $to_post_id, $name, $value );
}
if ( $meta && $instance ) {
$instance->update_meta( $decoded['id'], $meta );
}
}
@ -382,3 +349,155 @@ function acf_update_metaref( $post_id = 0, $type = 'fields', $references = array
// Update metadata.
return acf_update_metadata( $post_id, "_acf_$type", $references );
}
/**
* Retrieves an ACF meta instance for the provided meta type.
*
* @since 6.4
*
* @param string $type The meta type as decoded from the post ID.
* @return object|null
*/
function acf_get_meta_instance( string $type ): ?object {
$instance = null;
$meta_locations = acf_get_store( 'acf-meta-locations' );
if ( $meta_locations && $meta_locations->has( $type ) ) {
$instance = acf_get_instance( $meta_locations->get( $type ) );
}
return $instance;
}
/**
* Gets metadata from the database.
*
* @since 6.4
*
* @param integer|string $post_id The post id.
* @param array $field The field array.
* @param boolean $hidden True if we should return the reference key.
* @return mixed
*/
function acf_get_metadata_by_field( $post_id = 0, $field = array(), bool $hidden = false ) {
if ( empty( $field['name'] ) ) {
return null;
}
// Allow filter to short-circuit logic.
$null = apply_filters( 'acf/pre_load_metadata', null, $post_id, $field['name'], $hidden );
if ( $null !== null ) {
return ( $null === '__return_null' ) ? null : $null;
}
// Decode the $post_id for $type and $id.
$decoded = acf_decode_post_id( $post_id );
$id = $decoded['id'];
$type = $decoded['type'];
// Bail early if no $id (possible during new acf_form).
if ( ! $id ) {
return null;
}
$meta_instance = acf_get_meta_instance( $type );
if ( ! $meta_instance ) {
return false;
}
if ( $hidden ) {
return $meta_instance->get_reference( $id, $field['name'] );
}
return $meta_instance->get_value( $id, $field );
}
/**
* Updates metadata in the database.
*
* @since 6.4
*
* @param integer|string $post_id The post id.
* @param array $field The field array.
* @param mixed $value The meta value.
* @param boolean $hidden True if we should update the reference key.
* @return integer|boolean Meta ID if the key didn't exist, true on successful update, false on failure.
*/
function acf_update_metadata_by_field( $post_id = 0, $field = array(), $value = '', bool $hidden = false ) {
if ( empty( $field['name'] ) ) {
return null;
}
// Allow filter to short-circuit logic.
$pre = apply_filters( 'acf/pre_update_metadata', null, $post_id, $field['name'], $value, $hidden );
if ( $pre !== null ) {
return $pre;
}
// Decode the $post_id for $type and $id.
$decoded = acf_decode_post_id( $post_id );
$id = $decoded['id'];
$type = $decoded['type'];
// Bail early if no $id (possible during new acf_form).
if ( ! $id ) {
return false;
}
$meta_instance = acf_get_meta_instance( $type );
if ( ! $meta_instance ) {
return false;
}
if ( $hidden ) {
return $meta_instance->update_reference( $id, $field['name'], $field['key'] );
}
return $meta_instance->update_value( $id, $field, $value );
}
/**
* Deletes metadata from the database.
*
* @since 6.4
*
* @param integer|string $post_id The post id.
* @param array $field The field array.
* @param boolean $hidden True if we should update the reference key.
* @return boolean
*/
function acf_delete_metadata_by_field( $post_id = 0, $field = array(), bool $hidden = false ) {
if ( empty( $field['name'] ) ) {
return null;
}
// Allow filter to short-circuit logic.
$pre = apply_filters( 'acf/pre_delete_metadata', null, $post_id, $field['name'], $hidden );
if ( $pre !== null ) {
return $pre;
}
// Decode the $post_id for $type and $id.
$decoded = acf_decode_post_id( $post_id );
$id = $decoded['id'];
$type = $decoded['type'];
// Bail early if no $id (possible during new acf_form).
if ( ! $id ) {
return false;
}
$meta_instance = acf_get_meta_instance( $type );
if ( ! $meta_instance ) {
return false;
}
if ( $hidden ) {
return $meta_instance->delete_reference( $id, $field['name'] );
}
return $meta_instance->delete_value( $id, $field );
}

View File

@ -13,18 +13,35 @@ acf_register_store( 'values' )->prop( 'multisite', true );
*
* @param string $field_name The name of the field. eg 'sub_heading'.
* @param mixed $post_id The post_id of which the value is saved against.
* @return string The field key.
* @return string|null The field key, or null on failure.
*/
function acf_get_reference( $field_name, $post_id ) {
// Allow filter to short-circuit load_value logic.
$reference = apply_filters( 'acf/pre_load_reference', null, $field_name, $post_id );
if ( $reference !== null ) {
return $reference;
}
// Back-compat.
$reference = apply_filters( 'acf/pre_load_metadata', null, $post_id, $field_name, true );
if ( $reference !== null ) {
return ( $reference === '__return_null' ) ? null : $reference;
}
$decoded = acf_decode_post_id( $post_id );
// Bail if no ID or type.
if ( empty( $decoded['id'] ) || empty( $decoded['type'] ) ) {
return null;
}
$meta_instance = acf_get_meta_instance( $decoded['type'] );
if ( ! $meta_instance ) {
return null;
}
// Get hidden meta for this field name.
$reference = acf_get_metadata( $post_id, $field_name, true );
$reference = $meta_instance->get_reference( $decoded['id'], $field_name );
/**
* Filters the reference value.
@ -78,7 +95,9 @@ function acf_get_value( $post_id, $field ) {
// If we're using a non options_ option key, ensure we have a valid reference key.
if ( 'option' === $decoded['type'] && 'options' !== $decoded['id'] ) {
$meta = acf_get_metadata( $post_id, $field_name, true );
// TODO: Move this into options meta class? i.e. return false
$meta = acf_get_metadata_by_field( $post_id, $field, true );
if ( ! $meta ) {
$allow_load = false;
} elseif ( $meta !== $field['key'] ) {
@ -97,7 +116,7 @@ function acf_get_value( $post_id, $field ) {
return $store->get( "$post_id:$field_name" );
}
$value = acf_get_metadata( $post_id, $field_name );
$value = acf_get_metadata_by_field( $post_id, $field );
}
// Use field's default_value if no meta was found.
@ -220,11 +239,9 @@ function acf_update_value( $value, $post_id, $field ) {
return acf_delete_value( $post_id, $field );
}
// Update meta.
$return = acf_update_metadata( $post_id, $field['name'], $value );
// Update reference.
acf_update_metadata( $post_id, $field['name'], $field['key'], true );
// Update value and reference key.
$return = acf_update_metadata_by_field( $post_id, $field, $value );
acf_update_metadata_by_field( $post_id, $field, $field['key'], true );
// Delete stored data.
acf_flush_value_cache( $post_id, $field['name'] );
@ -310,11 +327,9 @@ function acf_delete_value( $post_id, $field ) {
*/
do_action( 'acf/delete_value', $post_id, $field['name'], $field );
// Delete meta.
$return = acf_delete_metadata( $post_id, $field['name'] );
// Delete reference.
acf_delete_metadata( $post_id, $field['name'], true );
// Delete value and reference key.
$return = acf_delete_metadata_by_field( $post_id, $field );
acf_delete_metadata_by_field( $post_id, $field, true );
// Delete stored data.
acf_flush_value_cache( $post_id, $field['name'] );

View File

@ -195,6 +195,10 @@ function acf_decode_post_id( $post_id = 0 ) {
$type = taxonomy_exists( $type ) ? 'term' : 'blog';
$id = absint( $id );
break;
case 'woo_order_%d':
$type = 'woo_order';
$id = absint( $id );
break;
default:
// Check for taxonomy name.
if ( taxonomy_exists( $type ) && is_numeric( $id ) ) {

View File

@ -1,719 +0,0 @@
<?php
/**
* Adds helpful debugging information to a new "Advanced Custom Fields"
* panel in the WordPress Site Health screen.
*
* @package ACF
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
if ( ! class_exists( 'ACF_Site_Health' ) ) {
/**
* The ACF Site Health class responsible for populating ACF debug information in WordPress Site Health.
*/
class ACF_Site_Health {
/**
* The option name used to store site health data.
*
* @var string
*/
public string $option_name = 'acf_site_health';
/**
* Constructs the ACF_Site_Health class.
*
* @since 6.3
*/
public function __construct() {
add_action( 'debug_information', array( $this, 'render_tab_content' ) );
add_action( 'acf_update_site_health_data', array( $this, 'update_site_health_data' ) );
if ( ! wp_next_scheduled( 'acf_update_site_health_data' ) ) {
wp_schedule_event( time(), 'weekly', 'acf_update_site_health_data' );
}
// ACF events.
add_action( 'acf/first_activated', array( $this, 'add_activation_event' ) );
add_action( 'acf/activated_pro', array( $this, 'add_activation_event' ) );
add_filter( 'acf/pre_update_field_group', array( $this, 'pre_update_acf_internal_cpt' ) );
add_filter( 'acf/pre_update_post_type', array( $this, 'pre_update_acf_internal_cpt' ) );
add_filter( 'acf/pre_update_taxonomy', array( $this, 'pre_update_acf_internal_cpt' ) );
add_filter( 'acf/pre_update_ui_options_page', array( $this, 'pre_update_acf_internal_cpt' ) );
}
/**
* Gets the stored site health information.
*
* @since 6.3
*
* @return array
*/
public function get_site_health(): array {
$site_health = get_option( $this->option_name, '' );
if ( is_string( $site_health ) ) {
$site_health = json_decode( $site_health, true );
}
return is_array( $site_health ) ? $site_health : array();
}
/**
* Updates the site health information.
*
* @since 6.3
*
* @param array $data An array of site health information to update.
* @return boolean
*/
public function update_site_health( array $data = array() ): bool {
return update_option( $this->option_name, wp_json_encode( $data ), false );
}
/**
* Stores debug data in the ACF site health option.
*
* @since 6.3
*
* @param array $data Data to update with (optional).
* @return boolean
*/
public function update_site_health_data( array $data = array() ): bool {
if ( wp_doing_cron() ) {
// Bootstrap wp-admin, as WP_Cron doesn't do this for us.
require_once trailingslashit( ABSPATH ) . 'wp-admin/includes/admin.php';
}
$site_health = $this->get_site_health();
$values = ! empty( $data ) ? $data : $this->get_site_health_values();
$updated = array();
if ( ! empty( $values ) ) {
foreach ( $values as $key => $value ) {
$updated[ $key ] = $value['debug'] ?? $value['value'];
}
}
foreach ( $site_health as $key => $value ) {
if ( 'event_' === substr( $key, 0, 6 ) ) {
$updated[ $key ] = $value;
}
}
$updated['last_updated'] = time();
return $this->update_site_health( $updated );
}
/**
* Pushes an event to the ACF site health option.
*
* @since 6.3
*
* @param string $event_name The name of the event to push.
* @return boolean
*/
public function add_site_health_event( string $event_name = '' ): bool {
$site_health = $this->get_site_health();
// Allow using action/filter hooks to set events.
if ( empty( $event_name ) ) {
$current_filter = current_filter();
if ( strpos( $current_filter, 'acf/' ) !== false ) {
$event_name = str_replace( 'acf/', '', $current_filter );
}
}
// Bail if this event was already stored.
if ( empty( $event_name ) || ! empty( $site_health[ 'event_' . $event_name ] ) ) {
return false;
}
$time = time();
$site_health[ 'event_' . $event_name ] = $time;
$site_health['last_updated'] = $time;
return $this->update_site_health( $site_health );
}
/**
* Logs activation events for free/pro.
*
* @since 6.3
*
* @return boolean
*/
public function add_activation_event() {
$event_name = 'first_activated';
if ( acf_is_pro() ) {
$event_name = 'first_activated_pro';
if ( 'acf/first_activated' !== current_filter() ) {
$site_health = $this->get_site_health();
/**
* We already have an event for when pro was first activated,
* so we don't need to log an additional event here.
*/
if ( ! empty( $site_health[ 'event_' . $event_name ] ) ) {
return false;
}
$event_name = 'activated_pro';
}
}
return $this->add_site_health_event( $event_name );
}
/**
* Adds events when ACF internal post types are created.
*
* @since 6.3
*
* @param array $post The post about to be updated.
* @return array
*/
public function pre_update_acf_internal_cpt( array $post = array() ): array {
if ( empty( $post['key'] ) ) {
return $post;
}
$post_type = acf_determine_internal_post_type( $post['key'] );
if ( $post_type ) {
$posts = acf_get_internal_post_type_posts( $post_type );
if ( empty( $posts ) ) {
$post_type = str_replace(
array(
'acf-',
'-',
),
array(
'',
'_',
),
$post_type
);
$this->add_site_health_event( 'first_created_' . $post_type );
}
}
return $post;
}
/**
* Appends the ACF section to the "Info" tab of the WordPress Site Health screen.
*
* @since 6.3
*
* @param array $debug_info The current debug info for site health.
* @return array The debug info appended with the ACF section.
*/
public function render_tab_content( array $debug_info ): array {
$data = $this->get_site_health_values();
$this->update_site_health_data( $data );
// Unset values we don't want to display yet.
$fields_to_unset = array(
'wp_version',
'mysql_version',
'is_multisite',
'active_theme',
'parent_theme',
'active_plugins',
'number_of_fields_by_type',
'number_of_third_party_fields_by_type',
);
foreach ( $fields_to_unset as $field ) {
if ( isset( $data[ $field ] ) ) {
unset( $data[ $field ] );
}
}
foreach ( $data as $key => $value ) {
if ( 'event_' === substr( $key, 0, 6 ) ) {
unset( $data[ $key ] );
}
}
$debug_info['acf'] = array(
'label' => __( 'ACF', 'acf' ),
'description' => __( 'This section contains debug information about your ACF configuration which can be useful to provide to support.', 'acf' ),
'fields' => $data,
);
return $debug_info;
}
/**
* Gets the values for all data in the ACF site health section.
*
* @since 6.3
*
* @return array
*/
public function get_site_health_values(): array {
global $wpdb;
$fields = array();
$is_pro = acf_is_pro();
$license = $is_pro ? acf_pro_get_license() : array();
$license_status = $is_pro ? acf_pro_get_license_status() : array();
$field_groups = acf_get_field_groups();
$post_types = acf_get_post_types();
$taxonomies = acf_get_taxonomies();
$yes = __( 'Yes', 'acf' );
$no = __( 'No', 'acf' );
$fields['version'] = array(
'label' => __( 'Plugin Version', 'acf' ),
'value' => defined( 'ACF_VERSION' ) ? ACF_VERSION : '',
);
$fields['plugin_type'] = array(
'label' => __( 'Plugin Type', 'acf' ),
'value' => $is_pro ? __( 'PRO', 'acf' ) : __( 'Free', 'acf' ),
'debug' => $is_pro ? 'PRO' : 'Free',
);
$fields['update_source'] = array(
'label' => __( 'Update Source', 'acf' ),
'value' => apply_filters( 'acf/site_health/update_source', __( 'wordpress.org', 'acf' ) ),
);
if ( $is_pro ) {
$fields['activated'] = array(
'label' => __( 'License Activated', 'acf' ),
'value' => ! empty( $license ) ? $yes : $no,
'debug' => ! empty( $license ),
);
$fields['activated_url'] = array(
'label' => __( 'Licensed URL', 'acf' ),
'value' => ! empty( $license['url'] ) ? $license['url'] : '',
);
$fields['license_type'] = array(
'label' => __( 'License Type', 'acf' ),
'value' => $license_status['name'],
);
$fields['license_status'] = array(
'label' => __( 'License Status', 'acf' ),
'value' => $license_status['status'],
);
$expiry = ! empty( $license_status['expiry'] ) ? $license_status['expiry'] : '';
$format = get_option( 'date_format', 'F j, Y' );
$fields['subscription_expires'] = array(
'label' => __( 'Subscription Expiry Date', 'acf' ),
'value' => is_numeric( $expiry ) ? date_i18n( $format, $expiry ) : '',
'debug' => $expiry,
);
}
$fields['wp_version'] = array(
'label' => __( 'WordPress Version', 'acf' ),
'value' => get_bloginfo( 'version' ),
);
$fields['mysql_version'] = array(
'label' => __( 'MySQL Version', 'acf' ),
'value' => $wpdb->db_server_info(),
);
$fields['is_multisite'] = array(
'label' => __( 'Is Multisite', 'acf' ),
'value' => is_multisite() ? __( 'Yes', 'acf' ) : __( 'No', 'acf' ),
'debug' => is_multisite(),
);
$active_theme = wp_get_theme();
$parent_theme = $active_theme->parent();
$fields['active_theme'] = array(
'label' => __( 'Active Theme', 'acf' ),
'value' => array(
'name' => $active_theme->get( 'Name' ),
'version' => $active_theme->get( 'Version' ),
'theme_uri' => $active_theme->get( 'ThemeURI' ),
'stylesheet' => $active_theme->get( 'Stylesheet' ),
),
);
if ( $parent_theme ) {
$fields['parent_theme'] = array(
'label' => __( 'Parent Theme', 'acf' ),
'value' => array(
'name' => $parent_theme->get( 'Name' ),
'version' => $parent_theme->get( 'Version' ),
'theme_uri' => $parent_theme->get( 'ThemeURI' ),
'stylesheet' => $parent_theme->get( 'Stylesheet' ),
),
);
}
$active_plugins = array();
$plugins = get_plugins();
foreach ( $plugins as $plugin_path => $plugin ) {
if ( ! is_plugin_active( $plugin_path ) ) {
continue;
}
$active_plugins[ $plugin_path ] = array(
'name' => $plugin['Name'],
'version' => $plugin['Version'],
'plugin_uri' => empty( $plugin['PluginURI'] ) ? '' : $plugin['PluginURI'],
);
}
$fields['active_plugins'] = array(
'label' => __( 'Active Plugins', 'acf' ),
'value' => $active_plugins,
);
$ui_field_groups = array_filter(
$field_groups,
function ( $field_group ) {
return empty( $field_group['local'] );
}
);
$fields['ui_field_groups'] = array(
'label' => __( 'Registered Field Groups (UI)', 'acf' ),
'value' => number_format_i18n( count( $ui_field_groups ) ),
);
$php_field_groups = array_filter(
$field_groups,
function ( $field_group ) {
return ! empty( $field_group['local'] ) && 'PHP' === $field_group['local'];
}
);
$fields['php_field_groups'] = array(
'label' => __( 'Registered Field Groups (PHP)', 'acf' ),
'value' => number_format_i18n( count( $php_field_groups ) ),
);
$json_field_groups = array_filter(
$field_groups,
function ( $field_group ) {
return ! empty( $field_group['local'] ) && 'json' === $field_group['local'];
}
);
$fields['json_field_groups'] = array(
'label' => __( 'Registered Field Groups (JSON)', 'acf' ),
'value' => number_format_i18n( count( $json_field_groups ) ),
);
$rest_field_groups = array_filter(
$field_groups,
function ( $field_group ) {
return ! empty( $field_group['show_in_rest'] );
}
);
$fields['rest_field_groups'] = array(
'label' => __( 'Field Groups Enabled for REST API', 'acf' ),
'value' => number_format_i18n( count( $rest_field_groups ) ),
);
$graphql_field_groups = array_filter(
$field_groups,
function ( $field_group ) {
return ! empty( $field_group['show_in_graphql'] );
}
);
if ( is_plugin_active( 'wpgraphql-acf/wpgraphql-acf.php' ) ) {
$fields['graphql_field_groups'] = array(
'label' => __( 'Field Groups Enabled for GraphQL', 'acf' ),
'value' => number_format_i18n( count( $graphql_field_groups ) ),
);
}
$all_fields = array();
foreach ( $field_groups as $field_group ) {
$all_fields = array_merge( $all_fields, acf_get_fields( $field_group ) );
}
$fields_by_type = array();
$third_party_fields_by_type = array();
$core_field_types = array_keys( acf_get_field_types() );
foreach ( $all_fields as $field ) {
if ( in_array( $field['type'], $core_field_types, true ) ) {
if ( ! isset( $fields_by_type[ $field['type'] ] ) ) {
$fields_by_type[ $field['type'] ] = 0;
}
++$fields_by_type[ $field['type'] ];
continue;
}
if ( ! isset( $third_party_fields_by_type[ $field['type'] ] ) ) {
$third_party_fields_by_type[ $field['type'] ] = 0;
}
++$third_party_fields_by_type[ $field['type'] ];
}
$fields['number_of_fields_by_type'] = array(
'label' => __( 'Number of Fields by Field Type', 'acf' ),
'value' => $fields_by_type,
);
$fields['number_of_third_party_fields_by_type'] = array(
'label' => __( 'Number of Third Party Fields by Field Type', 'acf' ),
'value' => $third_party_fields_by_type,
);
$enable_post_types = acf_get_setting( 'enable_post_types' );
$fields['post_types_enabled'] = array(
'label' => __( 'Post Types and Taxonomies Enabled', 'acf' ),
'value' => $enable_post_types ? $yes : $no,
'debug' => $enable_post_types,
);
$ui_post_types = array_filter(
$post_types,
function ( $post_type ) {
return empty( $post_type['local'] );
}
);
$fields['ui_post_types'] = array(
'label' => __( 'Registered Post Types (UI)', 'acf' ),
'value' => number_format_i18n( count( $ui_post_types ) ),
);
$json_post_types = array_filter(
$post_types,
function ( $post_type ) {
return ! empty( $post_type['local'] ) && 'json' === $post_type['local'];
}
);
$fields['json_post_types'] = array(
'label' => __( 'Registered Post Types (JSON)', 'acf' ),
'value' => number_format_i18n( count( $json_post_types ) ),
);
$ui_taxonomies = array_filter(
$taxonomies,
function ( $taxonomy ) {
return empty( $taxonomy['local'] );
}
);
$fields['ui_taxonomies'] = array(
'label' => __( 'Registered Taxonomies (UI)', 'acf' ),
'value' => number_format_i18n( count( $ui_taxonomies ) ),
);
$json_taxonomies = array_filter(
$taxonomies,
function ( $taxonomy ) {
return ! empty( $taxonomy['local'] ) && 'json' === $taxonomy['local'];
}
);
$fields['json_taxonomies'] = array(
'label' => __( 'Registered Taxonomies (JSON)', 'acf' ),
'value' => number_format_i18n( count( $json_taxonomies ) ),
);
if ( $is_pro ) {
$enable_options_pages_ui = acf_get_setting( 'enable_options_pages_ui' );
$fields['ui_options_pages_enabled'] = array(
'label' => __( 'Options Pages UI Enabled', 'acf' ),
'value' => $enable_options_pages_ui ? $yes : $no,
'debug' => $enable_options_pages_ui,
);
$options_pages = acf_get_options_pages();
$ui_options_pages = array();
if ( empty( $options_pages ) || ! is_array( $options_pages ) ) {
$options_pages = array();
}
if ( $enable_options_pages_ui ) {
$ui_options_pages = acf_get_ui_options_pages();
$ui_options_pages_in_ui = array_filter(
$ui_options_pages,
function ( $ui_options_page ) {
return empty( $ui_options_page['local'] );
}
);
$json_options_pages = array_filter(
$ui_options_pages,
function ( $ui_options_page ) {
return ! empty( $ui_options_page['local'] );
}
);
$fields['ui_options_pages'] = array(
'label' => __( 'Registered Options Pages (UI)', 'acf' ),
'value' => number_format_i18n( count( $ui_options_pages_in_ui ) ),
);
$fields['json_options_pages'] = array(
'label' => __( 'Registered Options Pages (JSON)', 'acf' ),
'value' => number_format_i18n( count( $json_options_pages ) ),
);
}
$ui_options_page_slugs = array_column( $ui_options_pages, 'menu_slug' );
$php_options_pages = array_filter(
$options_pages,
function ( $options_page ) use ( $ui_options_page_slugs ) {
return ! in_array( $options_page['menu_slug'], $ui_options_page_slugs, true );
}
);
$fields['php_options_pages'] = array(
'label' => __( 'Registered Options Pages (PHP)', 'acf' ),
'value' => number_format_i18n( count( $php_options_pages ) ),
);
}
$rest_api_format = acf_get_setting( 'rest_api_format' );
$fields['rest_api_format'] = array(
'label' => __( 'REST API Format', 'acf' ),
'value' => 'standard' === $rest_api_format ? __( 'Standard', 'acf' ) : __( 'Light', 'acf' ),
'debug' => $rest_api_format,
);
if ( $is_pro ) {
$fields['registered_acf_blocks'] = array(
'label' => __( 'Registered ACF Blocks', 'acf' ),
'value' => number_format_i18n( acf_pro_get_registered_block_count() ),
);
$blocks = acf_get_block_types();
$block_api_versions = array();
$acf_block_versions = array();
$blocks_using_post_meta = 0;
foreach ( $blocks as $block ) {
if ( ! isset( $block_api_versions[ 'v' . $block['api_version'] ] ) ) {
$block_api_versions[ 'v' . $block['api_version'] ] = 0;
}
if ( ! isset( $acf_block_versions[ 'v' . $block['acf_block_version'] ] ) ) {
$acf_block_versions[ 'v' . $block['acf_block_version'] ] = 0;
}
if ( ! empty( $block['use_post_meta'] ) ) {
++$blocks_using_post_meta;
}
++$block_api_versions[ 'v' . $block['api_version'] ];
++$acf_block_versions[ 'v' . $block['acf_block_version'] ];
}
$fields['blocks_per_api_version'] = array(
'label' => __( 'Blocks Per API Version', 'acf' ),
'value' => $block_api_versions,
);
$fields['blocks_per_acf_block_version'] = array(
'label' => __( 'Blocks Per ACF Block Version', 'acf' ),
'value' => $acf_block_versions,
);
$fields['blocks_using_post_meta'] = array(
'label' => __( 'Blocks Using Post Meta', 'acf' ),
'value' => number_format_i18n( $blocks_using_post_meta ),
);
$preload_blocks = acf_get_setting( 'preload_blocks' );
$fields['preload_blocks'] = array(
'label' => __( 'Block Preloading Enabled', 'acf' ),
'value' => ! empty( $preload_blocks ) ? $yes : $no,
'debug' => $preload_blocks,
);
}
$show_admin = acf_get_setting( 'show_admin' );
$fields['admin_ui_enabled'] = array(
'label' => __( 'Admin UI Enabled', 'acf' ),
'value' => $show_admin ? $yes : $no,
'debug' => $show_admin,
);
$field_type_modal_enabled = apply_filters( 'acf/field_group/enable_field_browser', true );
$fields['field_type-modal_enabled'] = array(
'label' => __( 'Field Type Modal Enabled', 'acf' ),
'value' => ! empty( $field_type_modal_enabled ) ? $yes : $no,
'debug' => $field_type_modal_enabled,
);
$field_settings_tabs_enabled = apply_filters( 'acf/field_group/disable_field_settings_tabs', false );
$fields['field_settings_tabs_enabled'] = array(
'label' => __( 'Field Settings Tabs Enabled', 'acf' ),
'value' => empty( $field_settings_tabs_enabled ) ? $yes : $no,
'debug' => $field_settings_tabs_enabled,
);
$shortcode_enabled = acf_get_setting( 'enable_shortcode' );
$fields['shortcode_enabled'] = array(
'label' => __( 'Shortcode Enabled', 'acf' ),
'value' => ! empty( $shortcode_enabled ) ? $yes : $no,
'debug' => $shortcode_enabled,
);
$fields['registered_acf_forms'] = array(
'label' => __( 'Registered ACF Forms', 'acf' ),
'value' => number_format_i18n( count( acf_get_forms() ) ),
);
$local_json = acf_get_instance( 'ACF_Local_JSON' );
$save_paths = $local_json->get_save_paths();
$load_paths = $local_json->get_load_paths();
$fields['json_save_paths'] = array(
'label' => __( 'JSON Save Paths', 'acf' ),
'value' => number_format_i18n( count( $save_paths ) ),
'debug' => count( $save_paths ),
);
$fields['json_load_paths'] = array(
'label' => __( 'JSON Load Paths', 'acf' ),
'value' => number_format_i18n( count( $load_paths ) ),
'debug' => count( $load_paths ),
);
return $fields;
}
}
acf_new_instance( 'ACF_Site_Health' );
}

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: ar\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: bg_BG\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -1916,6 +1932,10 @@ msgid ""
"some of your fields has been modified by this change, but this may not be a "
"breaking change. %2$s."
msgstr ""
"L'ACF %1$s ara escapa automàticament de l'HTML insegur quan es renderitza "
"amb <code>the_field</code> o el codi de substitució de l'ACF. Hem detectat "
"que la sortida d'alguns dels vostres camps ha estat modificada per aquest "
"canvi, però pot ser que no s'hagi trencat res. %2$s."
#: includes/admin/views/escaped-html-notice.php:27
msgid "Please contact your site administrator or developer for more details."
@ -2029,21 +2049,21 @@ msgstr "Afegeix camps"
msgid "This Field"
msgstr "Aquest camp"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Opinions"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Suport"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "és desenvolupat i mantingut per"
@ -4621,7 +4641,7 @@ msgstr ""
"Importa tipus de contingut i taxonomies registrades amb Custom Post Type UI "
"i gestiona-les amb ACF. <a href=\"%s\">Comença</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4955,7 +4975,7 @@ msgstr "Activa aquest element"
msgid "Move field group to trash?"
msgstr "Voleu moure el grup de camps a la paperera?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4968,7 +4988,7 @@ msgstr "Inactiva"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4977,7 +4997,7 @@ msgstr ""
"actius al mateix temps. Hem desactivat Advanced Custom Fields PRO "
"automàticament."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5428,7 +5448,7 @@ msgstr "Tots els formats de %s"
msgid "Attachment"
msgstr "Adjunt"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "Cal introduir un valor a %s"
@ -5922,7 +5942,7 @@ msgstr "Duplica aquest element"
msgid "Supports"
msgstr "Suports"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentació"
@ -6219,8 +6239,8 @@ msgstr "Cal revisar %d camps"
msgid "1 field requires attention"
msgstr "Cal revisar un camp"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "La validació ha fallat"
@ -7602,90 +7622,90 @@ msgid "Time Picker"
msgstr "Selector d'hora"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Inactiu <span class=\"count\">(%s)</span>"
msgstr[1] "Inactius <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "No s'ha trobat cap camp a la paperera"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "No s'ha trobat cap camp"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Cerca camps"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Visualitza el camp"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nou camp"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Edita el camp"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Afegeix un nou camp"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Camp"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Camps"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "No s'ha trobat cap grup de camps a la paperera"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "No s'ha trobat cap grup de camps"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Cerca grups de camps"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Visualitza el grup de camps"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nou grup de camps"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Edita el grup de camps"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Afegeix un nou grup de camps"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Afegeix"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Grup de camps"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: cs_CZ\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2018,21 +2034,21 @@ msgstr ""
msgid "This Field"
msgstr ""
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr ""
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr ""
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr ""
@ -4550,7 +4566,7 @@ msgstr ""
"Importujte typy obsahu a taxonomie registrované pomocí pluginu Custom Post "
"Type UI a spravujte je s ACF. <a href=\"%s\">Pusťme se do toho</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4886,7 +4902,7 @@ msgstr "Aktivovat tuto položku"
msgid "Move field group to trash?"
msgstr "Přesunout skupinu polí do koše?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4899,7 +4915,7 @@ msgstr "Neaktivní"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4908,7 +4924,7 @@ msgstr ""
"aktivní současně. Plugin Advanced Custom Fields PRO jsme automaticky "
"deaktivovali."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5359,7 +5375,7 @@ msgstr "Všechny formáty %s"
msgid "Attachment"
msgstr "Příloha"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s hodnota je vyžadována"
@ -5847,7 +5863,7 @@ msgstr "Duplikovat tuto položku"
msgid "Supports"
msgstr "Podporuje"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Dokumentace"
@ -6147,8 +6163,8 @@ msgstr "Několik polí vyžaduje pozornost (%d)"
msgid "1 field requires attention"
msgstr "1 pole vyžaduje pozornost"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Ověření selhalo"
@ -7526,91 +7542,91 @@ msgid "Time Picker"
msgstr "Výběr času"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Neaktivní <span class=\"count\">(%s)</span>"
msgstr[1] "Neaktivní <span class=\"count\">(%s)</span>"
msgstr[2] "Neaktivní <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "V koši nenalezeno žádné pole"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Nenalezeno žádné pole"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Vyhledat pole"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Zobrazit pole"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nové pole"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Upravit pole"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Přidat nové pole"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Pole"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Pole"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "V koši nebyly nalezeny žádné skupiny polí"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Nebyly nalezeny žádné skupiny polí"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Hledat skupiny polí"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Prohlížet skupinu polí"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nová skupina polí"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Upravit skupinu polí"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Přidat novou skupinu polí"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Přidat nové"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Skupina polí"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: de_CH\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr "Quelle aktualisieren"
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "de.wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2025,21 +2041,21 @@ msgstr "Felder hinzufügen"
msgid "This Field"
msgstr "Dieses Feld"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Feedback"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Hilfe"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "wird entwickelt und gewartet von"
@ -2630,7 +2646,7 @@ msgstr "Original"
#: includes/ajax/class-acf-ajax-local-json-diff.php:60
msgid "Invalid post ID."
msgstr "Ungültige Beitrags-ID."
msgstr "Die Beitrags-ID ist ungültig."
#: includes/ajax/class-acf-ajax-local-json-diff.php:52
msgid "Invalid post type selected for review."
@ -2786,7 +2802,7 @@ msgstr "Die Taxonomie im Schnell- und Mehrfach-Bearbeitungsbereich anzeigen."
#: includes/admin/views/acf-taxonomy/advanced-settings.php:901
msgid "Quick Edit"
msgstr "QuickEdit"
msgstr "Schnellbearbeitung"
#: includes/admin/views/acf-taxonomy/advanced-settings.php:888
msgid "List the taxonomy in the Tag Cloud Widget controls."
@ -3700,7 +3716,7 @@ msgstr "%s wurde aktualisiert."
#: includes/admin/views/acf-post-type/advanced-settings.php:633
msgid "Post scheduled."
msgstr "Die Beiträge wurden geplant."
msgstr "Der Beitrag wurde geplant."
#: includes/admin/views/acf-post-type/advanced-settings.php:632
msgid "In the editor notice after scheduling an item."
@ -4525,7 +4541,7 @@ msgstr ""
"registriert wurden, und verwalte sie mit ACF. <a href=\"%s\">Jetzt starten</"
"a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4860,7 +4876,7 @@ msgstr "Dieses Element aktivieren"
msgid "Move field group to trash?"
msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4873,7 +4889,7 @@ msgstr "Inaktiv"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4882,7 +4898,7 @@ msgstr ""
"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch "
"deaktiviert."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5336,7 +5352,7 @@ msgstr "Alle %s Formate"
msgid "Attachment"
msgstr "Anhang"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s Wert ist erforderlich"
@ -5832,7 +5848,7 @@ msgstr "Dieses Element duplizieren"
msgid "Supports"
msgstr "Hilfe"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Dokumentation"
@ -6131,8 +6147,8 @@ msgstr "%d Felder erfordern Aufmerksamkeit"
msgid "1 field requires attention"
msgstr "1 Feld erfordert Aufmerksamkeit"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Die Überprüfung ist fehlgeschlagen"
@ -7063,7 +7079,7 @@ msgstr "Nach Inhaltstyp filtern"
#: includes/fields/class-acf-field-relationship.php:450
msgid "Search..."
msgstr "Suche ..."
msgstr "Suchen "
#: includes/fields/class-acf-field-relationship.php:380
msgid "Select taxonomy"
@ -7514,90 +7530,90 @@ msgid "Time Picker"
msgstr "Zeitpicker"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Deaktiviert <span class=\"count\">(%s)</span>"
msgstr[1] "Deaktiviert <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Es wurden keine Felder im Papierkorb gefunden"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Es wurden keine Felder gefunden"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Felder suchen"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Feld anzeigen"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Neues Feld"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Feld bearbeiten"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Neues Feld hinzufügen"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Feld"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Felder"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Es wurden keine Feldgruppen gefunden"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Feldgruppen durchsuchen"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Feldgruppe anzeigen"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Neue Feldgruppe"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Feldgruppe bearbeiten"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Neue Feldgruppe hinzufügen"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Neu hinzufügen"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Feldgruppe"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: de_DE_formal\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr "Quelle aktualisieren"
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "de.wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2025,21 +2041,21 @@ msgstr "Felder hinzufügen"
msgid "This Field"
msgstr "Dieses Feld"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Feedback"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Hilfe"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "wird entwickelt und gewartet von"
@ -2630,7 +2646,7 @@ msgstr "Original"
#: includes/ajax/class-acf-ajax-local-json-diff.php:60
msgid "Invalid post ID."
msgstr "Ungültige Beitrags-ID."
msgstr "Die Beitrags-ID ist ungültig."
#: includes/ajax/class-acf-ajax-local-json-diff.php:52
msgid "Invalid post type selected for review."
@ -2786,7 +2802,7 @@ msgstr "Die Taxonomie im Schnell- und Mehrfach-Bearbeitungsbereich anzeigen."
#: includes/admin/views/acf-taxonomy/advanced-settings.php:901
msgid "Quick Edit"
msgstr "QuickEdit"
msgstr "Schnellbearbeitung"
#: includes/admin/views/acf-taxonomy/advanced-settings.php:888
msgid "List the taxonomy in the Tag Cloud Widget controls."
@ -3700,7 +3716,7 @@ msgstr "%s wurde aktualisiert."
#: includes/admin/views/acf-post-type/advanced-settings.php:633
msgid "Post scheduled."
msgstr "Die Beiträge wurden geplant."
msgstr "Der Beitrag wurde geplant."
#: includes/admin/views/acf-post-type/advanced-settings.php:632
msgid "In the editor notice after scheduling an item."
@ -4525,7 +4541,7 @@ msgstr ""
"registriert wurden, und verwalte sie mit ACF. <a href=\"%s\">Jetzt starten</"
"a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4860,7 +4876,7 @@ msgstr "Dieses Element aktivieren"
msgid "Move field group to trash?"
msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4873,7 +4889,7 @@ msgstr "Inaktiv"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4882,7 +4898,7 @@ msgstr ""
"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch "
"deaktiviert."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5336,7 +5352,7 @@ msgstr "Alle %s Formate"
msgid "Attachment"
msgstr "Anhang"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s Wert ist erforderlich"
@ -5832,7 +5848,7 @@ msgstr "Dieses Element duplizieren"
msgid "Supports"
msgstr "Hilfe"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Dokumentation"
@ -6131,8 +6147,8 @@ msgstr "%d Felder erfordern Aufmerksamkeit"
msgid "1 field requires attention"
msgstr "1 Feld erfordert Aufmerksamkeit"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Die Überprüfung ist fehlgeschlagen"
@ -7063,7 +7079,7 @@ msgstr "Nach Inhaltstyp filtern"
#: includes/fields/class-acf-field-relationship.php:450
msgid "Search..."
msgstr "Suche ..."
msgstr "Suchen "
#: includes/fields/class-acf-field-relationship.php:380
msgid "Select taxonomy"
@ -7514,90 +7530,90 @@ msgid "Time Picker"
msgstr "Zeitpicker"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Deaktiviert <span class=\"count\">(%s)</span>"
msgstr[1] "Deaktiviert <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Es wurden keine Felder im Papierkorb gefunden"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Es wurden keine Felder gefunden"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Felder suchen"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Feld anzeigen"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Neues Feld"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Feld bearbeiten"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Neues Feld hinzufügen"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Feld"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Felder"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Es wurden keine Feldgruppen gefunden"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Feldgruppen durchsuchen"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Feldgruppe anzeigen"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Neue Feldgruppe"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Feldgruppe bearbeiten"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Neue Feldgruppe hinzufügen"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Neu hinzufügen"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Feldgruppe"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: el\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2018,21 +2034,21 @@ msgstr ""
msgid "This Field"
msgstr ""
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr ""
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr ""
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr ""
@ -4364,7 +4380,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr ""
@ -4696,7 +4712,7 @@ msgstr "Ενεργοποιήστε αυτό το αντικείμενο"
msgid "Move field group to trash?"
msgstr "Να μεταφερθεί αυτή η ομάδα πεδίων στον κάδο;"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4709,13 +4725,13 @@ msgstr "Ανενεργό"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
msgstr ""
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5162,7 +5178,7 @@ msgstr "Όλες οι %s μορφές"
msgid "Attachment"
msgstr "Συνημμένο"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "Η τιμή του %s είναι υποχρεωτική"
@ -5652,7 +5668,7 @@ msgstr "Δημιουργία αντιγράφου αυτού του στοιχε
msgid "Supports"
msgstr ""
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Τεκμηρίωση"
@ -5952,8 +5968,8 @@ msgstr "%d πεδία χρήζουν προσοχής"
msgid "1 field requires attention"
msgstr "1 πεδίο χρήζει προσοχής"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Ο έλεγχος απέτυχε"
@ -7336,90 +7352,90 @@ msgid "Time Picker"
msgstr "Επιλογέας Ώρας"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Ανενεργό <span class=\"count\">(%s)</span>"
msgstr[1] "Ανενεργά <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Δεν βρέθηκαν Πεδία στα Διεγραμμένα"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Δεν βρέθηκαν Πεδία"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Αναζήτηση Πεδίων"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Προβολή Πεδίων"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Νέο Πεδίο"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Επεξεργασία Πεδίου"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Προσθήκη Νέου Πεδίου"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Πεδίο"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Πεδία"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Δεν βρέθηκαν Ομάδες Πεδίων στα Διεγραμμένα"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Δεν βρέθηκαν Ομάδες Πεδίων"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Αναζήτηση Ομάδων Πεδίων "
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Προβολή Ομάδας Πεδίων"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Νέα Ομάδα Πεδίων"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Επεξεργασίας Ομάδας Πεδίων"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Προσθήκη Νέας Ομάδας Πεδίων"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Προσθήκη Νέου"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Ομάδα Πεδίου"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -69,14 +91,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
"ACF no pudo realizar la validación debido a que se proporcionó un nonce de "
"seguridad no válido."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr "Permitir el acceso al valor en la interfaz del editor"
@ -2071,21 +2085,21 @@ msgstr "Agregar campos"
msgid "This Field"
msgstr "Este campo"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr ""
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr ""
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr ""
@ -4660,7 +4674,7 @@ msgstr ""
"Importa tipos de contenido y taxonomías registrados con Custom Post Type UI "
"y gestiónalos con ACF. <a href=\"%s\">Empieza aquí</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4992,7 +5006,7 @@ msgstr "Activa este elemento"
msgid "Move field group to trash?"
msgstr "¿Mover este grupo de campos a la papelera?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -5005,7 +5019,7 @@ msgstr "Inactivo"
msgid "WP Engine"
msgstr ""
#: acf.php:559
#: acf.php:562
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."
@ -5014,7 +5028,7 @@ msgstr ""
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
"Fields PRO."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5442,7 +5456,7 @@ msgstr "Todo los formatos de %s"
msgid "Attachment"
msgstr "Adjunto"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "El valor de %s es obligatorio"
@ -5937,7 +5951,7 @@ msgstr "Duplicar este elemento"
msgid "Supports"
msgstr "Supports"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentación"
@ -6235,8 +6249,8 @@ msgstr "%d campos requieren atención"
msgid "1 field requires attention"
msgstr "1 campo requiere atención"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Validación fallida"
@ -7618,90 +7632,90 @@ msgid "Time Picker"
msgstr "Selector de hora"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "No se han encontrado campos en la papelera"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "No se han encontrado campos"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Buscar campos"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Ver campo"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nuevo campo"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Editar campo"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Agregar nuevo campo"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Campo"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Campos"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "No se han encontrado grupos de campos en la papelera"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "No se han encontrado grupos de campos"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Buscar grupo de campos"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Ver grupo de campos"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nuevo grupo de campos"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Editar grupo de campos"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Agregar nuevo grupo de campos"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Agregar nuevo"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Grupo de campos"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,32 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr "Saber más"
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
"ACE no fue capaz de realizar la validación porque falló la verificación del "
"nonce facilitado."
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
"CE no fue capaz de realizar la validación porque no se recibió ningún nonce "
"del servidor."
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr "lo desarrollan y mantienen"
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr "Actualizar la fuente"
@ -68,14 +94,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
"ACF no pudo realizar la validación debido a que se proporcionó un nonce de "
"seguridad no válido."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr "Permitir el acceso al valor en la interfaz del editor"
@ -2070,21 +2088,21 @@ msgstr "Añadir campos"
msgid "This Field"
msgstr "Este campo"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Comentarios"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Soporte"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "es desarrollado y mantenido por"
@ -4681,7 +4699,7 @@ msgstr ""
"Importa tipos de contenido y taxonomías registrados con Custom Post Type UI "
"y gestiónalos con ACF. <a href=\"%s\">Empieza aquí</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -5015,7 +5033,7 @@ msgstr "Activa este elemento"
msgid "Move field group to trash?"
msgstr "¿Mover este grupo de campos a la papelera?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -5028,7 +5046,7 @@ msgstr "Inactivo"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -5037,7 +5055,7 @@ msgstr ""
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
"Fields PRO."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5490,7 +5508,7 @@ msgstr "Todo los formatos de %s"
msgid "Attachment"
msgstr "Adjunto"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "El valor de %s es obligatorio"
@ -5985,7 +6003,7 @@ msgstr "Duplicar este elemento"
msgid "Supports"
msgstr "Supports"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentación"
@ -6283,8 +6301,8 @@ msgstr "%d campos requieren atención"
msgid "1 field requires attention"
msgstr "1 campo requiere atención"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Validación fallida"
@ -7666,90 +7684,90 @@ msgid "Time Picker"
msgstr "Selector de hora"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "No se han encontrado campos en la papelera"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "No se han encontrado campos"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Buscar campos"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Ver campo"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nuevo campo"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Editar campo"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Añadir nuevo campo"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Campo"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Campos"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "No se han encontrado grupos de campos en la papelera"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "No se han encontrado grupos de campos"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Buscar grupo de campos"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Ver grupo de campos"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nuevo grupo de campos"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Editar grupo de campos"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Añadir nuevo grupo de campos"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Añadir nuevo"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Grupo de campos"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2018,21 +2034,21 @@ msgstr ""
msgid "This Field"
msgstr ""
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr ""
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr ""
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr ""
@ -4391,7 +4407,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr ""
@ -4710,7 +4726,7 @@ msgstr ""
msgid "Move field group to trash?"
msgstr ""
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4723,13 +4739,13 @@ msgstr ""
msgid "WP Engine"
msgstr ""
#: acf.php:559
#: acf.php:562
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
msgstr ""
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5174,7 +5190,7 @@ msgstr "Todo los formatos de %s"
msgid "Attachment"
msgstr "Adjunto"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "El valor de %s es obligatorio"
@ -5662,7 +5678,7 @@ msgstr "Duplicar este elemento"
msgid "Supports"
msgstr ""
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentación"
@ -5960,8 +5976,8 @@ msgstr "%d campos requieren atención"
msgid "1 field requires attention"
msgstr "1 campo requiere atención"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Validación fallida"
@ -7343,90 +7359,90 @@ msgid "Time Picker"
msgstr "Selector de hora"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] ""
msgstr[1] ""
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "No se han encontrado campos en la papelera"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "No se han encontrado campos"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Buscar campos"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Ver campo"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nuevo campo"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Editar campo"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Añadir nuevo campo"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Campo"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Campos"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "No se han encontrado grupos de campos en la papelera"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "No se han encontrado grupos de campos"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Buscar grupo de campos"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Ver grupo de campos"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nuevo grupo de campos"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Editar grupo de campos"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Añadir nuevo grupo de campos"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Añadir nuevo"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Grupo de campos"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fa_AF\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2018,21 +2034,21 @@ msgstr ""
msgid "This Field"
msgstr ""
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr ""
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr ""
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr ""
@ -4378,7 +4394,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4701,7 +4717,7 @@ msgstr "فعال کردن این مورد"
msgid "Move field group to trash?"
msgstr "انتقال گروه زمینه به زباله‌دان؟"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4714,7 +4730,7 @@ msgstr "غیرفعال"
msgid "WP Engine"
msgstr ""
#: acf.php:559
#: acf.php:562
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."
@ -4722,7 +4738,7 @@ msgstr ""
"افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال "
"باشند. ما به طور خودکار افزونه زمینه های سفارشی پیشرفته را غیرفعال کردیم."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5167,7 +5183,7 @@ msgstr "همه‌ی فرمت‌های %s"
msgid "Attachment"
msgstr "پیوست"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "مقدار %s لازم است"
@ -5646,7 +5662,7 @@ msgstr "تکثیر این زمینه"
msgid "Supports"
msgstr ""
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "مستندات"
@ -5940,8 +5956,8 @@ msgstr "%d گزینه نیاز به بررسی دارد"
msgid "1 field requires attention"
msgstr "یکی از گزینه ها نیاز به بررسی دارد"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "مشکل در اعتبار سنجی"
@ -7316,89 +7332,89 @@ msgid "Time Picker"
msgstr "انتخاب زمان"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] ""
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "گروه زمینه ای در زباله دان یافت نشد"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "گروه زمینه ای یافت نشد"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "جستجوی گروه های زمینه"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "نمایش زمینه"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "زمینه جدید"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "ویرایش زمینه"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "زمینه جدید"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "زمینه"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "زمینه ها"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "گروه زمینه ای در زباله دان یافت نشد"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "گروه زمینه ای یافت نشد"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "جستجوی گروه های زمینه"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "مشاهده گروه زمینه"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "گروه زمینه جدید"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "ویرایش گروه زمینه"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "افزودن گروه زمینه جدید"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "افزودن"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "گروه زمینه"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fa_IR\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2018,21 +2034,21 @@ msgstr "افزودن فیلدها"
msgid "This Field"
msgstr "این فیلد"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF حرفه‌ای"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "بازخورد"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "پشتیبانی"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "توسعه‌داده و نگهداری‌شده توسط"
@ -4394,7 +4410,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4719,7 +4735,7 @@ msgstr "فعال کردن این مورد"
msgid "Move field group to trash?"
msgstr "انتقال گروه فیلد به زباله‌دان؟"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4732,7 +4748,7 @@ msgstr "غیرفعال"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4741,7 +4757,7 @@ msgstr ""
"همزمان فعال باشند. ما به طور خودکار افزونه فیلدهای سفارشی پیشرفته را غیرفعال "
"کردیم."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5186,7 +5202,7 @@ msgstr "همه‌ی فرمت‌های %s"
msgid "Attachment"
msgstr "پیوست"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "مقدار %s لازم است"
@ -5665,7 +5681,7 @@ msgstr "تکثیر این مورد"
msgid "Supports"
msgstr ""
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "مستندات"
@ -5959,8 +5975,8 @@ msgstr "%d گزینه نیاز به بررسی دارد"
msgid "1 field requires attention"
msgstr "یکی از گزینه ها نیاز به بررسی دارد"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "مشکل در اعتبار سنجی"
@ -7335,89 +7351,89 @@ msgid "Time Picker"
msgstr "انتخاب زمان"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] ""
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "گروه فیلدی در زباله‌دان یافت نشد"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "گروه فیلدی یافت نشد"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "جستجوی فیلدها"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "مشاهده فیلد"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "فیلد تازه"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "ویرایش فیلد"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "افزودن فیلد تازه"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "فیلد"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "فیلدها"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "گروه فیلدی در زباله‌دان یافت نشد"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "گروه فیلدی یافت نشد"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "جستجوی گروه‌های فیلد"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "مشاهده‌ی گروه فیلد"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "گروه فیلد تازه"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "ویرایش گروه فیلد"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "افزودن گروه فیلد تازه"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "افزودن"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "گروه فیلد"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2021,21 +2037,21 @@ msgstr "Lisää kenttiä"
msgid "This Field"
msgstr "Tämä kenttä"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Palaute"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Tuki"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "kehittää ja ylläpitää"
@ -4450,7 +4466,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr ""
@ -4769,7 +4785,7 @@ msgstr ""
msgid "Move field group to trash?"
msgstr ""
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4782,7 +4798,7 @@ msgstr ""
msgid "WP Engine"
msgstr ""
#: acf.php:559
#: acf.php:562
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."
@ -4791,7 +4807,7 @@ msgstr ""
"olla käytössä yhtäaikaa. Suljimme Advanced Custom Fields PRO -lisäosan "
"automaattisesti."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5242,7 +5258,7 @@ msgstr "Kaikki %s muodot"
msgid "Attachment"
msgstr "Liite"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s arvo on pakollinen"
@ -5731,7 +5747,7 @@ msgstr "Monista tämä kohde"
msgid "Supports"
msgstr ""
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr ""
@ -6028,8 +6044,8 @@ msgstr "%d kenttää vaativat huomiota"
msgid "1 field requires attention"
msgstr "Yksi kenttä vaatii huomiota"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Lisäkentän validointi epäonnistui"
@ -7406,90 +7422,90 @@ msgid "Time Picker"
msgstr "Kellonaikavalitsin"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Poistettu käytöstä <span class=\"count\">(%s)</span>"
msgstr[1] "Poistettu käytöstä <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Kenttiä ei löytynyt roskakorista"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Ei löytynyt kenttiä"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Etsi kenttiä"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Näytä kenttä"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Uusi kenttä"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Muokkaa kenttää"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Lisää uusi kenttä"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Kenttä"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Kentät"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Kenttäryhmiä ei löytynyt roskakorista"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Kenttäryhmiä ei löytynyt"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Etsi kenttäryhmiä"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Katso kenttäryhmää"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Lisää uusi kenttäryhmä"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Muokkaa kenttäryhmää"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Lisää uusi kenttäryhmä"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Lisää uusi"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Kenttäryhmä"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fr_CA\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,14 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
"ACF na pas pu effectuer la validation en raison dun nonce de sécurité "
"invalide."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr "Autoriser laccès à la valeur dans linterface de léditeur"
@ -2045,21 +2059,21 @@ msgstr "Ajouter des champs"
msgid "This Field"
msgstr "Ce champ"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF Pro"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Retour"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Support"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "est développé et maintenu par"
@ -4680,7 +4694,7 @@ msgstr ""
"linterface utilisateur de type de publication personnalisée et gérez-les "
"avec ACF. <a href=\"%s\">Lancez-vous</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4733,7 +4747,7 @@ msgstr ""
#: includes/acf-internal-post-type-functions.php:509
#: includes/acf-internal-post-type-functions.php:538
msgid "REST API"
msgstr "REST API"
msgstr "API REST"
#: includes/acf-internal-post-type-functions.php:508
#: includes/acf-internal-post-type-functions.php:537
@ -5013,7 +5027,7 @@ msgstr "Activer cet élément"
msgid "Move field group to trash?"
msgstr "Déplacer le groupe de champs vers la corbeille ?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -5026,7 +5040,7 @@ msgstr "Inactif"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -5035,7 +5049,7 @@ msgstr ""
"actives en même temps. Nous avons automatiquement désactivé Advanced Custom "
"Fields Pro."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5491,7 +5505,7 @@ msgstr "Tous les formats %s"
msgid "Attachment"
msgstr "Fichier joint"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "La valeur %s est obligatoire"
@ -5991,7 +6005,7 @@ msgstr "Dupliquer cet élément"
msgid "Supports"
msgstr "Prend en charge"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentation"
@ -6292,8 +6306,8 @@ msgstr "%d champs nécessitent votre attention"
msgid "1 field requires attention"
msgstr "Un champ nécessite votre attention"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Échec de la validation"
@ -7310,7 +7324,7 @@ msgstr "Limiter le choix de la médiathèque"
#: includes/fields/class-acf-field-file.php:215
#: includes/fields/class-acf-field-image.php:193
msgid "Library"
msgstr "Médiathèque"
msgstr "Bibliothèque"
#: includes/fields/class-acf-field-image.php:326
msgid "Preview Size"
@ -7676,90 +7690,90 @@ msgid "Time Picker"
msgstr "Sélecteur dheure"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "<span class=\"count\">(%s)</span> inactif"
msgstr[1] "<span class=\"count\">(%s)</span> inactifs"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Aucun champ trouvé dans la corbeille"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Aucun champ trouvé"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Rechercher des champs"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Voir le champ"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nouveau champ"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Modifier le champ"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Ajouter un nouveau champ"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Champ"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Champs"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Aucun groupe de champs trouvé dans la corbeille"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Aucun groupe de champs trouvé"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Rechercher des groupes de champs"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Voir le groupe de champs"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nouveau groupe de champs"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Modifier le groupe de champs"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Ajouter un groupe de champs"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Ajouter"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Groupe de champs"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: gl_ES\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2020,21 +2036,21 @@ msgstr "Engadir campos"
msgid "This Field"
msgstr ""
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr ""
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr ""
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr ""
@ -4366,7 +4382,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr ""
@ -4698,7 +4714,7 @@ msgstr "Activa este elemento"
msgid "Move field group to trash?"
msgstr "Mover este grupo de campos á papeleira?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4711,7 +4727,7 @@ msgstr "Inactivo"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4720,7 +4736,7 @@ msgstr ""
"activos ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields "
"PRO."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5169,7 +5185,7 @@ msgstr "Todo os formatos de %s"
msgid "Attachment"
msgstr "Adxunto"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "O valor de %s é obligatorio"
@ -5662,7 +5678,7 @@ msgstr "Duplicar este elemento"
msgid "Supports"
msgstr "Soporta"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentación"
@ -5959,8 +5975,8 @@ msgstr "%d campos requiren atención"
msgid "1 field requires attention"
msgstr "1 campo require atención"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Validación fallida"
@ -7341,90 +7357,90 @@ msgid "Time Picker"
msgstr "Selector de hora"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Non se encontraron campos na papeleira"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Non se encontraron campos"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Buscar campos"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Ver campo"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Novo campo"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Editar campo"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Engadir novo campo"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Campo"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Campos"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Non se atoparon os grupos de campos na papeleira"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Non se encontraron grupos de campos"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Buscar grupo de campos"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Ver grupo de campos"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Novo grupo de campos"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Editar grupo de campos"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Engadir novo grupo de campos"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Engadir novo"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Grupo de campos"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: gu\n"
"MIME-Version: 1.0\n"
@ -21,9 +21,31 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
msgstr "અપડેટ સ્ત્રોત"
#: includes/admin/views/acf-post-type/advanced-settings.php:850
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
@ -63,12 +85,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr "અમાન્ય સુરક્ષા પૂરી પાડવામાં ન આવવાને કારણે ACF માન્યતા કરવામાં અસમર્થ હતું."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr "સંપાદક UI માં મૂલ્યને ઍક્સેસ કરવાની મંજૂરી આપો"
@ -1720,7 +1736,7 @@ msgstr ""
#: includes/class-acf-site-health.php:280
msgid "Plugin Version"
msgstr ""
msgstr "પ્લગઇન સંસ્કરણ"
#: includes/class-acf-site-health.php:251
msgid ""
@ -2038,21 +2054,21 @@ msgstr "ક્ષેત્રો ઉમેરો"
msgid "This Field"
msgstr "આ ક્ષેત્ર"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "એસીએફ પ્રો"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "પ્રતિસાદ"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "સપોર્ટ"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "દ્વારા વિકસિત અને જાળવણી કરવામાં આવે છે"
@ -4529,7 +4545,7 @@ msgstr ""
"કસ્ટમ પોસ્ટ પ્રકાર UI સાથે નોંધાયેલ પોસ્ટ પ્રકારો અને વર્ગીકરણ આયાત કરો અને ACF સાથે તેનું "
"સંચાલન કરો. <a href=\"%s\">પ્રારંભ કરો</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr ""
@ -4850,7 +4866,7 @@ msgstr "આ આઇટમ સક્રિય કરો"
msgid "Move field group to trash?"
msgstr ""
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4863,7 +4879,7 @@ msgstr "નિષ્ક્રિય"
msgid "WP Engine"
msgstr ""
#: acf.php:559
#: acf.php:562
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."
@ -4871,7 +4887,7 @@ msgstr ""
"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે "
"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સ પ્રોને આપમેળે નિષ્ક્રિય કરી દીધું છે."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5305,7 +5321,7 @@ msgstr "બધા %s ફોર્મેટ"
msgid "Attachment"
msgstr "જોડાણ"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr ""
@ -5781,7 +5797,7 @@ msgstr ""
msgid "Supports"
msgstr ""
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "માર્ગદર્શિકા"
@ -6078,8 +6094,8 @@ msgstr ""
msgid "1 field requires attention"
msgstr ""
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr ""
@ -6190,7 +6206,7 @@ msgstr "પંક્તિઓ"
#: includes/fields/class-acf-field-textarea.php:22
msgid "Text Area"
msgstr ""
msgstr "ટેક્સ્ટ વિસ્તાર"
#: includes/fields/class-acf-field-checkbox.php:421
msgid "Prepend an extra checkbox to toggle all choices"
@ -6930,7 +6946,7 @@ msgstr[1] "%1$s ને ઓછામાં ઓછી %2$s પસંદગીન
#: includes/fields/class-acf-field-post_object.php:402
#: includes/fields/class-acf-field-relationship.php:616
msgid "Post ID"
msgstr ""
msgstr "પોસ્ટ આઈડી"
#: includes/fields/class-acf-field-post_object.php:15
#: includes/fields/class-acf-field-post_object.php:401
@ -7099,7 +7115,7 @@ msgstr ""
#: includes/fields/class-acf-field-image.php:184
msgid "Image URL"
msgstr ""
msgstr "ચિત્ર યુઆરએલ"
#: includes/fields/class-acf-field-image.php:183
msgid "Image Array"
@ -7453,90 +7469,90 @@ msgid "Time Picker"
msgstr "તારીખ પીકર"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "નિષ્ક્રિય <span class=\"count\">(%s)</span>"
msgstr[1] "નિષ્ક્રિય <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "ટ્રેશમાં કોઈ ફીલ્ડ મળ્યાં નથી"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "કોઈ ક્ષેત્રો મળ્યાં નથી"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "શોધ ક્ષેત્રો"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "ક્ષેત્ર જુઓ"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "નવી ફીલ્ડ"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "ફીલ્ડ સંપાદિત કરો"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "નવી ફીલ્ડ ઉમેરો"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "ફિલ્ડ"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "ક્ષેત્રો"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "ટ્રેશમાં કોઈ ફીલ્ડ જૂથો મળ્યાં નથી"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "કોઈ ક્ષેત્ર જૂથો મળ્યાં નથી"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "ક્ષેત્ર જૂથો શોધો"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "ક્ષેત્ર જૂથ જુઓ"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "નવું ક્ષેત્ર જૂથ"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "ક્ષેત્ર જૂથ સંપાદિત કરો"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "નવું ક્ષેત્ર જૂથ ઉમેરો"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "નવું ઉમેરો"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "ક્ષેત્ર જૂથ"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: he_IL\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: hr\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: hu_HU\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: id_ID\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr "Aggiorna fonte"
@ -69,14 +91,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
"ACF non ha potuto effettuare la validazione a causa del fatto che è stato "
"fornito un nonce di sicurezza non valido."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr "Permetti l'accesso al valore nell'interfaccia utente dell'editor"
@ -2076,21 +2090,21 @@ msgstr "Aggiungi campi"
msgid "This Field"
msgstr "Questo campo"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Feedback"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Supporto"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "è sviluppato e manutenuto da"
@ -2726,7 +2740,7 @@ msgstr "Post type non valido selezionato per la revisione."
#: includes/admin/views/global/navigation.php:189
msgid "More"
msgstr "Altri"
msgstr "Altro"
#: includes/admin/views/browse-fields-modal.php:96
msgid "Tutorial"
@ -4690,7 +4704,7 @@ msgstr ""
"Importa post type e tassonomie registrate con Custom Post Type UI e "
"gestiscile con ACF. <a href=\"%s\">Inizia qui</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -5023,7 +5037,7 @@ msgstr "Attiva questo elemento"
msgid "Move field group to trash?"
msgstr "Spostare il gruppo di campi nel cestino?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -5036,7 +5050,7 @@ msgstr "Inattivo"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -5045,7 +5059,7 @@ msgstr ""
"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced "
"Custom Fields PRO."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5496,7 +5510,7 @@ msgstr "Tutti i formati di %s"
msgid "Attachment"
msgstr "Allegato"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "Il valore %s è richiesto"
@ -5993,7 +6007,7 @@ msgstr "Duplica questo elemento"
msgid "Supports"
msgstr "Supporta"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentazione"
@ -6293,8 +6307,8 @@ msgstr "%d campi necessitano attenzione"
msgid "1 field requires attention"
msgstr "1 campo richiede attenzione"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Validazione fallita"
@ -7677,90 +7691,90 @@ msgid "Time Picker"
msgstr "Selettore orario"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Non attivo <span class=\"count\">(%s)</span>"
msgstr[1] "Non attivi <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Nessun campo trovato nel Cestino"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Nessun campo trovato"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Cerca campi"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Visualizza campo"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nuovo campo"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Modifica campo"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Aggiungi nuovo campo"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Campo"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Campi"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Nessun gruppo di campi trovato nel cestino"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Nessun gruppo di campi trovato"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Cerca gruppo di campi"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Visualizza gruppo di campi"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nuovo gruppo di campi"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Modifica gruppo di campi"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Aggiungi nuovo gruppo di campi"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Aggiungi nuovo"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Gruppo di campi"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr ""
@ -57,12 +79,6 @@ msgstr ""
msgid "wordpress.org"
msgstr ""
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -2018,21 +2034,21 @@ msgstr "フィールドを追加"
msgid "This Field"
msgstr "このフィールド"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "フィードバック"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "サポート"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "によって開発され、維持されている"
@ -4389,7 +4405,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4705,7 +4721,7 @@ msgstr "この項目を有効化する"
msgid "Move field group to trash?"
msgstr ""
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4718,7 +4734,7 @@ msgstr "無効"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4727,7 +4743,7 @@ msgstr ""
"ださい。\n"
"Advanced Custom Fields PROを自動的に無効化しました。"
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5168,7 +5184,7 @@ msgstr "すべての%sフォーマット"
msgid "Attachment"
msgstr "添付ファイル"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s の値は必須です"
@ -5658,7 +5674,7 @@ msgstr "この項目を複製"
msgid "Supports"
msgstr "サポート"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "ドキュメンテーション"
@ -5952,8 +5968,8 @@ msgstr "%d個のフィールドで確認が必要です"
msgid "1 field requires attention"
msgstr "1つのフィールドで確認が必要です"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "検証失敗"
@ -7328,89 +7344,89 @@ msgid "Time Picker"
msgstr "時間選択ツール"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "停止中 <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "ゴミ箱にフィールドが見つかりません"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "フィールドが見つかりません"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "フィールドを検索"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "フィールドを表示"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "新規フィールド"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "フィールドを編集"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "新規フィールドを追加"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "フィールド"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "フィールド"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "ゴミ箱にフィールドグループが見つかりません"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "フィールドグループが見つかりません"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "フィールドグループを検索"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "フィールドグループを表示"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "新規フィールドグループ"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "フィールドグループを編集"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "新規フィールドグループを追加"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "新規追加"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "フィールドグループ"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: ko_KR\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,28 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr ""
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr "출처 업데이트"
@ -63,12 +85,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr "잘못된 보안 논스가 제공되어 ACF가 유효성 검사를 수행할 수 없습니다."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr "에디터 UI에서 값에 대한 액세스 허용"
@ -2050,21 +2066,21 @@ msgstr "필드 추가"
msgid "This Field"
msgstr "이 필드"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "피드백"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "지원"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "에 의해 개발 및 유지 관리됩니다."
@ -4541,7 +4557,7 @@ msgstr ""
"Custom Post Type UI에 등록된 Post Type과 Taxonomies를 가져와서 ACF로 관리합니"
"다. <a href=\"%s\">시작하기</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4870,7 +4886,7 @@ msgstr "이 항목 활성화"
msgid "Move field group to trash?"
msgstr "필드 그룹을 휴지통으로 이동하시겠습니까?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4883,7 +4899,7 @@ msgstr "비활성"
msgid "WP Engine"
msgstr "WP 엔진"
#: acf.php:559
#: acf.php:562
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."
@ -4891,7 +4907,7 @@ msgstr ""
"Advanced Custom Fields와 Advanced Custom Fields 프로는 동시에 활성화되어서는 "
"안 됩니다. Advanced Custom Fields 프로를 자동으로 비활성화했습니다."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5331,7 +5347,7 @@ msgstr "모든 %s 형식"
msgid "Attachment"
msgstr "첨부"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s 값이 필요합니다."
@ -5818,7 +5834,7 @@ msgstr "이 항목 복제하기"
msgid "Supports"
msgstr "지원"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "문서화"
@ -6112,8 +6128,8 @@ msgstr "%d개의 필드에 주의가 필요합니다."
msgid "1 field requires attention"
msgstr "주의가 필요한 필드 1개"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "검증에 실패했습니다"
@ -7486,89 +7502,89 @@ msgid "Time Picker"
msgstr "시간 선택기"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "비활성 <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "휴지통에서 필드를 찾을 수 없습니다."
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "필드를 찾을 수 없음"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "필드 검색하기"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "필드보기"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "새 필드"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "필드 편집하기"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "새로운 필드 추가하기"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "필드"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "필드"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "휴지통에서 필드 그룹을 찾을 수 없습니다."
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "필드 그룹을 찾을 수 없음"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "필드 그룹 검색하기"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "필드 그룹 보기"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "새 필드 그룹"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "필드 그룹 편집하기"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "새 필드 그룹 추가하기"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "새로 추가하기"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "필드 그룹"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,31 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr "Finn ut mer"
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
"ACF klarte ikke fullføre validering fordi den oppgitte noncen feilet "
"verifiseringen."
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
"ACF klarte ikke utføre validering fordi ingen nonce ble gitt av serveren."
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr "er utviklet og vedlikeholdt av"
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr "Oppdater kilde"
@ -58,14 +83,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
"ACF klarte ikke å utføre validering på grunn av en ugyldig sikkerhetsnonce "
"oppgitt."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr ""
@ -103,10 +120,11 @@ msgstr ""
#: includes/api/api-template.php:1054
msgid "[The ACF shortcode cannot display fields from non-public posts]"
msgstr ""
"[ACFs kortkode kan ikke vise felter fra innlegg som ikke er offentlige]"
#: includes/api/api-template.php:1011
msgid "[The ACF shortcode is disabled on this site]"
msgstr ""
msgstr "[ACFs kortkode er deaktivert på denne siden]"
#: includes/fields/class-acf-field-icon_picker.php:451
msgid "Businessman Icon"
@ -803,7 +821,7 @@ msgstr "Logo for ACF PRO"
#: includes/admin/views/acf-field-group/field.php:37
msgid "ACF PRO Logo"
msgstr ""
msgstr "Logo for ACF PRO"
#. translators: %s - field/param name
#: includes/fields/class-acf-field-icon_picker.php:788
@ -2023,21 +2041,21 @@ msgstr "Legg til felter"
msgid "This Field"
msgstr "Dette feltet"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr ""
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr ""
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr ""
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr ""
@ -4344,15 +4362,15 @@ msgstr ""
#: includes/admin/post-types/admin-post-type.php:53
msgid "Post type saved."
msgstr ""
msgstr "Innleggstype lagret."
#: includes/admin/post-types/admin-post-type.php:50
msgid "Post type updated."
msgstr ""
msgstr "Innleggstype oppdatert."
#: includes/admin/post-types/admin-post-type.php:49
msgid "Post type deleted."
msgstr ""
msgstr "Innleggstype slettet."
#: includes/admin/post-types/admin-field-group.php:146
msgid "Type to search..."
@ -4364,7 +4382,7 @@ msgstr "Bare i PRO"
#: includes/admin/post-types/admin-field-group.php:93
msgid "Field groups linked successfully."
msgstr ""
msgstr "Feltgrupper ble koblet sammen."
#. translators: %s - URL to ACF tools page.
#: includes/admin/admin.php:199
@ -4373,7 +4391,7 @@ msgid ""
"manage them with ACF. <a href=\"%s\">Get Started</a>."
msgstr ""
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4396,17 +4414,17 @@ msgstr "Feltgruppe(r)"
#: includes/admin/admin-internal-post-type.php:323
msgid "Select one or many field groups..."
msgstr ""
msgstr "Velg en eller flere feltgrupper..."
#: includes/admin/admin-internal-post-type.php:322
msgid "Please select the field groups to link."
msgstr ""
msgstr "Velg feltgrupper du vil koble sammen."
#: includes/admin/admin-internal-post-type.php:280
msgid "Field group linked successfully."
msgid_plural "Field groups linked successfully."
msgstr[0] ""
msgstr[1] ""
msgstr[0] "Feltgruppe koblet sammen."
msgstr[1] "Feltgrupper koblet sammen."
#: includes/admin/admin-internal-post-type-list.php:277
#: includes/admin/post-types/admin-post-types.php:346
@ -4461,6 +4479,8 @@ msgid ""
"https://wpengine.com/?"
"utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
msgstr ""
"https://wpengine.com/?"
"utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
#: includes/api/api-template.php:1027
msgid "[ACF shortcode value disabled for preview]"
@ -4593,7 +4613,7 @@ msgstr "Gjentakende felt"
#: includes/admin/views/global/navigation.php:215
msgid "Unlock Extra Features with ACF PRO"
msgstr ""
msgstr "Lås opp ekstra funksjoner med ACF PRO"
#: includes/admin/views/acf-field-group/options.php:267
msgid "Delete Field Group"
@ -4702,7 +4722,7 @@ msgstr "Aktiver dette elementet"
msgid "Move field group to trash?"
msgstr "Flytte feltgruppe til papirkurven?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4715,7 +4735,7 @@ msgstr "Inaktiv"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -4723,7 +4743,7 @@ msgstr ""
"Advanced Custom Fields og Advanced Custom Fields PRO bør ikke være aktiverte "
"samtidig. Vi har automatisk deaktivert Advanced Custom Fields PRO."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5149,7 +5169,7 @@ msgstr "Alle %s-formater"
msgid "Attachment"
msgstr "Vedlegg"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s verdi er påkrevd"
@ -5639,7 +5659,7 @@ msgstr "Dupliser dette elementet"
msgid "Supports"
msgstr "Brukerstøtte"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Dokumentasjon"
@ -5936,8 +5956,8 @@ msgstr "%d felt krever oppmerksomhet"
msgid "1 field requires attention"
msgstr "1 felt krever oppmerksomhet"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Validering feilet"
@ -7315,90 +7335,90 @@ msgid "Time Picker"
msgstr "Tidsvelger"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Inaktiv <span class=\"count\">(%s)</span>"
msgstr[1] "Inaktive <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Ingen felt funnet i papirkurven"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Ingen felter funnet"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Søk felt"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Vis felt"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nytt felt"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Rediger felt"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Legg til nytt felt"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Felt"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Felter"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Ingen feltgrupper funnet i papirkurven"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Ingen feltgrupper funnet"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Søk feltgrupper"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Vis feltgruppe"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Ny feltgruppe"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Rediger feltgruppe"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Legg til ny feltgruppe"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Legg til ny"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Feltgruppe"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -12,7 +12,7 @@
# This file is distributed under the same license as Advanced Custom Fields.
msgid ""
msgstr ""
"PO-Revision-Date: 2025-01-21T10:45:54+00:00\n"
"PO-Revision-Date: 2025-03-10T14:58:23+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: nl_BE\n"
"MIME-Version: 1.0\n"
@ -21,6 +21,31 @@ msgstr ""
"X-Generator: gettext\n"
"Project-Id-Version: Advanced Custom Fields\n"
#: includes/validation.php:144
msgid "Learn more"
msgstr "Leer meer"
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
"ACF kon geen validatie uitvoeren omdat de verstrekte nonce niet geverifieerd "
"kon worden."
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
"ACF kon geen validatie uitvoeren omdat de server geen nonce heeft ontvangen."
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:324
msgid "are developed and maintained by"
msgstr "worden ontwikkeld en onderhouden door"
#: includes/class-acf-site-health.php:291
msgid "Update Source"
msgstr "Bron bijwerken"
@ -66,14 +91,6 @@ msgstr ""
msgid "wordpress.org"
msgstr "wordpress.org"
#: includes/validation.php:136
msgid ""
"ACF was unable to perform validation due to an invalid security nonce being "
"provided."
msgstr ""
"ACF kon de validatie niet uitvoeren omdat er een ongeldige nonce voor de "
"beveiliging was verstrekt."
#: includes/fields/class-acf-field.php:359
msgid "Allow Access to Value in Editor UI"
msgstr "Toegang tot waarde toestaan in UI van editor"
@ -2066,21 +2083,21 @@ msgstr "Velden toevoegen"
msgid "This Field"
msgstr "Dit veld"
#: includes/admin/admin.php:352
#: includes/admin/admin.php:361
msgid "ACF PRO"
msgstr "ACF PRO"
#: includes/admin/admin.php:350
#: includes/admin/admin.php:359
msgid "Feedback"
msgstr "Feedback"
#: includes/admin/admin.php:348
#: includes/admin/admin.php:357
msgid "Support"
msgstr "Ondersteuning"
#. translators: This text is prepended by a link to ACF's website, and appended
#. by a link to WP Engine's website.
#: includes/admin/admin.php:323
#: includes/admin/admin.php:332
msgid "is developed and maintained by"
msgstr "is ontwikkeld en wordt onderhouden door"
@ -4648,7 +4665,7 @@ msgstr ""
"aangepast berichttype UI en beheerder ze met ACF. <a href=\"%s\">Aan de "
"slag</a>."
#: includes/admin/admin.php:46 includes/admin/admin.php:352
#: includes/admin/admin.php:46 includes/admin/admin.php:361
#: includes/class-acf-site-health.php:250
msgid "ACF"
msgstr "ACF"
@ -4982,7 +4999,7 @@ msgstr "Activeer dit item"
msgid "Move field group to trash?"
msgstr "Veldgroep naar prullenmand verplaatsen?"
#: acf.php:501 includes/admin/admin-internal-post-type-list.php:264
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
#: includes/admin/post-types/admin-field-group.php:304
#: includes/admin/post-types/admin-post-type.php:282
#: includes/admin/post-types/admin-taxonomy.php:284
@ -4995,7 +5012,7 @@ msgstr "Inactief"
msgid "WP Engine"
msgstr "WP Engine"
#: acf.php:559
#: acf.php:562
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."
@ -5004,7 +5021,7 @@ msgstr ""
"tegelijkertijd actief zijn. We hebben Advanced Custom Fields PRO automatisch "
"gedeactiveerd."
#: acf.php:557
#: acf.php:560
msgid ""
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
"at the same time. We've automatically deactivated Advanced Custom Fields."
@ -5457,7 +5474,7 @@ msgstr "Alle %s formaten"
msgid "Attachment"
msgstr "Bijlage"
#: includes/validation.php:313
#: includes/validation.php:323
msgid "%s value is required"
msgstr "%s waarde is verplicht"
@ -5948,7 +5965,7 @@ msgstr "Dit item dupliceren"
msgid "Supports"
msgstr "Ondersteunt"
#: includes/admin/admin.php:346
#: includes/admin/admin.php:355
#: includes/admin/views/browse-fields-modal.php:102
msgid "Documentation"
msgstr "Documentatie"
@ -6246,8 +6263,8 @@ msgstr "%d velden vereisen aandacht"
msgid "1 field requires attention"
msgstr "1 veld vereist aandacht"
#: includes/assets.php:368 includes/validation.php:247
#: includes/validation.php:255
#: includes/assets.php:368 includes/validation.php:257
#: includes/validation.php:265
msgid "Validation failed"
msgstr "Validatie mislukt"
@ -7630,90 +7647,90 @@ msgid "Time Picker"
msgstr "Tijdkiezer"
#. translators: counts for inactive field groups
#: acf.php:507
#: acf.php:510
msgid "Inactive <span class=\"count\">(%s)</span>"
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
msgstr[0] "Inactief <span class=\"count\">(%s)</span>"
msgstr[1] "Inactief <span class=\"count\">(%s)</span>"
#: acf.php:468
#: acf.php:471
msgid "No Fields found in Trash"
msgstr "Geen velden gevonden in de prullenmand"
#: acf.php:467
#: acf.php:470
msgid "No Fields found"
msgstr "Geen velden gevonden"
#: acf.php:466
#: acf.php:469
msgid "Search Fields"
msgstr "Velden zoeken"
#: acf.php:465
#: acf.php:468
msgid "View Field"
msgstr "Veld bekijken"
#: acf.php:464 includes/admin/views/acf-field-group/fields.php:113
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
msgid "New Field"
msgstr "Nieuw veld"
#: acf.php:463
#: acf.php:466
msgid "Edit Field"
msgstr "Veld bewerken"
#: acf.php:462
#: acf.php:465
msgid "Add New Field"
msgstr "Nieuw veld toevoegen"
#: acf.php:460
#: acf.php:463
msgid "Field"
msgstr "Veld"
#: acf.php:459 includes/admin/post-types/admin-field-group.php:179
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
#: includes/admin/post-types/admin-field-groups.php:93
#: includes/admin/views/acf-field-group/fields.php:32
msgid "Fields"
msgstr "Velden"
#: acf.php:434
#: acf.php:437
msgid "No Field Groups found in Trash"
msgstr "Geen veldgroepen gevonden in prullenmand"
#: acf.php:433
#: acf.php:436
msgid "No Field Groups found"
msgstr "Geen veldgroepen gevonden"
#: acf.php:432
#: acf.php:435
msgid "Search Field Groups"
msgstr "Veldgroepen zoeken"
#: acf.php:431
#: acf.php:434
msgid "View Field Group"
msgstr "Veldgroep bekijken"
#: acf.php:430
#: acf.php:433
msgid "New Field Group"
msgstr "Nieuwe veldgroep"
#: acf.php:429
#: acf.php:432
msgid "Edit Field Group"
msgstr "Veldgroep bewerken"
#: acf.php:428
#: acf.php:431
msgid "Add New Field Group"
msgstr "Nieuwe veldgroep toevoegen"
#: acf.php:427 acf.php:461
#: acf.php:430 acf.php:464
#: includes/admin/views/acf-post-type/advanced-settings.php:224
#: includes/post-types/class-acf-post-type.php:93
#: includes/post-types/class-acf-taxonomy.php:92
msgid "Add New"
msgstr "Nieuwe toevoegen"
#: acf.php:426
#: acf.php:429
msgid "Field Group"
msgstr "Veldgroep"
#: acf.php:425 includes/admin/post-types/admin-field-groups.php:55
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
#: includes/admin/post-types/admin-post-types.php:113
#: includes/admin/post-types/admin-taxonomies.php:112
msgid "Field Groups"

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More