Updates to 6.4.1
This commit is contained in:
parent
3d8015189f
commit
6d124e29a6
9
acf.php
9
acf.php
|
|
@ -2,14 +2,14 @@
|
||||||
/**
|
/**
|
||||||
* Advanced Custom Fields PRO
|
* Advanced Custom Fields PRO
|
||||||
*
|
*
|
||||||
* @package ACF
|
* @package ACF
|
||||||
* @author WP Engine
|
* @author WP Engine
|
||||||
*
|
*
|
||||||
* @wordpress-plugin
|
* @wordpress-plugin
|
||||||
* Plugin Name: Advanced Custom Fields PRO
|
* Plugin Name: Advanced Custom Fields PRO
|
||||||
* Plugin URI: https://www.advancedcustomfields.com
|
* Plugin URI: https://www.advancedcustomfields.com
|
||||||
* Description: Customize WordPress with powerful, professional and intuitive fields.
|
* Description: Customize WordPress with powerful, professional and intuitive fields.
|
||||||
* Version: 6.4.0.1
|
* Version: 6.4.1
|
||||||
* Author: WP Engine
|
* Author: WP Engine
|
||||||
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
|
* 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
|
* Update URI: https://www.advancedcustomfields.com/pro
|
||||||
|
|
@ -36,7 +36,7 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
public $version = '6.4.0.1';
|
public $version = '6.4.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The plugin settings array.
|
* The plugin settings array.
|
||||||
|
|
@ -161,6 +161,7 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
acf_new_instance( 'ACF\Meta\Post' );
|
acf_new_instance( 'ACF\Meta\Post' );
|
||||||
acf_new_instance( 'ACF\Meta\Term' );
|
acf_new_instance( 'ACF\Meta\Term' );
|
||||||
acf_new_instance( 'ACF\Meta\User' );
|
acf_new_instance( 'ACF\Meta\User' );
|
||||||
|
acf_new_instance( 'ACF\Meta\Option' );
|
||||||
|
|
||||||
acf_include( 'includes/acf-hook-functions.php' );
|
acf_include( 'includes/acf-hook-functions.php' );
|
||||||
acf_include( 'includes/acf-field-functions.php' );
|
acf_include( 'includes/acf-field-functions.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
|
|
@ -45,7 +45,6 @@ if ( ! class_exists( 'ACF_Admin_Internal_Post_Type' ) ) :
|
||||||
add_action( 'current_screen', array( $this, 'current_screen' ) );
|
add_action( 'current_screen', array( $this, 'current_screen' ) );
|
||||||
add_action( 'save_post_' . $this->post_type, array( $this, 'save_post' ), 10, 2 );
|
add_action( 'save_post_' . $this->post_type, array( $this, 'save_post' ), 10, 2 );
|
||||||
add_action( 'wp_ajax_acf/link_field_groups', array( $this, 'ajax_link_field_groups' ) );
|
add_action( 'wp_ajax_acf/link_field_groups', array( $this, 'ajax_link_field_groups' ) );
|
||||||
add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) );
|
|
||||||
add_filter( 'use_block_editor_for_post_type', array( $this, 'use_block_editor_for_post_type' ), 10, 2 );
|
add_filter( 'use_block_editor_for_post_type', array( $this, 'use_block_editor_for_post_type' ), 10, 2 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -92,6 +91,7 @@ if ( ! class_exists( 'ACF_Admin_Internal_Post_Type' ) ) :
|
||||||
acf_enqueue_scripts();
|
acf_enqueue_scripts();
|
||||||
|
|
||||||
add_action( 'admin_body_class', array( $this, 'admin_body_class' ) );
|
add_action( 'admin_body_class', array( $this, 'admin_body_class' ) );
|
||||||
|
add_filter( 'post_updated_messages', array( $this, 'post_updated_messages' ) );
|
||||||
add_action( 'acf/input/admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
add_action( 'acf/input/admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
||||||
add_action( 'acf/input/admin_head', array( $this, 'admin_head' ) );
|
add_action( 'acf/input/admin_head', array( $this, 'admin_head' ) );
|
||||||
add_action( 'acf/input/form_data', array( $this, 'form_data' ) );
|
add_action( 'acf/input/form_data', array( $this, 'form_data' ) );
|
||||||
|
|
|
||||||
|
|
@ -216,7 +216,7 @@ if ( ! class_exists( 'ACF_Admin' ) ) :
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allow opting-out of the notice.
|
// Allow opting-out of the notice.
|
||||||
if ( apply_filters( 'acf/admin/prevent_escaped_html_notice', false ) ) {
|
if ( apply_filters( 'acf/admin/prevent_escaped_html_notice', true ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -93,10 +93,11 @@ if ( ! defined( 'PWP_NAME' ) ) {
|
||||||
$acf_wpengine_logo = sprintf( '<span><img class="acf-wp-engine-pro" src="%s" alt="WP Engine" /></span>', $acf_wpengine_logo );
|
$acf_wpengine_logo = sprintf( '<span><img class="acf-wp-engine-pro" src="%s" alt="WP Engine" /></span>', $acf_wpengine_logo );
|
||||||
$utm_content = acf_is_pro() ? 'acf_pro_plugin_topbar_dropdown_cta' : 'acf_free_plugin_topbar_dropdown_cta';
|
$utm_content = acf_is_pro() ? 'acf_pro_plugin_topbar_dropdown_cta' : 'acf_free_plugin_topbar_dropdown_cta';
|
||||||
$wpengine_more_items[] = array(
|
$wpengine_more_items[] = array(
|
||||||
'url' => acf_add_url_utm_tags( 'https://wpengine.com/plans/?coupon=freedomtocreate', 'bx_prod_referral', $utm_content, false, 'acf_plugin', 'referral' ),
|
'url' => acf_add_url_utm_tags( 'https://wpengine.com/plans/?coupon=freedomtocreate', 'bx_prod_referral', $utm_content, false, 'acf_plugin', 'referral' ),
|
||||||
'text' => $acf_wpengine_logo . '<span class="acf-wp-engine-upsell-pill">' . __( '4 Months Free', 'acf' ) . '</span>',
|
'text' => $acf_wpengine_logo . '<span class="acf-wp-engine-upsell-pill">' . __( '4 Months Free', 'acf' ) . '</span>',
|
||||||
'target' => '_blank',
|
'target' => '_blank',
|
||||||
'li_class' => 'acf-wp-engine',
|
'li_class' => 'acf-wp-engine',
|
||||||
|
'aria-label' => __( 'Get 4 months free on any WP Engine plan', 'acf' ),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -142,16 +143,18 @@ function acf_print_menu_section( $menu_items, $section = '' ) {
|
||||||
$section_html = '';
|
$section_html = '';
|
||||||
|
|
||||||
foreach ( $menu_items as $menu_item ) {
|
foreach ( $menu_items as $menu_item ) {
|
||||||
$class = ! empty( $menu_item['class'] ) ? $menu_item['class'] : $menu_item['text'];
|
$class = ! empty( $menu_item['class'] ) ? $menu_item['class'] : $menu_item['text'];
|
||||||
$target = ! empty( $menu_item['target'] ) ? ' target="' . esc_attr( $menu_item['target'] ) . '"' : '';
|
$target = ! empty( $menu_item['target'] ) ? ' target="' . esc_attr( $menu_item['target'] ) . '"' : '';
|
||||||
$li_class = ! empty( $menu_item['li_class'] ) ? esc_attr( $menu_item['li_class'] ) : '';
|
$aria_label = ! empty( $menu_item['aria-label'] ) ? ' aria-label="' . esc_attr( $menu_item['aria-label'] ) . '"' : '';
|
||||||
|
$li_class = ! empty( $menu_item['li_class'] ) ? esc_attr( $menu_item['li_class'] ) : '';
|
||||||
|
|
||||||
$html = sprintf(
|
$html = sprintf(
|
||||||
'<a class="acf-tab%s %s" href="%s"%s><i class="acf-icon"></i>%s</a>',
|
'<a class="acf-tab%s %s" href="%s"%s%s><i class="acf-icon"></i>%s</a>',
|
||||||
! empty( $menu_item['is_active'] ) ? ' is-active' : '',
|
! empty( $menu_item['is_active'] ) ? ' is-active' : '',
|
||||||
'acf-header-tab-' . esc_attr( acf_slugify( $class ) ),
|
'acf-header-tab-' . esc_attr( acf_slugify( $class ) ),
|
||||||
esc_url( $menu_item['url'] ),
|
esc_url( $menu_item['url'] ),
|
||||||
$target,
|
$target,
|
||||||
|
$aria_label,
|
||||||
acf_esc_html( $menu_item['text'] )
|
acf_esc_html( $menu_item['text'] )
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
@ -173,11 +176,11 @@ function acf_print_menu_section( $menu_items, $section = '' ) {
|
||||||
<div class="acf-admin-toolbar-inner">
|
<div class="acf-admin-toolbar-inner">
|
||||||
<div class="acf-nav-wrap">
|
<div class="acf-nav-wrap">
|
||||||
<?php if ( acf_is_pro() && acf_pro_is_license_active() ) { ?>
|
<?php if ( acf_is_pro() && acf_pro_is_license_active() ) { ?>
|
||||||
<a href="<?php echo esc_url( admin_url( 'edit.php?post_type=acf-field-group' ) ); ?>" class="acf-logo pro">
|
<a href="<?php echo esc_url( admin_url( 'edit.php?post_type=acf-field-group' ) ); ?>" class="acf-logo pro" aria-label="<?php esc_attr_e( 'Edit ACF Field Groups', 'acf' ); ?>">
|
||||||
<img src="<?php echo esc_url( acf_get_url( 'assets/images/acf-pro-logo.svg' ) ); ?>" alt="<?php esc_attr_e( 'Advanced Custom Fields logo', 'acf' ); ?>">
|
<img src="<?php echo esc_url( acf_get_url( 'assets/images/acf-pro-logo.svg' ) ); ?>" alt="<?php esc_attr_e( 'Advanced Custom Fields logo', 'acf' ); ?>">
|
||||||
</a>
|
</a>
|
||||||
<?php } else { ?>
|
<?php } else { ?>
|
||||||
<a href="<?php echo esc_url( admin_url( 'edit.php?post_type=acf-field-group' ) ); ?>" class="acf-logo">
|
<a href="<?php echo esc_url( admin_url( 'edit.php?post_type=acf-field-group' ) ); ?>" class="acf-logo" aria-label="<?php esc_attr_e( 'Edit ACF Field Groups', 'acf' ); ?>">
|
||||||
<img src="<?php echo esc_url( acf_get_url( 'assets/images/acf-logo.svg' ) ); ?>" alt="<?php esc_attr_e( 'Advanced Custom Fields logo', 'acf' ); ?>">
|
<img src="<?php echo esc_url( acf_get_url( 'assets/images/acf-logo.svg' ) ); ?>" alt="<?php esc_attr_e( 'Advanced Custom Fields logo', 'acf' ); ?>">
|
||||||
</a>
|
</a>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
@ -234,7 +237,7 @@ function acf_print_menu_section( $menu_items, $section = '' ) {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<a href="<?php echo $acf_wpengine_logo_link; ?>" target="_blank" class="acf-nav-wpengine-logo"><?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped on generation. ?>
|
<a href="<?php echo $acf_wpengine_logo_link; ?>" target="_blank" class="acf-nav-wpengine-logo" aria-label="<?php esc_attr_e( 'WP Engine', 'acf' ); ?>"><?php //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- escaped on generation. ?>
|
||||||
<img src="<?php echo esc_url( acf_get_url( 'assets/images/wp-engine-horizontal-white.svg' ) ); ?>" alt="<?php esc_html_e( 'WP Engine logo', 'acf' ); ?>" />
|
<img src="<?php echo esc_url( acf_get_url( 'assets/images/wp-engine-horizontal-white.svg' ) ); ?>" alt="<?php esc_html_e( 'WP Engine logo', 'acf' ); ?>" />
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -142,7 +142,7 @@ function the_field( $selector, $post_id = false, $format_value = true ) {
|
||||||
*/
|
*/
|
||||||
function _acf_log_escaped_html( $function, $selector, $field, $post_id ) {
|
function _acf_log_escaped_html( $function, $selector, $field, $post_id ) {
|
||||||
// If the notice isn't shown, no use in logging the errors.
|
// If the notice isn't shown, no use in logging the errors.
|
||||||
if ( apply_filters( 'acf/admin/prevent_escaped_html_notice', false ) ) {
|
if ( apply_filters( 'acf/admin/prevent_escaped_html_notice', true ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,43 @@ if ( ! class_exists( 'acf_field_icon_picker' ) ) :
|
||||||
return apply_filters( 'acf/fields/icon_picker/tabs', $tabs );
|
return apply_filters( 'acf/fields/icon_picker/tabs', $tabs );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders an icon list tab (i.e. dashicons, custom icons).
|
||||||
|
*
|
||||||
|
* @since 6.4
|
||||||
|
*
|
||||||
|
* @param string $tab_name The name of the tab being rendered.
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function render_icon_list_tab( $tab_name ) {
|
||||||
|
?>
|
||||||
|
<div class="acf-icon-list-search-wrap">
|
||||||
|
<?php
|
||||||
|
acf_text_input(
|
||||||
|
array(
|
||||||
|
'class' => 'acf-icon-list-search-input',
|
||||||
|
'placeholder' => esc_html__( 'Search icons...', 'acf' ),
|
||||||
|
'type' => 'search',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
<div class="acf-icon-list" role="radiogroup" data-parent-tab="<?php echo esc_attr( $tab_name ); ?>"></div>
|
||||||
|
<div class="acf-icon-list-empty">
|
||||||
|
<img src="<?php echo esc_url( acf_get_url( 'assets/images/face-sad.svg' ) ); ?>" />
|
||||||
|
<p class="acf-no-results-text">
|
||||||
|
<?php
|
||||||
|
printf(
|
||||||
|
/* translators: %s: The invalid search term */
|
||||||
|
esc_html__( "No search results for '%s'", 'acf' ),
|
||||||
|
'<span class="acf-invalid-icon-list-search-term"></span>'
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Renders icon picker field
|
* Renders icon picker field
|
||||||
*
|
*
|
||||||
|
|
@ -131,35 +168,11 @@ if ( ! class_exists( 'acf_field_icon_picker' ) ) :
|
||||||
}
|
}
|
||||||
|
|
||||||
$wrapper_class = str_replace( '_', '-', $name );
|
$wrapper_class = str_replace( '_', '-', $name );
|
||||||
echo '<div class="acf-icon-picker-tabs acf-icon-picker-' . esc_attr( $wrapper_class ) . '-tabs">';
|
echo '<div class="acf-icon-picker-tabs acf-icon-picker-' . esc_attr( $wrapper_class ) . '-tabs" data-tab="' . esc_attr( $name ) . '">';
|
||||||
|
|
||||||
switch ( $name ) {
|
switch ( $name ) {
|
||||||
case 'dashicons':
|
case 'dashicons':
|
||||||
echo '<div class="acf-dashicons-search-wrap">';
|
$this->render_icon_list_tab( $name );
|
||||||
acf_text_input(
|
|
||||||
array(
|
|
||||||
'class' => 'acf-dashicons-search-input',
|
|
||||||
'placeholder' => esc_html__( 'Search icons...', 'acf' ),
|
|
||||||
'type' => 'search',
|
|
||||||
)
|
|
||||||
);
|
|
||||||
echo '</div>';
|
|
||||||
echo '<div class="acf-dashicons-list"></div>';
|
|
||||||
?>
|
|
||||||
<div class="acf-dashicons-list-empty">
|
|
||||||
<img src="<?php echo esc_url( acf_get_url( 'assets/images/face-sad.svg' ) ); ?>" />
|
|
||||||
<p class="acf-no-results-text">
|
|
||||||
<?php
|
|
||||||
printf(
|
|
||||||
/* translators: %s: The invalid search term */
|
|
||||||
esc_html__( "No search results for '%s'", 'acf' ),
|
|
||||||
'<span class="acf-invalid-dashicon-search-term"></span>'
|
|
||||||
);
|
|
||||||
?>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
break;
|
break;
|
||||||
case 'media_library':
|
case 'media_library':
|
||||||
?>
|
?>
|
||||||
|
|
@ -214,6 +227,18 @@ if ( ! class_exists( 'acf_field_icon_picker' ) ) :
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
do_action( 'acf/fields/icon_picker/tab/' . $name, $field );
|
do_action( 'acf/fields/icon_picker/tab/' . $name, $field );
|
||||||
|
|
||||||
|
$custom_icons = apply_filters( 'acf/fields/icon_picker/' . $name . '/icons', array(), $field );
|
||||||
|
|
||||||
|
if ( is_array( $custom_icons ) && ! empty( $custom_icons ) ) {
|
||||||
|
$this->render_icon_list_tab( $name, $custom_icons );
|
||||||
|
|
||||||
|
acf_localize_data(
|
||||||
|
array(
|
||||||
|
'iconPickerIcons_' . $name => $custom_icons,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
|
|
|
||||||
|
|
@ -4,20 +4,14 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
|
|
||||||
class acf_field_select extends acf_field {
|
class acf_field_select extends acf_field {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function will setup the field type data
|
* Sets up the field type data.
|
||||||
*
|
*
|
||||||
* @type function
|
|
||||||
* @date 5/03/2014
|
|
||||||
* @since 5.0.0
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @param n/a
|
* @return void
|
||||||
* @return n/a
|
|
||||||
*/
|
*/
|
||||||
function initialize() {
|
public function initialize() {
|
||||||
|
|
||||||
// vars
|
|
||||||
$this->name = 'select';
|
$this->name = 'select';
|
||||||
$this->label = _x( 'Select', 'noun', 'acf' );
|
$this->label = _x( 'Select', 'noun', 'acf' );
|
||||||
$this->category = 'choice';
|
$this->category = 'choice';
|
||||||
|
|
@ -25,22 +19,22 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-select.png';
|
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-select.png';
|
||||||
$this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/select/', 'docs', 'field-type-selection' );
|
$this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/select/', 'docs', 'field-type-selection' );
|
||||||
$this->defaults = array(
|
$this->defaults = array(
|
||||||
'multiple' => 0,
|
'multiple' => 0,
|
||||||
'allow_null' => 0,
|
'allow_null' => 0,
|
||||||
'choices' => array(),
|
'choices' => array(),
|
||||||
'default_value' => '',
|
'default_value' => '',
|
||||||
'ui' => 0,
|
'ui' => 0,
|
||||||
'ajax' => 0,
|
'ajax' => 0,
|
||||||
'placeholder' => '',
|
'placeholder' => '',
|
||||||
'return_format' => 'value',
|
'return_format' => 'value',
|
||||||
|
'create_options' => 0,
|
||||||
|
'save_options' => 0,
|
||||||
);
|
);
|
||||||
|
|
||||||
// ajax
|
|
||||||
add_action( 'wp_ajax_acf/fields/select/query', array( $this, 'ajax_query' ) );
|
add_action( 'wp_ajax_acf/fields/select/query', array( $this, 'ajax_query' ) );
|
||||||
add_action( 'wp_ajax_nopriv_acf/fields/select/query', array( $this, 'ajax_query' ) );
|
add_action( 'wp_ajax_nopriv_acf/fields/select/query', array( $this, 'ajax_query' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enqueues admin scripts for the Select field.
|
* Enqueues admin scripts for the Select field.
|
||||||
*
|
*
|
||||||
|
|
@ -208,26 +202,22 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create the HTML interface for your field
|
* Creates the HTML interface for the field.
|
||||||
*
|
*
|
||||||
* @param $field - an array holding all the field's data
|
* @since 3.6
|
||||||
*
|
*
|
||||||
* @type action
|
* @param array $field An array holding all the field's data.
|
||||||
* @since 3.6
|
* @return void
|
||||||
* @date 23/01/13
|
|
||||||
*/
|
*/
|
||||||
function render_field( $field ) {
|
public function render_field( $field ) {
|
||||||
|
|
||||||
// convert
|
|
||||||
$value = acf_get_array( $field['value'] );
|
$value = acf_get_array( $field['value'] );
|
||||||
$choices = acf_get_array( $field['choices'] );
|
$choices = acf_get_array( $field['choices'] );
|
||||||
|
|
||||||
// placeholder
|
|
||||||
if ( empty( $field['placeholder'] ) ) {
|
if ( empty( $field['placeholder'] ) ) {
|
||||||
$field['placeholder'] = _x( 'Select', 'verb', 'acf' );
|
$field['placeholder'] = _x( 'Select', 'verb', 'acf' );
|
||||||
}
|
}
|
||||||
|
|
||||||
// add empty value (allows '' to be selected)
|
// Add empty value (allows '' to be selected).
|
||||||
if ( empty( $value ) ) {
|
if ( empty( $value ) ) {
|
||||||
$value = array( '' );
|
$value = array( '' );
|
||||||
}
|
}
|
||||||
|
|
@ -250,7 +240,6 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
$choices = $minimal;
|
$choices = $minimal;
|
||||||
}
|
}
|
||||||
|
|
||||||
// vars
|
|
||||||
$select = array(
|
$select = array(
|
||||||
'id' => $field['id'],
|
'id' => $field['id'],
|
||||||
'class' => $field['class'],
|
'class' => $field['class'],
|
||||||
|
|
@ -266,7 +255,6 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
$select['aria-label'] = $field['aria-label'];
|
$select['aria-label'] = $field['aria-label'];
|
||||||
}
|
}
|
||||||
|
|
||||||
// multiple
|
|
||||||
if ( $field['multiple'] ) {
|
if ( $field['multiple'] ) {
|
||||||
$select['multiple'] = 'multiple';
|
$select['multiple'] = 'multiple';
|
||||||
$select['size'] = 5;
|
$select['size'] = 5;
|
||||||
|
|
@ -278,6 +266,10 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( ! empty( $field['create_options'] ) && $field['ui'] ) {
|
||||||
|
$select['data-create_options'] = true;
|
||||||
|
}
|
||||||
|
|
||||||
// special atts
|
// special atts
|
||||||
if ( ! empty( $field['readonly'] ) ) {
|
if ( ! empty( $field['readonly'] ) ) {
|
||||||
$select['readonly'] = 'readonly';
|
$select['readonly'] = 'readonly';
|
||||||
|
|
@ -298,7 +290,7 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
$select['data-minimum-results-for-search'] = '-1';
|
$select['data-minimum-results-for-search'] = '-1';
|
||||||
}
|
}
|
||||||
|
|
||||||
// hidden input is needed to allow validation to see <select> element with no selected value
|
// Hidden input is needed to allow validation to see <select> element with no selected value.
|
||||||
if ( $field['multiple'] || $field['ui'] ) {
|
if ( $field['multiple'] || $field['ui'] ) {
|
||||||
acf_hidden_input(
|
acf_hidden_input(
|
||||||
array(
|
array(
|
||||||
|
|
@ -308,26 +300,34 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// append
|
|
||||||
$select['value'] = $value;
|
$select['value'] = $value;
|
||||||
$select['choices'] = $choices;
|
$select['choices'] = $choices;
|
||||||
|
|
||||||
// render
|
if ( ! empty( $field['create_options'] ) && $field['ui'] && is_array( $field['value'] ) ) {
|
||||||
|
foreach ( $field['value'] as $value ) {
|
||||||
|
// Already exists in choices.
|
||||||
|
if ( isset( $field['choices'][ $value ] ) ) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$option = esc_attr( $value );
|
||||||
|
|
||||||
|
$select['choices'][ $option ] = $option;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
acf_select_input( $select );
|
acf_select_input( $select );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create extra options for your field. This is rendered when editing a field.
|
* Renders the field settings used in the "General" tab.
|
||||||
* The value of $field['name'] can be used (like bellow) to save extra data to the $field
|
|
||||||
*
|
*
|
||||||
* @type action
|
* @since 3.6
|
||||||
* @since 3.6
|
|
||||||
* @date 23/01/13
|
|
||||||
*
|
*
|
||||||
* @param $field - an array holding all the field's data
|
* @param array $field An array holding all the field's data.
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
function render_field_settings( $field ) {
|
public function render_field_settings( $field ) {
|
||||||
|
|
||||||
// encode choices (convert from array)
|
// encode choices (convert from array)
|
||||||
$field['choices'] = acf_encode_choices( $field['choices'] );
|
$field['choices'] = acf_encode_choices( $field['choices'] );
|
||||||
|
|
@ -392,7 +392,7 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
* @param array $field The field settings array.
|
* @param array $field The field settings array.
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function render_field_validation_settings( $field ) {
|
public function render_field_validation_settings( $field ) {
|
||||||
acf_render_field_setting(
|
acf_render_field_setting(
|
||||||
$field,
|
$field,
|
||||||
array(
|
array(
|
||||||
|
|
@ -413,7 +413,7 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
* @param array $field The field settings array.
|
* @param array $field The field settings array.
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
function render_field_presentation_settings( $field ) {
|
public function render_field_presentation_settings( $field ) {
|
||||||
acf_render_field_setting(
|
acf_render_field_setting(
|
||||||
$field,
|
$field,
|
||||||
array(
|
array(
|
||||||
|
|
@ -440,22 +440,70 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
acf_render_field_setting(
|
||||||
|
$field,
|
||||||
|
array(
|
||||||
|
'label' => __( 'Create Options', 'acf' ),
|
||||||
|
'instructions' => __( 'Allow content editors to create new options by typing in the Select input. Multiple options can be created from a comma separated string.', 'acf' ),
|
||||||
|
'name' => 'create_options',
|
||||||
|
'type' => 'true_false',
|
||||||
|
'ui' => 1,
|
||||||
|
'conditions' => array(
|
||||||
|
array(
|
||||||
|
'field' => 'ui',
|
||||||
|
'operator' => '==',
|
||||||
|
'value' => 1,
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'field' => 'multiple',
|
||||||
|
'operator' => '==',
|
||||||
|
'value' => 1,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
acf_render_field_setting(
|
||||||
|
$field,
|
||||||
|
array(
|
||||||
|
'label' => __( 'Save Options', 'acf' ),
|
||||||
|
'instructions' => __( 'Save created options back to the "Choices" setting in the field definition.', 'acf' ),
|
||||||
|
'name' => 'save_options',
|
||||||
|
'type' => 'true_false',
|
||||||
|
'ui' => 1,
|
||||||
|
'conditions' => array(
|
||||||
|
array(
|
||||||
|
'field' => 'ui',
|
||||||
|
'operator' => '==',
|
||||||
|
'value' => 1,
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'field' => 'multiple',
|
||||||
|
'operator' => '==',
|
||||||
|
'value' => 1,
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'field' => 'create_options',
|
||||||
|
'operator' => '==',
|
||||||
|
'value' => 1,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This filter is applied to the $value after it is loaded from the db
|
* Filters the $value after it is loaded from the db.
|
||||||
*
|
*
|
||||||
* @type filter
|
|
||||||
* @since 3.6
|
* @since 3.6
|
||||||
* @date 23/01/13
|
|
||||||
*
|
*
|
||||||
* @param $value (mixed) the value found in the database
|
* @param mixed $value The value found in the database.
|
||||||
* @param $post_id (mixed) the post_id from which the value was loaded
|
* @param integer|string $post_id The post_id from which the value was loaded.
|
||||||
* @param $field (array) the field array holding all the field options
|
* @param array $field The field array holding all the field options.
|
||||||
* @return $value
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
function load_value( $value, $post_id, $field ) {
|
public function load_value( $value, $post_id, $field ) {
|
||||||
|
|
||||||
// Return an array when field is set for multiple.
|
// Return an array when field is set for multiple.
|
||||||
if ( $field['multiple'] ) {
|
if ( $field['multiple'] ) {
|
||||||
if ( acf_is_empty( $value ) ) {
|
if ( acf_is_empty( $value ) ) {
|
||||||
|
|
@ -468,23 +516,16 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
return acf_unarray( $value );
|
return acf_unarray( $value );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Filters the $field before it is saved to the database.
|
||||||
*
|
*
|
||||||
* This filter is appied to the $field before it is saved to the database
|
* @since 3.6
|
||||||
*
|
*
|
||||||
* @type filter
|
* @param array $field The field array holding all the field options.
|
||||||
* @since 3.6
|
* @return array
|
||||||
* @date 23/01/13
|
|
||||||
*
|
|
||||||
* @param $field - the field array holding all the field options
|
|
||||||
* @param $post_id - the field group ID (post_type = acf)
|
|
||||||
*
|
|
||||||
* @return $field - the modified field
|
|
||||||
*/
|
*/
|
||||||
function update_field( $field ) {
|
public function update_field( $field ) {
|
||||||
|
// Decode choices (convert to array).
|
||||||
// decode choices (convert to array)
|
|
||||||
$field['choices'] = acf_decode_choices( $field['choices'] );
|
$field['choices'] = acf_decode_choices( $field['choices'] );
|
||||||
$field['default_value'] = acf_decode_choices( $field['default_value'], true );
|
$field['default_value'] = acf_decode_choices( $field['default_value'], true );
|
||||||
|
|
||||||
|
|
@ -493,26 +534,21 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
$field['default_value'] = acf_unarray( $field['default_value'] );
|
$field['default_value'] = acf_unarray( $field['default_value'] );
|
||||||
}
|
}
|
||||||
|
|
||||||
// return
|
|
||||||
return $field;
|
return $field;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This filter is appied to the $value before it is updated in the db
|
* Filters the $value before it is updated in the db.
|
||||||
*
|
*
|
||||||
* @type filter
|
* @since 3.6
|
||||||
* @since 3.6
|
|
||||||
* @date 23/01/13
|
|
||||||
*
|
*
|
||||||
* @param $value - the value which will be saved in the database
|
* @param mixed $value The value which will be saved in the database.
|
||||||
* @param $post_id - the post_id of which the value will be saved
|
* @param integer|string $post_id The post_id of which the value will be saved.
|
||||||
* @param $field - the field array holding all the field options
|
* @param array $field The field array holding all the field options.
|
||||||
*
|
*
|
||||||
* @return $value - the modified value
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
function update_value( $value, $post_id, $field ) {
|
public function update_value( $value, $post_id, $field ) {
|
||||||
|
|
||||||
// Bail early if no value.
|
// Bail early if no value.
|
||||||
if ( empty( $value ) ) {
|
if ( empty( $value ) ) {
|
||||||
return $value;
|
return $value;
|
||||||
|
|
@ -524,45 +560,63 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
$value = array_map( 'strval', $value );
|
$value = array_map( 'strval', $value );
|
||||||
}
|
}
|
||||||
|
|
||||||
// return
|
// Save custom options back to the field definition if configured.
|
||||||
|
if ( ! empty( $field['save_options'] ) && is_array( $value ) ) {
|
||||||
|
// Get the raw field, using the ID if present or the key otherwise (i.e. when using JSON).
|
||||||
|
$selector = $field['ID'] ? $field['ID'] : $field['key'];
|
||||||
|
$field = acf_get_field( $selector );
|
||||||
|
|
||||||
|
// Bail if we don't have a valid field or field ID (JSON only).
|
||||||
|
if ( empty( $field['ID'] ) ) {
|
||||||
|
return $value;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ( $value as $v ) {
|
||||||
|
// Ignore if the option already exists.
|
||||||
|
if ( isset( $field['choices'][ $v ] ) ) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unslash (fixes serialize single quote issue) and sanitize.
|
||||||
|
$v = wp_unslash( $v );
|
||||||
|
$v = sanitize_text_field( $v );
|
||||||
|
|
||||||
|
// Append to the field choices.
|
||||||
|
$field['choices'][ $v ] = $v;
|
||||||
|
}
|
||||||
|
|
||||||
|
acf_update_field( $field );
|
||||||
|
}
|
||||||
|
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function will translate field settings
|
* Translates the field settings.
|
||||||
*
|
*
|
||||||
* @type function
|
* @since 5.3.2
|
||||||
* @date 8/03/2016
|
|
||||||
* @since 5.3.2
|
|
||||||
*
|
*
|
||||||
* @param $field (array)
|
* @param array $field The main field array.
|
||||||
* @return $field
|
* @return array
|
||||||
*/
|
*/
|
||||||
function translate_field( $field ) {
|
public function translate_field( $field ) {
|
||||||
|
|
||||||
// translate
|
|
||||||
$field['choices'] = acf_translate( $field['choices'] );
|
$field['choices'] = acf_translate( $field['choices'] );
|
||||||
|
|
||||||
// return
|
|
||||||
return $field;
|
return $field;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This filter is appied to the $value after it is loaded from the db and before it is returned to the template
|
* Filters the $value after it is loaded from the db, and before it is returned to the template.
|
||||||
*
|
*
|
||||||
* @type filter
|
|
||||||
* @since 3.6
|
* @since 3.6
|
||||||
* @date 23/01/13
|
|
||||||
*
|
*
|
||||||
* @param $value (mixed) the value which was loaded from the database
|
* @param mixed $value The value which was loaded from the database.
|
||||||
* @param $post_id (mixed) the post_id from which the value was loaded
|
* @param integer|string $post_id The post_id from which the value was loaded.
|
||||||
* @param $field (array) the field array holding all the field options
|
* @param array $field The field array holding all the field options.
|
||||||
*
|
*
|
||||||
* @return $value (mixed) the modified value
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
function format_value( $value, $post_id, $field ) {
|
public function format_value( $value, $post_id, $field ) {
|
||||||
if ( is_array( $value ) ) {
|
if ( is_array( $value ) ) {
|
||||||
foreach ( $value as $i => $val ) {
|
foreach ( $value as $i => $val ) {
|
||||||
$value[ $i ] = $this->format_value_single( $val, $post_id, $field );
|
$value[ $i ] = $this->format_value_single( $val, $post_id, $field );
|
||||||
|
|
@ -570,37 +624,37 @@ if ( ! class_exists( 'acf_field_select' ) ) :
|
||||||
} else {
|
} else {
|
||||||
$value = $this->format_value_single( $value, $post_id, $field );
|
$value = $this->format_value_single( $value, $post_id, $field );
|
||||||
}
|
}
|
||||||
|
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
function format_value_single( $value, $post_id, $field ) {
|
* Formats the value when the select is not a multi-select.
|
||||||
|
*
|
||||||
// bail early if is empty
|
* @since 3.6
|
||||||
|
*
|
||||||
|
* @param mixed $value The value to format.
|
||||||
|
* @param integer|string $post_id The post_id from which the value was loaded.
|
||||||
|
* @param array $field The field array holding all the field options.
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function format_value_single( $value, $post_id, $field ) {
|
||||||
|
// Bail early if is empty.
|
||||||
if ( acf_is_empty( $value ) ) {
|
if ( acf_is_empty( $value ) ) {
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
// vars
|
|
||||||
$label = acf_maybe_get( $field['choices'], $value, $value );
|
$label = acf_maybe_get( $field['choices'], $value, $value );
|
||||||
|
|
||||||
// value
|
if ( $field['return_format'] === 'label' ) {
|
||||||
if ( $field['return_format'] == 'value' ) {
|
|
||||||
|
|
||||||
// do nothing
|
|
||||||
// label
|
|
||||||
} elseif ( $field['return_format'] == 'label' ) {
|
|
||||||
$value = $label;
|
$value = $label;
|
||||||
|
} elseif ( $field['return_format'] === 'array' ) {
|
||||||
// array
|
|
||||||
} elseif ( $field['return_format'] == 'array' ) {
|
|
||||||
$value = array(
|
$value = array(
|
||||||
'value' => $value,
|
'value' => $value,
|
||||||
'label' => $label,
|
'label' => $label,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// return
|
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
lang/acf-ar.mo
BIN
lang/acf-ar.mo
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: ar\n"
|
"Language: ar\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: bg_BG\n"
|
"Language: bg_BG\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
lang/acf-ca.mo
BIN
lang/acf-ca.mo
Binary file not shown.
213
lang/acf-ca.po
213
lang/acf-ca.po
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "Camps de l'ACF"
|
msgstr "Camps de l'ACF"
|
||||||
|
|
@ -2666,8 +2674,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clona"
|
msgstr "Clona"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -4642,7 +4650,7 @@ msgstr ""
|
||||||
"i gestiona-les amb ACF. <a href=\"%s\">Comença</a>."
|
"i gestiona-les amb ACF. <a href=\"%s\">Comença</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4975,7 +4983,7 @@ msgstr "Activa aquest element"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Voleu moure el grup de camps a la paperera?"
|
msgstr "Voleu moure el grup de camps a la paperera?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4988,7 +4996,7 @@ msgstr "Inactiva"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4997,7 +5005,7 @@ msgstr ""
|
||||||
"actius al mateix temps. Hem desactivat Advanced Custom Fields PRO "
|
"actius al mateix temps. Hem desactivat Advanced Custom Fields PRO "
|
||||||
"automàticament."
|
"automàticament."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -5005,19 +5013,6 @@ msgstr ""
|
||||||
"Advanced Custom Fields i Advanced Custom Fields PRO no haurien d'estar "
|
"Advanced Custom Fields i Advanced Custom Fields PRO no haurien d'estar "
|
||||||
"actius al mateix temps. Hem desactivat Advanced Custom Fields automàticament."
|
"actius al mateix temps. Hem desactivat Advanced Custom Fields automàticament."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - hem detectat una o més crides per recuperar valors "
|
|
||||||
"de camps ACF abans que ACF s'hagi inicialitzat. Això no s'admet i pot donar "
|
|
||||||
"lloc a dades malformades o que faltin. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">Obteniu informació sobre com solucionar-ho</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6153,28 +6148,28 @@ msgstr "Desconegut"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "El tipus de camp no existeix"
|
msgstr "El tipus de camp no existeix"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "S'ha detectat brossa"
|
msgstr "S'ha detectat brossa"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "S'ha actualitzat l'entrada"
|
msgstr "S'ha actualitzat l'entrada"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Actualitza"
|
msgstr "Actualitza"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valida el correu electrònic"
|
msgstr "Valida el correu electrònic"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contingut"
|
msgstr "Contingut"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Títol"
|
msgstr "Títol"
|
||||||
|
|
||||||
|
|
@ -7473,17 +7468,15 @@ msgstr "Mostra el text al costat de la casella de selecció"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Missatge"
|
msgstr "Missatge"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Sí"
|
msgstr "Sí"
|
||||||
|
|
||||||
|
|
@ -7622,90 +7615,90 @@ msgid "Time Picker"
|
||||||
msgstr "Selector d'hora"
|
msgstr "Selector d'hora"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Inactiu <span class=\"count\">(%s)</span>"
|
msgstr[0] "Inactiu <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Inactius <span class=\"count\">(%s)</span>"
|
msgstr[1] "Inactius <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "No s'ha trobat cap camp a la paperera"
|
msgstr "No s'ha trobat cap camp a la paperera"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "No s'ha trobat cap camp"
|
msgstr "No s'ha trobat cap camp"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Cerca camps"
|
msgstr "Cerca camps"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Visualitza el camp"
|
msgstr "Visualitza el camp"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nou camp"
|
msgstr "Nou camp"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Edita el camp"
|
msgstr "Edita el camp"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Afegeix un nou camp"
|
msgstr "Afegeix un nou camp"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Camp"
|
msgstr "Camp"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Camps"
|
msgstr "Camps"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "No s'ha trobat cap grup de camps a la paperera"
|
msgstr "No s'ha trobat cap grup de camps a la paperera"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "No s'ha trobat cap grup de camps"
|
msgstr "No s'ha trobat cap grup de camps"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Cerca grups de camps"
|
msgstr "Cerca grups de camps"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Visualitza el grup de camps"
|
msgstr "Visualitza el grup de camps"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Nou grup de camps"
|
msgstr "Nou grup de camps"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Edita el grup de camps"
|
msgstr "Edita el grup de camps"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Afegeix un nou grup de camps"
|
msgstr "Afegeix un nou grup de camps"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Afegeix"
|
msgstr "Afegeix"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Grup de camps"
|
msgstr "Grup de camps"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7723,7 +7716,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: cs_CZ\n"
|
"Language: cs_CZ\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2625,8 +2633,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klonování"
|
msgstr "Klonování"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -4567,7 +4575,7 @@ msgstr ""
|
||||||
"Type UI a spravujte je s ACF. <a href=\"%s\">Pusťme se do toho</a>."
|
"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:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4902,7 +4910,7 @@ msgstr "Aktivovat tuto položku"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Přesunout skupinu polí do koše?"
|
msgstr "Přesunout skupinu polí do koše?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4915,7 +4923,7 @@ msgstr "Neaktivní"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4924,7 +4932,7 @@ msgstr ""
|
||||||
"aktivní současně. Plugin Advanced Custom Fields PRO jsme automaticky "
|
"aktivní současně. Plugin Advanced Custom Fields PRO jsme automaticky "
|
||||||
"deaktivovali."
|
"deaktivovali."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4933,19 +4941,6 @@ msgstr ""
|
||||||
"aktivní současně. Plugin Advanced Custom Fields jsme automaticky "
|
"aktivní současně. Plugin Advanced Custom Fields jsme automaticky "
|
||||||
"deaktivovali."
|
"deaktivovali."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> – Zjistili jsme jedno nebo více volání k načtení "
|
|
||||||
"hodnot polí ACF před inicializací ACF. Toto není podporováno a může mít za "
|
|
||||||
"následek chybná nebo chybějící data. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">Přečtěte si, jak to opravit</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6077,28 +6072,28 @@ msgstr "Neznámý"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Typ pole neexistuje"
|
msgstr "Typ pole neexistuje"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Zjištěn spam"
|
msgstr "Zjištěn spam"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Příspěvek aktualizován"
|
msgstr "Příspěvek aktualizován"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualizace"
|
msgstr "Aktualizace"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Ověřit e-mail"
|
msgstr "Ověřit e-mail"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Obsah"
|
msgstr "Obsah"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Název"
|
msgstr "Název"
|
||||||
|
|
||||||
|
|
@ -7393,17 +7388,15 @@ msgstr "Zobrazí text vedle zaškrtávacího políčka"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Zpráva"
|
msgstr "Zpráva"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Ne"
|
msgstr "Ne"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ano"
|
msgstr "Ano"
|
||||||
|
|
||||||
|
|
@ -7542,91 +7535,91 @@ msgid "Time Picker"
|
||||||
msgstr "Výběr času"
|
msgstr "Výběr času"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Neaktivní <span class=\"count\">(%s)</span>"
|
msgstr[0] "Neaktivní <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Neaktivní <span class=\"count\">(%s)</span>"
|
msgstr[1] "Neaktivní <span class=\"count\">(%s)</span>"
|
||||||
msgstr[2] "Neaktivní <span class=\"count\">(%s)</span>"
|
msgstr[2] "Neaktivní <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "V koši nenalezeno žádné pole"
|
msgstr "V koši nenalezeno žádné pole"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Nenalezeno žádné pole"
|
msgstr "Nenalezeno žádné pole"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Vyhledat pole"
|
msgstr "Vyhledat pole"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Zobrazit pole"
|
msgstr "Zobrazit pole"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nové pole"
|
msgstr "Nové pole"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Upravit pole"
|
msgstr "Upravit pole"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Přidat nové pole"
|
msgstr "Přidat nové pole"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Pole"
|
msgstr "Pole"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Pole"
|
msgstr "Pole"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "V koši nebyly nalezeny žádné skupiny polí"
|
msgstr "V koši nebyly nalezeny žádné skupiny polí"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Nebyly nalezeny žádné skupiny polí"
|
msgstr "Nebyly nalezeny žádné skupiny polí"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Hledat skupiny polí"
|
msgstr "Hledat skupiny polí"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Prohlížet skupinu polí"
|
msgstr "Prohlížet skupinu polí"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Nová skupina polí"
|
msgstr "Nová skupina polí"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Upravit skupinu polí"
|
msgstr "Upravit skupinu polí"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Přidat novou skupinu polí"
|
msgstr "Přidat novou skupinu polí"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Přidat nové"
|
msgstr "Přidat nové"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Skupina polí"
|
msgstr "Skupina polí"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7645,7 +7638,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
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.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: de_CH\n"
|
"Language: de_CH\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr "Weitere Informationen"
|
msgstr "Weitere Informationen"
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "Quelle aktualisieren"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "de.wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -804,7 +812,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "Du bist leider nicht berechtigt, diese Aktion durchzuführen."
|
msgstr "Du bist leider nicht berechtigt, diese Aktion durchzuführen."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1553,183 +1561,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "Icon-Wähler"
|
msgstr "Icon-Wähler"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr "Registrierte ACF-Formulare"
|
msgstr "Registrierte ACF-Formulare"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "Shortcode aktiviert"
|
msgstr "Shortcode aktiviert"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr "Registrierte ACF-Blöcke"
|
msgstr "Registrierte ACF-Blöcke"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Leicht"
|
msgstr "Leicht"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "Standard"
|
msgstr "Standard"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "REST-API-Format"
|
msgstr "REST-API-Format"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr "Registrierte Optionsseiten (PHP)"
|
msgstr "Registrierte Optionsseiten (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr "Registrierte Optionsseiten (JSON)"
|
msgstr "Registrierte Optionsseiten (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr "Registrierte Optionsseiten (UI)"
|
msgstr "Registrierte Optionsseiten (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr "Registrierte Taxonomien (JSON)"
|
msgstr "Registrierte Taxonomien (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr "Registrierte Taxonomien (UI)"
|
msgstr "Registrierte Taxonomien (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "Registrierte Inhaltstypen (JSON)"
|
msgstr "Registrierte Inhaltstypen (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr "Registrierte Inhaltstypen (UI)"
|
msgstr "Registrierte Inhaltstypen (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr "Registrierte Feldgruppen (JSON)"
|
msgstr "Registrierte Feldgruppen (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr "Registrierte Feldgruppen (PHP)"
|
msgstr "Registrierte Feldgruppen (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr "Registrierte Feldgruppen (UI)"
|
msgstr "Registrierte Feldgruppen (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "Aktive Plugins"
|
msgstr "Aktive Plugins"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "Übergeordnetes Theme"
|
msgstr "Übergeordnetes Theme"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "Aktives Theme"
|
msgstr "Aktives Theme"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "Ist Multisite"
|
msgstr "Ist Multisite"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "MySQL-Version"
|
msgstr "MySQL-Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "WordPress-Version"
|
msgstr "WordPress-Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr "Ablaufdatum des Abonnements"
|
msgstr "Ablaufdatum des Abonnements"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr "Lizenzstatus"
|
msgstr "Lizenzstatus"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr "Lizenz-Typ"
|
msgstr "Lizenz-Typ"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr "Lizensierte URL"
|
msgstr "Lizensierte URL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr "Lizenz aktiviert"
|
msgstr "Lizenz aktiviert"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Kostenlos"
|
msgstr "Kostenlos"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "Plugin-Typ"
|
msgstr "Plugin-Typ"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "Plugin-Version"
|
msgstr "Plugin-Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1876,7 +1884,7 @@ msgstr "Beziehung ist ungleich"
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr "Beziehung ist gleich"
|
msgstr "Beziehung ist gleich"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "ACF-Felder"
|
msgstr "ACF-Felder"
|
||||||
|
|
@ -2627,8 +2635,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klon"
|
msgstr "Klon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -2811,7 +2819,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:887
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:887
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr "Schlagwort-Wolke"
|
msgstr "Schlagwörter-Wolke"
|
||||||
|
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:842
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:842
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -4542,7 +4550,7 @@ msgstr ""
|
||||||
"a>."
|
"a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4876,7 +4884,7 @@ msgstr "Dieses Element aktivieren"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?"
|
msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4889,7 +4897,7 @@ msgstr "Inaktiv"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4898,7 +4906,7 @@ msgstr ""
|
||||||
"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch "
|
"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch "
|
||||||
"deaktiviert."
|
"deaktiviert."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4907,19 +4915,6 @@ msgstr ""
|
||||||
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
||||||
"deaktiviert."
|
"deaktiviert."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> – Es wurde mindestens ein Versuch festgestellt, ACF-"
|
|
||||||
"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht "
|
|
||||||
"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. <a "
|
|
||||||
"href=\"%2$s\" target=\"_blank\">Lerne, wie du das beheben kannst (engl.)</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6061,28 +6056,28 @@ msgstr "Unbekannt"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Der Feldtyp existiert nicht"
|
msgstr "Der Feldtyp existiert nicht"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Es wurde Spam entdeckt"
|
msgstr "Es wurde Spam entdeckt"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Der Beitrag wurde aktualisiert"
|
msgstr "Der Beitrag wurde aktualisiert"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualisieren"
|
msgstr "Aktualisieren"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "E-Mail-Adresse bestätigen"
|
msgstr "E-Mail-Adresse bestätigen"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Inhalt"
|
msgstr "Inhalt"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
|
|
@ -7381,17 +7376,15 @@ msgstr "Zeigt den Text neben dem Auswahlkästchen an"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mitteilung"
|
msgstr "Mitteilung"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ja"
|
msgstr "Ja"
|
||||||
|
|
||||||
|
|
@ -7530,90 +7523,90 @@ msgid "Time Picker"
|
||||||
msgstr "Zeitpicker"
|
msgstr "Zeitpicker"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Deaktiviert <span class=\"count\">(%s)</span>"
|
msgstr[0] "Deaktiviert <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Deaktiviert <span class=\"count\">(%s)</span>"
|
msgstr[1] "Deaktiviert <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Es wurden keine Felder im Papierkorb gefunden"
|
msgstr "Es wurden keine Felder im Papierkorb gefunden"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Es wurden keine Felder gefunden"
|
msgstr "Es wurden keine Felder gefunden"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Felder suchen"
|
msgstr "Felder suchen"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Feld anzeigen"
|
msgstr "Feld anzeigen"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Neues Feld"
|
msgstr "Neues Feld"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Feld bearbeiten"
|
msgstr "Feld bearbeiten"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Neues Feld hinzufügen"
|
msgstr "Neues Feld hinzufügen"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Feld"
|
msgstr "Feld"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Felder"
|
msgstr "Felder"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden"
|
msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Es wurden keine Feldgruppen gefunden"
|
msgstr "Es wurden keine Feldgruppen gefunden"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Feldgruppen durchsuchen"
|
msgstr "Feldgruppen durchsuchen"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Feldgruppe anzeigen"
|
msgstr "Feldgruppe anzeigen"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Neue Feldgruppe"
|
msgstr "Neue Feldgruppe"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Feldgruppe bearbeiten"
|
msgstr "Feldgruppe bearbeiten"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Neue Feldgruppe hinzufügen"
|
msgstr "Neue Feldgruppe hinzufügen"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Neu hinzufügen"
|
msgstr "Neu hinzufügen"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Feldgruppe"
|
msgstr "Feldgruppe"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7632,7 +7625,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: de_DE_formal\n"
|
"Language: de_DE_formal\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr "Weitere Informationen"
|
msgstr "Weitere Informationen"
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "Quelle aktualisieren"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "de.wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -804,7 +812,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "Du bist leider nicht berechtigt, diese Aktion durchzuführen."
|
msgstr "Du bist leider nicht berechtigt, diese Aktion durchzuführen."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1553,183 +1561,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "Icon-Wähler"
|
msgstr "Icon-Wähler"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr "Registrierte ACF-Formulare"
|
msgstr "Registrierte ACF-Formulare"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "Shortcode aktiviert"
|
msgstr "Shortcode aktiviert"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr "Registrierte ACF-Blöcke"
|
msgstr "Registrierte ACF-Blöcke"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Leicht"
|
msgstr "Leicht"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "Standard"
|
msgstr "Standard"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "REST-API-Format"
|
msgstr "REST-API-Format"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr "Registrierte Optionsseiten (PHP)"
|
msgstr "Registrierte Optionsseiten (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr "Registrierte Optionsseiten (JSON)"
|
msgstr "Registrierte Optionsseiten (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr "Registrierte Optionsseiten (UI)"
|
msgstr "Registrierte Optionsseiten (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr "Registrierte Taxonomien (JSON)"
|
msgstr "Registrierte Taxonomien (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr "Registrierte Taxonomien (UI)"
|
msgstr "Registrierte Taxonomien (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "Registrierte Inhaltstypen (JSON)"
|
msgstr "Registrierte Inhaltstypen (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr "Registrierte Inhaltstypen (UI)"
|
msgstr "Registrierte Inhaltstypen (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr "Registrierte Feldgruppen (JSON)"
|
msgstr "Registrierte Feldgruppen (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr "Registrierte Feldgruppen (PHP)"
|
msgstr "Registrierte Feldgruppen (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr "Registrierte Feldgruppen (UI)"
|
msgstr "Registrierte Feldgruppen (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "Aktive Plugins"
|
msgstr "Aktive Plugins"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "Übergeordnetes Theme"
|
msgstr "Übergeordnetes Theme"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "Aktives Theme"
|
msgstr "Aktives Theme"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "Ist Multisite"
|
msgstr "Ist Multisite"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "MySQL-Version"
|
msgstr "MySQL-Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "WordPress-Version"
|
msgstr "WordPress-Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr "Ablaufdatum des Abonnements"
|
msgstr "Ablaufdatum des Abonnements"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr "Lizenzstatus"
|
msgstr "Lizenzstatus"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr "Lizenz-Typ"
|
msgstr "Lizenz-Typ"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr "Lizensierte URL"
|
msgstr "Lizensierte URL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr "Lizenz aktiviert"
|
msgstr "Lizenz aktiviert"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Kostenlos"
|
msgstr "Kostenlos"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "Plugin-Typ"
|
msgstr "Plugin-Typ"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "Plugin-Version"
|
msgstr "Plugin-Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1876,7 +1884,7 @@ msgstr "Beziehung ist ungleich"
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr "Beziehung ist gleich"
|
msgstr "Beziehung ist gleich"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "ACF-Felder"
|
msgstr "ACF-Felder"
|
||||||
|
|
@ -2627,8 +2635,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klon"
|
msgstr "Klon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -2811,7 +2819,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:887
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:887
|
||||||
msgid "Tag Cloud"
|
msgid "Tag Cloud"
|
||||||
msgstr "Schlagwort-Wolke"
|
msgstr "Schlagwörter-Wolke"
|
||||||
|
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:842
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:842
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -4542,7 +4550,7 @@ msgstr ""
|
||||||
"a>."
|
"a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4876,7 +4884,7 @@ msgstr "Dieses Element aktivieren"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?"
|
msgstr "Soll die Feldgruppe in den Papierkorb verschoben werden?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4889,7 +4897,7 @@ msgstr "Inaktiv"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4898,7 +4906,7 @@ msgstr ""
|
||||||
"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch "
|
"gleichzeitig aktiviert sein. Advanced Custom Fields PRO wurde automatisch "
|
||||||
"deaktiviert."
|
"deaktiviert."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4907,19 +4915,6 @@ msgstr ""
|
||||||
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
||||||
"deaktiviert."
|
"deaktiviert."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> – Es wurde mindestens ein Versuch festgestellt, ACF-"
|
|
||||||
"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht "
|
|
||||||
"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. <a "
|
|
||||||
"href=\"%2$s\" target=\"_blank\">Lerne, wie du das beheben kannst (engl.)</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6061,28 +6056,28 @@ msgstr "Unbekannt"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Der Feldtyp existiert nicht"
|
msgstr "Der Feldtyp existiert nicht"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Es wurde Spam entdeckt"
|
msgstr "Es wurde Spam entdeckt"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Der Beitrag wurde aktualisiert"
|
msgstr "Der Beitrag wurde aktualisiert"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualisieren"
|
msgstr "Aktualisieren"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "E-Mail-Adresse bestätigen"
|
msgstr "E-Mail-Adresse bestätigen"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Inhalt"
|
msgstr "Inhalt"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
|
|
@ -7381,17 +7376,15 @@ msgstr "Zeigt den Text neben dem Auswahlkästchen an"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mitteilung"
|
msgstr "Mitteilung"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ja"
|
msgstr "Ja"
|
||||||
|
|
||||||
|
|
@ -7530,90 +7523,90 @@ msgid "Time Picker"
|
||||||
msgstr "Zeitpicker"
|
msgstr "Zeitpicker"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Deaktiviert <span class=\"count\">(%s)</span>"
|
msgstr[0] "Deaktiviert <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Deaktiviert <span class=\"count\">(%s)</span>"
|
msgstr[1] "Deaktiviert <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Es wurden keine Felder im Papierkorb gefunden"
|
msgstr "Es wurden keine Felder im Papierkorb gefunden"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Es wurden keine Felder gefunden"
|
msgstr "Es wurden keine Felder gefunden"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Felder suchen"
|
msgstr "Felder suchen"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Feld anzeigen"
|
msgstr "Feld anzeigen"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Neues Feld"
|
msgstr "Neues Feld"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Feld bearbeiten"
|
msgstr "Feld bearbeiten"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Neues Feld hinzufügen"
|
msgstr "Neues Feld hinzufügen"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Feld"
|
msgstr "Feld"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Felder"
|
msgstr "Felder"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden"
|
msgstr "Es wurden keine Feldgruppen im Papierkorb gefunden"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Es wurden keine Feldgruppen gefunden"
|
msgstr "Es wurden keine Feldgruppen gefunden"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Feldgruppen durchsuchen"
|
msgstr "Feldgruppen durchsuchen"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Feldgruppe anzeigen"
|
msgstr "Feldgruppe anzeigen"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Neue Feldgruppe"
|
msgstr "Neue Feldgruppe"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Feldgruppe bearbeiten"
|
msgstr "Feldgruppe bearbeiten"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Neue Feldgruppe hinzufügen"
|
msgstr "Neue Feldgruppe hinzufügen"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Neu hinzufügen"
|
msgstr "Neu hinzufügen"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Feldgruppe"
|
msgstr "Feldgruppe"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7632,7 +7625,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
lang/acf-el.mo
BIN
lang/acf-el.mo
Binary file not shown.
213
lang/acf-el.po
213
lang/acf-el.po
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2546,8 +2554,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4381,7 +4389,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4712,7 +4720,7 @@ msgstr "Ενεργοποιήστε αυτό το αντικείμενο"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Να μεταφερθεί αυτή η ομάδα πεδίων στον κάδο;"
|
msgstr "Να μεταφερθεί αυτή η ομάδα πεδίων στον κάδο;"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4725,31 +4733,18 @@ msgstr "Ανενεργό"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - Ανιχνεύθηκαν μία ή περισσότερες κλήσεις για ανάκτηση "
|
|
||||||
"τιμών πεδίων ACF προτού το ACF αρχικοποιηθεί. Αυτό δεν υποστηρίζεται και "
|
|
||||||
"μπορεί να καταλήξει σε παραποιημένα ή κενά. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">Μάθετε πώς να το διορθώσετε</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5882,28 +5877,28 @@ msgstr "Άγνωστο"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Ο τύπος πεδίου δεν υπάρχει"
|
msgstr "Ο τύπος πεδίου δεν υπάρχει"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Άνιχνεύθηκε Spam"
|
msgstr "Άνιχνεύθηκε Spam"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Το άρθρο ενημερώθηκε"
|
msgstr "Το άρθρο ενημερώθηκε"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Ενημέρωση"
|
msgstr "Ενημέρωση"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Επιβεβαίωση Ηλεκτρονικού Ταχυδρομείου"
|
msgstr "Επιβεβαίωση Ηλεκτρονικού Ταχυδρομείου"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Περιεχόμενο"
|
msgstr "Περιεχόμενο"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Τίτλος"
|
msgstr "Τίτλος"
|
||||||
|
|
||||||
|
|
@ -7200,17 +7195,15 @@ msgstr "Εμφανίζει κείμενο δίπλα στο πεδίο επιλ
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Μήνυμα"
|
msgstr "Μήνυμα"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Όχι"
|
msgstr "Όχι"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ναι"
|
msgstr "Ναι"
|
||||||
|
|
||||||
|
|
@ -7352,90 +7345,90 @@ msgid "Time Picker"
|
||||||
msgstr "Επιλογέας Ώρας"
|
msgstr "Επιλογέας Ώρας"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Ανενεργό <span class=\"count\">(%s)</span>"
|
msgstr[0] "Ανενεργό <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Ανενεργά <span class=\"count\">(%s)</span>"
|
msgstr[1] "Ανενεργά <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Δεν βρέθηκαν Πεδία στα Διεγραμμένα"
|
msgstr "Δεν βρέθηκαν Πεδία στα Διεγραμμένα"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Δεν βρέθηκαν Πεδία"
|
msgstr "Δεν βρέθηκαν Πεδία"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Αναζήτηση Πεδίων"
|
msgstr "Αναζήτηση Πεδίων"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Προβολή Πεδίων"
|
msgstr "Προβολή Πεδίων"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Νέο Πεδίο"
|
msgstr "Νέο Πεδίο"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Επεξεργασία Πεδίου"
|
msgstr "Επεξεργασία Πεδίου"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Προσθήκη Νέου Πεδίου"
|
msgstr "Προσθήκη Νέου Πεδίου"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Πεδίο"
|
msgstr "Πεδίο"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Πεδία"
|
msgstr "Πεδία"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Δεν βρέθηκαν Ομάδες Πεδίων στα Διεγραμμένα"
|
msgstr "Δεν βρέθηκαν Ομάδες Πεδίων στα Διεγραμμένα"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Δεν βρέθηκαν Ομάδες Πεδίων"
|
msgstr "Δεν βρέθηκαν Ομάδες Πεδίων"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Αναζήτηση Ομάδων Πεδίων "
|
msgstr "Αναζήτηση Ομάδων Πεδίων "
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Προβολή Ομάδας Πεδίων"
|
msgstr "Προβολή Ομάδας Πεδίων"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Νέα Ομάδα Πεδίων"
|
msgstr "Νέα Ομάδα Πεδίων"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Επεξεργασίας Ομάδας Πεδίων"
|
msgstr "Επεξεργασίας Ομάδας Πεδίων"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Προσθήκη Νέας Ομάδας Πεδίων"
|
msgstr "Προσθήκη Νέας Ομάδας Πεδίων"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Προσθήκη Νέου"
|
msgstr "Προσθήκη Νέου"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Ομάδα Πεδίου"
|
msgstr "Ομάδα Πεδίου"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7452,6 +7445,6 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
|
||||||
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.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: en_GB\n"
|
"Language: en_GB\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr "Learn more"
|
msgstr "Learn more"
|
||||||
|
|
@ -47,10 +63,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr "are developed and maintained by"
|
msgstr "are developed and maintained by"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "Update Source"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -85,10 +97,6 @@ msgstr ""
|
||||||
"screen. For security, this callback will be executed in a special context "
|
"screen. For security, this callback will be executed in a special context "
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr "Allow Access to Value in Editor UI"
|
msgstr "Allow Access to Value in Editor UI"
|
||||||
|
|
@ -107,7 +115,7 @@ msgstr ""
|
||||||
"Allow content editors to access and display the field value in the editor UI "
|
"Allow content editors to access and display the field value in the editor UI "
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
@ -115,7 +123,7 @@ msgstr ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -820,7 +828,7 @@ msgstr "Invalid request args."
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "Sorry, you do not have permission to do that."
|
msgstr "Sorry, you do not have permission to do that."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr "Blocks Using Post Meta"
|
msgstr "Blocks Using Post Meta"
|
||||||
|
|
||||||
|
|
@ -1573,183 +1581,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "Icon Picker"
|
msgstr "Icon Picker"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr "JSON Load Paths"
|
msgstr "JSON Load Paths"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr "JSON Save Paths"
|
msgstr "JSON Save Paths"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr "Registered ACF Forms"
|
msgstr "Registered ACF Forms"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "Shortcode Enabled"
|
msgstr "Shortcode Enabled"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr "Field Settings Tabs Enabled"
|
msgstr "Field Settings Tabs Enabled"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr "Field Type Modal Enabled"
|
msgstr "Field Type Modal Enabled"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr "Admin UI Enabled"
|
msgstr "Admin UI Enabled"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr "Block Preloading Enabled"
|
msgstr "Block Preloading Enabled"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr "Blocks Per ACF Block Version"
|
msgstr "Blocks Per ACF Block Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr "Blocks Per API Version"
|
msgstr "Blocks Per API Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr "Registered ACF Blocks"
|
msgstr "Registered ACF Blocks"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Light"
|
msgstr "Light"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "Standard"
|
msgstr "Standard"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "REST API Format"
|
msgstr "REST API Format"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr "Registered Options Pages (PHP)"
|
msgstr "Registered Options Pages (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr "Registered Options Pages (JSON)"
|
msgstr "Registered Options Pages (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr "Registered Options Pages (UI)"
|
msgstr "Registered Options Pages (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr "Options Pages UI Enabled"
|
msgstr "Options Pages UI Enabled"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr "Registered Taxonomies (JSON)"
|
msgstr "Registered Taxonomies (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr "Registered Taxonomies (UI)"
|
msgstr "Registered Taxonomies (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "Registered Post Types (JSON)"
|
msgstr "Registered Post Types (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr "Registered Post Types (UI)"
|
msgstr "Registered Post Types (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr "Post Types and Taxonomies Enabled"
|
msgstr "Post Types and Taxonomies Enabled"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr "Number of Third Party Fields by Field Type"
|
msgstr "Number of Third Party Fields by Field Type"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr "Number of Fields by Field Type"
|
msgstr "Number of Fields by Field Type"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr "Field Groups Enabled for GraphQL"
|
msgstr "Field Groups Enabled for GraphQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr "Field Groups Enabled for REST API"
|
msgstr "Field Groups Enabled for REST API"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr "Registered Field Groups (JSON)"
|
msgstr "Registered Field Groups (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr "Registered Field Groups (PHP)"
|
msgstr "Registered Field Groups (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr "Registered Field Groups (UI)"
|
msgstr "Registered Field Groups (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "Active Plugins"
|
msgstr "Active Plugins"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "Parent Theme"
|
msgstr "Parent Theme"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "Active Theme"
|
msgstr "Active Theme"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "Is Multisite"
|
msgstr "Is Multisite"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "MySQL Version"
|
msgstr "MySQL Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "WordPress Version"
|
msgstr "WordPress Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr "Subscription Expiry Date"
|
msgstr "Subscription Expiry Date"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr "Licence Status"
|
msgstr "Licence Status"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr "Licence Type"
|
msgstr "Licence Type"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr "Licensed URL"
|
msgstr "Licensed URL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr "Licence Activated"
|
msgstr "Licence Activated"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Free"
|
msgstr "Free"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "Plugin Type"
|
msgstr "Plugin Type"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "Plugin Version"
|
msgstr "Plugin Version"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1901,7 +1909,7 @@ msgstr "Relationship is not equal to"
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr "Relationship is equal to"
|
msgstr "Relationship is equal to"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "ACF Fields"
|
msgstr "ACF Fields"
|
||||||
|
|
@ -2671,8 +2679,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clone"
|
msgstr "Clone"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -4592,7 +4600,7 @@ msgstr ""
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4922,7 +4930,7 @@ msgstr "Activate this item"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Move field group to trash?"
|
msgstr "Move field group to trash?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4935,7 +4943,7 @@ msgstr "Inactive"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4943,7 +4951,7 @@ msgstr ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4951,19 +4959,6 @@ msgstr ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
|
||||||
"field values before ACF has been initialised. This is not supported and can "
|
|
||||||
"result in malformed or missing data. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">Learn how to fix this</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6090,28 +6085,28 @@ msgstr "Unknown"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Field type does not exist"
|
msgstr "Field type does not exist"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam Detected"
|
msgstr "Spam Detected"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Post updated"
|
msgstr "Post updated"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Update"
|
msgstr "Update"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validate Email"
|
msgstr "Validate Email"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Content"
|
msgstr "Content"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Title"
|
msgstr "Title"
|
||||||
|
|
||||||
|
|
@ -7403,17 +7398,15 @@ msgstr "Displays text alongside the checkbox"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Message"
|
msgstr "Message"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Yes"
|
msgstr "Yes"
|
||||||
|
|
||||||
|
|
@ -7552,90 +7545,90 @@ msgid "Time Picker"
|
||||||
msgstr "Time Picker"
|
msgstr "Time Picker"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Inactive <span class=\"count\">(%s)</span>"
|
msgstr[0] "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Inactive <span class=\"count\">(%s)</span>"
|
msgstr[1] "Inactive <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "No Fields found in Bin"
|
msgstr "No Fields found in Bin"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "No Fields found"
|
msgstr "No Fields found"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Search Fields"
|
msgstr "Search Fields"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "View Field"
|
msgstr "View Field"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "New Field"
|
msgstr "New Field"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Edit Field"
|
msgstr "Edit Field"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Add New Field"
|
msgstr "Add New Field"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Field"
|
msgstr "Field"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Fields"
|
msgstr "Fields"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "No Field Groups found in bin"
|
msgstr "No Field Groups found in bin"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "No Field Groups found"
|
msgstr "No Field Groups found"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Search Field Groups"
|
msgstr "Search Field Groups"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "View Field Group"
|
msgstr "View Field Group"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "New Field Group"
|
msgstr "New Field Group"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Edit Field Group"
|
msgstr "Edit Field Group"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Add New Field Group"
|
msgstr "Add New Field Group"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Add New"
|
msgstr "Add New"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Field Group"
|
msgstr "Field Group"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7652,7 +7645,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
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.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: es_CL\n"
|
"Language: es_CL\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,31 +21,47 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr "Número de grupos de campos con bloques y otras ubicaciones"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr "Número de grupos de campos con múltiples ubicaciones de bloques"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr "Número de grupos de campos con una sola ubicación de bloque"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr "Todas las reglas de ubicación"
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr "Saber más"
|
||||||
|
|
||||||
#: includes/validation.php:133
|
#: includes/validation.php:133
|
||||||
msgid ""
|
msgid ""
|
||||||
"ACF was unable to perform validation because the provided nonce failed "
|
"ACF was unable to perform validation because the provided nonce failed "
|
||||||
"verification."
|
"verification."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"ACE no fue capaz de realizar la validación porque falló la verificación del "
|
||||||
|
"nonce facilitado."
|
||||||
|
|
||||||
#: includes/validation.php:131
|
#: includes/validation.php:131
|
||||||
msgid ""
|
msgid ""
|
||||||
"ACF was unable to perform validation because no nonce was received by the "
|
"ACF was unable to perform validation because no nonce was received by the "
|
||||||
"server."
|
"server."
|
||||||
msgstr ""
|
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
|
#. translators: This text is prepended by a link to ACF's website, and appended
|
||||||
#. by a link to WP Engine's website.
|
#. by a link to WP Engine's website.
|
||||||
#: includes/admin/admin.php:324
|
#: includes/admin/admin.php:324
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr "lo desarrollan y mantienen"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
|
|
@ -87,10 +103,6 @@ msgstr ""
|
||||||
"contexto especial sin acceso a ninguna variable super global como $_POST o "
|
"contexto especial sin acceso a ninguna variable super global como $_POST o "
|
||||||
"$_GET."
|
"$_GET."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr "Permitir el acceso al valor en la interfaz del editor"
|
msgstr "Permitir el acceso al valor en la interfaz del editor"
|
||||||
|
|
@ -110,7 +122,7 @@ msgstr ""
|
||||||
"en la interfaz de usuario del editor utilizando enlaces de bloque o el "
|
"en la interfaz de usuario del editor utilizando enlaces de bloque o el "
|
||||||
"shortcode de ACF. %s"
|
"shortcode de ACF. %s"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
@ -118,7 +130,7 @@ msgstr ""
|
||||||
"El tipo de campo ACF solicitado no admite la salida en bloques enlazados o "
|
"El tipo de campo ACF solicitado no admite la salida en bloques enlazados o "
|
||||||
"en el shortcode de ACF."
|
"en el shortcode de ACF."
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -823,7 +835,7 @@ msgstr "Argumentos de solicitud no válidos."
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "Lo siento, no tienes permisos para hacer eso."
|
msgstr "Lo siento, no tienes permisos para hacer eso."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr "Bloques con Post Meta"
|
msgstr "Bloques con Post Meta"
|
||||||
|
|
||||||
|
|
@ -835,7 +847,7 @@ msgstr "Logotipo de ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/field.php:37
|
#: includes/admin/views/acf-field-group/field.php:37
|
||||||
msgid "ACF PRO Logo"
|
msgid "ACF PRO Logo"
|
||||||
msgstr ""
|
msgstr "Logotipo de ACF PRO"
|
||||||
|
|
||||||
#. translators: %s - field/param name
|
#. translators: %s - field/param name
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:788
|
#: includes/fields/class-acf-field-icon_picker.php:788
|
||||||
|
|
@ -1578,183 +1590,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "Selector de íconos"
|
msgstr "Selector de íconos"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr "Rutas de carga JSON"
|
msgstr "Rutas de carga JSON"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr "Rutas de guardado JSON"
|
msgstr "Rutas de guardado JSON"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr "Formularios ACF registrados"
|
msgstr "Formularios ACF registrados"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "Shortcode activado"
|
msgstr "Shortcode activado"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr "Pestañas de ajustes de campo activadas"
|
msgstr "Pestañas de ajustes de campo activadas"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr "Tipo de campo emergente activado"
|
msgstr "Tipo de campo emergente activado"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr "Interfaz de administrador activada"
|
msgstr "Interfaz de administrador activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr "Precarga de bloques activada"
|
msgstr "Precarga de bloques activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr "Bloques por versión de bloque ACF"
|
msgstr "Bloques por versión de bloque ACF"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr "Bloques por versión de API"
|
msgstr "Bloques por versión de API"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr "Bloques ACF registrados"
|
msgstr "Bloques ACF registrados"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Claro"
|
msgstr "Claro"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "Estándar"
|
msgstr "Estándar"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "Formato de la API REST"
|
msgstr "Formato de la API REST"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr "Páginas de opciones registradas (PHP)"
|
msgstr "Páginas de opciones registradas (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr "Páginas de opciones registradas (JSON)"
|
msgstr "Páginas de opciones registradas (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr "Páginas de opciones registradas (IU)"
|
msgstr "Páginas de opciones registradas (IU)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr "Interfaz de usuario de las páginas de opciones activada"
|
msgstr "Interfaz de usuario de las páginas de opciones activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr "Taxonomías registradas (JSON)"
|
msgstr "Taxonomías registradas (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr "Taxonomías registradas (IU)"
|
msgstr "Taxonomías registradas (IU)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "Tipos de contenido registrados (JSON)"
|
msgstr "Tipos de contenido registrados (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr "Tipos de contenido registrados (UI)"
|
msgstr "Tipos de contenido registrados (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr "Tipos de contenido y taxonomías activados"
|
msgstr "Tipos de contenido y taxonomías activados"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr "Número de campos de terceros por tipo de campo"
|
msgstr "Número de campos de terceros por tipo de campo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr "Número de campos por tipo de campo"
|
msgstr "Número de campos por tipo de campo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr "Grupos de campos activados para GraphQL"
|
msgstr "Grupos de campos activados para GraphQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr "Grupos de campos activados para la API REST"
|
msgstr "Grupos de campos activados para la API REST"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr "Grupos de campos registrados (JSON)"
|
msgstr "Grupos de campos registrados (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr "Grupos de campos registrados (PHP)"
|
msgstr "Grupos de campos registrados (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr "Grupos de campos registrados (UI)"
|
msgstr "Grupos de campos registrados (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "Plugins activos"
|
msgstr "Plugins activos"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "Tema principal"
|
msgstr "Tema principal"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "Tema activo"
|
msgstr "Tema activo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "Es multisitio"
|
msgstr "Es multisitio"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "Versión de MySQL"
|
msgstr "Versión de MySQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "Versión de WordPress"
|
msgstr "Versión de WordPress"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr "Fecha de caducidad de la suscripción"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr "Estado de la licencia"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr "Tipo de licencia"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr "URL con licencia"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr "Licencia activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Gratis"
|
msgstr "Gratis"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "Tipo de plugin"
|
msgstr "Tipo de plugin"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "Versión del plugin"
|
msgstr "Versión del plugin"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1911,7 +1923,7 @@ msgstr "La relación no es igual a"
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr "La relación es igual a"
|
msgstr "La relación es igual a"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "Campos de ACF"
|
msgstr "Campos de ACF"
|
||||||
|
|
@ -1930,7 +1942,7 @@ msgstr "Renovar licencia PRO"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/field.php:41
|
#: includes/admin/views/acf-field-group/field.php:41
|
||||||
msgid "PRO fields cannot be edited without an active license."
|
msgid "PRO fields cannot be edited without an active license."
|
||||||
msgstr ""
|
msgstr "Los campos PRO no se pueden editar sin una licencia activa."
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type-list.php:232
|
#: includes/admin/admin-internal-post-type-list.php:232
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -1999,7 +2011,7 @@ msgstr "%1$s (%2$s) - renderizado mediante %3$s"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:226
|
#: includes/admin/views/global/navigation.php:226
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr "Renovar licencia ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/pro-features.php:17
|
#: includes/admin/views/acf-field-group/pro-features.php:17
|
||||||
msgid "Renew License"
|
msgid "Renew License"
|
||||||
|
|
@ -2042,7 +2054,7 @@ msgstr "Marcador de posición del título"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:97
|
#: includes/admin/views/global/navigation.php:97
|
||||||
msgid "4 Months Free"
|
msgid "4 Months Free"
|
||||||
msgstr ""
|
msgstr "4 meses gratis"
|
||||||
|
|
||||||
#. translators: %s - A singular label for a post type or taxonomy.
|
#. translators: %s - A singular label for a post type or taxonomy.
|
||||||
#: includes/admin/views/global/form-top.php:59
|
#: includes/admin/views/global/form-top.php:59
|
||||||
|
|
@ -2087,21 +2099,21 @@ msgstr "Este campo"
|
||||||
|
|
||||||
#: includes/admin/admin.php:361
|
#: includes/admin/admin.php:361
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:359
|
#: includes/admin/admin.php:359
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr "Comentarios"
|
||||||
|
|
||||||
#: includes/admin/admin.php:357
|
#: includes/admin/admin.php:357
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr "Soporte"
|
||||||
|
|
||||||
#. translators: This text is prepended by a link to ACF's website, and appended
|
#. translators: This text is prepended by a link to ACF's website, and appended
|
||||||
#. by a link to WP Engine's website.
|
#. by a link to WP Engine's website.
|
||||||
#: includes/admin/admin.php:332
|
#: includes/admin/admin.php:332
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr "es desarrollado y mantenido por"
|
||||||
|
|
||||||
#. translators: %s - either "post type" or "taxonomy"
|
#. translators: %s - either "post type" or "taxonomy"
|
||||||
#: includes/admin/admin-internal-post-type.php:313
|
#: includes/admin/admin-internal-post-type.php:313
|
||||||
|
|
@ -2119,6 +2131,11 @@ msgid ""
|
||||||
"information, please read the <a href=\"%s\" target=\"_blank\">documentation</"
|
"information, please read the <a href=\"%s\" target=\"_blank\">documentation</"
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Activar el ajuste bidireccional te permite actualizar un valor en los campos "
|
||||||
|
"de destino por cada valor seleccionado para este campo, agregando o "
|
||||||
|
"eliminando el ID de entrada, el ID de taxonomía o el ID de usuario del "
|
||||||
|
"elemento que se está actualizando. Para más información, lee la <a "
|
||||||
|
"href=\"%s\" target=\"_blank\">documentación</a>."
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:248
|
#: includes/acf-bidirectional-functions.php:248
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2161,7 +2178,7 @@ msgstr "Seleccionar varios"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:238
|
#: includes/admin/views/global/navigation.php:238
|
||||||
msgid "WP Engine logo"
|
msgid "WP Engine logo"
|
||||||
msgstr ""
|
msgstr "Logotipo de WP Engine"
|
||||||
|
|
||||||
#: includes/admin/views/acf-taxonomy/basic-settings.php:58
|
#: includes/admin/views/acf-taxonomy/basic-settings.php:58
|
||||||
msgid "Lower case letters, underscores and dashes only, Max 32 characters."
|
msgid "Lower case letters, underscores and dashes only, Max 32 characters."
|
||||||
|
|
@ -2659,6 +2676,9 @@ msgid ""
|
||||||
"and call-to-action tiles, by acting as a parent to a set of subfields which "
|
"and call-to-action tiles, by acting as a parent to a set of subfields which "
|
||||||
"can be repeated again and again."
|
"can be repeated again and again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Esto proporciona una solución para repetir contenidos como diapositivas, "
|
||||||
|
"miembros del equipo y fichas de llamada a la acción, actuando como principal "
|
||||||
|
"de un conjunto de subcampos que pueden repetirse una y otra vez."
|
||||||
|
|
||||||
#: includes/fields.php:439
|
#: includes/fields.php:439
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2667,6 +2687,11 @@ msgid ""
|
||||||
"settings allow you to specify where new attachments are added in the gallery "
|
"settings allow you to specify where new attachments are added in the gallery "
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Proporciona una interfaz interactiva para gestionar una colección de "
|
||||||
|
"archivos adjuntos. La mayoría de los ajustes son similares a los del tipo de "
|
||||||
|
"campo Imagen. Los ajustes adicionales te permiten especificar dónde se "
|
||||||
|
"agregan los nuevos adjuntos en la galería y el número mínimo/máximo de "
|
||||||
|
"adjuntos permitidos."
|
||||||
|
|
||||||
#: includes/fields.php:429
|
#: includes/fields.php:429
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2674,6 +2699,10 @@ msgid ""
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
"control by using layouts and subfields to design the available blocks."
|
"control by using layouts and subfields to design the available blocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Esto proporciona un editor sencillo, estructurado y basado en diseños. El "
|
||||||
|
"campo Contenido flexible te permite definir, crear y gestionar contenidos "
|
||||||
|
"con un control total, utilizando maquetas y subcampos para diseñar los "
|
||||||
|
"bloques disponibles."
|
||||||
|
|
||||||
#: includes/fields.php:419
|
#: includes/fields.php:419
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2682,16 +2711,21 @@ msgid ""
|
||||||
"run-time. The Clone field can either replace itself with the selected fields "
|
"run-time. The Clone field can either replace itself with the selected fields "
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Te permite seleccionar y mostrar los campos existentes. No duplica ningún "
|
||||||
|
"campo de la base de datos, sino que carga y muestra los campos seleccionados "
|
||||||
|
"en tiempo de ejecución. El campo Clonar puede sustituirse a sí mismo por los "
|
||||||
|
"campos seleccionados o mostrar los campos seleccionados como un grupo de "
|
||||||
|
"subcampos."
|
||||||
|
|
||||||
#: includes/fields.php:416
|
#: includes/fields.php:416
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr "Clon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:329 includes/fields.php:386
|
#: includes/fields.php:329 includes/fields.php:386
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
|
|
@ -4675,7 +4709,7 @@ msgstr ""
|
||||||
"y gestiónalos con ACF. <a href=\"%s\">Empieza aquí</a>."
|
"y gestiónalos con ACF. <a href=\"%s\">Empieza aquí</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4762,6 +4796,8 @@ msgid ""
|
||||||
"https://wpengine.com/?"
|
"https://wpengine.com/?"
|
||||||
"utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
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
|
#: includes/api/api-template.php:1027
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
|
|
@ -4896,7 +4932,7 @@ msgstr "Campo repetidor"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:215
|
#: includes/admin/views/global/navigation.php:215
|
||||||
msgid "Unlock Extra Features with ACF PRO"
|
msgid "Unlock Extra Features with ACF PRO"
|
||||||
msgstr ""
|
msgstr "Desbloquea las características extra con ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/options.php:267
|
#: includes/admin/views/acf-field-group/options.php:267
|
||||||
msgid "Delete Field Group"
|
msgid "Delete Field Group"
|
||||||
|
|
@ -5006,7 +5042,7 @@ msgstr "Activa este elemento"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "¿Mover este grupo de campos a la papelera?"
|
msgstr "¿Mover este grupo de campos a la papelera?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -5017,9 +5053,9 @@ msgstr "Inactivo"
|
||||||
#. Author of the plugin
|
#. Author of the plugin
|
||||||
#: acf.php
|
#: acf.php
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr ""
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -5028,7 +5064,7 @@ msgstr ""
|
||||||
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
||||||
"Fields PRO."
|
"Fields PRO."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -5037,15 +5073,6 @@ msgstr ""
|
||||||
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
||||||
"Fields."
|
"Fields."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5234,25 +5261,28 @@ msgstr "Revisar cambios de JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:174
|
#: includes/admin/admin.php:174
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr ""
|
msgstr "Visitar web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:173
|
#: includes/admin/admin.php:173
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr ""
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:172
|
#: includes/admin/admin.php:172
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr ""
|
msgstr "Versión %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:171
|
#: includes/admin/admin.php:171
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:162
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
||||||
"our Help Desk will assist with your more in depth, technical challenges."
|
"our Help Desk will assist with your more in depth, technical challenges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"<a href=\"%s\" target=\"_blank\">Centro de ayuda</a>. Los profesionales de "
|
||||||
|
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
||||||
|
"retos técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -5260,6 +5290,9 @@ msgid ""
|
||||||
"friendly community on our Community Forums who may be able to help you "
|
"friendly community on our Community Forums who may be able to help you "
|
||||||
"figure out the 'how-tos' of the ACF world."
|
"figure out the 'how-tos' of the ACF world."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"<a href=\"%s\" target=\"_blank\">Debates</a>. Tenemos una comunidad activa y "
|
||||||
|
"amistosa, en nuestros foros de la comunidad, que pueden ayudarte a descubrir "
|
||||||
|
"cómo hacer todo en el mundo de ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:154
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -5267,6 +5300,9 @@ msgid ""
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"<a href=\"%s\" target=\"_blank\">Documentación</a>. Nuestra amplia "
|
||||||
|
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
||||||
|
"las que puedas encontrarte."
|
||||||
|
|
||||||
#: includes/admin/admin.php:151
|
#: includes/admin/admin.php:151
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -5274,16 +5310,21 @@ msgid ""
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
"you can find help:"
|
"you can find help:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
||||||
|
"ACF. Si te encuentras con alguna dificultad, hay varios lugares donde puedes "
|
||||||
|
"encontrar ayuda:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:148 includes/admin/admin.php:150
|
#: includes/admin/admin.php:148 includes/admin/admin.php:150
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr ""
|
msgstr "Ayuda y soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:139
|
#: includes/admin/admin.php:139
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please use the Help & Support tab to get in touch should you find yourself "
|
"Please use the Help & Support tab to get in touch should you find yourself "
|
||||||
"requiring assistance."
|
"requiring assistance."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
||||||
|
"necesitas ayuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:136
|
#: includes/admin/admin.php:136
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -5291,6 +5332,9 @@ msgid ""
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
"yourself with the plugin's philosophy and best practises."
|
"yourself with the plugin's philosophy and best practises."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Antes de crear tu primer grupo de campos te recomendamos que primero leas "
|
||||||
|
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
||||||
|
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:134
|
#: includes/admin/admin.php:134
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -5298,10 +5342,14 @@ msgid ""
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
"display custom field values in any theme template file."
|
"display custom field values in any theme template file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"El plugin Advanced Custom Fields ofrece un constructor visual con el que "
|
||||||
|
"personalizar las pantallas de WordPress con campos adicionales, y una API "
|
||||||
|
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
||||||
|
"archivo de plantilla de cualquier tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:131 includes/admin/admin.php:133
|
#: includes/admin/admin.php:131 includes/admin/admin.php:133
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr ""
|
msgstr "Resumen"
|
||||||
|
|
||||||
#. translators: %s the name of the location type
|
#. translators: %s the name of the location type
|
||||||
#: includes/locations.php:38
|
#: includes/locations.php:38
|
||||||
|
|
@ -6163,28 +6211,28 @@ msgstr "Desconocido"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "El tipo de campo no existe"
|
msgstr "El tipo de campo no existe"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam detectado"
|
msgstr "Spam detectado"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Publicación actualizada"
|
msgstr "Publicación actualizada"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Actualizar"
|
msgstr "Actualizar"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
|
|
@ -7482,17 +7530,15 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Sí"
|
msgstr "Sí"
|
||||||
|
|
||||||
|
|
@ -7632,90 +7678,90 @@ msgid "Time Picker"
|
||||||
msgstr "Selector de hora"
|
msgstr "Selector de hora"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
|
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
|
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "No se han encontrado campos en la papelera"
|
msgstr "No se han encontrado campos en la papelera"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "No se han encontrado campos"
|
msgstr "No se han encontrado campos"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Buscar campos"
|
msgstr "Buscar campos"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Ver campo"
|
msgstr "Ver campo"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nuevo campo"
|
msgstr "Nuevo campo"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Editar campo"
|
msgstr "Editar campo"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Agregar nuevo campo"
|
msgstr "Agregar nuevo campo"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Campo"
|
msgstr "Campo"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Campos"
|
msgstr "Campos"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "No se han encontrado grupos de campos en la papelera"
|
msgstr "No se han encontrado grupos de campos en la papelera"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "No se han encontrado grupos de campos"
|
msgstr "No se han encontrado grupos de campos"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Buscar grupo de campos"
|
msgstr "Buscar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Ver grupo de campos"
|
msgstr "Ver grupo de campos"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Nuevo grupo de campos"
|
msgstr "Nuevo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Agregar nuevo grupo de campos"
|
msgstr "Agregar nuevo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Agregar nuevo"
|
msgstr "Agregar nuevo"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Grupo de campos"
|
msgstr "Grupo de campos"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7724,14 +7770,14 @@ msgstr "Grupos de campos"
|
||||||
#. Description of the plugin
|
#. Description of the plugin
|
||||||
#: acf.php
|
#: acf.php
|
||||||
msgid "Customize WordPress with powerful, professional and intuitive fields."
|
msgid "Customize WordPress with powerful, professional and intuitive fields."
|
||||||
msgstr ""
|
msgstr "Personaliza WordPress con campos potentes, profesionales e intuitivos."
|
||||||
|
|
||||||
#. Plugin URI of the plugin
|
#. Plugin URI of the plugin
|
||||||
#: acf.php
|
#: acf.php
|
||||||
msgid "https://www.advancedcustomfields.com"
|
msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr ""
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
|
||||||
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.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: es_ES\n"
|
"Language: es_ES\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr "Número de grupos de campos con bloques y otras ubicaciones"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr "Número de grupos de campos con múltiples ubicaciones de bloques"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr "Número de grupos de campos con una sola ubicación de bloque"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr "Todas las reglas de ubicación"
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr "Saber más"
|
msgstr "Saber más"
|
||||||
|
|
@ -47,10 +63,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr "lo desarrollan y mantienen"
|
msgstr "lo desarrollan y mantienen"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "Actualizar la fuente"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -90,10 +102,6 @@ msgstr ""
|
||||||
"ejecutará en un contexto especial sin acceso a ninguna superglobal como "
|
"ejecutará en un contexto especial sin acceso a ninguna superglobal como "
|
||||||
"$_POST o $_GET."
|
"$_POST o $_GET."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr "Permitir el acceso al valor en la interfaz del editor"
|
msgstr "Permitir el acceso al valor en la interfaz del editor"
|
||||||
|
|
@ -113,7 +121,7 @@ msgstr ""
|
||||||
"en la interfaz de usuario del editor utilizando enlaces de bloque o el "
|
"en la interfaz de usuario del editor utilizando enlaces de bloque o el "
|
||||||
"shortcode de ACF. %s"
|
"shortcode de ACF. %s"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
@ -121,7 +129,7 @@ msgstr ""
|
||||||
"El tipo de campo ACF solicitado no admite la salida en bloques enlazados o "
|
"El tipo de campo ACF solicitado no admite la salida en bloques enlazados o "
|
||||||
"en el shortcode de ACF."
|
"en el shortcode de ACF."
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -826,7 +834,7 @@ msgstr "Argumentos de solicitud no válidos."
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "Lo siento, no tienes permisos para hacer eso."
|
msgstr "Lo siento, no tienes permisos para hacer eso."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr "Bloques con Post Meta"
|
msgstr "Bloques con Post Meta"
|
||||||
|
|
||||||
|
|
@ -1581,183 +1589,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "Selector de iconos"
|
msgstr "Selector de iconos"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr "Rutas de carga JSON"
|
msgstr "Rutas de carga JSON"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr "Rutas de guardado JSON"
|
msgstr "Rutas de guardado JSON"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr "Formularios ACF registrados"
|
msgstr "Formularios ACF registrados"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "Shortcode activado"
|
msgstr "Shortcode activado"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr "Pestañas de ajustes de campo activadas"
|
msgstr "Pestañas de ajustes de campo activadas"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr "Tipo de campo emergente activado"
|
msgstr "Tipo de campo emergente activado"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr "Interfaz de administrador activada"
|
msgstr "Interfaz de administrador activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr "Precarga de bloques activada"
|
msgstr "Precarga de bloques activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr "Bloques por versión de bloque ACF"
|
msgstr "Bloques por versión de bloque ACF"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr "Bloques por versión de API"
|
msgstr "Bloques por versión de API"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr "Bloques ACF registrados"
|
msgstr "Bloques ACF registrados"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Claro"
|
msgstr "Claro"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "Estándar"
|
msgstr "Estándar"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "Formato de la API REST"
|
msgstr "Formato de la API REST"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr "Páginas de opciones registradas (PHP)"
|
msgstr "Páginas de opciones registradas (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr "Páginas de opciones registradas (JSON)"
|
msgstr "Páginas de opciones registradas (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr "Páginas de opciones registradas (IU)"
|
msgstr "Páginas de opciones registradas (IU)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr "Interfaz de usuario de las páginas de opciones activada"
|
msgstr "Interfaz de usuario de las páginas de opciones activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr "Taxonomías registradas (JSON)"
|
msgstr "Taxonomías registradas (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr "Taxonomías registradas (IU)"
|
msgstr "Taxonomías registradas (IU)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "Tipos de contenido registrados (JSON)"
|
msgstr "Tipos de contenido registrados (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr "Tipos de contenido registrados (UI)"
|
msgstr "Tipos de contenido registrados (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr "Tipos de contenido y taxonomías activados"
|
msgstr "Tipos de contenido y taxonomías activados"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr "Número de campos de terceros por tipo de campo"
|
msgstr "Número de campos de terceros por tipo de campo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr "Número de campos por tipo de campo"
|
msgstr "Número de campos por tipo de campo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr "Grupos de campos activados para GraphQL"
|
msgstr "Grupos de campos activados para GraphQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr "Grupos de campos activados para la API REST"
|
msgstr "Grupos de campos activados para la API REST"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr "Grupos de campos registrados (JSON)"
|
msgstr "Grupos de campos registrados (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr "Grupos de campos registrados (PHP)"
|
msgstr "Grupos de campos registrados (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr "Grupos de campos registrados (UI)"
|
msgstr "Grupos de campos registrados (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "Plugins activos"
|
msgstr "Plugins activos"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "Tema padre"
|
msgstr "Tema padre"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "Tema activo"
|
msgstr "Tema activo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "Es multisitio"
|
msgstr "Es multisitio"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "Versión de MySQL"
|
msgstr "Versión de MySQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "Versión de WordPress"
|
msgstr "Versión de WordPress"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr "Fecha de caducidad de la suscripción"
|
msgstr "Fecha de caducidad de la suscripción"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr "Estado de la licencia"
|
msgstr "Estado de la licencia"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr "Tipo de licencia"
|
msgstr "Tipo de licencia"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr "URL con licencia"
|
msgstr "URL con licencia"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr "Licencia activada"
|
msgstr "Licencia activada"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Gratis"
|
msgstr "Gratis"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "Tipo de plugin"
|
msgstr "Tipo de plugin"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "Versión del plugin"
|
msgstr "Versión del plugin"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1914,7 +1922,7 @@ msgstr "La relación no es igual a"
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr "La relación es igual a"
|
msgstr "La relación es igual a"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "Campos de ACF"
|
msgstr "Campos de ACF"
|
||||||
|
|
@ -2713,8 +2721,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clon"
|
msgstr "Clon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -4700,7 +4708,7 @@ msgstr ""
|
||||||
"y gestiónalos con ACF. <a href=\"%s\">Empieza aquí</a>."
|
"y gestiónalos con ACF. <a href=\"%s\">Empieza aquí</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -5033,7 +5041,7 @@ msgstr "Activa este elemento"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "¿Mover este grupo de campos a la papelera?"
|
msgstr "¿Mover este grupo de campos a la papelera?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -5046,7 +5054,7 @@ msgstr "Inactivo"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -5055,7 +5063,7 @@ msgstr ""
|
||||||
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
||||||
"Fields PRO."
|
"Fields PRO."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -5064,19 +5072,6 @@ msgstr ""
|
||||||
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
||||||
"Fields."
|
"Fields."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - Hemos detectado una o más llamadas para obtener "
|
|
||||||
"valores de campo de ACF antes de que ACF se haya iniciado. Esto no es "
|
|
||||||
"compatible y puede ocasionar datos mal formados o faltantes. <a "
|
|
||||||
"href=\"%2$s\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6215,28 +6210,28 @@ msgstr "Desconocido"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "El tipo de campo no existe"
|
msgstr "El tipo de campo no existe"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam detectado"
|
msgstr "Spam detectado"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Publicación actualizada"
|
msgstr "Publicación actualizada"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Actualizar"
|
msgstr "Actualizar"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
|
|
@ -7534,17 +7529,15 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Sí"
|
msgstr "Sí"
|
||||||
|
|
||||||
|
|
@ -7684,90 +7677,90 @@ msgid "Time Picker"
|
||||||
msgstr "Selector de hora"
|
msgstr "Selector de hora"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
|
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
|
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "No se han encontrado campos en la papelera"
|
msgstr "No se han encontrado campos en la papelera"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "No se han encontrado campos"
|
msgstr "No se han encontrado campos"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Buscar campos"
|
msgstr "Buscar campos"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Ver campo"
|
msgstr "Ver campo"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nuevo campo"
|
msgstr "Nuevo campo"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Editar campo"
|
msgstr "Editar campo"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Añadir nuevo campo"
|
msgstr "Añadir nuevo campo"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Campo"
|
msgstr "Campo"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Campos"
|
msgstr "Campos"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "No se han encontrado grupos de campos en la papelera"
|
msgstr "No se han encontrado grupos de campos en la papelera"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "No se han encontrado grupos de campos"
|
msgstr "No se han encontrado grupos de campos"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Buscar grupo de campos"
|
msgstr "Buscar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Ver grupo de campos"
|
msgstr "Ver grupo de campos"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Nuevo grupo de campos"
|
msgstr "Nuevo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Añadir nuevo grupo de campos"
|
msgstr "Añadir nuevo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Añadir nuevo"
|
msgstr "Añadir nuevo"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Grupo de campos"
|
msgstr "Grupo de campos"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7784,7 +7777,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: es_MX\n"
|
"Language: es_MX\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2573,8 +2581,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clon"
|
msgstr "Clon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4408,7 +4416,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4726,7 +4734,7 @@ msgstr ""
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4739,31 +4747,18 @@ msgstr ""
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - Hemos detectado una o más llamadas para obtener "
|
|
||||||
"valores de campo de ACF antes de que ACF se haya iniciado. Esto no es "
|
|
||||||
"compatible y puede ocasionar datos mal formados o faltantes. <a "
|
|
||||||
"href=\"%2$s\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5890,28 +5885,28 @@ msgstr "Desconocido"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "El tipo de campo no existe"
|
msgstr "El tipo de campo no existe"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam detectado"
|
msgstr "Spam detectado"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Publicación actualizada"
|
msgstr "Publicación actualizada"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Actualizar"
|
msgstr "Actualizar"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
|
|
@ -7209,17 +7204,15 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Sí"
|
msgstr "Sí"
|
||||||
|
|
||||||
|
|
@ -7359,90 +7352,90 @@ msgid "Time Picker"
|
||||||
msgstr "Selector de hora"
|
msgstr "Selector de hora"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "No se han encontrado campos en la papelera"
|
msgstr "No se han encontrado campos en la papelera"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "No se han encontrado campos"
|
msgstr "No se han encontrado campos"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Buscar campos"
|
msgstr "Buscar campos"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Ver campo"
|
msgstr "Ver campo"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nuevo campo"
|
msgstr "Nuevo campo"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Editar campo"
|
msgstr "Editar campo"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Añadir nuevo campo"
|
msgstr "Añadir nuevo campo"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Campo"
|
msgstr "Campo"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Campos"
|
msgstr "Campos"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "No se han encontrado grupos de campos en la papelera"
|
msgstr "No se han encontrado grupos de campos en la papelera"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "No se han encontrado grupos de campos"
|
msgstr "No se han encontrado grupos de campos"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Buscar grupo de campos"
|
msgstr "Buscar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Ver grupo de campos"
|
msgstr "Ver grupo de campos"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Nuevo grupo de campos"
|
msgstr "Nuevo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Añadir nuevo grupo de campos"
|
msgstr "Añadir nuevo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Añadir nuevo"
|
msgstr "Añadir nuevo"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Grupo de campos"
|
msgstr "Grupo de campos"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7459,6 +7452,6 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
|
||||||
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.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: fa_AF\n"
|
"Language: fa_AF\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2569,8 +2577,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "کپی (هیچ)"
|
msgstr "کپی (هیچ)"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4395,7 +4403,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4717,7 +4725,7 @@ msgstr "فعال کردن این مورد"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "انتقال گروه زمینه به زبالهدان؟"
|
msgstr "انتقال گروه زمینه به زبالهدان؟"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4730,7 +4738,7 @@ msgstr "غیرفعال"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4738,7 +4746,7 @@ msgstr ""
|
||||||
"افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال "
|
"افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال "
|
||||||
"باشند. ما به طور خودکار افزونه زمینه های سفارشی پیشرفته را غیرفعال کردیم."
|
"باشند. ما به طور خودکار افزونه زمینه های سفارشی پیشرفته را غیرفعال کردیم."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4746,19 +4754,6 @@ msgstr ""
|
||||||
"افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال "
|
"افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال "
|
||||||
"باشند. ما به طور خودکار فیلدهای سفارشی پیشرفته را غیرفعال کرده ایم."
|
"باشند. ما به طور خودکار فیلدهای سفارشی پیشرفته را غیرفعال کرده ایم."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - قبل از شروع اولیه ACF، یک یا چند تماس را برای "
|
|
||||||
"بازیابی مقادیر فیلد ACF شناسایی کردهایم. این مورد پشتیبانی نمیشود و میتواند "
|
|
||||||
"منجر به دادههای ناقص یا از دست رفته شود. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">با نحوه رفع این مشکل آشنا شوید</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5870,28 +5865,28 @@ msgstr "ناشناخته"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "نوع زمینه وجود ندارد"
|
msgstr "نوع زمینه وجود ندارد"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "اسپم تشخیص داده شد"
|
msgstr "اسپم تشخیص داده شد"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "نوشته بروز شد"
|
msgstr "نوشته بروز شد"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "بروزرسانی"
|
msgstr "بروزرسانی"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "اعتبار سنجی ایمیل"
|
msgstr "اعتبار سنجی ایمیل"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "محتوا"
|
msgstr "محتوا"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "عنوان"
|
msgstr "عنوان"
|
||||||
|
|
||||||
|
|
@ -7183,17 +7178,15 @@ msgstr "نمایش متن همراه انتخاب"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "پیام"
|
msgstr "پیام"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "خیر"
|
msgstr "خیر"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "بله"
|
msgstr "بله"
|
||||||
|
|
||||||
|
|
@ -7332,89 +7325,89 @@ msgid "Time Picker"
|
||||||
msgstr "انتخاب زمان"
|
msgstr "انتخاب زمان"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "گروه زمینه ای در زباله دان یافت نشد"
|
msgstr "گروه زمینه ای در زباله دان یافت نشد"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "گروه زمینه ای یافت نشد"
|
msgstr "گروه زمینه ای یافت نشد"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "جستجوی گروه های زمینه"
|
msgstr "جستجوی گروه های زمینه"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "نمایش زمینه"
|
msgstr "نمایش زمینه"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "زمینه جدید"
|
msgstr "زمینه جدید"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "ویرایش زمینه"
|
msgstr "ویرایش زمینه"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "زمینه جدید"
|
msgstr "زمینه جدید"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "زمینه"
|
msgstr "زمینه"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "زمینه ها"
|
msgstr "زمینه ها"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "گروه زمینه ای در زباله دان یافت نشد"
|
msgstr "گروه زمینه ای در زباله دان یافت نشد"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "گروه زمینه ای یافت نشد"
|
msgstr "گروه زمینه ای یافت نشد"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "جستجوی گروه های زمینه"
|
msgstr "جستجوی گروه های زمینه"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "مشاهده گروه زمینه"
|
msgstr "مشاهده گروه زمینه"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "گروه زمینه جدید"
|
msgstr "گروه زمینه جدید"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "ویرایش گروه زمینه"
|
msgstr "ویرایش گروه زمینه"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "افزودن گروه زمینه جدید"
|
msgstr "افزودن گروه زمینه جدید"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "افزودن"
|
msgstr "افزودن"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "گروه زمینه"
|
msgstr "گروه زمینه"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7431,6 +7424,6 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "زمینههای سفارشی پیشرفته"
|
msgstr "زمینههای سفارشی پیشرفته"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: fa_IR\n"
|
"Language: fa_IR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "انتخابگر آیکون"
|
msgstr "انتخابگر آیکون"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "افزونههای فعال"
|
msgstr "افزونههای فعال"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "پوستهی مادر"
|
msgstr "پوستهی مادر"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "پوستهی فعال"
|
msgstr "پوستهی فعال"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "نگارش افزونه"
|
msgstr "نگارش افزونه"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "فیلدهای ACF"
|
msgstr "فیلدهای ACF"
|
||||||
|
|
@ -2583,8 +2591,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "تکثیرکردن"
|
msgstr "تکثیرکردن"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "حرفهای"
|
msgstr "حرفهای"
|
||||||
|
|
||||||
|
|
@ -4411,7 +4419,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4735,7 +4743,7 @@ msgstr "فعال کردن این مورد"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "انتقال گروه فیلد به زبالهدان؟"
|
msgstr "انتقال گروه فیلد به زبالهدان؟"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4748,7 +4756,7 @@ msgstr "غیرفعال"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4757,7 +4765,7 @@ msgstr ""
|
||||||
"همزمان فعال باشند. ما به طور خودکار افزونه فیلدهای سفارشی پیشرفته را غیرفعال "
|
"همزمان فعال باشند. ما به طور خودکار افزونه فیلدهای سفارشی پیشرفته را غیرفعال "
|
||||||
"کردیم."
|
"کردیم."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4765,19 +4773,6 @@ msgstr ""
|
||||||
"افزونه فیلدهای سفارشی پیشرفته و افزونه فیلدهای سفارشی پیشرفتهی حرفهای نباید "
|
"افزونه فیلدهای سفارشی پیشرفته و افزونه فیلدهای سفارشی پیشرفتهی حرفهای نباید "
|
||||||
"همزمان فعال باشند. ما به طور خودکار فیلدهای سفارشی پیشرفته را غیرفعال کردیم."
|
"همزمان فعال باشند. ما به طور خودکار فیلدهای سفارشی پیشرفته را غیرفعال کردیم."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - قبل از شروع اولیه ACF، یک یا چند تماس را برای "
|
|
||||||
"بازیابی مقادیر فیلد ACF شناسایی کردهایم. این مورد پشتیبانی نمیشود و میتواند "
|
|
||||||
"منجر به دادههای ناقص یا از دست رفته شود. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">با نحوه رفع این مشکل آشنا شوید</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5889,28 +5884,28 @@ msgstr "ناشناخته"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "نوع فیلد وجود ندارد"
|
msgstr "نوع فیلد وجود ندارد"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "اسپم تشخیص داده شد"
|
msgstr "اسپم تشخیص داده شد"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "نوشته بروز شد"
|
msgstr "نوشته بروز شد"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "بروزرسانی"
|
msgstr "بروزرسانی"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "اعتبار سنجی ایمیل"
|
msgstr "اعتبار سنجی ایمیل"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "محتوا"
|
msgstr "محتوا"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "عنوان"
|
msgstr "عنوان"
|
||||||
|
|
||||||
|
|
@ -7202,17 +7197,15 @@ msgstr "نمایش متن همراه انتخاب"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "پیام"
|
msgstr "پیام"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "خیر"
|
msgstr "خیر"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "بله"
|
msgstr "بله"
|
||||||
|
|
||||||
|
|
@ -7351,89 +7344,89 @@ msgid "Time Picker"
|
||||||
msgstr "انتخاب زمان"
|
msgstr "انتخاب زمان"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "گروه فیلدی در زبالهدان یافت نشد"
|
msgstr "گروه فیلدی در زبالهدان یافت نشد"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "گروه فیلدی یافت نشد"
|
msgstr "گروه فیلدی یافت نشد"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "جستجوی فیلدها"
|
msgstr "جستجوی فیلدها"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "مشاهده فیلد"
|
msgstr "مشاهده فیلد"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "فیلد تازه"
|
msgstr "فیلد تازه"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "ویرایش فیلد"
|
msgstr "ویرایش فیلد"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "افزودن فیلد تازه"
|
msgstr "افزودن فیلد تازه"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "فیلد"
|
msgstr "فیلد"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "فیلدها"
|
msgstr "فیلدها"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "گروه فیلدی در زبالهدان یافت نشد"
|
msgstr "گروه فیلدی در زبالهدان یافت نشد"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "گروه فیلدی یافت نشد"
|
msgstr "گروه فیلدی یافت نشد"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "جستجوی گروههای فیلد"
|
msgstr "جستجوی گروههای فیلد"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "مشاهدهی گروه فیلد"
|
msgstr "مشاهدهی گروه فیلد"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "گروه فیلد تازه"
|
msgstr "گروه فیلد تازه"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "ویرایش گروه فیلد"
|
msgstr "ویرایش گروه فیلد"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "افزودن گروه فیلد تازه"
|
msgstr "افزودن گروه فیلد تازه"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "افزودن"
|
msgstr "افزودن"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "گروه فیلد"
|
msgstr "گروه فیلد"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7450,7 +7443,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "فیلدهای سفارشی پیشرفته"
|
msgstr "فیلدهای سفارشی پیشرفته"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
lang/acf-fi.mo
BIN
lang/acf-fi.mo
Binary file not shown.
213
lang/acf-fi.po
213
lang/acf-fi.po
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2632,8 +2640,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klooni"
|
msgstr "Klooni"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4467,7 +4475,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4785,7 +4793,7 @@ msgstr ""
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4798,7 +4806,7 @@ msgstr ""
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4807,7 +4815,7 @@ msgstr ""
|
||||||
"olla käytössä yhtäaikaa. Suljimme Advanced Custom Fields PRO -lisäosan "
|
"olla käytössä yhtäaikaa. Suljimme Advanced Custom Fields PRO -lisäosan "
|
||||||
"automaattisesti."
|
"automaattisesti."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4816,19 +4824,6 @@ msgstr ""
|
||||||
"olla käytössä yhtäaikaa. Suljimme Advanced Custom Fields -lisäosan "
|
"olla käytössä yhtäaikaa. Suljimme Advanced Custom Fields -lisäosan "
|
||||||
"automaattisesti."
|
"automaattisesti."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - Olemme havainneet yhden tai useamman kutsun ACF-"
|
|
||||||
"kenttäarvojen noutamiseksi ennen ACF:n alustamista. Tätä ei tueta ja se voi "
|
|
||||||
"johtaa väärin muotoiltuihin tai puuttuviin tietoihin. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">Lue lisää tämän korjaamisesta</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5958,28 +5953,28 @@ msgstr "Tuntematon"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Kenttätyyppi ei ole olemassa"
|
msgstr "Kenttätyyppi ei ole olemassa"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Roskapostia havaittu"
|
msgstr "Roskapostia havaittu"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Artikkeli päivitetty"
|
msgstr "Artikkeli päivitetty"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Päivitä"
|
msgstr "Päivitä"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validoi sähköposti"
|
msgstr "Validoi sähköposti"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Sisältö"
|
msgstr "Sisältö"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Otsikko"
|
msgstr "Otsikko"
|
||||||
|
|
||||||
|
|
@ -7273,17 +7268,15 @@ msgstr "Näytä teksti valintaruudun rinnalla"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Viesti"
|
msgstr "Viesti"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Ei"
|
msgstr "Ei"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Kyllä"
|
msgstr "Kyllä"
|
||||||
|
|
||||||
|
|
@ -7422,90 +7415,90 @@ msgid "Time Picker"
|
||||||
msgstr "Kellonaikavalitsin"
|
msgstr "Kellonaikavalitsin"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "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[0] "Poistettu käytöstä <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Poistettu käytöstä <span class=\"count\">(%s)</span>"
|
msgstr[1] "Poistettu käytöstä <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Kenttiä ei löytynyt roskakorista"
|
msgstr "Kenttiä ei löytynyt roskakorista"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Ei löytynyt kenttiä"
|
msgstr "Ei löytynyt kenttiä"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Etsi kenttiä"
|
msgstr "Etsi kenttiä"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Näytä kenttä"
|
msgstr "Näytä kenttä"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Uusi kenttä"
|
msgstr "Uusi kenttä"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Muokkaa kenttää"
|
msgstr "Muokkaa kenttää"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Lisää uusi kenttä"
|
msgstr "Lisää uusi kenttä"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Kenttä"
|
msgstr "Kenttä"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Kentät"
|
msgstr "Kentät"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Kenttäryhmiä ei löytynyt roskakorista"
|
msgstr "Kenttäryhmiä ei löytynyt roskakorista"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Kenttäryhmiä ei löytynyt"
|
msgstr "Kenttäryhmiä ei löytynyt"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Etsi kenttäryhmiä"
|
msgstr "Etsi kenttäryhmiä"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Katso kenttäryhmää"
|
msgstr "Katso kenttäryhmää"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Lisää uusi kenttäryhmä"
|
msgstr "Lisää uusi kenttäryhmä"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Muokkaa kenttäryhmää"
|
msgstr "Muokkaa kenttäryhmää"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Lisää uusi kenttäryhmä"
|
msgstr "Lisää uusi kenttäryhmä"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Lisää uusi"
|
msgstr "Lisää uusi"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Kenttäryhmä"
|
msgstr "Kenttäryhmä"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7523,7 +7516,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "http://www.advancedcustomfields.com"
|
msgstr "http://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: fr_CA\n"
|
"Language: fr_CA\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: fr_FR\n"
|
"Language: fr_FR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,45 +21,61 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr "En savoir plus"
|
||||||
|
|
||||||
#: includes/validation.php:133
|
#: includes/validation.php:133
|
||||||
msgid ""
|
msgid ""
|
||||||
"ACF was unable to perform validation because the provided nonce failed "
|
"ACF was unable to perform validation because the provided nonce failed "
|
||||||
"verification."
|
"verification."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"ACF n’a pas pu effectuer la validation car le jeton de sécurité fourni a "
|
||||||
|
"échoué à la vérification."
|
||||||
|
|
||||||
#: includes/validation.php:131
|
#: includes/validation.php:131
|
||||||
msgid ""
|
msgid ""
|
||||||
"ACF was unable to perform validation because no nonce was received by the "
|
"ACF was unable to perform validation because no nonce was received by the "
|
||||||
"server."
|
"server."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"ACF n’a pas pu effectuer la validation car aucun jeton de sécurité n’a été "
|
||||||
|
"reçu par le serveur."
|
||||||
|
|
||||||
#. translators: This text is prepended by a link to ACF's website, and appended
|
#. translators: This text is prepended by a link to ACF's website, and appended
|
||||||
#. by a link to WP Engine's website.
|
#. by a link to WP Engine's website.
|
||||||
#: includes/admin/admin.php:324
|
#: includes/admin/admin.php:324
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr "sont développés et maintenus par"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
msgstr ""
|
msgstr "Par défaut, seuls les administrateurs peuvent modifier ce réglage."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:848
|
#: includes/admin/views/acf-post-type/advanced-settings.php:848
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:808
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:808
|
||||||
msgid "By default only super admin users can edit this setting."
|
msgid "By default only super admin users can edit this setting."
|
||||||
msgstr ""
|
msgstr "Par défaut, seuls les super-admins peuvent modifier ce réglage."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/field.php:322
|
#: includes/admin/views/acf-field-group/field.php:322
|
||||||
msgid "Close and Add Field"
|
msgid "Close and Add Field"
|
||||||
msgstr ""
|
msgstr "Fermer et Ajouter un Champ"
|
||||||
|
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:804
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:804
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -75,10 +91,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr "Autoriser l’accès à la valeur dans l’interface de l’éditeur"
|
msgstr "Autoriser l’accès à la valeur dans l’interface de l’éditeur"
|
||||||
|
|
@ -98,7 +110,7 @@ msgstr ""
|
||||||
"champ et de l’afficher dans l’interface de l’éditeur en utilisant les blocs "
|
"champ et de l’afficher dans l’interface de l’éditeur en utilisant les blocs "
|
||||||
"bindings ou le code court ACF. %s"
|
"bindings ou le code court ACF. %s"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
@ -106,7 +118,7 @@ msgstr ""
|
||||||
"Le type de champ ACF demandé ne prend pas en charge la sortie via les Block "
|
"Le type de champ ACF demandé ne prend pas en charge la sortie via les Block "
|
||||||
"Bindings ou le code court ACF."
|
"Bindings ou le code court ACF."
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -198,7 +210,7 @@ msgstr "Icône de mise à jour (alt)"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:699
|
#: includes/fields/class-acf-field-icon_picker.php:699
|
||||||
msgid "Universal Access (alt) Icon"
|
msgid "Universal Access (alt) Icon"
|
||||||
msgstr ""
|
msgstr "Icône d’accès universel (alt)"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:696
|
#: includes/fields/class-acf-field-icon_picker.php:696
|
||||||
msgid "Twitter (alt) Icon"
|
msgid "Twitter (alt) Icon"
|
||||||
|
|
@ -222,7 +234,7 @@ msgstr "Icône de page de texte"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:680
|
#: includes/fields/class-acf-field-icon_picker.php:680
|
||||||
msgid "Table Row Delete Icon"
|
msgid "Table Row Delete Icon"
|
||||||
msgstr ""
|
msgstr "Icône de suppression de rangée de tableau"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:679
|
#: includes/fields/class-acf-field-icon_picker.php:679
|
||||||
msgid "Table Row Before Icon"
|
msgid "Table Row Before Icon"
|
||||||
|
|
@ -811,9 +823,9 @@ msgstr "Arguments de requête invalides."
|
||||||
#: includes/ajax/class-acf-ajax-upgrade.php:24
|
#: includes/ajax/class-acf-ajax-upgrade.php:24
|
||||||
#: includes/ajax/class-acf-ajax-user-setting.php:38
|
#: includes/ajax/class-acf-ajax-user-setting.php:38
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr "Désolé, vous n’avez pas la permission de faire cette action"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -831,11 +843,13 @@ msgstr "Logo ACF PRO"
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:788
|
#: includes/fields/class-acf-field-icon_picker.php:788
|
||||||
msgid "%s requires a valid attachment ID when type is set to media_library."
|
msgid "%s requires a valid attachment ID when type is set to media_library."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"%s nécessite un ID de pièce jointe valide lorsque le type est défini sur "
|
||||||
|
"media_library."
|
||||||
|
|
||||||
#. translators: %s - field name
|
#. translators: %s - field name
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:772
|
#: includes/fields/class-acf-field-icon_picker.php:772
|
||||||
msgid "%s is a required property of acf."
|
msgid "%s is a required property of acf."
|
||||||
msgstr ""
|
msgstr "%s est une propriété nécessaire d’ACF."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:748
|
#: includes/fields/class-acf-field-icon_picker.php:748
|
||||||
msgid "The value of icon to save."
|
msgid "The value of icon to save."
|
||||||
|
|
@ -899,7 +913,7 @@ msgstr "Icône de traduction"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:689
|
#: includes/fields/class-acf-field-icon_picker.php:689
|
||||||
msgid "Tickets Icon"
|
msgid "Tickets Icon"
|
||||||
msgstr ""
|
msgstr "Icône de billets"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:688
|
#: includes/fields/class-acf-field-icon_picker.php:688
|
||||||
msgid "Thumbs Up Icon"
|
msgid "Thumbs Up Icon"
|
||||||
|
|
@ -1008,7 +1022,7 @@ msgstr "Icône Pressthis"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:641
|
#: includes/fields/class-acf-field-icon_picker.php:641
|
||||||
msgid "Post Status Icon"
|
msgid "Post Status Icon"
|
||||||
msgstr ""
|
msgstr "Icône d’état de publication"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:640
|
#: includes/fields/class-acf-field-icon_picker.php:640
|
||||||
msgid "Portfolio Icon"
|
msgid "Portfolio Icon"
|
||||||
|
|
@ -1024,7 +1038,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:633
|
#: includes/fields/class-acf-field-icon_picker.php:633
|
||||||
msgid "Playlist Audio Icon"
|
msgid "Playlist Audio Icon"
|
||||||
msgstr ""
|
msgstr "Icône de liste de lecture audio"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:631
|
#: includes/fields/class-acf-field-icon_picker.php:631
|
||||||
msgid "Phone Icon"
|
msgid "Phone Icon"
|
||||||
|
|
@ -1032,7 +1046,7 @@ msgstr "Icône de téléphone"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:629
|
#: includes/fields/class-acf-field-icon_picker.php:629
|
||||||
msgid "Performance Icon"
|
msgid "Performance Icon"
|
||||||
msgstr ""
|
msgstr "Icône de performance"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:627
|
#: includes/fields/class-acf-field-icon_picker.php:627
|
||||||
msgid "Paperclip Icon"
|
msgid "Paperclip Icon"
|
||||||
|
|
@ -1044,7 +1058,7 @@ msgstr "Pas d'icône"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:622
|
#: includes/fields/class-acf-field-icon_picker.php:622
|
||||||
msgid "Networking Icon"
|
msgid "Networking Icon"
|
||||||
msgstr ""
|
msgstr "Icône de réseau"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:621
|
#: includes/fields/class-acf-field-icon_picker.php:621
|
||||||
msgid "Nametag Icon"
|
msgid "Nametag Icon"
|
||||||
|
|
@ -1088,7 +1102,7 @@ msgstr "Icône d’emplacement"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:596
|
#: includes/fields/class-acf-field-icon_picker.php:596
|
||||||
msgid "List View Icon"
|
msgid "List View Icon"
|
||||||
msgstr ""
|
msgstr "Icône Vue en liste"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:594
|
#: includes/fields/class-acf-field-icon_picker.php:594
|
||||||
msgid "Lightbulb Icon"
|
msgid "Lightbulb Icon"
|
||||||
|
|
@ -1096,11 +1110,11 @@ msgstr "Icône d’ampoule"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:593
|
#: includes/fields/class-acf-field-icon_picker.php:593
|
||||||
msgid "Left Right Icon"
|
msgid "Left Right Icon"
|
||||||
msgstr ""
|
msgstr "Icône Gauche/droite"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:592
|
#: includes/fields/class-acf-field-icon_picker.php:592
|
||||||
msgid "Layout Icon"
|
msgid "Layout Icon"
|
||||||
msgstr ""
|
msgstr "Icône de mise en page"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:591
|
#: includes/fields/class-acf-field-icon_picker.php:591
|
||||||
msgid "Laptop Icon"
|
msgid "Laptop Icon"
|
||||||
|
|
@ -1170,7 +1184,7 @@ msgstr "Icône externe"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:536
|
#: includes/fields/class-acf-field-icon_picker.php:536
|
||||||
msgid "Email (alt) Icon"
|
msgid "Email (alt) Icon"
|
||||||
msgstr ""
|
msgstr "Icône d’e-mail (alt)"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:535
|
#: includes/fields/class-acf-field-icon_picker.php:535
|
||||||
msgid "Email Icon"
|
msgid "Email Icon"
|
||||||
|
|
@ -1200,7 +1214,7 @@ msgstr "Icône de tableau"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:527
|
#: includes/fields/class-acf-field-icon_picker.php:527
|
||||||
msgid "Strikethrough Icon"
|
msgid "Strikethrough Icon"
|
||||||
msgstr ""
|
msgstr "Icône barrée"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:526
|
#: includes/fields/class-acf-field-icon_picker.php:526
|
||||||
msgid "Spellcheck Icon"
|
msgid "Spellcheck Icon"
|
||||||
|
|
@ -1270,11 +1284,11 @@ msgstr "Icône de code"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:505
|
#: includes/fields/class-acf-field-icon_picker.php:505
|
||||||
msgid "Break Icon"
|
msgid "Break Icon"
|
||||||
msgstr ""
|
msgstr "Icône de rupture"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:504
|
#: includes/fields/class-acf-field-icon_picker.php:504
|
||||||
msgid "Bold Icon"
|
msgid "Bold Icon"
|
||||||
msgstr ""
|
msgstr "Icône en gras"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:498
|
#: includes/fields/class-acf-field-icon_picker.php:498
|
||||||
msgid "Edit Icon"
|
msgid "Edit Icon"
|
||||||
|
|
@ -1286,7 +1300,7 @@ msgstr "Icône de téléchargement"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:495
|
#: includes/fields/class-acf-field-icon_picker.php:495
|
||||||
msgid "Dismiss Icon"
|
msgid "Dismiss Icon"
|
||||||
msgstr ""
|
msgstr "Ignorer l’icône"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:494
|
#: includes/fields/class-acf-field-icon_picker.php:494
|
||||||
msgid "Desktop Icon"
|
msgid "Desktop Icon"
|
||||||
|
|
@ -1338,7 +1352,7 @@ msgstr "Icône de carotte"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:458
|
#: includes/fields/class-acf-field-icon_picker.php:458
|
||||||
msgid "Camera Icon"
|
msgid "Camera Icon"
|
||||||
msgstr ""
|
msgstr "Icône d’appareil photo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:457
|
#: includes/fields/class-acf-field-icon_picker.php:457
|
||||||
msgid "Calendar (alt) Icon"
|
msgid "Calendar (alt) Icon"
|
||||||
|
|
@ -1354,7 +1368,7 @@ msgstr "Icône de femme d’affaires"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:450
|
#: includes/fields/class-acf-field-icon_picker.php:450
|
||||||
msgid "Building Icon"
|
msgid "Building Icon"
|
||||||
msgstr ""
|
msgstr "Icône de bâtiment"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:437
|
#: includes/fields/class-acf-field-icon_picker.php:437
|
||||||
msgid "Book Icon"
|
msgid "Book Icon"
|
||||||
|
|
@ -1366,7 +1380,7 @@ msgstr "Icône de sauvegarde"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:431
|
#: includes/fields/class-acf-field-icon_picker.php:431
|
||||||
msgid "Awards Icon"
|
msgid "Awards Icon"
|
||||||
msgstr ""
|
msgstr "Icône de prix"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:430
|
#: includes/fields/class-acf-field-icon_picker.php:430
|
||||||
msgid "Art Icon"
|
msgid "Art Icon"
|
||||||
|
|
@ -1466,7 +1480,7 @@ msgstr "Icône de liens"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:390
|
#: includes/fields/class-acf-field-icon_picker.php:390
|
||||||
msgid "Home Icon"
|
msgid "Home Icon"
|
||||||
msgstr ""
|
msgstr "Icon d’accueil"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:388
|
#: includes/fields/class-acf-field-icon_picker.php:388
|
||||||
msgid "Customizer Icon"
|
msgid "Customizer Icon"
|
||||||
|
|
@ -1542,7 +1556,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:142
|
#: includes/fields/class-acf-field-icon_picker.php:142
|
||||||
msgid "Search icons..."
|
msgid "Search icons..."
|
||||||
msgstr ""
|
msgstr "Rechercher des icônes…"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:53
|
#: includes/fields/class-acf-field-icon_picker.php:53
|
||||||
msgid "Media Library"
|
msgid "Media Library"
|
||||||
|
|
@ -1562,183 +1576,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "Sélecteur d’icône"
|
msgstr "Sélecteur d’icône"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "Code court activé"
|
msgstr "Code court activé"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Clair"
|
msgstr "Clair"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "Normal"
|
msgstr "Normal"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "Format de l’API REST"
|
msgstr "Format de l’API REST"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "Extensions actives"
|
msgstr "Extensions actives"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "Thème parent"
|
msgstr "Thème parent"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "Thème actif"
|
msgstr "Thème actif"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "Est un multisite"
|
msgstr "Est un multisite"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "Version MySQL"
|
msgstr "Version MySQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "Version de WordPress"
|
msgstr "Version de WordPress"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr "État de la licence"
|
msgstr "État de la licence"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr "Type de licence"
|
msgstr "Type de licence"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr "URL sous licence"
|
msgstr "URL sous licence"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr "Licence activée"
|
msgstr "Licence activée"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Gratuit"
|
msgstr "Gratuit"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "Type d’extension"
|
msgstr "Type d’extension"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "Version de l’extension"
|
msgstr "Version de l’extension"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1783,11 +1797,11 @@ msgstr "Les termes contiennent"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:139
|
#: includes/admin/post-types/admin-field-group.php:139
|
||||||
msgid "Term is not equal to"
|
msgid "Term is not equal to"
|
||||||
msgstr ""
|
msgstr "Le terme n’est pas égal à"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:138
|
#: includes/admin/post-types/admin-field-group.php:138
|
||||||
msgid "Term is equal to"
|
msgid "Term is equal to"
|
||||||
msgstr ""
|
msgstr "Le terme est égal à"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:137
|
#: includes/admin/post-types/admin-field-group.php:137
|
||||||
msgid "Has no user selected"
|
msgid "Has no user selected"
|
||||||
|
|
@ -1819,11 +1833,11 @@ msgstr "N’a pas de page sélectionnée"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:130
|
#: includes/admin/post-types/admin-field-group.php:130
|
||||||
msgid "Has any page selected"
|
msgid "Has any page selected"
|
||||||
msgstr ""
|
msgstr "Comme une page sélectionnée"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:129
|
#: includes/admin/post-types/admin-field-group.php:129
|
||||||
msgid "Pages do not contain"
|
msgid "Pages do not contain"
|
||||||
msgstr ""
|
msgstr "Les pages ne contiennent pas"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:128
|
#: includes/admin/post-types/admin-field-group.php:128
|
||||||
msgid "Pages contain"
|
msgid "Pages contain"
|
||||||
|
|
@ -1831,11 +1845,11 @@ msgstr "Les pages contiennent"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:127
|
#: includes/admin/post-types/admin-field-group.php:127
|
||||||
msgid "Page is not equal to"
|
msgid "Page is not equal to"
|
||||||
msgstr ""
|
msgstr "La page n’est pas égale à"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:126
|
#: includes/admin/post-types/admin-field-group.php:126
|
||||||
msgid "Page is equal to"
|
msgid "Page is equal to"
|
||||||
msgstr ""
|
msgstr "La page est égale à"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:125
|
#: includes/admin/post-types/admin-field-group.php:125
|
||||||
msgid "Has no relationship selected"
|
msgid "Has no relationship selected"
|
||||||
|
|
@ -1855,7 +1869,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
msgid "Posts do not contain"
|
msgid "Posts do not contain"
|
||||||
msgstr ""
|
msgstr "Les publications ne contiennent pas"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
msgid "Posts contain"
|
msgid "Posts contain"
|
||||||
|
|
@ -1867,25 +1881,25 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:118
|
#: includes/admin/post-types/admin-field-group.php:118
|
||||||
msgid "Post is equal to"
|
msgid "Post is equal to"
|
||||||
msgstr ""
|
msgstr "La publication est égale à"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:117
|
#: includes/admin/post-types/admin-field-group.php:117
|
||||||
msgid "Relationships do not contain"
|
msgid "Relationships do not contain"
|
||||||
msgstr ""
|
msgstr "Les relations ne contiennent pas"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:116
|
#: includes/admin/post-types/admin-field-group.php:116
|
||||||
msgid "Relationships contain"
|
msgid "Relationships contain"
|
||||||
msgstr ""
|
msgstr "Les relations contiennent"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:115
|
#: includes/admin/post-types/admin-field-group.php:115
|
||||||
msgid "Relationship is not equal to"
|
msgid "Relationship is not equal to"
|
||||||
msgstr ""
|
msgstr "La relation n’est pas égale à"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:114
|
#: includes/admin/post-types/admin-field-group.php:114
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr "La relation est égale à"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "Champs ACF"
|
msgstr "Champs ACF"
|
||||||
|
|
@ -1946,6 +1960,10 @@ msgid ""
|
||||||
"some of your fields has been modified by this change, but this may not be a "
|
"some of your fields has been modified by this change, but this may not be a "
|
||||||
"breaking change. %2$s."
|
"breaking change. %2$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"%1$s ACF renvoi désormais automatiquement au HTML non sécurisé lorsqu’il est "
|
||||||
|
"rendu par <code>the_field</code> ou le code court ACF. Nous avons détecté "
|
||||||
|
"que le résultat de certains de vos champs a été modifié par ce changement, "
|
||||||
|
"mais il ne s’agit peut-être pas d’un changement radical. %2$s."
|
||||||
|
|
||||||
#: includes/admin/views/escaped-html-notice.php:27
|
#: includes/admin/views/escaped-html-notice.php:27
|
||||||
msgid "Please contact your site administrator or developer for more details."
|
msgid "Please contact your site administrator or developer for more details."
|
||||||
|
|
@ -2688,8 +2706,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Cloner"
|
msgstr "Cloner"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "Pro"
|
msgstr "Pro"
|
||||||
|
|
||||||
|
|
@ -4695,7 +4713,7 @@ msgstr ""
|
||||||
"avec ACF. <a href=\"%s\">Lancez-vous</a>."
|
"avec ACF. <a href=\"%s\">Lancez-vous</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -5027,7 +5045,7 @@ msgstr "Activer cet élément"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Déplacer le groupe de champs vers la corbeille ?"
|
msgstr "Déplacer le groupe de champs vers la corbeille ?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -5040,7 +5058,7 @@ msgstr "Inactif"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -5049,7 +5067,7 @@ msgstr ""
|
||||||
"actives en même temps. Nous avons automatiquement désactivé Advanced Custom "
|
"actives en même temps. Nous avons automatiquement désactivé Advanced Custom "
|
||||||
"Fields Pro."
|
"Fields Pro."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -5058,20 +5076,6 @@ msgstr ""
|
||||||
"actives en même temps. Nous avons automatiquement désactivé Advanced Custom "
|
"actives en même temps. Nous avons automatiquement désactivé Advanced Custom "
|
||||||
"Fields."
|
"Fields."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - Nous avons détecté un ou plusieurs appels pour "
|
|
||||||
"récupérer les valeurs des champs ACF avant l’initialisation d’ACF. Ceci "
|
|
||||||
"n’est pas pris en charge et peut entraîner des données incorrectes ou "
|
|
||||||
"manquantes. <a href=\"%2$s\" target=\"_blank\">Découvrez comment corriger ce "
|
|
||||||
"problème</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6220,28 +6224,28 @@ msgstr "Inconnu"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Le type de champ n’existe pas"
|
msgstr "Le type de champ n’existe pas"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Indésirable détecté"
|
msgstr "Indésirable détecté"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Publication mise à jour"
|
msgstr "Publication mise à jour"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Mise à jour"
|
msgstr "Mise à jour"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valider l’e-mail"
|
msgstr "Valider l’e-mail"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenu"
|
msgstr "Contenu"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titre"
|
msgstr "Titre"
|
||||||
|
|
||||||
|
|
@ -7541,17 +7545,15 @@ msgstr "Affiche le texte à côté de la case à cocher"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Message"
|
msgstr "Message"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Non"
|
msgstr "Non"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Oui"
|
msgstr "Oui"
|
||||||
|
|
||||||
|
|
@ -7690,90 +7692,90 @@ msgid "Time Picker"
|
||||||
msgstr "Sélecteur d’heure"
|
msgstr "Sélecteur d’heure"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "<span class=\"count\">(%s)</span> inactif"
|
msgstr[0] "<span class=\"count\">(%s)</span> inactif"
|
||||||
msgstr[1] "<span class=\"count\">(%s)</span> inactifs"
|
msgstr[1] "<span class=\"count\">(%s)</span> inactifs"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Aucun champ trouvé dans la corbeille"
|
msgstr "Aucun champ trouvé dans la corbeille"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Aucun champ trouvé"
|
msgstr "Aucun champ trouvé"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Rechercher des champs"
|
msgstr "Rechercher des champs"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Voir le champ"
|
msgstr "Voir le champ"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nouveau champ"
|
msgstr "Nouveau champ"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Modifier le champ"
|
msgstr "Modifier le champ"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Ajouter un nouveau champ"
|
msgstr "Ajouter un nouveau champ"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Champ"
|
msgstr "Champ"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Champs"
|
msgstr "Champs"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Aucun groupe de champs trouvé dans la corbeille"
|
msgstr "Aucun groupe de champs trouvé dans la corbeille"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Aucun groupe de champs trouvé"
|
msgstr "Aucun groupe de champs trouvé"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Rechercher des groupes de champs"
|
msgstr "Rechercher des groupes de champs"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Voir le groupe de champs"
|
msgstr "Voir le groupe de champs"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Nouveau groupe de champs"
|
msgstr "Nouveau groupe de champs"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Modifier le groupe de champs"
|
msgstr "Modifier le groupe de champs"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Ajouter un groupe de champs"
|
msgstr "Ajouter un groupe de champs"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Ajouter"
|
msgstr "Ajouter"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Groupe de champs"
|
msgstr "Groupe de champs"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7792,7 +7794,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com/"
|
msgstr "https://www.advancedcustomfields.com/"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: gl_ES\n"
|
"Language: gl_ES\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr "Bloques usando Post Meta"
|
msgstr "Bloques usando Post Meta"
|
||||||
|
|
||||||
|
|
@ -1553,183 +1561,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1876,7 +1884,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2548,8 +2556,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4383,7 +4391,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4714,7 +4722,7 @@ msgstr "Activa este elemento"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Mover este grupo de campos á papeleira?"
|
msgstr "Mover este grupo de campos á papeleira?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4727,7 +4735,7 @@ msgstr "Inactivo"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4736,7 +4744,7 @@ msgstr ""
|
||||||
"activos ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields "
|
"activos ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields "
|
||||||
"PRO."
|
"PRO."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4744,19 +4752,6 @@ msgstr ""
|
||||||
"Advanced Custom Fields e Advanced Custom Fields PRO non deberían estar "
|
"Advanced Custom Fields e Advanced Custom Fields PRO non deberían estar "
|
||||||
"activos ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields."
|
"activos ao mesmo tempo. Desactivamos automaticamente Advanced Custom Fields."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> -Detectamos unha ou máis chamadas para obter valores "
|
|
||||||
"de campo de ACF antes de que ACF se iniciara. Isto non é compatible e pode "
|
|
||||||
"ocasionar datos mal formados ou faltantes. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">Aprende como corrixilo</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5889,28 +5884,28 @@ msgstr "Descoñecido"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "O tipo de campo non existe"
|
msgstr "O tipo de campo non existe"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam detectado"
|
msgstr "Spam detectado"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Publicación actualizada"
|
msgstr "Publicación actualizada"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Actualizar"
|
msgstr "Actualizar"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contido"
|
msgstr "Contido"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
|
|
@ -7208,17 +7203,15 @@ msgstr "Mostra o texto xunto ao recadro de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaxe"
|
msgstr "Mensaxe"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Non"
|
msgstr "Non"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Si"
|
msgstr "Si"
|
||||||
|
|
||||||
|
|
@ -7357,90 +7350,90 @@ msgid "Time Picker"
|
||||||
msgstr "Selector de hora"
|
msgstr "Selector de hora"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
|
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
|
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Non se encontraron campos na papeleira"
|
msgstr "Non se encontraron campos na papeleira"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Non se encontraron campos"
|
msgstr "Non se encontraron campos"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Buscar campos"
|
msgstr "Buscar campos"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Ver campo"
|
msgstr "Ver campo"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Novo campo"
|
msgstr "Novo campo"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Editar campo"
|
msgstr "Editar campo"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Engadir novo campo"
|
msgstr "Engadir novo campo"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Campo"
|
msgstr "Campo"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Campos"
|
msgstr "Campos"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Non se atoparon os grupos de campos na papeleira"
|
msgstr "Non se atoparon os grupos de campos na papeleira"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Non se encontraron grupos de campos"
|
msgstr "Non se encontraron grupos de campos"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Buscar grupo de campos"
|
msgstr "Buscar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Ver grupo de campos"
|
msgstr "Ver grupo de campos"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Novo grupo de campos"
|
msgstr "Novo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Engadir novo grupo de campos"
|
msgstr "Engadir novo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Engadir novo"
|
msgstr "Engadir novo"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Grupo de campos"
|
msgstr "Grupo de campos"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7457,6 +7450,6 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
lang/acf-gu.mo
BIN
lang/acf-gu.mo
Binary file not shown.
223
lang/acf-gu.po
223
lang/acf-gu.po
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: gu\n"
|
"Language: gu\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,31 +21,43 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr "બ્લોક્સ અને અન્ય સ્થાનો સાથે ક્ષેત્ર જૂથોની સંખ્યા"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr "બહુવિધ બ્લોક સ્થાનો સાથે ક્ષેત્ર જૂથોની સંખ્યા"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr "એક બ્લોક સ્થાન સાથે ક્ષેત્ર જૂથોની સંખ્યા"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr "બધા સ્થાન નિયમો"
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr "વધુ જાણો"
|
||||||
|
|
||||||
#: includes/validation.php:133
|
#: includes/validation.php:133
|
||||||
msgid ""
|
msgid ""
|
||||||
"ACF was unable to perform validation because the provided nonce failed "
|
"ACF was unable to perform validation because the provided nonce failed "
|
||||||
"verification."
|
"verification."
|
||||||
msgstr ""
|
msgstr "ACF માન્યતા કરવામાં અસમર્થ હતું કારણ કે પ્રદાન કરેલ નોન્સ ચકાસણી નિષ્ફળ ગઈ."
|
||||||
|
|
||||||
#: includes/validation.php:131
|
#: includes/validation.php:131
|
||||||
msgid ""
|
msgid ""
|
||||||
"ACF was unable to perform validation because no nonce was received by the "
|
"ACF was unable to perform validation because no nonce was received by the "
|
||||||
"server."
|
"server."
|
||||||
msgstr ""
|
msgstr "સર્વર દ્વારા કોઈ નોન્સ પ્રાપ્ત ન થવાને કારણે ACF માન્યતા કરવામાં અસમર્થ હતું."
|
||||||
|
|
||||||
#. translators: This text is prepended by a link to ACF's website, and appended
|
#. translators: This text is prepended by a link to ACF's website, and appended
|
||||||
#. by a link to WP Engine's website.
|
#. by a link to WP Engine's website.
|
||||||
#: includes/admin/admin.php:324
|
#: includes/admin/admin.php:324
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr "દ્વારા વિકસિત અને જાળવણી કરવામાં આવે છે"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "અપડેટ સ્ત્રોત"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
|
|
@ -81,10 +93,6 @@ msgstr ""
|
||||||
"કૉલબેકને $_POST અથવા $_GET જેવા કોઈપણ સુપરગ્લોબલ્સની ઍક્સેસ વિના વિશિષ્ટ સંદર્ભમાં "
|
"કૉલબેકને $_POST અથવા $_GET જેવા કોઈપણ સુપરગ્લોબલ્સની ઍક્સેસ વિના વિશિષ્ટ સંદર્ભમાં "
|
||||||
"એક્ઝિક્યુટ કરવામાં આવશે."
|
"એક્ઝિક્યુટ કરવામાં આવશે."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr "સંપાદક UI માં મૂલ્યને ઍક્સેસ કરવાની મંજૂરી આપો"
|
msgstr "સંપાદક UI માં મૂલ્યને ઍક્સેસ કરવાની મંજૂરી આપો"
|
||||||
|
|
@ -103,7 +111,7 @@ msgstr ""
|
||||||
"સામગ્રી સંપાદકોને બ્લોક બાઈન્ડિંગ્સ અથવા ACF શોર્ટકોડનો ઉપયોગ કરીને એડિટર UI માં ફીલ્ડ "
|
"સામગ્રી સંપાદકોને બ્લોક બાઈન્ડિંગ્સ અથવા ACF શોર્ટકોડનો ઉપયોગ કરીને એડિટર UI માં ફીલ્ડ "
|
||||||
"મૂલ્યને ઍક્સેસ કરવા અને પ્રદર્શિત કરવાની મંજૂરી આપો. %s"
|
"મૂલ્યને ઍક્સેસ કરવા અને પ્રદર્શિત કરવાની મંજૂરી આપો. %s"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
@ -111,7 +119,7 @@ msgstr ""
|
||||||
"વિનંતી કરેલ ACF ફીલ્ડ પ્રકાર બ્લોક બાઈન્ડિંગ્સ અથવા ACF શોર્ટકોડમાં આઉટપુટને સપોર્ટ કરતું "
|
"વિનંતી કરેલ ACF ફીલ્ડ પ્રકાર બ્લોક બાઈન્ડિંગ્સ અથવા ACF શોર્ટકોડમાં આઉટપુટને સપોર્ટ કરતું "
|
||||||
"નથી."
|
"નથી."
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -254,7 +262,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:667
|
#: includes/fields/class-acf-field-icon_picker.php:667
|
||||||
msgid "Spotify Icon"
|
msgid "Spotify Icon"
|
||||||
msgstr ""
|
msgstr "Spotify આઇકન"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-icon_picker.php:661
|
#: includes/fields/class-acf-field-icon_picker.php:661
|
||||||
msgid "Shortcode Icon"
|
msgid "Shortcode Icon"
|
||||||
|
|
@ -813,7 +821,7 @@ msgstr ""
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "માફ કરશો, તમને તે કરવાની પરવાનગી નથી"
|
msgstr "માફ કરશો, તમને તે કરવાની પરવાનગી નથી"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1562,183 +1570,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "સામાન્ય"
|
msgstr "સામાન્ય"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "મફત"
|
msgstr "મફત"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "પ્લગઇન સંસ્કરણ"
|
msgstr "પ્લગઇન સંસ્કરણ"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1885,7 +1893,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2646,8 +2654,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "ક્લોન"
|
msgstr "ક્લોન"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "પ્રો"
|
msgstr "પ્રો"
|
||||||
|
|
||||||
|
|
@ -4546,7 +4554,7 @@ msgstr ""
|
||||||
"સંચાલન કરો. <a href=\"%s\">પ્રારંભ કરો</a>."
|
"સંચાલન કરો. <a href=\"%s\">પ્રારંભ કરો</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4866,7 +4874,7 @@ msgstr "આ આઇટમ સક્રિય કરો"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4879,7 +4887,7 @@ msgstr "નિષ્ક્રિય"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4887,7 +4895,7 @@ msgstr ""
|
||||||
"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે "
|
"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે "
|
||||||
"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સ પ્રોને આપમેળે નિષ્ક્રિય કરી દીધું છે."
|
"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સ પ્રોને આપમેળે નિષ્ક્રિય કરી દીધું છે."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4895,19 +4903,6 @@ msgstr ""
|
||||||
"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે "
|
"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે "
|
||||||
"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સને આપમેળે નિષ્ક્રિય કરી દીધા છે."
|
"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સને આપમેળે નિષ્ક્રિય કરી દીધા છે."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - ACF શરૂ થાય તે પહેલાં અમે ACF ફીલ્ડ મૂલ્યો પુનઃપ્રાપ્ત કરવા માટે "
|
|
||||||
"એક અથવા વધુ કૉલ્સ શોધી કાઢ્યા છે. આ સમર્થિત નથી અને તે ખોટા અથવા ખોવાયેલા ડેટામાં "
|
|
||||||
"પરિણમી શકે છે. <a href=\"%2$s\" target=\"_blank\">આને કેવી રીતે ઠીક કરવું તે જાણો</"
|
|
||||||
"a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6008,28 +6003,28 @@ msgstr "અજ્ઞાત"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "ક્ષેત્ર પ્રકાર અસ્તિત્વમાં નથી"
|
msgstr "ક્ષેત્ર પ્રકાર અસ્તિત્વમાં નથી"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "પોસ્ટ અપડેટ થઇ ગઈ"
|
msgstr "પોસ્ટ અપડેટ થઇ ગઈ"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "સુધારો"
|
msgstr "સુધારો"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "ઇમેઇલ માન્ય કરો"
|
msgstr "ઇમેઇલ માન્ય કરો"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "લખાણ"
|
msgstr "લખાણ"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "શીર્ષક"
|
msgstr "શીર્ષક"
|
||||||
|
|
||||||
|
|
@ -7320,17 +7315,15 @@ msgstr ""
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "સંદેશ"
|
msgstr "સંદેશ"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "ના"
|
msgstr "ના"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "હા"
|
msgstr "હા"
|
||||||
|
|
||||||
|
|
@ -7469,90 +7462,90 @@ msgid "Time Picker"
|
||||||
msgstr "તારીખ પીકર"
|
msgstr "તારીખ પીકર"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "નિષ્ક્રિય <span class=\"count\">(%s)</span>"
|
msgstr[0] "નિષ્ક્રિય <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "નિષ્ક્રિય <span class=\"count\">(%s)</span>"
|
msgstr[1] "નિષ્ક્રિય <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "ટ્રેશમાં કોઈ ફીલ્ડ મળ્યાં નથી"
|
msgstr "ટ્રેશમાં કોઈ ફીલ્ડ મળ્યાં નથી"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "કોઈ ક્ષેત્રો મળ્યાં નથી"
|
msgstr "કોઈ ક્ષેત્રો મળ્યાં નથી"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "શોધ ક્ષેત્રો"
|
msgstr "શોધ ક્ષેત્રો"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "ક્ષેત્ર જુઓ"
|
msgstr "ક્ષેત્ર જુઓ"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "નવી ફીલ્ડ"
|
msgstr "નવી ફીલ્ડ"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "ફીલ્ડ સંપાદિત કરો"
|
msgstr "ફીલ્ડ સંપાદિત કરો"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "નવી ફીલ્ડ ઉમેરો"
|
msgstr "નવી ફીલ્ડ ઉમેરો"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "ફિલ્ડ"
|
msgstr "ફિલ્ડ"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "ક્ષેત્રો"
|
msgstr "ક્ષેત્રો"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "ટ્રેશમાં કોઈ ફીલ્ડ જૂથો મળ્યાં નથી"
|
msgstr "ટ્રેશમાં કોઈ ફીલ્ડ જૂથો મળ્યાં નથી"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "કોઈ ક્ષેત્ર જૂથો મળ્યાં નથી"
|
msgstr "કોઈ ક્ષેત્ર જૂથો મળ્યાં નથી"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "ક્ષેત્ર જૂથો શોધો"
|
msgstr "ક્ષેત્ર જૂથો શોધો"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "ક્ષેત્ર જૂથ જુઓ"
|
msgstr "ક્ષેત્ર જૂથ જુઓ"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "નવું ક્ષેત્ર જૂથ"
|
msgstr "નવું ક્ષેત્ર જૂથ"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "ક્ષેત્ર જૂથ સંપાદિત કરો"
|
msgstr "ક્ષેત્ર જૂથ સંપાદિત કરો"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "નવું ક્ષેત્ર જૂથ ઉમેરો"
|
msgstr "નવું ક્ષેત્ર જૂથ ઉમેરો"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "નવું ઉમેરો"
|
msgstr "નવું ઉમેરો"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "ક્ષેત્ર જૂથ"
|
msgstr "ક્ષેત્ર જૂથ"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7569,6 +7562,6 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "અદ્યતન કસ્ટમ ક્ષેત્રો"
|
msgstr "અદ્યતન કસ્ટમ ક્ષેત્રો"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: he_IL\n"
|
"Language: he_IL\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
lang/acf-hr.mo
BIN
lang/acf-hr.mo
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: hu_HU\n"
|
"Language: hu_HU\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: id_ID\n"
|
"Language: id_ID\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: it_IT\n"
|
"Language: it_IT\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr "Numero di gruppi di campi con posizionamento in blocchi e altri"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr "Numero di gruppi di campi con posizionamento in blocchi multipli"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr "Numero di gruppi di campi con posizionamento in blocco singolo"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr "Tutte le regole di posizionamento"
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr "Scopri di più"
|
msgstr "Scopri di più"
|
||||||
|
|
@ -47,10 +63,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr "sono sviluppati e mantenuti da"
|
msgstr "sono sviluppati e mantenuti da"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "Aggiorna fonte"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -91,10 +103,6 @@ msgstr ""
|
||||||
"sarà eseguita in un contesto speciale senza accesso a nessuna superglobale "
|
"sarà eseguita in un contesto speciale senza accesso a nessuna superglobale "
|
||||||
"come $_POST o $_GET."
|
"come $_POST o $_GET."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr "Permetti l'accesso al valore nell'interfaccia utente dell'editor"
|
msgstr "Permetti l'accesso al valore nell'interfaccia utente dell'editor"
|
||||||
|
|
@ -114,7 +122,7 @@ msgstr ""
|
||||||
"campo nell'interfaccia utente dell'editor utilizzando blocchi con "
|
"campo nell'interfaccia utente dell'editor utilizzando blocchi con "
|
||||||
"associazioni o lo shortcode di ACF. %s"
|
"associazioni o lo shortcode di ACF. %s"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
@ -122,7 +130,7 @@ msgstr ""
|
||||||
"Il tipo di campo di ACF richiesto non supporta output nei blocchi con "
|
"Il tipo di campo di ACF richiesto non supporta output nei blocchi con "
|
||||||
"associazioni o nello shortcode di ACF."
|
"associazioni o nello shortcode di ACF."
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -829,7 +837,7 @@ msgstr "Argomenti della richiesta non validi."
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "Non hai i permessi per farlo."
|
msgstr "Non hai i permessi per farlo."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr "Blocchi che utilizzano meta dell'articolo"
|
msgstr "Blocchi che utilizzano meta dell'articolo"
|
||||||
|
|
||||||
|
|
@ -1584,183 +1592,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "Selettore delle icone"
|
msgstr "Selettore delle icone"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr "Percorsi di caricamento JSON"
|
msgstr "Percorsi di caricamento JSON"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr "Percorsi di salvataggio JSON"
|
msgstr "Percorsi di salvataggio JSON"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr "Moduli ACF registrati"
|
msgstr "Moduli ACF registrati"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "Shortcode abilitato"
|
msgstr "Shortcode abilitato"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr "Schede delle impostazioni del campo abilitate"
|
msgstr "Schede delle impostazioni del campo abilitate"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr "Modal del tipo di campo abilitato"
|
msgstr "Modal del tipo di campo abilitato"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr "Interfaccia utente dell'amministratore abilitata"
|
msgstr "Interfaccia utente dell'amministratore abilitata"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr "Precaricamento del blocco abilitato"
|
msgstr "Precaricamento del blocco abilitato"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr "Blocchi per la versione a blocchi di ACF"
|
msgstr "Blocchi per la versione a blocchi di ACF"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr "Blocchi per la versione API"
|
msgstr "Blocchi per la versione API"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr "Blocchi di ACF registrati"
|
msgstr "Blocchi di ACF registrati"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Light"
|
msgstr "Light"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "Standard"
|
msgstr "Standard"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "Formato REST API"
|
msgstr "Formato REST API"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr "Pagine opzioni registrate (PHP)"
|
msgstr "Pagine opzioni registrate (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr "Pagine opzioni registrate (JSON)"
|
msgstr "Pagine opzioni registrate (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr "Pagine opzioni registrate (UI)"
|
msgstr "Pagine opzioni registrate (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr "Interfaccia utente delle pagine delle opzioni abilitata"
|
msgstr "Interfaccia utente delle pagine delle opzioni abilitata"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr "Tassonomie registrate (JSON)"
|
msgstr "Tassonomie registrate (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr "Tassonomie registrate (UI)"
|
msgstr "Tassonomie registrate (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "Post type registrati (JSON)"
|
msgstr "Post type registrati (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr "Post type registrati (UI)"
|
msgstr "Post type registrati (UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr "Post type e tassonomie registrate"
|
msgstr "Post type e tassonomie registrate"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr "Numbero di campi di terze parti per tipo di campo"
|
msgstr "Numbero di campi di terze parti per tipo di campo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr "Numero di campi per tipo di campo"
|
msgstr "Numero di campi per tipo di campo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr "Gruppi di campi abilitati per GraphQL"
|
msgstr "Gruppi di campi abilitati per GraphQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr "Gruppi di campi abilitati per REST API"
|
msgstr "Gruppi di campi abilitati per REST API"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr "Gruppi di campi registrati (JSON)"
|
msgstr "Gruppi di campi registrati (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr "Gruppi di campi registrati (PHP)"
|
msgstr "Gruppi di campi registrati (PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr "Gruppi di campi registrati (IU)"
|
msgstr "Gruppi di campi registrati (IU)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "Plugin attivi"
|
msgstr "Plugin attivi"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "Tema genitore"
|
msgstr "Tema genitore"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "Tema attivo"
|
msgstr "Tema attivo"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "È multisito"
|
msgstr "È multisito"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "Versione MySQL"
|
msgstr "Versione MySQL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "Versione di WordPress"
|
msgstr "Versione di WordPress"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr "Data di scadenza dell'abbonamento"
|
msgstr "Data di scadenza dell'abbonamento"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr "Stato della licenza"
|
msgstr "Stato della licenza"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr "Tipo di licenza"
|
msgstr "Tipo di licenza"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr "URL con licenza"
|
msgstr "URL con licenza"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr "Licenza attivata"
|
msgstr "Licenza attivata"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "Gratuito"
|
msgstr "Gratuito"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "Tipo di plugin"
|
msgstr "Tipo di plugin"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "Versione del plugin"
|
msgstr "Versione del plugin"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1916,7 +1924,7 @@ msgstr "La relazione non è uguale a"
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr "La relazione è uguale a"
|
msgstr "La relazione è uguale a"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "Campi ACF"
|
msgstr "Campi ACF"
|
||||||
|
|
@ -2717,8 +2725,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clone"
|
msgstr "Clone"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -4709,7 +4717,7 @@ msgstr ""
|
||||||
"gestiscile con ACF. <a href=\"%s\">Inizia qui</a>."
|
"gestiscile con ACF. <a href=\"%s\">Inizia qui</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -5041,7 +5049,7 @@ msgstr "Attiva questo elemento"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Spostare il gruppo di campi nel cestino?"
|
msgstr "Spostare il gruppo di campi nel cestino?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -5054,7 +5062,7 @@ msgstr "Inattivo"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -5063,7 +5071,7 @@ msgstr ""
|
||||||
"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced "
|
"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced "
|
||||||
"Custom Fields PRO."
|
"Custom Fields PRO."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -5072,19 +5080,6 @@ msgstr ""
|
||||||
"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced "
|
"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced "
|
||||||
"Custom Fields."
|
"Custom Fields."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - Sono state rilevate una o più chiamate per "
|
|
||||||
"recuperare valori di campi ACF prima che ACF fosse inizializzato. Questo non "
|
|
||||||
"è supportato e può causare dati non corretti o mancanti. <a href=\"%2$s\" "
|
|
||||||
"target=\"_blank\">Scopri come correggere questo problema</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6225,28 +6220,28 @@ msgstr "Sconosciuto"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Il tipo di campo non esiste"
|
msgstr "Il tipo di campo non esiste"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam rilevato"
|
msgstr "Spam rilevato"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Articolo aggiornato"
|
msgstr "Articolo aggiornato"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aggiorna"
|
msgstr "Aggiorna"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valida l'email"
|
msgstr "Valida l'email"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenuto"
|
msgstr "Contenuto"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titolo"
|
msgstr "Titolo"
|
||||||
|
|
||||||
|
|
@ -7545,17 +7540,15 @@ msgstr "Visualizza il testo accanto al checkbox"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Messaggio"
|
msgstr "Messaggio"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Sì"
|
msgstr "Sì"
|
||||||
|
|
||||||
|
|
@ -7695,90 +7688,90 @@ msgid "Time Picker"
|
||||||
msgstr "Selettore orario"
|
msgstr "Selettore orario"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Non attivo <span class=\"count\">(%s)</span>"
|
msgstr[0] "Non attivo <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Non attivi <span class=\"count\">(%s)</span>"
|
msgstr[1] "Non attivi <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Nessun campo trovato nel Cestino"
|
msgstr "Nessun campo trovato nel Cestino"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Nessun campo trovato"
|
msgstr "Nessun campo trovato"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Cerca campi"
|
msgstr "Cerca campi"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Visualizza campo"
|
msgstr "Visualizza campo"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nuovo campo"
|
msgstr "Nuovo campo"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Modifica campo"
|
msgstr "Modifica campo"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Aggiungi nuovo campo"
|
msgstr "Aggiungi nuovo campo"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Campo"
|
msgstr "Campo"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Campi"
|
msgstr "Campi"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Nessun gruppo di campi trovato nel cestino"
|
msgstr "Nessun gruppo di campi trovato nel cestino"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Nessun gruppo di campi trovato"
|
msgstr "Nessun gruppo di campi trovato"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Cerca gruppo di campi"
|
msgstr "Cerca gruppo di campi"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Visualizza gruppo di campi"
|
msgstr "Visualizza gruppo di campi"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Nuovo gruppo di campi"
|
msgstr "Nuovo gruppo di campi"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Modifica gruppo di campi"
|
msgstr "Modifica gruppo di campi"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Aggiungi nuovo gruppo di campi"
|
msgstr "Aggiungi nuovo gruppo di campi"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Aggiungi nuovo"
|
msgstr "Aggiungi nuovo"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Gruppo di campi"
|
msgstr "Gruppo di campi"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7795,7 +7788,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
BIN
lang/acf-ja.mo
BIN
lang/acf-ja.mo
Binary file not shown.
209
lang/acf-ja.po
209
lang/acf-ja.po
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -75,10 +87,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -95,13 +103,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -802,7 +810,7 @@ msgstr "無効なリクエストです。"
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "その操作を行う権限がありません。"
|
msgstr "その操作を行う権限がありません。"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr "投稿メタを使用したブロック"
|
msgstr "投稿メタを使用したブロック"
|
||||||
|
|
||||||
|
|
@ -1551,183 +1559,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "登録された投稿タイプ (JSON)"
|
msgstr "登録された投稿タイプ (JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1874,7 +1882,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2572,8 +2580,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "複製"
|
msgstr "複製"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
|
|
@ -4406,7 +4414,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4721,7 +4729,7 @@ msgstr "この項目を有効化する"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4734,7 +4742,7 @@ msgstr "無効"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4743,7 +4751,7 @@ msgstr ""
|
||||||
"ださい。\n"
|
"ださい。\n"
|
||||||
"Advanced Custom Fields PROを自動的に無効化しました。"
|
"Advanced Custom Fields PROを自動的に無効化しました。"
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4752,15 +4760,6 @@ msgstr ""
|
||||||
"ださい。\n"
|
"ださい。\n"
|
||||||
"Advanced Custom Fields を自動的に無効化しました。"
|
"Advanced Custom Fields を自動的に無効化しました。"
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5882,28 +5881,28 @@ msgstr "不明"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "フィールドタイプが存在しません"
|
msgstr "フィールドタイプが存在しません"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "スパムを検出しました"
|
msgstr "スパムを検出しました"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "投稿を更新しました"
|
msgstr "投稿を更新しました"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "更新"
|
msgstr "更新"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "メールを確認"
|
msgstr "メールを確認"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "コンテンツ"
|
msgstr "コンテンツ"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "タイトル"
|
msgstr "タイトル"
|
||||||
|
|
||||||
|
|
@ -7195,17 +7194,15 @@ msgstr "チェックボックスの横にテキストを表示"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "メッセージ"
|
msgstr "メッセージ"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "いいえ"
|
msgstr "いいえ"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "はい"
|
msgstr "はい"
|
||||||
|
|
||||||
|
|
@ -7344,89 +7341,89 @@ msgid "Time Picker"
|
||||||
msgstr "時間選択ツール"
|
msgstr "時間選択ツール"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "停止中 <span class=\"count\">(%s)</span>"
|
msgstr[0] "停止中 <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "ゴミ箱にフィールドが見つかりません"
|
msgstr "ゴミ箱にフィールドが見つかりません"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "フィールドが見つかりません"
|
msgstr "フィールドが見つかりません"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "フィールドを検索"
|
msgstr "フィールドを検索"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "フィールドを表示"
|
msgstr "フィールドを表示"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "新規フィールド"
|
msgstr "新規フィールド"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "フィールドを編集"
|
msgstr "フィールドを編集"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "新規フィールドを追加"
|
msgstr "新規フィールドを追加"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "フィールド"
|
msgstr "フィールド"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "フィールド"
|
msgstr "フィールド"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "ゴミ箱にフィールドグループが見つかりません"
|
msgstr "ゴミ箱にフィールドグループが見つかりません"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "フィールドグループが見つかりません"
|
msgstr "フィールドグループが見つかりません"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "フィールドグループを検索"
|
msgstr "フィールドグループを検索"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "フィールドグループを表示"
|
msgstr "フィールドグループを表示"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "新規フィールドグループ"
|
msgstr "新規フィールドグループ"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "フィールドグループを編集"
|
msgstr "フィールドグループを編集"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "新規フィールドグループを追加"
|
msgstr "新規フィールドグループを追加"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "新規追加"
|
msgstr "新規追加"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "フィールドグループ"
|
msgstr "フィールドグループ"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7444,7 +7441,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: ko_KR\n"
|
"Language: ko_KR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -43,10 +59,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "출처 업데이트"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -81,10 +93,6 @@ msgstr ""
|
||||||
"콜백은 $_POST 또는 $_GET과 같은 슈퍼글로브에 액세스하지 않고 특수한 컨텍스트"
|
"콜백은 $_POST 또는 $_GET과 같은 슈퍼글로브에 액세스하지 않고 특수한 컨텍스트"
|
||||||
"에서 실행됩니다."
|
"에서 실행됩니다."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr "에디터 UI에서 값에 대한 액세스 허용"
|
msgstr "에디터 UI에서 값에 대한 액세스 허용"
|
||||||
|
|
@ -103,7 +111,7 @@ msgstr ""
|
||||||
"콘텐츠 편집자가 블록 바인딩 또는 ACF 쇼트코드를 사용하여 편집기 UI에서 필드 "
|
"콘텐츠 편집자가 블록 바인딩 또는 ACF 쇼트코드를 사용하여 편집기 UI에서 필드 "
|
||||||
"값에 액세스하고 표시할 수 있도록 허용합니다. %s"
|
"값에 액세스하고 표시할 수 있도록 허용합니다. %s"
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
|
|
@ -111,7 +119,7 @@ msgstr ""
|
||||||
"요청된 ACF 필드 유형이 블록 바인딩 또는 ACF 쇼트코드의 출력을 지원하지 않습니"
|
"요청된 ACF 필드 유형이 블록 바인딩 또는 ACF 쇼트코드의 출력을 지원하지 않습니"
|
||||||
"다."
|
"다."
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -813,7 +821,7 @@ msgstr "잘못된 요청 인수입니다."
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "죄송합니다. 해당 권한이 없습니다."
|
msgstr "죄송합니다. 해당 권한이 없습니다."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr "포스트 메타를 사용한 블록"
|
msgstr "포스트 메타를 사용한 블록"
|
||||||
|
|
||||||
|
|
@ -1567,183 +1575,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr "아이콘 선택기"
|
msgstr "아이콘 선택기"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr "JSON 로드 경로"
|
msgstr "JSON 로드 경로"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr "JSON 경로 저장"
|
msgstr "JSON 경로 저장"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr "등록된 ACF 양식"
|
msgstr "등록된 ACF 양식"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr "쇼트코드 사용"
|
msgstr "쇼트코드 사용"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr "필드 설정 탭 사용됨"
|
msgstr "필드 설정 탭 사용됨"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr "필드 유형 모달 사용됨"
|
msgstr "필드 유형 모달 사용됨"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr "관리자 UI 활성화됨"
|
msgstr "관리자 UI 활성화됨"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr "블록 사전 로드 활성화됨"
|
msgstr "블록 사전 로드 활성화됨"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr "ACF 블록 버전당 블록 수"
|
msgstr "ACF 블록 버전당 블록 수"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr "API 버전별 블록 수"
|
msgstr "API 버전별 블록 수"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr "등록된 ACF 블록"
|
msgstr "등록된 ACF 블록"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr "Light"
|
msgstr "Light"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr "표준"
|
msgstr "표준"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr "REST API 형식"
|
msgstr "REST API 형식"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr "등록된 옵션 페이지(PHP)"
|
msgstr "등록된 옵션 페이지(PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr "등록된 옵션 페이지(JSON)"
|
msgstr "등록된 옵션 페이지(JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr "등록된 옵션 페이지(UI)"
|
msgstr "등록된 옵션 페이지(UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr "옵션 페이지 UI 활성화됨"
|
msgstr "옵션 페이지 UI 활성화됨"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr "등록된 분류(JSON)"
|
msgstr "등록된 분류(JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr "등록된 분류(UI)"
|
msgstr "등록된 분류(UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr "등록된 글 유형(JSON)"
|
msgstr "등록된 글 유형(JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr "등록된 글 유형(UI)"
|
msgstr "등록된 글 유형(UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr "글 유형 및 분류 사용됨"
|
msgstr "글 유형 및 분류 사용됨"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr "필드 유형별 타사 필드 수"
|
msgstr "필드 유형별 타사 필드 수"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr "필드 유형별 필드 수"
|
msgstr "필드 유형별 필드 수"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr "GraphQL에 사용 가능한 필드 그룹"
|
msgstr "GraphQL에 사용 가능한 필드 그룹"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr "REST API에 필드 그룹 사용 가능"
|
msgstr "REST API에 필드 그룹 사용 가능"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr "등록된 필드 그룹(JSON)"
|
msgstr "등록된 필드 그룹(JSON)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr "등록된 필드 그룹(PHP)"
|
msgstr "등록된 필드 그룹(PHP)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr "등록된 필드 그룹(UI)"
|
msgstr "등록된 필드 그룹(UI)"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr "활성 플러그인"
|
msgstr "활성 플러그인"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr "부모 테마"
|
msgstr "부모 테마"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr "활성 테마"
|
msgstr "활성 테마"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr "다중 사이트임"
|
msgstr "다중 사이트임"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr "MySQL 버전"
|
msgstr "MySQL 버전"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr "워드프레스 버전"
|
msgstr "워드프레스 버전"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr "구독 만료 날짜"
|
msgstr "구독 만료 날짜"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr "라이선스 상태"
|
msgstr "라이선스 상태"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr "라이선스 유형"
|
msgstr "라이선스 유형"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr "라이선스 URL"
|
msgstr "라이선스 URL"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr "라이선스 활성화됨"
|
msgstr "라이선스 활성화됨"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr "무료"
|
msgstr "무료"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr "플러그인 유형"
|
msgstr "플러그인 유형"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr "플러그인 버전"
|
msgstr "플러그인 버전"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1895,7 +1903,7 @@ msgstr "관계가 다음과 같지 않습니다."
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr "관계는 다음과 같습니다."
|
msgstr "관계는 다음과 같습니다."
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "ACF 필드"
|
msgstr "ACF 필드"
|
||||||
|
|
@ -2659,8 +2667,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "복제"
|
msgstr "복제"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "프로"
|
msgstr "프로"
|
||||||
|
|
||||||
|
|
@ -4558,7 +4566,7 @@ msgstr ""
|
||||||
"다. <a href=\"%s\">시작하기</a>."
|
"다. <a href=\"%s\">시작하기</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4886,7 +4894,7 @@ msgstr "이 항목 활성화"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "필드 그룹을 휴지통으로 이동하시겠습니까?"
|
msgstr "필드 그룹을 휴지통으로 이동하시겠습니까?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4899,7 +4907,7 @@ msgstr "비활성"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP 엔진"
|
msgstr "WP 엔진"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4907,7 +4915,7 @@ msgstr ""
|
||||||
"Advanced Custom Fields와 Advanced Custom Fields 프로는 동시에 활성화되어서는 "
|
"Advanced Custom Fields와 Advanced Custom Fields 프로는 동시에 활성화되어서는 "
|
||||||
"안 됩니다. Advanced Custom Fields 프로를 자동으로 비활성화했습니다."
|
"안 됩니다. Advanced Custom Fields 프로를 자동으로 비활성화했습니다."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4915,19 +4923,6 @@ msgstr ""
|
||||||
"Advanced Custom Fields와 Advanced Custom Fields 프로는 동시에 활성화되어서는 "
|
"Advanced Custom Fields와 Advanced Custom Fields 프로는 동시에 활성화되어서는 "
|
||||||
"안 됩니다. Advanced Custom Fields를 자동으로 비활성화했습니다."
|
"안 됩니다. Advanced Custom Fields를 자동으로 비활성화했습니다."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
"<strong>%1$s</strong> - ACF가 초기화되기 전에 ACF 필드 값을 검색하는 호출이 "
|
|
||||||
"하나 이상 감지되었습니다. 이는 지원되지 않으며 잘못된 형식의 데이터 또는 누락"
|
|
||||||
"된 데이터가 발생할 수 있습니다. <a href=\"%2$s\" target=\"_blank\">이 문제를 "
|
|
||||||
"해결하는 방법을 알아보세요</a>."
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -6042,28 +6037,28 @@ msgstr "알려지지 않은"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "필드 유형이 존재하지 않습니다"
|
msgstr "필드 유형이 존재하지 않습니다"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "스팸 감지됨"
|
msgstr "스팸 감지됨"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "글을 업데이트했습니다"
|
msgstr "글을 업데이트했습니다"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "업데이트"
|
msgstr "업데이트"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "이매일 확인하기"
|
msgstr "이매일 확인하기"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "콘텐츠"
|
msgstr "콘텐츠"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "제목"
|
msgstr "제목"
|
||||||
|
|
||||||
|
|
@ -7353,17 +7348,15 @@ msgstr "확인란 옆에 텍스트를 표시합니다."
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "메시지"
|
msgstr "메시지"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "아니요"
|
msgstr "아니요"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "예"
|
msgstr "예"
|
||||||
|
|
||||||
|
|
@ -7502,89 +7495,89 @@ msgid "Time Picker"
|
||||||
msgstr "시간 선택기"
|
msgstr "시간 선택기"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "비활성 <span class=\"count\">(%s)</span>"
|
msgstr[0] "비활성 <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "휴지통에서 필드를 찾을 수 없습니다."
|
msgstr "휴지통에서 필드를 찾을 수 없습니다."
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "필드를 찾을 수 없음"
|
msgstr "필드를 찾을 수 없음"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "필드 검색하기"
|
msgstr "필드 검색하기"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "필드보기"
|
msgstr "필드보기"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "새 필드"
|
msgstr "새 필드"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "필드 편집하기"
|
msgstr "필드 편집하기"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "새로운 필드 추가하기"
|
msgstr "새로운 필드 추가하기"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "필드"
|
msgstr "필드"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "필드"
|
msgstr "필드"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "휴지통에서 필드 그룹을 찾을 수 없습니다."
|
msgstr "휴지통에서 필드 그룹을 찾을 수 없습니다."
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "필드 그룹을 찾을 수 없음"
|
msgstr "필드 그룹을 찾을 수 없음"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "필드 그룹 검색하기"
|
msgstr "필드 그룹 검색하기"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "필드 그룹 보기"
|
msgstr "필드 그룹 보기"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "새 필드 그룹"
|
msgstr "새 필드 그룹"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "필드 그룹 편집하기"
|
msgstr "필드 그룹 편집하기"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "새 필드 그룹 추가하기"
|
msgstr "새 필드 그룹 추가하기"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "새로 추가하기"
|
msgstr "새로 추가하기"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "필드 그룹"
|
msgstr "필드 그룹"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7601,6 +7594,6 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -12,7 +12,7 @@
|
||||||
# This file is distributed under the same license as Advanced Custom Fields.
|
# This file is distributed under the same license as Advanced Custom Fields.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PO-Revision-Date: 2025-04-04T12:09:00+00:00\n"
|
"PO-Revision-Date: 2025-05-08T10:20:52+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: nb_NO\n"
|
"Language: nb_NO\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,22 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:517
|
||||||
|
msgid "Number of Field Groups with Blocks and Other Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:512
|
||||||
|
msgid "Number of Field Groups with Multiple Block Locations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:507
|
||||||
|
msgid "Number of Field Groups with a Single Block Location"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/Site_Health/Site_Health.php:476
|
||||||
|
msgid "All Location Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/validation.php:144
|
#: includes/validation.php:144
|
||||||
msgid "Learn more"
|
msgid "Learn more"
|
||||||
msgstr "Finn ut mer"
|
msgstr "Finn ut mer"
|
||||||
|
|
@ -46,10 +62,6 @@ msgstr ""
|
||||||
msgid "are developed and maintained by"
|
msgid "are developed and maintained by"
|
||||||
msgstr "er utviklet og vedlikeholdt av"
|
msgstr "er utviklet og vedlikeholdt av"
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:291
|
|
||||||
msgid "Update Source"
|
|
||||||
msgstr "Oppdater kilde"
|
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
#: includes/admin/views/acf-post-type/advanced-settings.php:850
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:810
|
||||||
msgid "By default only admin users can edit this setting."
|
msgid "By default only admin users can edit this setting."
|
||||||
|
|
@ -79,10 +91,6 @@ msgid ""
|
||||||
"without access to any superglobals like $_POST or $_GET."
|
"without access to any superglobals like $_POST or $_GET."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:292
|
|
||||||
msgid "wordpress.org"
|
|
||||||
msgstr "wordpress.org"
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field.php:359
|
#: includes/fields/class-acf-field.php:359
|
||||||
msgid "Allow Access to Value in Editor UI"
|
msgid "Allow Access to Value in Editor UI"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -99,13 +107,13 @@ msgid ""
|
||||||
"using Block Bindings or the ACF Shortcode. %s"
|
"using Block Bindings or the ACF Shortcode. %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:64
|
#: src/Blocks/Bindings.php:67
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field type does not support output in Block Bindings or "
|
"The requested ACF field type does not support output in Block Bindings or "
|
||||||
"the ACF shortcode."
|
"the ACF shortcode."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:1085 includes/Blocks/Bindings.php:72
|
#: includes/api/api-template.php:1085 src/Blocks/Bindings.php:75
|
||||||
msgid ""
|
msgid ""
|
||||||
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
"The requested ACF field is not allowed to be output in bindings or the ACF "
|
||||||
"Shortcode."
|
"Shortcode."
|
||||||
|
|
@ -809,7 +817,7 @@ msgstr "Ugyldige argumenter for forespørsel."
|
||||||
msgid "Sorry, you do not have permission to do that."
|
msgid "Sorry, you do not have permission to do that."
|
||||||
msgstr "Beklager, du har ikke rettigheter til å gjøre det."
|
msgstr "Beklager, du har ikke rettigheter til å gjøre det."
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:648
|
#: src/Site_Health/Site_Health.php:715
|
||||||
msgid "Blocks Using Post Meta"
|
msgid "Blocks Using Post Meta"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1558,183 +1566,183 @@ msgstr ""
|
||||||
msgid "Icon Picker"
|
msgid "Icon Picker"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:709
|
#: src/Site_Health/Site_Health.php:776
|
||||||
msgid "JSON Load Paths"
|
msgid "JSON Load Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:703
|
#: src/Site_Health/Site_Health.php:770
|
||||||
msgid "JSON Save Paths"
|
msgid "JSON Save Paths"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:694
|
#: src/Site_Health/Site_Health.php:761
|
||||||
msgid "Registered ACF Forms"
|
msgid "Registered ACF Forms"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:688
|
#: src/Site_Health/Site_Health.php:755
|
||||||
msgid "Shortcode Enabled"
|
msgid "Shortcode Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:680
|
#: src/Site_Health/Site_Health.php:747
|
||||||
msgid "Field Settings Tabs Enabled"
|
msgid "Field Settings Tabs Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:672
|
#: src/Site_Health/Site_Health.php:739
|
||||||
msgid "Field Type Modal Enabled"
|
msgid "Field Type Modal Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:664
|
#: src/Site_Health/Site_Health.php:731
|
||||||
msgid "Admin UI Enabled"
|
msgid "Admin UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:655
|
#: src/Site_Health/Site_Health.php:722
|
||||||
msgid "Block Preloading Enabled"
|
msgid "Block Preloading Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:643
|
#: src/Site_Health/Site_Health.php:710
|
||||||
msgid "Blocks Per ACF Block Version"
|
msgid "Blocks Per ACF Block Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:638
|
#: src/Site_Health/Site_Health.php:705
|
||||||
msgid "Blocks Per API Version"
|
msgid "Blocks Per API Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:611
|
#: src/Site_Health/Site_Health.php:678
|
||||||
msgid "Registered ACF Blocks"
|
msgid "Registered ACF Blocks"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Light"
|
msgid "Light"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:605
|
#: src/Site_Health/Site_Health.php:672
|
||||||
msgid "Standard"
|
msgid "Standard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:604
|
#: src/Site_Health/Site_Health.php:671
|
||||||
msgid "REST API Format"
|
msgid "REST API Format"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:596
|
#: src/Site_Health/Site_Health.php:663
|
||||||
msgid "Registered Options Pages (PHP)"
|
msgid "Registered Options Pages (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:582
|
#: src/Site_Health/Site_Health.php:649
|
||||||
msgid "Registered Options Pages (JSON)"
|
msgid "Registered Options Pages (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:577
|
#: src/Site_Health/Site_Health.php:644
|
||||||
msgid "Registered Options Pages (UI)"
|
msgid "Registered Options Pages (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:547
|
#: src/Site_Health/Site_Health.php:614
|
||||||
msgid "Options Pages UI Enabled"
|
msgid "Options Pages UI Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:539
|
#: src/Site_Health/Site_Health.php:606
|
||||||
msgid "Registered Taxonomies (JSON)"
|
msgid "Registered Taxonomies (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:527
|
#: src/Site_Health/Site_Health.php:594
|
||||||
msgid "Registered Taxonomies (UI)"
|
msgid "Registered Taxonomies (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:515
|
#: src/Site_Health/Site_Health.php:582
|
||||||
msgid "Registered Post Types (JSON)"
|
msgid "Registered Post Types (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:503
|
#: src/Site_Health/Site_Health.php:570
|
||||||
msgid "Registered Post Types (UI)"
|
msgid "Registered Post Types (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:490
|
#: src/Site_Health/Site_Health.php:557
|
||||||
msgid "Post Types and Taxonomies Enabled"
|
msgid "Post Types and Taxonomies Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:483
|
#: src/Site_Health/Site_Health.php:550
|
||||||
msgid "Number of Third Party Fields by Field Type"
|
msgid "Number of Third Party Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:478
|
#: src/Site_Health/Site_Health.php:545
|
||||||
msgid "Number of Fields by Field Type"
|
msgid "Number of Fields by Field Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:445
|
#: src/Site_Health/Site_Health.php:444
|
||||||
msgid "Field Groups Enabled for GraphQL"
|
msgid "Field Groups Enabled for GraphQL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:432
|
#: src/Site_Health/Site_Health.php:431
|
||||||
msgid "Field Groups Enabled for REST API"
|
msgid "Field Groups Enabled for REST API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:420
|
#: src/Site_Health/Site_Health.php:419
|
||||||
msgid "Registered Field Groups (JSON)"
|
msgid "Registered Field Groups (JSON)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:408
|
#: src/Site_Health/Site_Health.php:407
|
||||||
msgid "Registered Field Groups (PHP)"
|
msgid "Registered Field Groups (PHP)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:396
|
#: src/Site_Health/Site_Health.php:395
|
||||||
msgid "Registered Field Groups (UI)"
|
msgid "Registered Field Groups (UI)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:384
|
#: src/Site_Health/Site_Health.php:383
|
||||||
msgid "Active Plugins"
|
msgid "Active Plugins"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:358
|
#: src/Site_Health/Site_Health.php:357
|
||||||
msgid "Parent Theme"
|
msgid "Parent Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:347
|
#: src/Site_Health/Site_Health.php:346
|
||||||
msgid "Active Theme"
|
msgid "Active Theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:338
|
#: src/Site_Health/Site_Health.php:337
|
||||||
msgid "Is Multisite"
|
msgid "Is Multisite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:333
|
#: src/Site_Health/Site_Health.php:332
|
||||||
msgid "MySQL Version"
|
msgid "MySQL Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:328
|
#: src/Site_Health/Site_Health.php:327
|
||||||
msgid "WordPress Version"
|
msgid "WordPress Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:321
|
#: src/Site_Health/Site_Health.php:320
|
||||||
msgid "Subscription Expiry Date"
|
msgid "Subscription Expiry Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:313
|
#: src/Site_Health/Site_Health.php:312
|
||||||
msgid "License Status"
|
msgid "License Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:308
|
#: src/Site_Health/Site_Health.php:307
|
||||||
msgid "License Type"
|
msgid "License Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:303
|
#: src/Site_Health/Site_Health.php:302
|
||||||
msgid "Licensed URL"
|
msgid "Licensed URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:297
|
#: src/Site_Health/Site_Health.php:296
|
||||||
msgid "License Activated"
|
msgid "License Activated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:286
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "Free"
|
msgid "Free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:285
|
#: src/Site_Health/Site_Health.php:289
|
||||||
msgid "Plugin Type"
|
msgid "Plugin Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:280
|
#: src/Site_Health/Site_Health.php:284
|
||||||
msgid "Plugin Version"
|
msgid "Plugin Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/class-acf-site-health.php:251
|
#: src/Site_Health/Site_Health.php:255
|
||||||
msgid ""
|
msgid ""
|
||||||
"This section contains debug information about your ACF configuration which "
|
"This section contains debug information about your ACF configuration which "
|
||||||
"can be useful to provide to support."
|
"can be useful to provide to support."
|
||||||
|
|
@ -1881,7 +1889,7 @@ msgstr ""
|
||||||
msgid "Relationship is equal to"
|
msgid "Relationship is equal to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/Blocks/Bindings.php:35
|
#: src/Blocks/Bindings.php:38
|
||||||
msgctxt "The core ACF block binding source name for fields on the current page"
|
msgctxt "The core ACF block binding source name for fields on the current page"
|
||||||
msgid "ACF Fields"
|
msgid "ACF Fields"
|
||||||
msgstr "ACF-felter"
|
msgstr "ACF-felter"
|
||||||
|
|
@ -2557,8 +2565,8 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klone"
|
msgstr "Klone"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:331
|
||||||
#: includes/class-acf-site-health.php:286 includes/fields.php:331
|
#: src/Site_Health/Site_Health.php:290
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4392,7 +4400,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
#: includes/admin/admin.php:46 includes/admin/admin.php:361
|
||||||
#: includes/class-acf-site-health.php:250
|
#: src/Site_Health/Site_Health.php:254
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -4722,7 +4730,7 @@ msgstr "Aktiver dette elementet"
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Flytte feltgruppe til papirkurven?"
|
msgstr "Flytte feltgruppe til papirkurven?"
|
||||||
|
|
||||||
#: acf.php:504 includes/admin/admin-internal-post-type-list.php:264
|
#: acf.php:519 includes/admin/admin-internal-post-type-list.php:264
|
||||||
#: includes/admin/post-types/admin-field-group.php:304
|
#: includes/admin/post-types/admin-field-group.php:304
|
||||||
#: includes/admin/post-types/admin-post-type.php:282
|
#: includes/admin/post-types/admin-post-type.php:282
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:284
|
#: includes/admin/post-types/admin-taxonomy.php:284
|
||||||
|
|
@ -4735,7 +4743,7 @@ msgstr "Inaktiv"
|
||||||
msgid "WP Engine"
|
msgid "WP Engine"
|
||||||
msgstr "WP Engine"
|
msgstr "WP Engine"
|
||||||
|
|
||||||
#: acf.php:562
|
#: acf.php:577
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
"at the same time. We've automatically deactivated Advanced Custom Fields PRO."
|
||||||
|
|
@ -4743,7 +4751,7 @@ msgstr ""
|
||||||
"Advanced Custom Fields og Advanced Custom Fields PRO bør ikke være aktiverte "
|
"Advanced Custom Fields og Advanced Custom Fields PRO bør ikke være aktiverte "
|
||||||
"samtidig. Vi har automatisk deaktivert Advanced Custom Fields PRO."
|
"samtidig. Vi har automatisk deaktivert Advanced Custom Fields PRO."
|
||||||
|
|
||||||
#: acf.php:560
|
#: acf.php:575
|
||||||
msgid ""
|
msgid ""
|
||||||
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
"Advanced Custom Fields and Advanced Custom Fields PRO should not be active "
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
|
|
@ -4751,15 +4759,6 @@ msgstr ""
|
||||||
"Advanced Custom Fields og Advanced Custom Fields PRO bør ikke være aktiverte "
|
"Advanced Custom Fields og Advanced Custom Fields PRO bør ikke være aktiverte "
|
||||||
"samtidig. Vi har automatisk deaktivert Advanced Custom Fields."
|
"samtidig. Vi har automatisk deaktivert Advanced Custom Fields."
|
||||||
|
|
||||||
#. translators: %1 plugin name, %2 the URL to the documentation on this error
|
|
||||||
#: includes/acf-value-functions.php:376
|
|
||||||
msgid ""
|
|
||||||
"<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>."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:578
|
#: includes/fields/class-acf-field-user.php:578
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
msgid_plural "%1$s must have a user with one of the following roles: %2$s"
|
||||||
|
|
@ -5870,28 +5869,28 @@ msgstr "Ukjent"
|
||||||
msgid "Field type does not exist"
|
msgid "Field type does not exist"
|
||||||
msgstr "Felttype eksisterer ikke"
|
msgstr "Felttype eksisterer ikke"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:217
|
#: includes/forms/form-front.php:220
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam oppdaget"
|
msgstr "Spam oppdaget"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:100
|
#: includes/forms/form-front.php:103
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Innlegg oppdatert"
|
msgstr "Innlegg oppdatert"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:99
|
#: includes/forms/form-front.php:102
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Oppdater"
|
msgstr "Oppdater"
|
||||||
|
|
||||||
#: includes/forms/form-front.php:54
|
#: includes/forms/form-front.php:63
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valider e-post"
|
msgstr "Valider e-post"
|
||||||
|
|
||||||
#: includes/fields.php:326 includes/forms/form-front.php:46
|
#: includes/fields.php:326 includes/forms/form-front.php:55
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Innhold"
|
msgstr "Innhold"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
#: includes/admin/views/acf-post-type/advanced-settings.php:21
|
||||||
#: includes/forms/form-front.php:37
|
#: includes/forms/form-front.php:46
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Tittel"
|
msgstr "Tittel"
|
||||||
|
|
||||||
|
|
@ -7186,17 +7185,15 @@ msgstr "Viser tekst ved siden av avkrysingsboksen"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Melding"
|
msgstr "Melding"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/class-acf-site-health.php:277
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:79
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:79
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:175
|
#: includes/fields/class-acf-field-true_false.php:175
|
||||||
|
#: src/Site_Health/Site_Health.php:281 src/Site_Health/Site_Health.php:338
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nei"
|
msgstr "Nei"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/class-acf-site-health.php:276
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:76
|
||||||
#: includes/class-acf-site-health.php:339
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:76
|
|
||||||
#: includes/fields/class-acf-field-true_false.php:159
|
#: includes/fields/class-acf-field-true_false.php:159
|
||||||
|
#: src/Site_Health/Site_Health.php:280 src/Site_Health/Site_Health.php:338
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ja"
|
msgstr "Ja"
|
||||||
|
|
||||||
|
|
@ -7335,90 +7332,90 @@ msgid "Time Picker"
|
||||||
msgstr "Tidsvelger"
|
msgstr "Tidsvelger"
|
||||||
|
|
||||||
#. translators: counts for inactive field groups
|
#. translators: counts for inactive field groups
|
||||||
#: acf.php:510
|
#: acf.php:525
|
||||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||||
msgstr[0] "Inaktiv <span class=\"count\">(%s)</span>"
|
msgstr[0] "Inaktiv <span class=\"count\">(%s)</span>"
|
||||||
msgstr[1] "Inaktive <span class=\"count\">(%s)</span>"
|
msgstr[1] "Inaktive <span class=\"count\">(%s)</span>"
|
||||||
|
|
||||||
#: acf.php:471
|
#: acf.php:486
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Ingen felt funnet i papirkurven"
|
msgstr "Ingen felt funnet i papirkurven"
|
||||||
|
|
||||||
#: acf.php:470
|
#: acf.php:485
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Ingen felter funnet"
|
msgstr "Ingen felter funnet"
|
||||||
|
|
||||||
#: acf.php:469
|
#: acf.php:484
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Søk felt"
|
msgstr "Søk felt"
|
||||||
|
|
||||||
#: acf.php:468
|
#: acf.php:483
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Vis felt"
|
msgstr "Vis felt"
|
||||||
|
|
||||||
#: acf.php:467 includes/admin/views/acf-field-group/fields.php:113
|
#: acf.php:482 includes/admin/views/acf-field-group/fields.php:113
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Nytt felt"
|
msgstr "Nytt felt"
|
||||||
|
|
||||||
#: acf.php:466
|
#: acf.php:481
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Rediger felt"
|
msgstr "Rediger felt"
|
||||||
|
|
||||||
#: acf.php:465
|
#: acf.php:480
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Legg til nytt felt"
|
msgstr "Legg til nytt felt"
|
||||||
|
|
||||||
#: acf.php:463
|
#: acf.php:478
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Felt"
|
msgstr "Felt"
|
||||||
|
|
||||||
#: acf.php:462 includes/admin/post-types/admin-field-group.php:179
|
#: acf.php:477 includes/admin/post-types/admin-field-group.php:179
|
||||||
#: includes/admin/post-types/admin-field-groups.php:93
|
#: includes/admin/post-types/admin-field-groups.php:93
|
||||||
#: includes/admin/views/acf-field-group/fields.php:32
|
#: includes/admin/views/acf-field-group/fields.php:32
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Felter"
|
msgstr "Felter"
|
||||||
|
|
||||||
#: acf.php:437
|
#: acf.php:452
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Ingen feltgrupper funnet i papirkurven"
|
msgstr "Ingen feltgrupper funnet i papirkurven"
|
||||||
|
|
||||||
#: acf.php:436
|
#: acf.php:451
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Ingen feltgrupper funnet"
|
msgstr "Ingen feltgrupper funnet"
|
||||||
|
|
||||||
#: acf.php:435
|
#: acf.php:450
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Søk feltgrupper"
|
msgstr "Søk feltgrupper"
|
||||||
|
|
||||||
#: acf.php:434
|
#: acf.php:449
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Vis feltgruppe"
|
msgstr "Vis feltgruppe"
|
||||||
|
|
||||||
#: acf.php:433
|
#: acf.php:448
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Ny feltgruppe"
|
msgstr "Ny feltgruppe"
|
||||||
|
|
||||||
#: acf.php:432
|
#: acf.php:447
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Rediger feltgruppe"
|
msgstr "Rediger feltgruppe"
|
||||||
|
|
||||||
#: acf.php:431
|
#: acf.php:446
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Legg til ny feltgruppe"
|
msgstr "Legg til ny feltgruppe"
|
||||||
|
|
||||||
#: acf.php:430 acf.php:464
|
#: acf.php:445 acf.php:479
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
#: includes/admin/views/acf-post-type/advanced-settings.php:224
|
||||||
#: includes/post-types/class-acf-post-type.php:93
|
#: includes/post-types/class-acf-post-type.php:93
|
||||||
#: includes/post-types/class-acf-taxonomy.php:92
|
#: includes/post-types/class-acf-taxonomy.php:92
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Legg til ny"
|
msgstr "Legg til ny"
|
||||||
|
|
||||||
#: acf.php:429
|
#: acf.php:444
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Feltgruppe"
|
msgstr "Feltgruppe"
|
||||||
|
|
||||||
#: acf.php:428 includes/admin/post-types/admin-field-groups.php:55
|
#: acf.php:443 includes/admin/post-types/admin-field-groups.php:55
|
||||||
#: includes/admin/post-types/admin-post-types.php:113
|
#: includes/admin/post-types/admin-post-types.php:113
|
||||||
#: includes/admin/post-types/admin-taxonomies.php:112
|
#: includes/admin/post-types/admin-taxonomies.php:112
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
|
|
@ -7435,7 +7432,7 @@ msgid "https://www.advancedcustomfields.com"
|
||||||
msgstr "https://www.advancedcustomfields.com"
|
msgstr "https://www.advancedcustomfields.com"
|
||||||
|
|
||||||
#. Plugin Name of the plugin
|
#. Plugin Name of the plugin
|
||||||
#: acf.php acf.php:93
|
#: acf.php acf.php:289
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Avanserte egendefinerte felt"
|
msgstr "Avanserte egendefinerte felt"
|
||||||
|
|
||||||
|
|
|
||||||
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
Loading…
Reference in New Issue