Updates to 6.2.6.1
This commit is contained in:
parent
f856221b28
commit
ef46740af7
36
acf.php
36
acf.php
|
|
@ -9,7 +9,7 @@
|
||||||
* 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.2.5
|
* Version: 6.2.6.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.2.5';
|
public $version = '6.2.6.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The plugin settings array.
|
* The plugin settings array.
|
||||||
|
|
@ -90,6 +90,9 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
$this->define( 'ACF_FIELD_API_VERSION', 5 );
|
$this->define( 'ACF_FIELD_API_VERSION', 5 );
|
||||||
$this->define( 'ACF_UPGRADE_VERSION', '5.5.0' ); // Highest version with an upgrade routine. See upgrades.php.
|
$this->define( 'ACF_UPGRADE_VERSION', '5.5.0' ); // Highest version with an upgrade routine. See upgrades.php.
|
||||||
|
|
||||||
|
// Register activation hook.
|
||||||
|
register_activation_hook( __FILE__, array( $this, 'acf_plugin_activated' ) );
|
||||||
|
|
||||||
// Define settings.
|
// Define settings.
|
||||||
$this->settings = array(
|
$this->settings = array(
|
||||||
'name' => __( 'Advanced Custom Fields', 'acf' ),
|
'name' => __( 'Advanced Custom Fields', 'acf' ),
|
||||||
|
|
@ -215,12 +218,6 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
acf_include( 'includes/admin/admin-upgrade.php' );
|
acf_include( 'includes/admin/admin-upgrade.php' );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Include polyfill for < PHP7 unserialize.
|
|
||||||
if ( PHP_VERSION_ID < 70000 ) {
|
|
||||||
acf_include( 'vendor/polyfill-unserialize/src/Unserialize.php' );
|
|
||||||
acf_include( 'vendor/polyfill-unserialize/src/DisallowedClassesSubstitutor.php' );
|
|
||||||
}
|
|
||||||
|
|
||||||
// Include legacy.
|
// Include legacy.
|
||||||
acf_include( 'includes/legacy/legacy-locations.php' );
|
acf_include( 'includes/legacy/legacy-locations.php' );
|
||||||
|
|
||||||
|
|
@ -617,7 +614,7 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
* @date 3/5/17
|
* @date 3/5/17
|
||||||
* @since 5.5.13
|
* @since 5.5.13
|
||||||
*
|
*
|
||||||
* @param string $name The constant name.
|
* @param string $name The constant name.
|
||||||
* @param mixed $value The constant value.
|
* @param mixed $value The constant value.
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
@ -659,7 +656,7 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
* @date 28/09/13
|
* @date 28/09/13
|
||||||
* @since 5.0.0
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @param string $name The setting name.
|
* @param string $name The setting name.
|
||||||
* @param mixed $value The setting value.
|
* @param mixed $value The setting value.
|
||||||
* @return true
|
* @return true
|
||||||
*/
|
*/
|
||||||
|
|
@ -687,7 +684,7 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
* @date 28/09/13
|
* @date 28/09/13
|
||||||
* @since 5.0.0
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @param string $name The data name.
|
* @param string $name The data name.
|
||||||
* @param mixed $value The data value.
|
* @param mixed $value The data value.
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
@ -732,7 +729,7 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
* @since 5.9.0
|
* @since 5.9.0
|
||||||
*
|
*
|
||||||
* @param string $key Key name.
|
* @param string $key Key name.
|
||||||
* @return bool
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
public function __isset( $key ) {
|
public function __isset( $key ) {
|
||||||
return in_array( $key, array( 'locations', 'json' ), true );
|
return in_array( $key, array( 'locations', 'json' ), true );
|
||||||
|
|
@ -756,6 +753,21 @@ if ( ! class_exists( 'ACF' ) ) {
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin Activation Hook
|
||||||
|
*
|
||||||
|
* @since 6.2.6
|
||||||
|
*/
|
||||||
|
public function acf_plugin_activated() {
|
||||||
|
// Set the first activated version of ACF.
|
||||||
|
if ( null === get_option( 'acf_first_activated_version', null ) ) {
|
||||||
|
// If acf_version is set, this isn't the first activated version, so leave it unset so it's legacy.
|
||||||
|
if ( null === get_option( 'acf_version', null ) ) {
|
||||||
|
update_option( 'acf_first_activated_version', ACF_VERSION, true );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1835,7 +1835,8 @@ html[dir=rtl] .acf-field-object.open > .handle {
|
||||||
padding-bottom: 32px;
|
padding-bottom: 32px;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
.acf-field-settings-main .acf-field:last-of-type {
|
.acf-field-settings-main .acf-field:last-of-type,
|
||||||
|
.acf-field-settings-main .acf-field.acf-last-visible {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1934,7 +1934,7 @@ html[dir=rtl] .acf-table > tbody > tr > td.order + td {
|
||||||
margin-bottom: 16px !important;
|
margin-bottom: 16px !important;
|
||||||
margin-left: 0 !important;
|
margin-left: 0 !important;
|
||||||
padding-top: 13px !important;
|
padding-top: 13px !important;
|
||||||
padding-right: 16px !important;
|
padding-right: 16px;
|
||||||
padding-bottom: 12px !important;
|
padding-bottom: 12px !important;
|
||||||
padding-left: 50px !important;
|
padding-left: 50px !important;
|
||||||
background-color: #e7eff9;
|
background-color: #e7eff9;
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -738,16 +738,21 @@ html[dir=rtl] .acf-block-component .acf-block-fields {
|
||||||
.acf-block-body .acf-fields > .acf-field.acf-accordion .acf-accordion-title {
|
.acf-block-body .acf-fields > .acf-field.acf-accordion .acf-accordion-title {
|
||||||
padding: 16px 20px;
|
padding: 16px 20px;
|
||||||
}
|
}
|
||||||
.acf-block-body .acf-button, .acf-block-body .acf-link a.button {
|
.acf-block-body .acf-button, .acf-block-body .acf-link a.button, .acf-block-body .acf-add-checkbox {
|
||||||
color: #2271b1 !important;
|
color: #2271b1 !important;
|
||||||
border-color: #2271b1;
|
border-color: #2271b1 !important;
|
||||||
background: #f6f7f7;
|
background: #f6f7f7 !important;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
.acf-block-body .acf-button.button-primary:hover, .acf-block-body .acf-link a.button.button-primary:hover {
|
.acf-block-body .acf-button.button-primary:hover, .acf-block-body .acf-link a.button.button-primary:hover, .acf-block-body .acf-add-checkbox.button-primary:hover {
|
||||||
color: white !important;
|
color: white !important;
|
||||||
|
background: #2271b1 !important;
|
||||||
}
|
}
|
||||||
.acf-block-body .acf-button:hover, .acf-block-body .acf-link a.button:hover {
|
.acf-block-body .acf-button:focus, .acf-block-body .acf-link a.button:focus, .acf-block-body .acf-add-checkbox:focus {
|
||||||
|
outline: none !important;
|
||||||
|
background: #f6f7f7 !important;
|
||||||
|
}
|
||||||
|
.acf-block-body .acf-button:hover, .acf-block-body .acf-link a.button:hover, .acf-block-body .acf-add-checkbox:hover {
|
||||||
color: #0a4b78 !important;
|
color: #0a4b78 !important;
|
||||||
}
|
}
|
||||||
.acf-block-body .acf-block-preview {
|
.acf-block-body .acf-block-preview {
|
||||||
|
|
|
||||||
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
|
|
@ -1590,7 +1590,7 @@
|
||||||
|
|
||||||
// loop
|
// loop
|
||||||
this.getGroups().map(function (group) {
|
this.getGroups().map(function (group) {
|
||||||
// igrnore this group if another group passed
|
// ignore this group if another group passed
|
||||||
if (pass) return;
|
if (pass) return;
|
||||||
|
|
||||||
// find passed
|
// find passed
|
||||||
|
|
@ -5436,6 +5436,9 @@
|
||||||
if (changed) {
|
if (changed) {
|
||||||
this.prop('hidden', false);
|
this.prop('hidden', false);
|
||||||
acf.doAction('show_field', this, context);
|
acf.doAction('show_field', this, context);
|
||||||
|
if (context === 'conditional_logic') {
|
||||||
|
this.setFieldSettingsLastVisible();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// return
|
// return
|
||||||
|
|
@ -5449,11 +5452,22 @@
|
||||||
if (changed) {
|
if (changed) {
|
||||||
this.prop('hidden', true);
|
this.prop('hidden', true);
|
||||||
acf.doAction('hide_field', this, context);
|
acf.doAction('hide_field', this, context);
|
||||||
|
if (context === 'conditional_logic') {
|
||||||
|
this.setFieldSettingsLastVisible();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// return
|
// return
|
||||||
return changed;
|
return changed;
|
||||||
},
|
},
|
||||||
|
setFieldSettingsLastVisible: function () {
|
||||||
|
// Ensure this conditional logic trigger has happened inside a field settings tab.
|
||||||
|
var $parents = this.$el.parents('.acf-field-settings-main');
|
||||||
|
if (!$parents.length) return;
|
||||||
|
var $fields = $parents.find('.acf-field');
|
||||||
|
$fields.removeClass('acf-last-visible');
|
||||||
|
$fields.not('.acf-hidden').last().addClass('acf-last-visible');
|
||||||
|
},
|
||||||
enable: function (lockKey, context) {
|
enable: function (lockKey, context) {
|
||||||
// enable field and store result
|
// enable field and store result
|
||||||
var changed = acf.enable(this.$el, lockKey);
|
var changed = acf.enable(this.$el, lockKey);
|
||||||
|
|
@ -6058,6 +6072,13 @@
|
||||||
onChange: function () {
|
onChange: function () {
|
||||||
// preview hack allows post to save with no title or content
|
// preview hack allows post to save with no title or content
|
||||||
$('#_acf_changed').val(1);
|
$('#_acf_changed').val(1);
|
||||||
|
if (acf.isGutenbergPostEditor()) {
|
||||||
|
wp.data.dispatch('core/editor').editPost({
|
||||||
|
meta: {
|
||||||
|
_acf_changed: 1
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
var duplicateFieldsManager = new acf.Model({
|
var duplicateFieldsManager = new acf.Model({
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -53,14 +53,7 @@
|
||||||
getPopupHTML: function () {
|
getPopupHTML: function () {
|
||||||
var html = this.$popup().html();
|
var html = this.$popup().html();
|
||||||
var $html = $(html);
|
var $html = $(html);
|
||||||
|
var self = this;
|
||||||
// count layouts
|
|
||||||
var $layouts = this.$layouts();
|
|
||||||
var countLayouts = function (name) {
|
|
||||||
return $layouts.filter(function () {
|
|
||||||
return $(this).data('layout') === name;
|
|
||||||
}).length;
|
|
||||||
};
|
|
||||||
|
|
||||||
// modify popup
|
// modify popup
|
||||||
$html.find('[data-layout]').each(function () {
|
$html.find('[data-layout]').each(function () {
|
||||||
|
|
@ -68,7 +61,7 @@
|
||||||
var min = $a.data('min') || 0;
|
var min = $a.data('min') || 0;
|
||||||
var max = $a.data('max') || 0;
|
var max = $a.data('max') || 0;
|
||||||
var name = $a.data('layout') || '';
|
var name = $a.data('layout') || '';
|
||||||
var count = countLayouts(name);
|
var count = self.countLayouts(name);
|
||||||
|
|
||||||
// max
|
// max
|
||||||
if (max && count >= max) {
|
if (max && count >= max) {
|
||||||
|
|
@ -199,6 +192,33 @@
|
||||||
// - this is just for fields like google_map to render itself
|
// - this is just for fields like google_map to render itself
|
||||||
acf.doAction('show_fields', fields);
|
acf.doAction('show_fields', fields);
|
||||||
},
|
},
|
||||||
|
countLayouts: function (name) {
|
||||||
|
return this.$layouts().filter(function () {
|
||||||
|
return $(this).data('layout') === name;
|
||||||
|
}).length;
|
||||||
|
},
|
||||||
|
countLayoutsByName: function (currentLayout) {
|
||||||
|
const layoutMax = currentLayout.data('max');
|
||||||
|
if (!layoutMax) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
const name = currentLayout.data('layout') || '';
|
||||||
|
const count = this.countLayouts(name);
|
||||||
|
if (count >= layoutMax) {
|
||||||
|
let text = acf.__('This field has a limit of {max} {label} {identifier}');
|
||||||
|
const identifier = acf._n('layout', 'layouts', layoutMax);
|
||||||
|
const layoutLabel = '"' + currentLayout.data('label') + '"';
|
||||||
|
text = text.replace('{max}', layoutMax);
|
||||||
|
text = text.replace('{label}', layoutLabel);
|
||||||
|
text = text.replace('{identifier}', identifier);
|
||||||
|
this.showNotice({
|
||||||
|
text: text,
|
||||||
|
type: 'warning'
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
},
|
||||||
validateAdd: function () {
|
validateAdd: function () {
|
||||||
// return true if allowed
|
// return true if allowed
|
||||||
if (this.allowAdd()) {
|
if (this.allowAdd()) {
|
||||||
|
|
@ -207,13 +227,9 @@
|
||||||
var max = this.get('max');
|
var max = this.get('max');
|
||||||
var text = acf.__('This field has a limit of {max} {label} {identifier}');
|
var text = acf.__('This field has a limit of {max} {label} {identifier}');
|
||||||
var identifier = acf._n('layout', 'layouts', max);
|
var identifier = acf._n('layout', 'layouts', max);
|
||||||
|
|
||||||
// replace
|
|
||||||
text = text.replace('{max}', max);
|
text = text.replace('{max}', max);
|
||||||
text = text.replace('{label}', '');
|
text = text.replace('{label}', '');
|
||||||
text = text.replace('{identifier}', identifier);
|
text = text.replace('{identifier}', identifier);
|
||||||
|
|
||||||
// add notice
|
|
||||||
this.showNotice({
|
this.showNotice({
|
||||||
text: text,
|
text: text,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
|
|
@ -297,13 +313,18 @@
|
||||||
return $el;
|
return $el;
|
||||||
},
|
},
|
||||||
onClickDuplicate: function (e, $el) {
|
onClickDuplicate: function (e, $el) {
|
||||||
|
var $layout = $el.closest('.layout');
|
||||||
|
// Validate each layout's max count.
|
||||||
|
if (!this.countLayoutsByName($layout.first())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Validate with warning.
|
// Validate with warning.
|
||||||
if (!this.validateAdd()) {
|
if (!this.validateAdd()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// get layout and duplicate it.
|
// get layout and duplicate it.
|
||||||
var $layout = $el.closest('.layout');
|
|
||||||
this.duplicateLayout($layout);
|
this.duplicateLayout($layout);
|
||||||
},
|
},
|
||||||
duplicateLayout: function ($layout) {
|
duplicateLayout: function ($layout) {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -659,11 +659,7 @@ function acf_sanitize_files_value_array( $array, $sanitize_function ) {
|
||||||
*/
|
*/
|
||||||
function acf_maybe_unserialize( $data ) {
|
function acf_maybe_unserialize( $data ) {
|
||||||
if ( is_serialized( $data ) ) { // Don't attempt to unserialize data that wasn't serialized going in.
|
if ( is_serialized( $data ) ) { // Don't attempt to unserialize data that wasn't serialized going in.
|
||||||
if ( PHP_VERSION_ID >= 70000 ) {
|
return @unserialize( trim( $data ), array( 'allowed_classes' => false ) ); //phpcs:ignore -- allowed classes is false.
|
||||||
return @unserialize( trim( $data ), array( 'allowed_classes' => false ) ); //phpcs:ignore -- code only runs on PHP7+
|
|
||||||
} else {
|
|
||||||
return @\ACF\Brumann\Polyfill\unserialize::unserialize( trim( $data ), array( 'allowed_classes' => false ) );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
|
|
|
||||||
|
|
@ -130,16 +130,15 @@ function acf_get_value( $post_id, $field ) {
|
||||||
acf_add_filter_variations( 'acf/load_value', array( 'type', 'name', 'key' ), 2 );
|
acf_add_filter_variations( 'acf/load_value', array( 'type', 'name', 'key' ), 2 );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* acf_format_value
|
|
||||||
*
|
|
||||||
* Returns a formatted version of the provided value.
|
* Returns a formatted version of the provided value.
|
||||||
*
|
*
|
||||||
* @since 5.0.0
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @param mixed $value The field value.
|
* @param mixed $value The field value.
|
||||||
* @param integer|string $post_id The post id.
|
* @param integer|string $post_id The post id.
|
||||||
* @param array $field The field array.
|
* @param array $field The field array.
|
||||||
* @param boolean $escape_html Ask the field for a HTML safe version of it's output.
|
* @param boolean $escape_html Ask the field for a HTML safe version of it's output.
|
||||||
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
function acf_format_value( $value, $post_id, $field, $escape_html = false ) {
|
function acf_format_value( $value, $post_id, $field, $escape_html = false ) {
|
||||||
|
|
@ -169,7 +168,6 @@ function acf_format_value( $value, $post_id, $field, $escape_html = false ) {
|
||||||
* @param string $post_id The post ID for this value.
|
* @param string $post_id The post ID for this value.
|
||||||
* @param array $field The field array.
|
* @param array $field The field array.
|
||||||
* @param boolean $escape_html Ask the field for a HTML safe version of it's output.
|
* @param boolean $escape_html Ask the field for a HTML safe version of it's output.
|
||||||
* This parameter will not guarantee the result is escaped, only if the field type supports it.
|
|
||||||
*/
|
*/
|
||||||
$value = apply_filters( 'acf/format_value', $value, $post_id, $field, $escape_html );
|
$value = apply_filters( 'acf/format_value', $value, $post_id, $field, $escape_html );
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,9 @@ if ( ! class_exists( 'ACF_Admin_Internal_Post_Type_List' ) ) :
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function get_admin_url( $params = '' ) {
|
public function get_admin_url( $params = '' ) {
|
||||||
|
if ( isset( $_GET['paged'] ) ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended -- used as intval to return a page.
|
||||||
|
$params .= '&paged=' . intval( $_GET['paged'] ); //phpcs:ignore WordPress.Security.NonceVerification.Recommended -- used as intval to return a page.
|
||||||
|
}
|
||||||
return admin_url( "edit.php?post_type={$this->post_type}{$params}" );
|
return admin_url( "edit.php?post_type={$this->post_type}{$params}" );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,8 +63,8 @@ if ( ! class_exists( 'ACF_Admin' ) ) :
|
||||||
'acf_escaped_html_notice',
|
'acf_escaped_html_notice',
|
||||||
array(
|
array(
|
||||||
'nonce' => wp_create_nonce( 'acf/dismiss_escaped_html_notice' ),
|
'nonce' => wp_create_nonce( 'acf/dismiss_escaped_html_notice' ),
|
||||||
'show_details' => __( 'Show details', 'acf' ),
|
'show_details' => __( 'Show details', 'acf' ),
|
||||||
'hide_details' => __( 'Hide details', 'acf' ),
|
'hide_details' => __( 'Hide details', 'acf' ),
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,9 +21,11 @@ if ( isset( $field['endpoint'] ) && $field['endpoint'] ) {
|
||||||
$div_attrs['class'] .= ' acf-field-is-endpoint';
|
$div_attrs['class'] .= ' acf-field-is-endpoint';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Misc template vars.
|
// Misc template vars.
|
||||||
$field_label = acf_get_field_label( $field, 'admin' );
|
$field_label = acf_get_field_label( $field, 'admin' );
|
||||||
$field_type_label = acf_get_field_type_label( $field['type'] );
|
$field_type_label = acf_get_field_type_label( $field['type'] );
|
||||||
|
$field_type_supports = acf_get_field_type_prop( $field['type'], 'supports' );
|
||||||
|
|
||||||
if ( acf_is_pro() && acf_get_field_type_prop( $field['type'], 'pro' ) && ! acf_pro_is_license_active() ) {
|
if ( acf_is_pro() && acf_get_field_type_prop( $field['type'], 'pro' ) && ! acf_pro_is_license_active() ) {
|
||||||
$field_type_label .= '<span class="acf-pro-label acf-pro-label-field-type">PRO</span>';
|
$field_type_label .= '<span class="acf-pro-label acf-pro-label-field-type">PRO</span>';
|
||||||
|
|
@ -189,20 +191,6 @@ if ( isset( $field['conditional_logic'] ) && is_array( $field['conditional_logic
|
||||||
<?php
|
<?php
|
||||||
break;
|
break;
|
||||||
case 'validation':
|
case 'validation':
|
||||||
// required
|
|
||||||
acf_render_field_setting(
|
|
||||||
$field,
|
|
||||||
array(
|
|
||||||
'label' => __( 'Required', 'acf' ),
|
|
||||||
'instructions' => '',
|
|
||||||
'type' => 'true_false',
|
|
||||||
'name' => 'required',
|
|
||||||
'ui' => 1,
|
|
||||||
'class' => 'field-required',
|
|
||||||
),
|
|
||||||
true
|
|
||||||
);
|
|
||||||
|
|
||||||
do_action( "acf/field_group/render_field_settings_tab/{$tab_key}", $field );
|
do_action( "acf/field_group/render_field_settings_tab/{$tab_key}", $field );
|
||||||
?>
|
?>
|
||||||
<div class="acf-field-type-settings" data-parent-tab="<?php echo esc_attr( $tab_key ); ?>">
|
<div class="acf-field-type-settings" data-parent-tab="<?php echo esc_attr( $tab_key ); ?>">
|
||||||
|
|
|
||||||
|
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
$acf_plugin_name = acf_is_pro() ? 'ACF PRO' : 'ACF';
|
$acf_plugin_name = acf_is_pro() ? 'ACF PRO' : 'ACF';
|
||||||
$acf_plugin_name = '<strong>' . $acf_plugin_name . ' —</strong>';
|
$acf_plugin_name = '<strong>' . $acf_plugin_name . ' —</strong>';
|
||||||
$acf_learn_how_to_fix = '<a href="' . acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/escaping-the-field/', 'docs', '6-2-5-security-changes' ) . '" target="_blank">' . __( 'Learn how to fix', 'acf' ) . '</a>';
|
$acf_learn_how_to_fix = '<a href="' . acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/escaping-the-field/', 'docs', '6-2-5-security-changes' ) . '" target="_blank">' . __( 'Learn more', 'acf' ) . '</a>';
|
||||||
$acf_class = '';
|
$acf_class = '';
|
||||||
$acf_user_can_acf = false;
|
$acf_user_can_acf = false;
|
||||||
|
|
||||||
if ( current_user_can( acf_get_setting( 'capability' ) ) ) {
|
if ( current_user_can( acf_get_setting( 'capability' ) ) ) {
|
||||||
$acf_user_can_acf = true;
|
$acf_user_can_acf = true;
|
||||||
$acf_show_details = ' <a class="acf-show-more-details" href="#">' . __( 'Show details', 'acf' ) . '</a>';
|
$acf_show_details = ' <a class="acf-show-more-details" href="#">' . __( 'Show details', 'acf' ) . '</a>';
|
||||||
$acf_class = ' is-dismissible';
|
$acf_class = ' is-dismissible';
|
||||||
} else {
|
} else {
|
||||||
$acf_show_details = __( 'Please contact your site admin for more details.', 'acf' );
|
$acf_show_details = __( 'Please contact your site administrator or developer for more details.', 'acf' );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! empty( $acf_will_escape ) ) {
|
if ( ! empty( $acf_will_escape ) ) {
|
||||||
|
|
@ -19,7 +19,7 @@ if ( ! empty( $acf_will_escape ) ) {
|
||||||
$acf_class .= ' notice-warning acf-will-escape';
|
$acf_class .= ' notice-warning acf-will-escape';
|
||||||
$acf_error_msg = sprintf(
|
$acf_error_msg = sprintf(
|
||||||
/* translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. %3$s - Link to show more details about the error */
|
/* translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. %3$s - Link to show more details about the error */
|
||||||
__( '%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</code>. We\'ve detected the output of some of your fields will be modified by this change. %2$s. %3$s', 'acf' ),
|
__( '%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</code>. We\'ve detected the output of some of your fields will be modified by this change, but this may not be a breaking change. %2$s. %3$s.', 'acf' ),
|
||||||
$acf_plugin_name,
|
$acf_plugin_name,
|
||||||
$acf_learn_how_to_fix,
|
$acf_learn_how_to_fix,
|
||||||
$acf_show_details
|
$acf_show_details
|
||||||
|
|
@ -30,7 +30,7 @@ if ( ! empty( $acf_will_escape ) ) {
|
||||||
if ( apply_filters( 'acf/the_field/escape_html_optin', false ) ) {
|
if ( apply_filters( 'acf/the_field/escape_html_optin', false ) ) {
|
||||||
$acf_error_msg = sprintf(
|
$acf_error_msg = sprintf(
|
||||||
/* translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. %3$s - Link to show more details about the error */
|
/* translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. %3$s - Link to show more details about the error */
|
||||||
__( '%1$s ACF now automatically escapes unsafe HTML when rendered by <code>the_field</code> or the ACF shortcode. We\'ve detected the output of some of your fields will be modified by this change. %2$s. %3$s', 'acf' ),
|
__( '%1$s ACF now automatically escapes unsafe HTML when rendered by <code>the_field</code> or the ACF shortcode. We\'ve detected the output of some of your fields has been modified by this change, but this may not be a breaking change. %2$s. %3$s.', 'acf' ),
|
||||||
$acf_plugin_name,
|
$acf_plugin_name,
|
||||||
$acf_learn_how_to_fix,
|
$acf_learn_how_to_fix,
|
||||||
$acf_show_details
|
$acf_show_details
|
||||||
|
|
@ -38,7 +38,7 @@ if ( ! empty( $acf_will_escape ) ) {
|
||||||
} else {
|
} else {
|
||||||
$acf_error_msg = sprintf(
|
$acf_error_msg = sprintf(
|
||||||
/* translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. %3$s - Link to show more details about the error */
|
/* translators: %1$s - name of the ACF plugin. %2$s - Link to documentation. %3$s - Link to show more details about the error */
|
||||||
__( '%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF shortcode. We\'ve detected the output of some of your fields will be modified by this change. %2$s. %3$s', 'acf' ),
|
__( '%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF shortcode. We\'ve detected the output of some of your fields has been modified by this change, but this may not be a breaking change. %2$s. %3$s.', 'acf' ),
|
||||||
$acf_plugin_name,
|
$acf_plugin_name,
|
||||||
$acf_learn_how_to_fix,
|
$acf_learn_how_to_fix,
|
||||||
$acf_show_details
|
$acf_show_details
|
||||||
|
|
|
||||||
|
|
@ -3939,7 +3939,7 @@ function acf_is_block_editor() {
|
||||||
* @return array The WordPress reserved terms list.
|
* @return array The WordPress reserved terms list.
|
||||||
*/
|
*/
|
||||||
function acf_get_wp_reserved_terms() {
|
function acf_get_wp_reserved_terms() {
|
||||||
return array( 'action', 'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and', 'category__in', 'category__not_in', 'category_name', 'comments_per_page', 'comments_popup', 'custom', 'customize_messenger_channel', 'customized', 'cpage', 'day', 'debug', 'embed', 'error', 'exact', 'feed', 'fields', 'hour', 'link_category', 'm', 'minute', 'monthnum', 'more', 'name', 'nav_menu', 'nonce', 'nopaging', 'offset', 'order', 'orderby', 'p', 'page', 'page_id', 'paged', 'pagename', 'pb', 'perm', 'post', 'post__in', 'post__not_in', 'post_format', 'post_mime_type', 'post_status', 'post_tag', 'post_type', 'posts', 'posts_per_archive_page', 'posts_per_page', 'preview', 'robots', 's', 'search', 'second', 'sentence', 'showposts', 'static', 'status', 'subpost', 'subpost_id', 'tag', 'tag__and', 'tag__in', 'tag__not_in', 'tag_id', 'tag_slug__and', 'tag_slug__in', 'taxonomy', 'tb', 'term', 'terms', 'theme', 'title', 'type', 'types', 'w', 'withcomments', 'withoutcomments', 'year' );
|
return array( 'action', 'attachment', 'attachment_id', 'author', 'author_name', 'calendar', 'cat', 'category', 'category__and', 'category__in', 'category__not_in', 'category_name', 'comments_per_page', 'comments_popup', 'custom', 'customize_messenger_channel', 'customized', 'cpage', 'day', 'debug', 'embed', 'error', 'exact', 'feed', 'fields', 'hour', 'link', 'link_category', 'm', 'minute', 'monthnum', 'more', 'name', 'nav_menu', 'nonce', 'nopaging', 'offset', 'order', 'orderby', 'p', 'page', 'page_id', 'paged', 'pagename', 'pb', 'perm', 'post', 'post__in', 'post__not_in', 'post_format', 'post_mime_type', 'post_status', 'post_tag', 'post_type', 'posts', 'posts_per_archive_page', 'posts_per_page', 'preview', 'robots', 's', 'search', 'second', 'sentence', 'showposts', 'static', 'status', 'subpost', 'subpost_id', 'tag', 'tag__and', 'tag__in', 'tag__not_in', 'tag_id', 'tag_slug__and', 'tag_slug__in', 'taxonomy', 'tb', 'term', 'terms', 'theme', 'title', 'type', 'types', 'w', 'withcomments', 'withoutcomments', 'year' );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -324,17 +324,18 @@ function acf_get_field_type_label( $name = '' ) {
|
||||||
*
|
*
|
||||||
* @since 6.2.5
|
* @since 6.2.5
|
||||||
*
|
*
|
||||||
* @param string $name The name of the field type.
|
* @param string $name The name of the field type.
|
||||||
* @param string $prop The name of the supports property.
|
* @param string $prop The name of the supports property.
|
||||||
|
* @param mixed $default The default value if the property is not set.
|
||||||
*
|
*
|
||||||
* @return mixed The value of the supports property which may be false, or false on failure.
|
* @return mixed The value of the supports property which may be false, or $default on failure.
|
||||||
*/
|
*/
|
||||||
function acf_field_type_supports( $name = '', $prop = '' ) {
|
function acf_field_type_supports( $name = '', $prop = '', $default = false ) {
|
||||||
$supports = acf_get_field_type_prop( $name, 'supports' );
|
$supports = acf_get_field_type_prop( $name, 'supports' );
|
||||||
if ( ! is_array( $supports ) ) {
|
if ( ! is_array( $supports ) ) {
|
||||||
return false;
|
return $default;
|
||||||
}
|
}
|
||||||
return isset( $supports[ $prop ] ) ? $supports[ $prop ] : false;
|
return isset( $supports[ $prop ] ) ? $supports[ $prop ] : $default;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@ if ( ! class_exists( 'acf_field__accordion' ) ) :
|
||||||
$this->description = __( 'Allows you to group and organize custom fields into collapsable panels that are shown while editing content. Useful for keeping large datasets tidy.', 'acf' );
|
$this->description = __( 'Allows you to group and organize custom fields into collapsable panels that are shown while editing content. Useful for keeping large datasets tidy.', 'acf' );
|
||||||
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-accordion.png';
|
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-accordion.png';
|
||||||
$this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/accordion/', 'docs', 'field-type-selection' );
|
$this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/accordion/', 'docs', 'field-type-selection' );
|
||||||
|
$this->supports = array( 'required' => false );
|
||||||
$this->defaults = array(
|
$this->defaults = array(
|
||||||
'open' => 0,
|
'open' => 0,
|
||||||
'multi_expand' => 0,
|
'multi_expand' => 0,
|
||||||
|
|
|
||||||
|
|
@ -27,6 +27,7 @@ if ( ! class_exists( 'acf_field_message' ) ) :
|
||||||
$this->category = 'layout';
|
$this->category = 'layout';
|
||||||
$this->description = __( 'Used to display a message to editors alongside other fields. Useful for providing additional context or instructions around your fields.', 'acf' );
|
$this->description = __( 'Used to display a message to editors alongside other fields. Useful for providing additional context or instructions around your fields.', 'acf' );
|
||||||
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-message.png';
|
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-message.png';
|
||||||
|
$this->supports = array( 'required' => false );
|
||||||
$this->defaults = array(
|
$this->defaults = array(
|
||||||
'message' => '',
|
'message' => '',
|
||||||
'esc_html' => 0,
|
'esc_html' => 0,
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@ if ( ! class_exists( 'acf_field_separator' ) ) :
|
||||||
$this->name = 'separator';
|
$this->name = 'separator';
|
||||||
$this->label = __( 'Separator', 'acf' );
|
$this->label = __( 'Separator', 'acf' );
|
||||||
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-separator.png';
|
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-separator.png';
|
||||||
|
$this->supports = array( 'required' => false );
|
||||||
$this->category = 'layout';
|
$this->category = 'layout';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ if ( ! class_exists( 'acf_field_tab' ) ) :
|
||||||
$this->description = __( 'Allows you to group fields into tabbed sections in the edit screen. Useful for keeping fields organized and structured.', 'acf' );
|
$this->description = __( 'Allows you to group fields into tabbed sections in the edit screen. Useful for keeping fields organized and structured.', 'acf' );
|
||||||
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-tabs.png';
|
$this->preview_image = acf_get_url() . '/assets/images/field-type-previews/field-preview-tabs.png';
|
||||||
$this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/tab/', 'docs', 'field-type-selection' );
|
$this->doc_url = acf_add_url_utm_tags( 'https://www.advancedcustomfields.com/resources/tab/', 'docs', 'field-type-selection' );
|
||||||
|
$this->supports = array( 'required' => false );
|
||||||
$this->defaults = array(
|
$this->defaults = array(
|
||||||
'placement' => 'top',
|
'placement' => 'top',
|
||||||
'endpoint' => 0, // added in 5.2.8
|
'endpoint' => 0, // added in 5.2.8
|
||||||
|
|
|
||||||
|
|
@ -2,24 +2,18 @@
|
||||||
|
|
||||||
if ( ! class_exists( 'acf_field_url' ) ) :
|
if ( ! class_exists( 'acf_field_url' ) ) :
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The URL field class.
|
||||||
|
*/
|
||||||
class acf_field_url extends acf_field {
|
class acf_field_url extends acf_field {
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* initialize
|
* This function will setup the field type data
|
||||||
*
|
*
|
||||||
* This function will setup the field type data
|
* @since 5.0.0
|
||||||
*
|
*/
|
||||||
* @type function
|
public function initialize() {
|
||||||
* @date 5/03/2014
|
|
||||||
* @since 5.0.0
|
|
||||||
*
|
|
||||||
* @param n/a
|
|
||||||
* @return n/a
|
|
||||||
*/
|
|
||||||
|
|
||||||
function initialize() {
|
|
||||||
|
|
||||||
// vars
|
// vars
|
||||||
$this->name = 'url';
|
$this->name = 'url';
|
||||||
$this->label = __( 'URL', 'acf' );
|
$this->label = __( 'URL', 'acf' );
|
||||||
|
|
@ -30,24 +24,20 @@ if ( ! class_exists( 'acf_field_url' ) ) :
|
||||||
'default_value' => '',
|
'default_value' => '',
|
||||||
'placeholder' => '',
|
'placeholder' => '',
|
||||||
);
|
);
|
||||||
|
$this->supports = array(
|
||||||
|
'escaping_html' => true,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* render_field()
|
* Create the HTML interface for your field
|
||||||
*
|
*
|
||||||
* Create the HTML interface for your field
|
* @since 3.6
|
||||||
*
|
*
|
||||||
* @param $field - an array holding all the field's data
|
* @param array $field An array holding all the field's data.
|
||||||
*
|
*/
|
||||||
* @type action
|
public function render_field( $field ) {
|
||||||
* @since 3.6
|
|
||||||
* @date 23/01/13
|
|
||||||
*/
|
|
||||||
|
|
||||||
function render_field( $field ) {
|
|
||||||
|
|
||||||
// vars
|
|
||||||
$atts = array();
|
$atts = array();
|
||||||
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'pattern' );
|
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'pattern' );
|
||||||
$keys2 = array( 'readonly', 'disabled', 'required' );
|
$keys2 = array( 'readonly', 'disabled', 'required' );
|
||||||
|
|
@ -80,19 +70,15 @@ if ( ! class_exists( 'acf_field_url' ) ) :
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* render_field_settings()
|
* Create extra options for your field. This is rendered when editing a field.
|
||||||
*
|
* The value of $field['name'] can be used (like bellow) to save extra data to the $field
|
||||||
* Create extra options for your field. This is rendered when editing a field.
|
*
|
||||||
* The value of $field['name'] can be used (like bellow) to save extra data to the $field
|
* @since 3.6
|
||||||
*
|
*
|
||||||
* @type action
|
* @param array $field An array holding all the field's data.
|
||||||
* @since 3.6
|
*/
|
||||||
* @date 23/01/13
|
public function render_field_settings( $field ) {
|
||||||
*
|
|
||||||
* @param $field - an array holding all the field's data
|
|
||||||
*/
|
|
||||||
function render_field_settings( $field ) {
|
|
||||||
acf_render_field_setting(
|
acf_render_field_setting(
|
||||||
$field,
|
$field,
|
||||||
array(
|
array(
|
||||||
|
|
@ -112,7 +98,7 @@ if ( ! class_exists( 'acf_field_url' ) ) :
|
||||||
* @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(
|
||||||
|
|
@ -125,20 +111,19 @@ if ( ! class_exists( 'acf_field_url' ) ) :
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* validate_value
|
* Validate the fields value is correctly formatted as a URL
|
||||||
*
|
*
|
||||||
* description
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @type function
|
* @param mixed $valid The current validity of the field value. Boolean true if valid, a validation error message string if not.
|
||||||
* @date 11/02/2014
|
* @param string $value The value of the field.
|
||||||
* @since 5.0.0
|
* @param array $field Field object array.
|
||||||
*
|
* @param string $input The form input name for this field.
|
||||||
* @param $post_id (int)
|
*
|
||||||
* @return $post_id (int)
|
* @return mixed Boolean true if valid, a validation error message string if not.
|
||||||
*/
|
*/
|
||||||
|
public function validate_value( $valid, $value, $field, $input ) {
|
||||||
function validate_value( $valid, $value, $field, $input ) {
|
|
||||||
|
|
||||||
// bail early if empty
|
// bail early if empty
|
||||||
if ( empty( $value ) ) {
|
if ( empty( $value ) ) {
|
||||||
|
|
@ -159,10 +144,30 @@ if ( ! class_exists( 'acf_field_url' ) ) :
|
||||||
return $valid;
|
return $valid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This filter is applied to the $value after it is loaded from the db, and before it is returned to the template
|
||||||
|
*
|
||||||
|
* @since 6.2.6
|
||||||
|
*
|
||||||
|
* @param mixed $value The value which was loaded from the database.
|
||||||
|
* @param mixed $post_id The $post_id from which the value was loaded.
|
||||||
|
* @param array $field The field array holding all the field options.
|
||||||
|
* @param boolean $escape_html Should the field return a HTML safe formatted value.
|
||||||
|
*
|
||||||
|
* @return mixed $value The modified value
|
||||||
|
*/
|
||||||
|
public function format_value( $value, $post_id, $field, $escape_html ) {
|
||||||
|
if ( $escape_html ) {
|
||||||
|
return esc_url( $value );
|
||||||
|
}
|
||||||
|
return $value;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the schema array for the REST API.
|
* Return the schema array for the REST API.
|
||||||
*
|
*
|
||||||
* @param array $field
|
* @param array $field The field object.
|
||||||
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function get_rest_schema( array $field ) {
|
public function get_rest_schema( array $field ) {
|
||||||
|
|
|
||||||
|
|
@ -19,27 +19,22 @@ if ( ! class_exists( 'acf_field' ) ) :
|
||||||
public $show_in_rest = true;
|
public $show_in_rest = true;
|
||||||
public $supports = array(
|
public $supports = array(
|
||||||
'escaping_html' => false, // Set true when a field handles its own HTML escaping in format_value
|
'escaping_html' => false, // Set true when a field handles its own HTML escaping in format_value
|
||||||
|
'required' => true,
|
||||||
);
|
);
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* __construct
|
* Initializes the `acf_field` class. To initialize a field type that is
|
||||||
*
|
* extending this class, use the `initialize()` method in the child class instead.
|
||||||
* This function will initialize the field type
|
*
|
||||||
*
|
* @since 5.0.0
|
||||||
* @type function
|
*
|
||||||
* @date 5/03/2014
|
* @return void
|
||||||
* @since 5.0.0
|
*/
|
||||||
*
|
public function __construct() {
|
||||||
* @param n/a
|
// Initialize the field type.
|
||||||
* @return n/a
|
|
||||||
*/
|
|
||||||
|
|
||||||
function __construct() {
|
|
||||||
|
|
||||||
// initialize
|
|
||||||
$this->initialize();
|
$this->initialize();
|
||||||
|
|
||||||
// register info
|
// Register info about the field type.
|
||||||
acf_register_field_type_info(
|
acf_register_field_type_info(
|
||||||
array(
|
array(
|
||||||
'label' => $this->label,
|
'label' => $this->label,
|
||||||
|
|
@ -85,206 +80,155 @@ if ( ! class_exists( 'acf_field' ) ) :
|
||||||
$this->add_action( 'acf/field_group/admin_head', array( $this, 'field_group_admin_head' ), 10, 0 );
|
$this->add_action( 'acf/field_group/admin_head', array( $this, 'field_group_admin_head' ), 10, 0 );
|
||||||
$this->add_action( 'acf/field_group/admin_footer', array( $this, 'field_group_admin_footer' ), 10, 0 );
|
$this->add_action( 'acf/field_group/admin_footer', array( $this, 'field_group_admin_footer' ), 10, 0 );
|
||||||
|
|
||||||
|
// Most fields can use the "Required" validation setting as well as most presentation settings.
|
||||||
|
$this->add_field_action( 'acf/field_group/render_field_settings_tab/validation', array( $this, 'render_required_setting' ), 5 );
|
||||||
|
|
||||||
foreach ( acf_get_combined_field_type_settings_tabs() as $tab_key => $tab_label ) {
|
foreach ( acf_get_combined_field_type_settings_tabs() as $tab_key => $tab_label ) {
|
||||||
$this->add_field_action( "acf/field_group/render_field_settings_tab/{$tab_key}", array( $this, "render_field_{$tab_key}_settings" ), 9, 1 );
|
$this->add_field_action( "acf/field_group/render_field_settings_tab/{$tab_key}", array( $this, "render_field_{$tab_key}_settings" ), 9, 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Initializes the field type. Overridden in child classes.
|
||||||
* initialize
|
*
|
||||||
*
|
* @since 5.6.0
|
||||||
* This function will initialize the field type
|
*
|
||||||
*
|
* @return void
|
||||||
* @type function
|
*/
|
||||||
* @date 27/6/17
|
public function initialize() {
|
||||||
* @since 5.6.0
|
|
||||||
*
|
|
||||||
* @param n/a
|
|
||||||
* @return n/a
|
|
||||||
*/
|
|
||||||
|
|
||||||
function initialize() {
|
|
||||||
|
|
||||||
/* do nothing */
|
/* do nothing */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Checks a function `is_callable()` before adding the filter, since
|
||||||
* add_filter
|
* classes that extend `acf_field` might not implement all filters.
|
||||||
*
|
*
|
||||||
* This function checks if the function is_callable before adding the filter
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @type function
|
* @param string $tag The name of the filter to add the callback to.
|
||||||
* @date 5/03/2014
|
* @param string $function_to_add The callback to be run when the filter is applied.
|
||||||
* @since 5.0.0
|
* @param integer $priority The priority to add the filter on.
|
||||||
*
|
* @param integer $accepted_args The number of args to pass to the function.
|
||||||
* @param $tag (string)
|
* @return void
|
||||||
* @param $function_to_add (string)
|
*/
|
||||||
* @param $priority (int)
|
public function add_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
||||||
* @param $accepted_args (int)
|
// Bail early if not callable.
|
||||||
* @return n/a
|
|
||||||
*/
|
|
||||||
|
|
||||||
function add_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
|
||||||
|
|
||||||
// bail early if no callable
|
|
||||||
if ( ! is_callable( $function_to_add ) ) {
|
if ( ! is_callable( $function_to_add ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// add
|
|
||||||
add_filter( $tag, $function_to_add, $priority, $accepted_args );
|
add_filter( $tag, $function_to_add, $priority, $accepted_args );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Adds a filter specific to the current field type.
|
||||||
* add_field_filter
|
*
|
||||||
*
|
* @since 5.4.0
|
||||||
* This function will add a field type specific filter
|
*
|
||||||
*
|
* @param string $tag The name of the filter to add the callback to.
|
||||||
* @type function
|
* @param string $function_to_add The callback to be run when the filter is applied.
|
||||||
* @date 29/09/2016
|
* @param integer $priority The priority to add the filter on.
|
||||||
* @since 5.4.0
|
* @param integer $accepted_args The number of args to pass to the function.
|
||||||
*
|
* @return void
|
||||||
* @param $tag (string)
|
*/
|
||||||
* @param $function_to_add (string)
|
public function add_field_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
||||||
* @param $priority (int)
|
// Append the field type name to the tag before adding the filter.
|
||||||
* @param $accepted_args (int)
|
|
||||||
* @return n/a
|
|
||||||
*/
|
|
||||||
|
|
||||||
function add_field_filter( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
|
||||||
|
|
||||||
// append
|
|
||||||
$tag .= '/type=' . $this->name;
|
$tag .= '/type=' . $this->name;
|
||||||
|
|
||||||
// add
|
|
||||||
$this->add_filter( $tag, $function_to_add, $priority, $accepted_args );
|
$this->add_filter( $tag, $function_to_add, $priority, $accepted_args );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Checks a function `is_callable()` before adding the action, since
|
||||||
* add_action
|
* classes that extend `acf_field` might not implement all actions.
|
||||||
*
|
*
|
||||||
* This function checks if the function is_callable before adding the action
|
* @since 5.0.0
|
||||||
*
|
*
|
||||||
* @type function
|
* @param string $tag The name of the action to add the callback to.
|
||||||
* @date 5/03/2014
|
* @param string $function_to_add The callback to be run when the action is ran.
|
||||||
* @since 5.0.0
|
* @param integer $priority The priority to add the action on.
|
||||||
*
|
* @param integer $accepted_args The number of args to pass to the function.
|
||||||
* @param $tag (string)
|
* @return void
|
||||||
* @param $function_to_add (string)
|
*/
|
||||||
* @param $priority (int)
|
public function add_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
||||||
* @param $accepted_args (int)
|
// Bail early if not callable
|
||||||
* @return n/a
|
|
||||||
*/
|
|
||||||
|
|
||||||
function add_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
|
||||||
|
|
||||||
// bail early if no callable
|
|
||||||
if ( ! is_callable( $function_to_add ) ) {
|
if ( ! is_callable( $function_to_add ) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// add
|
|
||||||
add_action( $tag, $function_to_add, $priority, $accepted_args );
|
add_action( $tag, $function_to_add, $priority, $accepted_args );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Adds an action specific to the current field type.
|
||||||
* add_field_action
|
*
|
||||||
*
|
* @since 5.4.0
|
||||||
* This function will add a field type specific filter
|
*
|
||||||
*
|
* @param string $tag The name of the action to add the callback to.
|
||||||
* @type function
|
* @param string $function_to_add The callback to be run when the action is ran.
|
||||||
* @date 29/09/2016
|
* @param integer $priority The priority to add the action on.
|
||||||
* @since 5.4.0
|
* @param integer $accepted_args The number of args to pass to the function.
|
||||||
*
|
* @return void
|
||||||
* @param $tag (string)
|
*/
|
||||||
* @param $function_to_add (string)
|
public function add_field_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
||||||
* @param $priority (int)
|
// Append the field type name to the tag before adding the action.
|
||||||
* @param $accepted_args (int)
|
|
||||||
* @return n/a
|
|
||||||
*/
|
|
||||||
|
|
||||||
function add_field_action( $tag = '', $function_to_add = '', $priority = 10, $accepted_args = 1 ) {
|
|
||||||
|
|
||||||
// append
|
|
||||||
$tag .= '/type=' . $this->name;
|
$tag .= '/type=' . $this->name;
|
||||||
|
|
||||||
// add
|
|
||||||
$this->add_action( $tag, $function_to_add, $priority, $accepted_args );
|
$this->add_action( $tag, $function_to_add, $priority, $accepted_args );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Appends default settings to a field.
|
||||||
* validate_field
|
* Runs on `acf/validate_field/type={$this->name}`.
|
||||||
*
|
*
|
||||||
* This function will append default settings to a field
|
* @since 3.6
|
||||||
*
|
*
|
||||||
* @type filter ("acf/validate_field/type={$this->name}")
|
* @param array $field The field array.
|
||||||
* @since 3.6
|
* @return array $field
|
||||||
* @date 23/01/13
|
*/
|
||||||
*
|
public function validate_field( $field ) {
|
||||||
* @param $field (array)
|
// Bail early if no defaults.
|
||||||
* @return $field (array)
|
|
||||||
*/
|
|
||||||
|
|
||||||
function validate_field( $field ) {
|
|
||||||
|
|
||||||
// bail early if no defaults
|
|
||||||
if ( ! is_array( $this->defaults ) ) {
|
if ( ! is_array( $this->defaults ) ) {
|
||||||
return $field;
|
return $field;
|
||||||
}
|
}
|
||||||
|
|
||||||
// merge in defaults but keep order of $field keys
|
// Merge in defaults but keep order of $field keys.
|
||||||
foreach ( $this->defaults as $k => $v ) {
|
foreach ( $this->defaults as $k => $v ) {
|
||||||
if ( ! isset( $field[ $k ] ) ) {
|
if ( ! isset( $field[ $k ] ) ) {
|
||||||
$field[ $k ] = $v;
|
$field[ $k ] = $v;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// return
|
|
||||||
return $field;
|
return $field;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Append l10n text translations to an array which is later passed to JS.
|
||||||
* admin_l10n
|
* Runs on `acf/input/admin_l10n`.
|
||||||
*
|
*
|
||||||
* This function will append l10n text translations to an array which is later passed to JS
|
* @since 3.6
|
||||||
*
|
*
|
||||||
* @type filter ("acf/input/admin_l10n")
|
* @param array $l10n
|
||||||
* @since 3.6
|
* @return array $l10n
|
||||||
* @date 23/01/13
|
*/
|
||||||
*
|
public function input_admin_l10n( $l10n ) {
|
||||||
* @param $l10n (array)
|
// Bail early if no defaults.
|
||||||
* @return $l10n (array)
|
|
||||||
*/
|
|
||||||
|
|
||||||
function input_admin_l10n( $l10n ) {
|
|
||||||
|
|
||||||
// bail early if no defaults
|
|
||||||
if ( empty( $this->l10n ) ) {
|
if ( empty( $this->l10n ) ) {
|
||||||
return $l10n;
|
return $l10n;
|
||||||
}
|
}
|
||||||
|
|
||||||
// append
|
// Append.
|
||||||
$l10n[ $this->name ] = $this->l10n;
|
$l10n[ $this->name ] = $this->l10n;
|
||||||
|
|
||||||
// return
|
|
||||||
return $l10n;
|
return $l10n;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add additional validation for fields being updated via the REST API.
|
* Add additional validation for fields being updated via the REST API.
|
||||||
*
|
*
|
||||||
* @param bool $valid
|
* @param boolean $valid
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param array $field
|
* @param array $field
|
||||||
*
|
*
|
||||||
* @return bool|WP_Error
|
* @return boolean|WP
|
||||||
*/
|
*/
|
||||||
public function validate_rest_value( $valid, $value, $field ) {
|
public function validate_rest_value( $valid, $value, $field ) {
|
||||||
return $valid;
|
return $valid;
|
||||||
|
|
@ -329,9 +273,9 @@ if ( ! class_exists( 'acf_field' ) ) :
|
||||||
* ],
|
* ],
|
||||||
* ]
|
* ]
|
||||||
*
|
*
|
||||||
* @param mixed $value The raw (unformatted) field value.
|
* @param mixed $value The raw (unformatted) field value.
|
||||||
* @param string|int $post_id
|
* @param string|integer $post_id
|
||||||
* @param array $field
|
* @param array $field
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function get_rest_links( $value, $post_id, array $field ) {
|
public function get_rest_links( $value, $post_id, array $field ) {
|
||||||
|
|
@ -341,14 +285,44 @@ if ( ! class_exists( 'acf_field' ) ) :
|
||||||
/**
|
/**
|
||||||
* Apply basic formatting to prepare the value for default REST output.
|
* Apply basic formatting to prepare the value for default REST output.
|
||||||
*
|
*
|
||||||
* @param mixed $value
|
* @param mixed $value
|
||||||
* @param string|int $post_id
|
* @param string|integer $post_id
|
||||||
* @param array $field
|
* @param array $field
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function format_value_for_rest( $value, $post_id, array $field ) {
|
public function format_value_for_rest( $value, $post_id, array $field ) {
|
||||||
return $value;
|
return $value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Renders the "Required" setting on the field type "Validation" settings tab.
|
||||||
|
*
|
||||||
|
* @since 6.2.5
|
||||||
|
*
|
||||||
|
* @param array $field The field type being rendered.
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function render_required_setting( $field ) {
|
||||||
|
$supports_required = acf_field_type_supports( $field['type'], 'required', true );
|
||||||
|
|
||||||
|
// Only prevent rendering if explicitly disabled.
|
||||||
|
if ( ! $supports_required ) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
acf_render_field_setting(
|
||||||
|
$field,
|
||||||
|
array(
|
||||||
|
'label' => __( 'Required', 'acf' ),
|
||||||
|
'instructions' => '',
|
||||||
|
'type' => 'true_false',
|
||||||
|
'name' => 'required',
|
||||||
|
'ui' => 1,
|
||||||
|
'class' => 'field-required',
|
||||||
|
),
|
||||||
|
true
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
endif; // class_exists check
|
endif; // class_exists check
|
||||||
|
|
|
||||||
|
|
@ -289,50 +289,41 @@ if ( ! class_exists( 'ACF_Form_Post' ) ) :
|
||||||
return $allow;
|
return $allow;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* save_post
|
* Triggers during the 'save_post' action to save the $_POST data.
|
||||||
*
|
*
|
||||||
* Triggers during the 'save_post' action to save the $_POST data.
|
* @since 1.0.0
|
||||||
*
|
*
|
||||||
* @type function
|
* @param integer $post_id The post ID.
|
||||||
* @date 23/06/12
|
* @param WP_Post $post The post object.
|
||||||
* @since 1.0.0
|
* @return integer
|
||||||
*
|
*/
|
||||||
* @param int $post_id The post ID
|
public function save_post( $post_id, $post ) {
|
||||||
* @param WP_POST $post the post object.
|
// Bail early if not allowed to save this post type.
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
|
|
||||||
function save_post( $post_id, $post ) {
|
|
||||||
|
|
||||||
// bail early if no allowed to save this post type
|
|
||||||
if ( ! $this->allow_save_post( $post ) ) {
|
if ( ! $this->allow_save_post( $post ) ) {
|
||||||
return $post_id;
|
return $post_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
// verify nonce
|
// Verify nonce.
|
||||||
if ( ! acf_verify_nonce( 'post' ) ) {
|
if ( ! acf_verify_nonce( 'post' ) ) {
|
||||||
return $post_id;
|
return $post_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
// validate for published post (allow draft to save without validation)
|
// Validate for published post (allow draft to save without validation).
|
||||||
if ( $post->post_status == 'publish' ) {
|
if ( $post->post_status === 'publish' ) {
|
||||||
|
// Bail early if validation fails.
|
||||||
// bail early if validation fails
|
|
||||||
if ( ! acf_validate_save_post() ) {
|
if ( ! acf_validate_save_post() ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// save
|
|
||||||
acf_save_post( $post_id );
|
acf_save_post( $post_id );
|
||||||
|
|
||||||
// save revision
|
// We handle revisions differently on WP 6.4+.
|
||||||
if ( post_type_supports( $post->post_type, 'revisions' ) ) {
|
if ( version_compare( get_bloginfo( 'version' ), '6.4', '<' ) && post_type_supports( $post->post_type, 'revisions' ) ) {
|
||||||
acf_save_post_revision( $post_id );
|
acf_save_post_revision( $post_id );
|
||||||
}
|
}
|
||||||
|
|
||||||
// return
|
|
||||||
return $post_id;
|
return $post_id;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,31 +11,109 @@ if ( ! class_exists( 'acf_revisions' ) ) :
|
||||||
// vars
|
// vars
|
||||||
var $cache = array();
|
var $cache = array();
|
||||||
|
|
||||||
|
/**
|
||||||
/*
|
* Constructs the acf_revisions class.
|
||||||
* __construct
|
*
|
||||||
*
|
* @return void
|
||||||
* A good place to add actions / filters
|
*/
|
||||||
*
|
public function __construct() {
|
||||||
* @type function
|
|
||||||
* @date 11/08/13
|
|
||||||
*
|
|
||||||
* @param N/A
|
|
||||||
* @return N/A
|
|
||||||
*/
|
|
||||||
|
|
||||||
function __construct() {
|
|
||||||
|
|
||||||
// actions
|
|
||||||
add_action( 'wp_restore_post_revision', array( $this, 'wp_restore_post_revision' ), 10, 2 );
|
add_action( 'wp_restore_post_revision', array( $this, 'wp_restore_post_revision' ), 10, 2 );
|
||||||
|
|
||||||
// filters
|
|
||||||
add_filter( 'wp_save_post_revision_check_for_changes', array( $this, 'wp_save_post_revision_check_for_changes' ), 10, 3 );
|
|
||||||
add_filter( '_wp_post_revision_fields', array( $this, 'wp_preview_post_fields' ), 10, 2 );
|
add_filter( '_wp_post_revision_fields', array( $this, 'wp_preview_post_fields' ), 10, 2 );
|
||||||
add_filter( '_wp_post_revision_fields', array( $this, 'wp_post_revision_fields' ), 10, 2 );
|
add_filter( '_wp_post_revision_fields', array( $this, 'wp_post_revision_fields' ), 10, 2 );
|
||||||
add_filter( 'acf/validate_post_id', array( $this, 'acf_validate_post_id' ), 10, 2 );
|
add_filter( 'acf/validate_post_id', array( $this, 'acf_validate_post_id' ), 10, 2 );
|
||||||
|
|
||||||
|
// WP 6.4+ handles things differently.
|
||||||
|
if ( version_compare( get_bloginfo( 'version' ), '6.4', '>=' ) ) {
|
||||||
|
add_action( '_wp_put_post_revision', array( $this, 'maybe_save_revision' ), 10, 2 );
|
||||||
|
add_filter( 'wp_save_post_revision_post_has_changed', array( $this, 'check_acf_fields_have_changed' ), 9, 3 );
|
||||||
|
add_filter( 'wp_post_revision_meta_keys', array( $this, 'wp_post_revision_meta_keys' ) );
|
||||||
|
|
||||||
|
$this->register_meta();
|
||||||
|
} else {
|
||||||
|
add_filter( 'wp_save_post_revision_check_for_changes', array( $this, 'wp_save_post_revision_check_for_changes' ), 10, 3 );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers any ACF meta that should be sent the REST/Gutenberg request.
|
||||||
|
* For now, this is just our "_acf_changed" key that we use to detect if ACF fields have changed.
|
||||||
|
*
|
||||||
|
* @since 6.2.6
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function register_meta() {
|
||||||
|
register_meta(
|
||||||
|
'post',
|
||||||
|
'_acf_changed',
|
||||||
|
array(
|
||||||
|
'type' => 'boolean',
|
||||||
|
'single' => true,
|
||||||
|
'show_in_rest' => true,
|
||||||
|
'revisions_enabled' => true,
|
||||||
|
'auth_callback' => '__return_true',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lets WordPress know which meta keys to include in revisions.
|
||||||
|
* For now, this is just our "_acf_changed" key, as we still handle revisions ourselves.
|
||||||
|
*
|
||||||
|
* @since 6.2.6
|
||||||
|
*
|
||||||
|
* @param array $keys The meta keys that should be revisioned.
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function wp_post_revision_meta_keys( $keys ) {
|
||||||
|
$keys[] = '_acf_changed';
|
||||||
|
return $keys;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helps WordPress determine if fields have changed, and if in a legacy
|
||||||
|
* metabox AJAX request, copies the metadata to the new revision.
|
||||||
|
*
|
||||||
|
* @since 6.2.6
|
||||||
|
*
|
||||||
|
* @param boolean $post_has_changed True if the post has changed, false if not.
|
||||||
|
* @param WP_Post $last_revision The WP_Post object for the latest revision.
|
||||||
|
* @param WP_Post $post The WP_Post object for the parent post.
|
||||||
|
* @return boolean
|
||||||
|
*/
|
||||||
|
public function check_acf_fields_have_changed( $post_has_changed, $last_revision, $post ) {
|
||||||
|
if ( acf_maybe_get_GET( 'meta-box-loader', false ) ) {
|
||||||
|
// We're in a legacy AJAX request, so we copy fields over to the latest revision.
|
||||||
|
$this->maybe_save_revision( $last_revision->ID, $post->ID );
|
||||||
|
} elseif ( acf_maybe_get_POST( '_acf_changed', false ) ) {
|
||||||
|
// We're in a classic editor save request, so notify WP that fields have changed.
|
||||||
|
$post_has_changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Let WordPress decide for REST/block editor requests.
|
||||||
|
return $post_has_changed;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copies ACF field data to the latest revision.
|
||||||
|
*
|
||||||
|
* @since 6.2.6
|
||||||
|
*
|
||||||
|
* @param integer $revision_id The ID of the revision that was just created.
|
||||||
|
* @param integer $post_id The ID of the post being updated.
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function maybe_save_revision( $revision_id, $post_id ) {
|
||||||
|
// We don't have anything to copy over yet.
|
||||||
|
if ( ! did_action( 'acf/save_post' ) ) {
|
||||||
|
delete_metadata( 'post', $post_id, '_acf_changed' );
|
||||||
|
delete_metadata( 'post', $revision_id, '_acf_changed' );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Copy the saved meta from the main post to the latest revision.
|
||||||
|
acf_save_post_revision( $post_id );
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* wp_preview_post_fields
|
* wp_preview_post_fields
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -77,17 +77,17 @@ msgstr "تم تحديث الإعدادات"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>."
|
#| "<a href=\"%s\">details & pricing</a>."
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"لتمكين التحديثات، الرجاء إدخال مفتاح الترخيص الخاص بك على صفحة <a href=\"%s"
|
"لتمكين التحديثات، الرجاء إدخال مفتاح الترخيص الخاص بك على صفحة <a "
|
||||||
"\">التحديثات</a> . إذا لم يكن لديك مفتاح ترخيص، يرجى الاطلاع على <a href=\"%s"
|
"href=\"%s\">التحديثات</a> . إذا لم يكن لديك مفتاح ترخيص، يرجى الاطلاع على <a "
|
||||||
"\">التفاصيل والتسعير</a>."
|
"href=\"%s\">التفاصيل والتسعير</a>."
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -132,8 +132,8 @@ msgid ""
|
||||||
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
||||||
"Custom Field Group</a>"
|
"Custom Field Group</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"لم يتم العثور على أية \"مجموعات حقول مخصصة لصفحة الخيارات هذة. <a href=\"%s"
|
"لم يتم العثور على أية \"مجموعات حقول مخصصة لصفحة الخيارات هذة. <a "
|
||||||
"\">أنشئ مجموعة حقول مخصصة</a>"
|
"href=\"%s\">أنشئ مجموعة حقول مخصصة</a>"
|
||||||
|
|
||||||
#: pro/admin/admin-options-page.php:309
|
#: pro/admin/admin-options-page.php:309
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -78,9 +78,9 @@ msgstr "Опциите бяха актуализирани"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"За да включите обновяванията, моля въведете вашия ключ за лиценз на "
|
"За да включите обновяванията, моля въведете вашия ключ за лиценз на "
|
||||||
"страницата за <a href=\"%s\">Актуализации</a>. Ако нямате ключ за лиценз, "
|
"страницата за <a href=\"%s\">Актуализации</a>. Ако нямате ключ за лиценз, "
|
||||||
|
|
@ -130,8 +130,8 @@ msgid ""
|
||||||
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
||||||
"Custom Field Group</a>"
|
"Custom Field Group</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Няма намерени групи полета за тази страница с опции. <a href=\"%s"
|
"Няма намерени групи полета за тази страница с опции. <a "
|
||||||
"\">Създаване на група полета</a>"
|
"href=\"%s\">Създаване на група полета</a>"
|
||||||
|
|
||||||
#: pro/admin/admin-options-page.php:309
|
#: pro/admin/admin-options-page.php:309
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
|
|
@ -743,8 +743,8 @@ msgid ""
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"За да включите обновяванията, моля въведете вашия ключ за лиценз долу. Ако "
|
"За да включите обновяванията, моля въведете вашия ключ за лиценз долу. Ако "
|
||||||
"нямате ключ за лиценз, моля посетете <a href=\"%s\" target=\"_blank"
|
"нямате ключ за лиценз, моля посетете <a href=\"%s\" "
|
||||||
"\">детайли и цени</a>"
|
"target=\"_blank\">детайли и цени</a>"
|
||||||
|
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
msgid "License Key"
|
msgid "License Key"
|
||||||
|
|
|
||||||
BIN
lang/acf-ca.mo
BIN
lang/acf-ca.mo
Binary file not shown.
301
lang/acf-ca.po
301
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr "Renova la llicència ACF PRO"
|
msgstr "Renova la llicència ACF PRO"
|
||||||
|
|
@ -106,26 +155,26 @@ msgid "Add fields"
|
||||||
msgstr "Afegeix camps"
|
msgstr "Afegeix camps"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "Aquest camp"
|
msgstr "Aquest camp"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Opinions"
|
msgstr "Opinions"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Suport"
|
msgstr "Suport"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "és desenvolupat i mantingut per"
|
msgstr "és desenvolupat i mantingut per"
|
||||||
|
|
||||||
|
|
@ -146,8 +195,8 @@ msgstr ""
|
||||||
"Activar el paràmetre bidireccional permet actualitzar un valor als camps de "
|
"Activar el paràmetre bidireccional permet actualitzar un valor als camps de "
|
||||||
"destinació per cada valor seleccionat per aquest camp, afegint o suprimint "
|
"destinació per cada valor seleccionat per aquest camp, afegint o suprimint "
|
||||||
"l'ID d'entrada, l'ID de taxonomia o l'ID d'usuari de l'element que s'està "
|
"l'ID d'entrada, l'ID de taxonomia o l'ID d'usuari de l'element que s'està "
|
||||||
"actualitzant. Per a més informació, llegeix la <a href=\"%s\" target=\"_blank"
|
"actualitzant. Per a més informació, llegeix la <a href=\"%s\" "
|
||||||
"\">documentació</a>."
|
"target=\"_blank\">documentació</a>."
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:248
|
#: includes/acf-bidirectional-functions.php:248
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -675,7 +724,7 @@ msgstr ""
|
||||||
"es mostren mentre editeu el contingut. Útil per mantenir ordenats grans "
|
"es mostren mentre editeu el contingut. Útil per mantenir ordenats grans "
|
||||||
"conjunts de dades."
|
"conjunts de dades."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -685,7 +734,7 @@ msgstr ""
|
||||||
"membres de l'equip i fitxes de crida d'acció, actuant com a pare d'un "
|
"membres de l'equip i fitxes de crida d'acció, actuant com a pare d'un "
|
||||||
"conjunt de subcamps que es poden repetir una i altra vegada."
|
"conjunt de subcamps que es poden repetir una i altra vegada."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -698,7 +747,7 @@ msgstr ""
|
||||||
"fitxers adjunts a la galeria i el nombre mínim/màxim de fitxers adjunts "
|
"fitxers adjunts a la galeria i el nombre mínim/màxim de fitxers adjunts "
|
||||||
"permesos."
|
"permesos."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
|
|
@ -709,7 +758,7 @@ msgstr ""
|
||||||
"control total mitjançant l'ús de dissenys i subcamps per dissenyar els blocs "
|
"control total mitjançant l'ús de dissenys i subcamps per dissenyar els blocs "
|
||||||
"disponibles."
|
"disponibles."
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -721,16 +770,16 @@ msgstr ""
|
||||||
"d'execució. El camp Clonar pot substituir-se amb els camps seleccionats o "
|
"d'execució. El camp Clonar pot substituir-se amb els camps seleccionats o "
|
||||||
"mostrar els camps seleccionats com un grup de subcamps."
|
"mostrar els camps seleccionats com un grup de subcamps."
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clona"
|
msgstr "Clona"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avançat"
|
msgstr "Avançat"
|
||||||
|
|
||||||
|
|
@ -2718,14 +2767,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Tipus de contingut suprimit."
|
msgstr "Tipus de contingut suprimit."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Tecleja per cercar..."
|
msgstr "Tecleja per cercar..."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2738,7 +2787,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Grups de camps enllaçats correctament."
|
msgstr "Grups de camps enllaçats correctament."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2746,7 +2795,7 @@ msgstr ""
|
||||||
"Importa tipus de contingut i taxonomies registrades amb Custom Post Type UI "
|
"Importa tipus de contingut i taxonomies registrades amb Custom Post Type UI "
|
||||||
"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:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2835,7 +2884,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[Valor del codi de substitució d'ACF desactivat a la previsualització]"
|
msgstr "[Valor del codi de substitució d'ACF desactivat a la previsualització]"
|
||||||
|
|
||||||
|
|
@ -2845,7 +2894,7 @@ msgid "Close Modal"
|
||||||
msgstr "Tanca la finestra emergent"
|
msgstr "Tanca la finestra emergent"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Camp mogut a un altre grup"
|
msgstr "Camp mogut a un altre grup"
|
||||||
|
|
@ -2924,8 +2973,8 @@ msgid ""
|
||||||
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||||
"started guide</a>."
|
"started guide</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sou nou a l'ACF? Feu una ullada a la nostra <a href=\"%s\" target=\"_blank"
|
"Sou nou a l'ACF? Feu una ullada a la nostra <a href=\"%s\" "
|
||||||
"\">guia d'inici</a>."
|
"target=\"_blank\">guia d'inici</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/list-empty.php:15
|
#: includes/admin/views/acf-field-group/list-empty.php:15
|
||||||
msgid "Add Field Group"
|
msgid "Add Field Group"
|
||||||
|
|
@ -3023,16 +3072,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Afegeix un camp"
|
msgstr "Afegeix un camp"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Presentació"
|
msgstr "Presentació"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validació"
|
msgstr "Validació"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "General"
|
msgstr "General"
|
||||||
|
|
||||||
|
|
@ -3077,7 +3126,7 @@ msgid "Activate this item"
|
||||||
msgstr "Activa aquest element"
|
msgstr "Activa aquest element"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
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?"
|
||||||
|
|
@ -3111,17 +3160,17 @@ 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."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - hem detectat una o més crides per recuperar valors "
|
"<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 "
|
"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"
|
"lloc a dades malformades o que faltin. <a href=\"%2$s\" "
|
||||||
"\">Obteniu informació sobre com solucionar-ho</a>."
|
"target=\"_blank\">Obteniu informació sobre com solucionar-ho</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3311,23 +3360,23 @@ msgstr "S'està carregant el diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisa els canvis JSON locals"
|
msgstr "Revisa els canvis JSON locals"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visiteu el lloc web"
|
msgstr "Visiteu el lloc web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Visualitza els detalls"
|
msgstr "Visualitza els detalls"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versió %s"
|
msgstr "Versió %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informació"
|
msgstr "Informació"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3335,7 +3384,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Servei d'ajuda</a>. Els professionals de "
|
"<a href=\"%s\" target=\"_blank\">Servei d'ajuda</a>. Els professionals de "
|
||||||
"suport al servei d'ajuda us ajudaran amb els problemes tècnics més profunds."
|
"suport al servei d'ajuda us ajudaran amb els problemes tècnics més profunds."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3345,7 +3394,7 @@ msgstr ""
|
||||||
"amistosa als nostres fòrums comunitaris que pot ajudar-vos a descobrir com "
|
"amistosa als nostres fòrums comunitaris que pot ajudar-vos a descobrir com "
|
||||||
"es fan les coses al món de l'ACF."
|
"es fan les coses al món de l'ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3355,7 +3404,7 @@ msgstr ""
|
||||||
"documentació conté referències i guies per a la majoria de situacions que "
|
"documentació conté referències i guies per a la majoria de situacions que "
|
||||||
"podeu trobar."
|
"podeu trobar."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3365,11 +3414,11 @@ msgstr ""
|
||||||
"web amb l'ACF. Si trobeu alguna dificultat, hi ha diversos llocs on podeu "
|
"web amb l'ACF. Si trobeu alguna dificultat, hi ha diversos llocs on podeu "
|
||||||
"trobar ajuda:"
|
"trobar ajuda:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ajuda i suport"
|
msgstr "Ajuda i suport"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3377,7 +3426,7 @@ msgstr ""
|
||||||
"Utilitzeu la pestanya d'ajuda i suport per posar-vos en contacte amb "
|
"Utilitzeu la pestanya d'ajuda i suport per posar-vos en contacte amb "
|
||||||
"nosaltres si necessiteu ajuda."
|
"nosaltres si necessiteu ajuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3387,7 +3436,7 @@ msgstr ""
|
||||||
"nostra guia <a href=\"%s\" target=\"_blank\">Primers passos</a> per "
|
"nostra guia <a href=\"%s\" target=\"_blank\">Primers passos</a> per "
|
||||||
"familiaritzar-vos amb la filosofia i les millors pràctiques de l'extensió."
|
"familiaritzar-vos amb la filosofia i les millors pràctiques de l'extensió."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3398,7 +3447,7 @@ msgstr ""
|
||||||
"addicionals i una API intuïtiva per mostrar els valors dels camps "
|
"addicionals i una API intuïtiva per mostrar els valors dels camps "
|
||||||
"personalitzats en qualsevol fitxer de plantilla de tema."
|
"personalitzats en qualsevol fitxer de plantilla de tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resum"
|
msgstr "Resum"
|
||||||
|
|
||||||
|
|
@ -3418,7 +3467,7 @@ msgstr "El nonce no és vàlid."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error en carregar el camp."
|
msgstr "Error en carregar el camp."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "No s'ha trobat la ubicació: %s"
|
msgstr "No s'ha trobat la ubicació: %s"
|
||||||
|
|
@ -3566,7 +3615,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostra aquest camp si"
|
msgstr "Mostra aquest camp si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lògica condicional"
|
msgstr "Lògica condicional"
|
||||||
|
|
||||||
|
|
@ -3612,15 +3661,15 @@ msgstr "Cal actualitzar la base de dades"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Pàgina d'opcions"
|
msgstr "Pàgina d'opcions"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galeria"
|
msgstr "Galeria"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contingut flexible"
|
msgstr "Contingut flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetible"
|
msgstr "Repetible"
|
||||||
|
|
||||||
|
|
@ -3867,7 +3916,7 @@ msgstr "Arrossegueu per reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostra aquest grup de camps si"
|
msgstr "Mostra aquest grup de camps si"
|
||||||
|
|
@ -4051,7 +4100,7 @@ msgstr "Duplica aquest element"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Suports"
|
msgstr "Suports"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentació"
|
msgstr "Documentació"
|
||||||
|
|
||||||
|
|
@ -4154,7 +4203,7 @@ msgstr "Nul"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copia"
|
msgstr "copia"
|
||||||
|
|
@ -4172,7 +4221,7 @@ msgid "Checked"
|
||||||
msgstr "Marcat"
|
msgstr "Marcat"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mou el grup de camps"
|
msgstr "Mou el grup de camps"
|
||||||
|
|
@ -4188,13 +4237,13 @@ msgid "Field group title is required"
|
||||||
msgstr "El títol del grup de camps és obligatori"
|
msgstr "El títol del grup de camps és obligatori"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Aquest camp no es pot moure fins que no se n’hagin desat els canvis"
|
msgstr "Aquest camp no es pot moure fins que no se n’hagin desat els canvis"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "La cadena «field_» no es pot utilitzar al principi del nom d'un camp"
|
msgstr "La cadena «field_» no es pot utilitzar al principi del nom d'un camp"
|
||||||
|
|
@ -4261,15 +4310,15 @@ msgstr "Pàgina"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relacional"
|
msgstr "Relacional"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elecció"
|
msgstr "Elecció"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Bàsic"
|
msgstr "Bàsic"
|
||||||
|
|
||||||
|
|
@ -4297,7 +4346,7 @@ msgstr "Actualitza"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valida el correu electrònic"
|
msgstr "Valida el correu electrònic"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contingut"
|
msgstr "Contingut"
|
||||||
|
|
||||||
|
|
@ -4306,8 +4355,8 @@ msgstr "Contingut"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Títol"
|
msgstr "Títol"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Edita el grup de camps"
|
msgstr "Edita el grup de camps"
|
||||||
|
|
||||||
|
|
@ -4364,59 +4413,59 @@ msgid "Has any value"
|
||||||
msgstr "Té algun valor"
|
msgstr "Té algun valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancel·la"
|
msgstr "Cancel·la"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "N'esteu segur?"
|
msgstr "N'esteu segur?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "Cal revisar %d camps"
|
msgstr "Cal revisar %d camps"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "Cal revisar un camp"
|
msgstr "Cal revisar un camp"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "La validació ha fallat"
|
msgstr "La validació ha fallat"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validació correcta"
|
msgstr "Validació correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restringit"
|
msgstr "Restringit"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Amaga els detalls"
|
msgstr "Amaga els detalls"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Expandeix els detalls"
|
msgstr "Expandeix els detalls"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "S'ha penjat a aquesta entrada"
|
msgstr "S'ha penjat a aquesta entrada"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4427,7 +4476,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edita"
|
msgstr "Edita"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Perdreu els canvis que heu fet si abandoneu aquesta pàgina"
|
msgstr "Perdreu els canvis que heu fet si abandoneu aquesta pàgina"
|
||||||
|
|
@ -4442,7 +4491,7 @@ msgstr "El tipus de fitxer ha de ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4494,7 +4543,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sense etiqueta)"
|
msgstr "(sense etiqueta)"
|
||||||
|
|
@ -4727,18 +4776,18 @@ msgid "File name"
|
||||||
msgstr "Nom del fitxer"
|
msgstr "Nom del fitxer"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualitza el fitxer"
|
msgstr "Actualitza el fitxer"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Edita el fitxer"
|
msgstr "Edita el fitxer"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Escull el fitxer"
|
msgstr "Escull el fitxer"
|
||||||
|
|
||||||
|
|
@ -4764,7 +4813,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Introduïu cada valor per defecte en una línia nova"
|
msgstr "Introduïu cada valor per defecte en una línia nova"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -5119,48 +5168,48 @@ msgstr "Permet nul?"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Pare"
|
msgstr "Pare"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "El TinyMCE no s'inicialitzarà fins que no es faci clic al camp"
|
msgstr "El TinyMCE no s'inicialitzarà fins que no es faci clic al camp"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Endarrereix la inicialització?"
|
msgstr "Endarrereix la inicialització?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Mostra els botons de penjar mèdia?"
|
msgstr "Mostra els botons de penjar mèdia?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra d'eines"
|
msgstr "Barra d'eines"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Només Text"
|
msgstr "Només Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Només visual"
|
msgstr "Només visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual i text"
|
msgstr "Visual i text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestanyes"
|
msgstr "Pestanyes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Feu clic per inicialitzar el TinyMCE"
|
msgstr "Feu clic per inicialitzar el TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -5237,7 +5286,7 @@ msgstr "Text de mostra"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Apareix quan es crea una nova entrada"
|
msgstr "Apareix quan es crea una nova entrada"
|
||||||
|
|
||||||
|
|
@ -5338,17 +5387,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccioneu el tipus de contingut"
|
msgstr "Seleccioneu el tipus de contingut"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No s'ha trobat cap coincidència"
|
msgstr "No s'ha trobat cap coincidència"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "S'està carregant"
|
msgstr "S'està carregant"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "S’ha arribat al màxim de valors ({max} valors)"
|
msgstr "S’ha arribat al màxim de valors ({max} valors)"
|
||||||
|
|
||||||
|
|
@ -5457,7 +5506,7 @@ msgstr "Afegeix imatge"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No s'ha seleccionat cap imatge"
|
msgstr "No s'ha seleccionat cap imatge"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5472,22 +5521,22 @@ msgid "Edit"
|
||||||
msgstr "Edita"
|
msgstr "Edita"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Totes les imatges"
|
msgstr "Totes les imatges"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualitza la imatge"
|
msgstr "Actualitza la imatge"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Edita la imatge"
|
msgstr "Edita la imatge"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Escolliu una imatge"
|
msgstr "Escolliu una imatge"
|
||||||
|
|
||||||
|
|
@ -5574,16 +5623,16 @@ msgstr "Selector de data"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Amplada"
|
msgstr "Amplada"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Mida de la incrustació"
|
msgstr "Mida de la incrustació"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduïu la URL"
|
msgstr "Introduïu la URL"
|
||||||
|
|
||||||
|
|
@ -5624,7 +5673,7 @@ msgstr "IU estilitzada"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor per defecte"
|
msgstr "Valor per defecte"
|
||||||
|
|
||||||
|
|
@ -5638,13 +5687,13 @@ msgstr "Mostra el text al costat de la casella de selecció"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Missatge"
|
msgstr "Missatge"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5654,31 +5703,31 @@ msgstr "Sí"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Cert / Fals"
|
msgstr "Cert / Fals"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Taula"
|
msgstr "Taula"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloc"
|
msgstr "Bloc"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Especifiqueu l’estil usat per a mostrar els camps escollits"
|
msgstr "Especifiqueu l’estil usat per a mostrar els camps escollits"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Disposició"
|
msgstr "Disposició"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Sub camps"
|
msgstr "Sub camps"
|
||||||
|
|
||||||
|
|
@ -5693,7 +5742,7 @@ msgstr "Personalitzeu l'alçada del mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Alçada"
|
msgstr "Alçada"
|
||||||
|
|
||||||
|
|
@ -5733,7 +5782,7 @@ msgid "Search"
|
||||||
msgstr "Cerca"
|
msgstr "Cerca"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Aquest navegador no és compatible amb la geolocalització"
|
msgstr "Aquest navegador no és compatible amb la geolocalització"
|
||||||
|
|
||||||
|
|
@ -5940,13 +5989,13 @@ msgstr "S’han actualitzat les opcions"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>."
|
#| "<a href=\"%s\">details & pricing</a>."
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Per a activar les actualitzacions, introduïu la clau de llicència a la "
|
"Per a activar les actualitzacions, introduïu la clau de llicència a la "
|
||||||
"pàgina d’<a href=\"%s\">Actualitzacions</a>. Si no teniu cap clau de "
|
"pàgina d’<a href=\"%s\">Actualitzacions</a>. Si no teniu cap clau de "
|
||||||
|
|
@ -6436,8 +6485,8 @@ msgid ""
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Per a desbloquejar les actualitzacions, introduïu la clau de llicència a "
|
"Per a desbloquejar les actualitzacions, introduïu la clau de llicència a "
|
||||||
"continuació. Si no teniu cap clau de llicència, vegeu els <a href=\"%s"
|
"continuació. Si no teniu cap clau de llicència, vegeu els <a "
|
||||||
"\">detalls i preu</a>."
|
"href=\"%s\">detalls i preu</a>."
|
||||||
|
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
msgid "License Key"
|
msgid "License Key"
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -649,7 +698,7 @@ msgstr ""
|
||||||
"zobrazují při úpravách obsahu. Užitečné pro udržování pořádku ve velkých "
|
"zobrazují při úpravách obsahu. Užitečné pro udržování pořádku ve velkých "
|
||||||
"souborech dat."
|
"souborech dat."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -659,7 +708,7 @@ msgstr ""
|
||||||
"dlaždice s výzvou k akci, tím, že funguje jako nadřazené pole pro sadu "
|
"dlaždice s výzvou k akci, tím, že funguje jako nadřazené pole pro sadu "
|
||||||
"podpolí, která lze opakovat znovu a znovu."
|
"podpolí, která lze opakovat znovu a znovu."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -670,7 +719,7 @@ msgstr ""
|
||||||
"je podobná typu pole Obrázek. Další nastavení umožňují určit, kam se budou v "
|
"je podobná typu pole Obrázek. Další nastavení umožňují určit, kam se budou v "
|
||||||
"galerii přidávat nové přílohy, a minimální/maximální povolený počet příloh."
|
"galerii přidávat nové přílohy, a minimální/maximální povolený počet příloh."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
|
|
@ -680,7 +729,7 @@ msgstr ""
|
||||||
"Flexibilní obsah umožňuje definovat, vytvářet a spravovat obsah s naprostou "
|
"Flexibilní obsah umožňuje definovat, vytvářet a spravovat obsah s naprostou "
|
||||||
"kontrolou pomocí rozvržení a podpolí pro návrh dostupných bloků."
|
"kontrolou pomocí rozvržení a podpolí pro návrh dostupných bloků."
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -692,16 +741,16 @@ msgstr ""
|
||||||
"může buď nahradit vybranými poli, nebo zobrazit vybraná pole jako skupinu "
|
"může buď nahradit vybranými poli, nebo zobrazit vybraná pole jako skupinu "
|
||||||
"podpolí."
|
"podpolí."
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klonování"
|
msgstr "Klonování"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Pokročilé"
|
msgstr "Pokročilé"
|
||||||
|
|
||||||
|
|
@ -2653,14 +2702,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Typ obsahu smazán."
|
msgstr "Typ obsahu smazán."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Pište pro hledání..."
|
msgstr "Pište pro hledání..."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2673,7 +2722,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Skupiny polí byly úspěšně propojeny."
|
msgstr "Skupiny polí byly úspěšně propojeny."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2681,7 +2730,7 @@ msgstr ""
|
||||||
"Importujte typy obsahu a taxonomie registrované pomocí pluginu Custom Post "
|
"Importujte typy obsahu a taxonomie registrované pomocí pluginu Custom Post "
|
||||||
"Type UI a spravujte je s ACF. <a href=\"%s\">Pusťme se do toho</a>."
|
"Type UI a spravujte je s ACF. <a href=\"%s\">Pusťme se do toho</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2771,7 +2820,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[Hodnota zkráceného kódu ACF vypnuta pro náhled]"
|
msgstr "[Hodnota zkráceného kódu ACF vypnuta pro náhled]"
|
||||||
|
|
||||||
|
|
@ -2781,7 +2830,7 @@ msgid "Close Modal"
|
||||||
msgstr "Zavřít modální okno"
|
msgstr "Zavřít modální okno"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Pole přesunuto do jiné skupiny"
|
msgstr "Pole přesunuto do jiné skupiny"
|
||||||
|
|
@ -2860,8 +2909,8 @@ msgid ""
|
||||||
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||||
"started guide</a>."
|
"started guide</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jste v ACF nováčkem? Podívejte se na našeho <a href=\"%s\" target=\"_blank"
|
"Jste v ACF nováčkem? Podívejte se na našeho <a href=\"%s\" "
|
||||||
"\">průvodce pro začátečníky</a>."
|
"target=\"_blank\">průvodce pro začátečníky</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/list-empty.php:15
|
#: includes/admin/views/acf-field-group/list-empty.php:15
|
||||||
msgid "Add Field Group"
|
msgid "Add Field Group"
|
||||||
|
|
@ -2958,16 +3007,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Přidat pole"
|
msgstr "Přidat pole"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Prezentace"
|
msgstr "Prezentace"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validace"
|
msgstr "Validace"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Obecné"
|
msgstr "Obecné"
|
||||||
|
|
||||||
|
|
@ -3014,7 +3063,7 @@ msgid "Activate this item"
|
||||||
msgstr "Aktivovat tuto položku"
|
msgstr "Aktivovat tuto položku"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
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?"
|
||||||
|
|
@ -3049,17 +3098,17 @@ msgstr ""
|
||||||
"aktivní současně. Plugin Advanced Custom Fields jsme automaticky "
|
"aktivní současně. Plugin Advanced Custom Fields jsme automaticky "
|
||||||
"deaktivovali."
|
"deaktivovali."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> – Zjistili jsme jedno nebo více volání k načtení "
|
"<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 "
|
"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"
|
"následek chybná nebo chybějící data. <a href=\"%2$s\" "
|
||||||
"\">Přečtěte si, jak to opravit</a>."
|
"target=\"_blank\">Přečtěte si, jak to opravit</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3251,23 +3300,23 @@ msgstr "Načítání diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Přehled místních změn JSON"
|
msgstr "Přehled místních změn JSON"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Navštívit stránky"
|
msgstr "Navštívit stránky"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Zobrazit podrobnosti"
|
msgstr "Zobrazit podrobnosti"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Verze %s"
|
msgstr "Verze %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informace"
|
msgstr "Informace"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3275,7 +3324,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Nápověda</a>. Odborníci na podporu na našem "
|
"<a href=\"%s\" target=\"_blank\">Nápověda</a>. Odborníci na podporu na našem "
|
||||||
"help desku pomohou s hlubšími technickými problémy."
|
"help desku pomohou s hlubšími technickými problémy."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3285,7 +3334,7 @@ msgstr ""
|
||||||
"máme aktivní a přátelskou komunitu, která může pomoci zjistit „jak na to“ ve "
|
"máme aktivní a přátelskou komunitu, která může pomoci zjistit „jak na to“ ve "
|
||||||
"světě ACF."
|
"světě ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3294,7 +3343,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Dokumentace</a>. Naše rozsáhlá dokumentace "
|
"<a href=\"%s\" target=\"_blank\">Dokumentace</a>. Naše rozsáhlá dokumentace "
|
||||||
"obsahuje odkazy a návody pro většinu situací, se kterými se můžete setkat."
|
"obsahuje odkazy a návody pro většinu situací, se kterými se můžete setkat."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3304,17 +3353,17 @@ msgstr ""
|
||||||
"dostali to nejlepší. Pokud se setkáte s jakýmikoli potížemi, můžete najít "
|
"dostali to nejlepší. Pokud se setkáte s jakýmikoli potížemi, můžete najít "
|
||||||
"pomoc na několika místech:"
|
"pomoc na několika místech:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Nápověda a podpora"
|
msgstr "Nápověda a podpora"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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 "Pokud budete potřebovat pomoc, přejděte na záložku Nápověda a podpora."
|
msgstr "Pokud budete potřebovat pomoc, přejděte na záložku Nápověda a podpora."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3324,7 +3373,7 @@ msgstr ""
|
||||||
"href=\"%s\" target=\"_blank\">Začínáme</a>, abyste se seznámili s filozofií "
|
"href=\"%s\" target=\"_blank\">Začínáme</a>, abyste se seznámili s filozofií "
|
||||||
"pluginu a osvědčenými postupy."
|
"pluginu a osvědčenými postupy."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3335,7 +3384,7 @@ msgstr ""
|
||||||
"dalších polí. Plugin nabízí intuitivní rozhraní API pro zobrazení hodnot "
|
"dalších polí. Plugin nabízí intuitivní rozhraní API pro zobrazení hodnot "
|
||||||
"vlastních polí v libovolném souboru šablony."
|
"vlastních polí v libovolném souboru šablony."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Přehled"
|
msgstr "Přehled"
|
||||||
|
|
||||||
|
|
@ -3355,7 +3404,7 @@ msgstr "Neplatná hodnota."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Při načítání pole došlo k chybě."
|
msgstr "Při načítání pole došlo k chybě."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Umístění nenalezeno: %s"
|
msgstr "Umístění nenalezeno: %s"
|
||||||
|
|
@ -3503,7 +3552,7 @@ msgid "Show this field if"
|
||||||
msgstr "Zobrazit toto pole, pokud"
|
msgstr "Zobrazit toto pole, pokud"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Podmíněná logika"
|
msgstr "Podmíněná logika"
|
||||||
|
|
||||||
|
|
@ -3547,15 +3596,15 @@ msgstr "Vyžadován upgrade databáze"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Stránka konfigurace"
|
msgstr "Stránka konfigurace"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galerie"
|
msgstr "Galerie"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Flexibilní obsah"
|
msgstr "Flexibilní obsah"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Opakovač"
|
msgstr "Opakovač"
|
||||||
|
|
||||||
|
|
@ -3801,7 +3850,7 @@ msgstr "Přetažením změníte pořadí"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Zobrazit tuto skupinu polí, pokud"
|
msgstr "Zobrazit tuto skupinu polí, pokud"
|
||||||
|
|
@ -3982,7 +4031,7 @@ msgstr "Duplikovat tuto položku"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Podporuje"
|
msgstr "Podporuje"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentace"
|
msgstr "Dokumentace"
|
||||||
|
|
||||||
|
|
@ -4088,7 +4137,7 @@ msgstr "Nula"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "kopírovat"
|
msgstr "kopírovat"
|
||||||
|
|
@ -4106,7 +4155,7 @@ msgid "Checked"
|
||||||
msgstr "Zaškrtnuto"
|
msgstr "Zaškrtnuto"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Přesunout vlastní pole"
|
msgstr "Přesunout vlastní pole"
|
||||||
|
|
@ -4122,13 +4171,13 @@ msgid "Field group title is required"
|
||||||
msgstr "Vyžadován nadpis pro skupinu polí"
|
msgstr "Vyžadován nadpis pro skupinu polí"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Toto pole nelze přesunout, dokud nebudou uloženy jeho změny"
|
msgstr "Toto pole nelze přesunout, dokud nebudou uloženy jeho změny"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "Řetězec \"pole_\" nesmí být použit na začátku názvu pole"
|
msgstr "Řetězec \"pole_\" nesmí být použit na začátku názvu pole"
|
||||||
|
|
@ -4195,15 +4244,15 @@ msgstr "Stránka"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Příspěvek"
|
msgstr "Příspěvek"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relační"
|
msgstr "Relační"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Volba"
|
msgstr "Volba"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Základní"
|
msgstr "Základní"
|
||||||
|
|
||||||
|
|
@ -4231,7 +4280,7 @@ msgstr "Aktualizace"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Ověřit e-mail"
|
msgstr "Ověřit e-mail"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Obsah"
|
msgstr "Obsah"
|
||||||
|
|
||||||
|
|
@ -4240,8 +4289,8 @@ msgstr "Obsah"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Název"
|
msgstr "Název"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editovat skupinu polí"
|
msgstr "Editovat skupinu polí"
|
||||||
|
|
||||||
|
|
@ -4298,59 +4347,59 @@ msgid "Has any value"
|
||||||
msgstr "Má libovolnou hodnotu"
|
msgstr "Má libovolnou hodnotu"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Zrušit"
|
msgstr "Zrušit"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Jste si jistí?"
|
msgstr "Jste si jistí?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "Několik polí vyžaduje pozornost (%d)"
|
msgstr "Několik polí vyžaduje pozornost (%d)"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 pole vyžaduje pozornost"
|
msgstr "1 pole vyžaduje pozornost"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Ověření selhalo"
|
msgstr "Ověření selhalo"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Ověření úspěšné"
|
msgstr "Ověření úspěšné"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Omezeno"
|
msgstr "Omezeno"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Sbalit podrobnosti"
|
msgstr "Sbalit podrobnosti"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Rozbalit podrobnosti"
|
msgstr "Rozbalit podrobnosti"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Nahrán k tomuto příspěvku"
|
msgstr "Nahrán k tomuto příspěvku"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4361,7 +4410,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Upravit"
|
msgstr "Upravit"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4377,7 +4426,7 @@ msgstr "Typ souboru musí být %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4429,7 +4478,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(bez štítku)"
|
msgstr "(bez štítku)"
|
||||||
|
|
@ -4661,18 +4710,18 @@ msgid "File name"
|
||||||
msgstr "Jméno souboru"
|
msgstr "Jméno souboru"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Aktualizovat soubor"
|
msgstr "Aktualizovat soubor"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Upravit soubor"
|
msgstr "Upravit soubor"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Vybrat soubor"
|
msgstr "Vybrat soubor"
|
||||||
|
|
||||||
|
|
@ -4698,7 +4747,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Zadejte každou výchozí hodnotu na nový řádek"
|
msgstr "Zadejte každou výchozí hodnotu na nový řádek"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Vybrat"
|
msgstr "Vybrat"
|
||||||
|
|
@ -5050,48 +5099,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Rodič"
|
msgstr "Rodič"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE se inicializuje až po kliknutí na pole"
|
msgstr "TinyMCE se inicializuje až po kliknutí na pole"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Lišta nástrojů"
|
msgstr "Lišta nástrojů"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Pouze text"
|
msgstr "Pouze text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Pouze grafika"
|
msgstr "Pouze grafika"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Grafika a text"
|
msgstr "Grafika a text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Záložky"
|
msgstr "Záložky"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Klikněte pro inicializaci TinyMCE"
|
msgstr "Klikněte pro inicializaci TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Grafika"
|
msgstr "Grafika"
|
||||||
|
|
||||||
|
|
@ -5168,7 +5217,7 @@ msgstr "Zástupný text"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Objeví se při vytváření nového příspěvku"
|
msgstr "Objeví se při vytváření nového příspěvku"
|
||||||
|
|
||||||
|
|
@ -5270,17 +5319,17 @@ msgid "Select post type"
|
||||||
msgstr "Zvolit typ příspěvku"
|
msgstr "Zvolit typ příspěvku"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Nebyly nalezeny žádné výsledky"
|
msgstr "Nebyly nalezeny žádné výsledky"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Načítání"
|
msgstr "Načítání"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Dosaženo maximálního množství hodnot ( {max} hodnot )"
|
msgstr "Dosaženo maximálního množství hodnot ( {max} hodnot )"
|
||||||
|
|
||||||
|
|
@ -5389,7 +5438,7 @@ msgstr "Přidat obrázek"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Není vybrán žádný obrázek"
|
msgstr "Není vybrán žádný obrázek"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5404,22 +5453,22 @@ msgid "Edit"
|
||||||
msgstr "Upravit"
|
msgstr "Upravit"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Všechny obrázky"
|
msgstr "Všechny obrázky"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Aktualizovat obrázek"
|
msgstr "Aktualizovat obrázek"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Upravit obrázek"
|
msgstr "Upravit obrázek"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Vybrat obrázek"
|
msgstr "Vybrat obrázek"
|
||||||
|
|
||||||
|
|
@ -5504,16 +5553,16 @@ msgstr "Výběr data"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Šířka"
|
msgstr "Šířka"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Velikost pro Embed"
|
msgstr "Velikost pro Embed"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Vložte URL"
|
msgstr "Vložte URL"
|
||||||
|
|
||||||
|
|
@ -5554,7 +5603,7 @@ msgstr "Stylizované uživatelské rozhraní"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Výchozí hodnota"
|
msgstr "Výchozí hodnota"
|
||||||
|
|
||||||
|
|
@ -5568,13 +5617,13 @@ msgstr "Zobrazí text vedle zaškrtávacího políčka"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Zpráva"
|
msgstr "Zpráva"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Ne"
|
msgstr "Ne"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5584,31 +5633,31 @@ msgstr "Ano"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Pravda / Nepravda"
|
msgstr "Pravda / Nepravda"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Řádek"
|
msgstr "Řádek"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabulka"
|
msgstr "Tabulka"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Blok"
|
msgstr "Blok"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Určení stylu použitého pro vykreslení vybraných polí"
|
msgstr "Určení stylu použitého pro vykreslení vybraných polí"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Typ zobrazení"
|
msgstr "Typ zobrazení"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Podřazená pole"
|
msgstr "Podřazená pole"
|
||||||
|
|
||||||
|
|
@ -5623,7 +5672,7 @@ msgstr "Přizpůsobení výšky mapy"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Výška"
|
msgstr "Výška"
|
||||||
|
|
||||||
|
|
@ -5663,7 +5712,7 @@ msgid "Search"
|
||||||
msgstr "Hledat"
|
msgstr "Hledat"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Je nám líto, ale tento prohlížeč nepodporuje geolokaci"
|
msgstr "Je nám líto, ale tento prohlížeč nepodporuje geolokaci"
|
||||||
|
|
||||||
|
|
@ -5872,17 +5921,17 @@ msgstr "Nastavení aktualizováno"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>."
|
#| "<a href=\"%s\">details & pricing</a>."
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Chcete-li povolit aktualizace, zadejte prosím licenční klíč na stránce <a "
|
"Chcete-li povolit aktualizace, zadejte prosím licenční klíč na stránce <a "
|
||||||
"href=\"%s\">Aktualizace</a>. Pokud nemáte licenční klíč, přečtěte si <a href="
|
"href=\"%s\">Aktualizace</a>. Pokud nemáte licenční klíč, přečtěte si <a "
|
||||||
"\"%s\">podrobnosti a ceny</a>."
|
"href=\"%s\">podrobnosti a ceny</a>."
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -81,18 +81,18 @@ msgstr "Optionen aktualisiert"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>."
|
#| "<a href=\"%s\">details & pricing</a>."
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bitte gib auf der Seite <a href=\"%s\">Aktualisierungen</a> deinen "
|
"Bitte gib auf der Seite <a href=\"%s\">Aktualisierungen</a> deinen "
|
||||||
"Lizenzschlüssel ein, um Updates zu aktivieren. Solltest du keinen "
|
"Lizenzschlüssel ein, um Updates zu aktivieren. Solltest du keinen "
|
||||||
"Lizenzschlüssel haben, findest du hier <a href=\"%s\" target=\"_blank"
|
"Lizenzschlüssel haben, findest du hier <a href=\"%s\" "
|
||||||
"\">Details & Preise</a>."
|
"target=\"_blank\">Details & Preise</a>."
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -397,8 +446,8 @@ msgid ""
|
||||||
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
||||||
"term</a>."
|
"term</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dieses Feld darf kein von WordPress <a href=\"%s\" target=\"_blank"
|
"Dieses Feld darf kein von WordPress <a href=\"%s\" "
|
||||||
"\">reservierter Begriff</a> sein."
|
"target=\"_blank\">reservierter Begriff</a> sein."
|
||||||
|
|
||||||
#: includes/post-types/class-acf-post-type.php:329
|
#: includes/post-types/class-acf-post-type.php:329
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -649,14 +698,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -664,14 +713,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -679,16 +728,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klon"
|
msgstr "Klon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Erweitert"
|
msgstr "Erweitert"
|
||||||
|
|
||||||
|
|
@ -2572,14 +2621,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Der Inhaltstyp wurde gelöscht."
|
msgstr "Der Inhaltstyp wurde gelöscht."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Tippen, um zu suchen …"
|
msgstr "Tippen, um zu suchen …"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2592,7 +2641,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Die Feldgruppen wurden erfolgreich verlinkt."
|
msgstr "Die Feldgruppen wurden erfolgreich verlinkt."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2601,7 +2650,7 @@ msgstr ""
|
||||||
"registriert wurden, und verwalte sie mit ACF. <a href=\"%s\">Jetzt starten</"
|
"registriert wurden, und verwalte sie mit ACF. <a href=\"%s\">Jetzt starten</"
|
||||||
"a>."
|
"a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2691,7 +2740,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[Die Vorschau des ACF-Shortcodes wurde deaktiviert]"
|
msgstr "[Die Vorschau des ACF-Shortcodes wurde deaktiviert]"
|
||||||
|
|
||||||
|
|
@ -2701,7 +2750,7 @@ msgid "Close Modal"
|
||||||
msgstr "Modal schließen"
|
msgstr "Modal schließen"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Das Feld wurde zu einer anderen Gruppe verschoben"
|
msgstr "Das Feld wurde zu einer anderen Gruppe verschoben"
|
||||||
|
|
@ -2879,16 +2928,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Feld hinzufügen"
|
msgstr "Feld hinzufügen"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Präsentation"
|
msgstr "Präsentation"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validierung"
|
msgstr "Validierung"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Allgemein"
|
msgstr "Allgemein"
|
||||||
|
|
||||||
|
|
@ -2933,7 +2982,7 @@ msgid "Activate this item"
|
||||||
msgstr "Dieses Element aktivieren"
|
msgstr "Dieses Element aktivieren"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
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?"
|
||||||
|
|
@ -2968,17 +3017,17 @@ msgstr ""
|
||||||
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
||||||
"deaktiviert."
|
"deaktiviert."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> – Es wurde mindestens ein Versuch festgestellt, ACF-"
|
"<strong>%1$s</strong> – Es wurde mindestens ein Versuch festgestellt, ACF-"
|
||||||
"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht "
|
"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht "
|
||||||
"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. <a href="
|
"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. <a "
|
||||||
"\"%2$s\" target=\"_blank\">Lerne, wie du das beheben kannst (engl.)</a>."
|
"href=\"%2$s\" target=\"_blank\">Lerne, wie du das beheben kannst (engl.)</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3168,23 +3217,23 @@ msgstr "Diff laden"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Lokale JSON-Änderungen überprüfen"
|
msgstr "Lokale JSON-Änderungen überprüfen"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Website besuchen"
|
msgstr "Website besuchen"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Details anzeigen"
|
msgstr "Details anzeigen"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Version %s"
|
msgstr "Version %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3193,7 +3242,7 @@ msgstr ""
|
||||||
"Help-Desks werden dir bei komplexeren technischen Herausforderungen "
|
"Help-Desks werden dir bei komplexeren technischen Herausforderungen "
|
||||||
"unterstützend zur Seite stehen."
|
"unterstützend zur Seite stehen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3203,7 +3252,7 @@ msgstr ""
|
||||||
"freundliche Community in unseren Community-Foren, die dir vielleicht dabei "
|
"freundliche Community in unseren Community-Foren, die dir vielleicht dabei "
|
||||||
"helfen kann, dich mit den „How-tos“ der ACF-Welt vertraut zu machen."
|
"helfen kann, dich mit den „How-tos“ der ACF-Welt vertraut zu machen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3213,7 +3262,7 @@ msgstr ""
|
||||||
"Dokumentation beinhaltet Referenzen und Leitfäden zu den meisten "
|
"Dokumentation beinhaltet Referenzen und Leitfäden zu den meisten "
|
||||||
"Situationen, die du vorfinden wirst."
|
"Situationen, die du vorfinden wirst."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3223,11 +3272,11 @@ msgstr ""
|
||||||
"deiner Website herausholst. Wenn du auf Schwierigkeiten stößt, gibt es "
|
"deiner Website herausholst. Wenn du auf Schwierigkeiten stößt, gibt es "
|
||||||
"mehrere Stellen, an denen du Hilfe finden kannst:"
|
"mehrere Stellen, an denen du Hilfe finden kannst:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Hilfe und Support"
|
msgstr "Hilfe und Support"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3235,7 +3284,7 @@ msgstr ""
|
||||||
"Falls du Hilfe benötigst, nutze bitte den Tab „Hilfe und Support“, um dich "
|
"Falls du Hilfe benötigst, nutze bitte den Tab „Hilfe und Support“, um dich "
|
||||||
"mit uns in Verbindung zu setzen."
|
"mit uns in Verbindung zu setzen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3246,7 +3295,7 @@ msgstr ""
|
||||||
"durchzulesen, um dich mit der Philosophie hinter dem Plugin und den besten "
|
"durchzulesen, um dich mit der Philosophie hinter dem Plugin und den besten "
|
||||||
"Praktiken vertraut zu machen."
|
"Praktiken vertraut zu machen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3257,7 +3306,7 @@ msgstr ""
|
||||||
"und eine intuitive API, um individuelle Feldwerte in beliebigen Theme-"
|
"und eine intuitive API, um individuelle Feldwerte in beliebigen Theme-"
|
||||||
"Template-Dateien anzuzeigen."
|
"Template-Dateien anzuzeigen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Übersicht"
|
msgstr "Übersicht"
|
||||||
|
|
||||||
|
|
@ -3277,7 +3326,7 @@ msgstr "Ungültiger Nonce."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Fehler beim Laden des Felds."
|
msgstr "Fehler beim Laden des Felds."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Die Position wurde nicht gefunden: %s"
|
msgstr "Die Position wurde nicht gefunden: %s"
|
||||||
|
|
@ -3425,7 +3474,7 @@ msgid "Show this field if"
|
||||||
msgstr "Dieses Feld anzeigen, falls"
|
msgstr "Dieses Feld anzeigen, falls"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Bedingte Logik"
|
msgstr "Bedingte Logik"
|
||||||
|
|
||||||
|
|
@ -3471,15 +3520,15 @@ msgstr "Ein Upgrade der Datenbank ist erforderlich"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Optionen-Seite"
|
msgstr "Optionen-Seite"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galerie"
|
msgstr "Galerie"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Flexibler Inhalt"
|
msgstr "Flexibler Inhalt"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Wiederholung"
|
msgstr "Wiederholung"
|
||||||
|
|
||||||
|
|
@ -3730,7 +3779,7 @@ msgstr "Ziehen zum Sortieren"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Diese Feldgruppe anzeigen, falls"
|
msgstr "Diese Feldgruppe anzeigen, falls"
|
||||||
|
|
@ -3916,7 +3965,7 @@ msgstr "Dieses Element duplizieren"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Hilfe"
|
msgstr "Hilfe"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentation"
|
msgstr "Dokumentation"
|
||||||
|
|
||||||
|
|
@ -4019,7 +4068,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "kopieren"
|
msgstr "kopieren"
|
||||||
|
|
@ -4037,7 +4086,7 @@ msgid "Checked"
|
||||||
msgstr "Ausgewählt"
|
msgstr "Ausgewählt"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Individuelles Feld verschieben"
|
msgstr "Individuelles Feld verschieben"
|
||||||
|
|
@ -4053,7 +4102,7 @@ msgid "Field group title is required"
|
||||||
msgstr "Ein Titel für die Feldgruppe ist erforderlich"
|
msgstr "Ein Titel für die Feldgruppe ist erforderlich"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4061,7 +4110,7 @@ msgstr ""
|
||||||
"wurden"
|
"wurden"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "Die Zeichenfolge „field_“ darf nicht am Beginn eines Feldnamens stehen"
|
msgstr "Die Zeichenfolge „field_“ darf nicht am Beginn eines Feldnamens stehen"
|
||||||
|
|
@ -4128,15 +4177,15 @@ msgstr "Seite"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Beitrag"
|
msgstr "Beitrag"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relational"
|
msgstr "Relational"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Auswahl"
|
msgstr "Auswahl"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Grundlegend"
|
msgstr "Grundlegend"
|
||||||
|
|
||||||
|
|
@ -4164,7 +4213,7 @@ msgstr "Aktualisieren"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "E-Mail-Adresse bestätigen"
|
msgstr "E-Mail-Adresse bestätigen"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Inhalt"
|
msgstr "Inhalt"
|
||||||
|
|
||||||
|
|
@ -4173,8 +4222,8 @@ msgstr "Inhalt"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Feldgruppe bearbeiten"
|
msgstr "Feldgruppe bearbeiten"
|
||||||
|
|
||||||
|
|
@ -4231,59 +4280,59 @@ msgid "Has any value"
|
||||||
msgstr "Hat einen Wert"
|
msgstr "Hat einen Wert"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Abbrechen"
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Bist du sicher?"
|
msgstr "Bist du sicher?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d Felder erfordern Aufmerksamkeit"
|
msgstr "%d Felder erfordern Aufmerksamkeit"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 Feld erfordert Aufmerksamkeit"
|
msgstr "1 Feld erfordert Aufmerksamkeit"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Die Überprüfung ist fehlgeschlagen"
|
msgstr "Die Überprüfung ist fehlgeschlagen"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Die Überprüfung war erfolgreich"
|
msgstr "Die Überprüfung war erfolgreich"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Eingeschränkt"
|
msgstr "Eingeschränkt"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Details ausblenden"
|
msgstr "Details ausblenden"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Details einblenden"
|
msgstr "Details einblenden"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Zu diesem Beitrag hochgeladen"
|
msgstr "Zu diesem Beitrag hochgeladen"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4294,7 +4343,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Bearbeiten"
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Deine Änderungen werden verlorengehen, wenn du diese Seite verlässt"
|
msgstr "Deine Änderungen werden verlorengehen, wenn du diese Seite verlässt"
|
||||||
|
|
@ -4309,7 +4358,7 @@ msgstr "Der Dateityp muss %s sein."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4361,7 +4410,7 @@ msgstr "Vorschaubild"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(keine Beschriftung)"
|
msgstr "(keine Beschriftung)"
|
||||||
|
|
@ -4595,18 +4644,18 @@ msgid "File name"
|
||||||
msgstr "Dateiname"
|
msgstr "Dateiname"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Datei aktualisieren"
|
msgstr "Datei aktualisieren"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Datei bearbeiten"
|
msgstr "Datei bearbeiten"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Datei auswählen"
|
msgstr "Datei auswählen"
|
||||||
|
|
||||||
|
|
@ -4632,7 +4681,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Auswählen"
|
msgstr "Auswählen"
|
||||||
|
|
@ -4987,48 +5036,48 @@ msgstr "NULL-Werte zulassen?"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Übergeordnet"
|
msgstr "Übergeordnet"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird"
|
msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Soll die Initialisierung verzögert werden?"
|
msgstr "Soll die Initialisierung verzögert werden?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Sollen Buttons zum Hochladen von Medien anzeigt werden?"
|
msgstr "Sollen Buttons zum Hochladen von Medien anzeigt werden?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Werkzeugleiste"
|
msgstr "Werkzeugleiste"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Nur Text"
|
msgstr "Nur Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Nur visuell"
|
msgstr "Nur visuell"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuell und Text"
|
msgstr "Visuell und Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Tabs"
|
msgstr "Tabs"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Klicken, um TinyMCE zu initialisieren"
|
msgstr "Klicken, um TinyMCE zu initialisieren"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuell"
|
msgstr "Visuell"
|
||||||
|
|
||||||
|
|
@ -5105,7 +5154,7 @@ msgstr "Platzhaltertext"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Wird bei der Erstellung eines neuen Beitrags angezeigt"
|
msgstr "Wird bei der Erstellung eines neuen Beitrags angezeigt"
|
||||||
|
|
||||||
|
|
@ -5206,17 +5255,17 @@ msgid "Select post type"
|
||||||
msgstr "Inhaltstyp auswählen"
|
msgstr "Inhaltstyp auswählen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Es wurde keine Übereinstimmung gefunden"
|
msgstr "Es wurde keine Übereinstimmung gefunden"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Wird geladen"
|
msgstr "Wird geladen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Die maximal möglichen Werte wurden erreicht ({max} Werte)"
|
msgstr "Die maximal möglichen Werte wurden erreicht ({max} Werte)"
|
||||||
|
|
||||||
|
|
@ -5326,7 +5375,7 @@ msgstr "Bild hinzufügen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Es wurde kein Bild ausgewählt"
|
msgstr "Es wurde kein Bild ausgewählt"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5341,22 +5390,22 @@ msgid "Edit"
|
||||||
msgstr "Bearbeiten"
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Alle Bilder"
|
msgstr "Alle Bilder"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Bild aktualisieren"
|
msgstr "Bild aktualisieren"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Bild bearbeiten"
|
msgstr "Bild bearbeiten"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Bild auswählen"
|
msgstr "Bild auswählen"
|
||||||
|
|
||||||
|
|
@ -5441,16 +5490,16 @@ msgstr "Datumspicker"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Breite"
|
msgstr "Breite"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Einbettungs-Größe"
|
msgstr "Einbettungs-Größe"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "URL eingeben"
|
msgstr "URL eingeben"
|
||||||
|
|
||||||
|
|
@ -5491,7 +5540,7 @@ msgstr "Gestylte UI"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Standardwert"
|
msgstr "Standardwert"
|
||||||
|
|
||||||
|
|
@ -5505,13 +5554,13 @@ msgstr "Zeigt den Text neben dem Auswahlkästchen an"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mitteilung"
|
msgstr "Mitteilung"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5521,31 +5570,31 @@ msgstr "Ja"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Wahr/falsch"
|
msgstr "Wahr/falsch"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Reihe"
|
msgstr "Reihe"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabelle"
|
msgstr "Tabelle"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Block"
|
msgstr "Block"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Lege den Stil für die Darstellung der ausgewählten Felder fest"
|
msgstr "Lege den Stil für die Darstellung der ausgewählten Felder fest"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Untergeordnete Felder"
|
msgstr "Untergeordnete Felder"
|
||||||
|
|
||||||
|
|
@ -5560,7 +5609,7 @@ msgstr "Kartenhöhe anpassen"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Höhe"
|
msgstr "Höhe"
|
||||||
|
|
||||||
|
|
@ -5600,7 +5649,7 @@ msgid "Search"
|
||||||
msgstr "Suchen"
|
msgstr "Suchen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Dieser Browser unterstützt leider keine Standortbestimmung"
|
msgstr "Dieser Browser unterstützt leider keine Standortbestimmung"
|
||||||
|
|
||||||
|
|
@ -5803,9 +5852,9 @@ msgstr "Optionen aktualisiert"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -397,8 +446,8 @@ msgid ""
|
||||||
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
||||||
"term</a>."
|
"term</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dieses Feld darf kein von WordPress <a href=\"%s\" target=\"_blank"
|
"Dieses Feld darf kein von WordPress <a href=\"%s\" "
|
||||||
"\">reservierter Begriff</a> sein."
|
"target=\"_blank\">reservierter Begriff</a> sein."
|
||||||
|
|
||||||
#: includes/post-types/class-acf-post-type.php:329
|
#: includes/post-types/class-acf-post-type.php:329
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -649,14 +698,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -664,14 +713,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -679,16 +728,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klon"
|
msgstr "Klon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Erweitert"
|
msgstr "Erweitert"
|
||||||
|
|
||||||
|
|
@ -2572,14 +2621,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Der Inhaltstyp wurde gelöscht."
|
msgstr "Der Inhaltstyp wurde gelöscht."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Tippen, um zu suchen …"
|
msgstr "Tippen, um zu suchen …"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2592,7 +2641,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Die Feldgruppen wurden erfolgreich verlinkt."
|
msgstr "Die Feldgruppen wurden erfolgreich verlinkt."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2601,7 +2650,7 @@ msgstr ""
|
||||||
"registriert wurden, und verwalte sie mit ACF. <a href=\"%s\">Jetzt starten</"
|
"registriert wurden, und verwalte sie mit ACF. <a href=\"%s\">Jetzt starten</"
|
||||||
"a>."
|
"a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2691,7 +2740,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[Die Vorschau des ACF-Shortcodes wurde deaktiviert]"
|
msgstr "[Die Vorschau des ACF-Shortcodes wurde deaktiviert]"
|
||||||
|
|
||||||
|
|
@ -2701,7 +2750,7 @@ msgid "Close Modal"
|
||||||
msgstr "Modal schließen"
|
msgstr "Modal schließen"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Das Feld wurde zu einer anderen Gruppe verschoben"
|
msgstr "Das Feld wurde zu einer anderen Gruppe verschoben"
|
||||||
|
|
@ -2879,16 +2928,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Feld hinzufügen"
|
msgstr "Feld hinzufügen"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Präsentation"
|
msgstr "Präsentation"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validierung"
|
msgstr "Validierung"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Allgemein"
|
msgstr "Allgemein"
|
||||||
|
|
||||||
|
|
@ -2933,7 +2982,7 @@ msgid "Activate this item"
|
||||||
msgstr "Dieses Element aktivieren"
|
msgstr "Dieses Element aktivieren"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
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?"
|
||||||
|
|
@ -2968,17 +3017,17 @@ msgstr ""
|
||||||
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
"gleichzeitig aktiviert sein. Advanced Custom Fields wurde automatisch "
|
||||||
"deaktiviert."
|
"deaktiviert."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> – Es wurde mindestens ein Versuch festgestellt, ACF-"
|
"<strong>%1$s</strong> – Es wurde mindestens ein Versuch festgestellt, ACF-"
|
||||||
"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht "
|
"Feldwerte abzurufen, bevor ACF initialisiert wurde. Dies wird nicht "
|
||||||
"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. <a href="
|
"unterstützt und kann zu fehlerhaften oder fehlenden Daten führen. <a "
|
||||||
"\"%2$s\" target=\"_blank\">Lerne, wie du das beheben kannst (engl.)</a>."
|
"href=\"%2$s\" target=\"_blank\">Lerne, wie du das beheben kannst (engl.)</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3168,23 +3217,23 @@ msgstr "Diff laden"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Lokale JSON-Änderungen überprüfen"
|
msgstr "Lokale JSON-Änderungen überprüfen"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Website besuchen"
|
msgstr "Website besuchen"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Details anzeigen"
|
msgstr "Details anzeigen"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Version %s"
|
msgstr "Version %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3193,7 +3242,7 @@ msgstr ""
|
||||||
"Help-Desks werden dir bei komplexeren technischen Herausforderungen "
|
"Help-Desks werden dir bei komplexeren technischen Herausforderungen "
|
||||||
"unterstützend zur Seite stehen."
|
"unterstützend zur Seite stehen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3203,7 +3252,7 @@ msgstr ""
|
||||||
"freundliche Community in unseren Community-Foren, die dir vielleicht dabei "
|
"freundliche Community in unseren Community-Foren, die dir vielleicht dabei "
|
||||||
"helfen kann, dich mit den „How-tos“ der ACF-Welt vertraut zu machen."
|
"helfen kann, dich mit den „How-tos“ der ACF-Welt vertraut zu machen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3213,7 +3262,7 @@ msgstr ""
|
||||||
"Dokumentation beinhaltet Referenzen und Leitfäden zu den meisten "
|
"Dokumentation beinhaltet Referenzen und Leitfäden zu den meisten "
|
||||||
"Situationen, die du vorfinden wirst."
|
"Situationen, die du vorfinden wirst."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3223,11 +3272,11 @@ msgstr ""
|
||||||
"deiner Website herausholst. Wenn du auf Schwierigkeiten stößt, gibt es "
|
"deiner Website herausholst. Wenn du auf Schwierigkeiten stößt, gibt es "
|
||||||
"mehrere Stellen, an denen du Hilfe finden kannst:"
|
"mehrere Stellen, an denen du Hilfe finden kannst:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Hilfe und Support"
|
msgstr "Hilfe und Support"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3235,7 +3284,7 @@ msgstr ""
|
||||||
"Falls du Hilfe benötigst, nutze bitte den Tab „Hilfe und Support“, um dich "
|
"Falls du Hilfe benötigst, nutze bitte den Tab „Hilfe und Support“, um dich "
|
||||||
"mit uns in Verbindung zu setzen."
|
"mit uns in Verbindung zu setzen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3246,7 +3295,7 @@ msgstr ""
|
||||||
"durchzulesen, um dich mit der Philosophie hinter dem Plugin und den besten "
|
"durchzulesen, um dich mit der Philosophie hinter dem Plugin und den besten "
|
||||||
"Praktiken vertraut zu machen."
|
"Praktiken vertraut zu machen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3257,7 +3306,7 @@ msgstr ""
|
||||||
"und eine intuitive API, um individuelle Feldwerte in beliebigen Theme-"
|
"und eine intuitive API, um individuelle Feldwerte in beliebigen Theme-"
|
||||||
"Template-Dateien anzuzeigen."
|
"Template-Dateien anzuzeigen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Übersicht"
|
msgstr "Übersicht"
|
||||||
|
|
||||||
|
|
@ -3277,7 +3326,7 @@ msgstr "Ungültiger Nonce."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Fehler beim Laden des Felds."
|
msgstr "Fehler beim Laden des Felds."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Die Position wurde nicht gefunden: %s"
|
msgstr "Die Position wurde nicht gefunden: %s"
|
||||||
|
|
@ -3425,7 +3474,7 @@ msgid "Show this field if"
|
||||||
msgstr "Dieses Feld anzeigen, falls"
|
msgstr "Dieses Feld anzeigen, falls"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Bedingte Logik"
|
msgstr "Bedingte Logik"
|
||||||
|
|
||||||
|
|
@ -3471,15 +3520,15 @@ msgstr "Ein Upgrade der Datenbank ist erforderlich"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Optionen-Seite"
|
msgstr "Optionen-Seite"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galerie"
|
msgstr "Galerie"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Flexibler Inhalt"
|
msgstr "Flexibler Inhalt"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Wiederholung"
|
msgstr "Wiederholung"
|
||||||
|
|
||||||
|
|
@ -3730,7 +3779,7 @@ msgstr "Ziehen zum Sortieren"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Diese Feldgruppe anzeigen, falls"
|
msgstr "Diese Feldgruppe anzeigen, falls"
|
||||||
|
|
@ -3916,7 +3965,7 @@ msgstr "Dieses Element duplizieren"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Hilfe"
|
msgstr "Hilfe"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentation"
|
msgstr "Dokumentation"
|
||||||
|
|
||||||
|
|
@ -4019,7 +4068,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "kopieren"
|
msgstr "kopieren"
|
||||||
|
|
@ -4037,7 +4086,7 @@ msgid "Checked"
|
||||||
msgstr "Ausgewählt"
|
msgstr "Ausgewählt"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Individuelles Feld verschieben"
|
msgstr "Individuelles Feld verschieben"
|
||||||
|
|
@ -4053,7 +4102,7 @@ msgid "Field group title is required"
|
||||||
msgstr "Ein Titel für die Feldgruppe ist erforderlich"
|
msgstr "Ein Titel für die Feldgruppe ist erforderlich"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4061,7 +4110,7 @@ msgstr ""
|
||||||
"wurden"
|
"wurden"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "Die Zeichenfolge „field_“ darf nicht am Beginn eines Feldnamens stehen"
|
msgstr "Die Zeichenfolge „field_“ darf nicht am Beginn eines Feldnamens stehen"
|
||||||
|
|
@ -4128,15 +4177,15 @@ msgstr "Seite"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Beitrag"
|
msgstr "Beitrag"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relational"
|
msgstr "Relational"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Auswahl"
|
msgstr "Auswahl"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Grundlegend"
|
msgstr "Grundlegend"
|
||||||
|
|
||||||
|
|
@ -4164,7 +4213,7 @@ msgstr "Aktualisieren"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "E-Mail-Adresse bestätigen"
|
msgstr "E-Mail-Adresse bestätigen"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Inhalt"
|
msgstr "Inhalt"
|
||||||
|
|
||||||
|
|
@ -4173,8 +4222,8 @@ msgstr "Inhalt"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Feldgruppe bearbeiten"
|
msgstr "Feldgruppe bearbeiten"
|
||||||
|
|
||||||
|
|
@ -4231,59 +4280,59 @@ msgid "Has any value"
|
||||||
msgstr "Hat einen Wert"
|
msgstr "Hat einen Wert"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Abbrechen"
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Bist du sicher?"
|
msgstr "Bist du sicher?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d Felder erfordern Aufmerksamkeit"
|
msgstr "%d Felder erfordern Aufmerksamkeit"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 Feld erfordert Aufmerksamkeit"
|
msgstr "1 Feld erfordert Aufmerksamkeit"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Die Überprüfung ist fehlgeschlagen"
|
msgstr "Die Überprüfung ist fehlgeschlagen"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Die Überprüfung war erfolgreich"
|
msgstr "Die Überprüfung war erfolgreich"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Eingeschränkt"
|
msgstr "Eingeschränkt"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Details ausblenden"
|
msgstr "Details ausblenden"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Details einblenden"
|
msgstr "Details einblenden"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Zu diesem Beitrag hochgeladen"
|
msgstr "Zu diesem Beitrag hochgeladen"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4294,7 +4343,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Bearbeiten"
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Deine Änderungen werden verlorengehen, wenn du diese Seite verlässt"
|
msgstr "Deine Änderungen werden verlorengehen, wenn du diese Seite verlässt"
|
||||||
|
|
@ -4309,7 +4358,7 @@ msgstr "Der Dateityp muss %s sein."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4361,7 +4410,7 @@ msgstr "Vorschaubild"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(keine Beschriftung)"
|
msgstr "(keine Beschriftung)"
|
||||||
|
|
@ -4595,18 +4644,18 @@ msgid "File name"
|
||||||
msgstr "Dateiname"
|
msgstr "Dateiname"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Datei aktualisieren"
|
msgstr "Datei aktualisieren"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Datei bearbeiten"
|
msgstr "Datei bearbeiten"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Datei auswählen"
|
msgstr "Datei auswählen"
|
||||||
|
|
||||||
|
|
@ -4632,7 +4681,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Auswählen"
|
msgstr "Auswählen"
|
||||||
|
|
@ -4987,48 +5036,48 @@ msgstr "NULL-Werte zulassen?"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Übergeordnet"
|
msgstr "Übergeordnet"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird"
|
msgstr "TinyMCE wird erst initialisiert, wenn das Feld geklickt wird"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Soll die Initialisierung verzögert werden?"
|
msgstr "Soll die Initialisierung verzögert werden?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Sollen Buttons zum Hochladen von Medien anzeigt werden?"
|
msgstr "Sollen Buttons zum Hochladen von Medien anzeigt werden?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Werkzeugleiste"
|
msgstr "Werkzeugleiste"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Nur Text"
|
msgstr "Nur Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Nur visuell"
|
msgstr "Nur visuell"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuell und Text"
|
msgstr "Visuell und Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Tabs"
|
msgstr "Tabs"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Klicken, um TinyMCE zu initialisieren"
|
msgstr "Klicken, um TinyMCE zu initialisieren"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuell"
|
msgstr "Visuell"
|
||||||
|
|
||||||
|
|
@ -5105,7 +5154,7 @@ msgstr "Platzhaltertext"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Wird bei der Erstellung eines neuen Beitrags angezeigt"
|
msgstr "Wird bei der Erstellung eines neuen Beitrags angezeigt"
|
||||||
|
|
||||||
|
|
@ -5206,17 +5255,17 @@ msgid "Select post type"
|
||||||
msgstr "Inhaltstyp auswählen"
|
msgstr "Inhaltstyp auswählen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Es wurde keine Übereinstimmung gefunden"
|
msgstr "Es wurde keine Übereinstimmung gefunden"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Wird geladen"
|
msgstr "Wird geladen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Die maximal möglichen Werte wurden erreicht ({max} Werte)"
|
msgstr "Die maximal möglichen Werte wurden erreicht ({max} Werte)"
|
||||||
|
|
||||||
|
|
@ -5326,7 +5375,7 @@ msgstr "Bild hinzufügen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Es wurde kein Bild ausgewählt"
|
msgstr "Es wurde kein Bild ausgewählt"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5341,22 +5390,22 @@ msgid "Edit"
|
||||||
msgstr "Bearbeiten"
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Alle Bilder"
|
msgstr "Alle Bilder"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Bild aktualisieren"
|
msgstr "Bild aktualisieren"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Bild bearbeiten"
|
msgstr "Bild bearbeiten"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Bild auswählen"
|
msgstr "Bild auswählen"
|
||||||
|
|
||||||
|
|
@ -5441,16 +5490,16 @@ msgstr "Datumspicker"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Breite"
|
msgstr "Breite"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Einbettungs-Größe"
|
msgstr "Einbettungs-Größe"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "URL eingeben"
|
msgstr "URL eingeben"
|
||||||
|
|
||||||
|
|
@ -5491,7 +5540,7 @@ msgstr "Gestylte UI"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Standardwert"
|
msgstr "Standardwert"
|
||||||
|
|
||||||
|
|
@ -5505,13 +5554,13 @@ msgstr "Zeigt den Text neben dem Auswahlkästchen an"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mitteilung"
|
msgstr "Mitteilung"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5521,31 +5570,31 @@ msgstr "Ja"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Wahr/falsch"
|
msgstr "Wahr/falsch"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Reihe"
|
msgstr "Reihe"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabelle"
|
msgstr "Tabelle"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Block"
|
msgstr "Block"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Lege den Stil für die Darstellung der ausgewählten Felder fest"
|
msgstr "Lege den Stil für die Darstellung der ausgewählten Felder fest"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Untergeordnete Felder"
|
msgstr "Untergeordnete Felder"
|
||||||
|
|
||||||
|
|
@ -5560,7 +5609,7 @@ msgstr "Kartenhöhe anpassen"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Höhe"
|
msgstr "Höhe"
|
||||||
|
|
||||||
|
|
@ -5600,7 +5649,7 @@ msgid "Search"
|
||||||
msgstr "Suchen"
|
msgstr "Suchen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Dieser Browser unterstützt leider keine Standortbestimmung"
|
msgstr "Dieser Browser unterstützt leider keine Standortbestimmung"
|
||||||
|
|
||||||
|
|
@ -5803,9 +5852,9 @@ msgstr "Optionen aktualisiert"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
|
|
|
||||||
BIN
lang/acf-el.mo
BIN
lang/acf-el.mo
Binary file not shown.
285
lang/acf-el.po
285
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -613,16 +662,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2578,7 +2627,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[η προεπισκόπηση σύντομου κώδικα απενεργοποιήθηκε]"
|
msgstr "[η προεπισκόπηση σύντομου κώδικα απενεργοποιήθηκε]"
|
||||||
|
|
||||||
|
|
@ -2588,7 +2637,7 @@ msgid "Close Modal"
|
||||||
msgstr "Κλείσιμο αναδυομένου"
|
msgstr "Κλείσιμο αναδυομένου"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Το πεδίο μετακινήθηκε σε άλλη ομάδα"
|
msgstr "Το πεδίο μετακινήθηκε σε άλλη ομάδα"
|
||||||
|
|
@ -2667,8 +2716,8 @@ msgid ""
|
||||||
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||||
"started guide</a>."
|
"started guide</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Είστε καινούριοι στο ACF; Κάνετε μια περιήγηση στον <a href=\"%s\" target="
|
"Είστε καινούριοι στο ACF; Κάνετε μια περιήγηση στον <a href=\"%s\" "
|
||||||
"\"_blank\">οδηγό εκκίνησης για νέους</a>."
|
"target=\"_blank\">οδηγό εκκίνησης για νέους</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/list-empty.php:15
|
#: includes/admin/views/acf-field-group/list-empty.php:15
|
||||||
msgid "Add Field Group"
|
msgid "Add Field Group"
|
||||||
|
|
@ -2738,8 +2787,8 @@ msgid ""
|
||||||
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
||||||
"more</a>."
|
"more</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Επιλέξτε από περισσότερους από 30 τύπους πεδίων. <a href=\"%s\" target="
|
"Επιλέξτε από περισσότερους από 30 τύπους πεδίων. <a href=\"%s\" "
|
||||||
"\"_blank\">Μάθετε περισσότερα</a>."
|
"target=\"_blank\">Μάθετε περισσότερα</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/fields.php:65
|
#: includes/admin/views/acf-field-group/fields.php:65
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2766,16 +2815,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Προσθήκη Πεδίου"
|
msgstr "Προσθήκη Πεδίου"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Παρουσίαση"
|
msgstr "Παρουσίαση"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Επικύρωση"
|
msgstr "Επικύρωση"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Γενικά"
|
msgstr "Γενικά"
|
||||||
|
|
||||||
|
|
@ -2820,7 +2869,7 @@ msgid "Activate this item"
|
||||||
msgstr "Ενεργοποιήστε αυτό το αντικείμενο"
|
msgstr "Ενεργοποιήστε αυτό το αντικείμενο"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Να μεταφερθεί αυτή η ομάδα πεδίων στον κάδο;"
|
msgstr "Να μεταφερθεί αυτή η ομάδα πεδίων στον κάδο;"
|
||||||
|
|
@ -2849,17 +2898,17 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Ανιχνεύθηκαν μία ή περισσότερες κλήσεις για ανάκτηση "
|
"<strong>%1$s</strong> - Ανιχνεύθηκαν μία ή περισσότερες κλήσεις για ανάκτηση "
|
||||||
"τιμών πεδίων ACF προτού το ACF αρχικοποιηθεί. Αυτό δεν υποστηρίζεται και "
|
"τιμών πεδίων ACF προτού το ACF αρχικοποιηθεί. Αυτό δεν υποστηρίζεται και "
|
||||||
"μπορεί να καταλήξει σε παραποιημένα ή κενά. <a href=\"%2$s\" target=\"_blank"
|
"μπορεί να καταλήξει σε παραποιημένα ή κενά. <a href=\"%2$s\" "
|
||||||
"\">Μάθετε πώς να το διορθώσετε</a>."
|
"target=\"_blank\">Μάθετε πώς να το διορθώσετε</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3049,23 +3098,23 @@ msgstr "Φόρτωση διαφορών"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Ανασκόπηση τοπικών αλλαγών στο JSON"
|
msgstr "Ανασκόπηση τοπικών αλλαγών στο JSON"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Επισκεφθείτε τον ιστότοπο"
|
msgstr "Επισκεφθείτε τον ιστότοπο"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Προβολή λεπτομερειών"
|
msgstr "Προβολή λεπτομερειών"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Έκδοση %s"
|
msgstr "Έκδοση %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Πληροφορία"
|
msgstr "Πληροφορία"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3074,14 +3123,14 @@ msgstr ""
|
||||||
"Υποστήριξή μας θα σας βοηθήσουν με τις πιο προχωρημένες τεχνικές δυσκολίες "
|
"Υποστήριξή μας θα σας βοηθήσουν με τις πιο προχωρημένες τεχνικές δυσκολίες "
|
||||||
"σας."
|
"σας."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3091,7 +3140,7 @@ msgstr ""
|
||||||
"περιέχει αναφορές και οδηγούς για τις περισσότερες από τις περιπτώσεις που "
|
"περιέχει αναφορές και οδηγούς για τις περισσότερες από τις περιπτώσεις που "
|
||||||
"τυχόν συναντήσετε. "
|
"τυχόν συναντήσετε. "
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3101,11 +3150,11 @@ msgstr ""
|
||||||
"καλύτερο μέσα από τον ιστότοπό σας με το ACF. Αν συναντήσετε δυσκολίες, "
|
"καλύτερο μέσα από τον ιστότοπό σας με το ACF. Αν συναντήσετε δυσκολίες, "
|
||||||
"υπάρχουν πολλά σημεία στα οποία μπορείτε να αναζητήσετε βοήθεια:"
|
"υπάρχουν πολλά σημεία στα οποία μπορείτε να αναζητήσετε βοήθεια:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Βοήθεια & Υποστήριξη"
|
msgstr "Βοήθεια & Υποστήριξη"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3113,7 +3162,7 @@ msgstr ""
|
||||||
"Χρησιμοποιήστε την καρτέλα Βοήθεια & Υποστήριξη για να επικοινωνήστε μαζί "
|
"Χρησιμοποιήστε την καρτέλα Βοήθεια & Υποστήριξη για να επικοινωνήστε μαζί "
|
||||||
"μας στην περίπτωση που χρειαστείτε βοήθεια. "
|
"μας στην περίπτωση που χρειαστείτε βοήθεια. "
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3123,7 +3172,7 @@ msgstr ""
|
||||||
"τον οδηγό μας <a href=\"%s\" target=\"_blank\">Getting started</a> για να "
|
"τον οδηγό μας <a href=\"%s\" target=\"_blank\">Getting started</a> για να "
|
||||||
"εξοικειωθείτε με τη φιλοσοφία του προσθέτου και τις βέλτιστες πρακτικές του. "
|
"εξοικειωθείτε με τη φιλοσοφία του προσθέτου και τις βέλτιστες πρακτικές του. "
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3134,7 +3183,7 @@ msgstr ""
|
||||||
"νέα πεδία, καθώς και ένα διαισθητικό API για να παρουσιάζετε τις τιμές των "
|
"νέα πεδία, καθώς και ένα διαισθητικό API για να παρουσιάζετε τις τιμές των "
|
||||||
"custom field σε οποιοδήποτε template file ενός θέματος. "
|
"custom field σε οποιοδήποτε template file ενός θέματος. "
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Επισκόπηση"
|
msgstr "Επισκόπηση"
|
||||||
|
|
||||||
|
|
@ -3154,7 +3203,7 @@ msgstr "Μη έγκυρο nonce."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Σφάλμα κατά τη φόρτωση του πεδίου."
|
msgstr "Σφάλμα κατά τη φόρτωση του πεδίου."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Δεν βρέθηκε η τοποθεσία: %s"
|
msgstr "Δεν βρέθηκε η τοποθεσία: %s"
|
||||||
|
|
@ -3302,7 +3351,7 @@ msgid "Show this field if"
|
||||||
msgstr "Εμφάνιση αυτού του πεδίου αν"
|
msgstr "Εμφάνιση αυτού του πεδίου αν"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Λογική Υπό Συνθήκες"
|
msgstr "Λογική Υπό Συνθήκες"
|
||||||
|
|
||||||
|
|
@ -3348,15 +3397,15 @@ msgstr "Απαιτείται Αναβάθμιση Βάσης Δεδομένων"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Σελίδα Επιλογών"
|
msgstr "Σελίδα Επιλογών"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Συλλογή"
|
msgstr "Συλλογή"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Ευέλικτο Περιεχόμενο"
|
msgstr "Ευέλικτο Περιεχόμενο"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Επαναλήπτης"
|
msgstr "Επαναλήπτης"
|
||||||
|
|
||||||
|
|
@ -3605,7 +3654,7 @@ msgstr "Σύρετε για αναδιάταξη"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Εμφάνιση αυτής της ομάδας πεδίου αν"
|
msgstr "Εμφάνιση αυτής της ομάδας πεδίου αν"
|
||||||
|
|
@ -3783,7 +3832,7 @@ msgstr "Δημιουργία αντιγράφου αυτού του στοιχε
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Τεκμηρίωση"
|
msgstr "Τεκμηρίωση"
|
||||||
|
|
||||||
|
|
@ -3886,7 +3935,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "αντιγραφή"
|
msgstr "αντιγραφή"
|
||||||
|
|
@ -3904,7 +3953,7 @@ msgid "Checked"
|
||||||
msgstr "Επιλεγμένο"
|
msgstr "Επιλεγμένο"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Μετακίνηση Προσαρμοσμένου Πεδίου"
|
msgstr "Μετακίνηση Προσαρμοσμένου Πεδίου"
|
||||||
|
|
@ -3920,14 +3969,14 @@ msgid "Field group title is required"
|
||||||
msgstr "Ο τίτλος του field group είναι απαραίτητος"
|
msgstr "Ο τίτλος του field group είναι απαραίτητος"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Αυτό το πεδίο δεν μπορεί να μετακινηθεί μέχρι να αποθηκευτούν οι αλλαγές του"
|
"Αυτό το πεδίο δεν μπορεί να μετακινηθεί μέχρι να αποθηκευτούν οι αλλαγές του"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3996,15 +4045,15 @@ msgstr "Σελίδα"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Άρθρο"
|
msgstr "Άρθρο"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Υπό Συνθήκες"
|
msgstr "Υπό Συνθήκες"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Επιλογή"
|
msgstr "Επιλογή"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Βασικό"
|
msgstr "Βασικό"
|
||||||
|
|
||||||
|
|
@ -4032,7 +4081,7 @@ msgstr "Ενημέρωση"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Επιβεβαίωση Ηλεκτρονικού Ταχυδρομείου"
|
msgstr "Επιβεβαίωση Ηλεκτρονικού Ταχυδρομείου"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Περιεχόμενο"
|
msgstr "Περιεχόμενο"
|
||||||
|
|
||||||
|
|
@ -4041,8 +4090,8 @@ msgstr "Περιεχόμενο"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Τίτλος"
|
msgstr "Τίτλος"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Επεξεργασία field group"
|
msgstr "Επεξεργασία field group"
|
||||||
|
|
||||||
|
|
@ -4099,59 +4148,59 @@ msgid "Has any value"
|
||||||
msgstr "Να έχει οποιαδήποτε τιμή"
|
msgstr "Να έχει οποιαδήποτε τιμή"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Ακύρωση"
|
msgstr "Ακύρωση"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Είστε σίγουροι;"
|
msgstr "Είστε σίγουροι;"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d πεδία χρήζουν προσοχής"
|
msgstr "%d πεδία χρήζουν προσοχής"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 πεδίο χρήζει προσοχής"
|
msgstr "1 πεδίο χρήζει προσοχής"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Ο έλεγχος απέτυχε"
|
msgstr "Ο έλεγχος απέτυχε"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Ο έλεγχος πέτυχε"
|
msgstr "Ο έλεγχος πέτυχε"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Περιορισμένος"
|
msgstr "Περιορισμένος"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Σύμπτυξη Λεπτομερειών"
|
msgstr "Σύμπτυξη Λεπτομερειών"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ανάπτυξη Λεπτομερειών"
|
msgstr "Ανάπτυξη Λεπτομερειών"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Να έχουν μεταφορτωθεί σε αυτή την ανάρτηση"
|
msgstr "Να έχουν μεταφορτωθεί σε αυτή την ανάρτηση"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4162,7 +4211,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Επεξεργασία"
|
msgstr "Επεξεργασία"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Οι αλλαγές που έχετε κάνει θα χαθούν αν φύγετε από αυτή τη σελίδα."
|
msgstr "Οι αλλαγές που έχετε κάνει θα χαθούν αν φύγετε από αυτή τη σελίδα."
|
||||||
|
|
@ -4177,7 +4226,7 @@ msgstr "Ο τύπος του πεδίου πρέπει να είναι %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4229,7 +4278,7 @@ msgstr "Μικρογραφία"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(χωρίς ετικέτα)"
|
msgstr "(χωρίς ετικέτα)"
|
||||||
|
|
@ -4461,18 +4510,18 @@ msgid "File name"
|
||||||
msgstr "Όνομα αρχείου"
|
msgstr "Όνομα αρχείου"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Ενημέρωση Αρχείου"
|
msgstr "Ενημέρωση Αρχείου"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Επεξεργασία Αρχείου"
|
msgstr "Επεξεργασία Αρχείου"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Επιλογή Αρχείου"
|
msgstr "Επιλογή Αρχείου"
|
||||||
|
|
||||||
|
|
@ -4498,7 +4547,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Εισαγάγετε την κάθε προεπιλεγμένη τιμή σε μια νέα γραμμή"
|
msgstr "Εισαγάγετε την κάθε προεπιλεγμένη τιμή σε μια νέα γραμμή"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Επιλέξτε"
|
msgstr "Επιλέξτε"
|
||||||
|
|
@ -4852,48 +4901,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Γονέας"
|
msgstr "Γονέας"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "Ο TinyMCE δε θα αρχικοποιηθεί έως ότου ο χρήστης κλικάρει το πεδίο"
|
msgstr "Ο TinyMCE δε θα αρχικοποιηθεί έως ότου ο χρήστης κλικάρει το πεδίο"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Γραμμή εργαλείων"
|
msgstr "Γραμμή εργαλείων"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Μόνο Κείμενο"
|
msgstr "Μόνο Κείμενο"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Μόνο Οπτικός"
|
msgstr "Μόνο Οπτικός"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Οπτικός & Κείμενο"
|
msgstr "Οπτικός & Κείμενο"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Καρτέλες"
|
msgstr "Καρτέλες"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Κάνετε κλικ για να αρχικοποιηθεί ο TinyMCE"
|
msgstr "Κάνετε κλικ για να αρχικοποιηθεί ο TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Κείμενο"
|
msgstr "Κείμενο"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Οπτικός"
|
msgstr "Οπτικός"
|
||||||
|
|
||||||
|
|
@ -4970,7 +5019,7 @@ msgstr "Υποκατάστατο Κείμενο"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Εμφανίζεται κατά τη δημιουργία νέου post"
|
msgstr "Εμφανίζεται κατά τη δημιουργία νέου post"
|
||||||
|
|
||||||
|
|
@ -5071,17 +5120,17 @@ msgid "Select post type"
|
||||||
msgstr "Επιλογή τύπου άρθρου"
|
msgstr "Επιλογή τύπου άρθρου"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Δεν βρέθηκαν αντιστοιχίες"
|
msgstr "Δεν βρέθηκαν αντιστοιχίες"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Φόρτωση"
|
msgstr "Φόρτωση"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Αγγίξατε το μέγιστο πλήθος τιμών ( {max} τιμές )"
|
msgstr "Αγγίξατε το μέγιστο πλήθος τιμών ( {max} τιμές )"
|
||||||
|
|
||||||
|
|
@ -5190,7 +5239,7 @@ msgstr "Προσθήκη Εικόνας"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Δεν επιλέχθηκε εικόνα"
|
msgstr "Δεν επιλέχθηκε εικόνα"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5205,22 +5254,22 @@ msgid "Edit"
|
||||||
msgstr "Επεξεργασία"
|
msgstr "Επεξεργασία"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Όλες οι εικόνες"
|
msgstr "Όλες οι εικόνες"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Ενημέρωση Εικόνας"
|
msgstr "Ενημέρωση Εικόνας"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Επεξεργασία Εικόνας"
|
msgstr "Επεξεργασία Εικόνας"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Επιλογή Εικόνας"
|
msgstr "Επιλογή Εικόνας"
|
||||||
|
|
||||||
|
|
@ -5307,16 +5356,16 @@ msgstr "Επιλογέας Ημερομηνίας"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Πλάτος"
|
msgstr "Πλάτος"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Διαστάσεις Embed"
|
msgstr "Διαστάσεις Embed"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Εισάγετε URL"
|
msgstr "Εισάγετε URL"
|
||||||
|
|
||||||
|
|
@ -5357,7 +5406,7 @@ msgstr "Στυλιζαρισμένο"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Προεπιλεγμένη Τιμή"
|
msgstr "Προεπιλεγμένη Τιμή"
|
||||||
|
|
||||||
|
|
@ -5371,13 +5420,13 @@ msgstr "Εμφανίζει κείμενο δίπλα στο πεδίο επιλ
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Μήνυμα"
|
msgstr "Μήνυμα"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Όχι"
|
msgstr "Όχι"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5387,33 +5436,33 @@ msgstr "Ναι"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "True / False"
|
msgstr "True / False"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Γραμμή"
|
msgstr "Γραμμή"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Πίνακας"
|
msgstr "Πίνακας"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Μπλοκ"
|
msgstr "Μπλοκ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Επιλογή του στυλ που θα χρησιμοποιηθεί για την εμφάνιση των επιλεγμένων "
|
"Επιλογή του στυλ που θα χρησιμοποιηθεί για την εμφάνιση των επιλεγμένων "
|
||||||
"πεδίων"
|
"πεδίων"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Διάταξη"
|
msgstr "Διάταξη"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Υποπεδία"
|
msgstr "Υποπεδία"
|
||||||
|
|
||||||
|
|
@ -5428,7 +5477,7 @@ msgstr "Τροποποίηση ύψους χάρτη"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Ύψος"
|
msgstr "Ύψος"
|
||||||
|
|
||||||
|
|
@ -5468,7 +5517,7 @@ msgid "Search"
|
||||||
msgstr "Αναζήτηση"
|
msgstr "Αναζήτηση"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Λυπούμαστε, αυτός ο περιηγητής δεν υποστηρίζει λειτουργία γεωεντοπισμού"
|
"Λυπούμαστε, αυτός ο περιηγητής δεν υποστηρίζει λειτουργία γεωεντοπισμού"
|
||||||
|
|
|
||||||
Binary file not shown.
1570
lang/acf-en_CA.po
1570
lang/acf-en_CA.po
File diff suppressed because it is too large
Load Diff
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,64 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr "Please contact your site admin for more details."
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr "Learn how to fix"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr "Hide details"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr "Show details"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr "Renew ACF PRO Licence"
|
msgstr "Renew ACF PRO Licence"
|
||||||
|
|
@ -106,26 +164,26 @@ msgid "Add fields"
|
||||||
msgstr "Add fields"
|
msgstr "Add fields"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "This Field"
|
msgstr "This Field"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Feedback"
|
msgstr "Feedback"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Support"
|
msgstr "Support"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "is developed and maintained by"
|
msgstr "is developed and maintained by"
|
||||||
|
|
||||||
|
|
@ -657,7 +715,7 @@ msgstr ""
|
||||||
"Allows you to group and organise custom fields into collapsable panels that "
|
"Allows you to group and organise custom fields into collapsable panels that "
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -667,7 +725,7 @@ msgstr ""
|
||||||
"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."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -679,7 +737,7 @@ msgstr ""
|
||||||
"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."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
|
|
@ -689,7 +747,7 @@ msgstr ""
|
||||||
"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."
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -701,16 +759,16 @@ msgstr ""
|
||||||
"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."
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clone"
|
msgstr "Clone"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Advanced"
|
msgstr "Advanced"
|
||||||
|
|
||||||
|
|
@ -2643,14 +2701,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Post type deleted."
|
msgstr "Post type deleted."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Type to search..."
|
msgstr "Type to search..."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2663,7 +2721,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Field groups linked successfully."
|
msgstr "Field groups linked successfully."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2671,7 +2729,7 @@ msgstr ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2760,7 +2818,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[ACF shortcode value disabled for preview]"
|
msgstr "[ACF shortcode value disabled for preview]"
|
||||||
|
|
||||||
|
|
@ -2770,7 +2828,7 @@ msgid "Close Modal"
|
||||||
msgstr "Close Modal"
|
msgstr "Close Modal"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Field moved to other group"
|
msgstr "Field moved to other group"
|
||||||
|
|
@ -2945,16 +3003,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Add Field"
|
msgstr "Add Field"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Presentation"
|
msgstr "Presentation"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validation"
|
msgstr "Validation"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "General"
|
msgstr "General"
|
||||||
|
|
||||||
|
|
@ -2999,7 +3057,7 @@ msgid "Activate this item"
|
||||||
msgstr "Activate this item"
|
msgstr "Activate this item"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Move field group to trash?"
|
msgstr "Move field group to trash?"
|
||||||
|
|
@ -3032,17 +3090,17 @@ 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."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3231,42 +3289,42 @@ msgstr "Loading diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Review local JSON changes"
|
msgstr "Review local JSON changes"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visit website"
|
msgstr "Visit website"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "View details"
|
msgstr "View details"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Version %s"
|
msgstr "Version %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:166
|
||||||
|
msgid ""
|
||||||
|
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
||||||
|
"our Help Desk will assist with your more in depth, technical challenges."
|
||||||
|
msgstr ""
|
||||||
|
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
||||||
|
"our Help Desk will assist with your more in depth, technical challenges."
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:162
|
||||||
|
msgid ""
|
||||||
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
|
"friendly community on our Community Forums who may be able to help you "
|
||||||
|
"figure out the 'how-tos' of the ACF world."
|
||||||
|
msgstr ""
|
||||||
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
|
"friendly community on our Community Forums who may be able to help you "
|
||||||
|
"figure out the 'how-tos' of the ACF world."
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
|
||||||
"our Help Desk will assist with your more in depth, technical challenges."
|
|
||||||
msgstr ""
|
|
||||||
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. The support professionals on "
|
|
||||||
"our Help Desk will assist with your more in depth, technical challenges."
|
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
|
||||||
msgid ""
|
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
|
||||||
"friendly community on our Community Forums who may be able to help you "
|
|
||||||
"figure out the 'how-tos' of the ACF world."
|
|
||||||
msgstr ""
|
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
|
||||||
"friendly community on our Community Forums who may be able to help you "
|
|
||||||
"figure out the 'how-tos' of the ACF world."
|
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
|
||||||
msgid ""
|
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
|
|
@ -3275,7 +3333,7 @@ msgstr ""
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3285,11 +3343,11 @@ msgstr ""
|
||||||
"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:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Help & Support"
|
msgstr "Help & Support"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3297,7 +3355,7 @@ msgstr ""
|
||||||
"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."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3307,7 +3365,7 @@ msgstr ""
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarise "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarise "
|
||||||
"yourself with the plugin's philosophy and best practises."
|
"yourself with the plugin's philosophy and best practises."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3317,7 +3375,7 @@ msgstr ""
|
||||||
"customise WordPress edit screens with extra fields, and an intuitive API to "
|
"customise 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."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Overview"
|
msgstr "Overview"
|
||||||
|
|
||||||
|
|
@ -3337,7 +3395,7 @@ msgstr "Invalid nonce."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error loading field."
|
msgstr "Error loading field."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Location not found: %s"
|
msgstr "Location not found: %s"
|
||||||
|
|
@ -3485,7 +3543,7 @@ msgid "Show this field if"
|
||||||
msgstr "Show this field if"
|
msgstr "Show this field if"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Conditional Logic"
|
msgstr "Conditional Logic"
|
||||||
|
|
||||||
|
|
@ -3529,15 +3587,15 @@ msgstr "Database Upgrade Required"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Options Page"
|
msgstr "Options Page"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Gallery"
|
msgstr "Gallery"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Flexible Content"
|
msgstr "Flexible Content"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repeater"
|
msgstr "Repeater"
|
||||||
|
|
||||||
|
|
@ -3783,7 +3841,7 @@ msgstr "Drag to reorder"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Show this field group if"
|
msgstr "Show this field group if"
|
||||||
|
|
@ -3963,7 +4021,7 @@ msgstr "Duplicate this item"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Supports"
|
msgstr "Supports"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentation"
|
msgstr "Documentation"
|
||||||
|
|
||||||
|
|
@ -4066,7 +4124,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copy"
|
msgstr "copy"
|
||||||
|
|
@ -4084,7 +4142,7 @@ msgid "Checked"
|
||||||
msgstr "Checked"
|
msgstr "Checked"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Move Custom Field"
|
msgstr "Move Custom Field"
|
||||||
|
|
@ -4100,13 +4158,13 @@ msgid "Field group title is required"
|
||||||
msgstr "Field group title is required"
|
msgstr "Field group title is required"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "This field cannot be moved until its changes have been saved"
|
msgstr "This field cannot be moved until its changes have been saved"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "The string \"field_\" may not be used at the start of a field name"
|
msgstr "The string \"field_\" may not be used at the start of a field name"
|
||||||
|
|
@ -4173,15 +4231,15 @@ msgstr "Page"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Post"
|
msgstr "Post"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relational"
|
msgstr "Relational"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Choice"
|
msgstr "Choice"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Basic"
|
msgstr "Basic"
|
||||||
|
|
||||||
|
|
@ -4209,7 +4267,7 @@ msgstr "Update"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validate Email"
|
msgstr "Validate Email"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Content"
|
msgstr "Content"
|
||||||
|
|
||||||
|
|
@ -4218,8 +4276,8 @@ msgstr "Content"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Title"
|
msgstr "Title"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Edit field group"
|
msgstr "Edit field group"
|
||||||
|
|
||||||
|
|
@ -4276,59 +4334,59 @@ msgid "Has any value"
|
||||||
msgstr "Has any value"
|
msgstr "Has any value"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancel"
|
msgstr "Cancel"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Are you sure?"
|
msgstr "Are you sure?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d fields require attention"
|
msgstr "%d fields require attention"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 field requires attention"
|
msgstr "1 field requires attention"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validation failed"
|
msgstr "Validation failed"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validation successful"
|
msgstr "Validation successful"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restricted"
|
msgstr "Restricted"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Collapse Details"
|
msgstr "Collapse Details"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Expand Details"
|
msgstr "Expand Details"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Uploaded to this post"
|
msgstr "Uploaded to this post"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4339,7 +4397,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "The changes you made will be lost if you navigate away from this page"
|
msgstr "The changes you made will be lost if you navigate away from this page"
|
||||||
|
|
@ -4354,7 +4412,7 @@ msgstr "File type must be %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4406,7 +4464,7 @@ msgstr "Thumbnail"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(no label)"
|
msgstr "(no label)"
|
||||||
|
|
@ -4638,18 +4696,18 @@ msgid "File name"
|
||||||
msgstr "File name"
|
msgstr "File name"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Update File"
|
msgstr "Update File"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Edit File"
|
msgstr "Edit File"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Select File"
|
msgstr "Select File"
|
||||||
|
|
||||||
|
|
@ -4675,7 +4733,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Enter each default value on a new line"
|
msgstr "Enter each default value on a new line"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Select"
|
msgstr "Select"
|
||||||
|
|
@ -5026,48 +5084,48 @@ msgstr "Allow Null"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Parent"
|
msgstr "Parent"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE will not be initialised until field is clicked"
|
msgstr "TinyMCE will not be initialised until field is clicked"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Delay Initialisation"
|
msgstr "Delay Initialisation"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Show Media Upload Buttons"
|
msgstr "Show Media Upload Buttons"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Toolbar"
|
msgstr "Toolbar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Text Only"
|
msgstr "Text Only"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Visual Only"
|
msgstr "Visual Only"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual and Text"
|
msgstr "Visual and Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Tabs"
|
msgstr "Tabs"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Click to initialise TinyMCE"
|
msgstr "Click to initialise TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -5144,7 +5202,7 @@ msgstr "Placeholder Text"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Appears when creating a new post"
|
msgstr "Appears when creating a new post"
|
||||||
|
|
||||||
|
|
@ -5245,17 +5303,17 @@ msgid "Select post type"
|
||||||
msgstr "Select post type"
|
msgstr "Select post type"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No matches found"
|
msgstr "No matches found"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Loading"
|
msgstr "Loading"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Maximum values reached ( {max} values )"
|
msgstr "Maximum values reached ( {max} values )"
|
||||||
|
|
||||||
|
|
@ -5364,7 +5422,7 @@ msgstr "Add Image"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No image selected"
|
msgstr "No image selected"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5379,22 +5437,22 @@ msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "All images"
|
msgstr "All images"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Update Image"
|
msgstr "Update Image"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Edit Image"
|
msgstr "Edit Image"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Select Image"
|
msgstr "Select Image"
|
||||||
|
|
||||||
|
|
@ -5479,16 +5537,16 @@ msgstr "Date Picker"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Width"
|
msgstr "Width"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Embed Size"
|
msgstr "Embed Size"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Enter URL"
|
msgstr "Enter URL"
|
||||||
|
|
||||||
|
|
@ -5529,7 +5587,7 @@ msgstr "Stylised UI"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Default Value"
|
msgstr "Default Value"
|
||||||
|
|
||||||
|
|
@ -5543,13 +5601,13 @@ msgstr "Displays text alongside the checkbox"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Message"
|
msgstr "Message"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5559,31 +5617,31 @@ msgstr "Yes"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "True / False"
|
msgstr "True / False"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Row"
|
msgstr "Row"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Table"
|
msgstr "Table"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Block"
|
msgstr "Block"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Specify the style used to render the selected fields"
|
msgstr "Specify the style used to render the selected fields"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Sub Fields"
|
msgstr "Sub Fields"
|
||||||
|
|
||||||
|
|
@ -5598,7 +5656,7 @@ msgstr "Customise the map height"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Height"
|
msgstr "Height"
|
||||||
|
|
||||||
|
|
@ -5638,7 +5696,7 @@ msgid "Search"
|
||||||
msgstr "Search"
|
msgstr "Search"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Sorry, this browser does not support geolocation"
|
msgstr "Sorry, this browser does not support geolocation"
|
||||||
|
|
||||||
|
|
@ -5856,9 +5914,9 @@ msgstr ""
|
||||||
#. translators: %1 A link to the updates page. %2 link to the pricing page
|
#. translators: %1 A link to the updates page. %2 link to the pricing page
|
||||||
#: pro/updates.php:74
|
#: pro/updates.php:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a license key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a license key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"To enable updates, please enter your licence key on the <a "
|
"To enable updates, please enter your licence key on the <a "
|
||||||
"href=“%1$s”>Updates</a> page. If you don’t have a licence key, please see <a "
|
"href=“%1$s”>Updates</a> page. If you don’t have a licence key, please see <a "
|
||||||
|
|
@ -5866,9 +5924,9 @@ msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:70
|
#: pro/updates.php:70
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page of the main site. If you don't have a license key, "
|
"href=\"%1$s\">Updates</a> page of the main site. If you don't have a license "
|
||||||
"please see <a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"key, please see <a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"To enable updates, please enter your licence key on the <a "
|
"To enable updates, please enter your licence key on the <a "
|
||||||
"href=“%1$s”>Updates</a> page of the main site. If you don’t have a licence "
|
"href=“%1$s”>Updates</a> page of the main site. If you don’t have a licence "
|
||||||
|
|
@ -5984,8 +6042,8 @@ msgstr ""
|
||||||
#. translators: %s - URL to ACF updates page
|
#. translators: %s - URL to ACF updates page
|
||||||
#: pro/updates.php:727
|
#: pro/updates.php:727
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your license key is valid but not activated on this site. Please <a href=\"%s"
|
"Your license key is valid but not activated on this site. Please <a "
|
||||||
"\">deactivate</a> and then reactivate the license."
|
"href=\"%s\">deactivate</a> and then reactivate the license."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Your licence key is valid but not activated on this site. Please <a "
|
"Your licence key is valid but not activated on this site. Please <a "
|
||||||
"href=“%s”>deactivate</a> and then reactivate the licence."
|
"href=“%s”>deactivate</a> and then reactivate the licence."
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: en_ZA\n"
|
"Language: en_ZA\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -613,16 +662,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2576,7 +2625,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2586,7 +2635,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2753,16 +2802,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2807,7 +2856,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2836,12 +2885,12 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
|
|
@ -3031,23 +3080,23 @@ msgstr "Loading diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Review local JSON changes"
|
msgstr "Review local JSON changes"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visit website"
|
msgstr "Visit website"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "View details"
|
msgstr "View details"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Version %s"
|
msgstr "Version %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Information"
|
msgstr "Information"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3055,14 +3104,14 @@ msgstr ""
|
||||||
"<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."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3072,7 +3121,7 @@ msgstr ""
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3082,11 +3131,11 @@ msgstr ""
|
||||||
"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:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Help & Support"
|
msgstr "Help & Support"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3094,7 +3143,7 @@ msgstr ""
|
||||||
"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."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3104,7 +3153,7 @@ msgstr ""
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarise "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarise "
|
||||||
"yourself with the plugin's philosophy and best practises."
|
"yourself with the plugin's philosophy and best practises."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3114,7 +3163,7 @@ msgstr ""
|
||||||
"customise WordPress edit screens with extra fields, and an intuitive API to "
|
"customise 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."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Overview"
|
msgstr "Overview"
|
||||||
|
|
||||||
|
|
@ -3134,7 +3183,7 @@ msgstr "Invalid nonce."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error loading field."
|
msgstr "Error loading field."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Location not found: %s"
|
msgstr "Location not found: %s"
|
||||||
|
|
@ -3282,7 +3331,7 @@ msgid "Show this field if"
|
||||||
msgstr "Show this field if"
|
msgstr "Show this field if"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Conditional Logic"
|
msgstr "Conditional Logic"
|
||||||
|
|
||||||
|
|
@ -3326,15 +3375,15 @@ msgstr "Database Upgrade Required"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Options Page"
|
msgstr "Options Page"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Gallery"
|
msgstr "Gallery"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Flexible Content"
|
msgstr "Flexible Content"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repeater"
|
msgstr "Repeater"
|
||||||
|
|
||||||
|
|
@ -3580,7 +3629,7 @@ msgstr "Drag to reorder"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Show this field group if"
|
msgstr "Show this field group if"
|
||||||
|
|
@ -3754,7 +3803,7 @@ msgstr "Duplicate this item"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3857,7 +3906,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copy"
|
msgstr "copy"
|
||||||
|
|
@ -3875,7 +3924,7 @@ msgid "Checked"
|
||||||
msgstr "Checked"
|
msgstr "Checked"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Move Custom Field"
|
msgstr "Move Custom Field"
|
||||||
|
|
@ -3891,13 +3940,13 @@ msgid "Field group title is required"
|
||||||
msgstr "Field group title is required"
|
msgstr "Field group title is required"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "This field cannot be moved until its changes have been saved"
|
msgstr "This field cannot be moved until its changes have been saved"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "The string \"field_\" may not be used at the start of a field name"
|
msgstr "The string \"field_\" may not be used at the start of a field name"
|
||||||
|
|
@ -3964,15 +4013,15 @@ msgstr "Page"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Post"
|
msgstr "Post"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relational"
|
msgstr "Relational"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Choice"
|
msgstr "Choice"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Basic"
|
msgstr "Basic"
|
||||||
|
|
||||||
|
|
@ -4000,7 +4049,7 @@ msgstr "Update"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validate Email"
|
msgstr "Validate Email"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Content"
|
msgstr "Content"
|
||||||
|
|
||||||
|
|
@ -4009,8 +4058,8 @@ msgstr "Content"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Title"
|
msgstr "Title"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Edit field group"
|
msgstr "Edit field group"
|
||||||
|
|
||||||
|
|
@ -4067,59 +4116,59 @@ msgid "Has any value"
|
||||||
msgstr "Has any value"
|
msgstr "Has any value"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancel"
|
msgstr "Cancel"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Are you sure?"
|
msgstr "Are you sure?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d fields require attention"
|
msgstr "%d fields require attention"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 field requires attention"
|
msgstr "1 field requires attention"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validation failed"
|
msgstr "Validation failed"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validation successful"
|
msgstr "Validation successful"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restricted"
|
msgstr "Restricted"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Collapse Details"
|
msgstr "Collapse Details"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Expand Details"
|
msgstr "Expand Details"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Uploaded to this post"
|
msgstr "Uploaded to this post"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4130,7 +4179,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "The changes you made will be lost if you navigate away from this page"
|
msgstr "The changes you made will be lost if you navigate away from this page"
|
||||||
|
|
@ -4145,7 +4194,7 @@ msgstr "File type must be %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4197,7 +4246,7 @@ msgstr "Thumbnail"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(no label)"
|
msgstr "(no label)"
|
||||||
|
|
@ -4429,18 +4478,18 @@ msgid "File name"
|
||||||
msgstr "File name"
|
msgstr "File name"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Update File"
|
msgstr "Update File"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Edit File"
|
msgstr "Edit File"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Select File"
|
msgstr "Select File"
|
||||||
|
|
||||||
|
|
@ -4466,7 +4515,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Enter each default value on a new line"
|
msgstr "Enter each default value on a new line"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Select"
|
msgstr "Select"
|
||||||
|
|
@ -4817,48 +4866,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Parent"
|
msgstr "Parent"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE will not be initialised until field is clicked"
|
msgstr "TinyMCE will not be initialised until field is clicked"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Toolbar"
|
msgstr "Toolbar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Text Only"
|
msgstr "Text Only"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Visual Only"
|
msgstr "Visual Only"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual & Text"
|
msgstr "Visual & Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Tabs"
|
msgstr "Tabs"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Click to initialise TinyMCE"
|
msgstr "Click to initialise TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -4935,7 +4984,7 @@ msgstr "Placeholder Text"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Appears when creating a new post"
|
msgstr "Appears when creating a new post"
|
||||||
|
|
||||||
|
|
@ -5036,17 +5085,17 @@ msgid "Select post type"
|
||||||
msgstr "Select post type"
|
msgstr "Select post type"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No matches found"
|
msgstr "No matches found"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Loading"
|
msgstr "Loading"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Maximum values reached ( {max} values )"
|
msgstr "Maximum values reached ( {max} values )"
|
||||||
|
|
||||||
|
|
@ -5155,7 +5204,7 @@ msgstr "Add Image"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No image selected"
|
msgstr "No image selected"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5170,22 +5219,22 @@ msgid "Edit"
|
||||||
msgstr "Edit"
|
msgstr "Edit"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "All images"
|
msgstr "All images"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Update Image"
|
msgstr "Update Image"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Edit Image"
|
msgstr "Edit Image"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Select Image"
|
msgstr "Select Image"
|
||||||
|
|
||||||
|
|
@ -5270,16 +5319,16 @@ msgstr "Date Picker"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Width"
|
msgstr "Width"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Embed Size"
|
msgstr "Embed Size"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Enter URL"
|
msgstr "Enter URL"
|
||||||
|
|
||||||
|
|
@ -5320,7 +5369,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Default Value"
|
msgstr "Default Value"
|
||||||
|
|
||||||
|
|
@ -5334,13 +5383,13 @@ msgstr "Displays text alongside the checkbox"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Message"
|
msgstr "Message"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5350,31 +5399,31 @@ msgstr "Yes"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "True / False"
|
msgstr "True / False"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Row"
|
msgstr "Row"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Table"
|
msgstr "Table"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Block"
|
msgstr "Block"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Specify the style used to render the selected fields"
|
msgstr "Specify the style used to render the selected fields"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Sub Fields"
|
msgstr "Sub Fields"
|
||||||
|
|
||||||
|
|
@ -5389,7 +5438,7 @@ msgstr "Customise the map height"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Height"
|
msgstr "Height"
|
||||||
|
|
||||||
|
|
@ -5429,7 +5478,7 @@ msgid "Search"
|
||||||
msgstr "Search"
|
msgstr "Search"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Sorry, this browser does not support geolocation"
|
msgstr "Sorry, this browser does not support geolocation"
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: es_CO\n"
|
"Language: es_CO\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -613,16 +662,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2576,7 +2625,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2586,7 +2635,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2753,16 +2802,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2807,7 +2856,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2836,17 +2885,17 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Hemos detectado una o más llamadas para obtener "
|
"<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 "
|
"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"
|
"compatible y puede ocasionar datos mal formados o faltantes. <a "
|
||||||
"\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
"href=\"%2$s\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3035,23 +3084,23 @@ msgstr "Cargando diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisar cambios de JSON local"
|
msgstr "Revisar cambios de JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visitar web"
|
msgstr "Visitar web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Ver detalles"
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versión %s"
|
msgstr "Versión %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3060,14 +3109,14 @@ msgstr ""
|
||||||
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
||||||
"retos técnicos."
|
"retos técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3077,7 +3126,7 @@ msgstr ""
|
||||||
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
||||||
"las que puedas encontrarte."
|
"las que puedas encontrarte."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3086,11 +3135,11 @@ msgstr ""
|
||||||
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
||||||
"ACF:"
|
"ACF:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ayuda y soporte"
|
msgstr "Ayuda y soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3098,7 +3147,7 @@ msgstr ""
|
||||||
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
||||||
"necesitas ayuda."
|
"necesitas ayuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3108,7 +3157,7 @@ msgstr ""
|
||||||
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
||||||
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3119,7 +3168,7 @@ msgstr ""
|
||||||
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
||||||
"archivo de plantilla de cualquier tema."
|
"archivo de plantilla de cualquier tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resumen"
|
msgstr "Resumen"
|
||||||
|
|
||||||
|
|
@ -3139,7 +3188,7 @@ msgstr "Nonce no válido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error al cargar el campo."
|
msgstr "Error al cargar el campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Ubicación no encontrada: %s"
|
msgstr "Ubicación no encontrada: %s"
|
||||||
|
|
@ -3287,7 +3336,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostrar este campo si"
|
msgstr "Mostrar este campo si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lógica condicional"
|
msgstr "Lógica condicional"
|
||||||
|
|
||||||
|
|
@ -3333,15 +3382,15 @@ msgstr "Es necesario actualizar la base de datos"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Página de opciones"
|
msgstr "Página de opciones"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galería"
|
msgstr "Galería"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenido flexible"
|
msgstr "Contenido flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetidor"
|
msgstr "Repetidor"
|
||||||
|
|
||||||
|
|
@ -3590,7 +3639,7 @@ msgstr "Arrastra para reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostrar este grupo de campos si"
|
msgstr "Mostrar este grupo de campos si"
|
||||||
|
|
@ -3767,7 +3816,7 @@ msgstr "Duplicar este elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3870,7 +3919,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copiar"
|
msgstr "copiar"
|
||||||
|
|
@ -3888,7 +3937,7 @@ msgid "Checked"
|
||||||
msgstr "Seleccionado"
|
msgstr "Seleccionado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mover campo personalizado"
|
msgstr "Mover campo personalizado"
|
||||||
|
|
@ -3904,13 +3953,13 @@ msgid "Field group title is required"
|
||||||
msgstr "El título del grupo de campos es obligatorio"
|
msgstr "El título del grupo de campos es obligatorio"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3978,15 +4027,15 @@ msgstr "Página"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relación"
|
msgstr "Relación"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elección"
|
msgstr "Elección"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
||||||
|
|
@ -4014,7 +4063,7 @@ msgstr "Actualizar"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
|
|
@ -4023,8 +4072,8 @@ msgstr "Contenido"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
|
|
@ -4081,59 +4130,59 @@ msgid "Has any value"
|
||||||
msgstr "No tiene algún valor"
|
msgstr "No tiene algún valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "¿Estás seguro?"
|
msgstr "¿Estás seguro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campos requieren atención"
|
msgstr "%d campos requieren atención"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo requiere atención"
|
msgstr "1 campo requiere atención"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validación fallida"
|
msgstr "Validación fallida"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validación correcta"
|
msgstr "Validación correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restringido"
|
msgstr "Restringido"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Colapsar detalles"
|
msgstr "Colapsar detalles"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ampliar detalles"
|
msgstr "Ampliar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Subido a esta entrada"
|
msgstr "Subido a esta entrada"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4144,7 +4193,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
||||||
|
|
@ -4159,7 +4208,7 @@ msgstr "El tipo de archivo debe ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4211,7 +4260,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sin etiqueta)"
|
msgstr "(sin etiqueta)"
|
||||||
|
|
@ -4444,18 +4493,18 @@ msgid "File name"
|
||||||
msgstr "Nombre del archivo"
|
msgstr "Nombre del archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualizar archivo"
|
msgstr "Actualizar archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Editar archivo"
|
msgstr "Editar archivo"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleccionar archivo"
|
msgstr "Seleccionar archivo"
|
||||||
|
|
||||||
|
|
@ -4481,7 +4530,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Añade cada valor en una nueva línea"
|
msgstr "Añade cada valor en una nueva línea"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -4835,48 +4884,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de herramientas"
|
msgstr "Barra de herramientas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Sólo texto"
|
msgstr "Sólo texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Sólo visual"
|
msgstr "Sólo visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual y Texto"
|
msgstr "Visual y Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestañas"
|
msgstr "Pestañas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Haz clic para iniciar TinyMCE"
|
msgstr "Haz clic para iniciar TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -4953,7 +5002,7 @@ msgstr "Marcador de posición"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece cuando se está creando una nueva entrada"
|
msgstr "Aparece cuando se está creando una nueva entrada"
|
||||||
|
|
||||||
|
|
@ -5054,17 +5103,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccionar tipo de contenido"
|
msgstr "Seleccionar tipo de contenido"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No se han encontrado coincidencias"
|
msgstr "No se han encontrado coincidencias"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Cargando"
|
msgstr "Cargando"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valores máximos alcanzados ( {max} valores )"
|
msgstr "Valores máximos alcanzados ( {max} valores )"
|
||||||
|
|
||||||
|
|
@ -5173,7 +5222,7 @@ msgstr "Añadir imagen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No hay ninguna imagen seleccionada"
|
msgstr "No hay ninguna imagen seleccionada"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5188,22 +5237,22 @@ msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Todas las imágenes"
|
msgstr "Todas las imágenes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualizar imagen"
|
msgstr "Actualizar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Editar imagen"
|
msgstr "Editar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Seleccionar imagen"
|
msgstr "Seleccionar imagen"
|
||||||
|
|
||||||
|
|
@ -5290,16 +5339,16 @@ msgstr "Selector de fecha"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Ancho"
|
msgstr "Ancho"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Tamaño de incrustación"
|
msgstr "Tamaño de incrustación"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduce la URL"
|
msgstr "Introduce la URL"
|
||||||
|
|
||||||
|
|
@ -5340,7 +5389,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por defecto"
|
msgstr "Valor por defecto"
|
||||||
|
|
||||||
|
|
@ -5354,13 +5403,13 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5370,32 +5419,32 @@ msgstr "Sí"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Verdadero / Falso"
|
msgstr "Verdadero / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabla"
|
msgstr "Tabla"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloque"
|
msgstr "Bloque"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Especifica el estilo utilizado para representar los campos seleccionados"
|
"Especifica el estilo utilizado para representar los campos seleccionados"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Estructura"
|
msgstr "Estructura"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
|
|
@ -5410,7 +5459,7 @@ msgstr "Personalizar la altura del mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
|
|
@ -5450,7 +5499,7 @@ msgid "Search"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: es_CR\n"
|
"Language: es_CR\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -613,16 +662,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2576,7 +2625,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2586,7 +2635,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2753,16 +2802,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2807,7 +2856,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2836,12 +2885,12 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
|
|
@ -3031,23 +3080,23 @@ msgstr "Cargando diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisar cambios de JSON local"
|
msgstr "Revisar cambios de JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visitar web"
|
msgstr "Visitar web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Ver detalles"
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versión: %s"
|
msgstr "Versión: %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3056,14 +3105,14 @@ msgstr ""
|
||||||
"soporte de nuestro centro de ayuda le ayudarán más en profundidad con los "
|
"soporte de nuestro centro de ayuda le ayudarán más en profundidad con los "
|
||||||
"retos técnicos."
|
"retos técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3073,7 +3122,7 @@ msgstr ""
|
||||||
"documentación contiene referencias y guías para la mayoría de situaciones a "
|
"documentación contiene referencias y guías para la mayoría de situaciones a "
|
||||||
"las que puede enfrentarse."
|
"las que puede enfrentarse."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3082,11 +3131,11 @@ msgstr ""
|
||||||
"Somos fanáticos del soporte, y queremos que consiga el máximo en su web con "
|
"Somos fanáticos del soporte, y queremos que consiga el máximo en su web con "
|
||||||
"ACF."
|
"ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ayuda y soporte"
|
msgstr "Ayuda y soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3094,7 +3143,7 @@ msgstr ""
|
||||||
"Por favor, use la pestaña de ayuda y soporte para avisarnos que necesita "
|
"Por favor, use la pestaña de ayuda y soporte para avisarnos que necesita "
|
||||||
"ayuda."
|
"ayuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3104,7 +3153,7 @@ msgstr ""
|
||||||
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
||||||
"familiarizarse con la filosofía y buenas prácticas del plugin."
|
"familiarizarse con la filosofía y buenas prácticas del plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3115,7 +3164,7 @@ msgstr ""
|
||||||
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
||||||
"archivo de plantilla de cualquier tema."
|
"archivo de plantilla de cualquier tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resumen"
|
msgstr "Resumen"
|
||||||
|
|
||||||
|
|
@ -3135,7 +3184,7 @@ msgstr "Nonce no válido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error al cargar el campo."
|
msgstr "Error al cargar el campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Ubicación no encontrada: %s"
|
msgstr "Ubicación no encontrada: %s"
|
||||||
|
|
@ -3283,7 +3332,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostrar este campo si"
|
msgstr "Mostrar este campo si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lógica condicional"
|
msgstr "Lógica condicional"
|
||||||
|
|
||||||
|
|
@ -3329,15 +3378,15 @@ msgstr "Es necesario actualizar la base de datos"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Página de opciones"
|
msgstr "Página de opciones"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galería"
|
msgstr "Galería"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenido flexible"
|
msgstr "Contenido flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetidor"
|
msgstr "Repetidor"
|
||||||
|
|
||||||
|
|
@ -3586,7 +3635,7 @@ msgstr "Arrastra para reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostrar este grupo de campos si"
|
msgstr "Mostrar este grupo de campos si"
|
||||||
|
|
@ -3763,7 +3812,7 @@ msgstr "Duplicar este elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentación"
|
msgstr "Documentación"
|
||||||
|
|
||||||
|
|
@ -3866,7 +3915,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copiar"
|
msgstr "copiar"
|
||||||
|
|
@ -3884,7 +3933,7 @@ msgid "Checked"
|
||||||
msgstr "Seleccionado"
|
msgstr "Seleccionado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mover campo personalizado"
|
msgstr "Mover campo personalizado"
|
||||||
|
|
@ -3900,13 +3949,13 @@ msgid "Field group title is required"
|
||||||
msgstr "El título del grupo de campos es obligatorio"
|
msgstr "El título del grupo de campos es obligatorio"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3974,15 +4023,15 @@ msgstr "Página"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relación"
|
msgstr "Relación"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elección"
|
msgstr "Elección"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
||||||
|
|
@ -4010,7 +4059,7 @@ msgstr "Actualizar"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
|
|
@ -4019,8 +4068,8 @@ msgstr "Contenido"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
|
|
@ -4077,59 +4126,59 @@ msgid "Has any value"
|
||||||
msgstr "No tiene algún valor"
|
msgstr "No tiene algún valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "¿Estás seguro?"
|
msgstr "¿Estás seguro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campos requieren atención"
|
msgstr "%d campos requieren atención"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo requiere atención"
|
msgstr "1 campo requiere atención"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validación fallida"
|
msgstr "Validación fallida"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validación correcta"
|
msgstr "Validación correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restringido"
|
msgstr "Restringido"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Contraer detalles"
|
msgstr "Contraer detalles"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ampliar detalles"
|
msgstr "Ampliar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Subido a esta publicación"
|
msgstr "Subido a esta publicación"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4140,7 +4189,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
||||||
|
|
@ -4155,7 +4204,7 @@ msgstr "El tipo de archivo debe ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4207,7 +4256,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sin etiqueta)"
|
msgstr "(sin etiqueta)"
|
||||||
|
|
@ -4440,18 +4489,18 @@ msgid "File name"
|
||||||
msgstr "Nombre del archivo"
|
msgstr "Nombre del archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualizar archivo"
|
msgstr "Actualizar archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Editar archivo"
|
msgstr "Editar archivo"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleccionar archivo"
|
msgstr "Seleccionar archivo"
|
||||||
|
|
||||||
|
|
@ -4477,7 +4526,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Añade cada valor en una nueva línea"
|
msgstr "Añade cada valor en una nueva línea"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -4831,48 +4880,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de herramientas"
|
msgstr "Barra de herramientas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Sólo texto"
|
msgstr "Sólo texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Sólo visual"
|
msgstr "Sólo visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual y Texto"
|
msgstr "Visual y Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestañas"
|
msgstr "Pestañas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Haz clic para iniciar TinyMCE"
|
msgstr "Haz clic para iniciar TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -4949,7 +4998,7 @@ msgstr "Marcador de posición"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece cuando se está creando una nueva entrada"
|
msgstr "Aparece cuando se está creando una nueva entrada"
|
||||||
|
|
||||||
|
|
@ -5050,17 +5099,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccionar tipo de contenido"
|
msgstr "Seleccionar tipo de contenido"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No se han encontrado coincidencias"
|
msgstr "No se han encontrado coincidencias"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Cargando"
|
msgstr "Cargando"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valores máximos alcanzados ( {max} valores )"
|
msgstr "Valores máximos alcanzados ( {max} valores )"
|
||||||
|
|
||||||
|
|
@ -5169,7 +5218,7 @@ msgstr "Añadir imagen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No hay ninguna imagen seleccionada"
|
msgstr "No hay ninguna imagen seleccionada"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5184,22 +5233,22 @@ msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Todas las imágenes"
|
msgstr "Todas las imágenes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualizar imagen"
|
msgstr "Actualizar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Editar imagen"
|
msgstr "Editar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Seleccionar imagen"
|
msgstr "Seleccionar imagen"
|
||||||
|
|
||||||
|
|
@ -5286,16 +5335,16 @@ msgstr "Selector de fecha"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Ancho"
|
msgstr "Ancho"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Tamaño de incrustación"
|
msgstr "Tamaño de incrustación"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduce la URL"
|
msgstr "Introduce la URL"
|
||||||
|
|
||||||
|
|
@ -5336,7 +5385,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por defecto"
|
msgstr "Valor por defecto"
|
||||||
|
|
||||||
|
|
@ -5350,13 +5399,13 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5366,32 +5415,32 @@ msgstr "Sí"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Verdadero / Falso"
|
msgstr "Verdadero / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabla"
|
msgstr "Tabla"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloque"
|
msgstr "Bloque"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Especifica el estilo utilizado para representar los campos seleccionados"
|
"Especifica el estilo utilizado para representar los campos seleccionados"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Estructura"
|
msgstr "Estructura"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
|
|
@ -5406,7 +5455,7 @@ msgstr "Personalizar la altura del mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
|
|
@ -5446,7 +5495,7 @@ msgid "Search"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: es_EC\n"
|
"Language: es_EC\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -613,16 +662,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2576,7 +2625,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2586,7 +2635,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2753,16 +2802,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2807,7 +2856,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2836,17 +2885,17 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Hemos detectado una o más llamadas para obtener "
|
"<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 "
|
"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"
|
"compatible y puede ocasionar datos mal formados o faltantes. <a "
|
||||||
"\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
"href=\"%2$s\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3035,23 +3084,23 @@ msgstr "Cargando diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisar cambios de JSON local"
|
msgstr "Revisar cambios de JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visitar web"
|
msgstr "Visitar web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Ver detalles"
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versión %s"
|
msgstr "Versión %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3060,14 +3109,14 @@ msgstr ""
|
||||||
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
||||||
"retos técnicos."
|
"retos técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3077,7 +3126,7 @@ msgstr ""
|
||||||
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
||||||
"las que puedas encontrarte."
|
"las que puedas encontrarte."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3086,11 +3135,11 @@ msgstr ""
|
||||||
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
||||||
"ACF."
|
"ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ayuda y soporte"
|
msgstr "Ayuda y soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3098,7 +3147,7 @@ msgstr ""
|
||||||
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
||||||
"necesitas ayuda."
|
"necesitas ayuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3108,7 +3157,7 @@ msgstr ""
|
||||||
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
||||||
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3119,7 +3168,7 @@ msgstr ""
|
||||||
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
||||||
"archivo de plantilla de cualquier tema."
|
"archivo de plantilla de cualquier tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resumen"
|
msgstr "Resumen"
|
||||||
|
|
||||||
|
|
@ -3139,7 +3188,7 @@ msgstr "Nonce no válido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error al cargar el campo."
|
msgstr "Error al cargar el campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Ubicación no encontrada: %s"
|
msgstr "Ubicación no encontrada: %s"
|
||||||
|
|
@ -3287,7 +3336,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostrar este campo si"
|
msgstr "Mostrar este campo si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lógica condicional"
|
msgstr "Lógica condicional"
|
||||||
|
|
||||||
|
|
@ -3333,15 +3382,15 @@ msgstr "Es necesario actualizar la base de datos"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Página de opciones"
|
msgstr "Página de opciones"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galería"
|
msgstr "Galería"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenido flexible"
|
msgstr "Contenido flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetidor"
|
msgstr "Repetidor"
|
||||||
|
|
||||||
|
|
@ -3590,7 +3639,7 @@ msgstr "Arrastra para reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostrar este grupo de campos si"
|
msgstr "Mostrar este grupo de campos si"
|
||||||
|
|
@ -3767,7 +3816,7 @@ msgstr "Duplicar este elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3870,7 +3919,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copiar"
|
msgstr "copiar"
|
||||||
|
|
@ -3888,7 +3937,7 @@ msgid "Checked"
|
||||||
msgstr "Seleccionado"
|
msgstr "Seleccionado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mover campo personalizado"
|
msgstr "Mover campo personalizado"
|
||||||
|
|
@ -3904,13 +3953,13 @@ msgid "Field group title is required"
|
||||||
msgstr "El título del grupo de campos es obligatorio"
|
msgstr "El título del grupo de campos es obligatorio"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3978,15 +4027,15 @@ msgstr "Página"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relación"
|
msgstr "Relación"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elección"
|
msgstr "Elección"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
||||||
|
|
@ -4014,7 +4063,7 @@ msgstr "Actualizar"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
|
|
@ -4023,8 +4072,8 @@ msgstr "Contenido"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
|
|
@ -4081,59 +4130,59 @@ msgid "Has any value"
|
||||||
msgstr "No tiene algún valor"
|
msgstr "No tiene algún valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "¿Estás seguro?"
|
msgstr "¿Estás seguro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campos requieren atención"
|
msgstr "%d campos requieren atención"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo requiere atención"
|
msgstr "1 campo requiere atención"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validación fallida"
|
msgstr "Validación fallida"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validación correcta"
|
msgstr "Validación correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restringido"
|
msgstr "Restringido"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Contraer detalles"
|
msgstr "Contraer detalles"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ampliar detalles"
|
msgstr "Ampliar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Subido a esta publicación"
|
msgstr "Subido a esta publicación"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4144,7 +4193,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
||||||
|
|
@ -4159,7 +4208,7 @@ msgstr "El tipo de archivo debe ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4211,7 +4260,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sin etiqueta)"
|
msgstr "(sin etiqueta)"
|
||||||
|
|
@ -4444,18 +4493,18 @@ msgid "File name"
|
||||||
msgstr "Nombre del archivo"
|
msgstr "Nombre del archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualizar archivo"
|
msgstr "Actualizar archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Editar archivo"
|
msgstr "Editar archivo"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleccionar archivo"
|
msgstr "Seleccionar archivo"
|
||||||
|
|
||||||
|
|
@ -4481,7 +4530,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Añade cada valor en una nueva línea"
|
msgstr "Añade cada valor en una nueva línea"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -4835,48 +4884,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo"
|
msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de herramientas"
|
msgstr "Barra de herramientas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Sólo texto"
|
msgstr "Sólo texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Sólo visual"
|
msgstr "Sólo visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual y Texto"
|
msgstr "Visual y Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestañas"
|
msgstr "Pestañas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Haz clic para iniciar TinyMCE"
|
msgstr "Haz clic para iniciar TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -4953,7 +5002,7 @@ msgstr "Marcador de posición"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece cuando se está creando una nueva entrada"
|
msgstr "Aparece cuando se está creando una nueva entrada"
|
||||||
|
|
||||||
|
|
@ -5054,17 +5103,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccionar tipo de contenido"
|
msgstr "Seleccionar tipo de contenido"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No se han encontrado coincidencias"
|
msgstr "No se han encontrado coincidencias"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Cargando"
|
msgstr "Cargando"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valores máximos alcanzados ( {max} valores )"
|
msgstr "Valores máximos alcanzados ( {max} valores )"
|
||||||
|
|
||||||
|
|
@ -5173,7 +5222,7 @@ msgstr "Añadir imagen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No hay ninguna imagen seleccionada"
|
msgstr "No hay ninguna imagen seleccionada"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5188,22 +5237,22 @@ msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Todas las imágenes"
|
msgstr "Todas las imágenes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualizar imagen"
|
msgstr "Actualizar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Editar imagen"
|
msgstr "Editar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Seleccionar imagen"
|
msgstr "Seleccionar imagen"
|
||||||
|
|
||||||
|
|
@ -5290,16 +5339,16 @@ msgstr "Selector de fecha"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Ancho"
|
msgstr "Ancho"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Tamaño de incrustación"
|
msgstr "Tamaño de incrustación"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduce la URL"
|
msgstr "Introduce la URL"
|
||||||
|
|
||||||
|
|
@ -5340,7 +5389,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por defecto"
|
msgstr "Valor por defecto"
|
||||||
|
|
||||||
|
|
@ -5354,13 +5403,13 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5370,32 +5419,32 @@ msgstr "Sí"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Verdadero / Falso"
|
msgstr "Verdadero / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabla"
|
msgstr "Tabla"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloque"
|
msgstr "Bloque"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Especifica el estilo utilizado para representar los campos seleccionados"
|
"Especifica el estilo utilizado para representar los campos seleccionados"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Estructura"
|
msgstr "Estructura"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
|
|
@ -5410,7 +5459,7 @@ msgstr "Personalizar la altura del mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
|
|
@ -5450,7 +5499,7 @@ msgid "Search"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,66 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr "%1$s (%2$s) - renderizado mediante %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s ACF ahora escapa automáticamente el HTML inseguro cuando se renderiza "
|
||||||
|
"mediante el shortcode de ACF. Hemos detectado que la salida de algunos de "
|
||||||
|
"tus campos se verá modificada por este cambio. %2$s. %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s El ACF ahora escapa automáticamente el HTML no seguro cuando es "
|
||||||
|
"mostrado por <code>the_field</code> o el shortcode de ACF. Hemos detectado "
|
||||||
|
"que la salida de algunos de tus campos se verá modificada por este cambio. "
|
||||||
|
"%2$s. %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s El ACF pronto escapará del HTML inseguro cuando es mostrado por "
|
||||||
|
"<code>the_field()</code>. Hemos detectado que la salida de algunos de tus "
|
||||||
|
"campos se verá modificada por este cambio. %2$s. %3$s"
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
"Para más información, ponte en contacto con el administrador de tu web."
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr "Descubre cómo arreglarlo"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr "Ocultar detalles"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr "Mostrar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr "Renovar licencia ACF PRO"
|
msgstr "Renovar licencia ACF PRO"
|
||||||
|
|
@ -106,26 +166,26 @@ msgid "Add fields"
|
||||||
msgstr "Añadir campos"
|
msgstr "Añadir campos"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "Este campo"
|
msgstr "Este campo"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Comentarios"
|
msgstr "Comentarios"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Soporte"
|
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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "es desarrollado y mantenido por"
|
msgstr "es desarrollado y mantenido por"
|
||||||
|
|
||||||
|
|
@ -148,8 +208,8 @@ msgstr ""
|
||||||
"Activar el ajuste bidireccional te permite actualizar un valor en los campos "
|
"Activar el ajuste bidireccional te permite actualizar un valor en los campos "
|
||||||
"de destino por cada valor seleccionado para este campo, añadiendo o "
|
"de destino por cada valor seleccionado para este campo, añadiendo o "
|
||||||
"eliminando el ID de entrada, el ID de taxonomía o el ID de usuario del "
|
"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"
|
"elemento que se está actualizando. Para más información, lee la <a "
|
||||||
"\" target=\"_blank\">documentación</a>."
|
"href=\"%s\" target=\"_blank\">documentación</a>."
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:248
|
#: includes/acf-bidirectional-functions.php:248
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -682,7 +742,7 @@ msgstr ""
|
||||||
"que se muestran al editar el contenido. Útil para mantener ordenados grandes "
|
"que se muestran al editar el contenido. Útil para mantener ordenados grandes "
|
||||||
"conjuntos de datos."
|
"conjuntos de datos."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -692,7 +752,7 @@ msgstr ""
|
||||||
"miembros del equipo y fichas de llamada a la acción, actuando como padre de "
|
"miembros del equipo y fichas de llamada a la acción, actuando como padre de "
|
||||||
"un conjunto de subcampos que pueden repetirse una y otra vez."
|
"un conjunto de subcampos que pueden repetirse una y otra vez."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -705,7 +765,7 @@ msgstr ""
|
||||||
"añaden los nuevos adjuntos en la galería y el número mínimo/máximo de "
|
"añaden los nuevos adjuntos en la galería y el número mínimo/máximo de "
|
||||||
"adjuntos permitidos."
|
"adjuntos permitidos."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
|
|
@ -716,7 +776,7 @@ msgstr ""
|
||||||
"con un control total, utilizando maquetas y subcampos para diseñar los "
|
"con un control total, utilizando maquetas y subcampos para diseñar los "
|
||||||
"bloques disponibles."
|
"bloques disponibles."
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -729,16 +789,16 @@ msgstr ""
|
||||||
"campos seleccionados o mostrar los campos seleccionados como un grupo de "
|
"campos seleccionados o mostrar los campos seleccionados como un grupo de "
|
||||||
"subcampos."
|
"subcampos."
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clon"
|
msgstr "Clon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avanzados"
|
msgstr "Avanzados"
|
||||||
|
|
||||||
|
|
@ -2736,14 +2796,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Tipo de contenido eliminado."
|
msgstr "Tipo de contenido eliminado."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Escribe para buscar..."
|
msgstr "Escribe para buscar..."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2756,7 +2816,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Grupos de campos enlazados correctamente."
|
msgstr "Grupos de campos enlazados correctamente."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2764,7 +2824,7 @@ msgstr ""
|
||||||
"Importa tipos de contenido y taxonomías registrados con Custom Post Type UI "
|
"Importa tipos de contenido y taxonomías registrados con Custom Post Type UI "
|
||||||
"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:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2853,7 +2913,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[valor del shortcode de ACF desactivado en la vista previa]"
|
msgstr "[valor del shortcode de ACF desactivado en la vista previa]"
|
||||||
|
|
||||||
|
|
@ -2863,7 +2923,7 @@ msgid "Close Modal"
|
||||||
msgstr "Cerrar ventana emergente"
|
msgstr "Cerrar ventana emergente"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Campo movido a otro grupo"
|
msgstr "Campo movido a otro grupo"
|
||||||
|
|
@ -2942,8 +3002,8 @@ msgid ""
|
||||||
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||||
"started guide</a>."
|
"started guide</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"¿Nuevo en ACF? Echa un vistazo a nuestra <a href=\"%s\" target=\"_blank"
|
"¿Nuevo en ACF? Echa un vistazo a nuestra <a href=\"%s\" "
|
||||||
"\">guía para comenzar</a>."
|
"target=\"_blank\">guía para comenzar</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/list-empty.php:15
|
#: includes/admin/views/acf-field-group/list-empty.php:15
|
||||||
msgid "Add Field Group"
|
msgid "Add Field Group"
|
||||||
|
|
@ -3013,8 +3073,8 @@ msgid ""
|
||||||
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
||||||
"more</a>."
|
"more</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Elige de entre más de 30 tipos de campos. <a href=\"%s\" target=\"_blank"
|
"Elige de entre más de 30 tipos de campos. <a href=\"%s\" "
|
||||||
"\">Aprende más</a>."
|
"target=\"_blank\">Aprende más</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/fields.php:65
|
#: includes/admin/views/acf-field-group/fields.php:65
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -3041,16 +3101,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Añadir campo"
|
msgstr "Añadir campo"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Presentación"
|
msgstr "Presentación"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validación"
|
msgstr "Validación"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "General"
|
msgstr "General"
|
||||||
|
|
||||||
|
|
@ -3095,7 +3155,7 @@ msgid "Activate this item"
|
||||||
msgstr "Activa este elemento"
|
msgstr "Activa este elemento"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
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?"
|
||||||
|
|
@ -3130,17 +3190,17 @@ msgstr ""
|
||||||
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
"activos al mismo tiempo. Hemos desactivado automáticamente Advanced Custom "
|
||||||
"Fields."
|
"Fields."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Hemos detectado una o más llamadas para obtener "
|
"<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 "
|
"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"
|
"compatible y puede ocasionar datos mal formados o faltantes. <a "
|
||||||
"\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
"href=\"%2$s\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3330,23 +3390,23 @@ msgstr "Cargando diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisar cambios de JSON local"
|
msgstr "Revisar cambios de JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visitar web"
|
msgstr "Visitar web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Ver detalles"
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versión %s"
|
msgstr "Versión %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3355,7 +3415,7 @@ msgstr ""
|
||||||
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
||||||
"retos técnicos."
|
"retos técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3365,7 +3425,7 @@ msgstr ""
|
||||||
"amistosa, en nuestros foros de la comunidad, que pueden ayudarte a descubrir "
|
"amistosa, en nuestros foros de la comunidad, que pueden ayudarte a descubrir "
|
||||||
"cómo hacer todo en el mundo de ACF."
|
"cómo hacer todo en el mundo de ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3375,7 +3435,7 @@ msgstr ""
|
||||||
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
||||||
"las que puedas encontrarte."
|
"las que puedas encontrarte."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3385,11 +3445,11 @@ msgstr ""
|
||||||
"ACF. Si te encuentras con alguna dificultad, hay varios lugares donde puedes "
|
"ACF. Si te encuentras con alguna dificultad, hay varios lugares donde puedes "
|
||||||
"encontrar ayuda:"
|
"encontrar ayuda:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ayuda y soporte"
|
msgstr "Ayuda y soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3397,7 +3457,7 @@ msgstr ""
|
||||||
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
||||||
"necesitas ayuda."
|
"necesitas ayuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3407,7 +3467,7 @@ msgstr ""
|
||||||
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
||||||
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3418,7 +3478,7 @@ msgstr ""
|
||||||
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
||||||
"archivo de plantilla de cualquier tema."
|
"archivo de plantilla de cualquier tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resumen"
|
msgstr "Resumen"
|
||||||
|
|
||||||
|
|
@ -3438,7 +3498,7 @@ msgstr "Nonce no válido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error al cargar el campo."
|
msgstr "Error al cargar el campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Ubicación no encontrada: %s"
|
msgstr "Ubicación no encontrada: %s"
|
||||||
|
|
@ -3586,7 +3646,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostrar este campo si"
|
msgstr "Mostrar este campo si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lógica condicional"
|
msgstr "Lógica condicional"
|
||||||
|
|
||||||
|
|
@ -3632,15 +3692,15 @@ msgstr "Es necesario actualizar la base de datos"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Página de opciones"
|
msgstr "Página de opciones"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galería"
|
msgstr "Galería"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenido flexible"
|
msgstr "Contenido flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetidor"
|
msgstr "Repetidor"
|
||||||
|
|
||||||
|
|
@ -3889,7 +3949,7 @@ msgstr "Arrastra para reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostrar este grupo de campos si"
|
msgstr "Mostrar este grupo de campos si"
|
||||||
|
|
@ -4073,7 +4133,7 @@ msgstr "Duplicar este elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Supports"
|
msgstr "Supports"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentación"
|
msgstr "Documentación"
|
||||||
|
|
||||||
|
|
@ -4176,7 +4236,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copiar"
|
msgstr "copiar"
|
||||||
|
|
@ -4194,7 +4254,7 @@ msgid "Checked"
|
||||||
msgstr "Seleccionado"
|
msgstr "Seleccionado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mover campo personalizado"
|
msgstr "Mover campo personalizado"
|
||||||
|
|
@ -4210,13 +4270,13 @@ msgid "Field group title is required"
|
||||||
msgstr "El título del grupo de campos es obligatorio"
|
msgstr "El título del grupo de campos es obligatorio"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4284,15 +4344,15 @@ msgstr "Página"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relación"
|
msgstr "Relación"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elección"
|
msgstr "Elección"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
||||||
|
|
@ -4320,7 +4380,7 @@ msgstr "Actualizar"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
|
|
@ -4329,8 +4389,8 @@ msgstr "Contenido"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
|
|
@ -4387,59 +4447,59 @@ msgid "Has any value"
|
||||||
msgstr "No tiene algún valor"
|
msgstr "No tiene algún valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "¿Estás seguro?"
|
msgstr "¿Estás seguro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campos requieren atención"
|
msgstr "%d campos requieren atención"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo requiere atención"
|
msgstr "1 campo requiere atención"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validación fallida"
|
msgstr "Validación fallida"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validación correcta"
|
msgstr "Validación correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restringido"
|
msgstr "Restringido"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Contraer detalles"
|
msgstr "Contraer detalles"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ampliar detalles"
|
msgstr "Ampliar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Subido a esta publicación"
|
msgstr "Subido a esta publicación"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4450,7 +4510,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
||||||
|
|
@ -4465,7 +4525,7 @@ msgstr "El tipo de archivo debe ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4517,7 +4577,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sin etiqueta)"
|
msgstr "(sin etiqueta)"
|
||||||
|
|
@ -4750,18 +4810,18 @@ msgid "File name"
|
||||||
msgstr "Nombre del archivo"
|
msgstr "Nombre del archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualizar archivo"
|
msgstr "Actualizar archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Editar archivo"
|
msgstr "Editar archivo"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleccionar archivo"
|
msgstr "Seleccionar archivo"
|
||||||
|
|
||||||
|
|
@ -4787,7 +4847,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Añade cada valor en una nueva línea"
|
msgstr "Añade cada valor en una nueva línea"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -5141,48 +5201,48 @@ msgstr "Permitir nulo"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Inicialización del retardo"
|
msgstr "Inicialización del retardo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Mostrar botones para subir archivos multimedia"
|
msgstr "Mostrar botones para subir archivos multimedia"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de herramientas"
|
msgstr "Barra de herramientas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Sólo texto"
|
msgstr "Sólo texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Sólo visual"
|
msgstr "Sólo visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual y Texto"
|
msgstr "Visual y Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestañas"
|
msgstr "Pestañas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Haz clic para iniciar TinyMCE"
|
msgstr "Haz clic para iniciar TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -5259,7 +5319,7 @@ msgstr "Marcador de posición"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece cuando se está creando una nueva entrada"
|
msgstr "Aparece cuando se está creando una nueva entrada"
|
||||||
|
|
||||||
|
|
@ -5360,17 +5420,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccionar tipo de contenido"
|
msgstr "Seleccionar tipo de contenido"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No se han encontrado coincidencias"
|
msgstr "No se han encontrado coincidencias"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Cargando"
|
msgstr "Cargando"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valores máximos alcanzados ( {max} valores )"
|
msgstr "Valores máximos alcanzados ( {max} valores )"
|
||||||
|
|
||||||
|
|
@ -5479,7 +5539,7 @@ msgstr "Añadir imagen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No hay ninguna imagen seleccionada"
|
msgstr "No hay ninguna imagen seleccionada"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5494,22 +5554,22 @@ msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Todas las imágenes"
|
msgstr "Todas las imágenes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualizar imagen"
|
msgstr "Actualizar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Editar imagen"
|
msgstr "Editar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Seleccionar imagen"
|
msgstr "Seleccionar imagen"
|
||||||
|
|
||||||
|
|
@ -5596,16 +5656,16 @@ msgstr "Selector de fecha"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Ancho"
|
msgstr "Ancho"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Tamaño de incrustación"
|
msgstr "Tamaño de incrustación"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduce la URL"
|
msgstr "Introduce la URL"
|
||||||
|
|
||||||
|
|
@ -5646,7 +5706,7 @@ msgstr "UI estilizada"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por defecto"
|
msgstr "Valor por defecto"
|
||||||
|
|
||||||
|
|
@ -5660,13 +5720,13 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5676,32 +5736,32 @@ msgstr "Sí"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Verdadero / Falso"
|
msgstr "Verdadero / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabla"
|
msgstr "Tabla"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloque"
|
msgstr "Bloque"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Especifica el estilo utilizado para representar los campos seleccionados"
|
"Especifica el estilo utilizado para representar los campos seleccionados"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Estructura"
|
msgstr "Estructura"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
|
|
@ -5716,7 +5776,7 @@ msgstr "Personalizar la altura del mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
|
|
@ -5756,7 +5816,7 @@ msgid "Search"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
||||||
|
|
||||||
|
|
@ -5959,9 +6019,9 @@ msgstr "Opciones Actualizadas"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Para habilitar las actualizaciones, introduzca su clave de licencia en la "
|
"Para habilitar las actualizaciones, introduzca su clave de licencia en la "
|
||||||
"página <a href=\"%1$s\">Actualizaciones.</a> Si no tiene una clave de "
|
"página <a href=\"%1$s\">Actualizaciones.</a> Si no tiene una clave de "
|
||||||
|
|
@ -6445,8 +6505,8 @@ msgid ""
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Para desbloquear las actualizaciones, por favor a continuación introduce tu "
|
"Para desbloquear las actualizaciones, por favor a continuación introduce tu "
|
||||||
"clave de licencia. Si no tienes una clave de licencia, consulta <a href=\"%s"
|
"clave de licencia. Si no tienes una clave de licencia, consulta <a "
|
||||||
"\" target=\"_blank\">detalles y precios</a>."
|
"href=\"%s\" target=\"_blank\">detalles y precios</a>."
|
||||||
|
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
msgid "License Key"
|
msgid "License Key"
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -610,14 +659,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -625,14 +674,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -640,16 +689,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clon"
|
msgstr "Clon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2492,14 +2541,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2512,13 +2561,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2603,7 +2652,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2613,7 +2662,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2780,16 +2829,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2834,7 +2883,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2863,17 +2912,17 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Hemos detectado una o más llamadas para obtener "
|
"<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 "
|
"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"
|
"compatible y puede ocasionar datos mal formados o faltantes. <a "
|
||||||
"\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
"href=\"%2$s\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3062,23 +3111,23 @@ msgstr "Cargando diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisar cambios de JSON local"
|
msgstr "Revisar cambios de JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visitar web"
|
msgstr "Visitar web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Ver detalles"
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versión %s"
|
msgstr "Versión %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3087,14 +3136,14 @@ msgstr ""
|
||||||
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
||||||
"retos técnicos."
|
"retos técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3104,7 +3153,7 @@ msgstr ""
|
||||||
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
||||||
"las que puedas encontrarte."
|
"las que puedas encontrarte."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3113,11 +3162,11 @@ msgstr ""
|
||||||
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
||||||
"ACF."
|
"ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ayuda y soporte"
|
msgstr "Ayuda y soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3125,7 +3174,7 @@ msgstr ""
|
||||||
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
||||||
"necesitas ayuda."
|
"necesitas ayuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3135,7 +3184,7 @@ msgstr ""
|
||||||
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
||||||
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3146,7 +3195,7 @@ msgstr ""
|
||||||
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
||||||
"archivo de plantilla de cualquier tema."
|
"archivo de plantilla de cualquier tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resumen"
|
msgstr "Resumen"
|
||||||
|
|
||||||
|
|
@ -3166,7 +3215,7 @@ msgstr "Nonce no válido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error al cargar el campo."
|
msgstr "Error al cargar el campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Ubicación no encontrada: %s"
|
msgstr "Ubicación no encontrada: %s"
|
||||||
|
|
@ -3314,7 +3363,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostrar este campo si"
|
msgstr "Mostrar este campo si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lógica condicional"
|
msgstr "Lógica condicional"
|
||||||
|
|
||||||
|
|
@ -3360,15 +3409,15 @@ msgstr "Es necesario actualizar la base de datos"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Página de opciones"
|
msgstr "Página de opciones"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galería"
|
msgstr "Galería"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenido flexible"
|
msgstr "Contenido flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetidor"
|
msgstr "Repetidor"
|
||||||
|
|
||||||
|
|
@ -3617,7 +3666,7 @@ msgstr "Arrastra para reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostrar este grupo de campos si"
|
msgstr "Mostrar este grupo de campos si"
|
||||||
|
|
@ -3794,7 +3843,7 @@ msgstr "Duplicar este elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentación"
|
msgstr "Documentación"
|
||||||
|
|
||||||
|
|
@ -3897,7 +3946,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copiar"
|
msgstr "copiar"
|
||||||
|
|
@ -3915,7 +3964,7 @@ msgid "Checked"
|
||||||
msgstr "Seleccionado"
|
msgstr "Seleccionado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mover campo personalizado"
|
msgstr "Mover campo personalizado"
|
||||||
|
|
@ -3931,13 +3980,13 @@ msgid "Field group title is required"
|
||||||
msgstr "El título del grupo de campos es obligatorio"
|
msgstr "El título del grupo de campos es obligatorio"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4005,15 +4054,15 @@ msgstr "Página"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relación"
|
msgstr "Relación"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elección"
|
msgstr "Elección"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
||||||
|
|
@ -4041,7 +4090,7 @@ msgstr "Actualizar"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
|
|
@ -4050,8 +4099,8 @@ msgstr "Contenido"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
|
|
@ -4108,59 +4157,59 @@ msgid "Has any value"
|
||||||
msgstr "No tiene algún valor"
|
msgstr "No tiene algún valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "¿Estás seguro?"
|
msgstr "¿Estás seguro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campos requieren atención"
|
msgstr "%d campos requieren atención"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo requiere atención"
|
msgstr "1 campo requiere atención"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validación fallida"
|
msgstr "Validación fallida"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validación correcta"
|
msgstr "Validación correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restringido"
|
msgstr "Restringido"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Contraer detalles"
|
msgstr "Contraer detalles"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ampliar detalles"
|
msgstr "Ampliar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Subido a esta publicación"
|
msgstr "Subido a esta publicación"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4171,7 +4220,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
||||||
|
|
@ -4186,7 +4235,7 @@ msgstr "El tipo de archivo debe ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4238,7 +4287,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sin etiqueta)"
|
msgstr "(sin etiqueta)"
|
||||||
|
|
@ -4471,18 +4520,18 @@ msgid "File name"
|
||||||
msgstr "Nombre del archivo"
|
msgstr "Nombre del archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualizar archivo"
|
msgstr "Actualizar archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Editar archivo"
|
msgstr "Editar archivo"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleccionar archivo"
|
msgstr "Seleccionar archivo"
|
||||||
|
|
||||||
|
|
@ -4508,7 +4557,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Añade cada valor en una nueva línea"
|
msgstr "Añade cada valor en una nueva línea"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -4862,48 +4911,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo"
|
msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de herramientas"
|
msgstr "Barra de herramientas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Sólo texto"
|
msgstr "Sólo texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Sólo visual"
|
msgstr "Sólo visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual y Texto"
|
msgstr "Visual y Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestañas"
|
msgstr "Pestañas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Haz clic para iniciar TinyMCE"
|
msgstr "Haz clic para iniciar TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -4980,7 +5029,7 @@ msgstr "Marcador de posición"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece cuando se está creando una nueva entrada"
|
msgstr "Aparece cuando se está creando una nueva entrada"
|
||||||
|
|
||||||
|
|
@ -5081,17 +5130,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccionar tipo de contenido"
|
msgstr "Seleccionar tipo de contenido"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No se han encontrado coincidencias"
|
msgstr "No se han encontrado coincidencias"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Cargando"
|
msgstr "Cargando"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valores máximos alcanzados ( {max} valores )"
|
msgstr "Valores máximos alcanzados ( {max} valores )"
|
||||||
|
|
||||||
|
|
@ -5200,7 +5249,7 @@ msgstr "Añadir imagen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No hay ninguna imagen seleccionada"
|
msgstr "No hay ninguna imagen seleccionada"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5215,22 +5264,22 @@ msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Todas las imágenes"
|
msgstr "Todas las imágenes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualizar imagen"
|
msgstr "Actualizar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Editar imagen"
|
msgstr "Editar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Seleccionar imagen"
|
msgstr "Seleccionar imagen"
|
||||||
|
|
||||||
|
|
@ -5317,16 +5366,16 @@ msgstr "Selector de fecha"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Ancho"
|
msgstr "Ancho"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Tamaño de incrustación"
|
msgstr "Tamaño de incrustación"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduce la URL"
|
msgstr "Introduce la URL"
|
||||||
|
|
||||||
|
|
@ -5367,7 +5416,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por defecto"
|
msgstr "Valor por defecto"
|
||||||
|
|
||||||
|
|
@ -5381,13 +5430,13 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5397,32 +5446,32 @@ msgstr "Sí"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Verdadero / Falso"
|
msgstr "Verdadero / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabla"
|
msgstr "Tabla"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloque"
|
msgstr "Bloque"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Especifica el estilo utilizado para representar los campos seleccionados"
|
"Especifica el estilo utilizado para representar los campos seleccionados"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Estructura"
|
msgstr "Estructura"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
|
|
@ -5437,7 +5486,7 @@ msgstr "Personalizar la altura del mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
|
|
@ -5477,7 +5526,7 @@ msgid "Search"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: es_VE\n"
|
"Language: es_VE\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -613,16 +662,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2576,7 +2625,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2586,7 +2635,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2753,16 +2802,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2807,7 +2856,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2836,17 +2885,17 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Hemos detectado una o más llamadas para obtener "
|
"<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 "
|
"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"
|
"compatible y puede ocasionar datos mal formados o faltantes. <a "
|
||||||
"\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
"href=\"%2$s\" target=\"_blank\">Aprende cómo corregirlo</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3035,23 +3084,23 @@ msgstr "Cargando diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisar cambios de JSON local"
|
msgstr "Revisar cambios de JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visitar web"
|
msgstr "Visitar web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Ver detalles"
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versión %s"
|
msgstr "Versión %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3060,14 +3109,14 @@ msgstr ""
|
||||||
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
"soporte de nuestro centro de ayuda te ayudarán más en profundidad con los "
|
||||||
"retos técnicos."
|
"retos técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3077,7 +3126,7 @@ msgstr ""
|
||||||
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
"documentación contiene referencias y guías para la mayoría de situaciones en "
|
||||||
"las que puedas encontrarte."
|
"las que puedas encontrarte."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3086,11 +3135,11 @@ msgstr ""
|
||||||
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
"Somos fanáticos del soporte, y queremos que consigas el máximo en tu web con "
|
||||||
"ACF:"
|
"ACF:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ayuda y soporte"
|
msgstr "Ayuda y soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3098,7 +3147,7 @@ msgstr ""
|
||||||
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
"Por favor, usa la pestaña de ayuda y soporte para contactar si descubres que "
|
||||||
"necesitas ayuda."
|
"necesitas ayuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3108,7 +3157,7 @@ msgstr ""
|
||||||
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
"nuestra <a href=\"%s\" target=\"_blank\">guía de primeros pasos</a> para "
|
||||||
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
"familiarizarte con la filosofía y buenas prácticas del plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3119,7 +3168,7 @@ msgstr ""
|
||||||
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
"intuitiva parra mostrar valores de campos personalizados en cualquier "
|
||||||
"archivo de plantilla de cualquier tema."
|
"archivo de plantilla de cualquier tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resumen"
|
msgstr "Resumen"
|
||||||
|
|
||||||
|
|
@ -3139,7 +3188,7 @@ msgstr "Nonce no válido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Error al cargar el campo."
|
msgstr "Error al cargar el campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Ubicación no encontrada: %s"
|
msgstr "Ubicación no encontrada: %s"
|
||||||
|
|
@ -3287,7 +3336,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostrar este campo si"
|
msgstr "Mostrar este campo si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lógica condicional"
|
msgstr "Lógica condicional"
|
||||||
|
|
||||||
|
|
@ -3333,15 +3382,15 @@ msgstr "Es necesario actualizar la base de datos"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Página de opciones"
|
msgstr "Página de opciones"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galería"
|
msgstr "Galería"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenido flexible"
|
msgstr "Contenido flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetidor"
|
msgstr "Repetidor"
|
||||||
|
|
||||||
|
|
@ -3590,7 +3639,7 @@ msgstr "Arrastra para reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostrar este grupo de campos si"
|
msgstr "Mostrar este grupo de campos si"
|
||||||
|
|
@ -3767,7 +3816,7 @@ msgstr "Duplicar este elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentación"
|
msgstr "Documentación"
|
||||||
|
|
||||||
|
|
@ -3870,7 +3919,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copiar"
|
msgstr "copiar"
|
||||||
|
|
@ -3888,7 +3937,7 @@ msgid "Checked"
|
||||||
msgstr "Seleccionado"
|
msgstr "Seleccionado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mover campo personalizado"
|
msgstr "Mover campo personalizado"
|
||||||
|
|
@ -3904,13 +3953,13 @@ msgid "Field group title is required"
|
||||||
msgstr "El título del grupo de campos es obligatorio"
|
msgstr "El título del grupo de campos es obligatorio"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
msgstr "Este campo se puede mover hasta que sus cambios se hayan guardado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3978,15 +4027,15 @@ msgstr "Página"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relación"
|
msgstr "Relación"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elección"
|
msgstr "Elección"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
||||||
|
|
@ -4014,7 +4063,7 @@ msgstr "Actualizar"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
|
|
@ -4023,8 +4072,8 @@ msgstr "Contenido"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
|
|
@ -4081,59 +4130,59 @@ msgid "Has any value"
|
||||||
msgstr "No tiene algún valor"
|
msgstr "No tiene algún valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "¿Estás seguro?"
|
msgstr "¿Estás seguro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campos requieren atención"
|
msgstr "%d campos requieren atención"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo requiere atención"
|
msgstr "1 campo requiere atención"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validación fallida"
|
msgstr "Validación fallida"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validación correcta"
|
msgstr "Validación correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restringido"
|
msgstr "Restringido"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Contraer detalles"
|
msgstr "Contraer detalles"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ampliar detalles"
|
msgstr "Ampliar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Subido a esta publicación"
|
msgstr "Subido a esta publicación"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4144,7 +4193,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
msgstr "Los cambios que has realizado se perderán si navegas hacia otra página"
|
||||||
|
|
@ -4159,7 +4208,7 @@ msgstr "El tipo de archivo debe ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4211,7 +4260,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sin etiqueta)"
|
msgstr "(sin etiqueta)"
|
||||||
|
|
@ -4444,18 +4493,18 @@ msgid "File name"
|
||||||
msgstr "Nombre del archivo"
|
msgstr "Nombre del archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualizar archivo"
|
msgstr "Actualizar archivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Editar archivo"
|
msgstr "Editar archivo"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleccionar archivo"
|
msgstr "Seleccionar archivo"
|
||||||
|
|
||||||
|
|
@ -4481,7 +4530,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Añade cada valor en una nueva línea"
|
msgstr "Añade cada valor en una nueva línea"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -4835,48 +4884,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
msgstr "TinyMCE no se inicializará hasta que se haga clic en el campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de herramientas"
|
msgstr "Barra de herramientas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Sólo texto"
|
msgstr "Sólo texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Sólo visual"
|
msgstr "Sólo visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual y Texto"
|
msgstr "Visual y Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestañas"
|
msgstr "Pestañas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Haz clic para iniciar TinyMCE"
|
msgstr "Haz clic para iniciar TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -4953,7 +5002,7 @@ msgstr "Marcador de posición"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece cuando se está creando una nueva entrada"
|
msgstr "Aparece cuando se está creando una nueva entrada"
|
||||||
|
|
||||||
|
|
@ -5054,17 +5103,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccionar tipo de contenido"
|
msgstr "Seleccionar tipo de contenido"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "No se han encontrado coincidencias"
|
msgstr "No se han encontrado coincidencias"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Cargando"
|
msgstr "Cargando"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valores máximos alcanzados ( {max} valores )"
|
msgstr "Valores máximos alcanzados ( {max} valores )"
|
||||||
|
|
||||||
|
|
@ -5173,7 +5222,7 @@ msgstr "Añadir imagen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "No hay ninguna imagen seleccionada"
|
msgstr "No hay ninguna imagen seleccionada"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5188,22 +5237,22 @@ msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Todas las imágenes"
|
msgstr "Todas las imágenes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualizar imagen"
|
msgstr "Actualizar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Editar imagen"
|
msgstr "Editar imagen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Seleccionar imagen"
|
msgstr "Seleccionar imagen"
|
||||||
|
|
||||||
|
|
@ -5290,16 +5339,16 @@ msgstr "Selector de fecha"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Ancho"
|
msgstr "Ancho"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Tamaño de incrustación"
|
msgstr "Tamaño de incrustación"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduce la URL"
|
msgstr "Introduce la URL"
|
||||||
|
|
||||||
|
|
@ -5340,7 +5389,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por defecto"
|
msgstr "Valor por defecto"
|
||||||
|
|
||||||
|
|
@ -5354,13 +5403,13 @@ msgstr "Muestra el texto junto a la casilla de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaje"
|
msgstr "Mensaje"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5370,32 +5419,32 @@ msgstr "Sí"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Verdadero / Falso"
|
msgstr "Verdadero / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabla"
|
msgstr "Tabla"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloque"
|
msgstr "Bloque"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Especifica el estilo utilizado para representar los campos seleccionados"
|
"Especifica el estilo utilizado para representar los campos seleccionados"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Estructura"
|
msgstr "Estructura"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
|
|
@ -5410,7 +5459,7 @@ msgstr "Personalizar la altura del mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
|
|
@ -5450,7 +5499,7 @@ msgid "Search"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
msgstr "Lo siento, este navegador no es compatible con la geolocalización"
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -606,14 +655,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -621,14 +670,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -636,16 +685,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "کپی (هیچ)"
|
msgstr "کپی (هیچ)"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2479,14 +2528,14 @@ msgid "Post type deleted."
|
||||||
msgstr "نوع پست حذف شد"
|
msgstr "نوع پست حذف شد"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "برای جستجو تایپ کنید...."
|
msgstr "برای جستجو تایپ کنید...."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2499,13 +2548,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2593,7 +2642,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[مقدار کد کوتاه ACF برای پیش نمایش غیرفعال است]"
|
msgstr "[مقدار کد کوتاه ACF برای پیش نمایش غیرفعال است]"
|
||||||
|
|
||||||
|
|
@ -2603,7 +2652,7 @@ msgid "Close Modal"
|
||||||
msgstr "بستن صفحه"
|
msgstr "بستن صفحه"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "زمینه به یک گروه دیگر منتقل شد"
|
msgstr "زمینه به یک گروه دیگر منتقل شد"
|
||||||
|
|
@ -2773,16 +2822,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "افزودن زمینه"
|
msgstr "افزودن زمینه"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "نمایش"
|
msgstr "نمایش"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "اعتبارسنجی"
|
msgstr "اعتبارسنجی"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "عمومی"
|
msgstr "عمومی"
|
||||||
|
|
||||||
|
|
@ -2825,7 +2874,7 @@ msgid "Activate this item"
|
||||||
msgstr "فعال کردن این مورد"
|
msgstr "فعال کردن این مورد"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "انتقال گروه زمینه به زبالهدان؟"
|
msgstr "انتقال گروه زمینه به زبالهدان؟"
|
||||||
|
|
@ -2858,17 +2907,17 @@ msgstr ""
|
||||||
"افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال "
|
"افزونه زمینه های سفارشی و افزونه زمینه های سفارشی پیشرفته نباید همزمان فعال "
|
||||||
"باشند. ما به طور خودکار فیلدهای سفارشی پیشرفته را غیرفعال کرده ایم."
|
"باشند. ما به طور خودکار فیلدهای سفارشی پیشرفته را غیرفعال کرده ایم."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - قبل از شروع اولیه ACF، یک یا چند تماس را برای "
|
"<strong>%1$s</strong> - قبل از شروع اولیه ACF، یک یا چند تماس را برای "
|
||||||
"بازیابی مقادیر فیلد ACF شناسایی کردهایم. این مورد پشتیبانی نمیشود و میتواند "
|
"بازیابی مقادیر فیلد ACF شناسایی کردهایم. این مورد پشتیبانی نمیشود و میتواند "
|
||||||
"منجر به دادههای ناقص یا از دست رفته شود. <a href=\"%2$s\" target=\"_blank"
|
"منجر به دادههای ناقص یا از دست رفته شود. <a href=\"%2$s\" "
|
||||||
"\">با نحوه رفع این مشکل آشنا شوید</a>."
|
"target=\"_blank\">با نحوه رفع این مشکل آشنا شوید</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3054,23 +3103,23 @@ msgstr "بارگذاری تفاوت"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "بررسی تغییرات JSON محلی"
|
msgstr "بررسی تغییرات JSON محلی"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "بازدید وب سایت"
|
msgstr "بازدید وب سایت"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "نمایش جزییات"
|
msgstr "نمایش جزییات"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "نگارش %s"
|
msgstr "نگارش %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "اطلاعات"
|
msgstr "اطلاعات"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3078,7 +3127,7 @@ msgstr ""
|
||||||
"کمک <a href=\"%s\" target=\"_blank\">ميز</a>. حرفه ای پشتیبانی در میز کمک ما "
|
"کمک <a href=\"%s\" target=\"_blank\">ميز</a>. حرفه ای پشتیبانی در میز کمک ما "
|
||||||
"با بیشتر خود را در عمق کمک, چالش های فنی."
|
"با بیشتر خود را در عمق کمک, چالش های فنی."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3088,7 +3137,7 @@ msgstr ""
|
||||||
"انجمن های جامعه ما که ممکن است قادر به کمک به شما کشف کردن 'چگونه بازی یا "
|
"انجمن های جامعه ما که ممکن است قادر به کمک به شما کشف کردن 'چگونه بازی یا "
|
||||||
"بازی' از جهان ACF."
|
"بازی' از جهان ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3097,7 +3146,7 @@ msgstr ""
|
||||||
"مستندات <a href=\"%s\" target=\"_blank\">.</a> مستندات گسترده ما شامل مراجع "
|
"مستندات <a href=\"%s\" target=\"_blank\">.</a> مستندات گسترده ما شامل مراجع "
|
||||||
"و راهنماهایی برای اکثر موقعیت هایی است که ممکن است با آن مواجه شوند."
|
"و راهنماهایی برای اکثر موقعیت هایی است که ممکن است با آن مواجه شوند."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3107,11 +3156,11 @@ msgstr ""
|
||||||
"بهترین بهره را از وب سایت خود ببرید. اگر به مشکلی برخوردید ، چندین مکان وجود "
|
"بهترین بهره را از وب سایت خود ببرید. اگر به مشکلی برخوردید ، چندین مکان وجود "
|
||||||
"دارد که می توانید کمک کنید:"
|
"دارد که می توانید کمک کنید:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "کمک و پشتیبانی"
|
msgstr "کمک و پشتیبانی"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3119,7 +3168,7 @@ msgstr ""
|
||||||
"لطفا از زبانه پشتیبانی برای تماس استفاده کنید باید خودتان را پیدا کنید که "
|
"لطفا از زبانه پشتیبانی برای تماس استفاده کنید باید خودتان را پیدا کنید که "
|
||||||
"نیاز به کمک دارد."
|
"نیاز به کمک دارد."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3129,7 +3178,7 @@ msgstr ""
|
||||||
"ما توصیه می کنیم برای اولین بار خواندن راهنمای شروع به کار ما برای آشنایی با "
|
"ما توصیه می کنیم برای اولین بار خواندن راهنمای شروع به کار ما برای آشنایی با "
|
||||||
"فلسفه پلاگین و بهترین تمرین."
|
"فلسفه پلاگین و بهترین تمرین."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3139,7 +3188,7 @@ msgstr ""
|
||||||
"کردن وردپرس ویرایش صفحه نمایش با زمینه های اضافی، و API بصری برای نمایش ارزش "
|
"کردن وردپرس ویرایش صفحه نمایش با زمینه های اضافی، و API بصری برای نمایش ارزش "
|
||||||
"های زمینه سفارشی در هر فایل قالب تم."
|
"های زمینه سفارشی در هر فایل قالب تم."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "مرور کلی"
|
msgstr "مرور کلی"
|
||||||
|
|
||||||
|
|
@ -3159,7 +3208,7 @@ msgstr "کلید نامعتبر است"
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "خطا در بارگزاری زمینه"
|
msgstr "خطا در بارگزاری زمینه"
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "موقعیتی یافت نشد: %s"
|
msgstr "موقعیتی یافت نشد: %s"
|
||||||
|
|
@ -3307,7 +3356,7 @@ msgid "Show this field if"
|
||||||
msgstr "نمایش این گروه فیلد اگر"
|
msgstr "نمایش این گروه فیلد اگر"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "منطق شرطی"
|
msgstr "منطق شرطی"
|
||||||
|
|
||||||
|
|
@ -3351,15 +3400,15 @@ msgstr "به روزرسانی دیتابیس لازم است"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "برگه تنظیمات"
|
msgstr "برگه تنظیمات"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "گالری"
|
msgstr "گالری"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "محتوای انعطاف پذیر"
|
msgstr "محتوای انعطاف پذیر"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "زمینه تکرار کننده"
|
msgstr "زمینه تکرار کننده"
|
||||||
|
|
||||||
|
|
@ -3605,7 +3654,7 @@ msgstr "گرفتن و کشیدن برای مرتب سازی"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "نمایش این گروه زمینه اگر"
|
msgstr "نمایش این گروه زمینه اگر"
|
||||||
|
|
@ -3777,7 +3826,7 @@ msgstr "تکثیر این زمینه"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "مستندات"
|
msgstr "مستندات"
|
||||||
|
|
||||||
|
|
@ -3877,7 +3926,7 @@ msgstr "خالی (null)"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "کپی"
|
msgstr "کپی"
|
||||||
|
|
@ -3895,7 +3944,7 @@ msgid "Checked"
|
||||||
msgstr "انتخاب شده"
|
msgstr "انتخاب شده"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "جابجایی زمینه دلخواه"
|
msgstr "جابجایی زمینه دلخواه"
|
||||||
|
|
@ -3911,13 +3960,13 @@ msgid "Field group title is required"
|
||||||
msgstr "عنوان گروه زمینه ضروری است"
|
msgstr "عنوان گروه زمینه ضروری است"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "این زمینه قبل از اینکه ذخیره شود نمی تواند جابجا شود"
|
msgstr "این زمینه قبل از اینکه ذخیره شود نمی تواند جابجا شود"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "کلمه متنی \"field_\" نباید در ابتدای نام فیلد استفاده شود"
|
msgstr "کلمه متنی \"field_\" نباید در ابتدای نام فیلد استفاده شود"
|
||||||
|
|
@ -3984,15 +4033,15 @@ msgstr "برگه"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "نوشته"
|
msgstr "نوشته"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "رابطه"
|
msgstr "رابطه"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "انتخاب"
|
msgstr "انتخاب"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "پایه"
|
msgstr "پایه"
|
||||||
|
|
||||||
|
|
@ -4020,7 +4069,7 @@ msgstr "بروزرسانی"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "اعتبار سنجی ایمیل"
|
msgstr "اعتبار سنجی ایمیل"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "محتوا"
|
msgstr "محتوا"
|
||||||
|
|
||||||
|
|
@ -4029,8 +4078,8 @@ msgstr "محتوا"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "عنوان"
|
msgstr "عنوان"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "ویرایش گروه زمینه"
|
msgstr "ویرایش گروه زمینه"
|
||||||
|
|
||||||
|
|
@ -4087,59 +4136,59 @@ msgid "Has any value"
|
||||||
msgstr "هر نوع مقدار"
|
msgstr "هر نوع مقدار"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "لغو"
|
msgstr "لغو"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "اطمینان دارید؟"
|
msgstr "اطمینان دارید؟"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d گزینه نیاز به بررسی دارد"
|
msgstr "%d گزینه نیاز به بررسی دارد"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "یکی از گزینه ها نیاز به بررسی دارد"
|
msgstr "یکی از گزینه ها نیاز به بررسی دارد"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "مشکل در اعتبار سنجی"
|
msgstr "مشکل در اعتبار سنجی"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "اعتبار سنجی موفق بود"
|
msgstr "اعتبار سنجی موفق بود"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "ممنوع"
|
msgstr "ممنوع"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "عدم نمایش جزئیات"
|
msgstr "عدم نمایش جزئیات"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "نمایش جزئیات"
|
msgstr "نمایش جزئیات"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "بارگذاری شده در این نوشته"
|
msgstr "بارگذاری شده در این نوشته"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4150,7 +4199,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "ویرایش"
|
msgstr "ویرایش"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "اگر از صفحه جاری خارج شوید ، تغییرات شما ذخیره نخواهند شد"
|
msgstr "اگر از صفحه جاری خارج شوید ، تغییرات شما ذخیره نخواهند شد"
|
||||||
|
|
@ -4165,7 +4214,7 @@ msgstr "نوع فایل باید %s باشد."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4217,7 +4266,7 @@ msgstr "تصویر بندانگشتی"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(بدون برچسب)"
|
msgstr "(بدون برچسب)"
|
||||||
|
|
@ -4449,18 +4498,18 @@ msgid "File name"
|
||||||
msgstr "نام فایل"
|
msgstr "نام فایل"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "بروزرسانی پرونده"
|
msgstr "بروزرسانی پرونده"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "ویرایش پرونده"
|
msgstr "ویرایش پرونده"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "انتخاب پرونده"
|
msgstr "انتخاب پرونده"
|
||||||
|
|
||||||
|
|
@ -4486,7 +4535,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید"
|
msgstr "هر مقدار پیش فرض را در یک خط جدید وارد کنید"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "انتخاب"
|
msgstr "انتخاب"
|
||||||
|
|
@ -4838,48 +4887,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "مادر"
|
msgstr "مادر"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد"
|
msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "نوار ابزار"
|
msgstr "نوار ابزار"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "فقط متن"
|
msgstr "فقط متن"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "فقط بصری"
|
msgstr "فقط بصری"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "بصری و متنی"
|
msgstr "بصری و متنی"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "تب ها"
|
msgstr "تب ها"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "برای اجرای TinyMCE کلیک کنید"
|
msgstr "برای اجرای TinyMCE کلیک کنید"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "متن"
|
msgstr "متن"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "بصری"
|
msgstr "بصری"
|
||||||
|
|
||||||
|
|
@ -4956,7 +5005,7 @@ msgstr "نگهدارنده مکان متن"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود"
|
msgstr "هنگام ایجاد یک نوشته جدید نمایش داده می شود"
|
||||||
|
|
||||||
|
|
@ -5056,17 +5105,17 @@ msgid "Select post type"
|
||||||
msgstr "انتحاب نوع نوشته"
|
msgstr "انتحاب نوع نوشته"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "مطابقتی یافت نشد"
|
msgstr "مطابقتی یافت نشد"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "درحال خواندن"
|
msgstr "درحال خواندن"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "مقادیر به حداکثر رسیده اند ( {max} آیتم )"
|
msgstr "مقادیر به حداکثر رسیده اند ( {max} آیتم )"
|
||||||
|
|
||||||
|
|
@ -5175,7 +5224,7 @@ msgstr "افزودن تصویر"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "هیچ تصویری انتخاب نشده"
|
msgstr "هیچ تصویری انتخاب نشده"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5190,22 +5239,22 @@ msgid "Edit"
|
||||||
msgstr "ویرایش"
|
msgstr "ویرایش"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "تمام تصاویر"
|
msgstr "تمام تصاویر"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "بروزرسانی تصویر"
|
msgstr "بروزرسانی تصویر"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "ویرایش تصویر"
|
msgstr "ویرایش تصویر"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "انتخاب تصویر"
|
msgstr "انتخاب تصویر"
|
||||||
|
|
||||||
|
|
@ -5290,16 +5339,16 @@ msgstr "تاریخ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "عرض"
|
msgstr "عرض"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "اندازه جانمایی"
|
msgstr "اندازه جانمایی"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "آدرس را وارد کنید"
|
msgstr "آدرس را وارد کنید"
|
||||||
|
|
||||||
|
|
@ -5340,7 +5389,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "مقدار پیش فرض"
|
msgstr "مقدار پیش فرض"
|
||||||
|
|
||||||
|
|
@ -5354,13 +5403,13 @@ msgstr "نمایش متن همراه انتخاب"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "پیام"
|
msgstr "پیام"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "خیر"
|
msgstr "خیر"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5370,31 +5419,31 @@ msgstr "بله"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "صحیح / غلط"
|
msgstr "صحیح / غلط"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "سطر"
|
msgstr "سطر"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "جدول"
|
msgstr "جدول"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "بلوک"
|
msgstr "بلوک"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "استایل جهت نمایش فیلد انتخابی"
|
msgstr "استایل جهت نمایش فیلد انتخابی"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "چیدمان"
|
msgstr "چیدمان"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "زمینههای زیرمجموعه"
|
msgstr "زمینههای زیرمجموعه"
|
||||||
|
|
||||||
|
|
@ -5409,7 +5458,7 @@ msgstr "سفارشی سازی ارتفاع نقشه"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "ارتفاع"
|
msgstr "ارتفاع"
|
||||||
|
|
||||||
|
|
@ -5449,7 +5498,7 @@ msgid "Search"
|
||||||
msgstr "جستجو"
|
msgstr "جستجو"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "با عرض پوزش، این مرورگر از موقعیت یابی جغرافیایی پشتیبانی نمی کند"
|
msgstr "با عرض پوزش، این مرورگر از موقعیت یابی جغرافیایی پشتیبانی نمی کند"
|
||||||
|
|
||||||
|
|
@ -5649,9 +5698,9 @@ msgstr "تنظیمات به روز شدند"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
|
|
@ -6115,8 +6164,8 @@ msgid ""
|
||||||
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"برای به روزرسانی لطفا کد لایسنس را وارد کنید. <a href=\"%s\" target=\"_blank"
|
"برای به روزرسانی لطفا کد لایسنس را وارد کنید. <a href=\"%s\" "
|
||||||
"\">قیمت ها</a>."
|
"target=\"_blank\">قیمت ها</a>."
|
||||||
|
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
msgid "License Key"
|
msgid "License Key"
|
||||||
|
|
|
||||||
BIN
lang/acf-fi.mo
BIN
lang/acf-fi.mo
Binary file not shown.
295
lang/acf-fi.po
295
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr "Uusi ACF PRO -lisenssi"
|
msgstr "Uusi ACF PRO -lisenssi"
|
||||||
|
|
@ -106,26 +155,26 @@ msgid "Add fields"
|
||||||
msgstr "Lisää kenttiä"
|
msgstr "Lisää kenttiä"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "Tämä kenttä"
|
msgstr "Tämä kenttä"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Palaute"
|
msgstr "Palaute"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Tuki"
|
msgstr "Tuki"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "kehittää ja ylläpitää"
|
msgstr "kehittää ja ylläpitää"
|
||||||
|
|
||||||
|
|
@ -415,8 +464,8 @@ msgid ""
|
||||||
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
||||||
"term</a>."
|
"term</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tämän kentän ei tule olla WordPressin <a href=\"%s\" target=\"_blank"
|
"Tämän kentän ei tule olla WordPressin <a href=\"%s\" "
|
||||||
"\">varattu termi</a>."
|
"target=\"_blank\">varattu termi</a>."
|
||||||
|
|
||||||
#: includes/post-types/class-acf-post-type.php:329
|
#: includes/post-types/class-acf-post-type.php:329
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -662,7 +711,7 @@ msgstr ""
|
||||||
"esitetään sisällön muokkaamisen yhteydessä. Kätevä suurten tietojoukkojen "
|
"esitetään sisällön muokkaamisen yhteydessä. Kätevä suurten tietojoukkojen "
|
||||||
"siistinä pitämiseen."
|
"siistinä pitämiseen."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -672,7 +721,7 @@ msgstr ""
|
||||||
"toimintakehotekorttien toistamiseen. Toimii ylätasona alakentille, jotka "
|
"toimintakehotekorttien toistamiseen. Toimii ylätasona alakentille, jotka "
|
||||||
"voidaan toistaa uudestaan ja uudestaan."
|
"voidaan toistaa uudestaan ja uudestaan."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -684,14 +733,14 @@ msgstr ""
|
||||||
"mahdollistavat uusien liitteiden sijoituspaikan määrittämiseen galleriassa, "
|
"mahdollistavat uusien liitteiden sijoituspaikan määrittämiseen galleriassa, "
|
||||||
"sekä sallitun minimi- ja maksimiliitemäärien asettamiseksi."
|
"sekä sallitun minimi- ja maksimiliitemäärien asettamiseksi."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -699,16 +748,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klooni"
|
msgstr "Klooni"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2551,14 +2600,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2571,13 +2620,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2662,7 +2711,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2672,7 +2721,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2839,16 +2888,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2893,7 +2942,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2928,12 +2977,12 @@ 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."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Olemme havainneet yhden tai useamman kutsun ACF-"
|
"<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 "
|
"kenttäarvojen noutamiseksi ennen ACF:n alustamista. Tätä ei tueta ja se voi "
|
||||||
|
|
@ -3128,23 +3177,23 @@ msgstr "Ladataan diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Tarkista paikalliset JSON-muutokset"
|
msgstr "Tarkista paikalliset JSON-muutokset"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Siirry verkkosivuille"
|
msgstr "Siirry verkkosivuille"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Näytä tarkemmat tiedot"
|
msgstr "Näytä tarkemmat tiedot"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versio %s"
|
msgstr "Versio %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Tiedot"
|
msgstr "Tiedot"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3152,7 +3201,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Tukipalvelu</a>. Tukipalvelumme "
|
"<a href=\"%s\" target=\"_blank\">Tukipalvelu</a>. Tukipalvelumme "
|
||||||
"ammattilaiset auttavat syvällisemmissä teknisissä haasteissasi."
|
"ammattilaiset auttavat syvällisemmissä teknisissä haasteissasi."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3162,7 +3211,7 @@ msgstr ""
|
||||||
"aktiivinen ja ystävällinen yhteisö, joka voi ehkä auttaa sinua selvittämään "
|
"aktiivinen ja ystävällinen yhteisö, joka voi ehkä auttaa sinua selvittämään "
|
||||||
"ACF-maailman ihmeellisyyksiä."
|
"ACF-maailman ihmeellisyyksiä."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3171,7 +3220,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Dokumentaatio</a>. Laaja dokumentaatiomme "
|
"<a href=\"%s\" target=\"_blank\">Dokumentaatio</a>. Laaja dokumentaatiomme "
|
||||||
"sisältää viittauksia ja oppaita useimpiin kohtaamiisi tilanteisiin."
|
"sisältää viittauksia ja oppaita useimpiin kohtaamiisi tilanteisiin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3181,11 +3230,11 @@ msgstr ""
|
||||||
"irti verkkosivustostasi ACF:n avulla. Jos kohtaat ongelmia, apua löytyy "
|
"irti verkkosivustostasi ACF:n avulla. Jos kohtaat ongelmia, apua löytyy "
|
||||||
"useista paikoista:"
|
"useista paikoista:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Ohjeet & tukipalvelut"
|
msgstr "Ohjeet & tukipalvelut"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3193,17 +3242,17 @@ msgstr ""
|
||||||
"Ota yhteyttä Ohjeet & tukipalvelut -välilehdessä, jos huomaat tarvitsevasi "
|
"Ota yhteyttä Ohjeet & tukipalvelut -välilehdessä, jos huomaat tarvitsevasi "
|
||||||
"apua."
|
"apua."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"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 ""
|
||||||
"Ennen kuin luot ensimmäisen kenttäryhmäsi, suosittelemme lukemaan <a href="
|
"Ennen kuin luot ensimmäisen kenttäryhmäsi, suosittelemme lukemaan <a "
|
||||||
"\"%s\" target=\"_blank\">aloitusoppaamme</a>, jossa tutustutaan lisäosan "
|
"href=\"%s\" target=\"_blank\">aloitusoppaamme</a>, jossa tutustutaan "
|
||||||
"filosofiaan ja parhaisiin käytäntöihin."
|
"lisäosan filosofiaan ja parhaisiin käytäntöihin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3214,7 +3263,7 @@ msgstr ""
|
||||||
"intuitiivisen API:n mukautettujen kenttäarvojen näyttämiseksi missä tahansa "
|
"intuitiivisen API:n mukautettujen kenttäarvojen näyttämiseksi missä tahansa "
|
||||||
"teeman mallitiedostossa."
|
"teeman mallitiedostossa."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Yleiskatsaus"
|
msgstr "Yleiskatsaus"
|
||||||
|
|
||||||
|
|
@ -3234,7 +3283,7 @@ msgstr "Virheellinen nonce."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Virhe ladattaessa kenttää."
|
msgstr "Virhe ladattaessa kenttää."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Sijaintia ei löytynyt: %s"
|
msgstr "Sijaintia ei löytynyt: %s"
|
||||||
|
|
@ -3382,7 +3431,7 @@ msgid "Show this field if"
|
||||||
msgstr "Näytä tämä kenttä, jos"
|
msgstr "Näytä tämä kenttä, jos"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Ehdollinen logiikka"
|
msgstr "Ehdollinen logiikka"
|
||||||
|
|
||||||
|
|
@ -3427,15 +3476,15 @@ msgstr "Tietokanta on päivitettävä"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Asetukset-sivu"
|
msgstr "Asetukset-sivu"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galleria"
|
msgstr "Galleria"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Joustava sisältö"
|
msgstr "Joustava sisältö"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Toista rivejä"
|
msgstr "Toista rivejä"
|
||||||
|
|
||||||
|
|
@ -3682,7 +3731,7 @@ msgstr "Muuta järjestystä vetämällä ja pudottamalla"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Näytä tämä kenttäryhmä, jos"
|
msgstr "Näytä tämä kenttäryhmä, jos"
|
||||||
|
|
@ -3862,7 +3911,7 @@ msgstr "Monista tämä kohde"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3965,7 +4014,7 @@ msgstr "Tyhjä"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "kopio"
|
msgstr "kopio"
|
||||||
|
|
@ -3983,7 +4032,7 @@ msgid "Checked"
|
||||||
msgstr "Valittu"
|
msgstr "Valittu"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Siirrä muokattua kenttää"
|
msgstr "Siirrä muokattua kenttää"
|
||||||
|
|
@ -3999,13 +4048,13 @@ msgid "Field group title is required"
|
||||||
msgstr "Kenttäryhmän otsikko on pakollinen"
|
msgstr "Kenttäryhmän otsikko on pakollinen"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Tätä kenttää ei voi siirtää ennen kuin muutokset on talletettu"
|
msgstr "Tätä kenttää ei voi siirtää ennen kuin muutokset on talletettu"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "Merkkijonoa \"field_\" ei saa käyttää kentän nimen alussa"
|
msgstr "Merkkijonoa \"field_\" ei saa käyttää kentän nimen alussa"
|
||||||
|
|
@ -4072,15 +4121,15 @@ msgstr "Sivu"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Artikkeli"
|
msgstr "Artikkeli"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relationaalinen"
|
msgstr "Relationaalinen"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Valintakentät"
|
msgstr "Valintakentät"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Perus"
|
msgstr "Perus"
|
||||||
|
|
||||||
|
|
@ -4108,7 +4157,7 @@ msgstr "Päivitä"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validoi sähköposti"
|
msgstr "Validoi sähköposti"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Sisältö"
|
msgstr "Sisältö"
|
||||||
|
|
||||||
|
|
@ -4117,8 +4166,8 @@ msgstr "Sisältö"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Otsikko"
|
msgstr "Otsikko"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Muokkaa kenttäryhmää"
|
msgstr "Muokkaa kenttäryhmää"
|
||||||
|
|
||||||
|
|
@ -4175,59 +4224,59 @@ msgid "Has any value"
|
||||||
msgstr "On mitään arvoa"
|
msgstr "On mitään arvoa"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Peruuta"
|
msgstr "Peruuta"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Oletko varma?"
|
msgstr "Oletko varma?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d kenttää vaativat huomiota"
|
msgstr "%d kenttää vaativat huomiota"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "Yksi kenttä vaatii huomiota"
|
msgstr "Yksi kenttä vaatii huomiota"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Lisäkentän validointi epäonnistui"
|
msgstr "Lisäkentän validointi epäonnistui"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Kenttäryhmän validointi onnistui"
|
msgstr "Kenttäryhmän validointi onnistui"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Rajoitettu"
|
msgstr "Rajoitettu"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Vähemmän tietoja"
|
msgstr "Vähemmän tietoja"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Enemmän tietoja"
|
msgstr "Enemmän tietoja"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Tähän kenttäryhmään ladatut kuvat"
|
msgstr "Tähän kenttäryhmään ladatut kuvat"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4238,7 +4287,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Muokkaa"
|
msgstr "Muokkaa"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Tekemäsi muutokset menetetään, jos siirryt pois tältä sivulta"
|
msgstr "Tekemäsi muutokset menetetään, jos siirryt pois tältä sivulta"
|
||||||
|
|
@ -4253,7 +4302,7 @@ msgstr "Tiedoston koko täytyy olla %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4305,7 +4354,7 @@ msgstr "Pienoiskuva"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(ei nimiötä)"
|
msgstr "(ei nimiötä)"
|
||||||
|
|
@ -4537,18 +4586,18 @@ msgid "File name"
|
||||||
msgstr "Tiedoston nimi"
|
msgstr "Tiedoston nimi"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Päivitä tiedosto"
|
msgstr "Päivitä tiedosto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Muokkaa tiedostoa"
|
msgstr "Muokkaa tiedostoa"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Valitse tiedosto"
|
msgstr "Valitse tiedosto"
|
||||||
|
|
||||||
|
|
@ -4574,7 +4623,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Syötä jokainen oletusarvo uudelle riville"
|
msgstr "Syötä jokainen oletusarvo uudelle riville"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Valitse"
|
msgstr "Valitse"
|
||||||
|
|
@ -4927,48 +4976,48 @@ msgstr "Salli tyhjä?"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Vanhempi"
|
msgstr "Vanhempi"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE:tä ei alusteta ennen kuin kenttää napsautetaan"
|
msgstr "TinyMCE:tä ei alusteta ennen kuin kenttää napsautetaan"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Viivytä alustusta?"
|
msgstr "Viivytä alustusta?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Näytä Lisää media -painike?"
|
msgstr "Näytä Lisää media -painike?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Työkalupalkki"
|
msgstr "Työkalupalkki"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Vain teksti"
|
msgstr "Vain teksti"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Vain graafinen"
|
msgstr "Vain graafinen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Graafinen ja teksti"
|
msgstr "Graafinen ja teksti"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Välilehdet"
|
msgstr "Välilehdet"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Klikkaa ottaaksesi käyttöön graafisen editorin"
|
msgstr "Klikkaa ottaaksesi käyttöön graafisen editorin"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Teksti"
|
msgstr "Teksti"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Graafinen"
|
msgstr "Graafinen"
|
||||||
|
|
||||||
|
|
@ -5045,7 +5094,7 @@ msgstr "Täyteteksti"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Kentän oletusarvo"
|
msgstr "Kentän oletusarvo"
|
||||||
|
|
||||||
|
|
@ -5146,17 +5195,17 @@ msgid "Select post type"
|
||||||
msgstr "Valitse artikkelityyppi"
|
msgstr "Valitse artikkelityyppi"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Ei yhtään osumaa"
|
msgstr "Ei yhtään osumaa"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Ladataan"
|
msgstr "Ladataan"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Maksimiarvo saavutettu ( {max} artikkelia )"
|
msgstr "Maksimiarvo saavutettu ( {max} artikkelia )"
|
||||||
|
|
||||||
|
|
@ -5265,7 +5314,7 @@ msgstr "Lisää kuva"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Ei kuvia valittu"
|
msgstr "Ei kuvia valittu"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5280,22 +5329,22 @@ msgid "Edit"
|
||||||
msgstr "Muokkaa"
|
msgstr "Muokkaa"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Kaikki kuvat"
|
msgstr "Kaikki kuvat"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Päivitä kuva"
|
msgstr "Päivitä kuva"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Muokkaa kuvaa"
|
msgstr "Muokkaa kuvaa"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Valitse kuva"
|
msgstr "Valitse kuva"
|
||||||
|
|
||||||
|
|
@ -5380,16 +5429,16 @@ msgstr "Päivämäärävalitsin"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Leveys"
|
msgstr "Leveys"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Upotuksen koko"
|
msgstr "Upotuksen koko"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Syötä URL"
|
msgstr "Syötä URL"
|
||||||
|
|
||||||
|
|
@ -5430,7 +5479,7 @@ msgstr "Tyylikäs käyttöliittymä"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Oletusarvo"
|
msgstr "Oletusarvo"
|
||||||
|
|
||||||
|
|
@ -5444,13 +5493,13 @@ msgstr "Näytä teksti valintaruudun rinnalla"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Viesti"
|
msgstr "Viesti"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Ei"
|
msgstr "Ei"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5460,31 +5509,31 @@ msgstr "Kyllä"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "”Tosi / Epätosi” -valinta"
|
msgstr "”Tosi / Epätosi” -valinta"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Rivi"
|
msgstr "Rivi"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Taulukko"
|
msgstr "Taulukko"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Lohko"
|
msgstr "Lohko"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa"
|
msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Asettelu"
|
msgstr "Asettelu"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Alakentät"
|
msgstr "Alakentät"
|
||||||
|
|
||||||
|
|
@ -5499,7 +5548,7 @@ msgstr "Kartan korkeuden mukauttaminen"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Korkeus"
|
msgstr "Korkeus"
|
||||||
|
|
||||||
|
|
@ -5539,7 +5588,7 @@ msgid "Search"
|
||||||
msgstr "Etsi"
|
msgstr "Etsi"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Pahoittelut, tämä selain ei tue paikannusta"
|
msgstr "Pahoittelut, tämä selain ei tue paikannusta"
|
||||||
|
|
||||||
|
|
@ -5741,13 +5790,13 @@ msgstr "Asetukset päivitetty"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ottaaksesi käyttöön päivitykset, syötä lisenssiavaimesi <a href=\"%1$s"
|
"Ottaaksesi käyttöön päivitykset, syötä lisenssiavaimesi <a "
|
||||||
"\">Päivitykset</a> -sivulle. Jos sinulla ei ole lisenssiavainta, katso <a "
|
"href=\"%1$s\">Päivitykset</a> -sivulle. Jos sinulla ei ole lisenssiavainta, "
|
||||||
"href=\"%2$s\" target=\"_blank\">tiedot ja hinnoittelu</a>."
|
"katso <a href=\"%2$s\" target=\"_blank\">tiedot ja hinnoittelu</a>."
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -21,6 +21,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -618,11 +667,11 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clone"
|
msgstr "Clone"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2576,7 +2625,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2586,7 +2635,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2755,16 +2804,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2809,7 +2858,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2838,12 +2887,12 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
|
|
@ -3034,74 +3083,74 @@ msgstr ""
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
"you can find help:"
|
"you can find help:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3121,7 +3170,7 @@ msgstr "Nonce non valide."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Erreur au chargement du champ."
|
msgstr "Erreur au chargement du champ."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Emplacement introuvable : %s"
|
msgstr "Emplacement introuvable : %s"
|
||||||
|
|
@ -3269,7 +3318,7 @@ msgid "Show this field if"
|
||||||
msgstr "Montrer ce champ si"
|
msgstr "Montrer ce champ si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Logique conditionnelle"
|
msgstr "Logique conditionnelle"
|
||||||
|
|
||||||
|
|
@ -3315,15 +3364,15 @@ msgstr "Mise-à-jour de la base de données nécessaire"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Page d‘options"
|
msgstr "Page d‘options"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galerie"
|
msgstr "Galerie"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenu flexible"
|
msgstr "Contenu flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Répéteur"
|
msgstr "Répéteur"
|
||||||
|
|
||||||
|
|
@ -3572,7 +3621,7 @@ msgstr "Faites glisser pour réorganiser"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Montrer ce groupe si"
|
msgstr "Montrer ce groupe si"
|
||||||
|
|
@ -3750,7 +3799,7 @@ msgstr "Dupliquer cet élément"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentation"
|
msgstr "Documentation"
|
||||||
|
|
||||||
|
|
@ -3853,7 +3902,7 @@ msgstr "Vide"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copie"
|
msgstr "copie"
|
||||||
|
|
@ -3871,7 +3920,7 @@ msgid "Checked"
|
||||||
msgstr "Coché"
|
msgstr "Coché"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Déplacer le champ personnalisé"
|
msgstr "Déplacer le champ personnalisé"
|
||||||
|
|
@ -3887,7 +3936,7 @@ msgid "Field group title is required"
|
||||||
msgstr "Veuillez indiquer un titre pour le groupe de champs"
|
msgstr "Veuillez indiquer un titre pour le groupe de champs"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3895,7 +3944,7 @@ msgstr ""
|
||||||
"enregistrées"
|
"enregistrées"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "Le nom d’un champ ne peut pas commencer par « field_ »"
|
msgstr "Le nom d’un champ ne peut pas commencer par « field_ »"
|
||||||
|
|
@ -3962,15 +4011,15 @@ msgstr "Page"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Article"
|
msgstr "Article"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relationnel"
|
msgstr "Relationnel"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Choix"
|
msgstr "Choix"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Commun"
|
msgstr "Commun"
|
||||||
|
|
||||||
|
|
@ -3998,7 +4047,7 @@ msgstr "Mise à jour"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valider l’adresse courriel"
|
msgstr "Valider l’adresse courriel"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenu"
|
msgstr "Contenu"
|
||||||
|
|
||||||
|
|
@ -4007,8 +4056,8 @@ msgstr "Contenu"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titre"
|
msgstr "Titre"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Modifier le groupe de champs"
|
msgstr "Modifier le groupe de champs"
|
||||||
|
|
||||||
|
|
@ -4065,59 +4114,59 @@ msgid "Has any value"
|
||||||
msgstr "A n'importe quelle valeur"
|
msgstr "A n'importe quelle valeur"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuler"
|
msgstr "Annuler"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Êtes-vous sûr(e)?"
|
msgstr "Êtes-vous sûr(e)?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d champs requièrent votre attention"
|
msgstr "%d champs requièrent votre attention"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 champ requiert votre attention"
|
msgstr "1 champ requiert votre attention"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Échec de la validation"
|
msgstr "Échec de la validation"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validé avec succès"
|
msgstr "Validé avec succès"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Limité"
|
msgstr "Limité"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Masquer les détails"
|
msgstr "Masquer les détails"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Afficher les détails"
|
msgstr "Afficher les détails"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Lié(s) à cet article"
|
msgstr "Lié(s) à cet article"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4128,7 +4177,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Modifier"
|
msgstr "Modifier"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Les modifications seront perdues si vous quittez cette page"
|
msgstr "Les modifications seront perdues si vous quittez cette page"
|
||||||
|
|
@ -4143,7 +4192,7 @@ msgstr "Le type de fichier doit être %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4195,7 +4244,7 @@ msgstr "Miniature"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(aucun libellé)"
|
msgstr "(aucun libellé)"
|
||||||
|
|
@ -4428,18 +4477,18 @@ msgid "File name"
|
||||||
msgstr "Nom du fichier"
|
msgstr "Nom du fichier"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Mettre à jour le fichier"
|
msgstr "Mettre à jour le fichier"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Modifier le fichier"
|
msgstr "Modifier le fichier"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Sélectionner un fichier"
|
msgstr "Sélectionner un fichier"
|
||||||
|
|
||||||
|
|
@ -4465,7 +4514,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Entrez chaque valeur par défaut sur une nouvelle ligne"
|
msgstr "Entrez chaque valeur par défaut sur une nouvelle ligne"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Choisir"
|
msgstr "Choisir"
|
||||||
|
|
@ -4820,49 +4869,49 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Parent"
|
msgstr "Parent"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"TinyMCE ne sera pas initialisé avant que l’utilisateur clique sur le champ"
|
"TinyMCE ne sera pas initialisé avant que l’utilisateur clique sur le champ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barre d‘outils"
|
msgstr "Barre d‘outils"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Texte brut seulement"
|
msgstr "Texte brut seulement"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Visuel seulement"
|
msgstr "Visuel seulement"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuel & Texte brut"
|
msgstr "Visuel & Texte brut"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Onglets"
|
msgstr "Onglets"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Cliquez pour initialiser TinyMCE"
|
msgstr "Cliquez pour initialiser TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texte"
|
msgstr "Texte"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuel"
|
msgstr "Visuel"
|
||||||
|
|
||||||
|
|
@ -4939,7 +4988,7 @@ msgstr "Texte indicatif"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Valeur donnée lors de la création d’un nouvel article"
|
msgstr "Valeur donnée lors de la création d’un nouvel article"
|
||||||
|
|
||||||
|
|
@ -5040,17 +5089,17 @@ msgid "Select post type"
|
||||||
msgstr "Choisissez le type de publication"
|
msgstr "Choisissez le type de publication"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Aucun résultat"
|
msgstr "Aucun résultat"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Chargement en cours"
|
msgstr "Chargement en cours"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Nombre maximal de valeurs atteint ({max} valeurs)"
|
msgstr "Nombre maximal de valeurs atteint ({max} valeurs)"
|
||||||
|
|
||||||
|
|
@ -5161,7 +5210,7 @@ msgstr "Ajouter une image"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Aucune image sélectionnée"
|
msgstr "Aucune image sélectionnée"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5176,22 +5225,22 @@ msgid "Edit"
|
||||||
msgstr "Modifier"
|
msgstr "Modifier"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Toutes les images"
|
msgstr "Toutes les images"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Mettre à jour"
|
msgstr "Mettre à jour"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Modifier l'image"
|
msgstr "Modifier l'image"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Sélectionner une image"
|
msgstr "Sélectionner une image"
|
||||||
|
|
||||||
|
|
@ -5276,16 +5325,16 @@ msgstr "Sélecteur de date"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Largeur"
|
msgstr "Largeur"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Dimensions"
|
msgstr "Dimensions"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Entrez l'URL"
|
msgstr "Entrez l'URL"
|
||||||
|
|
||||||
|
|
@ -5326,7 +5375,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valeur par défaut"
|
msgstr "Valeur par défaut"
|
||||||
|
|
||||||
|
|
@ -5340,13 +5389,13 @@ msgstr "Affiche le texte à côté de la case à cocher"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Message"
|
msgstr "Message"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Non"
|
msgstr "Non"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5356,31 +5405,31 @@ msgstr "Oui"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Oui / Non"
|
msgstr "Oui / Non"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Rangée"
|
msgstr "Rangée"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tableau"
|
msgstr "Tableau"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloc"
|
msgstr "Bloc"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Style utilisé pour générer les champs sélectionnés"
|
msgstr "Style utilisé pour générer les champs sélectionnés"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Mise en page"
|
msgstr "Mise en page"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Sous-champs"
|
msgstr "Sous-champs"
|
||||||
|
|
||||||
|
|
@ -5395,7 +5444,7 @@ msgstr "Hauteur de la carte"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Hauteur"
|
msgstr "Hauteur"
|
||||||
|
|
||||||
|
|
@ -5435,7 +5484,7 @@ msgid "Search"
|
||||||
msgstr "Rechercher"
|
msgstr "Rechercher"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation"
|
msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation"
|
||||||
|
|
||||||
|
|
@ -5642,13 +5691,13 @@ msgstr "Options mises à jours"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>."
|
#| "<a href=\"%s\">details & pricing</a>."
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pour activer les mises à jour, veuillez entrer votre clé de licence sur la "
|
"Pour activer les mises à jour, veuillez entrer votre clé de licence sur la "
|
||||||
"page <a href=\"%s\">Mises à jour</a>. Si vous n’en avez pas, rendez-vous sur "
|
"page <a href=\"%s\">Mises à jour</a>. Si vous n’en avez pas, rendez-vous sur "
|
||||||
|
|
@ -5698,8 +5747,8 @@ msgid ""
|
||||||
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
||||||
"Custom Field Group</a>"
|
"Custom Field Group</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aucun groupe de champs trouvé pour cette page d’options. <a href=\"%s"
|
"Aucun groupe de champs trouvé pour cette page d’options. <a "
|
||||||
"\">Créer un groupe de champs</a>"
|
"href=\"%s\">Créer un groupe de champs</a>"
|
||||||
|
|
||||||
#: pro/admin/admin-updates.php:52
|
#: pro/admin/admin-updates.php:52
|
||||||
msgid "<b>Error</b>. Could not connect to update server"
|
msgid "<b>Error</b>. Could not connect to update server"
|
||||||
|
|
@ -6174,8 +6223,8 @@ msgid ""
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pour débloquer les mises à jour, veuillez entrer votre clé de licence ci-"
|
"Pour débloquer les mises à jour, veuillez entrer votre clé de licence ci-"
|
||||||
"dessous. Si vous n’en avez pas, rendez-vous sur nos <a href=\"%s\" target="
|
"dessous. Si vous n’en avez pas, rendez-vous sur nos <a href=\"%s\" "
|
||||||
"\"_blank\">détails & tarifs</a>."
|
"target=\"_blank\">détails & tarifs</a>."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,25 +21,76 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
"Veuillez contacter l’administrateur ou l’administratrice de votre site pour "
|
||||||
|
"plus de détails."
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr "Apprenez comment corriger"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr "Masquer les détails"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr "Afficher les détails"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr "Renouveler la licence 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"
|
||||||
msgstr ""
|
msgstr "Renouveler la licence"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/pro-features.php:14
|
#: includes/admin/views/acf-field-group/pro-features.php:14
|
||||||
msgid "Manage License"
|
msgid "Manage License"
|
||||||
msgstr ""
|
msgstr "Gérer la licence"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/options.php:102
|
#: includes/admin/views/acf-field-group/options.php:102
|
||||||
msgid "'High' position not supported in the Block Editor"
|
msgid "'High' position not supported in the Block Editor"
|
||||||
msgstr ""
|
msgstr "La position « Haute » n’est pas prise en charge par l’éditeur de bloc"
|
||||||
|
|
||||||
#: includes/admin/views/options-page-preview.php:30
|
#: includes/admin/views/options-page-preview.php:30
|
||||||
msgid "Upgrade to ACF PRO"
|
msgid "Upgrade to ACF PRO"
|
||||||
msgstr ""
|
msgstr "Mettre à niveau vers ACF PRO"
|
||||||
|
|
||||||
#. translators: %s URL to ACF options pages documentation
|
#. translators: %s URL to ACF options pages documentation
|
||||||
#: includes/admin/views/options-page-preview.php:7
|
#: includes/admin/views/options-page-preview.php:7
|
||||||
|
|
@ -51,51 +102,51 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/header.php:35
|
#: includes/admin/views/global/header.php:35
|
||||||
msgid "Add Options Page"
|
msgid "Add Options Page"
|
||||||
msgstr ""
|
msgstr "Ajouter une page d’options"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:708
|
#: includes/admin/views/acf-post-type/advanced-settings.php:708
|
||||||
msgid "In the editor used as the placeholder of the title."
|
msgid "In the editor used as the placeholder of the title."
|
||||||
msgstr ""
|
msgstr "Dans l’éditeur, utilisé comme texte indicatif du titre."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:707
|
#: includes/admin/views/acf-post-type/advanced-settings.php:707
|
||||||
msgid "Title Placeholder"
|
msgid "Title Placeholder"
|
||||||
msgstr ""
|
msgstr "Texte indicatif du titre"
|
||||||
|
|
||||||
#: 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 mois gratuits"
|
||||||
|
|
||||||
#. 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:56
|
#: includes/admin/views/global/form-top.php:56
|
||||||
msgid " (Duplicated from %s)"
|
msgid " (Duplicated from %s)"
|
||||||
msgstr ""
|
msgstr " (Dupliqué depuis %s)"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-export.php:286
|
#: includes/admin/tools/class-acf-admin-tool-export.php:286
|
||||||
msgid "Select Options Pages"
|
msgid "Select Options Pages"
|
||||||
msgstr ""
|
msgstr "Sélectionner des pages d’options"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:107
|
#: includes/admin/post-types/admin-taxonomy.php:107
|
||||||
msgid "Duplicate taxonomy"
|
msgid "Duplicate taxonomy"
|
||||||
msgstr ""
|
msgstr "Dupliquer une taxonomie"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-post-type.php:106
|
#: includes/admin/post-types/admin-post-type.php:106
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:106
|
#: includes/admin/post-types/admin-taxonomy.php:106
|
||||||
msgid "Create taxonomy"
|
msgid "Create taxonomy"
|
||||||
msgstr ""
|
msgstr "Créer une taxonomie"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-post-type.php:105
|
#: includes/admin/post-types/admin-post-type.php:105
|
||||||
msgid "Duplicate post type"
|
msgid "Duplicate post type"
|
||||||
msgstr ""
|
msgstr "Dupliquer un type de publication"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-post-type.php:104
|
#: includes/admin/post-types/admin-post-type.php:104
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:108
|
#: includes/admin/post-types/admin-taxonomy.php:108
|
||||||
msgid "Create post type"
|
msgid "Create post type"
|
||||||
msgstr ""
|
msgstr "Créer un type de publication"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-post-type.php:103
|
#: includes/admin/post-types/admin-post-type.php:103
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:105
|
#: includes/admin/post-types/admin-taxonomy.php:105
|
||||||
msgid "Link field groups"
|
msgid "Link field groups"
|
||||||
msgstr ""
|
msgstr "Lier des groupes de champs"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-post-type.php:102
|
#: includes/admin/post-types/admin-post-type.php:102
|
||||||
#: includes/admin/post-types/admin-taxonomy.php:104
|
#: includes/admin/post-types/admin-taxonomy.php:104
|
||||||
|
|
@ -103,26 +154,26 @@ msgid "Add fields"
|
||||||
msgstr "Ajouter des champs"
|
msgstr "Ajouter des champs"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "Ce champ"
|
msgstr "Ce champ"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF Pro"
|
msgstr "ACF Pro"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Retour"
|
msgstr "Retour"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Support"
|
msgstr "Support"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "est développé et maintenu par"
|
msgstr "est développé et maintenu par"
|
||||||
|
|
||||||
|
|
@ -151,7 +202,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:247
|
#: includes/acf-bidirectional-functions.php:247
|
||||||
msgid "Target Field"
|
msgid "Target Field"
|
||||||
msgstr ""
|
msgstr "Champ cible"
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:221
|
#: includes/acf-bidirectional-functions.php:221
|
||||||
msgid "Update a field on the selected values, referencing back to this ID"
|
msgid "Update a field on the selected values, referencing back to this ID"
|
||||||
|
|
@ -159,12 +210,12 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:220
|
#: includes/acf-bidirectional-functions.php:220
|
||||||
msgid "Bidirectional"
|
msgid "Bidirectional"
|
||||||
msgstr ""
|
msgstr "Bidirectionnel"
|
||||||
|
|
||||||
#. translators: %s A field type name, such as "Relationship"
|
#. translators: %s A field type name, such as "Relationship"
|
||||||
#: includes/acf-bidirectional-functions.php:193
|
#: includes/acf-bidirectional-functions.php:193
|
||||||
msgid "%s Field"
|
msgid "%s Field"
|
||||||
msgstr ""
|
msgstr "Champ %s"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-page_link.php:479
|
#: includes/fields/class-acf-field-page_link.php:479
|
||||||
#: includes/fields/class-acf-field-post_object.php:399
|
#: includes/fields/class-acf-field-post_object.php:399
|
||||||
|
|
@ -649,7 +700,7 @@ msgstr ""
|
||||||
"dépliants qui s’affichent lors de la modification du contenu. Utile pour "
|
"dépliants qui s’affichent lors de la modification du contenu. Utile pour "
|
||||||
"garder de grands ensembles de données ordonnés."
|
"garder de grands ensembles de données ordonnés."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -660,7 +711,7 @@ msgstr ""
|
||||||
"agissant comme un parent pour un ensemble de sous-champs qui peuvent être "
|
"agissant comme un parent pour un ensemble de sous-champs qui peuvent être "
|
||||||
"répétés à l’infini."
|
"répétés à l’infini."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -673,14 +724,14 @@ msgstr ""
|
||||||
"les nouveaux fichiers joints sont ajoutés dans la galerie et le nombre "
|
"les nouveaux fichiers joints sont ajoutés dans la galerie et le nombre "
|
||||||
"minimum/maximum de fichiers joints autorisées."
|
"minimum/maximum de fichiers joints autorisées."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -688,16 +739,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Cloner"
|
msgstr "Cloner"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "Pro"
|
msgstr "Pro"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avancé"
|
msgstr "Avancé"
|
||||||
|
|
||||||
|
|
@ -1691,7 +1742,7 @@ msgstr ""
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:876
|
#: includes/admin/views/acf-post-type/advanced-settings.php:876
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:853
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:853
|
||||||
msgid "Appearance Menus Support"
|
msgid "Appearance Menus Support"
|
||||||
msgstr ""
|
msgstr "Prise en charge des menus d’apparence"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:858
|
#: includes/admin/views/acf-post-type/advanced-settings.php:858
|
||||||
msgid "Appears as an item in the 'New' menu in the admin bar."
|
msgid "Appears as an item in the 'New' menu in the admin bar."
|
||||||
|
|
@ -1765,6 +1816,8 @@ msgstr "Afficher dans le menu d’administration"
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:719
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:719
|
||||||
msgid "Items can be edited and managed in the admin dashboard."
|
msgid "Items can be edited and managed in the admin dashboard."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Les éléments peuvent être modifiés et gérés dans le tableau de bord "
|
||||||
|
"d’administration."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:724
|
#: includes/admin/views/acf-post-type/advanced-settings.php:724
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:718
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:718
|
||||||
|
|
@ -1777,7 +1830,7 @@ msgstr "Un lien vers une publication."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:693
|
#: includes/admin/views/acf-post-type/advanced-settings.php:693
|
||||||
msgid "Description for a navigation link block variation."
|
msgid "Description for a navigation link block variation."
|
||||||
msgstr ""
|
msgstr "Description d’une variation de bloc de lien de navigation."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:692
|
#: includes/admin/views/acf-post-type/advanced-settings.php:692
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:702
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:702
|
||||||
|
|
@ -1901,6 +1954,8 @@ msgstr "Liste des publications"
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:552
|
#: includes/admin/views/acf-post-type/advanced-settings.php:552
|
||||||
msgid "Used by screen readers for the items list on the post type list screen."
|
msgid "Used by screen readers for the items list on the post type list screen."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Utilisé par les lecteurs d’écran pour la liste des éléments sur l’écran de "
|
||||||
|
"la liste des types de publication."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:551
|
#: includes/admin/views/acf-post-type/advanced-settings.php:551
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:640
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:640
|
||||||
|
|
@ -1923,6 +1978,8 @@ msgid ""
|
||||||
"Used by screen readers for the filter list pagination on the post type list "
|
"Used by screen readers for the filter list pagination on the post type list "
|
||||||
"screen."
|
"screen."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Utilisé par les lecteurs d’écran pour la pagination de la liste de filtres "
|
||||||
|
"sur l’écran de liste des types de publication."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:531
|
#: includes/admin/views/acf-post-type/advanced-settings.php:531
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:620
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:620
|
||||||
|
|
@ -1945,6 +2002,8 @@ msgid ""
|
||||||
"Used by screen readers for the filter by date heading on the post type list "
|
"Used by screen readers for the filter by date heading on the post type list "
|
||||||
"screen."
|
"screen."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Utilisé par les lecteurs d’écran pour l’en-tête de filtre par date sur "
|
||||||
|
"l’écran de liste des types de publication."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:510
|
#: includes/admin/views/acf-post-type/advanced-settings.php:510
|
||||||
msgid "Filter Items By Date"
|
msgid "Filter Items By Date"
|
||||||
|
|
@ -1964,6 +2023,8 @@ msgid ""
|
||||||
"Used by screen readers for the filter links heading on the post type list "
|
"Used by screen readers for the filter links heading on the post type list "
|
||||||
"screen."
|
"screen."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Utilisé par les lecteurs d’écran pour l’en-tête des liens de filtre sur "
|
||||||
|
"l’écran de liste des types de publication."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:489
|
#: includes/admin/views/acf-post-type/advanced-settings.php:489
|
||||||
msgid "Filter Items List"
|
msgid "Filter Items List"
|
||||||
|
|
@ -2608,14 +2669,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Type de publication supprimé."
|
msgstr "Type de publication supprimé."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Type à rechercher…"
|
msgstr "Type à rechercher…"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2628,13 +2689,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Les groupes de champs ont bien été liés."
|
msgstr "Les groupes de champs ont bien été liés."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2721,7 +2782,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[Valeur du code court ACF désactivée pour l’aperçu]"
|
msgstr "[Valeur du code court ACF désactivée pour l’aperçu]"
|
||||||
|
|
||||||
|
|
@ -2731,7 +2792,7 @@ msgid "Close Modal"
|
||||||
msgstr "Fermer la modale"
|
msgstr "Fermer la modale"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Champ déplacé vers un autre groupe"
|
msgstr "Champ déplacé vers un autre groupe"
|
||||||
|
|
@ -2810,8 +2871,8 @@ msgid ""
|
||||||
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||||
"started guide</a>."
|
"started guide</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nouveau sur ACF ? Jetez un œil à notre <a href=\"%s\" target=\"_blank"
|
"Nouveau sur ACF ? Jetez un œil à notre <a href=\"%s\" "
|
||||||
"\">guide des premiers pas</a>."
|
"target=\"_blank\">guide des premiers pas</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/list-empty.php:15
|
#: includes/admin/views/acf-field-group/list-empty.php:15
|
||||||
msgid "Add Field Group"
|
msgid "Add Field Group"
|
||||||
|
|
@ -2880,8 +2941,8 @@ msgid ""
|
||||||
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
||||||
"more</a>."
|
"more</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Choisissez parmi plus de 30 types de champs. <a href=\"%s\" target=\"_blank"
|
"Choisissez parmi plus de 30 types de champs. <a href=\"%s\" "
|
||||||
"\">En savoir plus</a>."
|
"target=\"_blank\">En savoir plus</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/fields.php:65
|
#: includes/admin/views/acf-field-group/fields.php:65
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2908,16 +2969,16 @@ msgstr "N°"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Ajouter un champ"
|
msgstr "Ajouter un champ"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Présentation"
|
msgstr "Présentation"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validation"
|
msgstr "Validation"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Général"
|
msgstr "Général"
|
||||||
|
|
||||||
|
|
@ -2962,7 +3023,7 @@ msgid "Activate this item"
|
||||||
msgstr "Activer cet élément"
|
msgstr "Activer cet élément"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
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 ?"
|
||||||
|
|
@ -2997,12 +3058,12 @@ 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."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Nous avons détecté un ou plusieurs appels pour "
|
"<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 "
|
"récupérer les valeurs des champs ACF avant l’initialisation d’ACF. Ceci "
|
||||||
|
|
@ -3200,23 +3261,23 @@ msgstr "Chargement du différentiel"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Vérifier les modifications JSON locales"
|
msgstr "Vérifier les modifications JSON locales"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visiter le site"
|
msgstr "Visiter le site"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Voir les détails"
|
msgstr "Voir les détails"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Version %s"
|
msgstr "Version %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informations"
|
msgstr "Informations"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3225,7 +3286,7 @@ msgstr ""
|
||||||
"professionnels du support de notre service d’assistance vous aideront à "
|
"professionnels du support de notre service d’assistance vous aideront à "
|
||||||
"résoudre vos problèmes techniques les plus complexes."
|
"résoudre vos problèmes techniques les plus complexes."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3235,7 +3296,7 @@ msgstr ""
|
||||||
"active et amicale sur nos forums communautaires qui peut vous aider à "
|
"active et amicale sur nos forums communautaires qui peut vous aider à "
|
||||||
"comprendre le fonctionnement de l’écosystème ACF."
|
"comprendre le fonctionnement de l’écosystème ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3245,7 +3306,7 @@ msgstr ""
|
||||||
"complète contient des références et des guides pour la plupart des "
|
"complète contient des références et des guides pour la plupart des "
|
||||||
"situations que vous pouvez rencontrer."
|
"situations que vous pouvez rencontrer."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3255,11 +3316,11 @@ msgstr ""
|
||||||
"parti de votre site avec ACF. Si vous rencontrez des difficultés, il existe "
|
"parti de votre site avec ACF. Si vous rencontrez des difficultés, il existe "
|
||||||
"plusieurs endroits où vous pouvez trouver de l’aide :"
|
"plusieurs endroits où vous pouvez trouver de l’aide :"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Aide & support"
|
msgstr "Aide & support"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3267,7 +3328,7 @@ msgstr ""
|
||||||
"Veuillez utiliser l’onglet « Aide & support » pour nous contacter si vous "
|
"Veuillez utiliser l’onglet « Aide & support » pour nous contacter si vous "
|
||||||
"avez besoin d’assistance."
|
"avez besoin d’assistance."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3277,7 +3338,7 @@ msgstr ""
|
||||||
"notre guide <a href=\"%s\" target=\"_blank\">Pour commencer</a> afin de vous "
|
"notre guide <a href=\"%s\" target=\"_blank\">Pour commencer</a> afin de vous "
|
||||||
"familiariser avec la philosophie et les meilleures pratiques de l’extension."
|
"familiariser avec la philosophie et les meilleures pratiques de l’extension."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3288,7 +3349,7 @@ msgstr ""
|
||||||
"supplémentaires, ainsi qu’une API intuitive pour afficher les valeurs des "
|
"supplémentaires, ainsi qu’une API intuitive pour afficher les valeurs des "
|
||||||
"champs personnalisés dans n’importe quel fichier de modèle de thème."
|
"champs personnalisés dans n’importe quel fichier de modèle de thème."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Aperçu"
|
msgstr "Aperçu"
|
||||||
|
|
||||||
|
|
@ -3308,7 +3369,7 @@ msgstr "Nonce invalide."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Erreur lors du chargement du champ."
|
msgstr "Erreur lors du chargement du champ."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Emplacement introuvable : %s"
|
msgstr "Emplacement introuvable : %s"
|
||||||
|
|
@ -3456,7 +3517,7 @@ msgid "Show this field if"
|
||||||
msgstr "Afficher ce champ si"
|
msgstr "Afficher ce champ si"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Logique conditionnelle"
|
msgstr "Logique conditionnelle"
|
||||||
|
|
||||||
|
|
@ -3502,15 +3563,15 @@ msgstr "Mise à niveau de la base de données requise"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Page d’options"
|
msgstr "Page d’options"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galerie"
|
msgstr "Galerie"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenu flexible"
|
msgstr "Contenu flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Répéteur"
|
msgstr "Répéteur"
|
||||||
|
|
||||||
|
|
@ -3762,7 +3823,7 @@ msgstr "Faites glisser pour réorganiser"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Afficher ce groupe de champs si"
|
msgstr "Afficher ce groupe de champs si"
|
||||||
|
|
@ -3949,7 +4010,7 @@ msgstr "Dupliquer cet élément"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Prend en charge"
|
msgstr "Prend en charge"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentation"
|
msgstr "Documentation"
|
||||||
|
|
||||||
|
|
@ -4053,7 +4114,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copier"
|
msgstr "copier"
|
||||||
|
|
@ -4071,7 +4132,7 @@ msgid "Checked"
|
||||||
msgstr "Coché"
|
msgstr "Coché"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Déplacer le champ personnalisé"
|
msgstr "Déplacer le champ personnalisé"
|
||||||
|
|
@ -4087,7 +4148,7 @@ msgid "Field group title is required"
|
||||||
msgstr "Le titre du groupe de champ est requis"
|
msgstr "Le titre du groupe de champ est requis"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4095,7 +4156,7 @@ msgstr ""
|
||||||
"enregistrées"
|
"enregistrées"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4163,15 +4224,15 @@ msgstr "Page"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Publication"
|
msgstr "Publication"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relationnel"
|
msgstr "Relationnel"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Choix"
|
msgstr "Choix"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Basique"
|
msgstr "Basique"
|
||||||
|
|
||||||
|
|
@ -4199,7 +4260,7 @@ msgstr "Mise à jour"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valider l’e-mail"
|
msgstr "Valider l’e-mail"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenu"
|
msgstr "Contenu"
|
||||||
|
|
||||||
|
|
@ -4208,8 +4269,8 @@ msgstr "Contenu"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titre"
|
msgstr "Titre"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Modifier le groupe de champs"
|
msgstr "Modifier le groupe de champs"
|
||||||
|
|
||||||
|
|
@ -4266,59 +4327,59 @@ msgid "Has any value"
|
||||||
msgstr "A n’importe quelle valeur"
|
msgstr "A n’importe quelle valeur"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuler"
|
msgstr "Annuler"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Confirmez-vous ?"
|
msgstr "Confirmez-vous ?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d champs nécessitent votre attention"
|
msgstr "%d champs nécessitent votre attention"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "Un champ nécessite votre attention"
|
msgstr "Un champ nécessite votre attention"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Échec de la validation"
|
msgstr "Échec de la validation"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validation réussie"
|
msgstr "Validation réussie"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Limité"
|
msgstr "Limité"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Replier les détails"
|
msgstr "Replier les détails"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Déplier les détails"
|
msgstr "Déplier les détails"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Téléversé sur cette publication"
|
msgstr "Téléversé sur cette publication"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4329,7 +4390,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Modifier"
|
msgstr "Modifier"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4346,7 +4407,7 @@ msgstr "Le type de fichier doit être %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4398,7 +4459,7 @@ msgstr "Miniature"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(aucun libellé)"
|
msgstr "(aucun libellé)"
|
||||||
|
|
@ -4630,18 +4691,18 @@ msgid "File name"
|
||||||
msgstr "Nom du fichier"
|
msgstr "Nom du fichier"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Mettre à jour le fichier"
|
msgstr "Mettre à jour le fichier"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Modifier le fichier"
|
msgstr "Modifier le fichier"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Sélectionner un fichier"
|
msgstr "Sélectionner un fichier"
|
||||||
|
|
||||||
|
|
@ -4667,7 +4728,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Saisir chaque valeur par défaut sur une nouvelle ligne"
|
msgstr "Saisir chaque valeur par défaut sur une nouvelle ligne"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Sélectionner"
|
msgstr "Sélectionner"
|
||||||
|
|
@ -5023,48 +5084,48 @@ msgstr "Autoriser une valeur vide"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Parent"
|
msgstr "Parent"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE ne sera pas initialisé avant un clic dans le champ"
|
msgstr "TinyMCE ne sera pas initialisé avant un clic dans le champ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Retarder l’initialisation"
|
msgstr "Retarder l’initialisation"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Afficher les boutons de téléversement de médias ?"
|
msgstr "Afficher les boutons de téléversement de médias ?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barre d’outils"
|
msgstr "Barre d’outils"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Texte Uniquement"
|
msgstr "Texte Uniquement"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Visuel uniquement"
|
msgstr "Visuel uniquement"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuel & texte"
|
msgstr "Visuel & texte"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Onglets"
|
msgstr "Onglets"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Cliquer pour initialiser TinyMCE"
|
msgstr "Cliquer pour initialiser TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texte"
|
msgstr "Texte"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuel"
|
msgstr "Visuel"
|
||||||
|
|
||||||
|
|
@ -5141,7 +5202,7 @@ msgstr "Texte indicatif"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Apparaît à la création d’une nouvelle publication"
|
msgstr "Apparaît à la création d’une nouvelle publication"
|
||||||
|
|
||||||
|
|
@ -5242,17 +5303,17 @@ msgid "Select post type"
|
||||||
msgstr "Choisissez le type de publication"
|
msgstr "Choisissez le type de publication"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Aucune correspondance trouvée"
|
msgstr "Aucune correspondance trouvée"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Chargement"
|
msgstr "Chargement"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valeurs maximum atteintes ({max} valeurs)"
|
msgstr "Valeurs maximum atteintes ({max} valeurs)"
|
||||||
|
|
||||||
|
|
@ -5362,7 +5423,7 @@ msgstr "Ajouter image"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Aucune image sélectionnée"
|
msgstr "Aucune image sélectionnée"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5377,22 +5438,22 @@ msgid "Edit"
|
||||||
msgstr "Modifier"
|
msgstr "Modifier"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Toutes les images"
|
msgstr "Toutes les images"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Mettre à jour l’image"
|
msgstr "Mettre à jour l’image"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Modifier l’image"
|
msgstr "Modifier l’image"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Sélectionner une image"
|
msgstr "Sélectionner une image"
|
||||||
|
|
||||||
|
|
@ -5477,16 +5538,16 @@ msgstr "Sélecteur de date"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Largeur"
|
msgstr "Largeur"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Taille d’intégration"
|
msgstr "Taille d’intégration"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Saisissez l’URL"
|
msgstr "Saisissez l’URL"
|
||||||
|
|
||||||
|
|
@ -5527,7 +5588,7 @@ msgstr "Interface (UI) stylisée"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valeur par défaut"
|
msgstr "Valeur par défaut"
|
||||||
|
|
||||||
|
|
@ -5541,13 +5602,13 @@ msgstr "Affiche le texte à côté de la case à cocher"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Message"
|
msgstr "Message"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Non"
|
msgstr "Non"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5557,31 +5618,31 @@ msgstr "Oui"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Vrai/Faux"
|
msgstr "Vrai/Faux"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Ligne"
|
msgstr "Ligne"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tableau"
|
msgstr "Tableau"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloc"
|
msgstr "Bloc"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Spécifier le style utilisé pour afficher les champs sélectionnés"
|
msgstr "Spécifier le style utilisé pour afficher les champs sélectionnés"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Mise en page"
|
msgstr "Mise en page"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Sous-champs"
|
msgstr "Sous-champs"
|
||||||
|
|
||||||
|
|
@ -5596,7 +5657,7 @@ msgstr "Personnaliser la hauteur de la carte"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Hauteur"
|
msgstr "Hauteur"
|
||||||
|
|
||||||
|
|
@ -5636,7 +5697,7 @@ msgid "Search"
|
||||||
msgstr "Rechercher"
|
msgstr "Rechercher"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation"
|
msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation"
|
||||||
|
|
||||||
|
|
@ -5843,9 +5904,9 @@ msgstr "Options mises à jour"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pour activer les mises à jour, veuillez indiquer votre clé de licence sur la "
|
"Pour activer les mises à jour, veuillez indiquer votre clé de licence sur la "
|
||||||
"page <a href=\"%1$s\">Mises à jour</a>. Si vous n’en possédez pas encore "
|
"page <a href=\"%1$s\">Mises à jour</a>. Si vous n’en possédez pas encore "
|
||||||
|
|
@ -6349,8 +6410,8 @@ msgid ""
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pour débloquer les mises à jour, veuillez entrer votre clé de licence ci-"
|
"Pour débloquer les mises à jour, veuillez entrer votre clé de licence ci-"
|
||||||
"dessous. Si vous n’en possédez pas encore une, jetez un oeil à nos <a href="
|
"dessous. Si vous n’en possédez pas encore une, jetez un oeil à nos <a "
|
||||||
"\"%s\" target=\"_blank\">détails & tarifs</a>."
|
"href=\"%s\" target=\"_blank\">détails & tarifs</a>."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr "Engadir campos"
|
msgstr "Engadir campos"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -613,16 +662,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2578,7 +2627,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[valor do shortcode de ACF desactivado na vista previa]"
|
msgstr "[valor do shortcode de ACF desactivado na vista previa]"
|
||||||
|
|
||||||
|
|
@ -2588,7 +2637,7 @@ msgid "Close Modal"
|
||||||
msgstr "Cerrar ventá emerxente"
|
msgstr "Cerrar ventá emerxente"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Campo movido a outro grupo"
|
msgstr "Campo movido a outro grupo"
|
||||||
|
|
@ -2738,8 +2787,8 @@ msgid ""
|
||||||
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
||||||
"more</a>."
|
"more</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Elixe de entre máis de 30 tipos de campos. <a href=\"%s\" target=\"_blank"
|
"Elixe de entre máis de 30 tipos de campos. <a href=\"%s\" "
|
||||||
"\">Aprende máis</a>."
|
"target=\"_blank\">Aprende máis</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/fields.php:65
|
#: includes/admin/views/acf-field-group/fields.php:65
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2766,16 +2815,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Engadir campo"
|
msgstr "Engadir campo"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Presentación"
|
msgstr "Presentación"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validación"
|
msgstr "Validación"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Xeral"
|
msgstr "Xeral"
|
||||||
|
|
||||||
|
|
@ -2820,7 +2869,7 @@ msgid "Activate this item"
|
||||||
msgstr "Activa este elemento"
|
msgstr "Activa este elemento"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
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?"
|
||||||
|
|
@ -2854,17 +2903,17 @@ 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."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> -Detectamos unha ou máis chamadas para obter valores "
|
"<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 "
|
"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"
|
"ocasionar datos mal formados ou faltantes. <a href=\"%2$s\" "
|
||||||
"\">Aprende como corrixilo</a>."
|
"target=\"_blank\">Aprende como corrixilo</a>."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
msgid "%1$s must have a user with the %2$s role."
|
msgid "%1$s must have a user with the %2$s role."
|
||||||
|
|
@ -3053,23 +3102,23 @@ msgstr "Cargando diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Revisar cambios do JSON local"
|
msgstr "Revisar cambios do JSON local"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visitar a web"
|
msgstr "Visitar a web"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Ver detalles"
|
msgstr "Ver detalles"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versión %s"
|
msgstr "Versión %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Información"
|
msgstr "Información"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3077,7 +3126,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Centro de axuda</a>. Os profesionais de "
|
"<a href=\"%s\" target=\"_blank\">Centro de axuda</a>. Os profesionais de "
|
||||||
"soporte do noso xentro de xxuda axudaranche cos problemas máis técnicos."
|
"soporte do noso xentro de xxuda axudaranche cos problemas máis técnicos."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3087,7 +3136,7 @@ msgstr ""
|
||||||
"amistosa nos nosos foros da comunidade, que pode axudarche a descubrir como "
|
"amistosa nos nosos foros da comunidade, que pode axudarche a descubrir como "
|
||||||
"facer todo no mundo de ACF."
|
"facer todo no mundo de ACF."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3097,7 +3146,7 @@ msgstr ""
|
||||||
"documentación contén referencias e guías para a maioría das situacións nas "
|
"documentación contén referencias e guías para a maioría das situacións nas "
|
||||||
"que te podes atopar."
|
"que te podes atopar."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3106,11 +3155,11 @@ msgstr ""
|
||||||
"Nós somos moi fans do soporte, e ti queres tirarlle o máximo partido á túa "
|
"Nós somos moi fans do soporte, e ti queres tirarlle o máximo partido á túa "
|
||||||
"web con ACF. Se tes algunha dificultade, hai varios sitios onde atopar axuda:"
|
"web con ACF. Se tes algunha dificultade, hai varios sitios onde atopar axuda:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Axuda e Soporte"
|
msgstr "Axuda e Soporte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3118,7 +3167,7 @@ msgstr ""
|
||||||
"Por favor, usa a pestana de Axuda e Soporte para poñerte en contacto se ves "
|
"Por favor, usa a pestana de Axuda e Soporte para poñerte en contacto se ves "
|
||||||
"que precisas axuda."
|
"que precisas axuda."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3128,7 +3177,7 @@ msgstr ""
|
||||||
"leas a nosa guía de <a href=\"%s\" target=\"_blank\">Primeiros pasos</a> "
|
"leas a nosa guía de <a href=\"%s\" target=\"_blank\">Primeiros pasos</a> "
|
||||||
"para familiarizarte coa filosofía do plugin e as mellores prácticas."
|
"para familiarizarte coa filosofía do plugin e as mellores prácticas."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3139,7 +3188,7 @@ msgstr ""
|
||||||
"API intuitiva coa que mostrar os valores deses campos en calquera ficheiro "
|
"API intuitiva coa que mostrar os valores deses campos en calquera ficheiro "
|
||||||
"modelo do tema. "
|
"modelo do tema. "
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Resumo"
|
msgstr "Resumo"
|
||||||
|
|
||||||
|
|
@ -3159,7 +3208,7 @@ msgstr "Nonce non válido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Erro ao cargar o campo."
|
msgstr "Erro ao cargar o campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Ubicación non encontrada: %s"
|
msgstr "Ubicación non encontrada: %s"
|
||||||
|
|
@ -3307,7 +3356,7 @@ msgid "Show this field if"
|
||||||
msgstr "Amosar este campo se"
|
msgstr "Amosar este campo se"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Lóxica condicional"
|
msgstr "Lóxica condicional"
|
||||||
|
|
||||||
|
|
@ -3353,15 +3402,15 @@ msgstr "É preciso actualizar a base de datos"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Páxina de opcións"
|
msgstr "Páxina de opcións"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galería"
|
msgstr "Galería"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contido flexible"
|
msgstr "Contido flexible"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Repetidor"
|
msgstr "Repetidor"
|
||||||
|
|
||||||
|
|
@ -3608,7 +3657,7 @@ msgstr "Arrastra para reordenar"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Amosar este grupo de campos se"
|
msgstr "Amosar este grupo de campos se"
|
||||||
|
|
@ -3791,7 +3840,7 @@ msgstr "Duplicar este elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Soporta"
|
msgstr "Soporta"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentación"
|
msgstr "Documentación"
|
||||||
|
|
||||||
|
|
@ -3894,7 +3943,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copiar"
|
msgstr "copiar"
|
||||||
|
|
@ -3912,7 +3961,7 @@ msgid "Checked"
|
||||||
msgstr "Seleccionado"
|
msgstr "Seleccionado"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Mover campo personalizado"
|
msgstr "Mover campo personalizado"
|
||||||
|
|
@ -3928,13 +3977,13 @@ msgid "Field group title is required"
|
||||||
msgstr "O título do grupo de campos é obligatorio"
|
msgstr "O título do grupo de campos é obligatorio"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Este campo pódese mover ata que os seus trocos garden"
|
msgstr "Este campo pódese mover ata que os seus trocos garden"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "A cadea \"field_\" non se debe utilizar ao comezo dun nome de campo"
|
msgstr "A cadea \"field_\" non se debe utilizar ao comezo dun nome de campo"
|
||||||
|
|
@ -4001,15 +4050,15 @@ msgstr "Páxina"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Entrada"
|
msgstr "Entrada"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relacional"
|
msgstr "Relacional"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Elección"
|
msgstr "Elección"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
||||||
|
|
@ -4037,7 +4086,7 @@ msgstr "Actualizar"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Validar correo electrónico"
|
msgstr "Validar correo electrónico"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contido"
|
msgstr "Contido"
|
||||||
|
|
||||||
|
|
@ -4046,8 +4095,8 @@ msgstr "Contido"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
|
|
@ -4104,59 +4153,59 @@ msgid "Has any value"
|
||||||
msgstr "Ten algún valor"
|
msgstr "Ten algún valor"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancelar"
|
msgstr "Cancelar"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Estás seguro?"
|
msgstr "Estás seguro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campos requiren atención"
|
msgstr "%d campos requiren atención"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo require atención"
|
msgstr "1 campo require atención"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validación fallida"
|
msgstr "Validación fallida"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validación correcta"
|
msgstr "Validación correcta"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Restrinxido"
|
msgstr "Restrinxido"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Contraer detalles"
|
msgstr "Contraer detalles"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Ampliar detalles"
|
msgstr "Ampliar detalles"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Subido a esta publicación"
|
msgstr "Subido a esta publicación"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4167,7 +4216,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Os trocos que realizaras perderanse se navegas cara á outra páxina"
|
msgstr "Os trocos que realizaras perderanse se navegas cara á outra páxina"
|
||||||
|
|
@ -4182,7 +4231,7 @@ msgstr "O tipo de arquivo debe ser %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4234,7 +4283,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(sen etiqueta)"
|
msgstr "(sen etiqueta)"
|
||||||
|
|
@ -4467,18 +4516,18 @@ msgid "File name"
|
||||||
msgstr "Nome do arquivo"
|
msgstr "Nome do arquivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Actualizar arquivo"
|
msgstr "Actualizar arquivo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Editar arquivo"
|
msgstr "Editar arquivo"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleccionar arquivo"
|
msgstr "Seleccionar arquivo"
|
||||||
|
|
||||||
|
|
@ -4504,7 +4553,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Engade cada valor nunha nova liña"
|
msgstr "Engade cada valor nunha nova liña"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecciona"
|
msgstr "Selecciona"
|
||||||
|
|
@ -4858,48 +4907,48 @@ msgstr "Permitir nulo"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE non se iniciará ata que se faga clic no campo"
|
msgstr "TinyMCE non se iniciará ata que se faga clic no campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Retrasar o inicio"
|
msgstr "Retrasar o inicio"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Amosar botóns de subida de medios"
|
msgstr "Amosar botóns de subida de medios"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de ferramentas"
|
msgstr "Barra de ferramentas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Só texto"
|
msgstr "Só texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Só visual"
|
msgstr "Só visual"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual e Texto"
|
msgstr "Visual e Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Pestanas"
|
msgstr "Pestanas"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Fai clic para iniciar TinyMCE"
|
msgstr "Fai clic para iniciar TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
|
|
@ -4976,7 +5025,7 @@ msgstr "Marcador de posición"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece cando se está creando unha nova entrada"
|
msgstr "Aparece cando se está creando unha nova entrada"
|
||||||
|
|
||||||
|
|
@ -5077,17 +5126,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleccionar tipo de contido"
|
msgstr "Seleccionar tipo de contido"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Non se encontraron coincidencias"
|
msgstr "Non se encontraron coincidencias"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Cargando"
|
msgstr "Cargando"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Valores máximos alcanzados ( {max} valores )"
|
msgstr "Valores máximos alcanzados ( {max} valores )"
|
||||||
|
|
||||||
|
|
@ -5196,7 +5245,7 @@ msgstr "Engadir imaxe"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Non hai ningunha imaxe seleccionada"
|
msgstr "Non hai ningunha imaxe seleccionada"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5211,22 +5260,22 @@ msgid "Edit"
|
||||||
msgstr "Editar"
|
msgstr "Editar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Todas as imaxes"
|
msgstr "Todas as imaxes"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Actualizar imaxe"
|
msgstr "Actualizar imaxe"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Editar imaxe"
|
msgstr "Editar imaxe"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Seleccionar imaxe"
|
msgstr "Seleccionar imaxe"
|
||||||
|
|
||||||
|
|
@ -5313,16 +5362,16 @@ msgstr "Selector de data"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Ancho"
|
msgstr "Ancho"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Tamaño da inserción"
|
msgstr "Tamaño da inserción"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Introduce a URL"
|
msgstr "Introduce a URL"
|
||||||
|
|
||||||
|
|
@ -5363,7 +5412,7 @@ msgstr "UI estilizada"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por defecto"
|
msgstr "Valor por defecto"
|
||||||
|
|
||||||
|
|
@ -5377,13 +5426,13 @@ msgstr "Mostra o texto xunto ao recadro de verificación"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensaxe"
|
msgstr "Mensaxe"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Non"
|
msgstr "Non"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5393,31 +5442,31 @@ msgstr "Si"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Verdadeiro / Falso"
|
msgstr "Verdadeiro / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Fila"
|
msgstr "Fila"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Táboa"
|
msgstr "Táboa"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloque"
|
msgstr "Bloque"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Especifica o estilo utilizado para representar os campos seleccionados"
|
msgstr "Especifica o estilo utilizado para representar os campos seleccionados"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Estrutura"
|
msgstr "Estrutura"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
|
|
@ -5432,7 +5481,7 @@ msgstr "Personalizar a altura do mapa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altura"
|
msgstr "Altura"
|
||||||
|
|
||||||
|
|
@ -5472,7 +5521,7 @@ msgid "Search"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Síntoo, este navegador non é compatible coa xeolocalización"
|
msgstr "Síntoo, este navegador non é compatible coa xeolocalización"
|
||||||
|
|
||||||
|
|
|
||||||
BIN
lang/acf-gu.mo
BIN
lang/acf-gu.mo
Binary file not shown.
281
lang/acf-gu.po
281
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,13 +21,62 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr "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"
|
||||||
msgstr ""
|
msgstr "લાયસન્સ રિન્યૂ કરો"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/pro-features.php:14
|
#: includes/admin/views/acf-field-group/pro-features.php:14
|
||||||
msgid "Manage License"
|
msgid "Manage License"
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr "ક્ષેત્રો ઉમેરો"
|
msgstr "ક્ષેત્રો ઉમેરો"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "આ ક્ષેત્ર"
|
msgstr "આ ક્ષેત્ર"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "એસીએફ પ્રો"
|
msgstr "એસીએફ પ્રો"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "પ્રતિસાદ"
|
msgstr "પ્રતિસાદ"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "સપોર્ટ"
|
msgstr "સપોર્ટ"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "દ્વારા વિકસિત અને જાળવણી કરવામાં આવે છે"
|
msgstr "દ્વારા વિકસિત અને જાળવણી કરવામાં આવે છે"
|
||||||
|
|
||||||
|
|
@ -142,8 +191,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"દ્વિપક્ષીય સેટિંગને સક્ષમ કરવાથી તમે આ ફીલ્ડ માટે પસંદ કરેલ દરેક મૂલ્ય માટે લક્ષ્ય ફીલ્ડમાં મૂલ્ય "
|
"દ્વિપક્ષીય સેટિંગને સક્ષમ કરવાથી તમે આ ફીલ્ડ માટે પસંદ કરેલ દરેક મૂલ્ય માટે લક્ષ્ય ફીલ્ડમાં મૂલ્ય "
|
||||||
"અપડેટ કરી શકો છો, પોસ્ટ ID, વર્ગીકરણ ID અથવા અપડેટ કરવામાં આવી રહેલી આઇટમના "
|
"અપડેટ કરી શકો છો, પોસ્ટ ID, વર્ગીકરણ ID અથવા અપડેટ કરવામાં આવી રહેલી આઇટમના "
|
||||||
"વપરાશકર્તા ID ને ઉમેરીને અથવા દૂર કરી શકો છો. વધુ માહિતી માટે, કૃપા કરીને <a href=\"%s"
|
"વપરાશકર્તા ID ને ઉમેરીને અથવા દૂર કરી શકો છો. વધુ માહિતી માટે, કૃપા કરીને <a "
|
||||||
"\" target=\"_blank\">દસ્તાવેજીકરણ</a> વાંચો."
|
"href=\"%s\" target=\"_blank\">દસ્તાવેજીકરણ</a> વાંચો."
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:248
|
#: includes/acf-bidirectional-functions.php:248
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -649,7 +698,7 @@ msgstr ""
|
||||||
"તમને કન્ટેન્ટ સંપાદિત કરતી વખતે બતાવવામાં આવતી સંકુચિત પેનલ્સમાં કસ્ટમ ફીલ્ડ્સને જૂથ અને "
|
"તમને કન્ટેન્ટ સંપાદિત કરતી વખતે બતાવવામાં આવતી સંકુચિત પેનલ્સમાં કસ્ટમ ફીલ્ડ્સને જૂથ અને "
|
||||||
"ગોઠવવાની મંજૂરી આપે છે. મોટા ડેટાસેટ્સને વ્યવસ્થિત રાખવા માટે ઉપયોગી."
|
"ગોઠવવાની મંજૂરી આપે છે. મોટા ડેટાસેટ્સને વ્યવસ્થિત રાખવા માટે ઉપયોગી."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -659,7 +708,7 @@ msgstr ""
|
||||||
"ઉકેલ પૂરો પાડે છે, પેરન્ટ તરીકે કામ કરીને પેટાફિલ્ડના સમૂહ કે જેને વારંવાર પુનરાવર્તિત કરી "
|
"ઉકેલ પૂરો પાડે છે, પેરન્ટ તરીકે કામ કરીને પેટાફિલ્ડના સમૂહ કે જેને વારંવાર પુનરાવર્તિત કરી "
|
||||||
"શકાય છે."
|
"શકાય છે."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -671,7 +720,7 @@ msgstr ""
|
||||||
"ઉમેરવામાં આવે છે અને જોડાણોની ન્યૂનતમ/મહત્તમ સંખ્યાને મંજૂરી આપે છે તેનો ઉલ્લેખ કરવાની મંજૂરી આપે "
|
"ઉમેરવામાં આવે છે અને જોડાણોની ન્યૂનતમ/મહત્તમ સંખ્યાને મંજૂરી આપે છે તેનો ઉલ્લેખ કરવાની મંજૂરી આપે "
|
||||||
"છે."
|
"છે."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
|
|
@ -681,7 +730,7 @@ msgstr ""
|
||||||
"બ્લોક્સ ડિઝાઇન કરવા માટે લેઆઉટ અને સબફિલ્ડનો ઉપયોગ કરીને સંપૂર્ણ નિયંત્રણ સાથે સામગ્રીને "
|
"બ્લોક્સ ડિઝાઇન કરવા માટે લેઆઉટ અને સબફિલ્ડનો ઉપયોગ કરીને સંપૂર્ણ નિયંત્રણ સાથે સામગ્રીને "
|
||||||
"વ્યાખ્યાયિત કરવા, બનાવવા અને સંચાલિત કરવાની મંજૂરી આપે છે."
|
"વ્યાખ્યાયિત કરવા, બનાવવા અને સંચાલિત કરવાની મંજૂરી આપે છે."
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -693,16 +742,16 @@ msgstr ""
|
||||||
"ક્લોન ફીલ્ડ કાં તો પોતાને પસંદ કરેલ ફીલ્ડ્સ સાથે બદલી શકે છે અથવા પસંદ કરેલ ફીલ્ડ્સને "
|
"ક્લોન ફીલ્ડ કાં તો પોતાને પસંદ કરેલ ફીલ્ડ્સ સાથે બદલી શકે છે અથવા પસંદ કરેલ ફીલ્ડ્સને "
|
||||||
"સબફિલ્ડના જૂથ તરીકે પ્રદર્શિત કરી શકે છે."
|
"સબફિલ્ડના જૂથ તરીકે પ્રદર્શિત કરી શકે છે."
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "ક્લોન"
|
msgstr "ક્લોન"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "પ્રો"
|
msgstr "પ્રો"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "અદ્યતન"
|
msgstr "અદ્યતન"
|
||||||
|
|
||||||
|
|
@ -2611,14 +2660,14 @@ msgid "Post type deleted."
|
||||||
msgstr "પોસ્ટનો પ્રકાર કાઢી નાખ્યો."
|
msgstr "પોસ્ટનો પ્રકાર કાઢી નાખ્યો."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "શોધવા માટે ટાઇપ કરો..."
|
msgstr "શોધવા માટે ટાઇપ કરો..."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2631,7 +2680,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "ક્ષેત્ર જૂથો સફળતાપૂર્વક લિંક થયા."
|
msgstr "ક્ષેત્ર જૂથો સફળતાપૂર્વક લિંક થયા."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2639,7 +2688,7 @@ msgstr ""
|
||||||
"કસ્ટમ પોસ્ટ પ્રકાર UI સાથે નોંધાયેલ પોસ્ટ પ્રકારો અને વર્ગીકરણ આયાત કરો અને ACF સાથે તેનું "
|
"કસ્ટમ પોસ્ટ પ્રકાર UI સાથે નોંધાયેલ પોસ્ટ પ્રકારો અને વર્ગીકરણ આયાત કરો અને ACF સાથે તેનું "
|
||||||
"સંચાલન કરો. <a href=\"%s\">પ્રારંભ કરો</a>."
|
"સંચાલન કરો. <a href=\"%s\">પ્રારંભ કરો</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2726,7 +2775,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[એસીએફ શોર્ટકોડ મૂલ્ય પૂર્વાવલોકન માટે અક્ષમ કર્યું]"
|
msgstr "[એસીએફ શોર્ટકોડ મૂલ્ય પૂર્વાવલોકન માટે અક્ષમ કર્યું]"
|
||||||
|
|
||||||
|
|
@ -2736,7 +2785,7 @@ msgid "Close Modal"
|
||||||
msgstr "મોડલ બંધ કરો"
|
msgstr "મોડલ બંધ કરો"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "ફિલ્ડ અન્ય જૂથમાં ખસેડવામાં આવ્યું"
|
msgstr "ફિલ્ડ અન્ય જૂથમાં ખસેડવામાં આવ્યું"
|
||||||
|
|
@ -2903,16 +2952,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "રજૂઆત"
|
msgstr "રજૂઆત"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "સામાન્ય"
|
msgstr "સામાન્ય"
|
||||||
|
|
||||||
|
|
@ -2957,7 +3006,7 @@ msgid "Activate this item"
|
||||||
msgstr "આ આઇટમ સક્રિય કરો"
|
msgstr "આ આઇટમ સક્રિય કરો"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2990,12 +3039,12 @@ msgstr ""
|
||||||
"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે "
|
"અદ્યતન કસ્ટમ ફીલ્ડ્સ અને એડવાન્સ કસ્ટમ ફીલ્ડ્સ PRO એક જ સમયે સક્રિય ન હોવા જોઈએ. અમે "
|
||||||
"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સને આપમેળે નિષ્ક્રિય કરી દીધા છે."
|
"એડવાન્સ્ડ કસ્ટમ ફીલ્ડ્સને આપમેળે નિષ્ક્રિય કરી દીધા છે."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - ACF શરૂ થાય તે પહેલાં અમે ACF ફીલ્ડ મૂલ્યો પુનઃપ્રાપ્ત કરવા માટે "
|
"<strong>%1$s</strong> - ACF શરૂ થાય તે પહેલાં અમે ACF ફીલ્ડ મૂલ્યો પુનઃપ્રાપ્ત કરવા માટે "
|
||||||
"એક અથવા વધુ કૉલ્સ શોધી કાઢ્યા છે. આ સમર્થિત નથી અને તે ખોટા અથવા ખોવાયેલા ડેટામાં "
|
"એક અથવા વધુ કૉલ્સ શોધી કાઢ્યા છે. આ સમર્થિત નથી અને તે ખોટા અથવા ખોવાયેલા ડેટામાં "
|
||||||
|
|
@ -3189,43 +3238,43 @@ msgstr "તફાવત લોડ કરી રહ્યું છે"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "સ્થાનિક JSON ફેરફારોની સમીક્ષા કરો"
|
msgstr "સ્થાનિક JSON ફેરફારોની સમીક્ષા કરો"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "વેબસાઇટની મુલાકાત લો"
|
msgstr "વેબસાઇટની મુલાકાત લો"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "વિગતો જુઓ"
|
msgstr "વિગતો જુઓ"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "આવૃત્તિ %s"
|
msgstr "આવૃત્તિ %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "માહિતી"
|
msgstr "માહિતી"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3234,11 +3283,11 @@ msgstr ""
|
||||||
"અમે સમર્થનને લઈને કટ્ટરપંથી છીએ અને ઈચ્છીએ છીએ કે તમે ACF સાથે તમારી વેબસાઇટનો શ્રેષ્ઠ લાભ "
|
"અમે સમર્થનને લઈને કટ્ટરપંથી છીએ અને ઈચ્છીએ છીએ કે તમે ACF સાથે તમારી વેબસાઇટનો શ્રેષ્ઠ લાભ "
|
||||||
"મેળવો. જો તમને કોઈ મુશ્કેલી આવે, તો ત્યાં ઘણી જગ્યાએ મદદ મળી શકે છે:"
|
"મેળવો. જો તમને કોઈ મુશ્કેલી આવે, તો ત્યાં ઘણી જગ્યાએ મદદ મળી શકે છે:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "મદદ અને આધાર"
|
msgstr "મદદ અને આધાર"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3246,21 +3295,21 @@ msgstr ""
|
||||||
"જો તમને તમારી જાતને સહાયની જરૂર જણાય તો સંપર્કમાં રહેવા માટે કૃપા કરીને મદદ અને સમર્થન "
|
"જો તમને તમારી જાતને સહાયની જરૂર જણાય તો સંપર્કમાં રહેવા માટે કૃપા કરીને મદદ અને સમર્થન "
|
||||||
"ટેબનો ઉપયોગ કરો."
|
"ટેબનો ઉપયોગ કરો."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "અવલોકન"
|
msgstr "અવલોકન"
|
||||||
|
|
||||||
|
|
@ -3280,7 +3329,7 @@ msgstr "અમાન્ય નૉન."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "સ્થાન મળ્યું નથી: %s"
|
msgstr "સ્થાન મળ્યું નથી: %s"
|
||||||
|
|
@ -3428,7 +3477,7 @@ msgid "Show this field if"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3471,15 +3520,15 @@ msgstr ""
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "ગેલેરી"
|
msgstr "ગેલેરી"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3723,7 +3772,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3895,7 +3944,7 @@ msgstr ""
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "માર્ગદર્શિકા"
|
msgstr "માર્ગદર્શિકા"
|
||||||
|
|
||||||
|
|
@ -3998,7 +4047,7 @@ msgstr "શૂન્ય"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "નકલ"
|
msgstr "નકલ"
|
||||||
|
|
@ -4016,7 +4065,7 @@ msgid "Checked"
|
||||||
msgstr "ચકાસાયેલ"
|
msgstr "ચકાસાયેલ"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "કસ્ટમ ફીલ્ડ ખસેડો"
|
msgstr "કસ્ટમ ફીલ્ડ ખસેડો"
|
||||||
|
|
@ -4032,13 +4081,13 @@ msgid "Field group title is required"
|
||||||
msgstr "ક્ષેત્ર જૂથ શીર્ષક આવશ્યક છે"
|
msgstr "ક્ષેત્ર જૂથ શીર્ષક આવશ્યક છે"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "જ્યાં સુધી તેના ફેરફારો સાચવવામાં ન આવે ત્યાં સુધી આ ક્ષેત્ર ખસેડી શકાતું નથી"
|
msgstr "જ્યાં સુધી તેના ફેરફારો સાચવવામાં ન આવે ત્યાં સુધી આ ક્ષેત્ર ખસેડી શકાતું નથી"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "શબ્દમાળા \"field_\" નો ઉપયોગ ક્ષેત્રના નામની શરૂઆતમાં થઈ શકશે નહીં"
|
msgstr "શબ્દમાળા \"field_\" નો ઉપયોગ ક્ષેત્રના નામની શરૂઆતમાં થઈ શકશે નહીં"
|
||||||
|
|
@ -4105,15 +4154,15 @@ msgstr "પેજ"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "પોસ્ટ"
|
msgstr "પોસ્ટ"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "સંબંધી"
|
msgstr "સંબંધી"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "પસંદગી"
|
msgstr "પસંદગી"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "પાયાની"
|
msgstr "પાયાની"
|
||||||
|
|
||||||
|
|
@ -4141,7 +4190,7 @@ msgstr "સુધારો"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "ઇમેઇલ માન્ય કરો"
|
msgstr "ઇમેઇલ માન્ય કરો"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "લખાણ"
|
msgstr "લખાણ"
|
||||||
|
|
||||||
|
|
@ -4150,8 +4199,8 @@ msgstr "લખાણ"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "શીર્ષક"
|
msgstr "શીર્ષક"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -4208,59 +4257,59 @@ msgid "Has any value"
|
||||||
msgstr "કોઈપણ મૂલ્ય ધરાવે છે"
|
msgstr "કોઈપણ મૂલ્ય ધરાવે છે"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "રદ"
|
msgstr "રદ"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "શું તમને ખાતરી છે?"
|
msgstr "શું તમને ખાતરી છે?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "પ્રતિબંધિત"
|
msgstr "પ્રતિબંધિત"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "વિગતો વિસ્તૃત કરો"
|
msgstr "વિગતો વિસ્તૃત કરો"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "આ પોસ્ટમાં અપલોડ કરવામાં આવ્યું છે"
|
msgstr "આ પોસ્ટમાં અપલોડ કરવામાં આવ્યું છે"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4271,7 +4320,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "સંપાદિત કરો"
|
msgstr "સંપાદિત કરો"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "જો તમે આ પૃષ્ઠ છોડીને જશો તો તમે કરેલા ફેરફારો ખોવાઈ જશે"
|
msgstr "જો તમે આ પૃષ્ઠ છોડીને જશો તો તમે કરેલા ફેરફારો ખોવાઈ જશે"
|
||||||
|
|
@ -4286,7 +4335,7 @@ msgstr "ફાઇલનો પ્રકાર %s હોવો આવશ્યક
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4338,7 +4387,7 @@ msgstr "થંબનેલ"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(લેબલ નથી)"
|
msgstr "(લેબલ નથી)"
|
||||||
|
|
@ -4569,18 +4618,18 @@ msgid "File name"
|
||||||
msgstr "ફાઇલનું નામ"
|
msgstr "ફાઇલનું નામ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "ફાઇલ અપડેટ કરો"
|
msgstr "ફાઇલ અપડેટ કરો"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "ફાઇલ સંપાદિત કરો\t"
|
msgstr "ફાઇલ સંપાદિત કરો\t"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "ફાઇલ પસંદ કરો"
|
msgstr "ફાઇલ પસંદ કરો"
|
||||||
|
|
||||||
|
|
@ -4606,7 +4655,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "પસંદ કરો"
|
msgstr "પસંદ કરો"
|
||||||
|
|
@ -4957,48 +5006,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "પેરેન્ટ"
|
msgstr "પેરેન્ટ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "જ્યાં સુધી ફીલ્ડ ક્લિક ન થાય ત્યાં સુધી TinyMCE પ્રારંભ કરવામાં આવશે નહીં"
|
msgstr "જ્યાં સુધી ફીલ્ડ ક્લિક ન થાય ત્યાં સુધી TinyMCE પ્રારંભ કરવામાં આવશે નહીં"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "ટૂલબાર"
|
msgstr "ટૂલબાર"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "ફક્ત ટેક્સ્ટ"
|
msgstr "ફક્ત ટેક્સ્ટ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "ટૅબ્સ"
|
msgstr "ટૅબ્સ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "લખાણ"
|
msgstr "લખાણ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "દ્રશ્ય"
|
msgstr "દ્રશ્ય"
|
||||||
|
|
||||||
|
|
@ -5075,7 +5124,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "નવી પોસ્ટ બનાવતી વખતે દેખાય છે"
|
msgstr "નવી પોસ્ટ બનાવતી વખતે દેખાય છે"
|
||||||
|
|
||||||
|
|
@ -5176,17 +5225,17 @@ msgid "Select post type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "કોઈ બરાબરી મળી નથી"
|
msgstr "કોઈ બરાબરી મળી નથી"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "લોડ કરી રહ્યું છે"
|
msgstr "લોડ કરી રહ્યું છે"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "મહત્તમ મૂલ્યો પહોંચી ગયા ( {max} મૂલ્યો )"
|
msgstr "મહત્તમ મૂલ્યો પહોંચી ગયા ( {max} મૂલ્યો )"
|
||||||
|
|
||||||
|
|
@ -5295,7 +5344,7 @@ msgstr "ચિત્ર ઉમેરો"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "કોઇ ચિત્ર પસંદ નથી કયુઁ"
|
msgstr "કોઇ ચિત્ર પસંદ નથી કયુઁ"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5310,22 +5359,22 @@ msgid "Edit"
|
||||||
msgstr "સંપાદિત કરો"
|
msgstr "સંપાદિત કરો"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "બધી છબીઓ"
|
msgstr "બધી છબીઓ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "છબી અપડેટ કરો"
|
msgstr "છબી અપડેટ કરો"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "છબી સંપાદિત કરો"
|
msgstr "છબી સંપાદિત કરો"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "છબી પસંદ કરો"
|
msgstr "છબી પસંદ કરો"
|
||||||
|
|
||||||
|
|
@ -5410,16 +5459,16 @@ msgstr "તારીખ પીકર"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "પહોળાઈ"
|
msgstr "પહોળાઈ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "યુઆરએલ દાખલ કરો"
|
msgstr "યુઆરએલ દાખલ કરો"
|
||||||
|
|
||||||
|
|
@ -5460,7 +5509,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "મૂળભૂત મૂલ્ય"
|
msgstr "મૂળભૂત મૂલ્ય"
|
||||||
|
|
||||||
|
|
@ -5474,13 +5523,13 @@ msgstr ""
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "સંદેશ"
|
msgstr "સંદેશ"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "ના"
|
msgstr "ના"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5490,31 +5539,31 @@ msgstr "હા"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "સાચું / ખોટું"
|
msgstr "સાચું / ખોટું"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "પંક્તિ"
|
msgstr "પંક્તિ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "ટેબલ"
|
msgstr "ટેબલ"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "બ્લોક"
|
msgstr "બ્લોક"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "લેઆઉટ"
|
msgstr "લેઆઉટ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -5529,7 +5578,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "ઊંચાઈ"
|
msgstr "ઊંચાઈ"
|
||||||
|
|
||||||
|
|
@ -5569,7 +5618,7 @@ msgid "Search"
|
||||||
msgstr "શોધો"
|
msgstr "શોધો"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -81,17 +81,17 @@ msgstr "האפשרויות עודכנו"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>"
|
#| "<a href=\"%s\">details & pricing</a>"
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"כדי לאפשר עדכונים, בבקשה הקלד את מפתח הרשיון שלך בדף <a href=\"%s"
|
"כדי לאפשר עדכונים, בבקשה הקלד את מפתח הרשיון שלך בדף <a "
|
||||||
"\">העדכונים</a>. אם אין לך מפתח רשיון, בבקשה עבור לדף <a href=\"%s\">פרטים "
|
"href=\"%s\">העדכונים</a>. אם אין לך מפתח רשיון, בבקשה עבור לדף <a "
|
||||||
"ומחירים</a>"
|
"href=\"%s\">פרטים ומחירים</a>"
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
|
||||||
BIN
lang/acf-hr.mo
BIN
lang/acf-hr.mo
Binary file not shown.
287
lang/acf-hr.po
287
lang/acf-hr.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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -21,6 +21,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -397,8 +446,8 @@ msgid ""
|
||||||
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
||||||
"term</a>."
|
"term</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ovo polje ne smije biti WordPress <a href=\"%s\" target=\"_blank"
|
"Ovo polje ne smije biti WordPress <a href=\"%s\" "
|
||||||
"\">rezervirani pojam</a>."
|
"target=\"_blank\">rezervirani pojam</a>."
|
||||||
|
|
||||||
#: includes/post-types/class-acf-post-type.php:329
|
#: includes/post-types/class-acf-post-type.php:329
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -595,14 +644,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -610,14 +659,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -630,11 +679,11 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Kloniraj"
|
msgstr "Kloniraj"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2488,14 +2537,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2508,13 +2557,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2600,7 +2649,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2610,7 +2659,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2778,16 +2827,16 @@ msgstr ""
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2834,7 +2883,7 @@ msgid "Activate this item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2863,12 +2912,12 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
|
|
@ -3061,74 +3110,74 @@ msgstr ""
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
"you can find help:"
|
"you can find help:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3148,7 +3197,7 @@ msgstr ""
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3296,7 +3345,7 @@ msgid "Show this field if"
|
||||||
msgstr "Prikaži polje ako"
|
msgstr "Prikaži polje ako"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Uvjet za prikaz"
|
msgstr "Uvjet za prikaz"
|
||||||
|
|
||||||
|
|
@ -3338,15 +3387,15 @@ msgstr "Potrebno je nadograditi bazu podataka"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Postavke"
|
msgstr "Postavke"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galerija"
|
msgstr "Galerija"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Fleksibilno polje"
|
msgstr "Fleksibilno polje"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Ponavljajuće polje"
|
msgstr "Ponavljajuće polje"
|
||||||
|
|
||||||
|
|
@ -3592,7 +3641,7 @@ msgstr "Presloži polja povlačenjem"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Prikaži ovaj skup polja ako"
|
msgstr "Prikaži ovaj skup polja ako"
|
||||||
|
|
@ -3765,7 +3814,7 @@ msgstr "Dupliciraj"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -3871,7 +3920,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "kopiraj"
|
msgstr "kopiraj"
|
||||||
|
|
@ -3889,7 +3938,7 @@ msgid "Checked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Premjesti polje"
|
msgstr "Premjesti polje"
|
||||||
|
|
@ -3905,13 +3954,13 @@ msgid "Field group title is required"
|
||||||
msgstr "Naziv polja je obavezna"
|
msgstr "Naziv polja je obavezna"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Potrebno je spremiti izmjene prije nego možete premjestiti polje"
|
msgstr "Potrebno je spremiti izmjene prije nego možete premjestiti polje"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "Polje ne može započinjati sa “field_”, odabrite drugi naziv"
|
msgstr "Polje ne može započinjati sa “field_”, odabrite drugi naziv"
|
||||||
|
|
@ -3978,15 +4027,15 @@ msgstr "Stranice"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Objava"
|
msgstr "Objava"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relacijski"
|
msgstr "Relacijski"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Odabir"
|
msgstr "Odabir"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Osnovno"
|
msgstr "Osnovno"
|
||||||
|
|
||||||
|
|
@ -4014,7 +4063,7 @@ msgstr "Ažuriraj"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Verificiraj email"
|
msgstr "Verificiraj email"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Sadržaj"
|
msgstr "Sadržaj"
|
||||||
|
|
||||||
|
|
@ -4023,8 +4072,8 @@ msgstr "Sadržaj"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Naziv"
|
msgstr "Naziv"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Uredi skup polja"
|
msgstr "Uredi skup polja"
|
||||||
|
|
||||||
|
|
@ -4081,59 +4130,59 @@ msgid "Has any value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Otkaži"
|
msgstr "Otkaži"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Jeste li sigurni?"
|
msgstr "Jeste li sigurni?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "Nekoliko polja treba vašu pažnje: %d"
|
msgstr "Nekoliko polja treba vašu pažnje: %d"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 polje treba vašu pažnju"
|
msgstr "1 polje treba vašu pažnju"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Verifikacija nije uspjela"
|
msgstr "Verifikacija nije uspjela"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Uspješna verifikacija"
|
msgstr "Uspješna verifikacija"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Ograničen pristup"
|
msgstr "Ograničen pristup"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Sakrij detalje"
|
msgstr "Sakrij detalje"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Prošireni prikaz"
|
msgstr "Prošireni prikaz"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Postavljeno uz ovu objavu"
|
msgstr "Postavljeno uz ovu objavu"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4144,7 +4193,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Uredi"
|
msgstr "Uredi"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4160,7 +4209,7 @@ msgstr "Tip datoteke mora biti %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4212,7 +4261,7 @@ msgstr "Sličica"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4444,18 +4493,18 @@ msgid "File name"
|
||||||
msgstr "Naziv datoteke"
|
msgstr "Naziv datoteke"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Ažuriraj datoteku"
|
msgstr "Ažuriraj datoteku"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Uredi datoteku"
|
msgstr "Uredi datoteku"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Odaberite datoteku"
|
msgstr "Odaberite datoteku"
|
||||||
|
|
||||||
|
|
@ -4481,7 +4530,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Unesite svaku novu vrijednost u zasebnu liniju"
|
msgstr "Unesite svaku novu vrijednost u zasebnu liniju"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Odaberi"
|
msgstr "Odaberi"
|
||||||
|
|
@ -4832,48 +4881,48 @@ msgstr "Dozvoli null vrijednost?"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Matični"
|
msgstr "Matični"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Odgodi učitavanje?"
|
msgstr "Odgodi učitavanje?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Prikaži gumb za odabir datoteka?"
|
msgstr "Prikaži gumb za odabir datoteka?"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Alatna traka"
|
msgstr "Alatna traka"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Samo tekstualno"
|
msgstr "Samo tekstualno"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Samo vizualni"
|
msgstr "Samo vizualni"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Vizualno i tekstualno"
|
msgstr "Vizualno i tekstualno"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Kartice"
|
msgstr "Kartice"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Aktiviraj vizualno uređivanje na klik"
|
msgstr "Aktiviraj vizualno uređivanje na klik"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst polje"
|
msgstr "Tekst polje"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Vizualno"
|
msgstr "Vizualno"
|
||||||
|
|
||||||
|
|
@ -4950,7 +4999,7 @@ msgstr "Zadana vrijednost"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Prikazuje se prilikom kreiranje nove objave"
|
msgstr "Prikazuje se prilikom kreiranje nove objave"
|
||||||
|
|
||||||
|
|
@ -5052,17 +5101,17 @@ msgid "Select post type"
|
||||||
msgstr "Odaberi vrstu objave"
|
msgstr "Odaberi vrstu objave"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Nema rezultata"
|
msgstr "Nema rezultata"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Učitavanje"
|
msgstr "Učitavanje"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Već ste dodali najviše dozvoljenih vrijednosti (najviše: {max})"
|
msgstr "Već ste dodali najviše dozvoljenih vrijednosti (najviše: {max})"
|
||||||
|
|
||||||
|
|
@ -5173,7 +5222,7 @@ msgstr "Dodaj sliku"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Nema odabranih slika"
|
msgstr "Nema odabranih slika"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5188,22 +5237,22 @@ msgid "Edit"
|
||||||
msgstr "Uredi"
|
msgstr "Uredi"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Sve slike"
|
msgstr "Sve slike"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Ažuriraj sliku"
|
msgstr "Ažuriraj sliku"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Uredi sliku"
|
msgstr "Uredi sliku"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Odaberi sliku"
|
msgstr "Odaberi sliku"
|
||||||
|
|
||||||
|
|
@ -5288,16 +5337,16 @@ msgstr "Odabir datuma"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Širina"
|
msgstr "Širina"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Dimenzija umetka"
|
msgstr "Dimenzija umetka"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Poveznica"
|
msgstr "Poveznica"
|
||||||
|
|
||||||
|
|
@ -5338,7 +5387,7 @@ msgstr "Stilizirano sučelje"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Zadana vrijednost"
|
msgstr "Zadana vrijednost"
|
||||||
|
|
||||||
|
|
@ -5352,13 +5401,13 @@ msgstr "Prikazuje tekst uz odabirni okvir"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Poruka"
|
msgstr "Poruka"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Ne"
|
msgstr "Ne"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5368,31 +5417,31 @@ msgstr "Da"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "True / False"
|
msgstr "True / False"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Red"
|
msgstr "Red"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tablica"
|
msgstr "Tablica"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Blok"
|
msgstr "Blok"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Odaberite način prikaza odabranih polja"
|
msgstr "Odaberite način prikaza odabranih polja"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Format"
|
msgstr "Format"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Pod polja"
|
msgstr "Pod polja"
|
||||||
|
|
||||||
|
|
@ -5407,7 +5456,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Visina"
|
msgstr "Visina"
|
||||||
|
|
||||||
|
|
@ -5447,7 +5496,7 @@ msgid "Search"
|
||||||
msgstr "Pretraži"
|
msgstr "Pretraži"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Nažalost, ovaj preglednik ne podržava geo lociranje"
|
msgstr "Nažalost, ovaj preglednik ne podržava geo lociranje"
|
||||||
|
|
||||||
|
|
@ -5654,13 +5703,13 @@ msgstr "Postavke spremljene"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>."
|
#| "<a href=\"%s\">details & pricing</a>."
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Da bi omogućili automatsko ažuriranje, molimo unesite licencu na stranici <a "
|
"Da bi omogućili automatsko ažuriranje, molimo unesite licencu na stranici <a "
|
||||||
"href=“%s”>ažuriranja</a>. Ukoliko nemate licencu, pogledajte <a "
|
"href=“%s”>ažuriranja</a>. Ukoliko nemate licencu, pogledajte <a "
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -82,17 +82,17 @@ msgstr "Beállítások elmentve"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>"
|
#| "<a href=\"%s\">details & pricing</a>"
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a <a href=\"%s"
|
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a <a "
|
||||||
"\">Frissítések</a> oldalon. Ha még nem rendelkezünk licenckulcsal, tekintsük "
|
"href=\"%s\">Frissítések</a> oldalon. Ha még nem rendelkezünk licenckulcsal, "
|
||||||
"át a licencek <a href=\"%s\">részleteit és árait</a>."
|
"tekintsük át a licencek <a href=\"%s\">részleteit és árait</a>."
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -137,8 +137,8 @@ msgid ""
|
||||||
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
||||||
"Custom Field Group</a>"
|
"Custom Field Group</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nincsenek mezőcsoportok ehhez a beállítás oldalhoz. <a href=\"%s"
|
"Nincsenek mezőcsoportok ehhez a beállítás oldalhoz. <a "
|
||||||
"\">Mezőcsoport hozzáadása</a>"
|
"href=\"%s\">Mezőcsoport hozzáadása</a>"
|
||||||
|
|
||||||
#: pro/admin/admin-options-page.php:309
|
#: pro/admin/admin-options-page.php:309
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
|
|
@ -794,17 +794,17 @@ msgstr "Frissítési információ"
|
||||||
#: pro/admin/views/html-settings-updates.php:34
|
#: pro/admin/views/html-settings-updates.php:34
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>"
|
#| "<a href=\"%s\">details & pricing</a>"
|
||||||
msgid ""
|
msgid ""
|
||||||
"To unlock updates, please enter your license key below. If you don't have a "
|
"To unlock updates, please enter your license key below. If you don't have a "
|
||||||
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a <a href=\"%s"
|
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a <a "
|
||||||
"\">Frissítések</a> oldalon. Ha még nem rendelkezünk licenckulcsal, tekintsük "
|
"href=\"%s\">Frissítések</a> oldalon. Ha még nem rendelkezünk licenckulcsal, "
|
||||||
"át a licencek <a href=\"%s\">részleteit és árait</a>."
|
"tekintsük át a licencek <a href=\"%s\">részleteit és árait</a>."
|
||||||
|
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
msgid "License Key"
|
msgid "License Key"
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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"
|
||||||
|
|
@ -77,17 +77,17 @@ msgstr "Pilihan Diperbarui"
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
#| msgid ""
|
#| msgid ""
|
||||||
#| "To enable updates, please enter your license key on the <a href=\"%s"
|
#| "To enable updates, please enter your license key on the <a "
|
||||||
#| "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
#| "href=\"%s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
#| "\"%s\">details & pricing</a>."
|
#| "<a href=\"%s\">details & pricing</a>."
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Untuk mengaktifkan update, masukkan kunci lisensi Anda pada halaman <a href="
|
"Untuk mengaktifkan update, masukkan kunci lisensi Anda pada halaman <a "
|
||||||
"\"%s\">Pembaruan</a>. Jika anda tidak memiliki kunci lisensi, silakan lihat "
|
"href=\"%s\">Pembaruan</a>. Jika anda tidak memiliki kunci lisensi, silakan "
|
||||||
"<a href=\"%s\">rincian & harga</a>."
|
"lihat <a href=\"%s\">rincian & harga</a>."
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -132,8 +132,8 @@ msgid ""
|
||||||
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
||||||
"Custom Field Group</a>"
|
"Custom Field Group</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tidak ada Grup Bidang Kustom ditemukan untuk halaman pilihan ini. <a href="
|
"Tidak ada Grup Bidang Kustom ditemukan untuk halaman pilihan ini. <a "
|
||||||
"\"%s\">Buat Grup Bidang Kustom</a>"
|
"href=\"%s\">Buat Grup Bidang Kustom</a>"
|
||||||
|
|
||||||
#: pro/admin/admin-options-page.php:309
|
#: pro/admin/admin-options-page.php:309
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr "Aggiungi campi"
|
msgstr "Aggiungi campi"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "Questo campo"
|
msgstr "Questo campo"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Feedback"
|
msgstr "Feedback"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -585,14 +634,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -600,14 +649,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -620,11 +669,11 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clona"
|
msgstr "Clona"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Avanzato"
|
msgstr "Avanzato"
|
||||||
|
|
||||||
|
|
@ -2468,14 +2517,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2488,13 +2537,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2579,7 +2628,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2589,7 +2638,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2666,8 +2715,8 @@ msgid ""
|
||||||
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||||
"started guide</a>."
|
"started guide</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nuovo in ACF? Dai un'occhiata alla nostra <a href=\"%s\" target=\"_blank"
|
"Nuovo in ACF? Dai un'occhiata alla nostra <a href=\"%s\" "
|
||||||
"\">guida per iniziare</a>."
|
"target=\"_blank\">guida per iniziare</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/list-empty.php:15
|
#: includes/admin/views/acf-field-group/list-empty.php:15
|
||||||
msgid "Add Field Group"
|
msgid "Add Field Group"
|
||||||
|
|
@ -2734,8 +2783,8 @@ msgid ""
|
||||||
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
"Choose from over 30 field types. <a href=\"%s\" target=\"_blank\">Learn "
|
||||||
"more</a>."
|
"more</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Scegli tra più di 30 tipologie di campo. <a href=\"%s\" target=\"_blank"
|
"Scegli tra più di 30 tipologie di campo. <a href=\"%s\" "
|
||||||
"\">Scopri di più</a>."
|
"target=\"_blank\">Scopri di più</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/fields.php:65
|
#: includes/admin/views/acf-field-group/fields.php:65
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2760,16 +2809,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Aggiungi campo"
|
msgstr "Aggiungi campo"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Presentazione"
|
msgstr "Presentazione"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validazione"
|
msgstr "Validazione"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Generale"
|
msgstr "Generale"
|
||||||
|
|
||||||
|
|
@ -2814,7 +2863,7 @@ msgid "Activate this item"
|
||||||
msgstr "Attiva questo elemento"
|
msgstr "Attiva questo elemento"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2849,12 +2898,12 @@ msgstr ""
|
||||||
"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced "
|
"attivi contemporaneamente. Abbiamo automaticamente disattivato Advanced "
|
||||||
"Custom Fields."
|
"Custom Fields."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - Sono state rilevate una o più chiamate per "
|
"<strong>%1$s</strong> - Sono state rilevate una o più chiamate per "
|
||||||
"recuperare valori di campi ACF prima che ACF fosse inizializzato. Questo non "
|
"recuperare valori di campi ACF prima che ACF fosse inizializzato. Questo non "
|
||||||
|
|
@ -3048,23 +3097,23 @@ msgstr "Caricamento differenze"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Verifica modifiche a JSON locale"
|
msgstr "Verifica modifiche a JSON locale"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Visita il sito"
|
msgstr "Visita il sito"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Visualizza i dettagli"
|
msgstr "Visualizza i dettagli"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versione %s"
|
msgstr "Versione %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informazioni"
|
msgstr "Informazioni"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3072,14 +3121,14 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. I professionisti del nostro "
|
"<a href=\"%s\" target=\"_blank\">Help Desk</a>. I professionisti del nostro "
|
||||||
"Help Desk ti assisteranno per problematiche tecniche."
|
"Help Desk ti assisteranno per problematiche tecniche."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3089,7 +3138,7 @@ msgstr ""
|
||||||
"documentazione contiene riferimenti e guide per la maggior parte delle "
|
"documentazione contiene riferimenti e guide per la maggior parte delle "
|
||||||
"situazioni che potresti incontrare."
|
"situazioni che potresti incontrare."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3099,11 +3148,11 @@ msgstr ""
|
||||||
"sito web con ACF. Se incontri difficoltà, ci sono vari posti in cui puoi "
|
"sito web con ACF. Se incontri difficoltà, ci sono vari posti in cui puoi "
|
||||||
"trovare aiuto:"
|
"trovare aiuto:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Aiuto e supporto"
|
msgstr "Aiuto e supporto"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3111,7 +3160,7 @@ msgstr ""
|
||||||
"Utilizza la scheda \"Aiuto e supporto\" per contattarci in caso di necessità "
|
"Utilizza la scheda \"Aiuto e supporto\" per contattarci in caso di necessità "
|
||||||
"di assistenza."
|
"di assistenza."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3121,7 +3170,7 @@ msgstr ""
|
||||||
"nostra guida <a href=\"%s\" target=\"_blank\">Getting started</a> per "
|
"nostra guida <a href=\"%s\" target=\"_blank\">Getting started</a> per "
|
||||||
"familiarizzare con la filosofia del plugin e le buone pratiche da adottare."
|
"familiarizzare con la filosofia del plugin e le buone pratiche da adottare."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3132,7 +3181,7 @@ msgstr ""
|
||||||
"aggiuntivi, ed un'intuitiva API per la visualizzazione dei campi "
|
"aggiuntivi, ed un'intuitiva API per la visualizzazione dei campi "
|
||||||
"personalizzati in qualunque file di template di un tema."
|
"personalizzati in qualunque file di template di un tema."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Panoramica"
|
msgstr "Panoramica"
|
||||||
|
|
||||||
|
|
@ -3152,7 +3201,7 @@ msgstr "Nonce non valido."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Errore nel caricamento del campo."
|
msgstr "Errore nel caricamento del campo."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Posizione non trovata: %s"
|
msgstr "Posizione non trovata: %s"
|
||||||
|
|
@ -3300,7 +3349,7 @@ msgid "Show this field if"
|
||||||
msgstr "Mostra questo campo se"
|
msgstr "Mostra questo campo se"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Condizione logica"
|
msgstr "Condizione logica"
|
||||||
|
|
||||||
|
|
@ -3346,15 +3395,15 @@ msgstr "È richiesto un aggiornamento del database"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Pagina opzioni"
|
msgstr "Pagina opzioni"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galleria"
|
msgstr "Galleria"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Contenuto flessibile"
|
msgstr "Contenuto flessibile"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Ripetitore"
|
msgstr "Ripetitore"
|
||||||
|
|
||||||
|
|
@ -3603,7 +3652,7 @@ msgstr "Trascina per riordinare"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Mostra questo gruppo di campo se"
|
msgstr "Mostra questo gruppo di campo se"
|
||||||
|
|
@ -3781,7 +3830,7 @@ msgstr "Duplica questo elemento"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentazione"
|
msgstr "Documentazione"
|
||||||
|
|
||||||
|
|
@ -3884,7 +3933,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "copia"
|
msgstr "copia"
|
||||||
|
|
@ -3902,7 +3951,7 @@ msgid "Checked"
|
||||||
msgstr "Selezionato"
|
msgstr "Selezionato"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Sposta campo personalizzato"
|
msgstr "Sposta campo personalizzato"
|
||||||
|
|
@ -3918,7 +3967,7 @@ msgid "Field group title is required"
|
||||||
msgstr "Il titolo del gruppo di campi è necessario"
|
msgstr "Il titolo del gruppo di campi è necessario"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3926,7 +3975,7 @@ msgstr ""
|
||||||
"le modifiche"
|
"le modifiche"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -3994,15 +4043,15 @@ msgstr "Pagina"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Articolo"
|
msgstr "Articolo"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relazionale"
|
msgstr "Relazionale"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Scelta"
|
msgstr "Scelta"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Base"
|
msgstr "Base"
|
||||||
|
|
||||||
|
|
@ -4030,7 +4079,7 @@ msgstr "Aggiorna"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valida email"
|
msgstr "Valida email"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenuto"
|
msgstr "Contenuto"
|
||||||
|
|
||||||
|
|
@ -4039,8 +4088,8 @@ msgstr "Contenuto"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titolo"
|
msgstr "Titolo"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Modifica gruppo di campi"
|
msgstr "Modifica gruppo di campi"
|
||||||
|
|
||||||
|
|
@ -4097,59 +4146,59 @@ msgid "Has any value"
|
||||||
msgstr "Ha qualunque valore"
|
msgstr "Ha qualunque valore"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annulla"
|
msgstr "Annulla"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Sei sicuro?"
|
msgstr "Sei sicuro?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d campi necessitano attenzione"
|
msgstr "%d campi necessitano attenzione"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 campo richiede attenzione"
|
msgstr "1 campo richiede attenzione"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validazione fallita"
|
msgstr "Validazione fallita"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validazione avvenuta con successo"
|
msgstr "Validazione avvenuta con successo"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Limitato"
|
msgstr "Limitato"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Comprimi dettagli"
|
msgstr "Comprimi dettagli"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Espandi dettagli"
|
msgstr "Espandi dettagli"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Caricato in questo articolo"
|
msgstr "Caricato in questo articolo"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4160,7 +4209,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Modifica"
|
msgstr "Modifica"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "Le modifiche effettuate verranno cancellate se esci da questa pagina"
|
msgstr "Le modifiche effettuate verranno cancellate se esci da questa pagina"
|
||||||
|
|
@ -4175,7 +4224,7 @@ msgstr "La tipologia del file deve essere %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4227,7 +4276,7 @@ msgstr "Miniatura"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(nessuna etichetta)"
|
msgstr "(nessuna etichetta)"
|
||||||
|
|
@ -4461,18 +4510,18 @@ msgid "File name"
|
||||||
msgstr "Nome file"
|
msgstr "Nome file"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Aggiorna file"
|
msgstr "Aggiorna file"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Modifica file"
|
msgstr "Modifica file"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Seleziona file"
|
msgstr "Seleziona file"
|
||||||
|
|
||||||
|
|
@ -4498,7 +4547,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Inserire ogni valore predefinito su una nuova linea"
|
msgstr "Inserire ogni valore predefinito su una nuova linea"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Seleziona"
|
msgstr "Seleziona"
|
||||||
|
|
@ -4851,49 +4900,49 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Genitore"
|
msgstr "Genitore"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"TinyMCE non sarà inizializzato fino a quando non verrà fatto clic sul campo"
|
"TinyMCE non sarà inizializzato fino a quando non verrà fatto clic sul campo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra degli strumenti"
|
msgstr "Barra degli strumenti"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Solo testo"
|
msgstr "Solo testo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Solo visuale"
|
msgstr "Solo visuale"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuale e testo"
|
msgstr "Visuale e testo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Schede"
|
msgstr "Schede"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Fare clic per inizializzare TinyMCE"
|
msgstr "Fare clic per inizializzare TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Testo"
|
msgstr "Testo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuale"
|
msgstr "Visuale"
|
||||||
|
|
||||||
|
|
@ -4970,7 +5019,7 @@ msgstr "Testo segnaposto"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Appare quando si crea un nuovo articolo"
|
msgstr "Appare quando si crea un nuovo articolo"
|
||||||
|
|
||||||
|
|
@ -5071,17 +5120,17 @@ msgid "Select post type"
|
||||||
msgstr "Seleziona tipo di articolo"
|
msgstr "Seleziona tipo di articolo"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Nessuna corrispondenza trovata"
|
msgstr "Nessuna corrispondenza trovata"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Caricamento in corso"
|
msgstr "Caricamento in corso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Numero massimo di valori raggiunto ( {max} valori )"
|
msgstr "Numero massimo di valori raggiunto ( {max} valori )"
|
||||||
|
|
||||||
|
|
@ -5190,7 +5239,7 @@ msgstr "Aggiungi immagine"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Nessuna immagine selezionata"
|
msgstr "Nessuna immagine selezionata"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5205,22 +5254,22 @@ msgid "Edit"
|
||||||
msgstr "Modifica"
|
msgstr "Modifica"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Tutte le immagini"
|
msgstr "Tutte le immagini"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Aggiorna immagine"
|
msgstr "Aggiorna immagine"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Modifica immagine"
|
msgstr "Modifica immagine"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Selezionare immagine"
|
msgstr "Selezionare immagine"
|
||||||
|
|
||||||
|
|
@ -5307,16 +5356,16 @@ msgstr "Selettore data"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Larghezza"
|
msgstr "Larghezza"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Dimensione oggetto incorporato"
|
msgstr "Dimensione oggetto incorporato"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Inserisci URL"
|
msgstr "Inserisci URL"
|
||||||
|
|
||||||
|
|
@ -5357,7 +5406,7 @@ msgstr ""
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valore predefinito"
|
msgstr "Valore predefinito"
|
||||||
|
|
||||||
|
|
@ -5371,13 +5420,13 @@ msgstr "Visualizza il testo a fianco alla casella di controllo"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Messaggio"
|
msgstr "Messaggio"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5387,32 +5436,32 @@ msgstr "Sì"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Vero / Falso"
|
msgstr "Vero / Falso"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Riga"
|
msgstr "Riga"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabella"
|
msgstr "Tabella"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Blocco"
|
msgstr "Blocco"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Specifica lo stile utilizzato per la visualizzazione dei campi selezionati"
|
"Specifica lo stile utilizzato per la visualizzazione dei campi selezionati"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Sottocampi"
|
msgstr "Sottocampi"
|
||||||
|
|
||||||
|
|
@ -5427,7 +5476,7 @@ msgstr "Personalizza l'altezza della mappa"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Altezza"
|
msgstr "Altezza"
|
||||||
|
|
||||||
|
|
@ -5467,7 +5516,7 @@ msgid "Search"
|
||||||
msgstr "Cerca"
|
msgstr "Cerca"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Questo browser non supporta la geolocalizzazione"
|
msgstr "Questo browser non supporta la geolocalizzazione"
|
||||||
|
|
||||||
|
|
@ -5668,9 +5717,9 @@ msgstr "Opzioni Aggiornate"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
|
|
@ -5712,8 +5761,8 @@ msgid ""
|
||||||
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
||||||
"Custom Field Group</a>"
|
"Custom Field Group</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nessun Field Group personalizzato trovato in questa Pagina Opzioni. <a href="
|
"Nessun Field Group personalizzato trovato in questa Pagina Opzioni. <a "
|
||||||
"\"%s\">Crea un Field Group personalizzato</a>"
|
"href=\"%s\">Crea un Field Group personalizzato</a>"
|
||||||
|
|
||||||
#: pro/admin/admin-updates.php:52
|
#: pro/admin/admin-updates.php:52
|
||||||
msgid "<b>Error</b>. Could not connect to update server"
|
msgid "<b>Error</b>. Could not connect to update server"
|
||||||
|
|
@ -6138,8 +6187,8 @@ msgid ""
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Per sbloccare gli aggiornamenti, si prega di inserire la chiave di licenza "
|
"Per sbloccare gli aggiornamenti, si prega di inserire la chiave di licenza "
|
||||||
"qui sotto. Se non hai una chiave di licenza, si prega di vedere <a href=\"%s"
|
"qui sotto. Se non hai una chiave di licenza, si prega di vedere <a "
|
||||||
"\" target=\"_blank\">Dettagli e prezzi</a>."
|
"href=\"%s\" target=\"_blank\">Dettagli e prezzi</a>."
|
||||||
|
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
msgid "License Key"
|
msgid "License Key"
|
||||||
|
|
|
||||||
BIN
lang/acf-ja.mo
BIN
lang/acf-ja.mo
Binary file not shown.
279
lang/acf-ja.po
279
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr "ACF プロ版を更新する"
|
msgstr "ACF プロ版を更新する"
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr "フィールドを追加"
|
msgstr "フィールドを追加"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "このフィールド"
|
msgstr "このフィールド"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "フィードバック"
|
msgstr "フィードバック"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "サポート"
|
msgstr "サポート"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "によって開発され、維持されている"
|
msgstr "によって開発され、維持されている"
|
||||||
|
|
||||||
|
|
@ -602,7 +651,7 @@ msgstr ""
|
||||||
"グループ化して整理することができます。大規模なデータセットを整理整頓するのに"
|
"グループ化して整理することができます。大規模なデータセットを整理整頓するのに"
|
||||||
"便利です。"
|
"便利です。"
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -612,7 +661,7 @@ msgstr ""
|
||||||
"するためのソリューションで、繰り返し表示できる一連のサブフィールドの親として"
|
"するためのソリューションで、繰り返し表示できる一連のサブフィールドの親として"
|
||||||
"機能します。"
|
"機能します。"
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -624,14 +673,14 @@ msgstr ""
|
||||||
"設定では、ギャラリーで新しい添付ファイルを追加する場所と、許可される添付ファ"
|
"設定では、ギャラリーで新しい添付ファイルを追加する場所と、許可される添付ファ"
|
||||||
"イルの最小/最大数を指定できます。"
|
"イルの最小/最大数を指定できます。"
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -639,16 +688,16 @@ msgid ""
|
||||||
"or display the selected fields as a group of subfields."
|
"or display the selected fields as a group of subfields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "複製"
|
msgstr "複製"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "高度"
|
msgstr "高度"
|
||||||
|
|
||||||
|
|
@ -2486,14 +2535,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "入力して検索…"
|
msgstr "入力して検索…"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2506,13 +2555,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2596,7 +2645,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2606,7 +2655,7 @@ msgid "Close Modal"
|
||||||
msgstr "モーダルを閉じる"
|
msgstr "モーダルを閉じる"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2773,16 +2822,16 @@ msgstr "No."
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "フィールドを追加"
|
msgstr "フィールドを追加"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "プレゼンテーション"
|
msgstr "プレゼンテーション"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "検証"
|
msgstr "検証"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "全般"
|
msgstr "全般"
|
||||||
|
|
||||||
|
|
@ -2825,7 +2874,7 @@ msgid "Activate this item"
|
||||||
msgstr "この項目を有効化する"
|
msgstr "この項目を有効化する"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2860,12 +2909,12 @@ msgstr ""
|
||||||
"ださい。\n"
|
"ださい。\n"
|
||||||
"Advanced Custom Fields を自動的に無効化しました。"
|
"Advanced Custom Fields を自動的に無効化しました。"
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
|
|
@ -3052,23 +3101,23 @@ msgstr "差分を読み込み中"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "ローカルの JSON 変更をレビュー"
|
msgstr "ローカルの JSON 変更をレビュー"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "サイトへ移動"
|
msgstr "サイトへ移動"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "詳細を表示"
|
msgstr "詳細を表示"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "バージョン %s"
|
msgstr "バージョン %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "情報"
|
msgstr "情報"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3076,7 +3125,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">ヘルプデスク</a>。サポートの専門家がお客様の"
|
"<a href=\"%s\" target=\"_blank\">ヘルプデスク</a>。サポートの専門家がお客様の"
|
||||||
"より詳細な技術的課題をサポートします。"
|
"より詳細な技術的課題をサポートします。"
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3086,7 +3135,7 @@ msgstr ""
|
||||||
"には、活発でフレンドリーなコミュニティがあり、ACFの世界の「ハウツー」を理解す"
|
"には、活発でフレンドリーなコミュニティがあり、ACFの世界の「ハウツー」を理解す"
|
||||||
"る手助けをしてくれるかもしれません。"
|
"る手助けをしてくれるかもしれません。"
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3096,7 +3145,7 @@ msgstr ""
|
||||||
"キュメントには、お客様が遭遇する可能性のあるほとんどの状況に対するリファレン"
|
"キュメントには、お客様が遭遇する可能性のあるほとんどの状況に対するリファレン"
|
||||||
"スやガイドが含まれています。"
|
"スやガイドが含まれています。"
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3106,17 +3155,17 @@ msgstr ""
|
||||||
"いただきたいと考えています。何か問題が発生した場合には、複数の場所でサポート"
|
"いただきたいと考えています。何か問題が発生した場合には、複数の場所でサポート"
|
||||||
"を受けることができます:"
|
"を受けることができます:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "ヘルプとサポート"
|
msgstr "ヘルプとサポート"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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 "お困りの際は「ヘルプとサポート」タブからお問い合わせください。"
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3126,7 +3175,7 @@ msgstr ""
|
||||||
"タートガイド</a>に目を通して、プラグインの理念やベストプラクティスを理解する"
|
"タートガイド</a>に目を通して、プラグインの理念やベストプラクティスを理解する"
|
||||||
"ことをおすすめします。"
|
"ことをおすすめします。"
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3136,7 +3185,7 @@ msgstr ""
|
||||||
"スタマイズするためのビジュアルフォームビルダーと、カスタムフィールドの値を任"
|
"スタマイズするためのビジュアルフォームビルダーと、カスタムフィールドの値を任"
|
||||||
"意のテーマテンプレートファイルに表示するための直感的な API を提供します。"
|
"意のテーマテンプレートファイルに表示するための直感的な API を提供します。"
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "概要"
|
msgstr "概要"
|
||||||
|
|
||||||
|
|
@ -3156,7 +3205,7 @@ msgstr "無効な nonce。"
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "フィールドの読み込みエラー。"
|
msgstr "フィールドの読み込みエラー。"
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "位置情報が見つかりません: %s"
|
msgstr "位置情報が見つかりません: %s"
|
||||||
|
|
@ -3304,7 +3353,7 @@ msgid "Show this field if"
|
||||||
msgstr "このフィールドグループの表示条件"
|
msgstr "このフィールドグループの表示条件"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "条件判定"
|
msgstr "条件判定"
|
||||||
|
|
||||||
|
|
@ -3350,15 +3399,15 @@ msgstr "データベースのアップグレードが必要"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "オプションページ"
|
msgstr "オプションページ"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "ギャラリー"
|
msgstr "ギャラリー"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "柔軟なコンテンツ"
|
msgstr "柔軟なコンテンツ"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "繰り返し"
|
msgstr "繰り返し"
|
||||||
|
|
||||||
|
|
@ -3604,7 +3653,7 @@ msgstr "ドラッグして順序を変更"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "このフィールドグループを表示する条件"
|
msgstr "このフィールドグループを表示する条件"
|
||||||
|
|
@ -3785,7 +3834,7 @@ msgstr "この項目を複製"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "サポート"
|
msgstr "サポート"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "ドキュメンテーション"
|
msgstr "ドキュメンテーション"
|
||||||
|
|
||||||
|
|
@ -3885,7 +3934,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "コピー"
|
msgstr "コピー"
|
||||||
|
|
@ -3903,7 +3952,7 @@ msgid "Checked"
|
||||||
msgstr "チェック済み"
|
msgstr "チェック済み"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "カスタムフィールドを移動"
|
msgstr "カスタムフィールドを移動"
|
||||||
|
|
@ -3919,13 +3968,13 @@ msgid "Field group title is required"
|
||||||
msgstr "フィールドグループのタイトルは必須です"
|
msgstr "フィールドグループのタイトルは必須です"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "変更を保存するまでこのフィールドは移動できません"
|
msgstr "変更を保存するまでこのフィールドは移動できません"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "\"field_\" という文字列はフィールド名の先頭に使うことはできません"
|
msgstr "\"field_\" という文字列はフィールド名の先頭に使うことはできません"
|
||||||
|
|
@ -3992,15 +4041,15 @@ msgstr "固定ページ"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "投稿"
|
msgstr "投稿"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "関連"
|
msgstr "関連"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "選択"
|
msgstr "選択"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "基本"
|
msgstr "基本"
|
||||||
|
|
||||||
|
|
@ -4028,7 +4077,7 @@ msgstr "更新"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "メールを確認"
|
msgstr "メールを確認"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "コンテンツ"
|
msgstr "コンテンツ"
|
||||||
|
|
||||||
|
|
@ -4037,8 +4086,8 @@ msgstr "コンテンツ"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "タイトル"
|
msgstr "タイトル"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "フィールドグループを編集"
|
msgstr "フィールドグループを編集"
|
||||||
|
|
||||||
|
|
@ -4095,59 +4144,59 @@ msgid "Has any value"
|
||||||
msgstr "任意の値あり"
|
msgstr "任意の値あり"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "キャンセル"
|
msgstr "キャンセル"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "本当に実行しますか ?"
|
msgstr "本当に実行しますか ?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d個のフィールドで確認が必要です"
|
msgstr "%d個のフィールドで確認が必要です"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1つのフィールドで確認が必要です"
|
msgstr "1つのフィールドで確認が必要です"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "検証失敗"
|
msgstr "検証失敗"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "検証成功"
|
msgstr "検証成功"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "制限"
|
msgstr "制限"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "詳細を折りたたむ"
|
msgstr "詳細を折りたたむ"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "詳細を展開"
|
msgstr "詳細を展開"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "この投稿へのアップロード"
|
msgstr "この投稿へのアップロード"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4158,7 +4207,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "編集"
|
msgstr "編集"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "このページから移動した場合、変更は失われます"
|
msgstr "このページから移動した場合、変更は失われます"
|
||||||
|
|
@ -4173,7 +4222,7 @@ msgstr "ファイル形式は %s である必要があります。"
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4225,7 +4274,7 @@ msgstr "サムネイル"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(ラベルなし)"
|
msgstr "(ラベルなし)"
|
||||||
|
|
@ -4458,18 +4507,18 @@ msgid "File name"
|
||||||
msgstr "ファイル名"
|
msgstr "ファイル名"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "ファイルを更新"
|
msgstr "ファイルを更新"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "ファイルを編集"
|
msgstr "ファイルを編集"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "ファイルを選択"
|
msgstr "ファイルを選択"
|
||||||
|
|
||||||
|
|
@ -4495,7 +4544,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "新しい行に各デフォルト値を入力してください"
|
msgstr "新しい行に各デフォルト値を入力してください"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "選択"
|
msgstr "選択"
|
||||||
|
|
@ -4846,48 +4895,48 @@ msgstr "空の値を許可"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "親"
|
msgstr "親"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "フィールドがクリックされるまで TinyMCE は初期化されません"
|
msgstr "フィールドがクリックされるまで TinyMCE は初期化されません"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "初期化を遅延させる"
|
msgstr "初期化を遅延させる"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "メディアアップロードボタンを表示"
|
msgstr "メディアアップロードボタンを表示"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "ツールバー"
|
msgstr "ツールバー"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "テキストのみ"
|
msgstr "テキストのみ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "ビジュアルのみ"
|
msgstr "ビジュアルのみ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "ビジュアルとテキスト"
|
msgstr "ビジュアルとテキスト"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "タブ"
|
msgstr "タブ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "クリックして TinyMCE を初期化"
|
msgstr "クリックして TinyMCE を初期化"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "テキスト"
|
msgstr "テキスト"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "ビジュアル"
|
msgstr "ビジュアル"
|
||||||
|
|
||||||
|
|
@ -4964,7 +5013,7 @@ msgstr "プレースホルダーテキスト"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "新規投稿作成時に表示"
|
msgstr "新規投稿作成時に表示"
|
||||||
|
|
||||||
|
|
@ -5064,17 +5113,17 @@ msgid "Select post type"
|
||||||
msgstr "投稿タイプを選択"
|
msgstr "投稿タイプを選択"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "一致する項目がありません"
|
msgstr "一致する項目がありません"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "読み込み中"
|
msgstr "読み込み中"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "最大値 ({max}) に達しました"
|
msgstr "最大値 ({max}) に達しました"
|
||||||
|
|
||||||
|
|
@ -5183,7 +5232,7 @@ msgstr "画像を追加"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "画像が選択されていません"
|
msgstr "画像が選択されていません"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5198,22 +5247,22 @@ msgid "Edit"
|
||||||
msgstr "編集"
|
msgstr "編集"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "すべての画像"
|
msgstr "すべての画像"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "画像を更新"
|
msgstr "画像を更新"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "画像を編集"
|
msgstr "画像を編集"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "画像を選択"
|
msgstr "画像を選択"
|
||||||
|
|
||||||
|
|
@ -5298,16 +5347,16 @@ msgstr "日付選択ツール"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "幅"
|
msgstr "幅"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "埋め込みサイズ"
|
msgstr "埋め込みサイズ"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "URL を入力"
|
msgstr "URL を入力"
|
||||||
|
|
||||||
|
|
@ -5348,7 +5397,7 @@ msgstr "スタイリッシュな UI"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "初期値"
|
msgstr "初期値"
|
||||||
|
|
||||||
|
|
@ -5362,13 +5411,13 @@ msgstr "チェックボックスの横にテキストを表示"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "メッセージ"
|
msgstr "メッセージ"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "いいえ"
|
msgstr "いいえ"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5378,31 +5427,31 @@ msgstr "はい"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "真/偽"
|
msgstr "真/偽"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "行"
|
msgstr "行"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "テーブル"
|
msgstr "テーブル"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "ブロック"
|
msgstr "ブロック"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "選択したフィールドのレンダリングに使用されるスタイルを指定します"
|
msgstr "選択したフィールドのレンダリングに使用されるスタイルを指定します"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "レイアウト"
|
msgstr "レイアウト"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "サブフィールド"
|
msgstr "サブフィールド"
|
||||||
|
|
||||||
|
|
@ -5417,7 +5466,7 @@ msgstr "地図の高さをカスタマイズ"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "高さ"
|
msgstr "高さ"
|
||||||
|
|
||||||
|
|
@ -5457,7 +5506,7 @@ msgid "Search"
|
||||||
msgstr "検索"
|
msgstr "検索"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "お使いのブラウザーは位置情報機能に対応していません"
|
msgstr "お使いのブラウザーは位置情報機能に対応していません"
|
||||||
|
|
||||||
|
|
@ -5658,9 +5707,9 @@ msgstr "オプションを更新しました"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr "필드 추가"
|
msgstr "필드 추가"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "이 필드"
|
msgstr "이 필드"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "피드백"
|
msgstr "피드백"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "지원"
|
msgstr "지원"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "에 의해 개발 및 유지 관리됩니다."
|
msgstr "에 의해 개발 및 유지 관리됩니다."
|
||||||
|
|
||||||
|
|
@ -652,7 +701,7 @@ msgstr ""
|
||||||
"콘텐츠를 편집하는 동안 표시되는 접을 수 있는 패널로 사용자 정의 필드를 그룹화"
|
"콘텐츠를 편집하는 동안 표시되는 접을 수 있는 패널로 사용자 정의 필드를 그룹화"
|
||||||
"하고 구성할 수 있습니다. 큰 데이터 세트를 깔끔하게 유지하는 데 유용합니다."
|
"하고 구성할 수 있습니다. 큰 데이터 세트를 깔끔하게 유지하는 데 유용합니다."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -661,7 +710,7 @@ msgstr ""
|
||||||
"반복해서 반복할 수 있는 하위 필드 세트의 상위 역할을 하여 슬라이드, 팀 구성"
|
"반복해서 반복할 수 있는 하위 필드 세트의 상위 역할을 하여 슬라이드, 팀 구성"
|
||||||
"원 및 클릭 유도 문안 타일과 같은 반복 콘텐츠에 대한 솔루션을 제공합니다."
|
"원 및 클릭 유도 문안 타일과 같은 반복 콘텐츠에 대한 솔루션을 제공합니다."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -672,7 +721,7 @@ msgstr ""
|
||||||
"설정은 이미지 필드 유형과 유사합니다. 추가 설정을 통해 갤러리에서 새 첨부 파"
|
"설정은 이미지 필드 유형과 유사합니다. 추가 설정을 통해 갤러리에서 새 첨부 파"
|
||||||
"일이 추가되는 위치와 허용되는 첨부 파일의 최소/최대 수를 지정할 수 있습니다."
|
"일이 추가되는 위치와 허용되는 첨부 파일의 최소/최대 수를 지정할 수 있습니다."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
|
|
@ -682,7 +731,7 @@ msgstr ""
|
||||||
"용하면 레이아웃과 하위 필드를 사용하여 사용 가능한 블록을 디자인함으로써 전"
|
"용하면 레이아웃과 하위 필드를 사용하여 사용 가능한 블록을 디자인함으로써 전"
|
||||||
"체 제어로 콘텐츠를 정의, 생성 및 관리할 수 있습니다."
|
"체 제어로 콘텐츠를 정의, 생성 및 관리할 수 있습니다."
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -694,16 +743,16 @@ msgstr ""
|
||||||
"택한 필드로 자신을 교체하거나 선택한 필드를 하위 필드 그룹으로 표시할 수 있습"
|
"택한 필드로 자신을 교체하거나 선택한 필드를 하위 필드 그룹으로 표시할 수 있습"
|
||||||
"니다."
|
"니다."
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "복제"
|
msgstr "복제"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "프로"
|
msgstr "프로"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "고급의"
|
msgstr "고급의"
|
||||||
|
|
||||||
|
|
@ -2611,14 +2660,14 @@ msgid "Post type deleted."
|
||||||
msgstr "게시물 유형이 삭제되었습니다."
|
msgstr "게시물 유형이 삭제되었습니다."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "검색하려면 입력하세요..."
|
msgstr "검색하려면 입력하세요..."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2631,7 +2680,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "필드 그룹이 성공적으로 연결되었습니다."
|
msgstr "필드 그룹이 성공적으로 연결되었습니다."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2639,7 +2688,7 @@ msgstr ""
|
||||||
"Custom Post Type UI에 등록된 Post Type과 Taxonomies를 가져와서 ACF로 관리합니"
|
"Custom Post Type UI에 등록된 Post Type과 Taxonomies를 가져와서 ACF로 관리합니"
|
||||||
"다. <a href=\"%s\">시작하기</a>."
|
"다. <a href=\"%s\">시작하기</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2727,7 +2776,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[미리보기에 사용할 수 없는 ACF 쇼트코드 값]"
|
msgstr "[미리보기에 사용할 수 없는 ACF 쇼트코드 값]"
|
||||||
|
|
||||||
|
|
@ -2737,7 +2786,7 @@ msgid "Close Modal"
|
||||||
msgstr "모달 닫기"
|
msgstr "모달 닫기"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "필드가 다른 그룹으로 이동됨"
|
msgstr "필드가 다른 그룹으로 이동됨"
|
||||||
|
|
@ -2913,16 +2962,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "필드 추가"
|
msgstr "필드 추가"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "프레젠테이션"
|
msgstr "프레젠테이션"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "확인"
|
msgstr "확인"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "일반적인"
|
msgstr "일반적인"
|
||||||
|
|
||||||
|
|
@ -2965,7 +3014,7 @@ msgid "Activate this item"
|
||||||
msgstr "이 항목 활성화"
|
msgstr "이 항목 활성화"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "필드 그룹을 휴지통으로 이동하시겠습니까?"
|
msgstr "필드 그룹을 휴지통으로 이동하시겠습니까?"
|
||||||
|
|
@ -2998,12 +3047,12 @@ msgstr ""
|
||||||
"고급 사용자 정의 필드와 고급 사용자 정의 필드 프로는 동시에 활성화되어서는 "
|
"고급 사용자 정의 필드와 고급 사용자 정의 필드 프로는 동시에 활성화되어서는 "
|
||||||
"안 됩니다. 고급 사용자 정의 필드를 자동으로 비활성화했습니다."
|
"안 됩니다. 고급 사용자 정의 필드를 자동으로 비활성화했습니다."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - ACF가 초기화되기 전에 ACF 필드 값을 검색하는 호출이 "
|
"<strong>%1$s</strong> - ACF가 초기화되기 전에 ACF 필드 값을 검색하는 호출이 "
|
||||||
"하나 이상 감지되었습니다. 이는 지원되지 않으며 잘못된 형식의 데이터 또는 누락"
|
"하나 이상 감지되었습니다. 이는 지원되지 않으며 잘못된 형식의 데이터 또는 누락"
|
||||||
|
|
@ -3194,23 +3243,23 @@ msgstr "로딩 차이"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "지역 JSON 변경 검토하기"
|
msgstr "지역 JSON 변경 검토하기"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "웹 사이트 방문하기"
|
msgstr "웹 사이트 방문하기"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "세부 정보 보기"
|
msgstr "세부 정보 보기"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "버전 %s"
|
msgstr "버전 %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "정보"
|
msgstr "정보"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3218,7 +3267,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">헬프 데스크</a>. 당사 헬프데스크의 지원 전문"
|
"<a href=\"%s\" target=\"_blank\">헬프 데스크</a>. 당사 헬프데스크의 지원 전문"
|
||||||
"가가 보다 심도 있는 기술 문제를 지원할 것입니다."
|
"가가 보다 심도 있는 기술 문제를 지원할 것입니다."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3227,7 +3276,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">토론</a>. ACF 세계의 '방법'을 파악하는 데 도"
|
"<a href=\"%s\" target=\"_blank\">토론</a>. ACF 세계의 '방법'을 파악하는 데 도"
|
||||||
"움을 줄 수 있는 커뮤니티 포럼에 활발하고 친근한 커뮤니티가 있습니다."
|
"움을 줄 수 있는 커뮤니티 포럼에 활발하고 친근한 커뮤니티가 있습니다."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3236,7 +3285,7 @@ msgstr ""
|
||||||
"<a href=\"%s\" target=\"_blank\">문서</a>. 광범위한 문서에는 발생할 수 있는 "
|
"<a href=\"%s\" target=\"_blank\">문서</a>. 광범위한 문서에는 발생할 수 있는 "
|
||||||
"대부분의 상황에 대한 참조 및 가이드가 포함되어 있습니다."
|
"대부분의 상황에 대한 참조 및 가이드가 포함되어 있습니다."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3245,17 +3294,17 @@ msgstr ""
|
||||||
"우리는 지원에 열광하며 ACF를 통해 웹 사이트를 최대한 활용하기를 바랍니다. 어"
|
"우리는 지원에 열광하며 ACF를 통해 웹 사이트를 최대한 활용하기를 바랍니다. 어"
|
||||||
"려움에 처한 경우 도움을 받을 수 있는 여러 곳이 있습니다."
|
"려움에 처한 경우 도움을 받을 수 있는 여러 곳이 있습니다."
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "도움말 및 지원"
|
msgstr "도움말 및 지원"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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 "도움이 필요한 경우 도움말 및 지원 탭을 사용하여 연락하십시오."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
"href=\"%s\" target=\"_blank\">Getting started</a> guide to familiarize "
|
||||||
|
|
@ -3264,7 +3313,7 @@ msgstr ""
|
||||||
"첫 번째 필드 그룹을 만들기 전에 먼저 <a href=\"%s\" target=\"_blank\">시작하"
|
"첫 번째 필드 그룹을 만들기 전에 먼저 <a href=\"%s\" target=\"_blank\">시작하"
|
||||||
"기</a> 가이드를 읽고 플러그인의 철학과 모범 사례를 숙지하는 것이 좋습니다."
|
"기</a> 가이드를 읽고 플러그인의 철학과 모범 사례를 숙지하는 것이 좋습니다."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3274,7 +3323,7 @@ msgstr ""
|
||||||
"의할 수 있는 시각적 양식 빌더와 모든 테마 템플릿 파일에 사용자 정의 필드 값"
|
"의할 수 있는 시각적 양식 빌더와 모든 테마 템플릿 파일에 사용자 정의 필드 값"
|
||||||
"을 표시하는 직관적인 API를 제공합니다."
|
"을 표시하는 직관적인 API를 제공합니다."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "개요"
|
msgstr "개요"
|
||||||
|
|
||||||
|
|
@ -3294,7 +3343,7 @@ msgstr "논스가 잘못되었습니다."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "필드를 로드하는 중 오류가 발생했습니다."
|
msgstr "필드를 로드하는 중 오류가 발생했습니다."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "찾을 수 없는 위치: %s"
|
msgstr "찾을 수 없는 위치: %s"
|
||||||
|
|
@ -3442,7 +3491,7 @@ msgid "Show this field if"
|
||||||
msgstr "다음과 같은 경우 이 필드를 표시합니다."
|
msgstr "다음과 같은 경우 이 필드를 표시합니다."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "조건부 논리"
|
msgstr "조건부 논리"
|
||||||
|
|
||||||
|
|
@ -3484,15 +3533,15 @@ msgstr "데이터베이스 업그래이드가 필요합니다"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "옵션 페이지"
|
msgstr "옵션 페이지"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "갤러리"
|
msgstr "갤러리"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "유연한 콘텐츠"
|
msgstr "유연한 콘텐츠"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "리피터"
|
msgstr "리피터"
|
||||||
|
|
||||||
|
|
@ -3738,7 +3787,7 @@ msgstr "드래그하여 재정렬"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "다음과 같은 경우 이 필드 그룹 표시"
|
msgstr "다음과 같은 경우 이 필드 그룹 표시"
|
||||||
|
|
@ -3919,7 +3968,7 @@ msgstr "이 항목 복제하기"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "지원"
|
msgstr "지원"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "문서화"
|
msgstr "문서화"
|
||||||
|
|
||||||
|
|
@ -4019,7 +4068,7 @@ msgstr "빈값"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "복사하기"
|
msgstr "복사하기"
|
||||||
|
|
@ -4037,7 +4086,7 @@ msgid "Checked"
|
||||||
msgstr "체크"
|
msgstr "체크"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "사용자 필드 이동하기"
|
msgstr "사용자 필드 이동하기"
|
||||||
|
|
@ -4053,13 +4102,13 @@ msgid "Field group title is required"
|
||||||
msgstr "필드 그룹 제목이 필요합니다."
|
msgstr "필드 그룹 제목이 필요합니다."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "변경 사항이 저장될 때까지 이 필드를 이동할 수 없습니다."
|
msgstr "변경 사항이 저장될 때까지 이 필드를 이동할 수 없습니다."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "문자열 \"field_\"는 필드 이름의 시작 부분에 사용할 수 없습니다."
|
msgstr "문자열 \"field_\"는 필드 이름의 시작 부분에 사용할 수 없습니다."
|
||||||
|
|
@ -4126,15 +4175,15 @@ msgstr "페이지"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "게시물"
|
msgstr "게시물"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "관계형"
|
msgstr "관계형"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "선택하기"
|
msgstr "선택하기"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "기초"
|
msgstr "기초"
|
||||||
|
|
||||||
|
|
@ -4162,7 +4211,7 @@ msgstr "업대이트하기"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "이매일 확인하기"
|
msgstr "이매일 확인하기"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "콘텐츠"
|
msgstr "콘텐츠"
|
||||||
|
|
||||||
|
|
@ -4171,8 +4220,8 @@ msgstr "콘텐츠"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "제목"
|
msgstr "제목"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "필드 그룹 편집하기"
|
msgstr "필드 그룹 편집하기"
|
||||||
|
|
||||||
|
|
@ -4229,59 +4278,59 @@ msgid "Has any value"
|
||||||
msgstr "값이 있음"
|
msgstr "값이 있음"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "취소하기"
|
msgstr "취소하기"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "확실합니까?"
|
msgstr "확실합니까?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d개의 필드에 주의가 필요합니다."
|
msgstr "%d개의 필드에 주의가 필요합니다."
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "주의가 필요한 필드 1개"
|
msgstr "주의가 필요한 필드 1개"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "검증에 실패했습니다"
|
msgstr "검증에 실패했습니다"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "유효성 검사 성공"
|
msgstr "유효성 검사 성공"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "제한했습니다"
|
msgstr "제한했습니다"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "세부 정보 접기"
|
msgstr "세부 정보 접기"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "세부정보 확장하기"
|
msgstr "세부정보 확장하기"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "이 게시물에 업로드됨"
|
msgstr "이 게시물에 업로드됨"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4292,7 +4341,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "편집하기"
|
msgstr "편집하기"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "페이지를 벗어나면 변경 한 내용이 손실 됩니다"
|
msgstr "페이지를 벗어나면 변경 한 내용이 손실 됩니다"
|
||||||
|
|
@ -4307,7 +4356,7 @@ msgstr "파일 유형은 %s여야 합니다."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4359,7 +4408,7 @@ msgstr "썸네일"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(라벨 없음)"
|
msgstr "(라벨 없음)"
|
||||||
|
|
@ -4590,18 +4639,18 @@ msgid "File name"
|
||||||
msgstr "파일 이름"
|
msgstr "파일 이름"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "파일 업대이트하기"
|
msgstr "파일 업대이트하기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "파일 편집하기"
|
msgstr "파일 편집하기"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "파일 선택하기"
|
msgstr "파일 선택하기"
|
||||||
|
|
||||||
|
|
@ -4627,7 +4676,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "새로운 줄에 기본 값 입력하기"
|
msgstr "새로운 줄에 기본 값 입력하기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "선택하기"
|
msgstr "선택하기"
|
||||||
|
|
@ -4978,48 +5027,48 @@ msgstr "Null 값 허용"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "부모"
|
msgstr "부모"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE는 필드를 클릭할 때까지 초기화되지 않습니다."
|
msgstr "TinyMCE는 필드를 클릭할 때까지 초기화되지 않습니다."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "초기화 지연"
|
msgstr "초기화 지연"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "미디어 업로드 버튼 표시"
|
msgstr "미디어 업로드 버튼 표시"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "툴바"
|
msgstr "툴바"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "텍스트만"
|
msgstr "텍스트만"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "비주얼 전용"
|
msgstr "비주얼 전용"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "비주얼 및 텍스트"
|
msgstr "비주얼 및 텍스트"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "탭"
|
msgstr "탭"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "TinyMCE를 초기화하려면 클릭하십시오."
|
msgstr "TinyMCE를 초기화하려면 클릭하십시오."
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "텍스트"
|
msgstr "텍스트"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "비주얼"
|
msgstr "비주얼"
|
||||||
|
|
||||||
|
|
@ -5096,7 +5145,7 @@ msgstr "자리표시자 텍스트"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "새 게시물을 작성할 때 나타납니다."
|
msgstr "새 게시물을 작성할 때 나타납니다."
|
||||||
|
|
||||||
|
|
@ -5196,17 +5245,17 @@ msgid "Select post type"
|
||||||
msgstr "글 유형 선택하기"
|
msgstr "글 유형 선택하기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "검색 결과가 없습니다"
|
msgstr "검색 결과가 없습니다"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "로딩중"
|
msgstr "로딩중"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "최대 값에 도달함( {max} values )"
|
msgstr "최대 값에 도달함( {max} values )"
|
||||||
|
|
||||||
|
|
@ -5315,7 +5364,7 @@ msgstr "이미지 추가하기"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "선택한 이미지 없음"
|
msgstr "선택한 이미지 없음"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5330,22 +5379,22 @@ msgid "Edit"
|
||||||
msgstr "편집하기"
|
msgstr "편집하기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "모든 이미지"
|
msgstr "모든 이미지"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "이미지 업대이트하기"
|
msgstr "이미지 업대이트하기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "이미지 편집하기"
|
msgstr "이미지 편집하기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "이미지 선택하기"
|
msgstr "이미지 선택하기"
|
||||||
|
|
||||||
|
|
@ -5430,16 +5479,16 @@ msgstr "날짜 선택기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "너비"
|
msgstr "너비"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "임베드 크기"
|
msgstr "임베드 크기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "URL 입력"
|
msgstr "URL 입력"
|
||||||
|
|
||||||
|
|
@ -5480,7 +5529,7 @@ msgstr "양식에 일치하는 UI"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "기본값"
|
msgstr "기본값"
|
||||||
|
|
||||||
|
|
@ -5494,13 +5543,13 @@ msgstr "확인란 옆에 텍스트를 표시합니다."
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "메시지"
|
msgstr "메시지"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "아니요"
|
msgstr "아니요"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5510,31 +5559,31 @@ msgstr "예"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "허위 사실"
|
msgstr "허위 사실"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "열"
|
msgstr "열"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "태이블"
|
msgstr "태이블"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "블록"
|
msgstr "블록"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "선택한 필드를 렌더링하는 데 사용하는 스타일 지정하기"
|
msgstr "선택한 필드를 렌더링하는 데 사용하는 스타일 지정하기"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "레이아웃"
|
msgstr "레이아웃"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "하위 필드"
|
msgstr "하위 필드"
|
||||||
|
|
||||||
|
|
@ -5549,7 +5598,7 @@ msgstr "지도 높이 맞춤설정"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "키"
|
msgstr "키"
|
||||||
|
|
||||||
|
|
@ -5589,7 +5638,7 @@ msgid "Search"
|
||||||
msgstr "검색하기"
|
msgstr "검색하기"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "죄송합니다. 이 브라우저는 지리적 위치를 지원하지 않습니다."
|
msgstr "죄송합니다. 이 브라우저는 지리적 위치를 지원하지 않습니다."
|
||||||
|
|
||||||
|
|
|
||||||
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+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,55 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -103,26 +152,26 @@ msgid "Add fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -583,14 +632,14 @@ msgid ""
|
||||||
"are shown while editing content. Useful for keeping large datasets tidy."
|
"are shown while editing content. Useful for keeping large datasets tidy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -598,14 +647,14 @@ msgid ""
|
||||||
"and the minimum/maximum number of attachments allowed."
|
"and the minimum/maximum number of attachments allowed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -618,11 +667,11 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klone"
|
msgstr "Klone"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2465,14 +2514,14 @@ msgid "Post type deleted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2485,13 +2534,13 @@ msgid "Field groups linked successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2576,7 +2625,7 @@ msgid ""
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2586,7 +2635,7 @@ msgid "Close Modal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -2753,16 +2802,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Legg til felt"
|
msgstr "Legg til felt"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Presentasjon"
|
msgstr "Presentasjon"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validering"
|
msgstr "Validering"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Generelt"
|
msgstr "Generelt"
|
||||||
|
|
||||||
|
|
@ -2807,7 +2856,7 @@ msgid "Activate this item"
|
||||||
msgstr "Aktiver dette elementet"
|
msgstr "Aktiver dette elementet"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Flytte feltgruppe til papirkurven?"
|
msgstr "Flytte feltgruppe til papirkurven?"
|
||||||
|
|
@ -2836,12 +2885,12 @@ msgid ""
|
||||||
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
"at the same time. We've automatically deactivated Advanced Custom Fields."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-user.php:551
|
#: includes/fields/class-acf-field-user.php:551
|
||||||
|
|
@ -3031,74 +3080,74 @@ msgstr "Laster diff"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Se over lokale endinger for JSON"
|
msgstr "Se over lokale endinger for JSON"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Besøk nettsted"
|
msgstr "Besøk nettsted"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Vis detaljer"
|
msgstr "Vis detaljer"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versjon %s"
|
msgstr "Versjon %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informasjon"
|
msgstr "Informasjon"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
"encounter."
|
"encounter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
"you can find help:"
|
"you can find help:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Hjelp og brukerstøtte"
|
msgstr "Hjelp og brukerstøtte"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"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 ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Oversikt"
|
msgstr "Oversikt"
|
||||||
|
|
||||||
|
|
@ -3118,7 +3167,7 @@ msgstr "Ugyldig engangskode."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Feil ved lasting av felt."
|
msgstr "Feil ved lasting av felt."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Posisjon ikke funnet: %s"
|
msgstr "Posisjon ikke funnet: %s"
|
||||||
|
|
@ -3266,7 +3315,7 @@ msgid "Show this field if"
|
||||||
msgstr "Vis dette feltet hvis"
|
msgstr "Vis dette feltet hvis"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Betinget logikk"
|
msgstr "Betinget logikk"
|
||||||
|
|
||||||
|
|
@ -3311,15 +3360,15 @@ msgstr "Oppdatering av database er påkrevd"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Side for alternativer"
|
msgstr "Side for alternativer"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galleri"
|
msgstr "Galleri"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Fleksibelt Innhold"
|
msgstr "Fleksibelt Innhold"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Gjentaker"
|
msgstr "Gjentaker"
|
||||||
|
|
||||||
|
|
@ -3565,7 +3614,7 @@ msgstr "Dra for å endre rekkefølge"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Vis denne feltgruppen hvis"
|
msgstr "Vis denne feltgruppen hvis"
|
||||||
|
|
@ -3741,7 +3790,7 @@ msgstr "Dupliser dette elementet"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Dokumentasjon"
|
msgstr "Dokumentasjon"
|
||||||
|
|
||||||
|
|
@ -3844,7 +3893,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "kopi"
|
msgstr "kopi"
|
||||||
|
|
@ -3862,7 +3911,7 @@ msgid "Checked"
|
||||||
msgstr "Avkrysset"
|
msgstr "Avkrysset"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Flytt egendefinert felt"
|
msgstr "Flytt egendefinert felt"
|
||||||
|
|
@ -3878,13 +3927,13 @@ msgid "Field group title is required"
|
||||||
msgstr "Feltgruppetittel er obligatorisk"
|
msgstr "Feltgruppetittel er obligatorisk"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr "Dette feltet kan ikke flyttes før endringene har blitt lagret"
|
msgstr "Dette feltet kan ikke flyttes før endringene har blitt lagret"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "Strengen \"field_\" kan ikke brukes i starten på et feltnavn"
|
msgstr "Strengen \"field_\" kan ikke brukes i starten på et feltnavn"
|
||||||
|
|
@ -3951,15 +4000,15 @@ msgstr "Side"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Innlegg"
|
msgstr "Innlegg"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relasjonell"
|
msgstr "Relasjonell"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Valg"
|
msgstr "Valg"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Grunnleggende"
|
msgstr "Grunnleggende"
|
||||||
|
|
||||||
|
|
@ -3987,7 +4036,7 @@ msgstr "Oppdater"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "Valider e-post"
|
msgstr "Valider e-post"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Innhold"
|
msgstr "Innhold"
|
||||||
|
|
||||||
|
|
@ -3996,8 +4045,8 @@ msgstr "Innhold"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Tittel"
|
msgstr "Tittel"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Rediger feltgruppe"
|
msgstr "Rediger feltgruppe"
|
||||||
|
|
||||||
|
|
@ -4054,59 +4103,59 @@ msgid "Has any value"
|
||||||
msgstr "Har en verdi"
|
msgstr "Har en verdi"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Avbryt"
|
msgstr "Avbryt"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Er du sikker?"
|
msgstr "Er du sikker?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d felt krever oppmerksomhet"
|
msgstr "%d felt krever oppmerksomhet"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 felt krever oppmerksomhet"
|
msgstr "1 felt krever oppmerksomhet"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validering feilet"
|
msgstr "Validering feilet"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validering vellykket"
|
msgstr "Validering vellykket"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Begrenset"
|
msgstr "Begrenset"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Trekk sammen detaljer"
|
msgstr "Trekk sammen detaljer"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Utvid detaljer"
|
msgstr "Utvid detaljer"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Lastet opp til dette innlegget"
|
msgstr "Lastet opp til dette innlegget"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4117,7 +4166,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Rediger"
|
msgstr "Rediger"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -4133,7 +4182,7 @@ msgstr "Filtype må være %s."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4185,7 +4234,7 @@ msgstr "Miniatyrbilde"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(ingen etikett)"
|
msgstr "(ingen etikett)"
|
||||||
|
|
@ -4417,18 +4466,18 @@ msgid "File name"
|
||||||
msgstr "Filnavn"
|
msgstr "Filnavn"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Oppdater fil"
|
msgstr "Oppdater fil"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Rediger fil"
|
msgstr "Rediger fil"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Velg fil"
|
msgstr "Velg fil"
|
||||||
|
|
||||||
|
|
@ -4454,7 +4503,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Angi hver standardverdi på en ny linje"
|
msgstr "Angi hver standardverdi på en ny linje"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Velg"
|
msgstr "Velg"
|
||||||
|
|
@ -4807,48 +4856,48 @@ msgstr ""
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Forelder"
|
msgstr "Forelder"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE vil ikke bli initialisert før dette feltet er klikket"
|
msgstr "TinyMCE vil ikke bli initialisert før dette feltet er klikket"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Verktøylinje"
|
msgstr "Verktøylinje"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Kun tekst"
|
msgstr "Kun tekst"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Kun visuell"
|
msgstr "Kun visuell"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuell og tekst"
|
msgstr "Visuell og tekst"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Faner"
|
msgstr "Faner"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Klikk for å initialisere TinyMCE"
|
msgstr "Klikk for å initialisere TinyMCE"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst"
|
msgstr "Tekst"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuell"
|
msgstr "Visuell"
|
||||||
|
|
||||||
|
|
@ -4925,7 +4974,7 @@ msgstr "Plassholder-tekst"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Vises når nytt innlegg lages"
|
msgstr "Vises når nytt innlegg lages"
|
||||||
|
|
||||||
|
|
@ -5026,17 +5075,17 @@ msgid "Select post type"
|
||||||
msgstr "Velg innholdstype"
|
msgstr "Velg innholdstype"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Ingen treff funnet"
|
msgstr "Ingen treff funnet"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Laster"
|
msgstr "Laster"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Maksimal verdi nådd ( {max} verdier )"
|
msgstr "Maksimal verdi nådd ( {max} verdier )"
|
||||||
|
|
||||||
|
|
@ -5145,7 +5194,7 @@ msgstr "Legg til bilde"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Intet bilde valgt"
|
msgstr "Intet bilde valgt"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5160,22 +5209,22 @@ msgid "Edit"
|
||||||
msgstr "Rediger"
|
msgstr "Rediger"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Alle bilder"
|
msgstr "Alle bilder"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Oppdater bilde"
|
msgstr "Oppdater bilde"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Rediger bilde"
|
msgstr "Rediger bilde"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Velg bilde"
|
msgstr "Velg bilde"
|
||||||
|
|
||||||
|
|
@ -5260,16 +5309,16 @@ msgstr "Datovelger"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Bredde"
|
msgstr "Bredde"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Innbyggingsstørrelse"
|
msgstr "Innbyggingsstørrelse"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "Angi URL"
|
msgstr "Angi URL"
|
||||||
|
|
||||||
|
|
@ -5310,7 +5359,7 @@ msgstr "Stilisert UI"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Standardverdi"
|
msgstr "Standardverdi"
|
||||||
|
|
||||||
|
|
@ -5324,13 +5373,13 @@ msgstr "Viser tekst ved siden av avkrysingsboksen"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Melding"
|
msgstr "Melding"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nei"
|
msgstr "Nei"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5340,31 +5389,31 @@ msgstr "Ja"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "Sann / usann"
|
msgstr "Sann / usann"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Rad"
|
msgstr "Rad"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabell"
|
msgstr "Tabell"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Blokk"
|
msgstr "Blokk"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Spesifiser stil brukt til å gjengi valgte felt"
|
msgstr "Spesifiser stil brukt til å gjengi valgte felt"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Oppsett"
|
msgstr "Oppsett"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Underfelt"
|
msgstr "Underfelt"
|
||||||
|
|
||||||
|
|
@ -5379,7 +5428,7 @@ msgstr "Egendefinerte karthøyde"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Høyde"
|
msgstr "Høyde"
|
||||||
|
|
||||||
|
|
@ -5419,7 +5468,7 @@ msgid "Search"
|
||||||
msgstr "Søk"
|
msgstr "Søk"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Beklager, denne nettleseren støtter ikke geolokalisering"
|
msgstr "Beklager, denne nettleseren støtter ikke geolokalisering"
|
||||||
|
|
||||||
|
|
@ -5620,9 +5669,9 @@ msgstr "Alternativer er oppdatert"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
|
|
@ -5664,8 +5713,8 @@ msgid ""
|
||||||
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
||||||
"Custom Field Group</a>"
|
"Custom Field Group</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ingen egendefinerte feltgrupper funnet for denne valg-siden. <a href=\"%s"
|
"Ingen egendefinerte feltgrupper funnet for denne valg-siden. <a "
|
||||||
"\">Opprette en egendefinert feltgruppe</a>"
|
"href=\"%s\">Opprette en egendefinert feltgruppe</a>"
|
||||||
|
|
||||||
#: pro/admin/admin-updates.php:52
|
#: pro/admin/admin-updates.php:52
|
||||||
msgid "<b>Error</b>. Could not connect to update server"
|
msgid "<b>Error</b>. Could not connect to update server"
|
||||||
|
|
@ -6086,8 +6135,8 @@ msgid ""
|
||||||
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"For å låse opp oppdateringer må lisensnøkkelen skrives inn under. Se <a href="
|
"For å låse opp oppdateringer må lisensnøkkelen skrives inn under. Se <a "
|
||||||
"\"%s\" target=\"_blank\">detaljer og priser</a> dersom du ikke har "
|
"href=\"%s\" target=\"_blank\">detaljer og priser</a> dersom du ikke har "
|
||||||
"lisensnøkkel."
|
"lisensnøkkel."
|
||||||
|
|
||||||
#: pro/admin/views/html-settings-updates.php:37
|
#: pro/admin/views/html-settings-updates.php:37
|
||||||
|
|
|
||||||
Binary file not shown.
1540
lang/acf-nl_BE.po
1540
lang/acf-nl_BE.po
File diff suppressed because it is too large
Load Diff
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: 2024-01-12T11:58:55+00:00\n"
|
"PO-Revision-Date: 2024-02-05T19:27:11+00:00\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"Language: nl_NL\n"
|
"Language: nl_NL\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -21,6 +21,65 @@ msgstr ""
|
||||||
"X-Generator: gettext\n"
|
"X-Generator: gettext\n"
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
|
|
||||||
|
#. translators: %1$s - The selector used %2$s The field name 3%$s The parent
|
||||||
|
#. function name
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:59
|
||||||
|
msgid "%1$s (%2$s) - rendered via %3$s"
|
||||||
|
msgstr "%1$s (%2$s) - weergegeven via %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:41
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by the ACF "
|
||||||
|
"shortcode. We've detected the output of some of your fields will be modified "
|
||||||
|
"by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s ACF escaped nu automatisch aan onveilige HTML bij het weergeven van de "
|
||||||
|
"ACF shortcode. We hebben gedetecteerd dat de uitvoer van sommige van je "
|
||||||
|
"velden zal worden gewijzigd door deze verandering. %2$s. %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:33
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF now automatically escapes unsafe HTML when rendered by "
|
||||||
|
"<code>the_field</code> or the ACF shortcode. We've detected the output of "
|
||||||
|
"some of your fields will be modified by this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s ACF escaped nu automatisch aan onveilige HTML bij het weergeven met "
|
||||||
|
"<code>the_field</code> of de ACF shortcode. We hebben gedetecteerd dat de "
|
||||||
|
"uitvoer van sommige van je velden zal worden gewijzigd door deze "
|
||||||
|
"verandering. %2$s. %3$s"
|
||||||
|
|
||||||
|
#. translators: %1$s - name of the ACF plugin. %2$s - Link to documentation.
|
||||||
|
#. %3$s - Link to show more details about the error
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:22
|
||||||
|
msgid ""
|
||||||
|
"%1$s ACF will soon escape unsafe HTML that is rendered by <code>the_field()</"
|
||||||
|
"code>. We've detected the output of some of your fields will be modified by "
|
||||||
|
"this change. %2$s. %3$s"
|
||||||
|
msgstr ""
|
||||||
|
"%1$s ACF zal binnenkort onveilige HTML escapen die wordt weergegeven door "
|
||||||
|
"<code>the_field()</code>. We hebben gedetecteerd dat de uitvoer van sommige "
|
||||||
|
"van je velden zal worden gewijzigd door deze verandering. %2$s. %3$s"
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:14
|
||||||
|
msgid "Please contact your site admin for more details."
|
||||||
|
msgstr "Neem contact op met je site beheerder voor meer details."
|
||||||
|
|
||||||
|
#: includes/admin/views/escaped-html-notice.php:5
|
||||||
|
msgid "Learn how to fix"
|
||||||
|
msgstr "Leer hoe je dit kunt oplossen"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:67
|
||||||
|
msgid "Hide details"
|
||||||
|
msgstr "Verberg details"
|
||||||
|
|
||||||
|
#: includes/admin/admin.php:66 includes/admin/views/escaped-html-notice.php:11
|
||||||
|
msgid "Show details"
|
||||||
|
msgstr "Toon details"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:223
|
#: includes/admin/views/global/navigation.php:223
|
||||||
msgid "Renew ACF PRO License"
|
msgid "Renew ACF PRO License"
|
||||||
msgstr "Vernieuw ACF PRO licentie"
|
msgstr "Vernieuw ACF PRO licentie"
|
||||||
|
|
@ -106,26 +165,26 @@ msgid "Add fields"
|
||||||
msgstr "Velden toevoegen"
|
msgstr "Velden toevoegen"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:121
|
#: includes/admin/post-types/admin-field-group.php:121
|
||||||
#: assets/build/js/acf-field-group.js:2753
|
#: assets/build/js/acf-field-group.js:2752
|
||||||
#: assets/build/js/acf-field-group.js:3236
|
#: assets/build/js/acf-field-group.js:3236
|
||||||
msgid "This Field"
|
msgid "This Field"
|
||||||
msgstr "Dit veld"
|
msgstr "Dit veld"
|
||||||
|
|
||||||
#: includes/admin/admin.php:267
|
#: includes/admin/admin.php:332
|
||||||
msgid "ACF PRO"
|
msgid "ACF PRO"
|
||||||
msgstr "ACF PRO"
|
msgstr "ACF PRO"
|
||||||
|
|
||||||
#: includes/admin/admin.php:265
|
#: includes/admin/admin.php:330
|
||||||
msgid "Feedback"
|
msgid "Feedback"
|
||||||
msgstr "Feedback"
|
msgstr "Feedback"
|
||||||
|
|
||||||
#: includes/admin/admin.php:263
|
#: includes/admin/admin.php:328
|
||||||
msgid "Support"
|
msgid "Support"
|
||||||
msgstr "Ondersteuning"
|
msgstr "Ondersteuning"
|
||||||
|
|
||||||
#. 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:238
|
#: includes/admin/admin.php:303
|
||||||
msgid "is developed and maintained by"
|
msgid "is developed and maintained by"
|
||||||
msgstr "is ontwikkeld en wordt onderhouden door"
|
msgstr "is ontwikkeld en wordt onderhouden door"
|
||||||
|
|
||||||
|
|
@ -145,10 +204,10 @@ msgid ""
|
||||||
"a>."
|
"a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Als je de bidirectionele instelling inschakelt, kun je een waarde updaten in "
|
"Als je de bidirectionele instelling inschakelt, kun je een waarde updaten in "
|
||||||
"de doelvelden voor elke waarde die voor dit veld is geselecteerd, door de "
|
"de doelvelden voor elke waarde die voor dit veld is geselecteerd, door het "
|
||||||
"bericht ID, taxonomy ID of user ID van het item dat wordt geüpdatet toe te "
|
"bericht ID, taxonomie ID of gebruiker ID van het item dat wordt geüpdatet "
|
||||||
"voegen of te verwijderen. Lees voor meer informatie de <a href=\"%s\" target="
|
"toe te voegen of te verwijderen. Lees voor meer informatie de <a href=\"%s\" "
|
||||||
"\"_blank\">documentatie</a>."
|
"target=\"_blank\">documentatie</a>."
|
||||||
|
|
||||||
#: includes/acf-bidirectional-functions.php:248
|
#: includes/acf-bidirectional-functions.php:248
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -418,8 +477,8 @@ msgid ""
|
||||||
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
"This field must not be a WordPress <a href=\"%s\" target=\"_blank\">reserved "
|
||||||
"term</a>."
|
"term</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dit veld mag geen door WordPress <a href=\"%s\" target=\"_blank"
|
"Dit veld mag geen door WordPress <a href=\"%s\" "
|
||||||
"\">gereserveerde term</a> zijn."
|
"target=\"_blank\">gereserveerde term</a> zijn."
|
||||||
|
|
||||||
#: includes/post-types/class-acf-post-type.php:329
|
#: includes/post-types/class-acf-post-type.php:329
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -675,7 +734,7 @@ msgstr ""
|
||||||
"panelen die worden getoond tijdens het bewerken van inhoud. Handig om grote "
|
"panelen die worden getoond tijdens het bewerken van inhoud. Handig om grote "
|
||||||
"datasets netjes te houden."
|
"datasets netjes te houden."
|
||||||
|
|
||||||
#: includes/fields.php:474
|
#: includes/fields.php:492
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a solution for repeating content such as slides, team members, "
|
"This provides a solution for repeating content such as slides, team members, "
|
||||||
"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 "
|
||||||
|
|
@ -685,7 +744,7 @@ msgstr ""
|
||||||
"en Call To Action tegels, door te fungeren als een hoofd voor een string sub "
|
"en Call To Action tegels, door te fungeren als een hoofd voor een string sub "
|
||||||
"velden die steeds opnieuw kunnen worden herhaald."
|
"velden die steeds opnieuw kunnen worden herhaald."
|
||||||
|
|
||||||
#: includes/fields.php:464
|
#: includes/fields.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides an interactive interface for managing a collection of "
|
"This provides an interactive interface for managing a collection of "
|
||||||
"attachments. Most settings are similar to the Image field type. Additional "
|
"attachments. Most settings are similar to the Image field type. Additional "
|
||||||
|
|
@ -698,7 +757,7 @@ msgstr ""
|
||||||
"in de galerij worden toegevoegd en het minimum/maximum aantal toegestane "
|
"in de galerij worden toegevoegd en het minimum/maximum aantal toegestane "
|
||||||
"bijlagen."
|
"bijlagen."
|
||||||
|
|
||||||
#: includes/fields.php:454
|
#: includes/fields.php:472
|
||||||
msgid ""
|
msgid ""
|
||||||
"This provides a simple, structured, layout-based editor. The Flexible "
|
"This provides a simple, structured, layout-based editor. The Flexible "
|
||||||
"Content field allows you to define, create and manage content with total "
|
"Content field allows you to define, create and manage content with total "
|
||||||
|
|
@ -709,7 +768,7 @@ msgstr ""
|
||||||
"volledige controle door lay-outs en sub velden te gebruiken om de "
|
"volledige controle door lay-outs en sub velden te gebruiken om de "
|
||||||
"beschikbare blokken vorm te geven."
|
"beschikbare blokken vorm te geven."
|
||||||
|
|
||||||
#: includes/fields.php:444
|
#: includes/fields.php:462
|
||||||
msgid ""
|
msgid ""
|
||||||
"This allows you to select and display existing fields. It does not duplicate "
|
"This allows you to select and display existing fields. It does not duplicate "
|
||||||
"any fields in the database, but loads and displays the selected fields at "
|
"any fields in the database, but loads and displays the selected fields at "
|
||||||
|
|
@ -721,16 +780,16 @@ msgstr ""
|
||||||
"time. Het kloon veld kan zichzelf vervangen door de geselecteerde velden of "
|
"time. Het kloon veld kan zichzelf vervangen door de geselecteerde velden of "
|
||||||
"de geselecteerde velden weergeven als een groep sub velden."
|
"de geselecteerde velden weergeven als een groep sub velden."
|
||||||
|
|
||||||
#: includes/fields.php:441
|
#: includes/fields.php:459
|
||||||
msgctxt "noun"
|
msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Kloon"
|
msgstr "Kloon"
|
||||||
|
|
||||||
#: includes/admin/views/global/navigation.php:86 includes/fields.php:356
|
#: includes/admin/views/global/navigation.php:86 includes/fields.php:374
|
||||||
msgid "PRO"
|
msgid "PRO"
|
||||||
msgstr "PRO"
|
msgstr "PRO"
|
||||||
|
|
||||||
#: includes/fields.php:354 includes/fields.php:411
|
#: includes/fields.php:372 includes/fields.php:429
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr "Geavanceerd"
|
msgstr "Geavanceerd"
|
||||||
|
|
||||||
|
|
@ -1428,7 +1487,7 @@ msgid ""
|
||||||
"custom post types."
|
"custom post types."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Breid de functionaliteit van WordPress uit tot meer dan standaard berichten "
|
"Breid de functionaliteit van WordPress uit tot meer dan standaard berichten "
|
||||||
"en pagina's met extra gepaste berichten."
|
"en pagina's met aangepaste berichttypes."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/list-empty.php:5
|
#: includes/admin/views/acf-post-type/list-empty.php:5
|
||||||
msgid "Add Your First Post Type"
|
msgid "Add Your First Post Type"
|
||||||
|
|
@ -1499,7 +1558,7 @@ msgid ""
|
||||||
"Optional custom controller to use instead of `WP_REST_Posts_Controller`."
|
"Optional custom controller to use instead of `WP_REST_Posts_Controller`."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Optionele aangepaste controller om te gebruiken in plaats van "
|
"Optionele aangepaste controller om te gebruiken in plaats van "
|
||||||
"`WP_REST_Berichten_Controller`."
|
"`WP_REST_Posts_Controller`."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:1274
|
#: includes/admin/views/acf-post-type/advanced-settings.php:1274
|
||||||
#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210
|
#: includes/admin/views/acf-taxonomy/advanced-settings.php:1210
|
||||||
|
|
@ -2031,7 +2090,7 @@ msgid ""
|
||||||
"Used by screen readers for the filter links heading on the post type list "
|
"Used by screen readers for the filter links heading on the post type list "
|
||||||
"screen."
|
"screen."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gebruikt door scherm lezers voor het koptekst filter links op het scherm van "
|
"Gebruikt door scherm lezers voor de koptekst filter links op het scherm van "
|
||||||
"de lijst met berichttypes."
|
"de lijst met berichttypes."
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:489
|
#: includes/admin/views/acf-post-type/advanced-settings.php:489
|
||||||
|
|
@ -2709,14 +2768,14 @@ msgid "Post type deleted."
|
||||||
msgstr "Berichttype verwijderd."
|
msgstr "Berichttype verwijderd."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:120
|
#: includes/admin/post-types/admin-field-group.php:120
|
||||||
#: assets/build/js/acf-field-group.js:1146
|
#: assets/build/js/acf-field-group.js:1145
|
||||||
#: assets/build/js/acf-field-group.js:1366
|
#: assets/build/js/acf-field-group.js:1366
|
||||||
msgid "Type to search..."
|
msgid "Type to search..."
|
||||||
msgstr "Typ om te zoeken..."
|
msgstr "Typ om te zoeken..."
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:105
|
#: includes/admin/post-types/admin-field-group.php:105
|
||||||
#: assets/build/js/acf-field-group.js:1172
|
#: assets/build/js/acf-field-group.js:1171
|
||||||
#: assets/build/js/acf-field-group.js:2319
|
#: assets/build/js/acf-field-group.js:2318
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1414
|
||||||
#: assets/build/js/acf-field-group.js:2727
|
#: assets/build/js/acf-field-group.js:2727
|
||||||
msgid "PRO Only"
|
msgid "PRO Only"
|
||||||
|
|
@ -2729,7 +2788,7 @@ msgid "Field groups linked successfully."
|
||||||
msgstr "Veldgroepen succesvol gelinkt."
|
msgstr "Veldgroepen succesvol gelinkt."
|
||||||
|
|
||||||
#. translators: %s - URL to ACF tools page.
|
#. translators: %s - URL to ACF tools page.
|
||||||
#: includes/admin/admin.php:195
|
#: includes/admin/admin.php:203
|
||||||
msgid ""
|
msgid ""
|
||||||
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
"Import Post Types and Taxonomies registered with Custom Post Type UI and "
|
||||||
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
"manage them with ACF. <a href=\"%s\">Get Started</a>."
|
||||||
|
|
@ -2737,7 +2796,7 @@ msgstr ""
|
||||||
"Importeer berichttypen en taxonomieën die zijn geregistreerd met extra "
|
"Importeer berichttypen en taxonomieën die zijn geregistreerd met extra "
|
||||||
"berichttype UI en beheerder ze met ACF. <a href=\"%s\">Aan de slag</a>."
|
"berichttype UI en beheerder ze met ACF. <a href=\"%s\">Aan de slag</a>."
|
||||||
|
|
||||||
#: includes/admin/admin.php:48 includes/admin/admin.php:267
|
#: includes/admin/admin.php:47 includes/admin/admin.php:332
|
||||||
msgid "ACF"
|
msgid "ACF"
|
||||||
msgstr "ACF"
|
msgstr "ACF"
|
||||||
|
|
||||||
|
|
@ -2826,7 +2885,7 @@ msgstr ""
|
||||||
"https://wpengine.com/?utm_source=wordpress."
|
"https://wpengine.com/?utm_source=wordpress."
|
||||||
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
"org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields"
|
||||||
|
|
||||||
#: includes/api/api-template.php:835
|
#: includes/api/api-template.php:1051
|
||||||
msgid "[ACF shortcode value disabled for preview]"
|
msgid "[ACF shortcode value disabled for preview]"
|
||||||
msgstr "[ACF shortcode waarde uitgeschakeld voor voorbeeld]"
|
msgstr "[ACF shortcode waarde uitgeschakeld voor voorbeeld]"
|
||||||
|
|
||||||
|
|
@ -2836,7 +2895,7 @@ msgid "Close Modal"
|
||||||
msgstr "Modal sluiten"
|
msgstr "Modal sluiten"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:96
|
#: includes/admin/post-types/admin-field-group.php:96
|
||||||
#: assets/build/js/acf-field-group.js:1670
|
#: assets/build/js/acf-field-group.js:1669
|
||||||
#: assets/build/js/acf-field-group.js:1993
|
#: assets/build/js/acf-field-group.js:1993
|
||||||
msgid "Field moved to other group"
|
msgid "Field moved to other group"
|
||||||
msgstr "Veld verplaatst naar andere groep"
|
msgstr "Veld verplaatst naar andere groep"
|
||||||
|
|
@ -2915,8 +2974,8 @@ msgid ""
|
||||||
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
"New to ACF? Take a look at our <a href=\"%s\" target=\"_blank\">getting "
|
||||||
"started guide</a>."
|
"started guide</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ben je nieuw bij ACF? Bekijk onze <a href=\"%s\" target=\"_blank"
|
"Ben je nieuw bij ACF? Bekijk onze <a href=\"%s\" "
|
||||||
"\">startersgids</a>."
|
"target=\"_blank\">startersgids</a>."
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/list-empty.php:15
|
#: includes/admin/views/acf-field-group/list-empty.php:15
|
||||||
msgid "Add Field Group"
|
msgid "Add Field Group"
|
||||||
|
|
@ -3014,16 +3073,16 @@ msgstr "#"
|
||||||
msgid "Add Field"
|
msgid "Add Field"
|
||||||
msgstr "Veld toevoegen"
|
msgstr "Veld toevoegen"
|
||||||
|
|
||||||
#: includes/acf-field-group-functions.php:496 includes/fields.php:409
|
#: includes/acf-field-group-functions.php:496 includes/fields.php:427
|
||||||
msgid "Presentation"
|
msgid "Presentation"
|
||||||
msgstr "Presentatie"
|
msgstr "Presentatie"
|
||||||
|
|
||||||
#: includes/fields.php:408
|
#: includes/fields.php:426
|
||||||
msgid "Validation"
|
msgid "Validation"
|
||||||
msgstr "Validatie"
|
msgstr "Validatie"
|
||||||
|
|
||||||
#: includes/acf-internal-post-type-functions.php:477
|
#: includes/acf-internal-post-type-functions.php:477
|
||||||
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:407
|
#: includes/acf-internal-post-type-functions.php:506 includes/fields.php:425
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Algemeen"
|
msgstr "Algemeen"
|
||||||
|
|
||||||
|
|
@ -3068,7 +3127,7 @@ msgid "Activate this item"
|
||||||
msgstr "Activeer dit item"
|
msgstr "Activeer dit item"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:92
|
#: includes/admin/post-types/admin-field-group.php:92
|
||||||
#: assets/build/js/acf-field-group.js:2812
|
#: assets/build/js/acf-field-group.js:2811
|
||||||
#: assets/build/js/acf-field-group.js:3313
|
#: assets/build/js/acf-field-group.js:3313
|
||||||
msgid "Move field group to trash?"
|
msgid "Move field group to trash?"
|
||||||
msgstr "Veldgroep naar prullenbak verplaatsen?"
|
msgstr "Veldgroep naar prullenbak verplaatsen?"
|
||||||
|
|
@ -3103,12 +3162,12 @@ msgstr ""
|
||||||
"tegelijkertijd actief zijn. We hebben Advanced Custom Fields automatisch "
|
"tegelijkertijd actief zijn. We hebben Advanced Custom Fields automatisch "
|
||||||
"gedeactiveerd."
|
"gedeactiveerd."
|
||||||
|
|
||||||
#: includes/acf-value-functions.php:374
|
#: includes/acf-value-functions.php:377
|
||||||
msgid ""
|
msgid ""
|
||||||
"<strong>%1$s</strong> - We've detected one or more calls to retrieve ACF "
|
"<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 "
|
"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"
|
"result in malformed or missing data. <a href=\"%2$s\" "
|
||||||
"\">Learn how to fix this</a>."
|
"target=\"_blank\">Learn how to fix this</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"<strong>%1$s</strong> - We hebben een of meer aanroepen gedetecteerd om ACF "
|
"<strong>%1$s</strong> - We hebben een of meer aanroepen gedetecteerd om ACF "
|
||||||
"veldwaarden op te halen voordat ACF is geïnitialiseerd. Dit wordt niet "
|
"veldwaarden op te halen voordat ACF is geïnitialiseerd. Dit wordt niet "
|
||||||
|
|
@ -3303,23 +3362,23 @@ msgstr "Diff laden"
|
||||||
msgid "Review local JSON changes"
|
msgid "Review local JSON changes"
|
||||||
msgstr "Lokale JSON wijzigingen beoordelen"
|
msgstr "Lokale JSON wijzigingen beoordelen"
|
||||||
|
|
||||||
#: includes/admin/admin.php:170
|
#: includes/admin/admin.php:178
|
||||||
msgid "Visit website"
|
msgid "Visit website"
|
||||||
msgstr "Bezoek site"
|
msgstr "Bezoek site"
|
||||||
|
|
||||||
#: includes/admin/admin.php:169
|
#: includes/admin/admin.php:177
|
||||||
msgid "View details"
|
msgid "View details"
|
||||||
msgstr "Details bekijken"
|
msgstr "Details bekijken"
|
||||||
|
|
||||||
#: includes/admin/admin.php:168
|
#: includes/admin/admin.php:176
|
||||||
msgid "Version %s"
|
msgid "Version %s"
|
||||||
msgstr "Versie %s"
|
msgstr "Versie %s"
|
||||||
|
|
||||||
#: includes/admin/admin.php:167
|
#: includes/admin/admin.php:175
|
||||||
msgid "Information"
|
msgid "Information"
|
||||||
msgstr "Informatie"
|
msgstr "Informatie"
|
||||||
|
|
||||||
#: includes/admin/admin.php:158
|
#: includes/admin/admin.php:166
|
||||||
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."
|
||||||
|
|
@ -3328,7 +3387,7 @@ msgstr ""
|
||||||
"professionals op onze helpdesk zullen je helpen met meer diepgaande, "
|
"professionals op onze helpdesk zullen je helpen met meer diepgaande, "
|
||||||
"technische uitdagingen."
|
"technische uitdagingen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:154
|
#: includes/admin/admin.php:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
"<a href=\"%s\" target=\"_blank\">Discussions</a>. We have an active and "
|
||||||
"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 "
|
||||||
|
|
@ -3338,7 +3397,7 @@ msgstr ""
|
||||||
"vriendelijke community op onze community forums die je misschien kunnen "
|
"vriendelijke community op onze community forums die je misschien kunnen "
|
||||||
"helpen met de 'how-tos' van de ACF wereld."
|
"helpen met de 'how-tos' van de ACF wereld."
|
||||||
|
|
||||||
#: includes/admin/admin.php:150
|
#: includes/admin/admin.php:158
|
||||||
msgid ""
|
msgid ""
|
||||||
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
"<a href=\"%s\" target=\"_blank\">Documentation</a>. Our extensive "
|
||||||
"documentation contains references and guides for most situations you may "
|
"documentation contains references and guides for most situations you may "
|
||||||
|
|
@ -3348,7 +3407,7 @@ msgstr ""
|
||||||
"documentatie bevat referenties en handleidingen voor de meeste situaties die "
|
"documentatie bevat referenties en handleidingen voor de meeste situaties die "
|
||||||
"je kunt tegenkomen."
|
"je kunt tegenkomen."
|
||||||
|
|
||||||
#: includes/admin/admin.php:147
|
#: includes/admin/admin.php:155
|
||||||
msgid ""
|
msgid ""
|
||||||
"We are fanatical about support, and want you to get the best out of your "
|
"We are fanatical about support, and want you to get the best out of your "
|
||||||
"website with ACF. If you run into any difficulties, there are several places "
|
"website with ACF. If you run into any difficulties, there are several places "
|
||||||
|
|
@ -3358,11 +3417,11 @@ msgstr ""
|
||||||
"site haalt. Als je problemen ondervindt, zijn er verschillende plaatsen waar "
|
"site haalt. Als je problemen ondervindt, zijn er verschillende plaatsen waar "
|
||||||
"je hulp kan vinden:"
|
"je hulp kan vinden:"
|
||||||
|
|
||||||
#: includes/admin/admin.php:144 includes/admin/admin.php:146
|
#: includes/admin/admin.php:152 includes/admin/admin.php:154
|
||||||
msgid "Help & Support"
|
msgid "Help & Support"
|
||||||
msgstr "Hulp & ondersteuning"
|
msgstr "Hulp & ondersteuning"
|
||||||
|
|
||||||
#: includes/admin/admin.php:135
|
#: includes/admin/admin.php:143
|
||||||
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."
|
||||||
|
|
@ -3370,17 +3429,17 @@ msgstr ""
|
||||||
"Gebruik de tab Hulp & ondersteuning om contact op te nemen als je hulp nodig "
|
"Gebruik de tab Hulp & ondersteuning om contact op te nemen als je hulp nodig "
|
||||||
"hebt."
|
"hebt."
|
||||||
|
|
||||||
#: includes/admin/admin.php:132
|
#: includes/admin/admin.php:140
|
||||||
msgid ""
|
msgid ""
|
||||||
"Before creating your first Field Group, we recommend first reading our <a "
|
"Before creating your first Field Group, we recommend first reading our <a "
|
||||||
"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 ""
|
||||||
"Voordat je je eerste veldgroep maakt, raden we je aan om eerst onze <a href="
|
"Voordat je je eerste veldgroep maakt, raden we je aan om eerst onze <a "
|
||||||
"\"%s\" target=\"_blank\">Aan de slag</a> gids te lezen om je vertrouwd te "
|
"href=\"%s\" target=\"_blank\">Aan de slag</a> gids te lezen om je vertrouwd "
|
||||||
"maken met de filosofie en best practices van de plugin."
|
"te maken met de filosofie en best practices van de plugin."
|
||||||
|
|
||||||
#: includes/admin/admin.php:130
|
#: includes/admin/admin.php:138
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Advanced Custom Fields plugin provides a visual form builder to "
|
"The Advanced Custom Fields plugin provides a visual form builder to "
|
||||||
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
"customize WordPress edit screens with extra fields, and an intuitive API to "
|
||||||
|
|
@ -3391,7 +3450,7 @@ msgstr ""
|
||||||
"intuïtieve API om aangepaste veldwaarden weer te geven in elk thema template "
|
"intuïtieve API om aangepaste veldwaarden weer te geven in elk thema template "
|
||||||
"bestand."
|
"bestand."
|
||||||
|
|
||||||
#: includes/admin/admin.php:127 includes/admin/admin.php:129
|
#: includes/admin/admin.php:135 includes/admin/admin.php:137
|
||||||
msgid "Overview"
|
msgid "Overview"
|
||||||
msgstr "Overzicht"
|
msgstr "Overzicht"
|
||||||
|
|
||||||
|
|
@ -3411,7 +3470,7 @@ msgstr "Ongeldige nonce."
|
||||||
msgid "Error loading field."
|
msgid "Error loading field."
|
||||||
msgstr "Fout tijdens laden van veld."
|
msgstr "Fout tijdens laden van veld."
|
||||||
|
|
||||||
#: assets/build/js/acf-input.js:2750 assets/build/js/acf-input.js:2819
|
#: assets/build/js/acf-input.js:2748 assets/build/js/acf-input.js:2817
|
||||||
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
#: assets/build/js/acf-input.js:2926 assets/build/js/acf-input.js:3000
|
||||||
msgid "Location not found: %s"
|
msgid "Location not found: %s"
|
||||||
msgstr "Locatie niet gevonden: %s"
|
msgstr "Locatie niet gevonden: %s"
|
||||||
|
|
@ -3559,7 +3618,7 @@ msgid "Show this field if"
|
||||||
msgstr "Toon dit veld als"
|
msgstr "Toon dit veld als"
|
||||||
|
|
||||||
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
#: includes/admin/views/acf-field-group/conditional-logic.php:25
|
||||||
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:410
|
#: includes/admin/views/acf-field-group/field.php:109 includes/fields.php:428
|
||||||
msgid "Conditional Logic"
|
msgid "Conditional Logic"
|
||||||
msgstr "Voorwaardelijke logica"
|
msgstr "Voorwaardelijke logica"
|
||||||
|
|
||||||
|
|
@ -3604,15 +3663,15 @@ msgstr "Database-upgrade vereist"
|
||||||
msgid "Options Page"
|
msgid "Options Page"
|
||||||
msgstr "Opties pagina"
|
msgstr "Opties pagina"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:461
|
#: includes/admin/views/upgrade/notice.php:14 includes/fields.php:479
|
||||||
msgid "Gallery"
|
msgid "Gallery"
|
||||||
msgstr "Galerij"
|
msgstr "Galerij"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:451
|
#: includes/admin/views/upgrade/notice.php:11 includes/fields.php:469
|
||||||
msgid "Flexible Content"
|
msgid "Flexible Content"
|
||||||
msgstr "Flexibele inhoud"
|
msgstr "Flexibele inhoud"
|
||||||
|
|
||||||
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:471
|
#: includes/admin/views/upgrade/notice.php:8 includes/fields.php:489
|
||||||
msgid "Repeater"
|
msgid "Repeater"
|
||||||
msgstr "Herhaler"
|
msgstr "Herhaler"
|
||||||
|
|
||||||
|
|
@ -3860,7 +3919,7 @@ msgstr "Sleep om te herschikken"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:103
|
#: includes/admin/post-types/admin-field-group.php:103
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: assets/build/js/acf-field-group.js:2347
|
#: assets/build/js/acf-field-group.js:2346
|
||||||
#: assets/build/js/acf-field-group.js:2763
|
#: assets/build/js/acf-field-group.js:2763
|
||||||
msgid "Show this field group if"
|
msgid "Show this field group if"
|
||||||
msgstr "Deze veldgroep weergeven als"
|
msgstr "Deze veldgroep weergeven als"
|
||||||
|
|
@ -4042,7 +4101,7 @@ msgstr "Dit item dupliceren"
|
||||||
msgid "Supports"
|
msgid "Supports"
|
||||||
msgstr "Ondersteunt"
|
msgstr "Ondersteunt"
|
||||||
|
|
||||||
#: includes/admin/admin.php:261 includes/admin/views/browse-fields-modal.php:92
|
#: includes/admin/admin.php:326 includes/admin/views/browse-fields-modal.php:92
|
||||||
msgid "Documentation"
|
msgid "Documentation"
|
||||||
msgstr "Documentatie"
|
msgstr "Documentatie"
|
||||||
|
|
||||||
|
|
@ -4145,7 +4204,7 @@ msgstr "Null"
|
||||||
#: includes/admin/post-types/admin-field-group.php:101
|
#: includes/admin/post-types/admin-field-group.php:101
|
||||||
#: includes/class-acf-internal-post-type.php:730
|
#: includes/class-acf-internal-post-type.php:730
|
||||||
#: includes/post-types/class-acf-field-group.php:345
|
#: includes/post-types/class-acf-field-group.php:345
|
||||||
#: assets/build/js/acf-field-group.js:1510
|
#: assets/build/js/acf-field-group.js:1509
|
||||||
#: assets/build/js/acf-field-group.js:1821
|
#: assets/build/js/acf-field-group.js:1821
|
||||||
msgid "copy"
|
msgid "copy"
|
||||||
msgstr "kopie"
|
msgstr "kopie"
|
||||||
|
|
@ -4163,7 +4222,7 @@ msgid "Checked"
|
||||||
msgstr "Aangevinkt"
|
msgstr "Aangevinkt"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:94
|
#: includes/admin/post-types/admin-field-group.php:94
|
||||||
#: assets/build/js/acf-field-group.js:1615
|
#: assets/build/js/acf-field-group.js:1614
|
||||||
#: assets/build/js/acf-field-group.js:1933
|
#: assets/build/js/acf-field-group.js:1933
|
||||||
msgid "Move Custom Field"
|
msgid "Move Custom Field"
|
||||||
msgstr "Aangepast veld verplaatsen"
|
msgstr "Aangepast veld verplaatsen"
|
||||||
|
|
@ -4179,14 +4238,14 @@ msgid "Field group title is required"
|
||||||
msgstr "Veldgroep titel is vereist"
|
msgstr "Veldgroep titel is vereist"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:90
|
#: includes/admin/post-types/admin-field-group.php:90
|
||||||
#: assets/build/js/acf-field-group.js:1604
|
#: assets/build/js/acf-field-group.js:1603
|
||||||
#: assets/build/js/acf-field-group.js:1919
|
#: assets/build/js/acf-field-group.js:1919
|
||||||
msgid "This field cannot be moved until its changes have been saved"
|
msgid "This field cannot be moved until its changes have been saved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dit veld kan niet worden verplaatst totdat de wijzigingen zijn opgeslagen"
|
"Dit veld kan niet worden verplaatst totdat de wijzigingen zijn opgeslagen"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:89
|
#: includes/admin/post-types/admin-field-group.php:89
|
||||||
#: assets/build/js/acf-field-group.js:1414
|
#: assets/build/js/acf-field-group.js:1413
|
||||||
#: assets/build/js/acf-field-group.js:1716
|
#: assets/build/js/acf-field-group.js:1716
|
||||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||||
msgstr "De string \"field_\" mag niet voor de veldnaam staan"
|
msgstr "De string \"field_\" mag niet voor de veldnaam staan"
|
||||||
|
|
@ -4253,15 +4312,15 @@ msgstr "Pagina"
|
||||||
msgid "Post"
|
msgid "Post"
|
||||||
msgstr "Bericht"
|
msgstr "Bericht"
|
||||||
|
|
||||||
#: includes/fields.php:353
|
#: includes/fields.php:371
|
||||||
msgid "Relational"
|
msgid "Relational"
|
||||||
msgstr "Relationeel"
|
msgstr "Relationeel"
|
||||||
|
|
||||||
#: includes/fields.php:352
|
#: includes/fields.php:370
|
||||||
msgid "Choice"
|
msgid "Choice"
|
||||||
msgstr "Keuze"
|
msgstr "Keuze"
|
||||||
|
|
||||||
#: includes/fields.php:350
|
#: includes/fields.php:368
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Basis"
|
msgstr "Basis"
|
||||||
|
|
||||||
|
|
@ -4289,7 +4348,7 @@ msgstr "Updaten"
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr "E-mailadres valideren"
|
msgstr "E-mailadres valideren"
|
||||||
|
|
||||||
#: includes/fields.php:351 includes/forms/form-front.php:49
|
#: includes/fields.php:369 includes/forms/form-front.php:49
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Inhoud"
|
msgstr "Inhoud"
|
||||||
|
|
||||||
|
|
@ -4298,8 +4357,8 @@ msgstr "Inhoud"
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: includes/assets.php:372 includes/forms/form-comment.php:154
|
#: includes/assets.php:373 includes/forms/form-comment.php:154
|
||||||
#: assets/build/js/acf-input.js:7372 assets/build/js/acf-input.js:7956
|
#: assets/build/js/acf-input.js:7370 assets/build/js/acf-input.js:7956
|
||||||
msgid "Edit field group"
|
msgid "Edit field group"
|
||||||
msgstr "Veldgroep bewerken"
|
msgstr "Veldgroep bewerken"
|
||||||
|
|
||||||
|
|
@ -4356,59 +4415,59 @@ msgid "Has any value"
|
||||||
msgstr "Heeft een waarde"
|
msgstr "Heeft een waarde"
|
||||||
|
|
||||||
#: includes/admin/admin-internal-post-type.php:345
|
#: includes/admin/admin-internal-post-type.php:345
|
||||||
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:353
|
#: includes/admin/views/browse-fields-modal.php:62 includes/assets.php:354
|
||||||
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
#: assets/build/js/acf.js:1564 assets/build/js/acf.js:1658
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Annuleren"
|
msgstr "Annuleren"
|
||||||
|
|
||||||
#: includes/assets.php:349 assets/build/js/acf.js:1738
|
#: includes/assets.php:350 assets/build/js/acf.js:1738
|
||||||
#: assets/build/js/acf.js:1855
|
#: assets/build/js/acf.js:1855
|
||||||
msgid "Are you sure?"
|
msgid "Are you sure?"
|
||||||
msgstr "Weet je het zeker?"
|
msgstr "Weet je het zeker?"
|
||||||
|
|
||||||
#: includes/assets.php:369 assets/build/js/acf-input.js:9432
|
#: includes/assets.php:370 assets/build/js/acf-input.js:9430
|
||||||
#: assets/build/js/acf-input.js:10282
|
#: assets/build/js/acf-input.js:10282
|
||||||
msgid "%d fields require attention"
|
msgid "%d fields require attention"
|
||||||
msgstr "%d velden vereisen aandacht"
|
msgstr "%d velden vereisen aandacht"
|
||||||
|
|
||||||
#: includes/assets.php:368 assets/build/js/acf-input.js:9430
|
#: includes/assets.php:369 assets/build/js/acf-input.js:9428
|
||||||
#: assets/build/js/acf-input.js:10278
|
#: assets/build/js/acf-input.js:10278
|
||||||
msgid "1 field requires attention"
|
msgid "1 field requires attention"
|
||||||
msgstr "1 veld vereist aandacht"
|
msgstr "1 veld vereist aandacht"
|
||||||
|
|
||||||
#: includes/assets.php:367 includes/validation.php:271
|
#: includes/assets.php:368 includes/validation.php:271
|
||||||
#: includes/validation.php:279 assets/build/js/acf-input.js:9425
|
#: includes/validation.php:279 assets/build/js/acf-input.js:9423
|
||||||
#: assets/build/js/acf-input.js:10273
|
#: assets/build/js/acf-input.js:10273
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Validatie mislukt"
|
msgstr "Validatie mislukt"
|
||||||
|
|
||||||
#: includes/assets.php:366 assets/build/js/acf-input.js:9593
|
#: includes/assets.php:367 assets/build/js/acf-input.js:9591
|
||||||
#: assets/build/js/acf-input.js:10461
|
#: assets/build/js/acf-input.js:10461
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validatie geslaagd"
|
msgstr "Validatie geslaagd"
|
||||||
|
|
||||||
#: includes/media.php:54 assets/build/js/acf-input.js:7200
|
#: includes/media.php:54 assets/build/js/acf-input.js:7198
|
||||||
#: assets/build/js/acf-input.js:7760
|
#: assets/build/js/acf-input.js:7760
|
||||||
msgid "Restricted"
|
msgid "Restricted"
|
||||||
msgstr "Beperkt"
|
msgstr "Beperkt"
|
||||||
|
|
||||||
#: includes/media.php:53 assets/build/js/acf-input.js:7015
|
#: includes/media.php:53 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7524
|
#: assets/build/js/acf-input.js:7524
|
||||||
msgid "Collapse Details"
|
msgid "Collapse Details"
|
||||||
msgstr "Details dichtklappen"
|
msgstr "Details dichtklappen"
|
||||||
|
|
||||||
#: includes/media.php:52 assets/build/js/acf-input.js:7015
|
#: includes/media.php:52 assets/build/js/acf-input.js:7013
|
||||||
#: assets/build/js/acf-input.js:7521
|
#: assets/build/js/acf-input.js:7521
|
||||||
msgid "Expand Details"
|
msgid "Expand Details"
|
||||||
msgstr "Details uitklappen"
|
msgstr "Details uitklappen"
|
||||||
|
|
||||||
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
#: includes/admin/views/acf-post-type/advanced-settings.php:470
|
||||||
#: includes/media.php:51 assets/build/js/acf-input.js:6882
|
#: includes/media.php:51 assets/build/js/acf-input.js:6880
|
||||||
#: assets/build/js/acf-input.js:7369
|
#: assets/build/js/acf-input.js:7369
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Geüpload naar dit bericht"
|
msgstr "Geüpload naar dit bericht"
|
||||||
|
|
||||||
#: includes/media.php:50 assets/build/js/acf-input.js:6921
|
#: includes/media.php:50 assets/build/js/acf-input.js:6919
|
||||||
#: assets/build/js/acf-input.js:7408
|
#: assets/build/js/acf-input.js:7408
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
|
|
@ -4419,7 +4478,7 @@ msgctxt "verb"
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Bewerken"
|
msgstr "Bewerken"
|
||||||
|
|
||||||
#: includes/assets.php:363 assets/build/js/acf-input.js:9202
|
#: includes/assets.php:364 assets/build/js/acf-input.js:9200
|
||||||
#: assets/build/js/acf-input.js:10044
|
#: assets/build/js/acf-input.js:10044
|
||||||
msgid "The changes you made will be lost if you navigate away from this page"
|
msgid "The changes you made will be lost if you navigate away from this page"
|
||||||
msgstr "De aangebrachte wijzigingen gaan verloren als je deze pagina verlaat"
|
msgstr "De aangebrachte wijzigingen gaan verloren als je deze pagina verlaat"
|
||||||
|
|
@ -4434,7 +4493,7 @@ msgstr "Het bestandstype moet %s zijn."
|
||||||
#: includes/admin/views/acf-field-group/location-group.php:3
|
#: includes/admin/views/acf-field-group/location-group.php:3
|
||||||
#: includes/admin/views/acf-field-group/locations.php:35
|
#: includes/admin/views/acf-field-group/locations.php:35
|
||||||
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
#: includes/api/api-helpers.php:2964 assets/build/js/acf-field-group.js:771
|
||||||
#: assets/build/js/acf-field-group.js:2385
|
#: assets/build/js/acf-field-group.js:2384
|
||||||
#: assets/build/js/acf-field-group.js:933
|
#: assets/build/js/acf-field-group.js:933
|
||||||
#: assets/build/js/acf-field-group.js:2807
|
#: assets/build/js/acf-field-group.js:2807
|
||||||
msgid "or"
|
msgid "or"
|
||||||
|
|
@ -4486,7 +4545,7 @@ msgstr "Thumbnail"
|
||||||
|
|
||||||
#: includes/acf-field-functions.php:852
|
#: includes/acf-field-functions.php:852
|
||||||
#: includes/admin/post-types/admin-field-group.php:99
|
#: includes/admin/post-types/admin-field-group.php:99
|
||||||
#: assets/build/js/acf-field-group.js:1077
|
#: assets/build/js/acf-field-group.js:1076
|
||||||
#: assets/build/js/acf-field-group.js:1260
|
#: assets/build/js/acf-field-group.js:1260
|
||||||
msgid "(no label)"
|
msgid "(no label)"
|
||||||
msgstr "(geen label)"
|
msgstr "(geen label)"
|
||||||
|
|
@ -4718,18 +4777,18 @@ msgid "File name"
|
||||||
msgstr "Bestandsnaam"
|
msgstr "Bestandsnaam"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:63
|
#: includes/fields/class-acf-field-file.php:63
|
||||||
#: assets/build/js/acf-input.js:2474 assets/build/js/acf-input.js:2625
|
#: assets/build/js/acf-input.js:2472 assets/build/js/acf-input.js:2625
|
||||||
msgid "Update File"
|
msgid "Update File"
|
||||||
msgstr "Bestand updaten"
|
msgstr "Bestand updaten"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-file.php:62
|
#: includes/fields/class-acf-field-file.php:62
|
||||||
#: assets/build/js/acf-input.js:2473 assets/build/js/acf-input.js:2624
|
#: assets/build/js/acf-input.js:2471 assets/build/js/acf-input.js:2624
|
||||||
msgid "Edit File"
|
msgid "Edit File"
|
||||||
msgstr "Bestand bewerken"
|
msgstr "Bestand bewerken"
|
||||||
|
|
||||||
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
#: includes/admin/tools/class-acf-admin-tool-import.php:57
|
||||||
#: includes/fields/class-acf-field-file.php:61
|
#: includes/fields/class-acf-field-file.php:61
|
||||||
#: assets/build/js/acf-input.js:2447 assets/build/js/acf-input.js:2597
|
#: assets/build/js/acf-input.js:2445 assets/build/js/acf-input.js:2597
|
||||||
msgid "Select File"
|
msgid "Select File"
|
||||||
msgstr "Bestand selecteren"
|
msgstr "Bestand selecteren"
|
||||||
|
|
||||||
|
|
@ -4755,7 +4814,7 @@ msgid "Enter each default value on a new line"
|
||||||
msgstr "Zet elke standaardwaarde op een nieuwe regel"
|
msgstr "Zet elke standaardwaarde op een nieuwe regel"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
#: includes/fields/class-acf-field-select.php:243 includes/media.php:48
|
||||||
#: assets/build/js/acf-input.js:6780 assets/build/js/acf-input.js:7254
|
#: assets/build/js/acf-input.js:6778 assets/build/js/acf-input.js:7254
|
||||||
msgctxt "verb"
|
msgctxt "verb"
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Selecteren"
|
msgstr "Selecteren"
|
||||||
|
|
@ -5110,48 +5169,48 @@ msgstr "Null toestaan"
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Hoofd"
|
msgstr "Hoofd"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:378
|
#: includes/fields/class-acf-field-wysiwyg.php:381
|
||||||
msgid "TinyMCE will not be initialized until field is clicked"
|
msgid "TinyMCE will not be initialized until field is clicked"
|
||||||
msgstr "TinyMCE wordt niet geïnitialiseerd totdat er op het veld wordt geklikt"
|
msgstr "TinyMCE wordt niet geïnitialiseerd totdat er op het veld wordt geklikt"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:377
|
#: includes/fields/class-acf-field-wysiwyg.php:380
|
||||||
msgid "Delay Initialization"
|
msgid "Delay Initialization"
|
||||||
msgstr "Initialisatie uitstellen"
|
msgstr "Initialisatie uitstellen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:366
|
#: includes/fields/class-acf-field-wysiwyg.php:369
|
||||||
msgid "Show Media Upload Buttons"
|
msgid "Show Media Upload Buttons"
|
||||||
msgstr "Media upload knoppen weergeven"
|
msgstr "Media upload knoppen weergeven"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:350
|
#: includes/fields/class-acf-field-wysiwyg.php:353
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Toolbar"
|
msgstr "Toolbar"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:342
|
#: includes/fields/class-acf-field-wysiwyg.php:345
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Alleen tekst"
|
msgstr "Alleen tekst"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:341
|
#: includes/fields/class-acf-field-wysiwyg.php:344
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Alleen visueel"
|
msgstr "Alleen visueel"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:340
|
#: includes/fields/class-acf-field-wysiwyg.php:343
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visueel & tekst"
|
msgstr "Visueel & tekst"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:335
|
#: includes/fields/class-acf-field-wysiwyg.php:338
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Tabs"
|
msgstr "Tabs"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:277
|
#: includes/fields/class-acf-field-wysiwyg.php:280
|
||||||
msgid "Click to initialize TinyMCE"
|
msgid "Click to initialize TinyMCE"
|
||||||
msgstr "Klik om TinyMCE te initialiseren"
|
msgstr "Klik om TinyMCE te initialiseren"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:271
|
#: includes/fields/class-acf-field-wysiwyg.php:274
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst"
|
msgstr "Tekst"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:270
|
#: includes/fields/class-acf-field-wysiwyg.php:273
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visueel"
|
msgstr "Visueel"
|
||||||
|
|
||||||
|
|
@ -5228,7 +5287,7 @@ msgstr "Plaatshouder tekst"
|
||||||
#: includes/fields/class-acf-field-text.php:104
|
#: includes/fields/class-acf-field-text.php:104
|
||||||
#: includes/fields/class-acf-field-textarea.php:102
|
#: includes/fields/class-acf-field-textarea.php:102
|
||||||
#: includes/fields/class-acf-field-url.php:100
|
#: includes/fields/class-acf-field-url.php:100
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:303
|
#: includes/fields/class-acf-field-wysiwyg.php:306
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Wordt weergegeven bij het maken van een nieuw bericht"
|
msgstr "Wordt weergegeven bij het maken van een nieuw bericht"
|
||||||
|
|
||||||
|
|
@ -5329,17 +5388,17 @@ msgid "Select post type"
|
||||||
msgstr "Selecteer berichttype"
|
msgstr "Selecteer berichttype"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:60
|
#: includes/fields/class-acf-field-relationship.php:60
|
||||||
#: assets/build/js/acf-input.js:3930 assets/build/js/acf-input.js:4214
|
#: assets/build/js/acf-input.js:3928 assets/build/js/acf-input.js:4214
|
||||||
msgid "No matches found"
|
msgid "No matches found"
|
||||||
msgstr "Geen overeenkomsten gevonden"
|
msgstr "Geen overeenkomsten gevonden"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:59
|
#: includes/fields/class-acf-field-relationship.php:59
|
||||||
#: assets/build/js/acf-input.js:3913 assets/build/js/acf-input.js:4193
|
#: assets/build/js/acf-input.js:3911 assets/build/js/acf-input.js:4193
|
||||||
msgid "Loading"
|
msgid "Loading"
|
||||||
msgstr "Laden"
|
msgstr "Laden"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-relationship.php:58
|
#: includes/fields/class-acf-field-relationship.php:58
|
||||||
#: assets/build/js/acf-input.js:3818 assets/build/js/acf-input.js:4084
|
#: assets/build/js/acf-input.js:3816 assets/build/js/acf-input.js:4084
|
||||||
msgid "Maximum values reached ( {max} values )"
|
msgid "Maximum values reached ( {max} values )"
|
||||||
msgstr "Maximale waarden bereikt ( {max} waarden )"
|
msgstr "Maximale waarden bereikt ( {max} waarden )"
|
||||||
|
|
||||||
|
|
@ -5448,7 +5507,7 @@ msgstr "Afbeelding toevoegen"
|
||||||
msgid "No image selected"
|
msgid "No image selected"
|
||||||
msgstr "Geen afbeelding geselecteerd"
|
msgstr "Geen afbeelding geselecteerd"
|
||||||
|
|
||||||
#: includes/assets.php:352 includes/fields/class-acf-field-file.php:161
|
#: includes/assets.php:353 includes/fields/class-acf-field-file.php:161
|
||||||
#: includes/fields/class-acf-field-image.php:141
|
#: includes/fields/class-acf-field-image.php:141
|
||||||
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
#: includes/fields/class-acf-field-link.php:139 assets/build/js/acf.js:1563
|
||||||
#: assets/build/js/acf.js:1657
|
#: assets/build/js/acf.js:1657
|
||||||
|
|
@ -5463,22 +5522,22 @@ msgid "Edit"
|
||||||
msgstr "Bewerken"
|
msgstr "Bewerken"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
#: includes/fields/class-acf-field-image.php:69 includes/media.php:55
|
||||||
#: assets/build/js/acf-input.js:6827 assets/build/js/acf-input.js:7308
|
#: assets/build/js/acf-input.js:6825 assets/build/js/acf-input.js:7308
|
||||||
msgid "All images"
|
msgid "All images"
|
||||||
msgstr "Alle afbeeldingen"
|
msgstr "Alle afbeeldingen"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:68
|
#: includes/fields/class-acf-field-image.php:68
|
||||||
#: assets/build/js/acf-input.js:3181 assets/build/js/acf-input.js:3399
|
#: assets/build/js/acf-input.js:3179 assets/build/js/acf-input.js:3399
|
||||||
msgid "Update Image"
|
msgid "Update Image"
|
||||||
msgstr "Afbeelding updaten"
|
msgstr "Afbeelding updaten"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:67
|
#: includes/fields/class-acf-field-image.php:67
|
||||||
#: assets/build/js/acf-input.js:3180 assets/build/js/acf-input.js:3398
|
#: assets/build/js/acf-input.js:3178 assets/build/js/acf-input.js:3398
|
||||||
msgid "Edit Image"
|
msgid "Edit Image"
|
||||||
msgstr "Afbeelding bewerken"
|
msgstr "Afbeelding bewerken"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:66
|
#: includes/fields/class-acf-field-image.php:66
|
||||||
#: assets/build/js/acf-input.js:3156 assets/build/js/acf-input.js:3373
|
#: assets/build/js/acf-input.js:3154 assets/build/js/acf-input.js:3373
|
||||||
msgid "Select Image"
|
msgid "Select Image"
|
||||||
msgstr "Selecteer afbeelding"
|
msgstr "Selecteer afbeelding"
|
||||||
|
|
||||||
|
|
@ -5565,16 +5624,16 @@ msgstr "Datumkiezer"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-image.php:247
|
#: includes/fields/class-acf-field-image.php:247
|
||||||
#: includes/fields/class-acf-field-image.php:283
|
#: includes/fields/class-acf-field-image.php:283
|
||||||
#: includes/fields/class-acf-field-oembed.php:263
|
#: includes/fields/class-acf-field-oembed.php:266
|
||||||
msgid "Width"
|
msgid "Width"
|
||||||
msgstr "Breedte"
|
msgstr "Breedte"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:260
|
#: includes/fields/class-acf-field-oembed.php:263
|
||||||
#: includes/fields/class-acf-field-oembed.php:272
|
#: includes/fields/class-acf-field-oembed.php:275
|
||||||
msgid "Embed Size"
|
msgid "Embed Size"
|
||||||
msgstr "Insluit grootte"
|
msgstr "Insluit grootte"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-oembed.php:218
|
#: includes/fields/class-acf-field-oembed.php:221
|
||||||
msgid "Enter URL"
|
msgid "Enter URL"
|
||||||
msgstr "URL invoeren"
|
msgstr "URL invoeren"
|
||||||
|
|
||||||
|
|
@ -5615,7 +5674,7 @@ msgstr "Gestileerde UI"
|
||||||
#: includes/fields/class-acf-field-textarea.php:101
|
#: includes/fields/class-acf-field-textarea.php:101
|
||||||
#: includes/fields/class-acf-field-true_false.php:144
|
#: includes/fields/class-acf-field-true_false.php:144
|
||||||
#: includes/fields/class-acf-field-url.php:99
|
#: includes/fields/class-acf-field-url.php:99
|
||||||
#: includes/fields/class-acf-field-wysiwyg.php:302
|
#: includes/fields/class-acf-field-wysiwyg.php:305
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Standaardwaarde"
|
msgstr "Standaardwaarde"
|
||||||
|
|
||||||
|
|
@ -5629,13 +5688,13 @@ msgstr "Toont tekst naast het selectievakje"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Bericht"
|
msgstr "Bericht"
|
||||||
|
|
||||||
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:85
|
#: includes/assets.php:352 includes/fields/class-acf-field-true_false.php:85
|
||||||
#: includes/fields/class-acf-field-true_false.php:184
|
#: includes/fields/class-acf-field-true_false.php:184
|
||||||
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
#: assets/build/js/acf.js:1740 assets/build/js/acf.js:1857
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nee"
|
msgstr "Nee"
|
||||||
|
|
||||||
#: includes/assets.php:350 includes/fields/class-acf-field-true_false.php:82
|
#: includes/assets.php:351 includes/fields/class-acf-field-true_false.php:82
|
||||||
#: includes/fields/class-acf-field-true_false.php:168
|
#: includes/fields/class-acf-field-true_false.php:168
|
||||||
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
#: assets/build/js/acf.js:1739 assets/build/js/acf.js:1856
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
|
|
@ -5645,32 +5704,32 @@ msgstr "Ja"
|
||||||
msgid "True / False"
|
msgid "True / False"
|
||||||
msgstr "True / False"
|
msgstr "True / False"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:444
|
#: includes/fields/class-acf-field-group.php:440
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Rij"
|
msgstr "Rij"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:443
|
#: includes/fields/class-acf-field-group.php:439
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabel"
|
msgstr "Tabel"
|
||||||
|
|
||||||
#: includes/admin/post-types/admin-field-group.php:132
|
#: includes/admin/post-types/admin-field-group.php:132
|
||||||
#: includes/fields/class-acf-field-group.php:442
|
#: includes/fields/class-acf-field-group.php:438
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Blok"
|
msgstr "Blok"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:437
|
#: includes/fields/class-acf-field-group.php:433
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Geef de stijl op die wordt gebruikt om de geselecteerde velden weer te geven"
|
"Geef de stijl op die wordt gebruikt om de geselecteerde velden weer te geven"
|
||||||
|
|
||||||
#: includes/fields.php:355 includes/fields/class-acf-field-button-group.php:210
|
#: includes/fields.php:373 includes/fields/class-acf-field-button-group.php:210
|
||||||
#: includes/fields/class-acf-field-checkbox.php:424
|
#: includes/fields/class-acf-field-checkbox.php:424
|
||||||
#: includes/fields/class-acf-field-group.php:436
|
#: includes/fields/class-acf-field-group.php:432
|
||||||
#: includes/fields/class-acf-field-radio.php:285
|
#: includes/fields/class-acf-field-radio.php:285
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Lay-out"
|
msgstr "Lay-out"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-group.php:420
|
#: includes/fields/class-acf-field-group.php:416
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subvelden"
|
msgstr "Subvelden"
|
||||||
|
|
||||||
|
|
@ -5685,7 +5744,7 @@ msgstr "De kaarthoogte aanpassen"
|
||||||
#: includes/fields/class-acf-field-google-map.php:233
|
#: includes/fields/class-acf-field-google-map.php:233
|
||||||
#: includes/fields/class-acf-field-image.php:258
|
#: includes/fields/class-acf-field-image.php:258
|
||||||
#: includes/fields/class-acf-field-image.php:294
|
#: includes/fields/class-acf-field-image.php:294
|
||||||
#: includes/fields/class-acf-field-oembed.php:275
|
#: includes/fields/class-acf-field-oembed.php:278
|
||||||
msgid "Height"
|
msgid "Height"
|
||||||
msgstr "Hoogte"
|
msgstr "Hoogte"
|
||||||
|
|
||||||
|
|
@ -5725,7 +5784,7 @@ msgid "Search"
|
||||||
msgstr "Zoeken"
|
msgstr "Zoeken"
|
||||||
|
|
||||||
#: includes/fields/class-acf-field-google-map.php:63
|
#: includes/fields/class-acf-field-google-map.php:63
|
||||||
#: assets/build/js/acf-input.js:2840 assets/build/js/acf-input.js:3026
|
#: assets/build/js/acf-input.js:2838 assets/build/js/acf-input.js:3026
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Deze browser ondersteunt geen geolocatie"
|
msgstr "Deze browser ondersteunt geen geolocatie"
|
||||||
|
|
||||||
|
|
@ -5926,9 +5985,9 @@ msgstr "Opties bijgewerkt"
|
||||||
|
|
||||||
#: pro/updates.php:99
|
#: pro/updates.php:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"To enable updates, please enter your license key on the <a href=\"%1$s"
|
"To enable updates, please enter your license key on the <a "
|
||||||
"\">Updates</a> page. If you don't have a licence key, please see <a href="
|
"href=\"%1$s\">Updates</a> page. If you don't have a licence key, please see "
|
||||||
"\"%2$s\" target=\"_blank\">details & pricing</a>."
|
"<a href=\"%2$s\" target=\"_blank\">details & pricing</a>."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/updates.php:159
|
#: pro/updates.php:159
|
||||||
|
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue