Updates to 6.5.1

This commit is contained in:
ACF 2025-09-11 10:19:43 +00:00
parent 7cb32137bc
commit ed376e7d24
152 changed files with 350 additions and 226 deletions

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.5.0.1
* Version: 6.5.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
@ -35,7 +35,7 @@ if ( ! class_exists( 'ACF' ) ) {
*
* @var string
*/
public $version = '6.5.0.1';
public $version = '6.5.1';
/**
* The plugin settings array.

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

@ -1,3 +1,5 @@
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 1.5C6.5346 1.49986 6.0806 1.64404 5.70056 1.91269C5.32052 2.18133 5.03313 2.56121 4.878 3H9.122C8.96674 2.56129 8.67932 2.18149 8.29931 1.91287C7.9193 1.64425 7.46537 1.50001 7 1.5ZM7 0C6.13556 1.17579e-05 5.29766 0.298594 4.62801 0.845246C3.95836 1.3919 3.49807 2.15306 3.325 3H0V4.5H1.27L2.088 13.497C2.15014 14.1805 2.46559 14.816 2.97239 15.2788C3.47919 15.7415 4.14071 15.9981 4.827 15.998H9.174C9.85996 15.9978 10.5211 15.7413 11.0277 15.2788C11.5342 14.8163 11.8496 14.1811 11.912 13.498L12.73 4.5H14V3H10.675C10.5019 2.15306 10.0416 1.3919 9.37199 0.845246C8.70234 0.298594 7.86444 1.17579e-05 7 0ZM11.224 4.5H2.776L3.582 13.361C3.6102 13.6717 3.75357 13.9606 3.98394 14.171C4.21431 14.3814 4.51502 14.498 4.827 14.498H9.174C9.48598 14.498 9.78669 14.3814 10.0171 14.171C10.2474 13.9606 10.3908 13.6717 10.419 13.361L11.224 4.5Z" fill="#B80F38"/>
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(4,3)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 5.5C11.5346 5.49986 11.0806 5.64404 10.7006 5.91269C10.3205 6.18133 10.0331 6.56121 9.878 7H14.122C13.9667 6.56129 13.6793 6.18149 13.2993 5.91287C12.9193 5.64425 12.4654 5.50001 12 5.5ZM12 4C11.1356 4.00001 10.2977 4.29859 9.62801 4.84525C8.95836 5.3919 8.49807 6.15306 8.325 7H5V8.5H6.27L7.088 17.497C7.15014 18.1805 7.46559 18.816 7.97239 19.2788C8.47919 19.7415 9.14071 19.9981 9.827 19.998H14.174C14.86 19.9978 15.5211 19.7413 16.0277 19.2788C16.5342 18.8163 16.8496 18.1811 16.912 17.498L17.73 8.5H19V7H15.675C15.5019 6.15306 15.0416 5.3919 14.372 4.84525C13.7023 4.29859 12.8644 4.00001 12 4ZM16.224 8.5H7.776L8.582 17.361C8.6102 17.6717 8.75357 17.9606 8.98394 18.171C9.21431 18.3814 9.51502 18.498 9.827 18.498H14.174C14.486 18.498 14.7867 18.3814 15.0171 18.171C15.2474 17.9606 15.3908 17.6717 15.419 17.361L16.224 8.5Z" fill="#B80F38"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1010 B

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -54,13 +54,46 @@ if ( ! class_exists( 'Updater' ) ) {
return;
}
// append update information to transient.
add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'modify_plugins_transient' ), 10, 1 );
// append update information to transient on both save and get.
add_filter( 'site_transient_update_plugins', array( $this, 'modify_plugins_transient' ), 10, 1 );
// clear ACF transient when updates complete.
add_filter( 'upgrader_process_complete', array( $this, 'clear_transients_on_upgrade' ), 5, 2 );
// modify plugin data visible in the 'View details' popup.
add_filter( 'plugins_api', array( $this, 'modify_plugin_details' ), 10, 3 );
}
/**
* Clears ACF plugin update transients when ACF is updated.
*
* This method is hooked to the 'upgrader_process_complete' action and will
* delete the 'acf_plugin_updates' transient when the ACF plugin is updated,
* ensuring fresh update data is fetched on the next check.
*
* @since 6.5.1
*
* @param WP_Upgrader $upgrader_object The upgrader instance.
* @param array $options Array of update details including:
* - 'action' (string) The action performed (e.g., 'update').
* - 'type' (string) The type of update (e.g., 'plugin').
* - 'plugins' (array) Array of plugin basenames that were updated.
*/
public function clear_transients_on_upgrade( $upgrader_object, $options ) {
// Check if this was a plugin update
if ( $options['action'] === 'update' && $options['type'] === 'plugin' ) {
// Check if we were one of the updated plugins
if ( isset( $options['plugins'] ) ) {
$acf_basename = acf_get_setting( 'basename' );
if ( in_array( $acf_basename, $options['plugins'], true ) ) {
$plugin = $this->get_plugin_by( 'basename', $acf_basename );
$plugin_id = $plugin ? $plugin['id'] : false;
$this->refresh_plugins_transient( $plugin_id );
}
}
}
}
/**
* Registeres a plugin for updates.
*
@ -134,6 +167,16 @@ if ( ! class_exists( 'Updater' ) ) {
'X-ACF-URL' => $site_url,
);
// Add update channel header if defined.
if ( defined( 'ACF_UPDATE_CHANNEL' ) && ACF_UPDATE_CHANNEL ) {
$headers['X-ACF-Update-Channel'] = ACF_UPDATE_CHANNEL;
}
// Add plugin override header if defined.
if ( defined( 'ACF_RELEASE_ACCESS_KEY' ) && ACF_RELEASE_ACCESS_KEY ) {
$headers['X-ACF-Release-Access-Key'] = ACF_RELEASE_ACCESS_KEY;
}
$url = "https://connect.advancedcustomfields.com/$endpoint";
// Staging environment.
@ -391,13 +434,19 @@ if ( ! class_exists( 'Updater' ) ) {
}
/**
* Deletes transients and allows a fresh lookup.
* Deletes cached ACF plugin update transients and allows a fresh lookup.
*
* @since 5.5.10
*
* @param string|false $id Optional. The plugin ID to clear specific plugin info transient.
* If provided, will delete the 'acf_plugin_info_{id}' transient.
* Defaults to false.
*/
public function refresh_plugins_transient() {
delete_site_transient( 'update_plugins' );
public function refresh_plugins_transient( $id = false ) {
delete_transient( 'acf_plugin_updates' );
if ( ! empty( $id ) && is_string( $id ) ) {
delete_transient( 'acf_plugin_info_' . $id );
}
}
/**
@ -409,11 +458,6 @@ if ( ! class_exists( 'Updater' ) ) {
* @return object $transient The modified transient value.
*/
public function modify_plugins_transient( $transient ) {
// Bail if we're just completing a plugin update.
if ( doing_action( 'upgrader_process_complete' ) ) {
return $transient;
}
// Bail early if no response (error).
if ( ! isset( $transient->response ) ) {
return $transient;

View File

@ -44,7 +44,7 @@ if ( ! class_exists( 'ACF_Admin_Tool_Import' ) ) :
?>
<div class="acf-postbox-header">
<h2 class="acf-postbox-title"><?php esc_html_e( 'Import', 'acf' ); ?></h2>
<div class="acf-tip"><i tabindex="0" class="acf-icon acf-icon-help acf-js-tooltip" title="<?php esc_attr_e( 'Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will import the items in that file.', 'acf' ); ?>">?</i></div>
<div class="acf-tip"><i tabindex="0" class="acf-icon acf-icon-help acf-js-tooltip" title="<?php esc_attr_e( 'Choose an ACF JSON file to import. Use only files from trusted sources, then click Import.', 'acf' ); ?>">?</i></div>
</div>
<div class="acf-postbox-inner">
<div class="acf-fields">
@ -52,11 +52,13 @@ if ( ! class_exists( 'ACF_Admin_Tool_Import' ) ) :
acf_render_field_wrap(
array(
'label' => __( 'Select File', 'acf' ),
'type' => 'file',
'name' => 'acf_import_file',
'value' => false,
'uploader' => 'basic',
'label' => __( 'Select JSON File', 'acf' ),
'type' => 'file',
'name' => 'acf_import_file',
'value' => false,
'uploader' => 'basic',
'mime_types' => 'application/json,application/x-json,application/x-javascript,text/javascript,text/x-javascript,text/json',
'instructions' => __( 'Import JSON containing field groups, post types, or taxonomies (trusted sources only)', 'acf' ),
)
);

View File

@ -731,7 +731,12 @@ if ( ! class_exists( 'ACF_Internal_Post_Type' ) ) {
// When importing a new field group, insert a temporary post and set the field group's ID.
// This allows fields to be updated before the field group (field group ID is needed for field parent setting).
if ( ! $post['ID'] ) {
$post['ID'] = wp_insert_post( array( 'post_title' => $post['key'] ) );
$post['ID'] = wp_insert_post(
array(
'post_title' => $post['key'],
'post_type' => $this->post_type,
)
);
}
$post = $this->update_post( $post );

View File

@ -161,13 +161,17 @@ if ( ! class_exists( 'acf_field_file' ) ) :
<label class="acf-basic-uploader">
<?php
acf_file_input(
array(
'name' => $field['name'],
'id' => $field['id'],
'key' => $field['key'],
)
$args = array(
'name' => $field['name'],
'id' => $field['id'],
'key' => $field['key'],
);
if ( ! empty( $field['mime_types'] ) ) {
$args['accept'] = $field['mime_types'];
}
acf_file_input( $args );
?>
</label>

View File

@ -345,10 +345,15 @@ if ( ! class_exists( 'ACF_Field_Group' ) ) {
$post['title'] .= ' (' . __( 'copy', 'acf' ) . ')';
}
// When importing a new field group, insert a temporary post and set the field group's ID.
// When duplicating a field group, insert a temporary post and set the field group's ID.
// This allows fields to be updated before the field group (field group ID is needed for field parent setting).
if ( ! $post['ID'] ) {
$post['ID'] = wp_insert_post( array( 'post_title' => $post['key'] ) );
$post['ID'] = wp_insert_post(
array(
'post_title' => $post['key'],
'post_type' => $this->post_type,
)
);
}
// Duplicate fields and update post.
@ -495,9 +500,13 @@ if ( ! class_exists( 'ACF_Field_Group' ) ) {
// When importing a new field group, insert a temporary post and set the field group's ID.
// This allows fields to be updated before the field group (field group ID is needed for field parent setting).
if ( ! $post['ID'] ) {
$post['ID'] = wp_insert_post( array( 'post_title' => $post['key'] ) );
$post['ID'] = wp_insert_post(
array(
'post_title' => $post['key'],
'post_type' => $this->post_type,
)
);
}
// Add field group data to $ids map.
$ids[ $post['key'] ] = $post['ID'];

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: da_DK\n"
"MIME-Version: 1.0\n"
@ -5906,7 +5906,7 @@ msgstr "Indlæg"
#: includes/fields.php:329
msgid "Relational"
msgstr ""
msgstr "Lignende"
#: includes/fields.php:328
msgid "Choice"

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: de_DE\n"
"MIME-Version: 1.0\n"
@ -1038,7 +1038,7 @@ msgstr "Teilen-Icon"
#: includes/fields/class-acf-field-icon_picker.php:687
msgid "Search Icon"
msgstr "Suchen-Icon"
msgstr "Such-Icon"
#: includes/fields/class-acf-field-icon_picker.php:686
msgid "Screen Options Icon"

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: de_DE_formal\n"
"MIME-Version: 1.0\n"
@ -1038,7 +1038,7 @@ msgstr "Teilen-Icon"
#: includes/fields/class-acf-field-icon_picker.php:687
msgid "Search Icon"
msgstr "Suchen-Icon"
msgstr "Such-Icon"
#: includes/fields/class-acf-field-icon_picker.php:686
msgid "Screen Options Icon"

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
@ -24,12 +24,12 @@ msgstr ""
#: includes/fields/class-acf-field-date_picker.php:235
#: includes/fields/class-acf-field-date_time_picker.php:222
msgid "Use the current date as the default value for this field."
msgstr ""
msgstr "Usa la fecha actual como valor por defecto para este campo."
#: includes/fields/class-acf-field-date_picker.php:234
#: includes/fields/class-acf-field-date_time_picker.php:221
msgid "Default to the current date"
msgstr ""
msgstr "Por defecto la fecha actual"
#: includes/assets.php:363
msgid "Toggle panel"

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: gu\n"
"MIME-Version: 1.0\n"
@ -433,7 +433,7 @@ msgstr ""
#: includes/fields/class-acf-field-icon_picker.php:637
msgid "Document Icon"
msgstr ""
msgstr "દસ્તાવેજ ચિહ્ન"
#: includes/fields/class-acf-field-icon_picker.php:636
msgid "Default Icon"
@ -537,7 +537,7 @@ msgstr "સ્ટેટસ આઇકન"
#: includes/fields/class-acf-field-icon_picker.php:588
msgid "Image Icon"
msgstr ""
msgstr "છબી ચિહ્ન"
#: includes/fields/class-acf-field-icon_picker.php:587
msgid "Gallery Icon"
@ -654,7 +654,7 @@ msgstr ""
#: includes/fields/class-acf-field-icon_picker.php:520
msgid "Database Icon"
msgstr ""
msgstr "ડેટાબેઝ આઇકન"
#: includes/fields/class-acf-field-icon_picker.php:518
msgid "Cover Image Icon"
@ -678,7 +678,7 @@ msgstr ""
#: includes/fields/class-acf-field-icon_picker.php:513
msgid "Repeat Icon"
msgstr ""
msgstr "પુનરાવર્તન ચિહ્ન"
#: includes/fields/class-acf-field-icon_picker.php:512
msgid "Play Icon"
@ -746,7 +746,7 @@ msgstr ""
#: includes/fields/class-acf-field-icon_picker.php:480
msgid "Topics Icon"
msgstr ""
msgstr "વિષયોનું આઇકન"
#: includes/fields/class-acf-field-icon_picker.php:479
msgid "Replies Icon"
@ -5599,11 +5599,11 @@ msgstr ""
#: includes/admin/views/acf-field-group/field.php:252
msgid "id"
msgstr ""
msgstr "id"
#: includes/admin/views/acf-field-group/field.php:236
msgid "class"
msgstr ""
msgstr "ક્લાસ"
#: includes/admin/views/acf-field-group/field.php:278
msgid "width"
@ -6593,7 +6593,7 @@ msgstr "વપરાશકર્તા ID"
#: includes/fields/class-acf-field-user.php:101
msgid "User Object"
msgstr ""
msgstr "વપરાશકર્તા ઑબ્જેક્ટ"
#: includes/fields/class-acf-field-user.php:100
msgid "User Array"
@ -6924,7 +6924,7 @@ msgstr ""
#: includes/fields/class-acf-field-text.php:115
#: includes/fields/class-acf-field-textarea.php:113
msgid "Character Limit"
msgstr ""
msgstr "અક્ષર મર્યાદા"
#: includes/fields/class-acf-field-email.php:144
#: includes/fields/class-acf-field-number.php:194
@ -6956,7 +6956,7 @@ msgstr ""
#: includes/fields/class-acf-field-range.php:217
#: includes/fields/class-acf-field-text.php:145
msgid "Prepend"
msgstr ""
msgstr "પ્રીપેન્ડ"
#: includes/fields/class-acf-field-email.php:124
#: includes/fields/class-acf-field-number.php:164
@ -7011,11 +7011,11 @@ msgstr ""
#: includes/fields/class-acf-field-relationship.php:648
msgid "Maximum Posts"
msgstr ""
msgstr "મહત્તમ પોસ્ટ્સ"
#: includes/fields/class-acf-field-relationship.php:638
msgid "Minimum Posts"
msgstr ""
msgstr "ન્યૂનતમ પોસ્ટ્સ"
#: includes/admin/views/acf-field-group/options.php:183
#: includes/admin/views/acf-post-type/advanced-settings.php:29

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: it_IT\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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+00:00\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@ -126,7 +126,7 @@ msgstr "デフォルトでは特権管理者ユーザーのみがこの設定を
#: includes/admin/views/acf-field-group/field.php:322
msgid "Close and Add Field"
msgstr ""
msgstr "閉じてフィールドを追加"
#: includes/admin/views/acf-taxonomy/advanced-settings.php:804
msgid ""
@ -250,11 +250,11 @@ msgstr "動画 (alt) アイコン"
#: includes/fields/class-acf-field-icon_picker.php:734
msgid "Update (alt) Icon"
msgstr ""
msgstr "更新 (alt) アイコン"
#: includes/fields/class-acf-field-icon_picker.php:731
msgid "Universal Access (alt) Icon"
msgstr ""
msgstr "ユニバーサル アクセス (alt) アイコン"
#: includes/fields/class-acf-field-icon_picker.php:728
msgid "Twitter (alt) Icon"
@ -856,6 +856,8 @@ msgstr ""
#: includes/admin/views/options-page-preview.php:26
msgid "Upgrade to ACF PRO to create options pages in just a few clicks"
msgstr ""
"ACF PRO にアップグレードするとオプションページをほんの数クリックで作成できま"
"す"
#: includes/ajax/class-acf-ajax-query-users.php:24
msgid "Invalid request args."
@ -2409,6 +2411,8 @@ msgid ""
"Displays the WordPress WYSIWYG editor as seen in Posts and Pages allowing "
"for a rich text-editing experience that also allows for multimedia content."
msgstr ""
"投稿や固定ページのような WYSIWYG エディタを表示し、マルチメディアコンテンツに"
"も対応したリッチなテキスト編集を可能にします。"
#: includes/fields/class-acf-field-wysiwyg.php:22
msgid "WYSIWYG Editor"
@ -2533,6 +2537,8 @@ msgstr ""
#: includes/fields/class-acf-field-image.php:24
msgid "Uses the native WordPress media picker to upload, or choose images."
msgstr ""
"画像のアップロードや選択には、WordPress ネイティブのメディアピッカーを使用し"
"ます。"
#: includes/fields/class-acf-field-group.php:23
msgid ""
@ -2547,10 +2553,14 @@ msgid ""
"An interactive UI for selecting a location using Google Maps. Requires a "
"Google Maps API key and additional configuration to display correctly."
msgstr ""
"Google マップを使って場所を選択するためのインタラクティブな UI。正しく表示す"
"るには Google マップ API キーと追加設定が必要です。"
#: includes/fields/class-acf-field-file.php:24
msgid "Uses the native WordPress media picker to upload, or choose files."
msgstr ""
"WordPress ネイティブのメディアピッカーを使用して、ファイルをアップロードまた"
"は選択します。"
#: includes/fields/class-acf-field-email.php:23
msgid "A text input specifically designed for storing email addresses."
@ -2561,16 +2571,20 @@ msgid ""
"An interactive UI for picking a date and time. The date return format can be "
"customized using the field settings."
msgstr ""
"日時を選択するためのインタラクティブな UI。フィールドの設定で日付の返送形式を"
"カスタマイズできます。"
#: includes/fields/class-acf-field-date_picker.php:24
msgid ""
"An interactive UI for picking a date. The date return format can be "
"customized using the field settings."
msgstr ""
"日付を選択するためのインタラクティブな UI。フィールド設定で日付の返送形式をカ"
"スタマイズできます。"
#: includes/fields/class-acf-field-color_picker.php:24
msgid "An interactive UI for selecting a color, or specifying a Hex value."
msgstr ""
msgstr "色を選択したり、Hex 値を指定するためのインタラクティブな UI。"
#: includes/fields/class-acf-field-checkbox.php:37
msgid ""
@ -2709,7 +2723,7 @@ msgstr "タクソノミーを追加"
#: includes/admin/views/acf-taxonomy/list-empty.php:14
msgid "Create custom taxonomies to classify post type content"
msgstr ""
msgstr "カスタムタクソノミーを作成して投稿タイプのコンテンツを分類しましょう"
#: includes/admin/views/acf-taxonomy/list-empty.php:13
msgid "Add Your First Taxonomy"
@ -3286,6 +3300,8 @@ msgid ""
"Expand the functionality of WordPress beyond standard posts and pages with "
"custom post types."
msgstr ""
"カスタム投稿タイプを使用して、WordPress の機能を投稿や固定ページを越えて拡張"
"しましょう。"
#: includes/admin/views/acf-post-type/list-empty.php:12
msgid "Add Your First Post Type"
@ -4645,6 +4661,8 @@ msgid ""
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
"started guide</a>."
msgstr ""
"ACF は初めてですか ? <a href=\"%s\" target=\"_blank\">入門ガイド</a>をお読み"
"ください。"
#: includes/admin/views/acf-field-group/list-empty.php:24
msgid "Add Field Group"
@ -4695,7 +4713,7 @@ msgstr "フィールドグループを削除"
#. translators: 1: Post creation date 2: Post creation time
#: includes/admin/views/acf-field-group/options.php:261
msgid "Created on %1$s at %2$s"
msgstr ""
msgstr "%1$s の %2$s に作成"
#: includes/acf-field-group-functions.php:497
msgid "Group Settings"

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-08-12T11:23:47+00:00\n"
"PO-Revision-Date: 2025-09-10T00:29:48+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.

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