Updates to 6.4.0.1

This commit is contained in:
ACF 2025-04-09 10:23:24 +00:00
parent cb9cd3202f
commit 3d8015189f
155 changed files with 750 additions and 522 deletions

27
README.md Normal file
View File

@ -0,0 +1,27 @@
# Advanced Custom Fields
Welcome to the official Advanced Custom Fields repository on GitHub. ACF is a WordPress plugin used to take full control of your edit screens & custom field data.
## Documentation
Do you need help getting started with ACF, or do you have questions about one of the ACF features? You can [search through our documentation here](https://www.advancedcustomfields.com/resources/). If you don't find the answers you're looking for, you can start a new forum thread in the [support forum](https://support.advancedcustomfields.com/) or contact our [support team](https://www.advancedcustomfields.com/contact/)
If you've got feedback or a feature suggestion for ACF, please use our [feedback board](https://www.advancedcustomfields.com/feedback/)
## Support
This repository is not suitable for support. Please don't use our issue tracker for support requests, but for core issues only.
Support can take place in the appropriate channels:
* Community forum
* Email based ticket system
These channels can be accessed from our [support website](https://support.advancedcustomfields.com/).
## Contributing
If you have a patch, or stumbled upon an issue with ACF core, you can contribute this back to the code. Please create a new github issue with as much information as possible, and a PR if appropriate.
## Translations
If you're looking to translate ACF, you can submit new PRO translations via a PR on this repo. Any strings from the free version are imported from [translate.wordpress.org](https://translate.wordpress.org/projects/wp-plugins/advanced-custom-fields/stable/). For more information, please view our [translation guide](https://www.advancedcustomfields.com/resources/how-to-help-translate-acf-into-other-languages/)

10
acf.php
View File

@ -9,7 +9,7 @@
* Plugin Name: Advanced Custom Fields PRO
* Plugin URI: https://www.advancedcustomfields.com
* Description: Customize WordPress with powerful, professional and intuitive fields.
* Version: 6.4.0-RC1
* Version: 6.4.0.1
* Author: WP Engine
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
* Update URI: https://www.advancedcustomfields.com/pro
@ -36,7 +36,7 @@ if ( ! class_exists( 'ACF' ) ) {
*
* @var string
*/
public $version = '6.4.0-RC1';
public $version = '6.4.0.1';
/**
* The plugin settings array.
@ -91,7 +91,7 @@ if ( ! class_exists( 'ACF' ) ) {
// Define settings.
$this->settings = array(
'name' => __( 'Advanced Custom Fields', 'acf' ),
'name' => 'Advanced Custom Fields',
'slug' => dirname( ACF_BASENAME ),
'version' => ACF_VERSION,
'basename' => ACF_BASENAME,
@ -130,6 +130,7 @@ if ( ! class_exists( 'ACF' ) ) {
'enable_shortcode' => true,
'enable_bidirection' => true,
'enable_block_bindings' => true,
'enable_meta_box_cb_edit' => true,
);
// Include autoloader.
@ -285,6 +286,9 @@ if ( ! class_exists( 'ACF' ) ) {
// Load textdomain file.
acf_load_textdomain();
// Make plugin name translatable.
acf_update_setting( 'name', __( 'Advanced Custom Fields', 'acf' ) );
// Include 3rd party compatiblity.
acf_include( 'includes/third-party.php' );

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -387,8 +387,8 @@ function acf_log_invalid_field_notice( $field, $function ) {
}
$error_text = sprintf(
/* translators: %1 plugin name, %2 the URL to the documentation on this error */
__( '<strong>%1$s</strong> - We\'ve detected one or more calls to retrieve ACF field values before ACF has been initialized. This is not supported and can result in malformed or missing data. <a href="%2$s" target="_blank">Learn how to fix this</a>.', 'acf' ),
// This happens too early for translations to be loaded properly.
'<strong>%1$s</strong> - We\'ve detected one or more calls to retrieve ACF field values before ACF has been initialized. This is not supported and can result in malformed or missing data. <a href="%2$s" target="_blank">Learn how to fix this</a>.',
acf_get_setting( 'name' ),
acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/acf-field-functions/', 'docs', 'early_init_warning' )
);

View File

@ -8,28 +8,37 @@ if ( ! class_exists( 'acf_form_front' ) ) :
#[AllowDynamicProperties]
class acf_form_front {
/** @var array An array of registered form settings */
/**
* An array of registered form settings.
* @var array
*/
private $forms = array();
/** @var array An array of default fields */
/**
* An array of default fields.
* @var array
*/
public $fields = array();
/**
* Constructs the class.
*
* @since 5.0.0
*/
public function __construct() {
add_action( 'acf/validate_save_post', array( $this, 'validate_save_post' ), 1 );
add_filter( 'acf/pre_save_post', array( $this, 'pre_save_post' ), 5, 2 );
}
/**
* This function will setup the class functionality
* Returns fields used by frontend forms.
*
* @type function
* @date 5/03/2014
* @since 5.0.0
* @since 6.4
*
* @param n/a
* @return n/a
* @return array
*/
function __construct() {
// vars
public function get_default_fields(): array {
$this->fields = array(
'_post_title' => array(
'prefix' => 'acf',
'name' => '_post_title',
@ -56,17 +65,11 @@ if ( ! class_exists( 'acf_form_front' ) ) :
'value' => '',
'wrapper' => array( 'style' => 'display:none !important;' ),
),
);
// actions
add_action( 'acf/validate_save_post', array( $this, 'validate_save_post' ), 1 );
// filters
add_filter( 'acf/pre_save_post', array( $this, 'pre_save_post' ), 5, 2 );
return $this->fields;
}
/**
* description
*
@ -200,7 +203,7 @@ if ( ! class_exists( 'acf_form_front' ) ) :
function validate_save_post() {
// register field if isset in $_POST
foreach ( $this->fields as $k => $field ) {
foreach ( $this->get_default_fields() as $k => $field ) {
// bail early if no in $_POST
if ( ! isset( $_POST['acf'][ $k ] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Verified elsewhere.
@ -444,7 +447,7 @@ if ( ! class_exists( 'acf_form_front' ) ) :
acf_update_setting( 'uploader', $args['uploader'] );
// Register local fields.
foreach ( $this->fields as $k => $field ) {
foreach ( $this->get_default_fields() as $k => $field ) {
acf_add_local_field( $field );
}
@ -513,9 +516,9 @@ if ( ! class_exists( 'acf_form_front' ) ) :
// display form
if ( $args['form'] ) : ?>
<form <?php echo acf_esc_attrs( $args['form_attributes'] ); ?>>
<form <?php echo acf_esc_attrs( $args['form_attributes'] ); ?>>
<?php
endif;
endif;
// Render hidde form data.
acf_form_data(
@ -533,12 +536,12 @@ if ( ! class_exists( 'acf_form_front' ) ) :
<?php echo $args['html_after_fields']; ?><?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- designed to contain potentially unsafe HTML, set by developers. ?>
</div>
<?php if ( $args['form'] ) : ?>
<div class="acf-form-submit">
<?php printf( $args['html_submit_button'], $args['submit_value'] ); ?><?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- designed to contain potentially unsafe HTML, set by developers. ?>
<?php echo $args['html_submit_spinner']; ?><?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- designed to contain potentially unsafe HTML, set by developers. ?>
</div>
</form>
<?php endif;
<div class="acf-form-submit">
<?php printf( $args['html_submit_button'], $args['submit_value'] ); ?><?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- designed to contain potentially unsafe HTML, set by developers. ?>
<?php echo $args['html_submit_spinner']; ?><?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- designed to contain potentially unsafe HTML, set by developers. ?>
</div>
</form>
<?php endif;
}
}

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: 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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: cs_CZ\n"
"MIME-Version: 1.0\n"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
@ -23,7 +23,7 @@ msgstr ""
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
msgstr "Weitere Informationen"
#: includes/validation.php:133
msgid ""
@ -1043,7 +1043,7 @@ msgstr "Namensschild-Icon"
#: includes/fields/class-acf-field-icon_picker.php:620
msgid "Move Icon"
msgstr ""
msgstr "Verschieben-Icon"
#: includes/fields/class-acf-field-icon_picker.php:618
msgid "Money Icon"
@ -1277,7 +1277,7 @@ msgstr "Download-Icon"
#: includes/fields/class-acf-field-icon_picker.php:495
msgid "Dismiss Icon"
msgstr ""
msgstr "Abweisen-Icon"
#: includes/fields/class-acf-field-icon_picker.php:494
msgid "Desktop Icon"
@ -1599,7 +1599,7 @@ msgstr "Registrierte ACF-Blöcke"
#: includes/class-acf-site-health.php:605
msgid "Light"
msgstr ""
msgstr "Leicht"
#: includes/class-acf-site-health.php:605
msgid "Standard"
@ -3399,7 +3399,7 @@ msgstr ""
#: includes/admin/views/acf-post-type/advanced-settings.php:1259
#: includes/admin/views/acf-taxonomy/advanced-settings.php:1174
msgid "Show In REST API"
msgstr "Im REST-API anzeigen"
msgstr "In der REST-API anzeigen"
#: includes/admin/views/acf-post-type/advanced-settings.php:1238
msgid "Customize the query variable name."
@ -4960,7 +4960,7 @@ msgstr "%s erfordert eine gültige Anhangs-ID."
#: includes/admin/views/acf-field-group/options.php:233
msgid "Show in REST API"
msgstr "Im REST-API anzeigen"
msgstr "In der REST-API anzeigen"
#: includes/fields/class-acf-field-color_picker.php:156
msgid "Enable Transparency"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: de_DE_formal\n"
"MIME-Version: 1.0\n"
@ -23,7 +23,7 @@ msgstr ""
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
msgstr "Weitere Informationen"
#: includes/validation.php:133
msgid ""
@ -1043,7 +1043,7 @@ msgstr "Namensschild-Icon"
#: includes/fields/class-acf-field-icon_picker.php:620
msgid "Move Icon"
msgstr ""
msgstr "Verschieben-Icon"
#: includes/fields/class-acf-field-icon_picker.php:618
msgid "Money Icon"
@ -1277,7 +1277,7 @@ msgstr "Download-Icon"
#: includes/fields/class-acf-field-icon_picker.php:495
msgid "Dismiss Icon"
msgstr ""
msgstr "Abweisen-Icon"
#: includes/fields/class-acf-field-icon_picker.php:494
msgid "Desktop Icon"
@ -1599,7 +1599,7 @@ msgstr "Registrierte ACF-Blöcke"
#: includes/class-acf-site-health.php:605
msgid "Light"
msgstr ""
msgstr "Leicht"
#: includes/class-acf-site-health.php:605
msgid "Standard"
@ -3399,7 +3399,7 @@ msgstr ""
#: includes/admin/views/acf-post-type/advanced-settings.php:1259
#: includes/admin/views/acf-taxonomy/advanced-settings.php:1174
msgid "Show In REST API"
msgstr "Im REST-API anzeigen"
msgstr "In der REST-API anzeigen"
#: includes/admin/views/acf-post-type/advanced-settings.php:1238
msgid "Customize the query variable name."
@ -4960,7 +4960,7 @@ msgstr "%s erfordert eine gültige Anhangs-ID."
#: includes/admin/views/acf-field-group/options.php:233
msgid "Show in REST API"
msgstr "Im REST-API anzeigen"
msgstr "In der REST-API anzeigen"
#: includes/fields/class-acf-field-color_picker.php:156
msgid "Enable Transparency"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: el\n"
"MIME-Version: 1.0\n"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: es_CL\n"
"MIME-Version: 1.0\n"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: es_ES\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: es_MX\n"
"MIME-Version: 1.0\n"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fa_AF\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fa_IR\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fi\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: fr_FR\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: gl_ES\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: gu\n"
"MIME-Version: 1.0\n"
@ -2016,7 +2016,7 @@ msgstr "4 મહિના મફત"
#. translators: %s - A singular label for a post type or taxonomy.
#: includes/admin/views/global/form-top.php:59
msgid "(Duplicated from %s)"
msgstr ""
msgstr " (%s માંથી ડુપ્લિકેટ)"
#: includes/admin/tools/class-acf-admin-tool-export.php:289
msgid "Select Options Pages"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
@ -23,25 +23,29 @@ msgstr ""
#: includes/validation.php:144
msgid "Learn more"
msgstr ""
msgstr "Scopri di più"
#: includes/validation.php:133
msgid ""
"ACF was unable to perform validation because the provided nonce failed "
"verification."
msgstr ""
"ACF non ha potuto effettuare la validazione perché è fallita la verifica del "
"nonce fornito."
#: includes/validation.php:131
msgid ""
"ACF was unable to perform validation because no nonce was received by the "
"server."
msgstr ""
"ACF non ha potuto effettuare la validazione perché non è stato ricevuto "
"nessun nonce dal server."
#. 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 ""
msgstr "sono sviluppati e mantenuti da"
#: includes/class-acf-site-health.php:291
msgid "Update Source"

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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: ja\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: ko_KR\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-03-10T14:58:23+00:00\n"
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"

File diff suppressed because one or more lines are too long

Binary file not shown.

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