5.6.9
This commit is contained in:
parent
d5e08f9449
commit
930d473537
155
acf.php
155
acf.php
|
|
@ -3,7 +3,7 @@
|
|||
Plugin Name: Advanced Custom Fields PRO
|
||||
Plugin URI: https://www.advancedcustomfields.com/
|
||||
Description: Customise WordPress with powerful, professional and intuitive fields.
|
||||
Version: 5.6.7
|
||||
Version: 5.6.9
|
||||
Author: Elliot Condon
|
||||
Author URI: http://www.elliotcondon.com/
|
||||
Copyright: Elliot Condon
|
||||
|
|
@ -18,12 +18,17 @@ if( ! class_exists('ACF') ) :
|
|||
class ACF {
|
||||
|
||||
/** @var string The plugin version number */
|
||||
var $version = '5.6.7';
|
||||
|
||||
var $version = '5.6.9';
|
||||
|
||||
/** @var array The plugin settings array */
|
||||
var $settings = array();
|
||||
|
||||
/** @var array The plugin data array */
|
||||
var $data = array();
|
||||
|
||||
/** @var array Storage for class instances */
|
||||
var $instances = array();
|
||||
|
||||
|
||||
/*
|
||||
* __construct
|
||||
|
|
@ -136,7 +141,6 @@ class ACF {
|
|||
acf_include('includes/loop.php');
|
||||
acf_include('includes/media.php');
|
||||
acf_include('includes/revisions.php');
|
||||
acf_include('includes/third_party.php');
|
||||
acf_include('includes/updates.php');
|
||||
acf_include('includes/validation.php');
|
||||
|
||||
|
|
@ -227,12 +231,18 @@ class ACF {
|
|||
// textdomain
|
||||
$this->load_plugin_textdomain();
|
||||
|
||||
// include 3rd party support
|
||||
acf_include('includes/third-party.php');
|
||||
|
||||
// include wpml support
|
||||
if( defined('ICL_SITEPRESS_VERSION') ) {
|
||||
acf_include('includes/wpml.php');
|
||||
}
|
||||
|
||||
// include gutenberg
|
||||
if( defined('GUTENBERG_VERSION') ) {
|
||||
acf_include('includes/forms/form-gutenberg.php');
|
||||
}
|
||||
|
||||
// fields
|
||||
acf_include('includes/fields/class-acf-field-text.php');
|
||||
|
|
@ -554,60 +564,125 @@ class ACF {
|
|||
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* get_setting
|
||||
/**
|
||||
* has_setting
|
||||
*
|
||||
* This function will return a value from the settings array found in the acf object
|
||||
* Returns true if has setting.
|
||||
*
|
||||
* @type function
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param $name (string) the setting name to return
|
||||
* @param $value (mixed) default value
|
||||
* @return $value
|
||||
* @param string $name
|
||||
* @return boolean
|
||||
*/
|
||||
|
||||
function get_setting( $name, $value = null ) {
|
||||
|
||||
// check settings
|
||||
if( isset($this->settings[ $name ]) ) {
|
||||
$value = $this->settings[ $name ];
|
||||
}
|
||||
|
||||
|
||||
// filter
|
||||
if( substr($name, 0, 1) !== '_' ) {
|
||||
$value = apply_filters( "acf/settings/{$name}", $value );
|
||||
}
|
||||
|
||||
|
||||
// return
|
||||
return $value;
|
||||
|
||||
function has_setting( $name ) {
|
||||
return isset($this->settings[ $name ]);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* update_setting
|
||||
/**
|
||||
* get_setting
|
||||
*
|
||||
* This function will update a value into the settings array found in the acf object
|
||||
* Returns a setting.
|
||||
*
|
||||
* @type function
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param $name (string)
|
||||
* @param $value (mixed)
|
||||
* @param string $name
|
||||
* @return mixed
|
||||
*/
|
||||
|
||||
function get_setting( $name ) {
|
||||
return isset($this->settings[ $name ]) ? $this->settings[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* update_setting
|
||||
*
|
||||
* Updates a setting.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name
|
||||
* @param mixed $value
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function update_setting( $name, $value ) {
|
||||
|
||||
$this->settings[ $name ] = $value;
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* get_data
|
||||
*
|
||||
* Returns data.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name
|
||||
* @return mixed
|
||||
*/
|
||||
|
||||
function get_data( $name ) {
|
||||
return isset($this->data[ $name ]) ? $this->data[ $name ] : null;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* set_data
|
||||
*
|
||||
* Sets data.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name
|
||||
* @param mixed $value
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function set_data( $name, $value ) {
|
||||
$this->data[ $name ] = $value;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* get_instance
|
||||
*
|
||||
* Returns an instance.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param string $class The instance class name.
|
||||
* @return object
|
||||
*/
|
||||
|
||||
function get_instance( $class ) {
|
||||
$name = strtolower($class);
|
||||
return isset($this->instances[ $name ]) ? $this->instances[ $name ] : null;
|
||||
}
|
||||
|
||||
/**
|
||||
* new_instance
|
||||
*
|
||||
* Creates and stores an instance.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param string $class The instance class name.
|
||||
* @return object
|
||||
*/
|
||||
|
||||
function new_instance( $class ) {
|
||||
$instance = new $class();
|
||||
$name = strtolower($class);
|
||||
$this->instances[ $name ] = $instance;
|
||||
return $instance;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -788,9 +788,15 @@ html[dir="rtl"] ul.acf-checkbox-list input[type="radio"] {
|
|||
.acf-button-group label:first-child {
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
html[dir="rtl"] .acf-button-group label:first-child {
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
.acf-button-group label:last-child {
|
||||
border-radius: 0 3px 3px 0;
|
||||
}
|
||||
html[dir="rtl"] .acf-button-group label:last-child {
|
||||
border-radius: 3px 0 0 3px;
|
||||
}
|
||||
.acf-button-group label:only-child {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
|
@ -2659,3 +2665,19 @@ p.submit .acf-spinner {
|
|||
.acf-postbox.acf-hidden {
|
||||
display: none !important;
|
||||
}
|
||||
/*--------------------------------------------------------------------------------------------
|
||||
*
|
||||
* Gutenberg
|
||||
*
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
#editor .editor-meta-boxes-area {
|
||||
max-width: 80%;
|
||||
}
|
||||
#editor .editor-meta-boxes-area .postbox {
|
||||
border: #e2e4e7 solid 1px;
|
||||
border-bottom: none;
|
||||
margin: 20px 0;
|
||||
}
|
||||
#editor .editor-meta-boxes-area input {
|
||||
max-width: none;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3508,6 +3508,7 @@ var acf;
|
|||
actions: {
|
||||
'ready': 'ready',
|
||||
'change': 'on',
|
||||
'submit': 'off'
|
||||
},
|
||||
|
||||
ready: function(){
|
||||
|
|
@ -4085,6 +4086,65 @@ var acf;
|
|||
};
|
||||
|
||||
|
||||
/**
|
||||
* acf.lock
|
||||
*
|
||||
* Creates a lock on an element
|
||||
*
|
||||
* @date 22/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
acf.lock = function( $el, type, key ){
|
||||
var locks = getLocks( $el, type );
|
||||
var i = locks.indexOf(key);
|
||||
if( i < 0 ) {
|
||||
locks.push( key );
|
||||
setLocks( $el, type, locks );
|
||||
}
|
||||
};
|
||||
|
||||
acf.unlock = function( $el, type, key ){
|
||||
var locks = getLocks( $el, type );
|
||||
var i = locks.indexOf(key);
|
||||
if( i > -1 ) {
|
||||
locks.splice(i, 1);
|
||||
setLocks( $el, type, locks );
|
||||
}
|
||||
};
|
||||
|
||||
acf.isLocked = function( $el, type ){
|
||||
return ( getLocks( $el, type ).length > 0 );
|
||||
};
|
||||
|
||||
var getLocks = function( $el, type ){
|
||||
return $el.data('acf-lock-'+type) || [];
|
||||
};
|
||||
|
||||
var setLocks = function( $el, type, locks ){
|
||||
$el.data('acf-lock-'+type, locks);
|
||||
}
|
||||
|
||||
/*
|
||||
$(document).ready(function(){
|
||||
|
||||
var $el = $('#page_template');
|
||||
|
||||
console.log( 'isLocked', acf.isLocked($el, 'visible') );
|
||||
console.log( 'getLocks', getLocks($el, 'visible') );
|
||||
|
||||
console.log( 'lock', acf.lock($el, 'visible', 'me') );
|
||||
console.log( 'getLocks', getLocks($el, 'visible') );
|
||||
console.log( 'isLocked', acf.isLocked($el, 'visible') );
|
||||
|
||||
console.log( 'unlock', acf.unlock($el, 'visible', 'me') );
|
||||
console.log( 'isLocked', acf.isLocked($el, 'visible') );
|
||||
|
||||
});
|
||||
*/
|
||||
|
||||
/*
|
||||
* Sortable
|
||||
|
|
@ -4340,6 +4400,8 @@ var acf;
|
|||
// bail early if not active
|
||||
if( !this.active ) return;
|
||||
|
||||
// bail early if not for post
|
||||
if( acf.get('screen') !== 'post' ) return;
|
||||
|
||||
// bail early if no ajax
|
||||
if( !acf.get('ajax') ) return;
|
||||
|
|
@ -4877,8 +4939,9 @@ var acf;
|
|||
|
||||
(function($, undefined){
|
||||
|
||||
// vars
|
||||
var hidden = 'hidden-by-conditional-logic';
|
||||
// constants
|
||||
var CLASS = 'hidden-by-conditional-logic';
|
||||
var CONTEXT = 'conditional_logic';
|
||||
|
||||
// model
|
||||
var conditionalLogic = acf.conditional_logic = acf.model.extend({
|
||||
|
|
@ -5279,22 +5342,34 @@ var acf;
|
|||
* @return $post_id (int)
|
||||
*/
|
||||
|
||||
showField: function( $field ){
|
||||
showField: function( $field, lockKey ){
|
||||
//console.log('showField', lockKey, $field.data('name'), $field.data('type') );
|
||||
// defaults
|
||||
lockKey = lockKey || 'default';
|
||||
|
||||
// bail ealry if not hidden
|
||||
//if( !$field.hasClass(hidden) ) return;
|
||||
// bail early if field is not locked (does not need to be unlocked)
|
||||
if( !acf.isLocked($field, CONTEXT) ) {
|
||||
//console.log('- not locked, no need to show');
|
||||
return false;
|
||||
}
|
||||
|
||||
// vars
|
||||
var key = $field.data('key');
|
||||
// unlock
|
||||
acf.unlock($field, CONTEXT, lockKey);
|
||||
|
||||
// bail early if field is still locked (by another field)
|
||||
if( acf.isLocked($field, CONTEXT) ) {
|
||||
//console.log('- is still locked, cant show', acf.getLocks($field, CONTEXT));
|
||||
return false;
|
||||
}
|
||||
|
||||
// remove class
|
||||
$field.removeClass(hidden);
|
||||
$field.removeClass( CLASS );
|
||||
|
||||
// enable
|
||||
acf.enable_form( $field, 'condition-'+key );
|
||||
acf.enable_form( $field, CONTEXT );
|
||||
|
||||
// action for 3rd party customization
|
||||
acf.do_action('show_field', $field, 'conditional_logic' );
|
||||
acf.do_action('show_field', $field, CONTEXT );
|
||||
|
||||
},
|
||||
|
||||
|
|
@ -5312,22 +5387,31 @@ var acf;
|
|||
* @return $post_id (int)
|
||||
*/
|
||||
|
||||
hideField : function( $field ){
|
||||
|
||||
// bail ealry if hidden
|
||||
//if( $field.hasClass(hidden) ) return;
|
||||
hideField: function( $field, lockKey ){
|
||||
//console.log('hideField', lockKey, $field.data('name'), $field.data('type') );
|
||||
// defaults
|
||||
lockKey = lockKey || 'default';
|
||||
|
||||
// vars
|
||||
var key = $field.data('key');
|
||||
var isLocked = acf.isLocked($field, CONTEXT);
|
||||
|
||||
// unlock
|
||||
acf.lock($field, CONTEXT, lockKey);
|
||||
|
||||
// bail early if field is already locked (by another field)
|
||||
if( isLocked ) {
|
||||
//console.log('- is already locked');
|
||||
return false;
|
||||
}
|
||||
|
||||
// add class
|
||||
$field.addClass( hidden );
|
||||
$field.addClass( CLASS );
|
||||
|
||||
// disable
|
||||
acf.disable_form( $field, 'condition-'+key );
|
||||
acf.disable_form( $field, CONTEXT );
|
||||
|
||||
// action for 3rd party customization
|
||||
acf.do_action('hide_field', $field, 'conditional_logic' );
|
||||
acf.do_action('hide_field', $field, CONTEXT );
|
||||
|
||||
},
|
||||
|
||||
|
|
@ -9274,8 +9358,8 @@ var acf;
|
|||
$input: null,
|
||||
|
||||
events: {
|
||||
'input input': '_change',
|
||||
'change input': '_change'
|
||||
'input input': 'onInput',
|
||||
'change input': 'onChange'
|
||||
},
|
||||
|
||||
focus: function(){
|
||||
|
|
@ -9287,30 +9371,22 @@ var acf;
|
|||
|
||||
},
|
||||
|
||||
_change: function( e ){
|
||||
|
||||
// get value from changed element
|
||||
var val = e.$el.val();
|
||||
var type = e.$el.attr('type');
|
||||
|
||||
|
||||
// allow for cleared value
|
||||
val = val || 0;
|
||||
|
||||
|
||||
// update sibling
|
||||
if( type === 'range' ) {
|
||||
|
||||
this.$input.val( val );
|
||||
|
||||
} else {
|
||||
|
||||
this.$range.val( val );
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
setValue: function( val ){
|
||||
this.$input.val( val );
|
||||
this.$range.val( val );
|
||||
},
|
||||
|
||||
onInput: function( e ){
|
||||
this.setValue( e.$el.val() );
|
||||
},
|
||||
|
||||
onChange: function( e ){
|
||||
this.setValue( e.$el.val() );
|
||||
|
||||
if( e.$el.attr('type') == 'number' ) {
|
||||
this.$range.trigger('change');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
|
@ -11630,7 +11706,7 @@ var acf;
|
|||
(function($){
|
||||
|
||||
// vars
|
||||
var hidden = 'hidden-by-conditional-logic';
|
||||
var CLASS = 'hidden-by-conditional-logic';
|
||||
var groupIndex = 0;
|
||||
var tabIndex = 0;
|
||||
|
||||
|
|
@ -11955,18 +12031,18 @@ var acf;
|
|||
|
||||
|
||||
// hide li
|
||||
$li.addClass(hidden);
|
||||
$li.addClass( CLASS );
|
||||
|
||||
|
||||
// hide fields
|
||||
tabs.getFields( $field ).each(function(){
|
||||
acf.conditional_logic.hide_field( $(this) );
|
||||
acf.conditional_logic.hide_field( $(this), key );
|
||||
});
|
||||
|
||||
|
||||
// select other tab if active
|
||||
if( $li.hasClass('active') ) {
|
||||
$wrap.find('li:not(.'+hidden+'):first a').trigger('click');
|
||||
$wrap.find('li:not(.'+CLASS+'):first a').trigger('click');
|
||||
}
|
||||
|
||||
},
|
||||
|
|
@ -11989,18 +12065,18 @@ var acf;
|
|||
|
||||
|
||||
// show li
|
||||
$li.removeClass(hidden);
|
||||
$li.removeClass( CLASS );
|
||||
|
||||
|
||||
// hide fields
|
||||
tabs.getFields( $field ).each(function(){
|
||||
acf.conditional_logic.show_field( $(this) );
|
||||
acf.conditional_logic.show_field( $(this), key );
|
||||
});
|
||||
|
||||
|
||||
// select tab if no other active
|
||||
var $active = $li.siblings('.active');
|
||||
if( !$active.exists() || $active.hasClass(hidden) ) {
|
||||
if( !$active.exists() || $active.hasClass(CLASS) ) {
|
||||
tabs.toggle( $tab );
|
||||
}
|
||||
|
||||
|
|
@ -13547,11 +13623,6 @@ var acf;
|
|||
|
||||
}
|
||||
|
||||
|
||||
// action for 3rd party
|
||||
acf.do_action('validation_failure');
|
||||
|
||||
|
||||
// set valid (prevents fetch_complete from runing)
|
||||
this.valid = false;
|
||||
|
||||
|
|
@ -13563,6 +13634,10 @@ var acf;
|
|||
// display errors
|
||||
this.display_errors( json.errors, $form );
|
||||
|
||||
|
||||
// action
|
||||
acf.do_action('validation_failure');
|
||||
|
||||
},
|
||||
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -218,10 +218,9 @@ class acf_admin_field_group {
|
|||
|
||||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => $post->ID,
|
||||
'nonce' => 'field_group',
|
||||
'ajax' => 0,
|
||||
acf_form_data(array(
|
||||
'screen' => 'field_group',
|
||||
'post_id' => $post->ID,
|
||||
'delete_fields' => 0
|
||||
));
|
||||
|
||||
|
|
|
|||
|
|
@ -51,9 +51,10 @@ $atts['class'] = str_replace('_', '-', $atts['class']);
|
|||
<a class="delete-field" title="<?php _e("Delete field",'acf'); ?>" href="#"><?php _e("Delete",'acf'); ?></a>
|
||||
</div>
|
||||
</li>
|
||||
<li class="li-field-name"><?php echo $field['name']; ?></li>
|
||||
<li class="li-field-key"><?php echo $field['key']; ?></li>
|
||||
<li class="li-field-type"><?php echo acf_get_field_type_label($field['type']); ?></li>
|
||||
<?php // whitespace before field name looks odd but fixes chrome bug selecting all text in row ?>
|
||||
<li class="li-field-name"> <?php echo $field['name']; ?></li>
|
||||
<li class="li-field-key"> <?php echo $field['key']; ?></li>
|
||||
<li class="li-field-type"> <?php echo acf_get_field_type_label($field['type']); ?></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -323,32 +323,38 @@ function acf_the_field_label( $field ) {
|
|||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_render_fields( $post_id = 0, $fields, $el = 'div', $instruction = 'label' ) {
|
||||
function acf_render_fields( $fields, $post_id = 0, $el = 'div', $instruction = 'label' ) {
|
||||
|
||||
// parameter order changed in ACF 5.6.9
|
||||
if( is_array($post_id) ) {
|
||||
$args = func_get_args();
|
||||
$fields = $args[1];
|
||||
$post_id = $args[0];
|
||||
}
|
||||
|
||||
// filter
|
||||
$fields = apply_filters('acf/pre_render_fields', $fields, $post_id);
|
||||
|
||||
// bail early if no fields
|
||||
if( empty($fields) ) return false;
|
||||
if( empty($fields) ) return;
|
||||
|
||||
|
||||
// remove corrupt fields
|
||||
$fields = array_filter($fields);
|
||||
|
||||
|
||||
// loop through fields
|
||||
// loop
|
||||
foreach( $fields as $field ) {
|
||||
|
||||
// bail ealry if no field
|
||||
if( !$field ) continue;
|
||||
|
||||
// load value
|
||||
if( $field['value'] === null ) {
|
||||
|
||||
$field['value'] = acf_get_value( $post_id, $field );
|
||||
|
||||
}
|
||||
|
||||
|
||||
// render
|
||||
acf_render_field_wrap( $field, $el, $instruction );
|
||||
|
||||
}
|
||||
|
||||
// action
|
||||
do_action( 'acf/render_fields', $fields, $post_id );
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -711,6 +717,7 @@ function acf_get_fields( $parent = false ) {
|
|||
|
||||
|
||||
// filter
|
||||
$fields = apply_filters('acf/load_fields', $fields, $parent);
|
||||
$fields = apply_filters('acf/get_fields', $fields, $parent);
|
||||
|
||||
|
||||
|
|
@ -1097,7 +1104,7 @@ function acf_maybe_get_field( $selector, $post_id = false, $strict = true ) {
|
|||
|
||||
|
||||
// get reference
|
||||
$field_key = acf_get_field_reference( $selector, $post_id );
|
||||
$field_key = acf_get_reference( $selector, $post_id );
|
||||
|
||||
|
||||
// update selector
|
||||
|
|
|
|||
|
|
@ -40,23 +40,37 @@ function acf_is_empty( $value ) {
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* acf_get_setting
|
||||
/**
|
||||
* acf_has_setting
|
||||
*
|
||||
* alias of acf()->get_setting()
|
||||
* alias of acf()->has_setting()
|
||||
*
|
||||
* @type function
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param n/a
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_get_setting( $name, $value = null ) {
|
||||
|
||||
return acf()->get_setting( $name, $value );
|
||||
|
||||
function acf_has_setting( $name = '' ) {
|
||||
return acf()->has_setting( $name );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_raw_setting
|
||||
*
|
||||
* alias of acf()->get_setting()
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param n/a
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_raw_setting( $name = '' ) {
|
||||
return acf()->get_setting( $name );
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -76,15 +90,35 @@ function acf_get_setting( $name, $value = null ) {
|
|||
|
||||
function acf_update_setting( $name, $value ) {
|
||||
|
||||
return acf()->update_setting( $name, $value );
|
||||
// validate name
|
||||
$name = acf_validate_setting( $name );
|
||||
|
||||
// update
|
||||
return acf()->update_setting( $name, $value );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_validate_setting
|
||||
*
|
||||
* Returns the changed setting name if available.
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param n/a
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_validate_setting( $name = '' ) {
|
||||
return apply_filters( "acf/validate_setting", $name );
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* acf_init
|
||||
* acf_get_setting
|
||||
*
|
||||
* alias of acf()->init()
|
||||
* alias of acf()->get_setting()
|
||||
*
|
||||
* @type function
|
||||
* @date 28/09/13
|
||||
|
|
@ -94,10 +128,21 @@ function acf_update_setting( $name, $value ) {
|
|||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_init() {
|
||||
function acf_get_setting( $name, $value = null ) {
|
||||
|
||||
acf()->init();
|
||||
// validate name
|
||||
$name = acf_validate_setting( $name );
|
||||
|
||||
// check settings
|
||||
if( acf_has_setting($name) ) {
|
||||
$value = acf_raw_setting( $name );
|
||||
}
|
||||
|
||||
// filter
|
||||
$value = apply_filters( "acf/settings/{$name}", $value );
|
||||
|
||||
// return
|
||||
return $value;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -118,23 +163,106 @@ function acf_init() {
|
|||
function acf_append_setting( $name, $value ) {
|
||||
|
||||
// vars
|
||||
$setting = acf_get_setting( $name, array() );
|
||||
|
||||
$setting = acf_raw_setting( $name );
|
||||
|
||||
// bail ealry if not array
|
||||
if( !is_array($setting) ) return false;
|
||||
|
||||
if( !is_array($setting) ) {
|
||||
$setting = array();
|
||||
}
|
||||
|
||||
// append
|
||||
$setting[] = $value;
|
||||
|
||||
|
||||
// update
|
||||
acf_update_setting( $name, $setting );
|
||||
return acf_update_setting( $name, $setting );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_get_data
|
||||
*
|
||||
* Returns data.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name
|
||||
* @return mixed
|
||||
*/
|
||||
|
||||
function acf_get_data( $name ) {
|
||||
return acf()->get_data( $name );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_set_data
|
||||
*
|
||||
* Sets data.
|
||||
*
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $name
|
||||
* @param mixed $value
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_set_data( $name, $value ) {
|
||||
return acf()->set_data( $name, $value );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_new_instance
|
||||
*
|
||||
* description
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function acf_new_instance( $class ) {
|
||||
return acf()->new_instance( $class );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_get_instance
|
||||
*
|
||||
* description
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function acf_get_instance( $class ) {
|
||||
return acf()->get_instance( $class );
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* acf_init
|
||||
*
|
||||
* alias of acf()->init()
|
||||
*
|
||||
* @type function
|
||||
* @date 28/09/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param n/a
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_init() {
|
||||
|
||||
|
||||
// return
|
||||
return true;
|
||||
acf()->init();
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -174,21 +302,14 @@ function acf_get_compatibility( $name ) {
|
|||
|
||||
function acf_has_done( $name ) {
|
||||
|
||||
// vars
|
||||
$setting = "_has_done_{$name}";
|
||||
|
||||
|
||||
// return true if already done
|
||||
if( acf_get_setting($setting) ) return true;
|
||||
if( acf_raw_setting("has_done_{$name}") ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
// update setting
|
||||
acf_update_setting($setting, true);
|
||||
|
||||
|
||||
// return
|
||||
// update setting and return
|
||||
acf_update_setting("has_done_{$name}", true);
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -538,11 +659,6 @@ function acf_merge_atts( $atts, $extra = array() ) {
|
|||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* acf_nonce_input
|
||||
*
|
||||
|
|
@ -657,60 +773,52 @@ function acf_get_sub_array( $array, $keys ) {
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
/**
|
||||
* acf_get_post_types
|
||||
*
|
||||
* This function will return an array of available post types
|
||||
* Returns an array of post type names.
|
||||
*
|
||||
* @type function
|
||||
* @date 7/10/13
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param $exclude (array)
|
||||
* @param $include (array)
|
||||
* @return (array)
|
||||
* @param array $args Optional. An array of key => value arguments to match against the post type objects. Default empty array.
|
||||
* @return array A list of post type names.
|
||||
*/
|
||||
|
||||
function acf_get_post_types( $args = array() ) {
|
||||
|
||||
// vars
|
||||
$post_types = array();
|
||||
|
||||
// extract special arg
|
||||
$exclude = acf_extract_var( $args, 'exclude', array() );
|
||||
$return = array();
|
||||
|
||||
|
||||
// get post types
|
||||
$post_types = get_post_types( $args, 'objects' );
|
||||
|
||||
|
||||
// remove ACF post types
|
||||
$exclude[] = 'acf-field';
|
||||
$exclude[] = 'acf-field-group';
|
||||
|
||||
|
||||
// get post type objects
|
||||
$objects = get_post_types( $args, 'objects' );
|
||||
|
||||
// loop
|
||||
foreach( $post_types as $i => $post_type ) {
|
||||
foreach( $objects as $i => $object ) {
|
||||
|
||||
// bail early if is exclude
|
||||
if( in_array($i, $exclude) ) continue;
|
||||
|
||||
|
||||
// bail early if is builtin (WP) private post type
|
||||
// - nav_menu_item, revision, customize_changeset, etc
|
||||
if( $post_type->_builtin && !$post_type->public ) continue;
|
||||
|
||||
if( $object->_builtin && !$object->public ) continue;
|
||||
|
||||
// append
|
||||
$return[] = $i;
|
||||
|
||||
$post_types[] = $i;
|
||||
}
|
||||
|
||||
// filter
|
||||
$post_types = apply_filters('acf/get_post_types', $post_types, $args);
|
||||
|
||||
// return
|
||||
return $return;
|
||||
|
||||
return $post_types;
|
||||
}
|
||||
|
||||
|
||||
function acf_get_pretty_post_types( $post_types = array() ) {
|
||||
|
||||
// get post types
|
||||
|
|
@ -4612,6 +4720,48 @@ function acf_is_plugin_active() {
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_get_filters
|
||||
*
|
||||
* Returns the registered filters
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function acf_get_filters() {
|
||||
|
||||
// get
|
||||
$filters = acf_raw_setting('filters');
|
||||
|
||||
// array
|
||||
$filters = is_array($filters) ? $filters : array();
|
||||
|
||||
// return
|
||||
return $filters;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_update_filters
|
||||
*
|
||||
* Updates the registered filters
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function acf_update_filters( $filters ) {
|
||||
return acf_update_setting('filters', $filters);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* acf_enable_filter
|
||||
*
|
||||
|
|
@ -4627,17 +4777,14 @@ function acf_is_plugin_active() {
|
|||
|
||||
function acf_enable_filter( $filter = '' ) {
|
||||
|
||||
// get filters
|
||||
$filters = acf_get_setting('_filters', array());
|
||||
|
||||
// get
|
||||
$filters = acf_get_filters();
|
||||
|
||||
// append
|
||||
$filters[ $filter ] = true;
|
||||
|
||||
|
||||
// update
|
||||
acf_update_setting('_filters', $filters);
|
||||
|
||||
acf_update_filters( $filters );
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -4656,17 +4803,14 @@ function acf_enable_filter( $filter = '' ) {
|
|||
|
||||
function acf_disable_filter( $filter = '' ) {
|
||||
|
||||
// get filters
|
||||
$filters = acf_get_setting('_filters', array());
|
||||
|
||||
// get
|
||||
$filters = acf_get_filters();
|
||||
|
||||
// append
|
||||
$filters[ $filter ] = false;
|
||||
|
||||
|
||||
// update
|
||||
acf_update_setting('_filters', $filters);
|
||||
|
||||
acf_update_filters( $filters );
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -4686,21 +4830,16 @@ function acf_disable_filter( $filter = '' ) {
|
|||
|
||||
function acf_enable_filters() {
|
||||
|
||||
// get filters
|
||||
$filters = acf_get_setting('_filters', array());
|
||||
|
||||
// get
|
||||
$filters = acf_get_filters();
|
||||
|
||||
// loop
|
||||
foreach( array_keys($filters) as $k ) {
|
||||
|
||||
$filters[ $k ] = true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
// update
|
||||
acf_update_setting('_filters', $filters);
|
||||
|
||||
acf_update_filters( $filters );
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -4720,21 +4859,16 @@ function acf_enable_filters() {
|
|||
|
||||
function acf_disable_filters() {
|
||||
|
||||
// get filters
|
||||
$filters = acf_get_setting('_filters', array());
|
||||
|
||||
// get
|
||||
$filters = acf_get_filters();
|
||||
|
||||
// loop
|
||||
foreach( array_keys($filters) as $k ) {
|
||||
|
||||
$filters[ $k ] = false;
|
||||
|
||||
}
|
||||
|
||||
|
||||
// update
|
||||
acf_update_setting('_filters', $filters);
|
||||
|
||||
acf_update_filters( $filters );
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -4754,13 +4888,11 @@ function acf_disable_filters() {
|
|||
|
||||
function acf_is_filter_enabled( $filter = '' ) {
|
||||
|
||||
// get filters
|
||||
$filters = acf_get_setting('_filters', array());
|
||||
|
||||
|
||||
// bail early if not set
|
||||
return empty( $filters[ $filter ] ) ? false : true;
|
||||
// get
|
||||
$filters = acf_get_filters();
|
||||
|
||||
// return
|
||||
return !empty($filters[ $filter ]);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,36 +1,5 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* acf_get_field_reference()
|
||||
*
|
||||
* This function will find the $field_key that is related to the $field_name.
|
||||
* This is know as the field value reference
|
||||
*
|
||||
* @type function
|
||||
* @since 3.6
|
||||
* @date 29/01/13
|
||||
*
|
||||
* @param $field_name (mixed) the name of the field. eg 'sub_heading'
|
||||
* @param $post_id (int) the post_id of which the value is saved against
|
||||
* @return $reference (string) a string containing the field_key
|
||||
*/
|
||||
|
||||
function acf_get_field_reference( $field_name, $post_id ) {
|
||||
|
||||
// vars
|
||||
$field_key = acf_get_metadata( $post_id, $field_name, true );
|
||||
|
||||
|
||||
// filter
|
||||
$field_key = apply_filters('acf/get_field_reference', $field_key, $field_name, $post_id);
|
||||
|
||||
|
||||
// return
|
||||
return $field_key;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* get_field()
|
||||
*
|
||||
|
|
|
|||
|
|
@ -214,6 +214,45 @@ function acf_update_option( $option = '', $value = '', $autoload = null ) {
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* acf_get_reference
|
||||
*
|
||||
* Finds the field key for a given field name and post_id.
|
||||
*
|
||||
* @date 26/1/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param string $field_name The name of the field. eg 'sub_heading'
|
||||
* @param mixed $post_id The post_id of which the value is saved against
|
||||
* @return string $reference The field key
|
||||
*/
|
||||
|
||||
function acf_get_reference( $field_name, $post_id ) {
|
||||
|
||||
// allow filter to short-circuit load_value logic
|
||||
$reference = apply_filters( "acf/pre_load_reference", null, $field_name, $post_id );
|
||||
if( $reference !== null ) {
|
||||
return $reference;
|
||||
}
|
||||
|
||||
// get hidden meta for this field name
|
||||
$reference = acf_get_metadata( $post_id, $field_name, true );
|
||||
|
||||
// filter
|
||||
$reference = apply_filters('acf/load_reference', $reference, $field_name, $post_id);
|
||||
$reference = apply_filters('acf/get_field_reference', $reference, $field_name, $post_id);
|
||||
|
||||
// return
|
||||
return $reference;
|
||||
|
||||
}
|
||||
|
||||
// deprecated in 5.6.8
|
||||
function acf_get_field_reference( $field_name, $post_id ) {
|
||||
return acf_get_reference( $field_name, $post_id );
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* acf_get_value
|
||||
*
|
||||
|
|
@ -231,10 +270,10 @@ function acf_update_option( $option = '', $value = '', $autoload = null ) {
|
|||
function acf_get_value( $post_id = 0, $field ) {
|
||||
|
||||
// allow filter to short-circuit load_value logic
|
||||
//$value = apply_filters( "acf/pre_load_value", null, $post_id, $field );
|
||||
//if( $value !== null ) {
|
||||
// return $value;
|
||||
//}
|
||||
$value = apply_filters( "acf/pre_load_value", null, $post_id, $field );
|
||||
if( $value !== null ) {
|
||||
return $value;
|
||||
}
|
||||
|
||||
|
||||
// vars
|
||||
|
|
@ -342,9 +381,14 @@ function acf_update_value( $value = null, $post_id = 0, $field ) {
|
|||
|
||||
// strip slashes
|
||||
if( acf_get_setting('stripslashes') ) {
|
||||
|
||||
$value = stripslashes_deep($value);
|
||||
|
||||
}
|
||||
|
||||
|
||||
// allow filter to short-circuit update_value logic
|
||||
$value = apply_filters( "acf/pre_update_value", $value, $post_id, $field );
|
||||
if( $value === null ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@ class acf_deprecated {
|
|||
add_filter('acf/settings/l10n_field', array($this, 'acf_settings_l10n_field'), 5, 1); // 5.3.3
|
||||
add_filter('acf/settings/l10n_field_group', array($this, 'acf_settings_l10n_field'), 5, 1); // 5.3.3
|
||||
add_filter('acf/settings/url', array($this, 'acf_settings_url'), 5, 1); // 5.6.8
|
||||
add_filter('acf/validate_setting', array($this, 'acf_validate_setting'), 5, 1); // 5.6.8
|
||||
|
||||
|
||||
|
||||
// filters
|
||||
add_filter('acf/validate_field', array($this, 'acf_validate_field'), 10, 1); // 5.5.6
|
||||
add_filter('acf/validate_field_group', array($this, 'acf_validate_field_group'), 10, 1); // 5.5.6
|
||||
|
|
@ -112,11 +113,36 @@ class acf_deprecated {
|
|||
* @return n/a
|
||||
*/
|
||||
|
||||
function acf_settings_url( $setting ) {
|
||||
function acf_settings_url( $value ) {
|
||||
return apply_filters( "acf/settings/dir", $value );
|
||||
}
|
||||
|
||||
/**
|
||||
* acf_validate_setting
|
||||
*
|
||||
* description
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function acf_validate_setting( $name ) {
|
||||
|
||||
// 5.6.8 - changed filter name
|
||||
return acf_get_setting( 'dir', $setting );
|
||||
// vars
|
||||
$changed = array(
|
||||
'dir' => 'url' // 5.6.8
|
||||
);
|
||||
|
||||
// check
|
||||
if( isset($changed[ $name ]) ) {
|
||||
return $changed[ $name ];
|
||||
}
|
||||
|
||||
//return
|
||||
return $name;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -55,52 +55,52 @@ class acf_field_range extends acf_field_number {
|
|||
$keys2 = array( 'readonly', 'disabled', 'required' );
|
||||
$html = '';
|
||||
|
||||
|
||||
// step
|
||||
if( !$field['step'] ) $field['step'] = 1;
|
||||
|
||||
if( !$field['step'] ) {
|
||||
$field['step'] = 1;
|
||||
}
|
||||
|
||||
// min / max
|
||||
if( !$field['min'] ) $field['min'] = 0;
|
||||
if( !$field['max'] ) $field['max'] = 100;
|
||||
if( !$field['min'] ) {
|
||||
$field['min'] = 0;
|
||||
}
|
||||
if( !$field['max'] ) {
|
||||
$field['max'] = 100;
|
||||
}
|
||||
|
||||
|
||||
// value
|
||||
// allow for prev 'non numeric' value
|
||||
if( !is_numeric($field['value']) ) {
|
||||
$field['value'] = 0;
|
||||
}
|
||||
|
||||
// constrain within max and min
|
||||
$field['value'] = max($field['value'], $field['min']);
|
||||
$field['value'] = min($field['value'], $field['max']);
|
||||
|
||||
// atts (value="123")
|
||||
foreach( $keys as $k ) {
|
||||
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
||||
}
|
||||
|
||||
|
||||
// atts2 (disabled="disabled")
|
||||
foreach( $keys2 as $k ) {
|
||||
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
||||
}
|
||||
|
||||
|
||||
// remove empty atts
|
||||
$atts = acf_clean_atts( $atts );
|
||||
|
||||
|
||||
// open
|
||||
$html .= '<div class="acf-range-wrap">';
|
||||
|
||||
|
||||
// prepend
|
||||
if( $field['prepend'] !== '' ) {
|
||||
$html .= '<div class="acf-prepend">' . acf_esc_html($field['prepend']) . '</div>';
|
||||
}
|
||||
|
||||
|
||||
// range
|
||||
$html .= acf_get_text_input( $atts );
|
||||
|
||||
|
||||
// input
|
||||
$len = strlen( (string) $field['max'] );
|
||||
$html .= acf_get_text_input(array(
|
||||
|
|
@ -108,23 +108,21 @@ class acf_field_range extends acf_field_number {
|
|||
'id' => $atts['id'] . '-alt',
|
||||
'value' => $atts['value'],
|
||||
'step' => $atts['step'],
|
||||
//'min' => $atts['min'], // removed to avoid browser validation errors
|
||||
//'max' => $atts['max'],
|
||||
'style' => 'width: ' . (1.8 + $len*0.7) . 'em;'
|
||||
));
|
||||
|
||||
|
||||
// append
|
||||
if( $field['append'] !== '' ) {
|
||||
$html .= '<div class="acf-append">' . acf_esc_html($field['append']) . '</div>';
|
||||
}
|
||||
|
||||
|
||||
// close
|
||||
$html .= '</div>';
|
||||
|
||||
|
||||
// return
|
||||
echo $html;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ class acf_field_tab extends acf_field {
|
|||
'name' => 'placement',
|
||||
'choices' => array(
|
||||
'top' => __("Top aligned", 'acf'),
|
||||
'left' => __("Left Aligned", 'acf'),
|
||||
'left' => __("Left aligned", 'acf'),
|
||||
)
|
||||
));
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ class acf_field_user extends acf_field {
|
|||
'role' => '',
|
||||
'multiple' => 0,
|
||||
'allow_null' => 0,
|
||||
'return_format' => 'array',
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -422,6 +423,20 @@ class acf_field_user extends acf_field {
|
|||
'ui' => 1,
|
||||
));
|
||||
|
||||
// return_format
|
||||
acf_render_field_setting( $field, array(
|
||||
'label' => __('Return Format','acf'),
|
||||
'instructions' => '',
|
||||
'type' => 'radio',
|
||||
'name' => 'return_format',
|
||||
'choices' => array(
|
||||
'array' => __("User Array",'acf'),
|
||||
'object' => __("User Object",'acf'),
|
||||
'id' => __("User ID",'acf'),
|
||||
),
|
||||
'layout' => 'horizontal',
|
||||
));
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -514,66 +529,62 @@ class acf_field_user extends acf_field {
|
|||
|
||||
// bail early if no value
|
||||
if( empty($value) ) {
|
||||
|
||||
return $value;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
// force value to array
|
||||
// ensure array
|
||||
$value = acf_get_array( $value );
|
||||
|
||||
|
||||
// convert values to int
|
||||
$value = array_map('intval', $value);
|
||||
|
||||
|
||||
// load users
|
||||
// update value
|
||||
foreach( array_keys($value) as $i ) {
|
||||
|
||||
// vars
|
||||
$user_id = $value[ $i ];
|
||||
$user_data = get_userdata( $user_id );
|
||||
|
||||
|
||||
//cope with deleted users by @adampope
|
||||
if( !is_object($user_data) ) {
|
||||
|
||||
unset( $value[ $i ] );
|
||||
continue;
|
||||
|
||||
}
|
||||
|
||||
|
||||
// append to array
|
||||
$value[ $i ] = array();
|
||||
$value[ $i ]['ID'] = $user_id;
|
||||
$value[ $i ]['user_firstname'] = $user_data->user_firstname;
|
||||
$value[ $i ]['user_lastname'] = $user_data->user_lastname;
|
||||
$value[ $i ]['nickname'] = $user_data->nickname;
|
||||
$value[ $i ]['user_nicename'] = $user_data->user_nicename;
|
||||
$value[ $i ]['display_name'] = $user_data->display_name;
|
||||
$value[ $i ]['user_email'] = $user_data->user_email;
|
||||
$value[ $i ]['user_url'] = $user_data->user_url;
|
||||
$value[ $i ]['user_registered'] = $user_data->user_registered;
|
||||
$value[ $i ]['user_description'] = $user_data->user_description;
|
||||
$value[ $i ]['user_avatar'] = get_avatar( $user_id );
|
||||
|
||||
$value[ $i ] = $this->format_value_single( $value[ $i ], $post_id, $field );
|
||||
}
|
||||
|
||||
|
||||
// convert back from array if neccessary
|
||||
// convert to single
|
||||
if( !$field['multiple'] ) {
|
||||
|
||||
$value = array_shift($value);
|
||||
|
||||
}
|
||||
|
||||
|
||||
// return value
|
||||
return $value;
|
||||
|
||||
}
|
||||
|
||||
function format_value_single( $value, $post_id, $field ) {
|
||||
|
||||
// vars
|
||||
$user_id = (int) $value;
|
||||
|
||||
// object
|
||||
if( $field['return_format'] == 'object' ) {
|
||||
$value = get_userdata( $user_id );
|
||||
|
||||
// array
|
||||
} elseif( $field['return_format'] == 'array' ) {
|
||||
$wp_user = get_userdata( $user_id );
|
||||
$value = array(
|
||||
'ID' => $user_id,
|
||||
'user_firstname' => $wp_user->user_firstname,
|
||||
'user_lastname' => $wp_user->user_lastname,
|
||||
'nickname' => $wp_user->nickname,
|
||||
'user_nicename' => $wp_user->user_nicename,
|
||||
'display_name' => $wp_user->display_name,
|
||||
'user_email' => $wp_user->user_email,
|
||||
'user_url' => $wp_user->user_url,
|
||||
'user_registered' => $wp_user->user_registered,
|
||||
'user_description' => $wp_user->user_description,
|
||||
'user_avatar' => get_avatar( $user_id ),
|
||||
);
|
||||
|
||||
// id
|
||||
} else {
|
||||
$value = $user_id;
|
||||
}
|
||||
|
||||
// return
|
||||
return $value;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -133,12 +133,11 @@ class acf_form_attachment {
|
|||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => 0,
|
||||
'nonce' => 'attachment',
|
||||
'screen' => 'attachment',
|
||||
'post_id' => 0,
|
||||
'ajax' => 1
|
||||
));
|
||||
|
||||
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
|
@ -187,8 +186,8 @@ acf.unload.active = 0;
|
|||
|
||||
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'attachment',
|
||||
'screen' => 'attachment',
|
||||
'post_id' => $post_id,
|
||||
));
|
||||
|
||||
|
||||
|
|
@ -211,7 +210,7 @@ acf.unload.active = 0;
|
|||
|
||||
|
||||
// render
|
||||
acf_render_fields( $post_id, $fields, $el, $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $post_id, $el, $field_group['instruction_placement'] );
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -145,8 +145,8 @@ class acf_form_comment {
|
|||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'comment'
|
||||
'screen' => 'comment',
|
||||
'post_id' => $post_id
|
||||
));
|
||||
|
||||
|
||||
|
|
@ -179,7 +179,7 @@ class acf_form_comment {
|
|||
<div id="acf-<?php echo $field_group['ID']; ?>" class="stuffbox">
|
||||
<h3 class="hndle"><?php echo $field_group['title']; ?></h3>
|
||||
<div class="inside">
|
||||
<?php acf_render_fields( $post_id, $fields, 'div', $field_group['instruction_placement'] ); ?>
|
||||
<?php acf_render_fields( $fields, $post_id, 'div', $field_group['instruction_placement'] ); ?>
|
||||
<script type="text/javascript">
|
||||
if( typeof acf !== 'undefined' ) {
|
||||
|
||||
|
|
@ -236,8 +236,8 @@ class acf_form_comment {
|
|||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'comment'
|
||||
'screen' => 'comment',
|
||||
'post_id' => $post_id
|
||||
));
|
||||
|
||||
echo '<div class="acf-comment-fields acf-fields -clear">';
|
||||
|
|
@ -246,7 +246,7 @@ class acf_form_comment {
|
|||
|
||||
$fields = acf_get_fields( $field_group );
|
||||
|
||||
acf_render_fields( $post_id, $fields, 'p', $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $post_id, 'p', $field_group['instruction_placement'] );
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -241,47 +241,56 @@ class acf_form_customizer {
|
|||
if( empty($this->preview_values) ) return;
|
||||
|
||||
|
||||
// add filter
|
||||
add_filter('acf/get_field_reference', array($this, 'get_field_reference'), 10, 3);
|
||||
// add filters
|
||||
add_filter('acf/pre_load_value', array($this, 'pre_load_value'), 10, 3);
|
||||
add_filter('acf/pre_load_reference', array($this, 'pre_load_reference'), 10, 3);
|
||||
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* get_field_reference
|
||||
/**
|
||||
* pre_load_value
|
||||
*
|
||||
* This function will return a field_key for a given field name + post_id
|
||||
* Normally, ACF would lookup the DB fro this connection, but a new preview widget has not yet saved anything to the DB
|
||||
* Used to inject preview value
|
||||
*
|
||||
* @type function
|
||||
* @date 12/05/2016
|
||||
* @since 5.3.8
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param $field_key (string)
|
||||
* @param $field_name (string)
|
||||
* @param $post_id (mixed)
|
||||
* @return $field_key
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function get_field_reference( $field_key, $field_name, $post_id ) {
|
||||
function pre_load_value( $value, $post_id, $field ) {
|
||||
|
||||
// look for reference
|
||||
if( isset($this->preview_fields[ $post_id ][ $field_name ]) ) {
|
||||
|
||||
// update key
|
||||
$field_key = $this->preview_fields[ $post_id ][ $field_name ];
|
||||
$field_value = $this->preview_values[ $post_id ][ $field_key ];
|
||||
|
||||
|
||||
// cache value
|
||||
acf_set_cache("get_value/post_id={$post_id}/name={$field_name}", $field_value);
|
||||
|
||||
// check
|
||||
if( isset($this->preview_values[ $post_id ][ $field['key'] ]) ) {
|
||||
return $this->preview_values[ $post_id ][ $field['key'] ];
|
||||
}
|
||||
|
||||
// return
|
||||
return $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* pre_load_reference
|
||||
*
|
||||
* Used to inject preview value
|
||||
*
|
||||
* @date 2/2/18
|
||||
* @since 5.6.5
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function pre_load_reference( $field_key, $field_name, $post_id ) {
|
||||
|
||||
// check
|
||||
if( isset($this->preview_fields[ $post_id ][ $field_name ]) ) {
|
||||
return $this->preview_fields[ $post_id ][ $field_name ];
|
||||
}
|
||||
|
||||
// return
|
||||
return $field_key;
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -618,8 +618,8 @@ class acf_form_front {
|
|||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => $args['post_id'],
|
||||
'nonce' => 'acf_form',
|
||||
'screen' => 'acf_form',
|
||||
'post_id' => $args['post_id'],
|
||||
'form' => acf_encrypt(json_encode($args))
|
||||
));
|
||||
|
||||
|
|
@ -634,7 +634,7 @@ class acf_form_front {
|
|||
|
||||
|
||||
// render
|
||||
acf_render_fields( $post_id, $fields, $args['field_el'], $args['instruction_placement'] );
|
||||
acf_render_fields( $fields, $post_id, $args['field_el'], $args['instruction_placement'] );
|
||||
|
||||
|
||||
// html after fields
|
||||
|
|
|
|||
|
|
@ -0,0 +1,89 @@
|
|||
<?php
|
||||
|
||||
if( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
|
||||
if( ! class_exists('ACF_Form_Gutenberg') ) :
|
||||
|
||||
class ACF_Form_Gutenberg {
|
||||
|
||||
/**
|
||||
* __construct
|
||||
*
|
||||
* Setup for class functionality.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param n/a
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function __construct() {
|
||||
|
||||
// filters
|
||||
add_filter( 'replace_editor', array($this, 'replace_editor'), 99, 2 );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* replace_editor
|
||||
*
|
||||
* Check if Gutenberg is replacing the editor.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param boolean $replace True if the editor is being replaced by Gutenberg.
|
||||
* @param object $post The WP_Post being edited.
|
||||
* @return boolean
|
||||
*/
|
||||
|
||||
function replace_editor( $replace, $post ) {
|
||||
|
||||
// check if Gutenberg is replacing
|
||||
if( $replace ) {
|
||||
|
||||
// actions
|
||||
add_action('admin_footer', array($this, 'admin_footer'));
|
||||
}
|
||||
|
||||
// return
|
||||
return $replace;
|
||||
}
|
||||
|
||||
/**
|
||||
* admin_footer
|
||||
*
|
||||
* Append missing HTML to Gutenberg editor.
|
||||
*
|
||||
* @date 13/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param n/a
|
||||
* @return n/a
|
||||
*/
|
||||
|
||||
function admin_footer() {
|
||||
|
||||
// edit_form_after_title is not run due to missing action, call this manually
|
||||
?>
|
||||
<div id="acf-form-after-title">
|
||||
<?php acf_get_instance('ACF_Form_Post')->edit_form_after_title(); ?>
|
||||
</div>
|
||||
<?php
|
||||
|
||||
|
||||
// move #acf-form-after-title
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
$('#normal-sortables').before( $('#acf-form-after-title') );
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
}
|
||||
|
||||
acf_new_instance('ACF_Form_Gutenberg');
|
||||
|
||||
endif;
|
||||
|
||||
?>
|
||||
|
|
@ -28,6 +28,7 @@ class acf_form_nav_menu {
|
|||
|
||||
|
||||
// filters
|
||||
add_filter('wp_get_nav_menu_items', array($this, 'wp_get_nav_menu_items'), 10, 3);
|
||||
add_filter('wp_edit_nav_menu_walker', array($this, 'wp_edit_nav_menu_walker'), 10, 2);
|
||||
|
||||
}
|
||||
|
|
@ -129,6 +130,26 @@ class acf_form_nav_menu {
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* wp_get_nav_menu_items
|
||||
*
|
||||
* WordPress does not provide an easy way to find the current menu being edited.
|
||||
* This function listens to when a menu's items are loaded and stores the menu.
|
||||
* Needed on nav-menus.php page for new menu with no items
|
||||
*
|
||||
* @date 23/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param type $var Description. Default.
|
||||
* @return type Description.
|
||||
*/
|
||||
|
||||
function wp_get_nav_menu_items( $items, $menu, $args ) {
|
||||
acf_set_data('nav_menu_id', $menu->term_id);
|
||||
return $items;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* wp_edit_nav_menu_walker
|
||||
*
|
||||
|
|
@ -144,23 +165,16 @@ class acf_form_nav_menu {
|
|||
|
||||
function wp_edit_nav_menu_walker( $class, $menu_id = 0 ) {
|
||||
|
||||
// global
|
||||
global $acf_menu;
|
||||
|
||||
|
||||
// set var
|
||||
$acf_menu = (int) $menu_id;
|
||||
|
||||
// update data (needed for ajax location rules to work)
|
||||
acf_set_data('nav_menu_id', $menu_id);
|
||||
|
||||
// include walker
|
||||
if( class_exists('Walker_Nav_Menu_Edit') ) {
|
||||
acf_include('includes/walkers/class-acf-walker-nav-menu-edit.php');
|
||||
}
|
||||
|
||||
|
||||
// return
|
||||
return 'ACF_Walker_Nav_Menu_Edit';
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -213,28 +227,25 @@ class acf_form_nav_menu {
|
|||
|
||||
function admin_footer() {
|
||||
|
||||
// global
|
||||
global $acf_menu;
|
||||
|
||||
|
||||
// vars
|
||||
$post_id = acf_get_term_post_id( 'nav_menu', $acf_menu );
|
||||
$nav_menu_id = acf_get_data('nav_menu_id');
|
||||
$post_id = acf_get_term_post_id( 'nav_menu', $nav_menu_id );
|
||||
|
||||
|
||||
// get field groups
|
||||
$field_groups = acf_get_field_groups(array(
|
||||
'nav_menu' => $acf_menu
|
||||
'nav_menu' => $nav_menu_id
|
||||
));
|
||||
|
||||
|
||||
?>
|
||||
<div id="tmpl-acf-menu-settings" style="display: none;">
|
||||
<?php
|
||||
|
||||
// data (always needed to save nav menu items)
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'nav_menu',
|
||||
'screen' => 'nav_menu',
|
||||
'post_id' => $post_id,
|
||||
'ajax' => 1
|
||||
));
|
||||
|
||||
|
||||
|
|
@ -252,7 +263,7 @@ class acf_form_nav_menu {
|
|||
|
||||
echo '<div class="acf-fields -left -clear">';
|
||||
|
||||
acf_render_fields( $post_id, $fields, 'div', $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $post_id, 'div', $field_group['instruction_placement'] );
|
||||
|
||||
echo '</div>';
|
||||
|
||||
|
|
@ -316,7 +327,7 @@ class acf_form_nav_menu {
|
|||
|
||||
}
|
||||
|
||||
new acf_form_nav_menu();
|
||||
acf_new_instance('acf_form_nav_menu');
|
||||
|
||||
endif;
|
||||
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@
|
|||
* @subpackage Forms
|
||||
*/
|
||||
|
||||
if( ! class_exists('acf_form_post') ) :
|
||||
if( ! class_exists('ACF_Form_Post') ) :
|
||||
|
||||
class acf_form_post {
|
||||
class ACF_Form_Post {
|
||||
|
||||
var $post_id = 0,
|
||||
$typenow = '',
|
||||
|
|
@ -256,9 +256,9 @@ class acf_form_post {
|
|||
|
||||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => $this->post_id,
|
||||
'nonce' => 'post',
|
||||
acf_form_data(array(
|
||||
'screen' => 'post',
|
||||
'post_id' => $this->post_id,
|
||||
'ajax' => 1
|
||||
));
|
||||
|
||||
|
|
@ -321,7 +321,7 @@ class acf_form_post {
|
|||
|
||||
|
||||
// render
|
||||
acf_render_fields( $this->post_id, $fields, 'div', $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $this->post_id, 'div', $field_group['instruction_placement'] );
|
||||
|
||||
// render replace-me div
|
||||
} else {
|
||||
|
|
@ -442,7 +442,7 @@ if( typeof acf !== 'undefined' ) {
|
|||
|
||||
|
||||
// render
|
||||
acf_render_fields( $options['post_id'], $fields, 'div', $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $options['post_id'], 'div', $field_group['instruction_placement'] );
|
||||
|
||||
|
||||
$item['html'] = ob_get_clean();
|
||||
|
|
@ -604,10 +604,10 @@ if( typeof acf !== 'undefined' ) {
|
|||
|
||||
function is_protected_meta( $protected, $meta_key, $meta_type ) {
|
||||
|
||||
// if acf_get_field_reference returns a valid key, this is an acf value, so protect it!
|
||||
// if acf_get_reference returns a valid key, this is an acf value, so protect it!
|
||||
if( !$protected ) {
|
||||
|
||||
$reference = acf_get_field_reference( $meta_key, $this->post_id );
|
||||
$reference = acf_get_reference( $meta_key, $this->post_id );
|
||||
|
||||
if( acf_is_field_key($reference) ) {
|
||||
|
||||
|
|
@ -625,7 +625,7 @@ if( typeof acf !== 'undefined' ) {
|
|||
|
||||
}
|
||||
|
||||
new acf_form_post();
|
||||
acf_new_instance('ACF_Form_Post');
|
||||
|
||||
endif;
|
||||
|
||||
|
|
|
|||
|
|
@ -154,8 +154,8 @@ class acf_form_taxonomy {
|
|||
|
||||
// data
|
||||
acf_form_data(array(
|
||||
'screen' => 'taxonomy',
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'taxonomy',
|
||||
));
|
||||
|
||||
// wrap
|
||||
|
|
@ -164,7 +164,7 @@ class acf_form_taxonomy {
|
|||
// loop
|
||||
foreach( $field_groups as $field_group ) {
|
||||
$fields = acf_get_fields( $field_group );
|
||||
acf_render_fields( $post_id, $fields, 'div', 'field' );
|
||||
acf_render_fields( $fields, $post_id, 'div', 'field' );
|
||||
}
|
||||
|
||||
// wrap
|
||||
|
|
@ -208,8 +208,8 @@ class acf_form_taxonomy {
|
|||
if( !empty($field_groups) ) {
|
||||
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'taxonomy'
|
||||
'screen' => 'taxonomy',
|
||||
'post_id' => $post_id,
|
||||
));
|
||||
|
||||
foreach( $field_groups as $field_group ) {
|
||||
|
|
@ -222,7 +222,7 @@ class acf_form_taxonomy {
|
|||
// fields
|
||||
echo '<table class="form-table">';
|
||||
$fields = acf_get_fields( $field_group );
|
||||
acf_render_fields( $post_id, $fields, 'tr', 'field' );
|
||||
acf_render_fields( $fields, $post_id, 'tr', 'field' );
|
||||
echo '</table>';
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -232,9 +232,9 @@ class acf_form_user {
|
|||
|
||||
|
||||
// form data
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'user'
|
||||
acf_form_data(array(
|
||||
'screen' => 'user',
|
||||
'post_id' => $post_id,
|
||||
));
|
||||
|
||||
|
||||
|
|
@ -260,7 +260,7 @@ class acf_form_user {
|
|||
|
||||
|
||||
// render fields
|
||||
acf_render_fields( $post_id, $fields, $el, $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $post_id, $el, $field_group['instruction_placement'] );
|
||||
|
||||
|
||||
// table end
|
||||
|
|
|
|||
|
|
@ -158,8 +158,8 @@ class acf_form_widget {
|
|||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'widget',
|
||||
'screen' => 'widget',
|
||||
'post_id' => $post_id,
|
||||
'widget_id' => 'widget-' . $widget->id_base,
|
||||
'widget_number' => $widget->number,
|
||||
'widget_prefix' => $prefix
|
||||
|
|
@ -185,7 +185,7 @@ class acf_form_widget {
|
|||
|
||||
|
||||
// render
|
||||
acf_render_fields( $post_id, $fields, 'div', $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $post_id, 'div', $field_group['instruction_placement'] );
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -363,10 +363,6 @@ class acf_form_widget {
|
|||
// unlock form
|
||||
acf.validation.toggle( $widget, 'unlock' );
|
||||
|
||||
|
||||
// submit
|
||||
acf.do_action('submit', $widget );
|
||||
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
|
|
|||
|
|
@ -86,29 +86,30 @@ class acf_input {
|
|||
|
||||
// defaults
|
||||
$data = acf_parse_args($data, array(
|
||||
'post_id' => 0, // ID of current post
|
||||
'nonce' => 'post', // nonce used for $_POST validation
|
||||
'screen' => 'post', // Current screen loaded (post, user, taxonomy, etc)
|
||||
'post_id' => 0, // ID of current post being edited
|
||||
'nonce' => '', // nonce used for $_POST validation (defaults to screen)
|
||||
'validation' => 1, // runs AJAX validation
|
||||
'ajax' => 0, // fetches new field groups via AJAX
|
||||
'changed' => 0,
|
||||
'ajax' => 0, // if screen uses ajax to append new HTML (enqueue all assets)
|
||||
'changed' => 0, // used to detect change and prompt unload
|
||||
));
|
||||
|
||||
// nonce
|
||||
if( !$data['nonce'] ) {
|
||||
$data['nonce'] = $data['screen'];
|
||||
}
|
||||
|
||||
// enqueue uploader if page allows AJAX fields to appear
|
||||
// priority must be less than 10 to allow WP to enqueue
|
||||
if( $data['ajax'] ) {
|
||||
add_action($this->admin_footer, 'acf_enqueue_uploader', 5);
|
||||
}
|
||||
|
||||
// update
|
||||
$this->data = $data;
|
||||
|
||||
|
||||
// enqueue uploader if page allows AJAX fields to appear
|
||||
if( $data['ajax'] ) {
|
||||
|
||||
add_action($this->admin_footer, 'acf_enqueue_uploader', 1);
|
||||
|
||||
}
|
||||
|
||||
|
||||
// return
|
||||
return $data;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -239,6 +240,7 @@ class acf_input {
|
|||
|
||||
// options
|
||||
$o = array(
|
||||
'screen' => acf_get_form_data('screen'),
|
||||
'post_id' => acf_get_form_data('post_id'),
|
||||
'nonce' => wp_create_nonce( 'acf_nonce' ),
|
||||
'admin_url' => admin_url(),
|
||||
|
|
|
|||
|
|
@ -141,6 +141,8 @@ class acf_json {
|
|||
// open
|
||||
$dir = opendir( $path );
|
||||
|
||||
// bail early if not valid
|
||||
if( !$dir ) return false;
|
||||
|
||||
// loop over files
|
||||
while(false !== ( $file = readdir($dir)) ) {
|
||||
|
|
|
|||
|
|
@ -54,12 +54,10 @@ class acf_location_nav_menu_item extends acf_location {
|
|||
if( !$nav_menu_item ) return false;
|
||||
|
||||
|
||||
// global
|
||||
global $acf_menu;
|
||||
|
||||
|
||||
// append nav_menu data
|
||||
$screen['nav_menu'] = $acf_menu;
|
||||
if( !isset($screen['nav_menu']) ) {
|
||||
$screen['nav_menu'] = acf_get_data('nav_menu_id');
|
||||
}
|
||||
|
||||
|
||||
// return
|
||||
|
|
|
|||
|
|
@ -49,14 +49,15 @@ class acf_location_page_type extends acf_location {
|
|||
// vars
|
||||
$post_id = acf_maybe_get( $screen, 'post_id' );
|
||||
|
||||
|
||||
// bail early if no post id
|
||||
if( !$post_id ) return false;
|
||||
|
||||
|
||||
// get post
|
||||
$post = get_post( $post_id );
|
||||
|
||||
// bail early if no post
|
||||
if( !$post ) return false;
|
||||
|
||||
|
||||
// compare
|
||||
if( $rule['value'] == 'front_page') {
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@ class acf_location_post_type extends acf_location {
|
|||
// get post types
|
||||
// - removed show_ui to allow 3rd party code to register a post type using a custom admin edit page
|
||||
$post_types = acf_get_post_types(array(
|
||||
//'show_ui' => 1,
|
||||
'show_ui' => 1,
|
||||
'exclude' => array('attachment')
|
||||
));
|
||||
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@ class acf_location_post extends acf_location {
|
|||
|
||||
// get post types
|
||||
$post_types = acf_get_post_types(array(
|
||||
'show_ui' => 1,
|
||||
'exclude' => array('page', 'attachment')
|
||||
));
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ class acf_location_taxonomy extends acf_location {
|
|||
|
||||
// vars
|
||||
$this->name = 'taxonomy';
|
||||
$this->label = __("Taxonomy Term",'acf');
|
||||
$this->label = __("Taxonomy",'acf');
|
||||
$this->category = 'forms';
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -258,6 +258,10 @@ class acf_loop {
|
|||
// reset keys
|
||||
$this->loops = array_values( $this->loops );
|
||||
|
||||
// PHP 7.2 no longer resets array keys for empty value
|
||||
if( $this->is_empty() ) {
|
||||
$this->loops = array();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,37 +31,48 @@ class acf_third_party {
|
|||
function __construct() {
|
||||
|
||||
// Tabify Edit Screen - http://wordpress.org/extend/plugins/tabify-edit-screen/
|
||||
add_action('admin_head-settings_page_tabify-edit-screen', array($this, 'admin_head_tabify'));
|
||||
|
||||
if( class_exists('Tabify_Edit_Screen') ) {
|
||||
add_filter('tabify_posttypes', array($this, 'tabify_posttypes'));
|
||||
add_action('tabify_add_meta_boxes', array($this, 'tabify_add_meta_boxes'));
|
||||
}
|
||||
|
||||
// Post Type Switcher - http://wordpress.org/extend/plugins/post-type-switcher/
|
||||
add_filter('pts_allowed_pages', array($this, 'pts_allowed_pages'));
|
||||
if( class_exists('Post_Type_Switcher') ) {
|
||||
add_filter('pts_allowed_pages', array($this, 'pts_allowed_pages'));
|
||||
}
|
||||
|
||||
// Event Espresso - https://wordpress.org/plugins/event-espresso-decaf/
|
||||
if( function_exists('espresso_version') ) {
|
||||
add_filter('acf/get_post_types', array($this, 'ee_get_post_types'), 10, 2);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* admin_head_tabify
|
||||
/**
|
||||
* acf_get_post_types
|
||||
*
|
||||
* description
|
||||
* EE post types do not use the native post.php edit page, but instead render their own.
|
||||
* Show the EE post types in lists where 'show_ui' is used.
|
||||
*
|
||||
* @type action (admin_head)
|
||||
* @date 9/10/12
|
||||
* @since 3.5.1
|
||||
* @date 24/2/18
|
||||
* @since 5.6.9
|
||||
*
|
||||
* @param n/a
|
||||
* @return n/a
|
||||
* @param array $post_types
|
||||
* @param array $args
|
||||
* @return array
|
||||
*/
|
||||
|
||||
function admin_head_tabify() {
|
||||
function ee_get_post_types( $post_types, $args ) {
|
||||
|
||||
// remove ACF from the tabs
|
||||
add_filter('tabify_posttypes', array($this, 'tabify_posttypes'));
|
||||
|
||||
|
||||
// add acf metaboxes to list
|
||||
add_action('tabify_add_meta_boxes', array($this, 'tabify_add_meta_boxes'));
|
||||
if( !empty($args['show_ui']) ) {
|
||||
$ee_post_types = get_post_types(array('show_ee_ui' => 1));
|
||||
$ee_post_types = array_keys($ee_post_types);
|
||||
$post_types = array_merge($post_types, $ee_post_types);
|
||||
$post_types = array_unique($post_types);
|
||||
}
|
||||
|
||||
// return
|
||||
return $post_types;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -115,7 +115,7 @@ class ACF_Walker_Nav_Menu_Edit extends Walker_Nav_Menu_Edit {
|
|||
|
||||
|
||||
// render
|
||||
acf_render_fields( $post_id, $fields, 'div', $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $post_id, 'div', $field_group['instruction_placement'] );
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
BIN
lang/acf-ar.mo
BIN
lang/acf-ar.mo
Binary file not shown.
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Advanced Custom Fields Pro\n"
|
||||
"POT-Creation-Date: 2017-06-27 15:37+1000\n"
|
||||
"PO-Revision-Date: 2017-12-06 10:00+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Adil el hallaoui <servicewb11@gmail.com>\n"
|
||||
"Language: ar\n"
|
||||
|
|
@ -677,7 +677,7 @@ msgstr "محاذاة إلى الأعلى"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:117
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "محاذاة لليسار"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-06-27 15:36+1000\n"
|
||||
"PO-Revision-Date: 2017-06-27 15:37+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:03+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language: bg_BG\n"
|
||||
|
|
@ -668,7 +668,7 @@ msgstr "Отгоре"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:117
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Отляво"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2015-08-11 23:09+0200\n"
|
||||
"PO-Revision-Date: 2016-11-03 17:08+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
|
||||
"Language: cs_CZ\n"
|
||||
|
|
@ -12,9 +12,8 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;"
|
||||
"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-WPHeader: acf.php\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
|
@ -34,8 +33,7 @@ msgstr "Skupiny polí"
|
|||
msgid "Field Group"
|
||||
msgstr ""
|
||||
|
||||
#: acf.php:207 acf.php:239 admin/admin.php:62
|
||||
#: pro/fields/flexible-content.php:517
|
||||
#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517
|
||||
msgid "Add New"
|
||||
msgstr "Přidat nové"
|
||||
|
||||
|
|
@ -67,8 +65,7 @@ msgstr "Nebyly nalezeny žádné skupiny polí"
|
|||
msgid "No Field Groups found in Trash"
|
||||
msgstr "V koši nebyly nalezeny žádné skupiny polí"
|
||||
|
||||
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213
|
||||
#: admin/field-groups.php:519
|
||||
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519
|
||||
msgid "Fields"
|
||||
msgstr "Pole"
|
||||
|
||||
|
|
@ -84,8 +81,7 @@ msgstr ""
|
|||
msgid "Edit Field"
|
||||
msgstr ""
|
||||
|
||||
#: acf.php:242 admin/views/field-group-fields.php:18
|
||||
#: admin/views/settings-info.php:111
|
||||
#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
||||
msgid "New Field"
|
||||
msgstr "Nové pole"
|
||||
|
||||
|
|
@ -170,10 +166,8 @@ msgstr ""
|
|||
msgid "copy"
|
||||
msgstr ""
|
||||
|
||||
#: admin/field-group.php:181
|
||||
#: admin/views/field-group-field-conditional-logic.php:67
|
||||
#: admin/views/field-group-field-conditional-logic.php:162
|
||||
#: admin/views/field-group-locations.php:23
|
||||
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67
|
||||
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23
|
||||
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
|
@ -262,9 +256,8 @@ msgstr ""
|
|||
msgid "Super Admin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/field-group.php:818 admin/field-group.php:826
|
||||
#: admin/field-group.php:840 admin/field-group.php:847
|
||||
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
||||
#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840
|
||||
#: admin/field-group.php:847 admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
||||
#: fields/image.php:226 pro/fields/gallery.php:653
|
||||
msgid "All"
|
||||
msgstr "Vše"
|
||||
|
|
@ -340,8 +333,8 @@ msgstr ""
|
|||
msgid "Title"
|
||||
msgstr "Název"
|
||||
|
||||
#: admin/field-groups.php:517 admin/views/field-group-options.php:98
|
||||
#: admin/views/update-network.php:20 admin/views/update-network.php:28
|
||||
#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20
|
||||
#: admin/views/update-network.php:28
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
|
|
@ -349,8 +342,7 @@ msgstr "Popis"
|
|||
msgid "Status"
|
||||
msgstr "Stav"
|
||||
|
||||
#: admin/field-groups.php:616 admin/settings-info.php:76
|
||||
#: pro/admin/views/settings-updates.php:111
|
||||
#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
||||
msgid "Changelog"
|
||||
msgstr "Seznam změn"
|
||||
|
||||
|
|
@ -370,8 +362,7 @@ msgstr "Zdroje"
|
|||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
|
||||
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73
|
||||
#: pro/admin/views/settings-updates.php:17
|
||||
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
||||
msgid "Updates"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -407,8 +398,8 @@ msgstr "Vytvořil"
|
|||
msgid "Duplicate this item"
|
||||
msgstr ""
|
||||
|
||||
#: admin/field-groups.php:673 admin/field-groups.php:685
|
||||
#: admin/views/field-group-field.php:58 pro/fields/flexible-content.php:516
|
||||
#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58
|
||||
#: pro/fields/flexible-content.php:516
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikovat"
|
||||
|
||||
|
|
@ -441,8 +432,7 @@ msgstr ""
|
|||
msgid "What's New"
|
||||
msgstr ""
|
||||
|
||||
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9
|
||||
#: admin/views/settings-tools.php:31
|
||||
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -473,9 +463,7 @@ msgstr ""
|
|||
|
||||
#: admin/settings-tools.php:332
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<b>Warning</b>. Import tool detected %s field groups already exist and have "
|
||||
"been ignored: %s"
|
||||
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/update.php:113
|
||||
|
|
@ -498,25 +486,20 @@ msgstr "Aktualizovat databázi"
|
|||
msgid "Conditional Logic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:40
|
||||
#: admin/views/field-group-field.php:137 fields/checkbox.php:246
|
||||
#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582
|
||||
#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411
|
||||
#: fields/select.php:425 fields/select.php:439 fields/select.php:453
|
||||
#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784
|
||||
#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
||||
#: fields/user.php:471 fields/wysiwyg.php:384
|
||||
#: pro/admin/views/settings-updates.php:93
|
||||
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137
|
||||
#: fields/checkbox.php:246 fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582
|
||||
#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 fields/select.php:425
|
||||
#: fields/select.php:439 fields/select.php:453 fields/tab.php:172 fields/taxonomy.php:770
|
||||
#: fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
||||
#: fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93
|
||||
msgid "Yes"
|
||||
msgstr "Ano"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:41
|
||||
#: admin/views/field-group-field.php:138 fields/checkbox.php:247
|
||||
#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583
|
||||
#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412
|
||||
#: fields/select.php:426 fields/select.php:440 fields/select.php:454
|
||||
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771
|
||||
#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
||||
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138
|
||||
#: fields/checkbox.php:247 fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583
|
||||
#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 fields/select.php:426
|
||||
#: fields/select.php:440 fields/select.php:454 fields/tab.php:173 fields/taxonomy.php:685
|
||||
#: fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
||||
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
||||
#: pro/admin/views/settings-updates.php:103
|
||||
msgid "No"
|
||||
|
|
@ -526,23 +509,19 @@ msgstr "Ne"
|
|||
msgid "Show this field if"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:111
|
||||
#: admin/views/field-group-locations.php:88
|
||||
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88
|
||||
msgid "is equal to"
|
||||
msgstr "je rovno"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:112
|
||||
#: admin/views/field-group-locations.php:89
|
||||
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89
|
||||
msgid "is not equal to"
|
||||
msgstr "není rovno"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:149
|
||||
#: admin/views/field-group-locations.php:118
|
||||
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118
|
||||
msgid "and"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:164
|
||||
#: admin/views/field-group-locations.php:133
|
||||
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133
|
||||
msgid "Add rule group"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -574,8 +553,7 @@ msgstr ""
|
|||
msgid "Delete"
|
||||
msgstr "Smazat"
|
||||
|
||||
#: admin/views/field-group-field.php:68 fields/oembed.php:212
|
||||
#: fields/taxonomy.php:886
|
||||
#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -656,12 +634,8 @@ msgid "Type"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-fields.php:44
|
||||
msgid ""
|
||||
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
||||
"first field."
|
||||
msgstr ""
|
||||
"Žádná pole. Klikněte na tlačítko<strong>+ Přidat pole</strong> pro vytvoření "
|
||||
"prvního pole."
|
||||
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
||||
msgstr "Žádná pole. Klikněte na tlačítko<strong>+ Přidat pole</strong> pro vytvoření prvního pole."
|
||||
|
||||
#: admin/views/field-group-fields.php:51
|
||||
msgid "Drag and drop to reorder"
|
||||
|
|
@ -676,19 +650,14 @@ msgid "Rules"
|
|||
msgstr "Pravidla"
|
||||
|
||||
#: admin/views/field-group-locations.php:6
|
||||
msgid ""
|
||||
"Create a set of rules to determine which edit screens will use these "
|
||||
"advanced custom fields"
|
||||
msgstr ""
|
||||
"Vytváří sadu pravidel pro určení, na kterých stránkách úprav budou použita "
|
||||
"tato vlastní pole"
|
||||
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
||||
msgstr "Vytváří sadu pravidel pro určení, na kterých stránkách úprav budou použita tato vlastní pole"
|
||||
|
||||
#: admin/views/field-group-locations.php:21
|
||||
msgid "Show this field group if"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-locations.php:41
|
||||
#: admin/views/field-group-locations.php:47
|
||||
#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47
|
||||
msgid "Post"
|
||||
msgstr "Příspěvek"
|
||||
|
||||
|
|
@ -712,8 +681,7 @@ msgstr "Rubrika příspěvku"
|
|||
msgid "Post Taxonomy"
|
||||
msgstr "Taxonomie příspěvku"
|
||||
|
||||
#: admin/views/field-group-locations.php:49
|
||||
#: admin/views/field-group-locations.php:53
|
||||
#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53
|
||||
msgid "Page"
|
||||
msgstr "Stránka"
|
||||
|
||||
|
|
@ -806,7 +774,7 @@ msgid "Top aligned"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-options.php:72
|
||||
|
|
@ -843,8 +811,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/field-group-options.php:110
|
||||
msgid ""
|
||||
"If multiple field groups appear on an edit screen, the first field group's "
|
||||
"options will be used (the one with the lowest order number)"
|
||||
"If multiple field groups appear on an edit screen, the first field group's options will be used (the "
|
||||
"one with the lowest order number)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/field-group-options.php:117
|
||||
|
|
@ -917,9 +885,7 @@ msgstr ""
|
|||
|
||||
#: admin/views/settings-info.php:10
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
||||
"hope you like it."
|
||||
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:23
|
||||
|
|
@ -932,9 +898,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/settings-info.php:29
|
||||
msgid ""
|
||||
"Including the popular Select2 library has improved both usability and speed "
|
||||
"across a number of field types including post object, page link, taxonomy "
|
||||
"and select."
|
||||
"Including the popular Select2 library has improved both usability and speed across a number of field "
|
||||
"types including post object, page link, taxonomy and select."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:33
|
||||
|
|
@ -943,9 +908,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/settings-info.php:34
|
||||
msgid ""
|
||||
"Many fields have undergone a visual refresh to make ACF look better than "
|
||||
"ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
|
||||
"(new) fields!"
|
||||
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are "
|
||||
"seen on the gallery, relationship and oEmbed (new) fields!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:38
|
||||
|
|
@ -954,9 +918,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/settings-info.php:39
|
||||
msgid ""
|
||||
"Redesigning the data architecture has allowed sub fields to live "
|
||||
"independently from their parents. This allows you to drag and drop fields in "
|
||||
"and out of parent fields!"
|
||||
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This "
|
||||
"allows you to drag and drop fields in and out of parent fields!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:45
|
||||
|
|
@ -968,16 +931,15 @@ msgid "Introducing ACF PRO"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:51
|
||||
msgid ""
|
||||
"We're changing the way premium functionality is delivered in an exciting way!"
|
||||
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:52
|
||||
#, php-format
|
||||
msgid ""
|
||||
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
||||
"version of ACF</a>. With both personal and developer licenses available, "
|
||||
"premium functionality is more affordable and accessible than ever before!"
|
||||
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both "
|
||||
"personal and developer licenses available, premium functionality is more affordable and accessible than "
|
||||
"ever before!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:56
|
||||
|
|
@ -986,9 +948,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/settings-info.php:57
|
||||
msgid ""
|
||||
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
||||
"layouts, a beautiful gallery field and the ability to create extra admin "
|
||||
"options pages!"
|
||||
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful "
|
||||
"gallery field and the ability to create extra admin options pages!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:58
|
||||
|
|
@ -1003,16 +964,15 @@ msgstr ""
|
|||
#: admin/views/settings-info.php:63
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
||||
"and claim a free copy of ACF PRO!"
|
||||
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of "
|
||||
"ACF PRO!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:64
|
||||
#, php-format
|
||||
msgid ""
|
||||
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
||||
"but if you do have one, please contact our support team via the <a href=\"%s"
|
||||
"\">help desk</a>"
|
||||
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, "
|
||||
"please contact our support team via the <a href=\"%s\">help desk</a>"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:72
|
||||
|
|
@ -1048,9 +1008,7 @@ msgid "Better version control"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:95
|
||||
msgid ""
|
||||
"New auto export to JSON feature allows field settings to be version "
|
||||
"controlled"
|
||||
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:99
|
||||
|
|
@ -1086,9 +1044,7 @@ msgid "New Settings"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:122
|
||||
msgid ""
|
||||
"Field group settings have been added for label placement and instruction "
|
||||
"placement"
|
||||
msgid "Field group settings have been added for label placement and instruction placement"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:128
|
||||
|
|
@ -1112,8 +1068,7 @@ msgid "Relationship Field"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:139
|
||||
msgid ""
|
||||
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
||||
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:145
|
||||
|
|
@ -1121,9 +1076,7 @@ msgid "Moving Fields"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:146
|
||||
msgid ""
|
||||
"New field group functionality allows you to move a field between groups & "
|
||||
"parents"
|
||||
msgid "New field group functionality allows you to move a field between groups & parents"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
||||
|
|
@ -1139,9 +1092,7 @@ msgid "Better Options Pages"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:156
|
||||
msgid ""
|
||||
"New functions for options page allow creation of both parent and child menu "
|
||||
"pages"
|
||||
msgid "New functions for options page allow creation of both parent and child menu pages"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-info.php:165
|
||||
|
|
@ -1155,11 +1106,10 @@ msgstr "Exportujte skupiny polí do PHP"
|
|||
|
||||
#: admin/views/settings-tools-export.php:17
|
||||
msgid ""
|
||||
"The following code can be used to register a local version of the selected "
|
||||
"field group(s). A local field group can provide many benefits such as faster "
|
||||
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
||||
"the following code to your theme's functions.php file or include it within "
|
||||
"an external file."
|
||||
"The following code can be used to register a local version of the selected field group(s). A local "
|
||||
"field group can provide many benefits such as faster load times, version control & dynamic fields/"
|
||||
"settings. Simply copy and paste the following code to your theme's functions.php file or include it "
|
||||
"within an external file."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-tools.php:5
|
||||
|
|
@ -1172,10 +1122,9 @@ msgstr ""
|
|||
|
||||
#: admin/views/settings-tools.php:38
|
||||
msgid ""
|
||||
"Select the field groups you would like to export and then select your export "
|
||||
"method. Use the download button to export to a .json file which you can then "
|
||||
"import to another ACF installation. Use the generate button to export to PHP "
|
||||
"code which you can place in your theme."
|
||||
"Select the field groups you would like to export and then select your export method. Use the download "
|
||||
"button to export to a .json file which you can then import to another ACF installation. Use the "
|
||||
"generate button to export to PHP code which you can place in your theme."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-tools.php:50
|
||||
|
|
@ -1192,8 +1141,8 @@ msgstr "Importovat skupiny polí"
|
|||
|
||||
#: admin/views/settings-tools.php:67
|
||||
msgid ""
|
||||
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
||||
"you click the import button below, ACF will import the field groups."
|
||||
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button "
|
||||
"below, ACF will import the field groups."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/settings-tools.php:77 fields/file.php:46
|
||||
|
|
@ -1210,8 +1159,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/update-network.php:10
|
||||
msgid ""
|
||||
"The following sites require a DB upgrade. Check the ones you want to update "
|
||||
"and then click “Upgrade Database”."
|
||||
"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade "
|
||||
"Database”."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
||||
|
|
@ -1233,8 +1182,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
||||
msgid ""
|
||||
"It is strongly recommended that you backup your database before proceeding. "
|
||||
"Are you sure you wish to run the updater now?"
|
||||
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to "
|
||||
"run the updater now?"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/update-network.php:157
|
||||
|
|
@ -1256,8 +1205,7 @@ msgstr ""
|
|||
|
||||
#: admin/views/update-notice.php:25
|
||||
msgid ""
|
||||
"Before you start using the new awesome features, please update your database "
|
||||
"to the newest version."
|
||||
"Before you start using the new awesome features, please update your database to the newest version."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/update.php:12
|
||||
|
|
@ -1360,8 +1308,8 @@ msgstr ""
|
|||
msgid "jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
||||
#: pro/fields/flexible-content.php:512 pro/fields/repeater.php:392
|
||||
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512
|
||||
#: pro/fields/repeater.php:392
|
||||
msgid "Layout"
|
||||
msgstr "Typ zobrazení"
|
||||
|
||||
|
|
@ -1423,10 +1371,9 @@ msgstr ""
|
|||
msgid "red : Red"
|
||||
msgstr "cervena : Červená"
|
||||
|
||||
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124
|
||||
#: fields/number.php:150 fields/radio.php:222 fields/select.php:397
|
||||
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
||||
#: fields/url.php:117 fields/wysiwyg.php:345
|
||||
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150
|
||||
#: fields/radio.php:222 fields/select.php:397 fields/text.php:148 fields/textarea.php:145
|
||||
#: fields/true_false.php:115 fields/url.php:117 fields/wysiwyg.php:345
|
||||
msgid "Default Value"
|
||||
msgstr "Výchozí hodnota"
|
||||
|
||||
|
|
@ -1506,39 +1453,34 @@ msgstr ""
|
|||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
||||
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
|
||||
#: fields/wysiwyg.php:346
|
||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149
|
||||
#: fields/textarea.php:146 fields/url.php:118 fields/wysiwyg.php:346
|
||||
msgid "Appears when creating a new post"
|
||||
msgstr ""
|
||||
|
||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
||||
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
|
||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157
|
||||
#: fields/textarea.php:154 fields/url.php:126
|
||||
msgid "Placeholder Text"
|
||||
msgstr ""
|
||||
|
||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
||||
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
|
||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158
|
||||
#: fields/textarea.php:155 fields/url.php:127
|
||||
msgid "Appears within the input"
|
||||
msgstr ""
|
||||
|
||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
||||
#: fields/text.php:166
|
||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
||||
msgid "Prepend"
|
||||
msgstr ""
|
||||
|
||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
||||
#: fields/text.php:167
|
||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
||||
msgid "Appears before the input"
|
||||
msgstr ""
|
||||
|
||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
||||
#: fields/text.php:175
|
||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
||||
msgid "Append"
|
||||
msgstr ""
|
||||
|
||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
||||
#: fields/text.php:176
|
||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
||||
msgid "Appears after the input"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1614,8 +1556,8 @@ msgstr ""
|
|||
msgid "Restrict which files can be uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
||||
#: fields/image.php:290 pro/fields/gallery.php:684 pro/fields/gallery.php:717
|
||||
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290
|
||||
#: pro/fields/gallery.php:684 pro/fields/gallery.php:717
|
||||
msgid "File size"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1671,8 +1613,8 @@ msgstr ""
|
|||
msgid "Set the initial zoom level"
|
||||
msgstr ""
|
||||
|
||||
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279
|
||||
#: fields/oembed.php:262 pro/fields/gallery.php:673 pro/fields/gallery.php:706
|
||||
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262
|
||||
#: pro/fields/gallery.php:673 pro/fields/gallery.php:706
|
||||
msgid "Height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1732,13 +1674,12 @@ msgstr "Velikost náhledu"
|
|||
msgid "Shown when entering data"
|
||||
msgstr ""
|
||||
|
||||
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662
|
||||
#: pro/fields/gallery.php:695
|
||||
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695
|
||||
msgid "Restrict which images can be uploaded"
|
||||
msgstr ""
|
||||
|
||||
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251
|
||||
#: pro/fields/gallery.php:665 pro/fields/gallery.php:698
|
||||
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665
|
||||
#: pro/fields/gallery.php:698
|
||||
msgid "Width"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1808,33 +1749,28 @@ msgstr ""
|
|||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
#: fields/page_link.php:535 fields/post_object.php:401
|
||||
#: fields/relationship.php:690
|
||||
#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690
|
||||
msgid "Filter by Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: fields/page_link.php:543 fields/post_object.php:409
|
||||
#: fields/relationship.php:698
|
||||
#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698
|
||||
msgid "All post types"
|
||||
msgstr ""
|
||||
|
||||
#: fields/page_link.php:549 fields/post_object.php:415
|
||||
#: fields/relationship.php:704
|
||||
#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704
|
||||
msgid "Filter by Taxonomy"
|
||||
msgstr ""
|
||||
|
||||
#: fields/page_link.php:557 fields/post_object.php:423
|
||||
#: fields/relationship.php:712
|
||||
#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712
|
||||
msgid "All taxonomies"
|
||||
msgstr ""
|
||||
|
||||
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406
|
||||
#: fields/taxonomy.php:765 fields/user.php:452
|
||||
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765
|
||||
#: fields/user.php:452
|
||||
msgid "Allow Null?"
|
||||
msgstr "Povolit prázdné?"
|
||||
|
||||
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420
|
||||
#: fields/user.php:466
|
||||
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466
|
||||
msgid "Select multiple values?"
|
||||
msgstr "Vybrat více hodnot?"
|
||||
|
||||
|
|
@ -1842,8 +1778,7 @@ msgstr "Vybrat více hodnot?"
|
|||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: fields/post_object.php:36 fields/post_object.php:462
|
||||
#: fields/relationship.php:769
|
||||
#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769
|
||||
msgid "Post Object"
|
||||
msgstr "Objekt příspěvku"
|
||||
|
||||
|
|
@ -1953,21 +1888,18 @@ msgstr ""
|
|||
|
||||
#: fields/tab.php:133
|
||||
msgid ""
|
||||
"The tab field will display incorrectly when added to a Table style repeater "
|
||||
"field or flexible content field layout"
|
||||
"The tab field will display incorrectly when added to a Table style repeater field or flexible content "
|
||||
"field layout"
|
||||
msgstr ""
|
||||
|
||||
#: fields/tab.php:146
|
||||
msgid ""
|
||||
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
||||
"together."
|
||||
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
||||
msgstr ""
|
||||
|
||||
#: fields/tab.php:148
|
||||
msgid ""
|
||||
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
||||
"defined) will be grouped together using this field's label as the tab "
|
||||
"heading."
|
||||
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped "
|
||||
"together using this field's label as the tab heading."
|
||||
msgstr ""
|
||||
|
||||
#: fields/tab.php:155
|
||||
|
|
@ -2233,8 +2165,7 @@ msgstr ""
|
|||
|
||||
#: pro/admin/views/settings-updates.php:24
|
||||
msgid ""
|
||||
"To unlock updates, please enter your license key below. If you don't have a "
|
||||
"licence key, please see"
|
||||
"To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
||||
msgstr ""
|
||||
|
||||
#: pro/admin/views/settings-updates.php:24
|
||||
|
|
@ -2284,9 +2215,8 @@ msgstr "Konfigurace"
|
|||
#: pro/core/updates.php:186
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To enable updates, please enter your license key on the <a href=\"%s"
|
||||
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
||||
"\">details & pricing</a>"
|
||||
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't "
|
||||
"have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/flexible-content.php:36
|
||||
|
|
@ -2562,11 +2492,10 @@ msgstr ""
|
|||
#~ msgstr "Žádný metabox"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Read documentation, learn the functions and find some tips & tricks "
|
||||
#~ "for your next web project."
|
||||
#~ "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
||||
#~ msgstr ""
|
||||
#~ "Přečtěte si dokumentaci, naučte se funkce a objevte zajímavé tipy & "
|
||||
#~ "triky pro váš další webový projekt."
|
||||
#~ "Přečtěte si dokumentaci, naučte se funkce a objevte zajímavé tipy & triky pro váš další webový "
|
||||
#~ "projekt."
|
||||
|
||||
#~ msgid "Visit the ACF website"
|
||||
#~ msgstr "Navštívit web ACF"
|
||||
|
|
@ -2622,12 +2551,9 @@ msgstr ""
|
|||
#~ msgid "Activate Add-ons."
|
||||
#~ msgstr "Aktivovat přídavky."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
|
||||
#~ "on multiple sites."
|
||||
#~ msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
||||
#~ msgstr ""
|
||||
#~ "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může "
|
||||
#~ "být použit na více webech."
|
||||
#~ "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může být použit na více webech."
|
||||
|
||||
#~ msgid "Find Add-ons"
|
||||
#~ msgstr "Hledat přídavky"
|
||||
|
|
@ -2656,19 +2582,15 @@ msgstr ""
|
|||
#~ msgid "Export Field Groups to XML"
|
||||
#~ msgstr "Exportovat skupiny polí do XML"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "ACF will create a .xml export file which is compatible with the native WP "
|
||||
#~ "import plugin."
|
||||
#~ msgstr ""
|
||||
#~ "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním "
|
||||
#~ "importním pluginem WP."
|
||||
#~ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
||||
#~ msgstr "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním importním pluginem WP."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Imported field groups <b>will</b> appear in the list of editable field "
|
||||
#~ "groups. This is useful for migrating fields groups between Wp websites."
|
||||
#~ "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for "
|
||||
#~ "migrating fields groups between Wp websites."
|
||||
#~ msgstr ""
|
||||
#~ "Importované skupiny polí <b>budou</b> zobrazeny v seznamu upravitelných "
|
||||
#~ "skupin polí. Toto je užitečné pro přesouvání skupin polí mezi WP weby."
|
||||
#~ "Importované skupiny polí <b>budou</b> zobrazeny v seznamu upravitelných skupin polí. Toto je "
|
||||
#~ "užitečné pro přesouvání skupin polí mezi WP weby."
|
||||
|
||||
#~ msgid "Select field group(s) from the list and click \"Export XML\""
|
||||
#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Export XML\""
|
||||
|
|
@ -2701,23 +2623,20 @@ msgstr ""
|
|||
#~ msgstr "Registrovat skupiny polí"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Registered field groups <b>will not</b> appear in the list of editable "
|
||||
#~ "field groups. This is useful for including fields in themes."
|
||||
#~ "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful "
|
||||
#~ "for including fields in themes."
|
||||
#~ msgstr ""
|
||||
#~ "Registrované skupiny polí <b>nebudou</b> zobrazeny v seznamu "
|
||||
#~ "upravitelných skupin polí. Toto je užitečné při používání polí v "
|
||||
#~ "šablonách."
|
||||
#~ "Registrované skupiny polí <b>nebudou</b> zobrazeny v seznamu upravitelných skupin polí. Toto je "
|
||||
#~ "užitečné při používání polí v šablonách."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Please note that if you export and register field groups within the same "
|
||||
#~ "WP, you will see duplicate fields on your edit screens. To fix this, "
|
||||
#~ "please move the original field group to the trash or remove the code from "
|
||||
#~ "your functions.php file."
|
||||
#~ "Please note that if you export and register field groups within the same WP, you will see duplicate "
|
||||
#~ "fields on your edit screens. To fix this, please move the original field group to the trash or "
|
||||
#~ "remove the code from your functions.php file."
|
||||
#~ msgstr ""
|
||||
#~ "Mějte prosím na paměti, že pokud exportujete a registrujete skupiny polí "
|
||||
#~ "v rámci stejného WordPressu, uvidíte na obrazovkách úprav duplikovaná "
|
||||
#~ "pole. Pro nápravu prosím přesuňte původní skupinu polí do koše nebo "
|
||||
#~ "odstraňte kód ze souboru functions.php."
|
||||
#~ "Mějte prosím na paměti, že pokud exportujete a registrujete skupiny polí v rámci stejného "
|
||||
#~ "WordPressu, uvidíte na obrazovkách úprav duplikovaná pole. Pro nápravu prosím přesuňte původní "
|
||||
#~ "skupinu polí do koše nebo odstraňte kód ze souboru functions.php."
|
||||
|
||||
#~ msgid "Select field group(s) from the list and click \"Create PHP\""
|
||||
#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Vytvořit PHP\""
|
||||
|
|
@ -2728,11 +2647,8 @@ msgstr ""
|
|||
#~ msgid "Paste into your functions.php file"
|
||||
#~ msgstr "Vložte jej do vašeho souboru functions.php"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "To activate any Add-ons, edit and use the code in the first few lines."
|
||||
#~ msgstr ""
|
||||
#~ "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních "
|
||||
#~ "několika řádcích."
|
||||
#~ msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
||||
#~ msgstr "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních několika řádcích."
|
||||
|
||||
#~ msgid "Create PHP"
|
||||
#~ msgstr "Vytvořit PHP"
|
||||
|
|
@ -2743,44 +2659,37 @@ msgstr ""
|
|||
#~ msgid ""
|
||||
#~ "/**\n"
|
||||
#~ " * Activate Add-ons\n"
|
||||
#~ " * Here you can enter your activation codes to unlock Add-ons to use in "
|
||||
#~ "your theme. \n"
|
||||
#~ " * Since all activation codes are multi-site licenses, you are allowed to "
|
||||
#~ "include your key in premium themes. \n"
|
||||
#~ " * Use the commented out code to update the database with your activation "
|
||||
#~ "code. \n"
|
||||
#~ " * You may place this code inside an IF statement that only runs on theme "
|
||||
#~ "activation.\n"
|
||||
#~ " * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
|
||||
#~ " * Since all activation codes are multi-site licenses, you are allowed to include your key in "
|
||||
#~ "premium themes. \n"
|
||||
#~ " * Use the commented out code to update the database with your activation code. \n"
|
||||
#~ " * You may place this code inside an IF statement that only runs on theme activation.\n"
|
||||
#~ " */"
|
||||
#~ msgstr ""
|
||||
#~ "/**\n"
|
||||
#~ " * Aktivovat přídavky\n"
|
||||
#~ " * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve "
|
||||
#~ "vaší šabloně. \n"
|
||||
#~ " * Jelikož jsou všechny aktivační kódy licencovány pro použití na více "
|
||||
#~ "webech, můžete je použít ve vaší premium šabloně. \n"
|
||||
#~ " * Použijte zakomentovaný kód pro aktualizaci databáze s vaším aktivačním "
|
||||
#~ "kódem. \n"
|
||||
#~ " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po "
|
||||
#~ "aktivaci šablony.\n"
|
||||
#~ " * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve vaší šabloně. \n"
|
||||
#~ " * Jelikož jsou všechny aktivační kódy licencovány pro použití na více webech, můžete je použít ve "
|
||||
#~ "vaší premium šabloně. \n"
|
||||
#~ " * Použijte zakomentovaný kód pro aktualizaci databáze s vaším aktivačním kódem. \n"
|
||||
#~ " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po aktivaci šablony.\n"
|
||||
#~ " */"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "/**\n"
|
||||
#~ " * Register field groups\n"
|
||||
#~ " * The register_field_group function accepts 1 array which holds the "
|
||||
#~ "relevant data to register a field group\n"
|
||||
#~ " * You may edit the array as you see fit. However, this may result in "
|
||||
#~ "errors if the array is not compatible with ACF\n"
|
||||
#~ " * The register_field_group function accepts 1 array which holds the relevant data to register a "
|
||||
#~ "field group\n"
|
||||
#~ " * You may edit the array as you see fit. However, this may result in errors if the array is not "
|
||||
#~ "compatible with ACF\n"
|
||||
#~ " * This code must run every time the functions.php file is read\n"
|
||||
#~ " */"
|
||||
#~ msgstr ""
|
||||
#~ "/**\n"
|
||||
#~ " * Registrace skupiny polí\n"
|
||||
#~ " * Funkce register_field_group akceptuje pole, které obsahuje relevatní "
|
||||
#~ "data k registraci skupiny polí\n"
|
||||
#~ " * Pole můžete upravit podle potřeb. Může to ovšem vyústit v pole "
|
||||
#~ "nekompatibilní s ACF\n"
|
||||
#~ " * Funkce register_field_group akceptuje pole, které obsahuje relevatní data k registraci skupiny "
|
||||
#~ "polí\n"
|
||||
#~ " * Pole můžete upravit podle potřeb. Může to ovšem vyústit v pole nekompatibilní s ACF\n"
|
||||
#~ " * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
|
||||
#~ " */"
|
||||
|
||||
|
|
@ -2856,12 +2765,8 @@ msgstr ""
|
|||
#~ msgid "Field Order"
|
||||
#~ msgstr "Pořadí pole"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "No fields. Click the \"+ Add Sub Field button\" to create your first "
|
||||
#~ "field."
|
||||
#~ msgstr ""
|
||||
#~ "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření "
|
||||
#~ "prvního pole."
|
||||
#~ msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
||||
#~ msgstr "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření prvního pole."
|
||||
|
||||
#~ msgid "Edit this Field"
|
||||
#~ msgstr "Upravit toto pole"
|
||||
|
|
@ -2993,18 +2898,17 @@ msgstr ""
|
|||
#~ msgstr "Odemkněte přídavek konfigurace s aktivačním kódem"
|
||||
|
||||
#~ msgid "Field groups are created in order <br />from lowest to highest."
|
||||
#~ msgstr ""
|
||||
#~ "Skupiny polí jsou vytvořeny v pořadí <br /> od nejnižšího k nejvyššímu."
|
||||
#~ msgstr "Skupiny polí jsou vytvořeny v pořadí <br /> od nejnižšího k nejvyššímu."
|
||||
|
||||
#~ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
||||
#~ msgstr "<b>Vybrat</b> položky pro <b>skrytí</b> z obrazovky úprav"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "If multiple field groups appear on an edit screen, the first field "
|
||||
#~ "group's options will be used. (the one with the lowest order number)"
|
||||
#~ "If multiple field groups appear on an edit screen, the first field group's options will be used. "
|
||||
#~ "(the one with the lowest order number)"
|
||||
#~ msgstr ""
|
||||
#~ "Pokud se na obrazovce úprav objeví několik skupin polí, bude použito "
|
||||
#~ "nastavení první skupiny. (s nejžším pořadovým číslem)"
|
||||
#~ "Pokud se na obrazovce úprav objeví několik skupin polí, bude použito nastavení první skupiny. (s "
|
||||
#~ "nejžším pořadovým číslem)"
|
||||
|
||||
#~ msgid "Everything Fields deactivated"
|
||||
#~ msgstr "Všechna pole deaktivována"
|
||||
|
|
@ -3026,8 +2930,7 @@ msgstr ""
|
|||
#~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
|
||||
#~ msgstr ""
|
||||
#~ "Filtrovat příspěvky výběrem typu příspěvku<br />\n"
|
||||
#~ "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků "
|
||||
#~ "všech typů příspěvků"
|
||||
#~ "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků všech typů příspěvků"
|
||||
|
||||
#~ msgid "Set to -1 for infinite"
|
||||
#~ msgstr "Nastavte na -1 pro nekonečno"
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.6.6\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
||||
"PO-Revision-Date: 2017-11-30 16:45+0100\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Raphael Hüni <rafhun@gmail.com>\n"
|
||||
"Language: de_CH\n"
|
||||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.4\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -788,7 +788,7 @@ msgstr "Über dem Feld"
|
|||
# @ acf
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Links neben dem Feld"
|
||||
|
||||
# @ acf
|
||||
|
|
@ -1579,7 +1579,8 @@ msgid "jQuery"
|
|||
msgstr "jQuery"
|
||||
|
||||
# @ acf
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -3085,8 +3086,8 @@ msgid "Validate Email"
|
|||
msgstr "E-Mail bestätigen"
|
||||
|
||||
# @ acf
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,15 +3,15 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.6.7\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-12-13 02:10+0100\n"
|
||||
"PO-Revision-Date: 2017-12-19 02:15+0100\n"
|
||||
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.5\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -877,7 +877,7 @@ msgstr "Über dem Feld"
|
|||
# @ acf
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:107
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Links neben dem Feld"
|
||||
|
||||
# @ acf
|
||||
|
|
@ -1580,7 +1580,8 @@ msgid "jQuery"
|
|||
msgstr "jQuery"
|
||||
|
||||
# @ acf
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -3102,8 +3103,8 @@ msgid "Validate Email"
|
|||
msgstr "E-Mail bestätigen"
|
||||
|
||||
# @ acf
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,15 +3,15 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.6.7 Formal\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-12-13 02:11+0100\n"
|
||||
"PO-Revision-Date: 2017-12-19 02:15+0100\n"
|
||||
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
||||
"Language: de_DE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.5\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -877,7 +877,7 @@ msgstr "Über dem Feld"
|
|||
# @ acf
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:107
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Links neben dem Feld"
|
||||
|
||||
# @ acf
|
||||
|
|
@ -1580,7 +1580,8 @@ msgid "jQuery"
|
|||
msgstr "jQuery"
|
||||
|
||||
# @ acf
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -3103,8 +3104,8 @@ msgid "Validate Email"
|
|||
msgstr "E-Mail bestätigen"
|
||||
|
||||
# @ acf
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-06-27 15:35+1000\n"
|
||||
"PO-Revision-Date: 2017-06-27 15:35+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
||||
"Language: es_ES\n"
|
||||
|
|
@ -113,7 +113,7 @@ msgid "Inactive"
|
|||
msgstr "Inactivo"
|
||||
|
||||
#: acf.php:440
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Inactive <span class=\"count\">(%s)</span>"
|
||||
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
||||
msgstr[0] "Activo <span class=\"count\">(%s)</span>"
|
||||
|
|
@ -314,7 +314,7 @@ msgstr "Changelog"
|
|||
#: includes/admin/admin-field-groups.php:614
|
||||
#, php-format
|
||||
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
||||
msgstr ""
|
||||
msgstr "Ver las novedades de la <a href=\"% s \">versión %s</a>."
|
||||
|
||||
#: includes/admin/admin-field-groups.php:617
|
||||
msgid "Resources"
|
||||
|
|
@ -322,27 +322,24 @@ msgstr "Recursos"
|
|||
|
||||
#: includes/admin/admin-field-groups.php:619
|
||||
msgid "Website"
|
||||
msgstr ""
|
||||
msgstr "Sitio web"
|
||||
|
||||
#: includes/admin/admin-field-groups.php:620
|
||||
#, fuzzy
|
||||
msgid "Documentation"
|
||||
msgstr "Ubicación"
|
||||
msgstr "Documentación"
|
||||
|
||||
#: includes/admin/admin-field-groups.php:621
|
||||
#, fuzzy
|
||||
msgid "Support"
|
||||
msgstr "Importar"
|
||||
msgstr "Soporte"
|
||||
|
||||
#: includes/admin/admin-field-groups.php:623
|
||||
#, fuzzy
|
||||
msgid "Pro"
|
||||
msgstr "Adiós Agregados. Hola PRO"
|
||||
msgstr "Pro"
|
||||
|
||||
#: includes/admin/admin-field-groups.php:628
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
||||
msgstr "Gracias por actualizar a %s v%s!"
|
||||
msgstr "Gracias por crear con <a href=\" %s \">ACF</a>."
|
||||
|
||||
#: includes/admin/admin-field-groups.php:668
|
||||
msgid "Duplicate this item"
|
||||
|
|
@ -377,10 +374,9 @@ msgstr "Sincronizar"
|
|||
|
||||
#: includes/admin/admin-field-groups.php:780
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
msgstr "Aplicar"
|
||||
|
||||
#: includes/admin/admin-field-groups.php:798
|
||||
#, fuzzy
|
||||
msgid "Bulk Actions"
|
||||
msgstr "Acciones en lote"
|
||||
|
||||
|
|
@ -400,7 +396,7 @@ msgstr "Revisar sitios y actualizar"
|
|||
|
||||
#: includes/admin/install.php:187
|
||||
msgid "Error validating request"
|
||||
msgstr ""
|
||||
msgstr "¡Error al validar la solicitud!"
|
||||
|
||||
#: includes/admin/install.php:210 includes/admin/views/install.php:105
|
||||
msgid "No updates available."
|
||||
|
|
@ -451,11 +447,11 @@ msgid "Import file empty"
|
|||
msgstr "Archivo de imporación vacío"
|
||||
|
||||
#: includes/admin/settings-tools.php:331
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Imported 1 field group"
|
||||
msgid_plural "Imported %s field groups"
|
||||
msgstr[0] "Importar Field Group"
|
||||
msgstr[1] "Importar Field Group"
|
||||
msgstr[0] "Importar un grupo de campos"
|
||||
msgstr[1] "Importar %s grupos de campos"
|
||||
|
||||
#: includes/admin/views/field-group-field-conditional-logic.php:28
|
||||
msgid "Conditional Logic"
|
||||
|
|
@ -599,7 +595,7 @@ msgstr "Nombre"
|
|||
|
||||
#: includes/admin/views/field-group-fields.php:7
|
||||
msgid "Key"
|
||||
msgstr ""
|
||||
msgstr "Clave"
|
||||
|
||||
#: includes/admin/views/field-group-fields.php:8
|
||||
msgid "Type"
|
||||
|
|
@ -668,7 +664,7 @@ msgstr "Alineada arriba"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:117
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Alineada a la izquierda"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -776,9 +772,8 @@ msgid "Show this field group if"
|
|||
msgstr "Mostrar este grupo de campos si"
|
||||
|
||||
#: includes/admin/views/install-network.php:4
|
||||
#, fuzzy
|
||||
msgid "Upgrade Sites"
|
||||
msgstr "Notificación de Actualización"
|
||||
msgstr "Mejorar los sitios"
|
||||
|
||||
#: includes/admin/views/install-network.php:9
|
||||
#: includes/admin/views/install.php:3
|
||||
|
|
@ -786,13 +781,13 @@ msgid "Advanced Custom Fields Database Upgrade"
|
|||
msgstr "Actualización de Base de Datos de Advanced Custom Fields"
|
||||
|
||||
#: includes/admin/views/install-network.php:11
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The following sites require a DB upgrade. Check the ones you want to update "
|
||||
"and then click %s."
|
||||
msgstr ""
|
||||
"Los siguientes sitios requieren una actualización de base de datos. Tilda "
|
||||
"los que quieres actualizar y haz click en \"Actualizar Base de Datos\"."
|
||||
"Los siguientes sitios requieren una actualización de la base de datos. Marca "
|
||||
"los que desea actualizar y haga clic en %s."
|
||||
|
||||
#: includes/admin/views/install-network.php:20
|
||||
#: includes/admin/views/install-network.php:28
|
||||
|
|
@ -878,17 +873,19 @@ msgid ""
|
|||
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
||||
"latest version."
|
||||
msgstr ""
|
||||
"También asegúrate de que todas las extensiones premium (%s) se hayan "
|
||||
"actualizado a la última versión."
|
||||
|
||||
#: includes/admin/views/install.php:7
|
||||
msgid "Reading upgrade tasks..."
|
||||
msgstr "Leyendo tareas de actualización..."
|
||||
|
||||
#: includes/admin/views/install.php:11
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
||||
msgstr ""
|
||||
"Actualización de base de datos completa. <a href=\"%s\">Regresar al "
|
||||
"Escritorio de Red</a>"
|
||||
"Actualización de la base de datos completada. <a href=\"%s \">Vea las "
|
||||
"novedades</a>"
|
||||
|
||||
#: includes/admin/views/settings-addons.php:17
|
||||
msgid "Download & Install"
|
||||
|
|
@ -1271,9 +1268,8 @@ msgstr "(sin título)"
|
|||
#: includes/fields/class-acf-field-page_link.php:284
|
||||
#: includes/fields/class-acf-field-post_object.php:283
|
||||
#: includes/fields/class-acf-field-taxonomy.php:992
|
||||
#, fuzzy
|
||||
msgid "Parent"
|
||||
msgstr "Página de Nivel Superior"
|
||||
msgstr "Superior"
|
||||
|
||||
#: includes/api/api-helpers.php:3891
|
||||
#, php-format
|
||||
|
|
@ -1346,7 +1342,7 @@ msgstr "Tipo de campo inexistente"
|
|||
|
||||
#: includes/fields.php:305
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
msgstr "Desconocido"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:36
|
||||
#: includes/fields/class-acf-field-taxonomy.php:786
|
||||
|
|
@ -1358,9 +1354,8 @@ msgid "Toggle All"
|
|||
msgstr "Invertir Todos"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:207
|
||||
#, fuzzy
|
||||
msgid "Add new choice"
|
||||
msgstr "Agregar Nuevo Campo"
|
||||
msgstr "Agregar nueva opción"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:246
|
||||
#: includes/fields/class-acf-field-radio.php:250
|
||||
|
|
@ -1388,23 +1383,20 @@ msgid "red : Red"
|
|||
msgstr "rojo : Rojo"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:255
|
||||
#, fuzzy
|
||||
msgid "Allow Custom"
|
||||
msgstr "Permitir Vacío?"
|
||||
msgstr "Permitir personalización"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:260
|
||||
msgid "Allow 'custom' values to be added"
|
||||
msgstr ""
|
||||
msgstr "Permite añadir valores personalizados"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:266
|
||||
#, fuzzy
|
||||
msgid "Save Custom"
|
||||
msgstr "Mover Campo Personalizado"
|
||||
msgstr "Guardar personalización"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:271
|
||||
#, fuzzy
|
||||
msgid "Save 'custom' values to the field's choices"
|
||||
msgstr "Guardar 'otros' valores a las opciones del campo"
|
||||
msgstr "Guardar los valores \"personalizados\" a las opciones del campo"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:277
|
||||
#: includes/fields/class-acf-field-color_picker.php:146
|
||||
|
|
@ -1463,15 +1455,14 @@ msgstr "Especifica el valor retornado en el front end"
|
|||
#: includes/fields/class-acf-field-checkbox.php:316
|
||||
#: includes/fields/class-acf-field-radio.php:320
|
||||
#: includes/fields/class-acf-field-select.php:529
|
||||
#, fuzzy
|
||||
msgid "Value"
|
||||
msgstr "El valor %s es requerido"
|
||||
msgstr "Valor"
|
||||
|
||||
#: includes/fields/class-acf-field-checkbox.php:318
|
||||
#: includes/fields/class-acf-field-radio.php:322
|
||||
#: includes/fields/class-acf-field-select.php:531
|
||||
msgid "Both (Array)"
|
||||
msgstr ""
|
||||
msgstr "Ambos (Array)"
|
||||
|
||||
#: includes/fields/class-acf-field-color_picker.php:36
|
||||
msgid "Color Picker"
|
||||
|
|
@ -1490,22 +1481,19 @@ msgid "Select Color"
|
|||
msgstr "Selecciona Color"
|
||||
|
||||
#: includes/fields/class-acf-field-color_picker.php:86
|
||||
#, fuzzy
|
||||
msgid "Current Color"
|
||||
msgstr "Usuario Actual"
|
||||
msgstr "Color actual"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:36
|
||||
msgid "Date Picker"
|
||||
msgstr "Selector de Fecha"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:44
|
||||
#, fuzzy
|
||||
msgctxt "Date Picker JS closeText"
|
||||
msgid "Done"
|
||||
msgstr "Hecho"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:45
|
||||
#, fuzzy
|
||||
msgctxt "Date Picker JS currentText"
|
||||
msgid "Today"
|
||||
msgstr "Hoy"
|
||||
|
|
@ -1513,17 +1501,17 @@ msgstr "Hoy"
|
|||
#: includes/fields/class-acf-field-date_picker.php:46
|
||||
msgctxt "Date Picker JS nextText"
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
msgstr "Siguiente"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:47
|
||||
msgctxt "Date Picker JS prevText"
|
||||
msgid "Prev"
|
||||
msgstr ""
|
||||
msgstr "Anterior"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:48
|
||||
msgctxt "Date Picker JS weekHeader"
|
||||
msgid "Wk"
|
||||
msgstr ""
|
||||
msgstr "Se"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:223
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:197
|
||||
|
|
@ -1543,19 +1531,16 @@ msgstr "El formato mostrado cuando se edita un post"
|
|||
#: includes/fields/class-acf-field-date_time_picker.php:224
|
||||
#: includes/fields/class-acf-field-time_picker.php:135
|
||||
#: includes/fields/class-acf-field-time_picker.php:150
|
||||
#, fuzzy
|
||||
msgid "Custom:"
|
||||
msgstr "Advanced Custom Fields"
|
||||
msgstr "Personalizado:"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:242
|
||||
#, fuzzy
|
||||
msgid "Save Format"
|
||||
msgstr "Formato de Fecha"
|
||||
msgstr "Guardar formato"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:243
|
||||
#, fuzzy
|
||||
msgid "The format used when saving a value"
|
||||
msgstr "El formato mostrado cuando se edita un post"
|
||||
msgstr "El formato utilizado cuando se guarda un valor"
|
||||
|
||||
#: includes/fields/class-acf-field-date_picker.php:253
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:214
|
||||
|
|
@ -1578,88 +1563,83 @@ msgid "Week Starts On"
|
|||
msgstr "La semana comenza en "
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:36
|
||||
#, fuzzy
|
||||
msgid "Date Time Picker"
|
||||
msgstr "Selector de Fecha"
|
||||
msgstr "Selector de fecha y hora"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:44
|
||||
#, fuzzy
|
||||
msgctxt "Date Time Picker JS timeOnlyTitle"
|
||||
msgid "Choose Time"
|
||||
msgstr "Cerrar Campo"
|
||||
msgstr "Elegir tiempo"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:45
|
||||
msgctxt "Date Time Picker JS timeText"
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
msgstr "Tiempo"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:46
|
||||
msgctxt "Date Time Picker JS hourText"
|
||||
msgid "Hour"
|
||||
msgstr ""
|
||||
msgstr "Hora"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:47
|
||||
msgctxt "Date Time Picker JS minuteText"
|
||||
msgid "Minute"
|
||||
msgstr ""
|
||||
msgstr "minuto"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:48
|
||||
msgctxt "Date Time Picker JS secondText"
|
||||
msgid "Second"
|
||||
msgstr ""
|
||||
msgstr "Segundo"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:49
|
||||
msgctxt "Date Time Picker JS millisecText"
|
||||
msgid "Millisecond"
|
||||
msgstr ""
|
||||
msgstr "Milisegundo"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:50
|
||||
msgctxt "Date Time Picker JS microsecText"
|
||||
msgid "Microsecond"
|
||||
msgstr ""
|
||||
msgstr "Microsegundo"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:51
|
||||
msgctxt "Date Time Picker JS timezoneText"
|
||||
msgid "Time Zone"
|
||||
msgstr ""
|
||||
msgstr "Zona horaria"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:52
|
||||
#, fuzzy
|
||||
msgctxt "Date Time Picker JS currentText"
|
||||
msgid "Now"
|
||||
msgstr "El campo %s puede ser ahora encontrado en el grupo de campos %s"
|
||||
msgstr "Ahora"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:53
|
||||
#, fuzzy
|
||||
msgctxt "Date Time Picker JS closeText"
|
||||
msgid "Done"
|
||||
msgstr "Hecho"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:54
|
||||
#, fuzzy
|
||||
msgctxt "Date Time Picker JS selectText"
|
||||
msgid "Select"
|
||||
msgstr "Selección"
|
||||
msgstr "Elige"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:56
|
||||
msgctxt "Date Time Picker JS amText"
|
||||
msgid "AM"
|
||||
msgstr ""
|
||||
msgstr "AM"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:57
|
||||
msgctxt "Date Time Picker JS amTextShort"
|
||||
msgid "A"
|
||||
msgstr ""
|
||||
msgstr "A"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:60
|
||||
msgctxt "Date Time Picker JS pmText"
|
||||
msgid "PM"
|
||||
msgstr ""
|
||||
msgstr "PM"
|
||||
|
||||
#: includes/fields/class-acf-field-date_time_picker.php:61
|
||||
msgctxt "Date Time Picker JS pmTextShort"
|
||||
msgid "P"
|
||||
msgstr ""
|
||||
msgstr "P"
|
||||
|
||||
#: includes/fields/class-acf-field-email.php:36
|
||||
msgid "Email"
|
||||
|
|
@ -1740,9 +1720,8 @@ msgid "Uploaded to this post"
|
|||
msgstr "Subidos a este post"
|
||||
|
||||
#: includes/fields/class-acf-field-file.php:145
|
||||
#, fuzzy
|
||||
msgid "File name"
|
||||
msgstr "Nombre de Archivo"
|
||||
msgstr "Nombre del archivo"
|
||||
|
||||
#: includes/fields/class-acf-field-file.php:149
|
||||
#: includes/fields/class-acf-field-file.php:252
|
||||
|
|
@ -1886,9 +1865,8 @@ msgid "Customise the map height"
|
|||
msgstr "Personalizar altura de mapa"
|
||||
|
||||
#: includes/fields/class-acf-field-group.php:36
|
||||
#, fuzzy
|
||||
msgid "Group"
|
||||
msgstr "Añadir nuevo Field Group"
|
||||
msgstr "Grupo"
|
||||
|
||||
#: includes/fields/class-acf-field-group.php:469
|
||||
#: pro/fields/class-acf-field-repeater.php:453
|
||||
|
|
@ -1899,6 +1877,7 @@ msgstr "Sub Campos"
|
|||
#: pro/fields/class-acf-field-clone.php:890
|
||||
msgid "Specify the style used to render the selected fields"
|
||||
msgstr ""
|
||||
"Especifique el estilo utilizado para representar los campos seleccionados"
|
||||
|
||||
#: includes/fields/class-acf-field-group.php:491
|
||||
#: pro/fields/class-acf-field-clone.php:895
|
||||
|
|
@ -1994,28 +1973,24 @@ msgid "Width"
|
|||
msgstr "Ancho"
|
||||
|
||||
#: includes/fields/class-acf-field-link.php:36
|
||||
#, fuzzy
|
||||
msgid "Link"
|
||||
msgstr "Link de página"
|
||||
msgstr "Enlace"
|
||||
|
||||
#: includes/fields/class-acf-field-link.php:146
|
||||
#, fuzzy
|
||||
msgid "Select Link"
|
||||
msgstr "Seleccionar archivo"
|
||||
msgstr "Elige el enlace"
|
||||
|
||||
#: includes/fields/class-acf-field-link.php:151
|
||||
msgid "Opens in a new window/tab"
|
||||
msgstr ""
|
||||
msgstr "Abrir en una nueva ventana/pestaña"
|
||||
|
||||
#: includes/fields/class-acf-field-link.php:186
|
||||
#, fuzzy
|
||||
msgid "Link Array"
|
||||
msgstr "Array de Archivo"
|
||||
msgstr "Matriz de enlace"
|
||||
|
||||
#: includes/fields/class-acf-field-link.php:187
|
||||
#, fuzzy
|
||||
msgid "Link URL"
|
||||
msgstr "URL de Archivo"
|
||||
msgstr "URL del enlace"
|
||||
|
||||
#: includes/fields/class-acf-field-message.php:36
|
||||
#: includes/fields/class-acf-field-message.php:115
|
||||
|
|
@ -2149,7 +2124,7 @@ msgstr "Permitir Vacío?"
|
|||
|
||||
#: includes/fields/class-acf-field-page_link.php:538
|
||||
msgid "Allow Archives URLs"
|
||||
msgstr ""
|
||||
msgstr "Permitir las URLs de los archivos"
|
||||
|
||||
#: includes/fields/class-acf-field-page_link.php:548
|
||||
#: includes/fields/class-acf-field-post_object.php:437
|
||||
|
|
@ -2266,83 +2241,80 @@ msgstr[1] "%s requiere al menos %s selecciones"
|
|||
|
||||
#: includes/fields/class-acf-field-select.php:36
|
||||
#: includes/fields/class-acf-field-taxonomy.php:791
|
||||
#, fuzzy
|
||||
msgctxt "noun"
|
||||
msgid "Select"
|
||||
msgstr "Selección"
|
||||
msgstr "Elige"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:49
|
||||
msgctxt "Select2 JS matches_1"
|
||||
msgid "One result is available, press enter to select it."
|
||||
msgstr ""
|
||||
msgstr "Hay un resultado disponible, pulse Enter para seleccionarlo."
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:50
|
||||
#, php-format
|
||||
msgctxt "Select2 JS matches_n"
|
||||
msgid "%d results are available, use up and down arrow keys to navigate."
|
||||
msgstr ""
|
||||
"%d resultados disponibles, utilice las flechas arriba y abajo para navegar "
|
||||
"por los resultados."
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:51
|
||||
#, fuzzy
|
||||
msgctxt "Select2 JS matches_0"
|
||||
msgid "No matches found"
|
||||
msgstr "No se encontraron resultados"
|
||||
msgstr "No se encontraron coincidencias"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:52
|
||||
msgctxt "Select2 JS input_too_short_1"
|
||||
msgid "Please enter 1 or more characters"
|
||||
msgstr ""
|
||||
msgstr "Por favor, introduce 1 o más caracteres"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:53
|
||||
#, php-format
|
||||
msgctxt "Select2 JS input_too_short_n"
|
||||
msgid "Please enter %d or more characters"
|
||||
msgstr ""
|
||||
msgstr "Por favor escribe %d o más caracteres"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:54
|
||||
msgctxt "Select2 JS input_too_long_1"
|
||||
msgid "Please delete 1 character"
|
||||
msgstr ""
|
||||
msgstr "Por favor, borra 1 carácter"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:55
|
||||
#, php-format
|
||||
msgctxt "Select2 JS input_too_long_n"
|
||||
msgid "Please delete %d characters"
|
||||
msgstr ""
|
||||
msgstr "Por favor, elimina %d caracteres"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:56
|
||||
msgctxt "Select2 JS selection_too_long_1"
|
||||
msgid "You can only select 1 item"
|
||||
msgstr ""
|
||||
msgstr "Sólo puede seleccionar 1 elemento"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:57
|
||||
#, php-format
|
||||
msgctxt "Select2 JS selection_too_long_n"
|
||||
msgid "You can only select %d items"
|
||||
msgstr ""
|
||||
msgstr "Sólo puede seleccionar %d elementos"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:58
|
||||
msgctxt "Select2 JS load_more"
|
||||
msgid "Loading more results…"
|
||||
msgstr ""
|
||||
msgstr "Cargando más resultados…"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:59
|
||||
#, fuzzy
|
||||
msgctxt "Select2 JS searching"
|
||||
msgid "Searching…"
|
||||
msgstr "Buscar Campos"
|
||||
msgstr "Buscando…"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:60
|
||||
#, fuzzy
|
||||
msgctxt "Select2 JS load_fail"
|
||||
msgid "Loading failed"
|
||||
msgstr "Validación fallida"
|
||||
msgstr "Error al cargar"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:270 includes/media.php:54
|
||||
#, fuzzy
|
||||
msgctxt "verb"
|
||||
msgid "Select"
|
||||
msgstr "Selección"
|
||||
msgstr "Elige"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:504
|
||||
#: includes/fields/class-acf-field-true_false.php:159
|
||||
|
|
@ -2354,13 +2326,12 @@ msgid "Use AJAX to lazy load choices?"
|
|||
msgstr "Usar AJAX para hacer lazy load de las opciones?"
|
||||
|
||||
#: includes/fields/class-acf-field-select.php:525
|
||||
#, fuzzy
|
||||
msgid "Specify the value returned"
|
||||
msgstr "Especifica el valor retornado en el front end"
|
||||
msgstr "Especifique el valor devuelto"
|
||||
|
||||
#: includes/fields/class-acf-field-separator.php:36
|
||||
msgid "Separator"
|
||||
msgstr ""
|
||||
msgstr "Separador"
|
||||
|
||||
#: includes/fields/class-acf-field-tab.php:36
|
||||
msgid "Tab"
|
||||
|
|
@ -2523,9 +2494,8 @@ msgid "Sets the textarea height"
|
|||
msgstr "Setea el alto del área de texto"
|
||||
|
||||
#: includes/fields/class-acf-field-time_picker.php:36
|
||||
#, fuzzy
|
||||
msgid "Time Picker"
|
||||
msgstr "Selector de Fecha"
|
||||
msgstr "Selector de hora"
|
||||
|
||||
#: includes/fields/class-acf-field-true_false.php:36
|
||||
msgid "True / False"
|
||||
|
|
@ -2539,25 +2509,23 @@ msgstr "Sí"
|
|||
|
||||
#: includes/fields/class-acf-field-true_false.php:142
|
||||
msgid "Displays text alongside the checkbox"
|
||||
msgstr ""
|
||||
msgstr "Muestra el texto junto a la casilla de verificación"
|
||||
|
||||
#: includes/fields/class-acf-field-true_false.php:170
|
||||
#, fuzzy
|
||||
msgid "On Text"
|
||||
msgstr "Texto"
|
||||
msgstr "Sobre texto"
|
||||
|
||||
#: includes/fields/class-acf-field-true_false.php:171
|
||||
msgid "Text shown when active"
|
||||
msgstr ""
|
||||
msgstr "Texto mostrado cuando está activo"
|
||||
|
||||
#: includes/fields/class-acf-field-true_false.php:180
|
||||
#, fuzzy
|
||||
msgid "Off Text"
|
||||
msgstr "Texto"
|
||||
msgstr "Sin texto"
|
||||
|
||||
#: includes/fields/class-acf-field-true_false.php:181
|
||||
msgid "Text shown when inactive"
|
||||
msgstr ""
|
||||
msgstr "Texto mostrado cuando está inactivo"
|
||||
|
||||
#: includes/fields/class-acf-field-url.php:36
|
||||
msgid "Url"
|
||||
|
|
@ -2594,7 +2562,7 @@ msgstr "Texto"
|
|||
|
||||
#: includes/fields/class-acf-field-wysiwyg.php:392
|
||||
msgid "Click to initialize TinyMCE"
|
||||
msgstr ""
|
||||
msgstr "Haz clic para iniciar TinyMCE"
|
||||
|
||||
#: includes/fields/class-acf-field-wysiwyg.php:445
|
||||
msgid "Tabs"
|
||||
|
|
@ -2622,11 +2590,11 @@ msgstr "¿Mostrar el botón Media Upload?"
|
|||
|
||||
#: includes/fields/class-acf-field-wysiwyg.php:479
|
||||
msgid "Delay initialization?"
|
||||
msgstr ""
|
||||
msgstr "¿Inicialización retrasada?"
|
||||
|
||||
#: includes/fields/class-acf-field-wysiwyg.php:480
|
||||
msgid "TinyMCE will not be initalized until field is clicked"
|
||||
msgstr ""
|
||||
msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo"
|
||||
|
||||
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
||||
#: pro/admin/admin-options-page.php:304
|
||||
|
|
@ -2634,9 +2602,8 @@ msgid "Edit field group"
|
|||
msgstr "Editar grupo de campos"
|
||||
|
||||
#: includes/forms/form-front.php:55
|
||||
#, fuzzy
|
||||
msgid "Validate Email"
|
||||
msgstr "Validación fallida"
|
||||
msgstr "Validar correo electrónico"
|
||||
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81
|
||||
|
|
@ -2649,7 +2616,7 @@ msgstr "Post actualizado"
|
|||
|
||||
#: includes/forms/form-front.php:229
|
||||
msgid "Spam Detected"
|
||||
msgstr ""
|
||||
msgstr "Spam detectado"
|
||||
|
||||
#: includes/input.php:258
|
||||
msgid "Expand Details"
|
||||
|
|
@ -2683,7 +2650,7 @@ msgstr "Restringido"
|
|||
|
||||
#: includes/input.php:268
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Cancelar"
|
||||
|
||||
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
||||
msgid "Post"
|
||||
|
|
@ -2704,7 +2671,7 @@ msgstr "Adjunto"
|
|||
#: includes/locations/class-acf-location-attachment.php:113
|
||||
#, php-format
|
||||
msgid "All %s formats"
|
||||
msgstr ""
|
||||
msgstr "%s formatos"
|
||||
|
||||
#: includes/locations/class-acf-location-comment.php:27
|
||||
msgid "Comment"
|
||||
|
|
@ -2736,20 +2703,19 @@ msgstr "Viendo back end"
|
|||
|
||||
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
||||
msgid "Menu Item"
|
||||
msgstr ""
|
||||
msgstr "Elemento del menú"
|
||||
|
||||
#: includes/locations/class-acf-location-nav-menu.php:27
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
msgstr "Menú"
|
||||
|
||||
#: includes/locations/class-acf-location-nav-menu.php:113
|
||||
#, fuzzy
|
||||
msgid "Menu Locations"
|
||||
msgstr "Ubicación"
|
||||
msgstr "Localizaciones de menú"
|
||||
|
||||
#: includes/locations/class-acf-location-nav-menu.php:123
|
||||
msgid "Menus"
|
||||
msgstr ""
|
||||
msgstr "Menús"
|
||||
|
||||
#: includes/locations/class-acf-location-page-parent.php:27
|
||||
msgid "Page Parent"
|
||||
|
|
@ -2805,9 +2771,8 @@ msgid "Post Taxonomy"
|
|||
msgstr "Taxonomía de Post"
|
||||
|
||||
#: includes/locations/class-acf-location-post-template.php:29
|
||||
#, fuzzy
|
||||
msgid "Post Template"
|
||||
msgstr "Plantilla de Página"
|
||||
msgstr "Plantilla de entrada:"
|
||||
|
||||
#: includes/locations/class-acf-location-taxonomy.php:27
|
||||
msgid "Taxonomy Term"
|
||||
|
|
@ -2834,13 +2799,11 @@ msgid "Widget"
|
|||
msgstr "Widget"
|
||||
|
||||
#: includes/media.php:55
|
||||
#, fuzzy
|
||||
msgctxt "verb"
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: includes/media.php:56
|
||||
#, fuzzy
|
||||
msgctxt "verb"
|
||||
msgid "Update"
|
||||
msgstr "Actualizar"
|
||||
|
|
@ -2887,20 +2850,19 @@ msgid "Activate License"
|
|||
msgstr "Activar Licencia"
|
||||
|
||||
#: pro/admin/views/html-settings-updates.php:21
|
||||
#, fuzzy
|
||||
msgid "License Information"
|
||||
msgstr "Información de Actualización"
|
||||
msgstr "Información de la licencia"
|
||||
|
||||
#: pro/admin/views/html-settings-updates.php:24
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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</"
|
||||
"a>."
|
||||
msgstr ""
|
||||
"Para habilitar actualizaciones, por favor ingresa tu clave de licencia en la "
|
||||
"página de <a href=\"%s\">Actualizaciones</a>. Si no tiene una clave de "
|
||||
"licencia, por favor mira <a href=\"%s\">detalles y precios</a>"
|
||||
"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"
|
||||
"\" target=\"_blank\">detalles y precios</a>."
|
||||
|
||||
#: pro/admin/views/html-settings-updates.php:33
|
||||
msgid "License Key"
|
||||
|
|
@ -2941,11 +2903,11 @@ msgstr "Notificación de Actualización"
|
|||
#: pro/fields/class-acf-field-clone.php:36
|
||||
msgctxt "noun"
|
||||
msgid "Clone"
|
||||
msgstr ""
|
||||
msgstr "Clonar"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:858
|
||||
msgid "Select one or more fields you wish to clone"
|
||||
msgstr ""
|
||||
msgstr "Elige uno o más campos que quieras clonar"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:875
|
||||
msgid "Display"
|
||||
|
|
@ -2953,50 +2915,47 @@ msgstr "Mostrar"
|
|||
|
||||
#: pro/fields/class-acf-field-clone.php:876
|
||||
msgid "Specify the style used to render the clone field"
|
||||
msgstr ""
|
||||
msgstr "Especifique el estilo utilizado para procesar el campo de clonación"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:881
|
||||
msgid "Group (displays selected fields in a group within this field)"
|
||||
msgstr ""
|
||||
"Grupo (muestra los campos seleccionados en un grupo dentro de este campo)"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:882
|
||||
msgid "Seamless (replaces this field with selected fields)"
|
||||
msgstr ""
|
||||
msgstr "Transparente (reemplaza este campo con los campos seleccionados)"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:903
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Labels will be displayed as %s"
|
||||
msgstr "Los elementos seleccionados serán mostrados en cada resultado"
|
||||
msgstr "Las etiquetas se mostrarán como %s"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:906
|
||||
#, fuzzy
|
||||
msgid "Prefix Field Labels"
|
||||
msgstr "Etiqueta del campo"
|
||||
msgstr "Etiquetas del prefijo de campo"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:917
|
||||
#, php-format
|
||||
msgid "Values will be saved as %s"
|
||||
msgstr ""
|
||||
msgstr "Los valores se guardarán como %s"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:920
|
||||
#, fuzzy
|
||||
msgid "Prefix Field Names"
|
||||
msgstr "Nombre del campo"
|
||||
msgstr "Nombres de prefijos de campos"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:1038
|
||||
#, fuzzy
|
||||
msgid "Unknown field"
|
||||
msgstr "Debajo de los campos"
|
||||
msgstr "Campo desconocido"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:1077
|
||||
#, fuzzy
|
||||
msgid "Unknown field group"
|
||||
msgstr "Sincronizar grupo de campos"
|
||||
msgstr "Grupo de campos desconocido"
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:1081
|
||||
#, php-format
|
||||
msgid "All fields from %s field group"
|
||||
msgstr ""
|
||||
msgstr "Todos los campos del grupo de campo %s"
|
||||
|
||||
#: pro/fields/class-acf-field-flexible-content.php:42
|
||||
#: pro/fields/class-acf-field-repeater.php:230
|
||||
|
|
@ -3060,7 +3019,7 @@ msgstr "Remover esquema"
|
|||
#: pro/fields/class-acf-field-flexible-content.php:425
|
||||
#: pro/fields/class-acf-field-repeater.php:360
|
||||
msgid "Click to toggle"
|
||||
msgstr ""
|
||||
msgstr "Clic para mostrar"
|
||||
|
||||
#: pro/fields/class-acf-field-flexible-content.php:571
|
||||
msgid "Reorder Layout"
|
||||
|
|
@ -3116,14 +3075,12 @@ msgid "Length"
|
|||
msgstr "Longitud"
|
||||
|
||||
#: pro/fields/class-acf-field-gallery.php:379
|
||||
#, fuzzy
|
||||
msgid "Caption"
|
||||
msgstr "Opciones"
|
||||
msgstr "Leyenda"
|
||||
|
||||
#: pro/fields/class-acf-field-gallery.php:388
|
||||
#, fuzzy
|
||||
msgid "Alt Text"
|
||||
msgstr "Texto"
|
||||
msgstr "Texto Alt"
|
||||
|
||||
#: pro/fields/class-acf-field-gallery.php:559
|
||||
msgid "Add to gallery"
|
||||
|
|
@ -3163,20 +3120,19 @@ msgstr "Selección Máxima"
|
|||
|
||||
#: pro/fields/class-acf-field-gallery.php:657
|
||||
msgid "Insert"
|
||||
msgstr ""
|
||||
msgstr "Insertar"
|
||||
|
||||
#: pro/fields/class-acf-field-gallery.php:658
|
||||
msgid "Specify where new attachments are added"
|
||||
msgstr ""
|
||||
msgstr "Especificar dónde se agregan nuevos adjuntos"
|
||||
|
||||
#: pro/fields/class-acf-field-gallery.php:662
|
||||
#, fuzzy
|
||||
msgid "Append to the end"
|
||||
msgstr "Aparece luego del campo"
|
||||
msgstr "Añadir al final"
|
||||
|
||||
#: pro/fields/class-acf-field-gallery.php:663
|
||||
msgid "Prepend to the beginning"
|
||||
msgstr ""
|
||||
msgstr "Adelantar hasta el principio"
|
||||
|
||||
#: pro/fields/class-acf-field-repeater.php:47
|
||||
msgid "Minimum rows reached ({min} rows)"
|
||||
|
|
@ -3195,13 +3151,12 @@ msgid "Remove row"
|
|||
msgstr "Remover fila"
|
||||
|
||||
#: pro/fields/class-acf-field-repeater.php:483
|
||||
#, fuzzy
|
||||
msgid "Collapsed"
|
||||
msgstr "Colapsar Detalles"
|
||||
msgstr "Colapsado"
|
||||
|
||||
#: pro/fields/class-acf-field-repeater.php:484
|
||||
msgid "Select a sub field to show when row is collapsed"
|
||||
msgstr ""
|
||||
msgstr "Elige un subcampo para indicar cuándo se colapsa la fila"
|
||||
|
||||
#: pro/fields/class-acf-field-repeater.php:494
|
||||
msgid "Minimum Rows"
|
||||
|
|
@ -3224,25 +3179,23 @@ msgid "Options Updated"
|
|||
msgstr "Opciones Actualizadas"
|
||||
|
||||
#: pro/updates.php:97
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To enable updates, please enter your license key on the <a href=\"%s"
|
||||
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
||||
"\">details & pricing</a>."
|
||||
msgstr ""
|
||||
"Para habilitar actualizaciones, por favor ingresa tu clave de licencia en la "
|
||||
"página de <a href=\"%s\">Actualizaciones</a>. Si no tiene una clave de "
|
||||
"licencia, por favor mira <a href=\"%s\">detalles y precios</a>"
|
||||
"Para habilitar actualizaciones, por favor, introduzca su llave de licencia "
|
||||
"en la <a href=\"%s\">página de actualizaciones</a>. Si no tiene una llave de "
|
||||
"licencia, por favor, consulta <a href=\"%s\">detalles y precios</a>."
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
#, fuzzy
|
||||
msgid "https://www.advancedcustomfields.com/"
|
||||
msgstr "http://www.advancedcustomfields.com/"
|
||||
msgstr "https://www.advancedcustomfields.com/"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
#, fuzzy
|
||||
msgid "Elliot Condon"
|
||||
msgstr "elliot condon"
|
||||
msgstr "Elliot Condon"
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.elliotcondon.com/"
|
||||
|
|
|
|||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
lang/acf-fi.mo
BIN
lang/acf-fi.mo
Binary file not shown.
|
|
@ -3,14 +3,14 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-09-22 14:17+0300\n"
|
||||
"PO-Revision-Date: 2017-09-22 14:44+0300\n"
|
||||
"Last-Translator: Sauli Rajala <sauli.rajala@valu.fi>\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.2\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
|
|
@ -662,7 +662,7 @@ msgstr "Tasaa ylös"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Tasaa vasemmalle"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
|
|||
Binary file not shown.
1056
lang/acf-fr_FR.po
1056
lang/acf-fr_FR.po
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -10,7 +10,7 @@ msgstr ""
|
|||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.11\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -660,7 +660,7 @@ msgstr "מיושר למעלה"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "מיושר לשמאל"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1282,7 +1282,8 @@ msgstr "יחסי"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2588,8 +2589,8 @@ msgstr ""
|
|||
msgid "Validate Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "עדכון"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -3,15 +3,14 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2016-01-25 09:18-0800\n"
|
||||
"PO-Revision-Date: 2016-11-03 17:12+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
|
||||
"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-WPHeader: acf.php\n"
|
||||
|
|
@ -33,8 +32,7 @@ msgstr "Grup Bidang"
|
|||
msgid "Field Group"
|
||||
msgstr "Grup Bidang"
|
||||
|
||||
#: acf.php:268 acf.php:300 admin/admin.php:62
|
||||
#: pro/fields/flexible-content.php:505
|
||||
#: acf.php:268 acf.php:300 admin/admin.php:62 pro/fields/flexible-content.php:505
|
||||
msgid "Add New"
|
||||
msgstr "Tambah Baru"
|
||||
|
||||
|
|
@ -66,8 +64,7 @@ msgstr "Tidak Ada Grup Bidang Ditemukan"
|
|||
msgid "No Field Groups found in Trash"
|
||||
msgstr "Tidak Ditemukan Grup Bidang di Tong Sampah"
|
||||
|
||||
#: acf.php:298 admin/field-group.php:182 admin/field-group.php:213
|
||||
#: admin/field-groups.php:528
|
||||
#: acf.php:298 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:528
|
||||
msgid "Fields"
|
||||
msgstr "Bidang"
|
||||
|
||||
|
|
@ -83,8 +80,7 @@ msgstr "Tambah bidang baru"
|
|||
msgid "Edit Field"
|
||||
msgstr "Edit Bidang"
|
||||
|
||||
#: acf.php:303 admin/views/field-group-fields.php:18
|
||||
#: admin/views/settings-info.php:111
|
||||
#: acf.php:303 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
||||
msgid "New Field"
|
||||
msgstr "Bidang Baru"
|
||||
|
||||
|
|
@ -104,8 +100,7 @@ msgstr "Tidak ada bidang yang ditemukan"
|
|||
msgid "No Fields found in Trash"
|
||||
msgstr "Tidak ada bidang yang ditemukan di tempat sampah"
|
||||
|
||||
#: acf.php:346 admin/field-group.php:283 admin/field-groups.php:586
|
||||
#: admin/views/field-group-options.php:13
|
||||
#: acf.php:346 admin/field-group.php:283 admin/field-groups.php:586 admin/views/field-group-options.php:13
|
||||
msgid "Disabled"
|
||||
msgstr "Dimatikan"
|
||||
|
||||
|
|
@ -167,10 +162,8 @@ msgstr "Judul grup bidang diperlukan"
|
|||
msgid "copy"
|
||||
msgstr "salin"
|
||||
|
||||
#: admin/field-group.php:181
|
||||
#: admin/views/field-group-field-conditional-logic.php:62
|
||||
#: admin/views/field-group-field-conditional-logic.php:162
|
||||
#: admin/views/field-group-locations.php:59
|
||||
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:62
|
||||
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:59
|
||||
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3401
|
||||
msgid "or"
|
||||
msgstr "atau"
|
||||
|
|
@ -197,9 +190,7 @@ msgstr "Nol"
|
|||
|
||||
#: admin/field-group.php:188 core/input.php:128
|
||||
msgid "The changes you made will be lost if you navigate away from this page"
|
||||
msgstr ""
|
||||
"Perubahan yang Anda buat akan hilang jika Anda menavigasi keluar dari laman "
|
||||
"ini"
|
||||
msgstr "Perubahan yang Anda buat akan hilang jika Anda menavigasi keluar dari laman ini"
|
||||
|
||||
#: admin/field-group.php:189
|
||||
msgid "The string \"field_\" may not be used at the start of a field name"
|
||||
|
|
@ -261,10 +252,9 @@ msgstr "Melihat back end"
|
|||
msgid "Super Admin"
|
||||
msgstr "Super Admin"
|
||||
|
||||
#: admin/field-group.php:826 admin/field-group.php:834
|
||||
#: admin/field-group.php:848 admin/field-group.php:855
|
||||
#: admin/field-group.php:870 admin/field-group.php:880 fields/file.php:235
|
||||
#: fields/image.php:226 pro/fields/gallery.php:661
|
||||
#: admin/field-group.php:826 admin/field-group.php:834 admin/field-group.php:848 admin/field-group.php:855
|
||||
#: admin/field-group.php:870 admin/field-group.php:880 fields/file.php:235 fields/image.php:226
|
||||
#: pro/fields/gallery.php:661
|
||||
msgid "All"
|
||||
msgstr "Semua"
|
||||
|
||||
|
|
@ -333,8 +323,8 @@ msgstr "Sinkronisasi tersedia"
|
|||
msgid "Title"
|
||||
msgstr "Judul"
|
||||
|
||||
#: admin/field-groups.php:526 admin/views/field-group-options.php:93
|
||||
#: admin/views/update-network.php:20 admin/views/update-network.php:28
|
||||
#: admin/field-groups.php:526 admin/views/field-group-options.php:93 admin/views/update-network.php:20
|
||||
#: admin/views/update-network.php:28
|
||||
msgid "Description"
|
||||
msgstr "Deskripsi"
|
||||
|
||||
|
|
@ -342,8 +332,7 @@ msgstr "Deskripsi"
|
|||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#: admin/field-groups.php:624 admin/settings-info.php:76
|
||||
#: pro/admin/views/settings-updates.php:111
|
||||
#: admin/field-groups.php:624 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
||||
msgid "Changelog"
|
||||
msgstr "Changelog"
|
||||
|
||||
|
|
@ -363,8 +352,7 @@ msgstr "Sumber"
|
|||
msgid "Getting Started"
|
||||
msgstr "Perkenalan"
|
||||
|
||||
#: admin/field-groups.php:630 pro/admin/settings-updates.php:73
|
||||
#: pro/admin/views/settings-updates.php:17
|
||||
#: admin/field-groups.php:630 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
||||
msgid "Updates"
|
||||
msgstr "Mutakhir"
|
||||
|
||||
|
|
@ -400,8 +388,8 @@ msgstr "Dibuat oleh"
|
|||
msgid "Duplicate this item"
|
||||
msgstr "Duplikat item ini"
|
||||
|
||||
#: admin/field-groups.php:684 admin/field-groups.php:700
|
||||
#: admin/views/field-group-field.php:59 pro/fields/flexible-content.php:504
|
||||
#: admin/field-groups.php:684 admin/field-groups.php:700 admin/views/field-group-field.php:59
|
||||
#: pro/fields/flexible-content.php:504
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikat"
|
||||
|
||||
|
|
@ -434,8 +422,7 @@ msgstr "Info"
|
|||
msgid "What's New"
|
||||
msgstr "Apa yang Baru"
|
||||
|
||||
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:23
|
||||
#: admin/views/settings-tools.php:31
|
||||
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:23 admin/views/settings-tools.php:31
|
||||
msgid "Tools"
|
||||
msgstr "Perkakas"
|
||||
|
||||
|
|
@ -466,12 +453,8 @@ msgstr "<b>Sukses</b>. Impor alat ditambahkan %s grup bidang: %s"
|
|||
|
||||
#: admin/settings-tools.php:332
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<b>Warning</b>. Import tool detected %s field groups already exist and have "
|
||||
"been ignored: %s"
|
||||
msgstr ""
|
||||
"<b>Peringatan</b>. Impor alat terdeteksi grup bidang %s sudah ada dan telah "
|
||||
"diabaikan: %s"
|
||||
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
||||
msgstr "<b>Peringatan</b>. Impor alat terdeteksi grup bidang %s sudah ada dan telah diabaikan: %s"
|
||||
|
||||
#: admin/update.php:113
|
||||
msgid "Upgrade ACF"
|
||||
|
|
@ -493,27 +476,21 @@ msgstr "Tingkatkan Database"
|
|||
msgid "Conditional Logic"
|
||||
msgstr "Logika Kondisional"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:40
|
||||
#: admin/views/field-group-field.php:141 fields/checkbox.php:246
|
||||
#: fields/message.php:144 fields/page_link.php:553 fields/page_link.php:567
|
||||
#: fields/post_object.php:419 fields/post_object.php:433 fields/select.php:385
|
||||
#: fields/select.php:399 fields/select.php:413 fields/select.php:427
|
||||
#: fields/tab.php:161 fields/taxonomy.php:796 fields/taxonomy.php:810
|
||||
#: fields/taxonomy.php:824 fields/taxonomy.php:838 fields/user.php:457
|
||||
#: fields/user.php:471 fields/wysiwyg.php:407
|
||||
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:141
|
||||
#: fields/checkbox.php:246 fields/message.php:144 fields/page_link.php:553 fields/page_link.php:567
|
||||
#: fields/post_object.php:419 fields/post_object.php:433 fields/select.php:385 fields/select.php:399
|
||||
#: fields/select.php:413 fields/select.php:427 fields/tab.php:161 fields/taxonomy.php:796 fields/taxonomy.php:810
|
||||
#: fields/taxonomy.php:824 fields/taxonomy.php:838 fields/user.php:457 fields/user.php:471 fields/wysiwyg.php:407
|
||||
#: pro/admin/views/settings-updates.php:93
|
||||
msgid "Yes"
|
||||
msgstr "Ya"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:41
|
||||
#: admin/views/field-group-field.php:142 fields/checkbox.php:247
|
||||
#: fields/message.php:145 fields/page_link.php:554 fields/page_link.php:568
|
||||
#: fields/post_object.php:420 fields/post_object.php:434 fields/select.php:386
|
||||
#: fields/select.php:400 fields/select.php:414 fields/select.php:428
|
||||
#: fields/tab.php:162 fields/taxonomy.php:711 fields/taxonomy.php:797
|
||||
#: fields/taxonomy.php:811 fields/taxonomy.php:825 fields/taxonomy.php:839
|
||||
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:408
|
||||
#: pro/admin/views/settings-updates.php:103
|
||||
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:142
|
||||
#: fields/checkbox.php:247 fields/message.php:145 fields/page_link.php:554 fields/page_link.php:568
|
||||
#: fields/post_object.php:420 fields/post_object.php:434 fields/select.php:386 fields/select.php:400
|
||||
#: fields/select.php:414 fields/select.php:428 fields/tab.php:162 fields/taxonomy.php:711 fields/taxonomy.php:797
|
||||
#: fields/taxonomy.php:811 fields/taxonomy.php:825 fields/taxonomy.php:839 fields/user.php:458 fields/user.php:472
|
||||
#: fields/wysiwyg.php:408 pro/admin/views/settings-updates.php:103
|
||||
msgid "No"
|
||||
msgstr "Tidak"
|
||||
|
||||
|
|
@ -521,23 +498,19 @@ msgstr "Tidak"
|
|||
msgid "Show this field if"
|
||||
msgstr "Tampilkan bidang ini jika"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:111
|
||||
#: admin/views/field-group-locations.php:34
|
||||
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:34
|
||||
msgid "is equal to"
|
||||
msgstr "sama dengan"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:112
|
||||
#: admin/views/field-group-locations.php:35
|
||||
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:35
|
||||
msgid "is not equal to"
|
||||
msgstr "tidak sama dengan"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:149
|
||||
#: admin/views/field-group-locations.php:122
|
||||
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:122
|
||||
msgid "and"
|
||||
msgstr "dan"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:164
|
||||
#: admin/views/field-group-locations.php:137
|
||||
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:137
|
||||
msgid "Add rule group"
|
||||
msgstr "Tambahkan peraturan grup"
|
||||
|
||||
|
|
@ -569,8 +542,7 @@ msgstr "Hapus bidang"
|
|||
msgid "Delete"
|
||||
msgstr "Hapus"
|
||||
|
||||
#: admin/views/field-group-field.php:69 fields/oembed.php:225
|
||||
#: fields/taxonomy.php:912
|
||||
#: admin/views/field-group-field.php:69 fields/oembed.php:225 fields/taxonomy.php:912
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
|
|
@ -651,12 +623,8 @@ msgid "Type"
|
|||
msgstr "Tipe"
|
||||
|
||||
#: admin/views/field-group-fields.php:44
|
||||
msgid ""
|
||||
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
||||
"first field."
|
||||
msgstr ""
|
||||
"Tidak ada bidang. Klik tombol <strong>+ Tambah Bidang</strong> untuk membuat "
|
||||
"bidang pertama Anda."
|
||||
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
||||
msgstr "Tidak ada bidang. Klik tombol <strong>+ Tambah Bidang</strong> untuk membuat bidang pertama Anda."
|
||||
|
||||
#: admin/views/field-group-fields.php:51
|
||||
msgid "Drag and drop to reorder"
|
||||
|
|
@ -666,8 +634,7 @@ msgstr "Seret dan jatuhkan untuk mengatur ulang"
|
|||
msgid "+ Add Field"
|
||||
msgstr "+ Tambah Bidang"
|
||||
|
||||
#: admin/views/field-group-locations.php:5
|
||||
#: admin/views/field-group-locations.php:11
|
||||
#: admin/views/field-group-locations.php:5 admin/views/field-group-locations.php:11
|
||||
msgid "Post"
|
||||
msgstr "post"
|
||||
|
||||
|
|
@ -691,8 +658,7 @@ msgstr "Kategori Post"
|
|||
msgid "Post Taxonomy"
|
||||
msgstr "Post Taksonomi"
|
||||
|
||||
#: admin/views/field-group-locations.php:13
|
||||
#: admin/views/field-group-locations.php:17
|
||||
#: admin/views/field-group-locations.php:13 admin/views/field-group-locations.php:17
|
||||
msgid "Page"
|
||||
msgstr "Laman"
|
||||
|
||||
|
|
@ -753,12 +719,8 @@ msgid "Rules"
|
|||
msgstr "Peraturan"
|
||||
|
||||
#: admin/views/field-group-locations.php:42
|
||||
msgid ""
|
||||
"Create a set of rules to determine which edit screens will use these "
|
||||
"advanced custom fields"
|
||||
msgstr ""
|
||||
"Buat pengaturan peraturan untuk menentukan layar edit yang akan menggunakan "
|
||||
"advanced custom fields ini"
|
||||
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
||||
msgstr "Buat pengaturan peraturan untuk menentukan layar edit yang akan menggunakan advanced custom fields ini"
|
||||
|
||||
#: admin/views/field-group-locations.php:59
|
||||
msgid "Show this field group if"
|
||||
|
|
@ -801,7 +763,7 @@ msgid "Top aligned"
|
|||
msgstr "Selaras atas"
|
||||
|
||||
#: admin/views/field-group-options.php:60 fields/tab.php:149
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Selaras kiri"
|
||||
|
||||
#: admin/views/field-group-options.php:67
|
||||
|
|
@ -822,8 +784,7 @@ msgstr "No. Urutan"
|
|||
|
||||
#: admin/views/field-group-options.php:83
|
||||
msgid "Field groups with a lower order will appear first"
|
||||
msgstr ""
|
||||
"Bidang kelompok dengan urutan yang lebih rendah akan muncul pertama kali"
|
||||
msgstr "Bidang kelompok dengan urutan yang lebih rendah akan muncul pertama kali"
|
||||
|
||||
#: admin/views/field-group-options.php:94
|
||||
msgid "Shown in field group list"
|
||||
|
|
@ -839,11 +800,11 @@ msgstr "<b>Pilih</b> item untuk <b>menyembunyikan</b> mereka dari layar edit."
|
|||
|
||||
#: admin/views/field-group-options.php:105
|
||||
msgid ""
|
||||
"If multiple field groups appear on an edit screen, the first field group's "
|
||||
"options will be used (the one with the lowest order number)"
|
||||
"If multiple field groups appear on an edit screen, the first field group's options will be used (the one with the "
|
||||
"lowest order number)"
|
||||
msgstr ""
|
||||
"Jika beberapa kelompok bidang ditampilkan pada layar edit, pilihan bidang "
|
||||
"kelompok yang pertama akan digunakan (pertama nomor urutan terendah)"
|
||||
"Jika beberapa kelompok bidang ditampilkan pada layar edit, pilihan bidang kelompok yang pertama akan digunakan "
|
||||
"(pertama nomor urutan terendah)"
|
||||
|
||||
#: admin/views/field-group-options.php:112
|
||||
msgid "Permalink"
|
||||
|
|
@ -915,12 +876,9 @@ msgstr "Selamat datang di Advanced Custom Fields"
|
|||
|
||||
#: admin/views/settings-info.php:10
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
||||
"hope you like it."
|
||||
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
||||
msgstr ""
|
||||
"Terima kasih sudah memperbario! ACF %s lebih besar dan lebih baik daripada "
|
||||
"sebelumnya. Kami harap Anda menyukainya."
|
||||
"Terima kasih sudah memperbario! ACF %s lebih besar dan lebih baik daripada sebelumnya. Kami harap Anda menyukainya."
|
||||
|
||||
#: admin/views/settings-info.php:23
|
||||
msgid "A smoother custom field experience"
|
||||
|
|
@ -932,13 +890,11 @@ msgstr "Peningkatan kegunaan"
|
|||
|
||||
#: admin/views/settings-info.php:29
|
||||
msgid ""
|
||||
"Including the popular Select2 library has improved both usability and speed "
|
||||
"across a number of field types including post object, page link, taxonomy "
|
||||
"and select."
|
||||
"Including the popular Select2 library has improved both usability and speed across a number of field types "
|
||||
"including post object, page link, taxonomy and select."
|
||||
msgstr ""
|
||||
"Termasuk Perpustakaan Select2 populer telah meningkatkan kegunaan dan "
|
||||
"kecepatan di sejumlah bidang jenis termasuk posting objek, link halaman, "
|
||||
"taksonomi, dan pilih."
|
||||
"Termasuk Perpustakaan Select2 populer telah meningkatkan kegunaan dan kecepatan di sejumlah bidang jenis termasuk "
|
||||
"posting objek, link halaman, taksonomi, dan pilih."
|
||||
|
||||
#: admin/views/settings-info.php:33
|
||||
msgid "Improved Design"
|
||||
|
|
@ -946,13 +902,11 @@ msgstr "Peningkatan Desain"
|
|||
|
||||
#: admin/views/settings-info.php:34
|
||||
msgid ""
|
||||
"Many fields have undergone a visual refresh to make ACF look better than "
|
||||
"ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
|
||||
"(new) fields!"
|
||||
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are seen on the "
|
||||
"gallery, relationship and oEmbed (new) fields!"
|
||||
msgstr ""
|
||||
"Berbagai bidang telah mengalami refresh visual untuk membuat ACF terlihat "
|
||||
"lebih baik daripada sebelumnya! Perubahan nyata terlihat pada galeri, "
|
||||
"hubungan dan oEmbed bidang (baru)!"
|
||||
"Berbagai bidang telah mengalami refresh visual untuk membuat ACF terlihat lebih baik daripada sebelumnya! "
|
||||
"Perubahan nyata terlihat pada galeri, hubungan dan oEmbed bidang (baru)!"
|
||||
|
||||
#: admin/views/settings-info.php:38
|
||||
msgid "Improved Data"
|
||||
|
|
@ -960,13 +914,11 @@ msgstr "Peningkatan Data"
|
|||
|
||||
#: admin/views/settings-info.php:39
|
||||
msgid ""
|
||||
"Redesigning the data architecture has allowed sub fields to live "
|
||||
"independently from their parents. This allows you to drag and drop fields in "
|
||||
"and out of parent fields!"
|
||||
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This allows you "
|
||||
"to drag and drop fields in and out of parent fields!"
|
||||
msgstr ""
|
||||
"Mendesain ulang arsitektur data telah memungkinkan sub bidang untuk yang "
|
||||
"mandiri dari parentnya. Hal ini memungkinkan Anda untuk seret dan jatuhkan "
|
||||
"bidang masuk dan keluar dari bidang parent!"
|
||||
"Mendesain ulang arsitektur data telah memungkinkan sub bidang untuk yang mandiri dari parentnya. Hal ini "
|
||||
"memungkinkan Anda untuk seret dan jatuhkan bidang masuk dan keluar dari bidang parent!"
|
||||
|
||||
#: admin/views/settings-info.php:45
|
||||
msgid "Goodbye Add-ons. Hello PRO"
|
||||
|
|
@ -977,20 +929,17 @@ msgid "Introducing ACF PRO"
|
|||
msgstr "Memperkenalkan ACF PRO"
|
||||
|
||||
#: admin/views/settings-info.php:51
|
||||
msgid ""
|
||||
"We're changing the way premium functionality is delivered in an exciting way!"
|
||||
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
||||
msgstr "Kami mengubah cara fungsi premium yang disampaikan dalam cara menarik!"
|
||||
|
||||
#: admin/views/settings-info.php:52
|
||||
#, php-format
|
||||
msgid ""
|
||||
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
||||
"version of ACF</a>. With both personal and developer licenses available, "
|
||||
"premium functionality is more affordable and accessible than ever before!"
|
||||
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both personal and "
|
||||
"developer licenses available, premium functionality is more affordable and accessible than ever before!"
|
||||
msgstr ""
|
||||
"Semua 4 add-on premium sudah dikombinasikan kedalam <a href=\"%s\">versi "
|
||||
"Pro ACF</a>. Dengan ketersediaan lisensi personal dan pengembang, fungsi "
|
||||
"premuim lebih terjangkan dan dapat diakses keseluruhan daripada sebelumnya!"
|
||||
"Semua 4 add-on premium sudah dikombinasikan kedalam <a href=\"%s\">versi Pro ACF</a>. Dengan ketersediaan lisensi "
|
||||
"personal dan pengembang, fungsi premuim lebih terjangkan dan dapat diakses keseluruhan daripada sebelumnya!"
|
||||
|
||||
#: admin/views/settings-info.php:56
|
||||
msgid "Powerful Features"
|
||||
|
|
@ -998,13 +947,11 @@ msgstr "Fitur kuat"
|
|||
|
||||
#: admin/views/settings-info.php:57
|
||||
msgid ""
|
||||
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
||||
"layouts, a beautiful gallery field and the ability to create extra admin "
|
||||
"options pages!"
|
||||
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful gallery field "
|
||||
"and the ability to create extra admin options pages!"
|
||||
msgstr ""
|
||||
"ACF PRO memiliki fitur canggih seperti data yang berulang, layout konten "
|
||||
"yang fleksibel, bidang galeri yang cantik dan kemampuan membuat laman opsi "
|
||||
"ekstra admin!"
|
||||
"ACF PRO memiliki fitur canggih seperti data yang berulang, layout konten yang fleksibel, bidang galeri yang cantik "
|
||||
"dan kemampuan membuat laman opsi ekstra admin!"
|
||||
|
||||
#: admin/views/settings-info.php:58
|
||||
#, php-format
|
||||
|
|
@ -1017,23 +964,18 @@ msgstr "Upgrade Mudah"
|
|||
|
||||
#: admin/views/settings-info.php:63
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
||||
"and claim a free copy of ACF PRO!"
|
||||
msgid "To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of ACF PRO!"
|
||||
msgstr ""
|
||||
"Untuk membuat peningkatan yang mudah, <a href=\"%s\">masuk ke akun toko</a> "
|
||||
"dan klaim salinan gratis ACF PRO!"
|
||||
"Untuk membuat peningkatan yang mudah, <a href=\"%s\">masuk ke akun toko</a> dan klaim salinan gratis ACF PRO!"
|
||||
|
||||
#: admin/views/settings-info.php:64
|
||||
#, php-format
|
||||
msgid ""
|
||||
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
||||
"but if you do have one, please contact our support team via the <a href=\"%s"
|
||||
"\">help desk</a>"
|
||||
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, please contact "
|
||||
"our support team via the <a href=\"%s\">help desk</a>"
|
||||
msgstr ""
|
||||
"Kami juga menulis <a href=\"%s\">panduan upgrade</a> untuk menjawab "
|
||||
"pertanyaan apapun, jika Anda sudah punya, silahkan hubungi tim support kami "
|
||||
"via <a href=\"%s\">help desk</a>"
|
||||
"Kami juga menulis <a href=\"%s\">panduan upgrade</a> untuk menjawab pertanyaan apapun, jika Anda sudah punya, "
|
||||
"silahkan hubungi tim support kami via <a href=\"%s\">help desk</a>"
|
||||
|
||||
#: admin/views/settings-info.php:72
|
||||
msgid "Under the Hood"
|
||||
|
|
@ -1053,8 +995,7 @@ msgstr "Lebih banyak AJAX"
|
|||
|
||||
#: admin/views/settings-info.php:83
|
||||
msgid "More fields use AJAX powered search to speed up page loading"
|
||||
msgstr ""
|
||||
"Banyak bidang yang menggunakan pencarian AJAX untuk mempercepat loading laman"
|
||||
msgstr "Banyak bidang yang menggunakan pencarian AJAX untuk mempercepat loading laman"
|
||||
|
||||
#: admin/views/settings-info.php:87
|
||||
msgid "Local JSON"
|
||||
|
|
@ -1069,12 +1010,8 @@ msgid "Better version control"
|
|||
msgstr "Kontolr versi terbaik"
|
||||
|
||||
#: admin/views/settings-info.php:95
|
||||
msgid ""
|
||||
"New auto export to JSON feature allows field settings to be version "
|
||||
"controlled"
|
||||
msgstr ""
|
||||
"Ekspor otomatis ke fitur JSON memungkinkan pengaturan bidang menjadi versi "
|
||||
"yang terkontrol"
|
||||
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
||||
msgstr "Ekspor otomatis ke fitur JSON memungkinkan pengaturan bidang menjadi versi yang terkontrol"
|
||||
|
||||
#: admin/views/settings-info.php:99
|
||||
msgid "Swapped XML for JSON"
|
||||
|
|
@ -1090,9 +1027,7 @@ msgstr "Form Baru"
|
|||
|
||||
#: admin/views/settings-info.php:105
|
||||
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
||||
msgstr ""
|
||||
"Bidang sekarang dapat dipetakan ke komentar, widget dan semua bentuk "
|
||||
"pengguna!"
|
||||
msgstr "Bidang sekarang dapat dipetakan ke komentar, widget dan semua bentuk pengguna!"
|
||||
|
||||
#: admin/views/settings-info.php:112
|
||||
msgid "A new field for embedding content has been added"
|
||||
|
|
@ -1111,12 +1046,8 @@ msgid "New Settings"
|
|||
msgstr "Pengaturan baru"
|
||||
|
||||
#: admin/views/settings-info.php:122
|
||||
msgid ""
|
||||
"Field group settings have been added for label placement and instruction "
|
||||
"placement"
|
||||
msgstr ""
|
||||
"Pengaturan grup bidang telah ditambahkan untuk penempatan label dan "
|
||||
"penempatan instruksi"
|
||||
msgid "Field group settings have been added for label placement and instruction placement"
|
||||
msgstr "Pengaturan grup bidang telah ditambahkan untuk penempatan label dan penempatan instruksi"
|
||||
|
||||
#: admin/views/settings-info.php:128
|
||||
msgid "Better Front End Forms"
|
||||
|
|
@ -1132,30 +1063,23 @@ msgstr "Validasi lebih baik"
|
|||
|
||||
#: admin/views/settings-info.php:134
|
||||
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
||||
msgstr ""
|
||||
"Validasi form sekarang dilakukan melalui PHP + AJAX dalam hanya mendukung JS"
|
||||
msgstr "Validasi form sekarang dilakukan melalui PHP + AJAX dalam hanya mendukung JS"
|
||||
|
||||
#: admin/views/settings-info.php:138
|
||||
msgid "Relationship Field"
|
||||
msgstr "Bidang hubungan"
|
||||
|
||||
#: admin/views/settings-info.php:139
|
||||
msgid ""
|
||||
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
||||
msgstr ""
|
||||
"Pengaturan bidang hubungan untuk 'Saringan' (Pencarian, Tipe Post, Taksonomi)"
|
||||
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
||||
msgstr "Pengaturan bidang hubungan untuk 'Saringan' (Pencarian, Tipe Post, Taksonomi)"
|
||||
|
||||
#: admin/views/settings-info.php:145
|
||||
msgid "Moving Fields"
|
||||
msgstr "Memindahkan Bidang"
|
||||
|
||||
#: admin/views/settings-info.php:146
|
||||
msgid ""
|
||||
"New field group functionality allows you to move a field between groups & "
|
||||
"parents"
|
||||
msgstr ""
|
||||
"Fungsionalitas grup bidang memungkinkan Anda memindahkan bidang antara grup "
|
||||
"& parent"
|
||||
msgid "New field group functionality allows you to move a field between groups & parents"
|
||||
msgstr "Fungsionalitas grup bidang memungkinkan Anda memindahkan bidang antara grup & parent"
|
||||
|
||||
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
||||
msgid "Page Link"
|
||||
|
|
@ -1170,12 +1094,8 @@ msgid "Better Options Pages"
|
|||
msgstr "Opsi Laman Lebih Baik"
|
||||
|
||||
#: admin/views/settings-info.php:156
|
||||
msgid ""
|
||||
"New functions for options page allow creation of both parent and child menu "
|
||||
"pages"
|
||||
msgstr ""
|
||||
"Fungsi baru untuk opsi laman memungkinkan pembuatan laman menu parent dan "
|
||||
"child"
|
||||
msgid "New functions for options page allow creation of both parent and child menu pages"
|
||||
msgstr "Fungsi baru untuk opsi laman memungkinkan pembuatan laman menu parent dan child"
|
||||
|
||||
#: admin/views/settings-info.php:165
|
||||
#, php-format
|
||||
|
|
@ -1188,17 +1108,13 @@ msgstr "Ekspor grup bidang ke PHP"
|
|||
|
||||
#: admin/views/settings-tools-export.php:31
|
||||
msgid ""
|
||||
"The following code can be used to register a local version of the selected "
|
||||
"field group(s). A local field group can provide many benefits such as faster "
|
||||
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
||||
"the following code to your theme's functions.php file or include it within "
|
||||
"an external file."
|
||||
"The following code can be used to register a local version of the selected field group(s). A local field group can "
|
||||
"provide many benefits such as faster load times, version control & dynamic fields/settings. Simply copy and paste "
|
||||
"the following code to your theme's functions.php file or include it within an external file."
|
||||
msgstr ""
|
||||
"Kode berikutini dapat digunakan untuk mendaftar versi lokal dari bidang yang "
|
||||
"dipilih. Grup bidang lokal dapat memberikan banyak manfaat sepmacam waktu "
|
||||
"loading yang cepat, kontrol versi & pengaturan bidang dinamis. Salin dan "
|
||||
"tempel kode berikut ke tema Anda file function.php atau masukkan kedalam "
|
||||
"file eksternal."
|
||||
"Kode berikutini dapat digunakan untuk mendaftar versi lokal dari bidang yang dipilih. Grup bidang lokal dapat "
|
||||
"memberikan banyak manfaat sepmacam waktu loading yang cepat, kontrol versi & pengaturan bidang dinamis. Salin dan "
|
||||
"tempel kode berikut ke tema Anda file function.php atau masukkan kedalam file eksternal."
|
||||
|
||||
#: admin/views/settings-tools.php:5
|
||||
msgid "Select Field Groups"
|
||||
|
|
@ -1210,15 +1126,13 @@ msgstr "Ekspor Grup Bidang"
|
|||
|
||||
#: admin/views/settings-tools.php:38
|
||||
msgid ""
|
||||
"Select the field groups you would like to export and then select your export "
|
||||
"method. Use the download button to export to a .json file which you can then "
|
||||
"import to another ACF installation. Use the generate button to export to PHP "
|
||||
"code which you can place in your theme."
|
||||
"Select the field groups you would like to export and then select your export method. Use the download button to "
|
||||
"export to a .json file which you can then import to another ACF installation. Use the generate button to export to "
|
||||
"PHP code which you can place in your theme."
|
||||
msgstr ""
|
||||
"Pilih grup bidang yang Anda ingin ekspor dan pilih metode ekspor. Gunakan "
|
||||
"tombol unduh untuk ekspor ke file .json yang nantinya bisa Anda impor ke "
|
||||
"instalasi ACF yang lain. Gunakan tombol hasilkan untuk ekspor ke kode PHP "
|
||||
"yang bisa Anda simpan di tema Anda."
|
||||
"Pilih grup bidang yang Anda ingin ekspor dan pilih metode ekspor. Gunakan tombol unduh untuk ekspor ke file .json "
|
||||
"yang nantinya bisa Anda impor ke instalasi ACF yang lain. Gunakan tombol hasilkan untuk ekspor ke kode PHP yang "
|
||||
"bisa Anda simpan di tema Anda."
|
||||
|
||||
#: admin/views/settings-tools.php:50
|
||||
msgid "Download export file"
|
||||
|
|
@ -1234,11 +1148,11 @@ msgstr "Impor grup bidang"
|
|||
|
||||
#: admin/views/settings-tools.php:67
|
||||
msgid ""
|
||||
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
||||
"you click the import button below, ACF will import the field groups."
|
||||
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF "
|
||||
"will import the field groups."
|
||||
msgstr ""
|
||||
"Pilih file JSON Advanced Custom Fields yang ingin Anda impor. Ketika Anda "
|
||||
"mengklik tombol impor, ACF akan impor grup bidang."
|
||||
"Pilih file JSON Advanced Custom Fields yang ingin Anda impor. Ketika Anda mengklik tombol impor, ACF akan impor "
|
||||
"grup bidang."
|
||||
|
||||
#: admin/views/settings-tools.php:77 fields/file.php:46
|
||||
msgid "Select File"
|
||||
|
|
@ -1254,11 +1168,9 @@ msgstr "Peningkatan Database Advanced Custom Fields"
|
|||
|
||||
#: admin/views/update-network.php:10
|
||||
msgid ""
|
||||
"The following sites require a DB upgrade. Check the ones you want to update "
|
||||
"and then click “Upgrade Database”."
|
||||
"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade Database”."
|
||||
msgstr ""
|
||||
"Situs berikut memerlukan peningkatan DB. Pilih salah satu yang ingin Anda "
|
||||
"update dan klik \"Tingkatkan Database\"."
|
||||
"Situs berikut memerlukan peningkatan DB. Pilih salah satu yang ingin Anda update dan klik \"Tingkatkan Database\"."
|
||||
|
||||
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
||||
msgid "Site"
|
||||
|
|
@ -1279,11 +1191,11 @@ msgstr "Upgrade database selesai. <a href=\"%s\">Kembali ke dasbor jaringan</a>"
|
|||
|
||||
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
||||
msgid ""
|
||||
"It is strongly recommended that you backup your database before proceeding. "
|
||||
"Are you sure you wish to run the updater now?"
|
||||
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the "
|
||||
"updater now?"
|
||||
msgstr ""
|
||||
"Ini sangan direkomendasikan Anda mencadangkan database Anda sebelum "
|
||||
"memproses. Apakah Anda yakin menjalankan peningkatan sekarang?"
|
||||
"Ini sangan direkomendasikan Anda mencadangkan database Anda sebelum memproses. Apakah Anda yakin menjalankan "
|
||||
"peningkatan sekarang?"
|
||||
|
||||
#: admin/views/update-network.php:157
|
||||
msgid "Upgrade complete"
|
||||
|
|
@ -1303,12 +1215,8 @@ msgid "Thank you for updating to %s v%s!"
|
|||
msgstr "Terimakasih sudah meningkatkan ke %s v%s!"
|
||||
|
||||
#: admin/views/update-notice.php:25
|
||||
msgid ""
|
||||
"Before you start using the new awesome features, please update your database "
|
||||
"to the newest version."
|
||||
msgstr ""
|
||||
"Sebelum Anda mula menggunakan fitur keren, silahkan tingkatkan database Anda "
|
||||
"ke versi terbaru."
|
||||
msgid "Before you start using the new awesome features, please update your database to the newest version."
|
||||
msgstr "Sebelum Anda mula menggunakan fitur keren, silahkan tingkatkan database Anda ke versi terbaru."
|
||||
|
||||
#: admin/views/update.php:12
|
||||
msgid "Reading upgrade tasks..."
|
||||
|
|
@ -1410,9 +1318,8 @@ msgstr "Relasional"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
||||
#: pro/fields/flexible-content.php:500 pro/fields/flexible-content.php:549
|
||||
#: pro/fields/repeater.php:467
|
||||
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:500
|
||||
#: pro/fields/flexible-content.php:549 pro/fields/repeater.php:467
|
||||
msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
|
|
@ -1468,17 +1375,14 @@ msgstr "Masukkan setiap pilihan pada baris baru."
|
|||
|
||||
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:363
|
||||
msgid "For more control, you may specify both a value and label like this:"
|
||||
msgstr ""
|
||||
"Untuk kontrol lebih, Anda dapat menentukan keduanya antara nilai dan bidang "
|
||||
"seperti ini:"
|
||||
msgstr "Untuk kontrol lebih, Anda dapat menentukan keduanya antara nilai dan bidang seperti ini:"
|
||||
|
||||
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:363
|
||||
msgid "red : Red"
|
||||
msgstr "merah : Merah"
|
||||
|
||||
#: fields/checkbox.php:217 fields/color_picker.php:149 fields/email.php:124
|
||||
#: fields/number.php:150 fields/radio.php:222 fields/select.php:371
|
||||
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
||||
#: fields/checkbox.php:217 fields/color_picker.php:149 fields/email.php:124 fields/number.php:150
|
||||
#: fields/radio.php:222 fields/select.php:371 fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
||||
#: fields/url.php:117 fields/wysiwyg.php:368
|
||||
msgid "Default Value"
|
||||
msgstr "Nilai Default"
|
||||
|
|
@ -1559,39 +1463,34 @@ msgstr "Minggu Dimulai Pada"
|
|||
msgid "Email"
|
||||
msgstr "Email"
|
||||
|
||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
||||
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
|
||||
#: fields/wysiwyg.php:369
|
||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 fields/textarea.php:146
|
||||
#: fields/url.php:118 fields/wysiwyg.php:369
|
||||
msgid "Appears when creating a new post"
|
||||
msgstr "Muncul ketika membuat sebuah post baru"
|
||||
|
||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
||||
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
|
||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 fields/textarea.php:154
|
||||
#: fields/url.php:126
|
||||
msgid "Placeholder Text"
|
||||
msgstr "Teks Placeholder"
|
||||
|
||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
||||
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
|
||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 fields/textarea.php:155
|
||||
#: fields/url.php:127
|
||||
msgid "Appears within the input"
|
||||
msgstr "Muncul didalam input"
|
||||
|
||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
||||
#: fields/text.php:166
|
||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
||||
msgid "Prepend"
|
||||
msgstr "Tambahkan"
|
||||
|
||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
||||
#: fields/text.php:167
|
||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
||||
msgid "Appears before the input"
|
||||
msgstr "Muncul sebelum input"
|
||||
|
||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
||||
#: fields/text.php:175
|
||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
||||
msgid "Append"
|
||||
msgstr "Menambahkan"
|
||||
|
||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
||||
#: fields/text.php:176
|
||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
||||
msgid "Appears after the input"
|
||||
msgstr "Muncul setelah input"
|
||||
|
||||
|
|
@ -1667,8 +1566,8 @@ msgstr "Minimum"
|
|||
msgid "Restrict which files can be uploaded"
|
||||
msgstr "Batasi file mana yang dapat diunggah"
|
||||
|
||||
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
||||
#: fields/image.php:290 pro/fields/gallery.php:692 pro/fields/gallery.php:725
|
||||
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 pro/fields/gallery.php:692
|
||||
#: pro/fields/gallery.php:725
|
||||
msgid "File size"
|
||||
msgstr "Ukuran File"
|
||||
|
||||
|
|
@ -1728,8 +1627,8 @@ msgstr "Zoom"
|
|||
msgid "Set the initial zoom level"
|
||||
msgstr "Mengatur tingkat awal zoom"
|
||||
|
||||
#: fields/google-map.php:203 fields/image.php:246 fields/image.php:279
|
||||
#: fields/oembed.php:275 pro/fields/gallery.php:681 pro/fields/gallery.php:714
|
||||
#: fields/google-map.php:203 fields/image.php:246 fields/image.php:279 fields/oembed.php:275
|
||||
#: pro/fields/gallery.php:681 pro/fields/gallery.php:714
|
||||
msgid "Height"
|
||||
msgstr "Tinggi"
|
||||
|
||||
|
|
@ -1789,13 +1688,12 @@ msgstr "Ukuran Tinjauan"
|
|||
msgid "Shown when entering data"
|
||||
msgstr "Tampilkan ketika memasukkan data"
|
||||
|
||||
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:670
|
||||
#: pro/fields/gallery.php:703
|
||||
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:670 pro/fields/gallery.php:703
|
||||
msgid "Restrict which images can be uploaded"
|
||||
msgstr "Batasi gambar mana yang dapat diunggah"
|
||||
|
||||
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:264
|
||||
#: pro/fields/gallery.php:673 pro/fields/gallery.php:706
|
||||
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:264 pro/fields/gallery.php:673
|
||||
#: pro/fields/gallery.php:706
|
||||
msgid "Width"
|
||||
msgstr "Lebar"
|
||||
|
||||
|
|
@ -1829,8 +1727,7 @@ msgstr "Keluar HTML"
|
|||
|
||||
#: fields/message.php:140
|
||||
msgid "Allow HTML markup to display as visible text instead of rendering"
|
||||
msgstr ""
|
||||
"Memungkinkan HTML markup untuk menampilkan teks terlihat sebagai render"
|
||||
msgstr "Memungkinkan HTML markup untuk menampilkan teks terlihat sebagai render"
|
||||
|
||||
#: fields/number.php:36
|
||||
msgid "Number"
|
||||
|
|
@ -1882,33 +1779,28 @@ msgstr "Ukuran Embed (Semat)"
|
|||
msgid "Archives"
|
||||
msgstr "Arsip"
|
||||
|
||||
#: fields/page_link.php:520 fields/post_object.php:386
|
||||
#: fields/relationship.php:689
|
||||
#: fields/page_link.php:520 fields/post_object.php:386 fields/relationship.php:689
|
||||
msgid "Filter by Post Type"
|
||||
msgstr "Saring dengan jenis post"
|
||||
|
||||
#: fields/page_link.php:528 fields/post_object.php:394
|
||||
#: fields/relationship.php:697
|
||||
#: fields/page_link.php:528 fields/post_object.php:394 fields/relationship.php:697
|
||||
msgid "All post types"
|
||||
msgstr "Semua Tipe Post"
|
||||
|
||||
#: fields/page_link.php:534 fields/post_object.php:400
|
||||
#: fields/relationship.php:703
|
||||
#: fields/page_link.php:534 fields/post_object.php:400 fields/relationship.php:703
|
||||
msgid "Filter by Taxonomy"
|
||||
msgstr "Filter dengan Taksonomi"
|
||||
|
||||
#: fields/page_link.php:542 fields/post_object.php:408
|
||||
#: fields/relationship.php:711
|
||||
#: fields/page_link.php:542 fields/post_object.php:408 fields/relationship.php:711
|
||||
msgid "All taxonomies"
|
||||
msgstr "Semua Taksonomi"
|
||||
|
||||
#: fields/page_link.php:548 fields/post_object.php:414 fields/select.php:380
|
||||
#: fields/taxonomy.php:791 fields/user.php:452
|
||||
#: fields/page_link.php:548 fields/post_object.php:414 fields/select.php:380 fields/taxonomy.php:791
|
||||
#: fields/user.php:452
|
||||
msgid "Allow Null?"
|
||||
msgstr "Izinkan Nol?"
|
||||
|
||||
#: fields/page_link.php:562 fields/post_object.php:428 fields/select.php:394
|
||||
#: fields/user.php:466
|
||||
#: fields/page_link.php:562 fields/post_object.php:428 fields/select.php:394 fields/user.php:466
|
||||
msgid "Select multiple values?"
|
||||
msgstr "Pilih beberapa nilai?"
|
||||
|
||||
|
|
@ -1916,8 +1808,7 @@ msgstr "Pilih beberapa nilai?"
|
|||
msgid "Password"
|
||||
msgstr "Kata Sandi"
|
||||
|
||||
#: fields/post_object.php:36 fields/post_object.php:447
|
||||
#: fields/relationship.php:768
|
||||
#: fields/post_object.php:36 fields/post_object.php:447 fields/relationship.php:768
|
||||
msgid "Post Object"
|
||||
msgstr "Objek Post"
|
||||
|
||||
|
|
@ -2025,29 +1916,22 @@ msgstr "Tab"
|
|||
|
||||
#: fields/tab.php:128
|
||||
msgid ""
|
||||
"The tab field will display incorrectly when added to a Table style repeater "
|
||||
"field or flexible content field layout"
|
||||
"The tab field will display incorrectly when added to a Table style repeater field or flexible content field layout"
|
||||
msgstr ""
|
||||
"Bidang tab tidak akan tampil dengan baik ketika ditambahkan ke Gaya Tabel "
|
||||
"repeater atau layout bidang konten yang fleksibel"
|
||||
"Bidang tab tidak akan tampil dengan baik ketika ditambahkan ke Gaya Tabel repeater atau layout bidang konten yang "
|
||||
"fleksibel"
|
||||
|
||||
#: fields/tab.php:129
|
||||
msgid ""
|
||||
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
||||
"together."
|
||||
msgstr ""
|
||||
"Gunakan \"Bidang Tab\" untuk mengatur layar edit Anda dengan menggabungkan "
|
||||
"bidang bersamaan."
|
||||
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
||||
msgstr "Gunakan \"Bidang Tab\" untuk mengatur layar edit Anda dengan menggabungkan bidang bersamaan."
|
||||
|
||||
#: fields/tab.php:130
|
||||
msgid ""
|
||||
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
||||
"defined) will be grouped together using this field's label as the tab "
|
||||
"heading."
|
||||
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together using "
|
||||
"this field's label as the tab heading."
|
||||
msgstr ""
|
||||
"Semua bidang mengikuti \"bidang tab\" (atau sampai \"bidang tab\" lainnya "
|
||||
"ditemukan) akan dikelompokkan bersama-sama menggunakan label bidang ini "
|
||||
"sebagai judul tab."
|
||||
"Semua bidang mengikuti \"bidang tab\" (atau sampai \"bidang tab\" lainnya ditemukan) akan dikelompokkan bersama-"
|
||||
"sama menggunakan label bidang ini sebagai judul tab."
|
||||
|
||||
#: fields/tab.php:144
|
||||
msgid "Placement"
|
||||
|
|
@ -2286,12 +2170,10 @@ msgid "License"
|
|||
msgstr "Lisensi"
|
||||
|
||||
#: pro/admin/views/settings-updates.php:24
|
||||
msgid ""
|
||||
"To unlock updates, please enter your license key below. If you don't have a "
|
||||
"licence key, please see"
|
||||
msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
||||
msgstr ""
|
||||
"Untuk membuka update, masukkan kunci lisensi Anda di bawah ini. Jika Anda "
|
||||
"tidak memiliki kunci lisensi, silakan lihat"
|
||||
"Untuk membuka update, masukkan kunci lisensi Anda di bawah ini. Jika Anda tidak memiliki kunci lisensi, silakan "
|
||||
"lihat"
|
||||
|
||||
#: pro/admin/views/settings-updates.php:24
|
||||
msgid "details & pricing"
|
||||
|
|
@ -2340,13 +2222,11 @@ msgstr "Pengaturan"
|
|||
#: pro/core/updates.php:198
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To enable updates, please enter your license key on the <a href=\"%s"
|
||||
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
||||
"\">details & pricing</a>"
|
||||
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't have a "
|
||||
"licence key, please see <a href=\"%s\">details & pricing</a>"
|
||||
msgstr ""
|
||||
"Untuk mengaktifkan update, masukkan kunci lisensi Anda pada <a href=\"%s"
|
||||
"\">Laman</a> pembaruan. Jika Anda tidak memiliki kunci lisensi, silakan "
|
||||
"lihat <a href=\"%s\">rincian & harga</a>"
|
||||
"Untuk mengaktifkan update, masukkan kunci lisensi Anda pada <a href=\"%s\">Laman</a> pembaruan. Jika Anda tidak "
|
||||
"memiliki kunci lisensi, silakan lihat <a href=\"%s\">rincian & harga</a>"
|
||||
|
||||
#: pro/fields/flexible-content.php:36
|
||||
msgid "Flexible Content"
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-11-22 09:29+0100\n"
|
||||
"PO-Revision-Date: 2017-11-22 09:31+0100\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:07+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language: it_IT\n"
|
||||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.2\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Loco-Target-Locale: it_IT\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
|
|
@ -816,7 +816,7 @@ msgstr "Allineamento in alto"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Allineamento a sinistra"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1433,7 +1433,8 @@ msgstr "Relazionale"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2750,8 +2751,8 @@ msgstr "Modifica Field Group"
|
|||
msgid "Validate Email"
|
||||
msgstr "Valida Email"
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Aggiorna"
|
||||
|
||||
|
|
|
|||
BIN
lang/acf-ja.mo
BIN
lang/acf-ja.mo
Binary file not shown.
726
lang/acf-ja.po
726
lang/acf-ja.po
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-06-27 15:33+1000\n"
|
||||
"PO-Revision-Date: 2017-06-27 15:33+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: nb_NO\n"
|
||||
|
|
@ -662,7 +662,7 @@ msgstr "Toppjustert"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:117
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Venstrejustert"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,14 +3,14 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.6.6\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-11-22 15:53+0200\n"
|
||||
"PO-Revision-Date: 2017-11-22 16:56+0200\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Derk Oosterveld <derk@derkoosterveld.nl>\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.5\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
|
|
@ -663,7 +663,7 @@ msgstr "Boven velden"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Links naast velden"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1315,7 +1315,8 @@ msgstr "Relatie"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2627,8 +2628,8 @@ msgstr "Bewerk groep"
|
|||
msgid "Validate Email"
|
||||
msgstr "Valideer e-mail"
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Bijwerken"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-06-27 15:32+1000\n"
|
||||
"PO-Revision-Date: 2017-06-27 15:32+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
||||
"Language: pl_PL\n"
|
||||
|
|
@ -674,7 +674,7 @@ msgstr "Wyrównanie do góry"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:117
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Wyrównanie do lewej"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields PRO 5.4\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-11-22 09:03-0200\n"
|
||||
"PO-Revision-Date: 2017-11-22 09:18-0200\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Augusto Simão <augusto@ams.art.br>\n"
|
||||
"Language: pt_BR\n"
|
||||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Poedit 2.0.4\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -745,7 +745,7 @@ msgstr "Alinhado ao Topo"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:107
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Alinhado à Esquerda"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1333,7 +1333,8 @@ msgstr "Relacional"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2663,8 +2664,8 @@ msgstr "Editar Grupo de Campos"
|
|||
msgid "Validate Email"
|
||||
msgstr "Validar Email"
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Atualizar"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -4,16 +4,16 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Advanced Custom Fields PRO\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-12-05 08:48+0000\n"
|
||||
"PO-Revision-Date: 2017-12-05 08:48+0000\n"
|
||||
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||
"POT-Creation-Date: 2018-02-02 12:00+0000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.4\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||
|
|
@ -186,7 +186,7 @@ msgstr "cópia"
|
|||
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
||||
#: includes/admin/views/field-group-locations.php:29
|
||||
#: includes/admin/views/html-location-group.php:3
|
||||
#: includes/api/api-helpers.php:3959
|
||||
#: includes/api/api-helpers.php:4001
|
||||
msgid "or"
|
||||
msgstr "ou"
|
||||
|
||||
|
|
@ -747,7 +747,7 @@ msgstr "Alinhado acima"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:107
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Alinhado à esquerda"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1257,58 +1257,58 @@ msgstr ""
|
|||
msgid "We think you'll love the changes in %s."
|
||||
msgstr "Pensamos que vai gostar das alterações na versão %s."
|
||||
|
||||
#: includes/api/api-helpers.php:858
|
||||
#: includes/api/api-helpers.php:900
|
||||
msgid "Thumbnail"
|
||||
msgstr "Miniatura"
|
||||
|
||||
#: includes/api/api-helpers.php:859
|
||||
#: includes/api/api-helpers.php:901
|
||||
msgid "Medium"
|
||||
msgstr "Média"
|
||||
|
||||
#: includes/api/api-helpers.php:860
|
||||
#: includes/api/api-helpers.php:902
|
||||
msgid "Large"
|
||||
msgstr "Grande"
|
||||
|
||||
#: includes/api/api-helpers.php:909
|
||||
#: includes/api/api-helpers.php:951
|
||||
msgid "Full Size"
|
||||
msgstr "Tamanho original"
|
||||
|
||||
#: includes/api/api-helpers.php:1250 includes/api/api-helpers.php:1823
|
||||
#: includes/api/api-helpers.php:1292 includes/api/api-helpers.php:1865
|
||||
#: pro/fields/class-acf-field-clone.php:992
|
||||
msgid "(no title)"
|
||||
msgstr "(sem título)"
|
||||
|
||||
#: includes/api/api-helpers.php:3880
|
||||
#: includes/api/api-helpers.php:3922
|
||||
#, php-format
|
||||
msgid "Image width must be at least %dpx."
|
||||
msgstr "A largura da imagem deve ser pelo menos de %dpx."
|
||||
|
||||
#: includes/api/api-helpers.php:3885
|
||||
#: includes/api/api-helpers.php:3927
|
||||
#, php-format
|
||||
msgid "Image width must not exceed %dpx."
|
||||
msgstr "A largura da imagem não deve exceder os %dpx."
|
||||
|
||||
#: includes/api/api-helpers.php:3901
|
||||
#: includes/api/api-helpers.php:3943
|
||||
#, php-format
|
||||
msgid "Image height must be at least %dpx."
|
||||
msgstr "A altura da imagem deve ser pelo menos de %dpx."
|
||||
|
||||
#: includes/api/api-helpers.php:3906
|
||||
#: includes/api/api-helpers.php:3948
|
||||
#, php-format
|
||||
msgid "Image height must not exceed %dpx."
|
||||
msgstr "A altura da imagem não deve exceder os %dpx."
|
||||
|
||||
#: includes/api/api-helpers.php:3924
|
||||
#: includes/api/api-helpers.php:3966
|
||||
#, php-format
|
||||
msgid "File size must be at least %s."
|
||||
msgstr "O tamanho do ficheiro deve ser pelo menos de %s."
|
||||
|
||||
#: includes/api/api-helpers.php:3929
|
||||
#: includes/api/api-helpers.php:3971
|
||||
#, php-format
|
||||
msgid "File size must must not exceed %s."
|
||||
msgstr "O tamanho do ficheiro não deve exceder %s."
|
||||
|
||||
#: includes/api/api-helpers.php:3963
|
||||
#: includes/api/api-helpers.php:4005
|
||||
#, php-format
|
||||
msgid "File type must be %s."
|
||||
msgstr "O tipo de ficheiro deve ser %s."
|
||||
|
|
@ -1333,7 +1333,8 @@ msgstr "Relacional"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2659,8 +2660,8 @@ msgstr "Editar grupo de campos"
|
|||
msgid "Validate Email"
|
||||
msgstr "Validar email"
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Actualizar"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-08-01 13:31+1000\n"
|
||||
"PO-Revision-Date: 2017-08-25 20:10+0300\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language: ro_RO\n"
|
||||
|
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
"X-Generator: Poedit 2.0.3\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -668,7 +668,7 @@ msgstr "Aliniere Sus"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Aliniere Stanga"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -2600,8 +2600,8 @@ msgstr "Editează Grupul de Câmpuri"
|
|||
msgid "Validate Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Actualizează"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,14 +3,14 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-10-24 23:11+0300\n"
|
||||
"PO-Revision-Date: 2017-10-24 23:17+0300\n"
|
||||
"Last-Translator: Toniyevych Andriy <toniyevych@gmail.com>\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru_RU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.8\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
|
|
@ -669,7 +669,7 @@ msgstr "Вверху"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Слева"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1322,7 +1322,8 @@ msgstr "Отношение"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2635,8 +2636,8 @@ msgstr "Редактировать группу полей"
|
|||
msgid "Validate Email"
|
||||
msgstr "Проверка Email"
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Обновить"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2015-08-11 23:45+0200\n"
|
||||
"PO-Revision-Date: 2016-11-03 17:12+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:07+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: wp.sk <michal.vittek@wp.sk, ja@fajo.name>\n"
|
||||
"Language: sk_SK\n"
|
||||
|
|
@ -13,9 +13,8 @@ msgstr ""
|
|||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;"
|
||||
"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-WPHeader: acf.php\n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
|
|
@ -34,8 +33,7 @@ msgstr "Skupiny polí"
|
|||
msgid "Field Group"
|
||||
msgstr "Skupina polí"
|
||||
|
||||
#: acf.php:207 acf.php:239 admin/admin.php:62
|
||||
#: pro/fields/flexible-content.php:517
|
||||
#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517
|
||||
msgid "Add New"
|
||||
msgstr "Pridať novú"
|
||||
|
||||
|
|
@ -67,8 +65,7 @@ msgstr "Nenašla sa skupina polí "
|
|||
msgid "No Field Groups found in Trash"
|
||||
msgstr "V koši sa nenašla skupina polí "
|
||||
|
||||
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213
|
||||
#: admin/field-groups.php:519
|
||||
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519
|
||||
msgid "Fields"
|
||||
msgstr "Polia "
|
||||
|
||||
|
|
@ -84,8 +81,7 @@ msgstr "Pridať nové pole"
|
|||
msgid "Edit Field"
|
||||
msgstr "Upraviť pole"
|
||||
|
||||
#: acf.php:242 admin/views/field-group-fields.php:18
|
||||
#: admin/views/settings-info.php:111
|
||||
#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
||||
msgid "New Field"
|
||||
msgstr "Nové pole "
|
||||
|
||||
|
|
@ -105,8 +101,7 @@ msgstr "Nenašli sa polia"
|
|||
msgid "No Fields found in Trash"
|
||||
msgstr "V koši sa nenašli polia"
|
||||
|
||||
#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583
|
||||
#: admin/views/field-group-options.php:18
|
||||
#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 admin/views/field-group-options.php:18
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -170,10 +165,8 @@ msgstr "Nadpis skupiny poľa je povinný "
|
|||
msgid "copy"
|
||||
msgstr "kopírovať "
|
||||
|
||||
#: admin/field-group.php:181
|
||||
#: admin/views/field-group-field-conditional-logic.php:67
|
||||
#: admin/views/field-group-field-conditional-logic.php:162
|
||||
#: admin/views/field-group-locations.php:23
|
||||
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67
|
||||
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23
|
||||
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
||||
msgid "or"
|
||||
msgstr "alebo"
|
||||
|
|
@ -262,10 +255,8 @@ msgstr "Zobrazenie administrácie"
|
|||
msgid "Super Admin"
|
||||
msgstr "Super Admin "
|
||||
|
||||
#: admin/field-group.php:818 admin/field-group.php:826
|
||||
#: admin/field-group.php:840 admin/field-group.php:847
|
||||
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
||||
#: fields/image.php:226 pro/fields/gallery.php:653
|
||||
#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840 admin/field-group.php:847
|
||||
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 fields/image.php:226 pro/fields/gallery.php:653
|
||||
msgid "All"
|
||||
msgstr "Všetky "
|
||||
|
||||
|
|
@ -340,8 +331,8 @@ msgstr "Dostupná aktualizácia "
|
|||
msgid "Title"
|
||||
msgstr "Názov"
|
||||
|
||||
#: admin/field-groups.php:517 admin/views/field-group-options.php:98
|
||||
#: admin/views/update-network.php:20 admin/views/update-network.php:28
|
||||
#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20
|
||||
#: admin/views/update-network.php:28
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -349,8 +340,7 @@ msgstr ""
|
|||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/field-groups.php:616 admin/settings-info.php:76
|
||||
#: pro/admin/views/settings-updates.php:111
|
||||
#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
||||
msgid "Changelog"
|
||||
msgstr "Záznam zmien "
|
||||
|
||||
|
|
@ -370,8 +360,7 @@ msgstr "Zdroje "
|
|||
msgid "Getting Started"
|
||||
msgstr "Začíname "
|
||||
|
||||
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73
|
||||
#: pro/admin/views/settings-updates.php:17
|
||||
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
||||
msgid "Updates"
|
||||
msgstr "Aktualizácie"
|
||||
|
||||
|
|
@ -407,8 +396,8 @@ msgstr "Vytvoril "
|
|||
msgid "Duplicate this item"
|
||||
msgstr "Duplikovať toto pole "
|
||||
|
||||
#: admin/field-groups.php:673 admin/field-groups.php:685
|
||||
#: admin/views/field-group-field.php:58 pro/fields/flexible-content.php:516
|
||||
#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58
|
||||
#: pro/fields/flexible-content.php:516
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikovať "
|
||||
|
||||
|
|
@ -441,8 +430,7 @@ msgstr "Info"
|
|||
msgid "What's New"
|
||||
msgstr "Čo je nové "
|
||||
|
||||
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9
|
||||
#: admin/views/settings-tools.php:31
|
||||
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -473,12 +461,8 @@ msgstr "<b>Úspech</b>. Nástroj importu pridal %s skupiny polí: %s"
|
|||
|
||||
#: admin/settings-tools.php:332
|
||||
#, php-format
|
||||
msgid ""
|
||||
"<b>Warning</b>. Import tool detected %s field groups already exist and have "
|
||||
"been ignored: %s"
|
||||
msgstr ""
|
||||
"<b>Varovanie</b>. Nástroj importu zistil, že už exsituje %s polí skupín, "
|
||||
"ktoré boli ignorované: %s"
|
||||
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
||||
msgstr "<b>Varovanie</b>. Nástroj importu zistil, že už exsituje %s polí skupín, ktoré boli ignorované: %s"
|
||||
|
||||
#: admin/update.php:113
|
||||
msgid "Upgrade ACF"
|
||||
|
|
@ -500,26 +484,19 @@ msgstr ""
|
|||
msgid "Conditional Logic"
|
||||
msgstr "Podmienená logika "
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:40
|
||||
#: admin/views/field-group-field.php:137 fields/checkbox.php:246
|
||||
#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582
|
||||
#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411
|
||||
#: fields/select.php:425 fields/select.php:439 fields/select.php:453
|
||||
#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784
|
||||
#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
||||
#: fields/user.php:471 fields/wysiwyg.php:384
|
||||
#: pro/admin/views/settings-updates.php:93
|
||||
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137 fields/checkbox.php:246
|
||||
#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 fields/post_object.php:434
|
||||
#: fields/post_object.php:448 fields/select.php:411 fields/select.php:425 fields/select.php:439 fields/select.php:453
|
||||
#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812
|
||||
#: fields/user.php:457 fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93
|
||||
msgid "Yes"
|
||||
msgstr "Áno "
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:41
|
||||
#: admin/views/field-group-field.php:138 fields/checkbox.php:247
|
||||
#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583
|
||||
#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412
|
||||
#: fields/select.php:426 fields/select.php:440 fields/select.php:454
|
||||
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771
|
||||
#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
||||
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
||||
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138 fields/checkbox.php:247
|
||||
#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 fields/post_object.php:435
|
||||
#: fields/post_object.php:449 fields/select.php:412 fields/select.php:426 fields/select.php:440 fields/select.php:454
|
||||
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799
|
||||
#: fields/taxonomy.php:813 fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
||||
#: pro/admin/views/settings-updates.php:103
|
||||
msgid "No"
|
||||
msgstr "Nie"
|
||||
|
|
@ -528,23 +505,19 @@ msgstr "Nie"
|
|||
msgid "Show this field if"
|
||||
msgstr "Zobraziť toto pole ak"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:111
|
||||
#: admin/views/field-group-locations.php:88
|
||||
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88
|
||||
msgid "is equal to"
|
||||
msgstr "sa rovná "
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:112
|
||||
#: admin/views/field-group-locations.php:89
|
||||
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89
|
||||
msgid "is not equal to"
|
||||
msgstr "sa nerovná"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:149
|
||||
#: admin/views/field-group-locations.php:118
|
||||
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118
|
||||
msgid "and"
|
||||
msgstr "a"
|
||||
|
||||
#: admin/views/field-group-field-conditional-logic.php:164
|
||||
#: admin/views/field-group-locations.php:133
|
||||
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133
|
||||
msgid "Add rule group"
|
||||
msgstr "Pridať skupinu pravidiel "
|
||||
|
||||
|
|
@ -576,8 +549,7 @@ msgstr "Vymazať pole"
|
|||
msgid "Delete"
|
||||
msgstr "Vymazať"
|
||||
|
||||
#: admin/views/field-group-field.php:68 fields/oembed.php:212
|
||||
#: fields/taxonomy.php:886
|
||||
#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886
|
||||
msgid "Error"
|
||||
msgstr "Chyba "
|
||||
|
||||
|
|
@ -658,12 +630,8 @@ msgid "Type"
|
|||
msgstr "Typ"
|
||||
|
||||
#: admin/views/field-group-fields.php:44
|
||||
msgid ""
|
||||
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
||||
"first field."
|
||||
msgstr ""
|
||||
"Žiadne polia. Kliknite na tlačidlo <strong>+ Pridať pole</strong> pre "
|
||||
"vytvorenie prvého poľa. "
|
||||
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
||||
msgstr "Žiadne polia. Kliknite na tlačidlo <strong>+ Pridať pole</strong> pre vytvorenie prvého poľa. "
|
||||
|
||||
#: admin/views/field-group-fields.php:51
|
||||
msgid "Drag and drop to reorder"
|
||||
|
|
@ -678,19 +646,14 @@ msgid "Rules"
|
|||
msgstr "Pravidlá "
|
||||
|
||||
#: admin/views/field-group-locations.php:6
|
||||
msgid ""
|
||||
"Create a set of rules to determine which edit screens will use these "
|
||||
"advanced custom fields"
|
||||
msgstr ""
|
||||
"Vytvorte súbor pravidiel určujúcich, ktoré obrazovky úprav budú používať "
|
||||
"Vlastné polia"
|
||||
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
||||
msgstr "Vytvorte súbor pravidiel určujúcich, ktoré obrazovky úprav budú používať Vlastné polia"
|
||||
|
||||
#: admin/views/field-group-locations.php:21
|
||||
msgid "Show this field group if"
|
||||
msgstr "Zobraziť túto skupinu poľa ak "
|
||||
|
||||
#: admin/views/field-group-locations.php:41
|
||||
#: admin/views/field-group-locations.php:47
|
||||
#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47
|
||||
msgid "Post"
|
||||
msgstr "Príspevok "
|
||||
|
||||
|
|
@ -714,8 +677,7 @@ msgstr "Kategória príspevku "
|
|||
msgid "Post Taxonomy"
|
||||
msgstr "Taxonómia príspevku "
|
||||
|
||||
#: admin/views/field-group-locations.php:49
|
||||
#: admin/views/field-group-locations.php:53
|
||||
#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53
|
||||
msgid "Page"
|
||||
msgstr "Stránka "
|
||||
|
||||
|
|
@ -808,7 +770,7 @@ msgid "Top aligned"
|
|||
msgstr "Zarovnané dohora"
|
||||
|
||||
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Zarovnané vľavo"
|
||||
|
||||
#: admin/views/field-group-options.php:72
|
||||
|
|
@ -845,11 +807,11 @@ msgstr "<b>Vybrať</b> položky pre ich <b>skrytie</b> pred obrazovkou úprav."
|
|||
|
||||
#: admin/views/field-group-options.php:110
|
||||
msgid ""
|
||||
"If multiple field groups appear on an edit screen, the first field group's "
|
||||
"options will be used (the one with the lowest order number)"
|
||||
"If multiple field groups appear on an edit screen, the first field group's options will be used (the one with the lowest "
|
||||
"order number)"
|
||||
msgstr ""
|
||||
"Ak viaceré skupiny polí sa zobrazia na obrazovke úprav, nastavenia prvej "
|
||||
"skupiny budú použité (tá s najnižším poradovým číslom)"
|
||||
"Ak viaceré skupiny polí sa zobrazia na obrazovke úprav, nastavenia prvej skupiny budú použité (tá s najnižším poradovým "
|
||||
"číslom)"
|
||||
|
||||
#: admin/views/field-group-options.php:117
|
||||
msgid "Permalink"
|
||||
|
|
@ -921,12 +883,8 @@ msgstr "Víta vás Advanced Custom Fields "
|
|||
|
||||
#: admin/views/settings-info.php:10
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
||||
"hope you like it."
|
||||
msgstr ""
|
||||
"Vďaka za zakutalizáciu! ACF %s je väčšie a lepšie než kedykoľvek predtým. "
|
||||
"Dúfame, že sa vám páči."
|
||||
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
||||
msgstr "Vďaka za zakutalizáciu! ACF %s je väčšie a lepšie než kedykoľvek predtým. Dúfame, že sa vám páči."
|
||||
|
||||
#: admin/views/settings-info.php:23
|
||||
msgid "A smoother custom field experience"
|
||||
|
|
@ -938,12 +896,11 @@ msgstr "Vylepšená použiteľnosť"
|
|||
|
||||
#: admin/views/settings-info.php:29
|
||||
msgid ""
|
||||
"Including the popular Select2 library has improved both usability and speed "
|
||||
"across a number of field types including post object, page link, taxonomy "
|
||||
"and select."
|
||||
"Including the popular Select2 library has improved both usability and speed across a number of field types including "
|
||||
"post object, page link, taxonomy and select."
|
||||
msgstr ""
|
||||
"Populárna knižnica Select2 obsahuje vylepšenú použiteľnosť a rýchlosť medzi "
|
||||
"všetkými poliami vrátane objektov, odkazov taxonómie a výberov."
|
||||
"Populárna knižnica Select2 obsahuje vylepšenú použiteľnosť a rýchlosť medzi všetkými poliami vrátane objektov, odkazov "
|
||||
"taxonómie a výberov."
|
||||
|
||||
#: admin/views/settings-info.php:33
|
||||
msgid "Improved Design"
|
||||
|
|
@ -951,12 +908,11 @@ msgstr "Vylepšený dizajn"
|
|||
|
||||
#: admin/views/settings-info.php:34
|
||||
msgid ""
|
||||
"Many fields have undergone a visual refresh to make ACF look better than "
|
||||
"ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
|
||||
"(new) fields!"
|
||||
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are seen on the "
|
||||
"gallery, relationship and oEmbed (new) fields!"
|
||||
msgstr ""
|
||||
"Vela polí prebehlo grafickou úpravou. Teraz ACF vyzerá oveľa lepšie! Zmeny "
|
||||
"uvidíte v galérii, vzťahoch a OEmbed (vložených) poliach!"
|
||||
"Vela polí prebehlo grafickou úpravou. Teraz ACF vyzerá oveľa lepšie! Zmeny uvidíte v galérii, vzťahoch a OEmbed "
|
||||
"(vložených) poliach!"
|
||||
|
||||
#: admin/views/settings-info.php:38
|
||||
msgid "Improved Data"
|
||||
|
|
@ -964,12 +920,11 @@ msgstr "Vylepšené dáta"
|
|||
|
||||
#: admin/views/settings-info.php:39
|
||||
msgid ""
|
||||
"Redesigning the data architecture has allowed sub fields to live "
|
||||
"independently from their parents. This allows you to drag and drop fields in "
|
||||
"and out of parent fields!"
|
||||
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This allows you to "
|
||||
"drag and drop fields in and out of parent fields!"
|
||||
msgstr ""
|
||||
"Zmena dátovej architektúry priniesla nezávislosť odvodených polí od "
|
||||
"nadradených. Toto vám dovoľuje prenášat polia mimo nadradených polí!"
|
||||
"Zmena dátovej architektúry priniesla nezávislosť odvodených polí od nadradených. Toto vám dovoľuje prenášat polia mimo "
|
||||
"nadradených polí!"
|
||||
|
||||
#: admin/views/settings-info.php:45
|
||||
msgid "Goodbye Add-ons. Hello PRO"
|
||||
|
|
@ -980,21 +935,17 @@ msgid "Introducing ACF PRO"
|
|||
msgstr "Pro verzia "
|
||||
|
||||
#: admin/views/settings-info.php:51
|
||||
msgid ""
|
||||
"We're changing the way premium functionality is delivered in an exciting way!"
|
||||
msgstr ""
|
||||
"Prémiové funkcie modulu sme sa rozhodli poskytnúť vzrušujúcejším spôsobom!"
|
||||
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
||||
msgstr "Prémiové funkcie modulu sme sa rozhodli poskytnúť vzrušujúcejším spôsobom!"
|
||||
|
||||
#: admin/views/settings-info.php:52
|
||||
#, php-format
|
||||
msgid ""
|
||||
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
||||
"version of ACF</a>. With both personal and developer licenses available, "
|
||||
"premium functionality is more affordable and accessible than ever before!"
|
||||
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both personal and "
|
||||
"developer licenses available, premium functionality is more affordable and accessible than ever before!"
|
||||
msgstr ""
|
||||
"Všetky prémiové doplnky boli spojené do <a href=\"%s\">Pro verzie ACF</a>. "
|
||||
"Prémiové funkcie sú dostupnejšie a prístupnejšie aj pomocou personálnych a "
|
||||
"firemmných licencií!"
|
||||
"Všetky prémiové doplnky boli spojené do <a href=\"%s\">Pro verzie ACF</a>. Prémiové funkcie sú dostupnejšie a "
|
||||
"prístupnejšie aj pomocou personálnych a firemmných licencií!"
|
||||
|
||||
#: admin/views/settings-info.php:56
|
||||
msgid "Powerful Features"
|
||||
|
|
@ -1002,12 +953,10 @@ msgstr "Výkonné funkcie"
|
|||
|
||||
#: admin/views/settings-info.php:57
|
||||
msgid ""
|
||||
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
||||
"layouts, a beautiful gallery field and the ability to create extra admin "
|
||||
"options pages!"
|
||||
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful gallery field and the "
|
||||
"ability to create extra admin options pages!"
|
||||
msgstr ""
|
||||
"ACF PRO obsahuje opakovanie zadaných dát, flexibilné rozloženie obsahu, "
|
||||
"prekrásnu galériu a extra administračné stránky!"
|
||||
"ACF PRO obsahuje opakovanie zadaných dát, flexibilné rozloženie obsahu, prekrásnu galériu a extra administračné stránky!"
|
||||
|
||||
#: admin/views/settings-info.php:58
|
||||
#, php-format
|
||||
|
|
@ -1020,23 +969,17 @@ msgstr "Ľahká aktualizácia"
|
|||
|
||||
#: admin/views/settings-info.php:63
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
||||
"and claim a free copy of ACF PRO!"
|
||||
msgstr ""
|
||||
"Pre uľahčenie aktualizácie, <a href=\"%s\">prihláste sa do obchodu</a> a "
|
||||
"získajte zdarma ACF PRO!"
|
||||
msgid "To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of ACF PRO!"
|
||||
msgstr "Pre uľahčenie aktualizácie, <a href=\"%s\">prihláste sa do obchodu</a> a získajte zdarma ACF PRO!"
|
||||
|
||||
#: admin/views/settings-info.php:64
|
||||
#, php-format
|
||||
msgid ""
|
||||
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
||||
"but if you do have one, please contact our support team via the <a href=\"%s"
|
||||
"\">help desk</a>"
|
||||
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, please contact our "
|
||||
"support team via the <a href=\"%s\">help desk</a>"
|
||||
msgstr ""
|
||||
"Napísali sme <a href=\"%s\">príručku k aktualizácii</a>. Zodpovedali sme "
|
||||
"väčšinu otázok, ak však máte nejaké ďaľšie kontaktuje <a href=\"%s\">našu "
|
||||
"podporu</a>"
|
||||
"Napísali sme <a href=\"%s\">príručku k aktualizácii</a>. Zodpovedali sme väčšinu otázok, ak však máte nejaké ďaľšie "
|
||||
"kontaktuje <a href=\"%s\">našu podporu</a>"
|
||||
|
||||
#: admin/views/settings-info.php:72
|
||||
msgid "Under the Hood"
|
||||
|
|
@ -1071,9 +1014,7 @@ msgid "Better version control"
|
|||
msgstr "Lepšia správa verzií"
|
||||
|
||||
#: admin/views/settings-info.php:95
|
||||
msgid ""
|
||||
"New auto export to JSON feature allows field settings to be version "
|
||||
"controlled"
|
||||
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
||||
msgstr "Nový auto export JSON obsahuje kontrolu verzií povolených polí"
|
||||
|
||||
#: admin/views/settings-info.php:99
|
||||
|
|
@ -1109,12 +1050,8 @@ msgid "New Settings"
|
|||
msgstr "Nové nastavenia"
|
||||
|
||||
#: admin/views/settings-info.php:122
|
||||
msgid ""
|
||||
"Field group settings have been added for label placement and instruction "
|
||||
"placement"
|
||||
msgstr ""
|
||||
"Boli pridané nastavenie skupiny pola pre umiestnenie oznčenia a umietsntenie "
|
||||
"inštrukcií"
|
||||
msgid "Field group settings have been added for label placement and instruction placement"
|
||||
msgstr "Boli pridané nastavenie skupiny pola pre umiestnenie oznčenia a umietsntenie inštrukcií"
|
||||
|
||||
#: admin/views/settings-info.php:128
|
||||
msgid "Better Front End Forms"
|
||||
|
|
@ -1137,22 +1074,16 @@ msgid "Relationship Field"
|
|||
msgstr "Vzťah polí"
|
||||
|
||||
#: admin/views/settings-info.php:139
|
||||
msgid ""
|
||||
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
||||
msgstr ""
|
||||
"Nový nastavenie vťahov pola 'FIltre' (vyhľadávanie, typ článku, taxonómia)"
|
||||
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
||||
msgstr "Nový nastavenie vťahov pola 'FIltre' (vyhľadávanie, typ článku, taxonómia)"
|
||||
|
||||
#: admin/views/settings-info.php:145
|
||||
msgid "Moving Fields"
|
||||
msgstr "Hýbajúce polia"
|
||||
|
||||
#: admin/views/settings-info.php:146
|
||||
msgid ""
|
||||
"New field group functionality allows you to move a field between groups & "
|
||||
"parents"
|
||||
msgstr ""
|
||||
"Nová skupinová funkcionalita vám dovolí presúvať polia medzi skupinami a "
|
||||
"nadradenými poliami"
|
||||
msgid "New field group functionality allows you to move a field between groups & parents"
|
||||
msgstr "Nová skupinová funkcionalita vám dovolí presúvať polia medzi skupinami a nadradenými poliami"
|
||||
|
||||
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
||||
msgid "Page Link"
|
||||
|
|
@ -1167,12 +1098,8 @@ msgid "Better Options Pages"
|
|||
msgstr "Lepšie nastavenia stránok"
|
||||
|
||||
#: admin/views/settings-info.php:156
|
||||
msgid ""
|
||||
"New functions for options page allow creation of both parent and child menu "
|
||||
"pages"
|
||||
msgstr ""
|
||||
"Nové funkcie nastavenia stránky vám dovolí vytvorenie vytvorenie menu "
|
||||
"nadradených aj odvodených stránok"
|
||||
msgid "New functions for options page allow creation of both parent and child menu pages"
|
||||
msgstr "Nové funkcie nastavenia stránky vám dovolí vytvorenie vytvorenie menu nadradených aj odvodených stránok"
|
||||
|
||||
#: admin/views/settings-info.php:165
|
||||
#, php-format
|
||||
|
|
@ -1185,16 +1112,13 @@ msgstr "Export skupiny poľa do PHP "
|
|||
|
||||
#: admin/views/settings-tools-export.php:17
|
||||
msgid ""
|
||||
"The following code can be used to register a local version of the selected "
|
||||
"field group(s). A local field group can provide many benefits such as faster "
|
||||
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
||||
"the following code to your theme's functions.php file or include it within "
|
||||
"an external file."
|
||||
"The following code can be used to register a local version of the selected field group(s). A local field group can "
|
||||
"provide many benefits such as faster load times, version control & dynamic fields/settings. Simply copy and paste the "
|
||||
"following code to your theme's functions.php file or include it within an external file."
|
||||
msgstr ""
|
||||
"Nasledujúci kód môže byť použitý pre miestnu veru vybraných polí skupín. "
|
||||
"Lokálna skupina polí poskytuje rýchlejšie načítanie, lepšiu kontrolu verzií "
|
||||
"a dynamické polia a ich nastavenia. Jednoducho skopírujte nasledujúci kód do "
|
||||
"súboru funkcií vašej témy functions.php alebo ich zahrňte v externom súbore."
|
||||
"Nasledujúci kód môže byť použitý pre miestnu veru vybraných polí skupín. Lokálna skupina polí poskytuje rýchlejšie "
|
||||
"načítanie, lepšiu kontrolu verzií a dynamické polia a ich nastavenia. Jednoducho skopírujte nasledujúci kód do súboru "
|
||||
"funkcií vašej témy functions.php alebo ich zahrňte v externom súbore."
|
||||
|
||||
#: admin/views/settings-tools.php:5
|
||||
msgid "Select Field Groups"
|
||||
|
|
@ -1206,15 +1130,13 @@ msgstr "Export skupín polí "
|
|||
|
||||
#: admin/views/settings-tools.php:38
|
||||
msgid ""
|
||||
"Select the field groups you would like to export and then select your export "
|
||||
"method. Use the download button to export to a .json file which you can then "
|
||||
"import to another ACF installation. Use the generate button to export to PHP "
|
||||
"code which you can place in your theme."
|
||||
"Select the field groups you would like to export and then select your export method. Use the download button to export "
|
||||
"to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code "
|
||||
"which you can place in your theme."
|
||||
msgstr ""
|
||||
"Vyberte skupiny polí, ktoré chcete exportovať. Vyberte vhodnú metódu "
|
||||
"exportu. Tlačidlo Stiahnuť vám exportuje dáta do .json súboru. Tento súbor "
|
||||
"môžete použiť v inej ACF inštalácii. Tlačidlo Generovať vám vyvtorí PHP kód, "
|
||||
"ktorý použijete vo vašej téme."
|
||||
"Vyberte skupiny polí, ktoré chcete exportovať. Vyberte vhodnú metódu exportu. Tlačidlo Stiahnuť vám exportuje dáta do ."
|
||||
"json súboru. Tento súbor môžete použiť v inej ACF inštalácii. Tlačidlo Generovať vám vyvtorí PHP kód, ktorý použijete vo "
|
||||
"vašej téme."
|
||||
|
||||
#: admin/views/settings-tools.php:50
|
||||
msgid "Download export file"
|
||||
|
|
@ -1230,11 +1152,9 @@ msgstr "Importovať skupiny poľa"
|
|||
|
||||
#: admin/views/settings-tools.php:67
|
||||
msgid ""
|
||||
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
||||
"you click the import button below, ACF will import the field groups."
|
||||
msgstr ""
|
||||
"Vyberte JSON súbor ACF na import. Po kliknutí na tlačidlo import sa nahrajú "
|
||||
"všetky skupiny polí ACF."
|
||||
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will "
|
||||
"import the field groups."
|
||||
msgstr "Vyberte JSON súbor ACF na import. Po kliknutí na tlačidlo import sa nahrajú všetky skupiny polí ACF."
|
||||
|
||||
#: admin/views/settings-tools.php:77 fields/file.php:46
|
||||
msgid "Select File"
|
||||
|
|
@ -1249,9 +1169,7 @@ msgid "Advanced Custom Fields Database Upgrade"
|
|||
msgstr ""
|
||||
|
||||
#: admin/views/update-network.php:10
|
||||
msgid ""
|
||||
"The following sites require a DB upgrade. Check the ones you want to update "
|
||||
"and then click “Upgrade Database”."
|
||||
msgid "The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade Database”."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
||||
|
|
@ -1273,11 +1191,8 @@ msgstr ""
|
|||
|
||||
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
||||
msgid ""
|
||||
"It is strongly recommended that you backup your database before proceeding. "
|
||||
"Are you sure you wish to run the updater now?"
|
||||
msgstr ""
|
||||
"Pred aktualizáciou odporúčame zálohovať databázu. Želáte si aktualizáciu "
|
||||
"spustiť teraz?"
|
||||
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?"
|
||||
msgstr "Pred aktualizáciou odporúčame zálohovať databázu. Želáte si aktualizáciu spustiť teraz?"
|
||||
|
||||
#: admin/views/update-network.php:157
|
||||
msgid "Upgrade complete"
|
||||
|
|
@ -1297,12 +1212,8 @@ msgid "Thank you for updating to %s v%s!"
|
|||
msgstr "Vďaka za aktualizáciu %s v%s!"
|
||||
|
||||
#: admin/views/update-notice.php:25
|
||||
msgid ""
|
||||
"Before you start using the new awesome features, please update your database "
|
||||
"to the newest version."
|
||||
msgstr ""
|
||||
"Než začnete používať nové funkcie, prosím najprv aktualizujte vašu databázu "
|
||||
"na najnovšiu verziu."
|
||||
msgid "Before you start using the new awesome features, please update your database to the newest version."
|
||||
msgstr "Než začnete používať nové funkcie, prosím najprv aktualizujte vašu databázu na najnovšiu verziu."
|
||||
|
||||
#: admin/views/update.php:12
|
||||
msgid "Reading upgrade tasks..."
|
||||
|
|
@ -1404,8 +1315,8 @@ msgstr "Relačný "
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery "
|
||||
|
||||
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
||||
#: pro/fields/flexible-content.php:512 pro/fields/repeater.php:392
|
||||
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512
|
||||
#: pro/fields/repeater.php:392
|
||||
msgid "Layout"
|
||||
msgstr "Rozmiestnenie"
|
||||
|
||||
|
|
@ -1467,10 +1378,9 @@ msgstr "Pre lepšiu kontrolu, môžete určiť hodnotu a popis takto:"
|
|||
msgid "red : Red"
|
||||
msgstr "červená : Červená "
|
||||
|
||||
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124
|
||||
#: fields/number.php:150 fields/radio.php:222 fields/select.php:397
|
||||
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
||||
#: fields/url.php:117 fields/wysiwyg.php:345
|
||||
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150 fields/radio.php:222
|
||||
#: fields/select.php:397 fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115 fields/url.php:117
|
||||
#: fields/wysiwyg.php:345
|
||||
msgid "Default Value"
|
||||
msgstr "Základná hodnota "
|
||||
|
||||
|
|
@ -1550,39 +1460,34 @@ msgstr "Týždeň začína "
|
|||
msgid "Email"
|
||||
msgstr "E-Mail "
|
||||
|
||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
||||
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
|
||||
#: fields/wysiwyg.php:346
|
||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 fields/textarea.php:146
|
||||
#: fields/url.php:118 fields/wysiwyg.php:346
|
||||
msgid "Appears when creating a new post"
|
||||
msgstr "Zobrazí sa pri vytvorení nového príspevku "
|
||||
|
||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
||||
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
|
||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 fields/textarea.php:154
|
||||
#: fields/url.php:126
|
||||
msgid "Placeholder Text"
|
||||
msgstr "Zástupný text "
|
||||
|
||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
||||
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
|
||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 fields/textarea.php:155
|
||||
#: fields/url.php:127
|
||||
msgid "Appears within the input"
|
||||
msgstr "Zobrazí sa vo vstupe"
|
||||
|
||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
||||
#: fields/text.php:166
|
||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
||||
msgid "Prepend"
|
||||
msgstr "Predpona"
|
||||
|
||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
||||
#: fields/text.php:167
|
||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
||||
msgid "Appears before the input"
|
||||
msgstr "Zobrazí sa pred vstupom"
|
||||
|
||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
||||
#: fields/text.php:175
|
||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
||||
msgid "Append"
|
||||
msgstr "Prípona"
|
||||
|
||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
||||
#: fields/text.php:176
|
||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
||||
msgid "Appears after the input"
|
||||
msgstr "Zobrazí sa po vstupe"
|
||||
|
||||
|
|
@ -1658,8 +1563,8 @@ msgstr "Minimálny počet"
|
|||
msgid "Restrict which files can be uploaded"
|
||||
msgstr "Vymedzte, ktoré súbory je možné nahrať"
|
||||
|
||||
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
||||
#: fields/image.php:290 pro/fields/gallery.php:684 pro/fields/gallery.php:717
|
||||
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 pro/fields/gallery.php:684
|
||||
#: pro/fields/gallery.php:717
|
||||
msgid "File size"
|
||||
msgstr "Veľkosť súboru "
|
||||
|
||||
|
|
@ -1715,8 +1620,8 @@ msgstr "Zoom"
|
|||
msgid "Set the initial zoom level"
|
||||
msgstr "Nastavte základnú úroveň priblíženia"
|
||||
|
||||
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279
|
||||
#: fields/oembed.php:262 pro/fields/gallery.php:673 pro/fields/gallery.php:706
|
||||
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262 pro/fields/gallery.php:673
|
||||
#: pro/fields/gallery.php:706
|
||||
msgid "Height"
|
||||
msgstr "Výška "
|
||||
|
||||
|
|
@ -1776,13 +1681,11 @@ msgstr "Veľkosť náhľadu "
|
|||
msgid "Shown when entering data"
|
||||
msgstr "Zobrazené pri zadávaní dát "
|
||||
|
||||
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662
|
||||
#: pro/fields/gallery.php:695
|
||||
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695
|
||||
msgid "Restrict which images can be uploaded"
|
||||
msgstr "Určite, ktoré typy obrázkov môžu byť nahraté"
|
||||
|
||||
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251
|
||||
#: pro/fields/gallery.php:665 pro/fields/gallery.php:698
|
||||
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665 pro/fields/gallery.php:698
|
||||
msgid "Width"
|
||||
msgstr "Šírka"
|
||||
|
||||
|
|
@ -1800,9 +1703,7 @@ msgstr "Eskapovať HTML (€ za €)"
|
|||
|
||||
#: fields/message.php:113
|
||||
msgid "Allow HTML markup to display as visible text instead of rendering"
|
||||
msgstr ""
|
||||
"Povoliť zobrazenie HTML značiek vo forme viditeľného textu namiesto ich "
|
||||
"vykreslenia"
|
||||
msgstr "Povoliť zobrazenie HTML značiek vo forme viditeľného textu namiesto ich vykreslenia"
|
||||
|
||||
#: fields/number.php:36
|
||||
msgid "Number"
|
||||
|
|
@ -1854,33 +1755,27 @@ msgstr "Veľkosť vloženého obsahu"
|
|||
msgid "Archives"
|
||||
msgstr "Archívy "
|
||||
|
||||
#: fields/page_link.php:535 fields/post_object.php:401
|
||||
#: fields/relationship.php:690
|
||||
#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690
|
||||
msgid "Filter by Post Type"
|
||||
msgstr "Filtrovať podľa typu príspevku "
|
||||
|
||||
#: fields/page_link.php:543 fields/post_object.php:409
|
||||
#: fields/relationship.php:698
|
||||
#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698
|
||||
msgid "All post types"
|
||||
msgstr "Všetky typy príspevkov "
|
||||
|
||||
#: fields/page_link.php:549 fields/post_object.php:415
|
||||
#: fields/relationship.php:704
|
||||
#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704
|
||||
msgid "Filter by Taxonomy"
|
||||
msgstr "Filter z taxonómie "
|
||||
|
||||
#: fields/page_link.php:557 fields/post_object.php:423
|
||||
#: fields/relationship.php:712
|
||||
#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712
|
||||
msgid "All taxonomies"
|
||||
msgstr "Žiadny filter taxonómie "
|
||||
|
||||
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406
|
||||
#: fields/taxonomy.php:765 fields/user.php:452
|
||||
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765 fields/user.php:452
|
||||
msgid "Allow Null?"
|
||||
msgstr "Povoliť nulovú hodnotu? "
|
||||
|
||||
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420
|
||||
#: fields/user.php:466
|
||||
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466
|
||||
msgid "Select multiple values?"
|
||||
msgstr "Vybrať viac hodnôt? "
|
||||
|
||||
|
|
@ -1888,8 +1783,7 @@ msgstr "Vybrať viac hodnôt? "
|
|||
msgid "Password"
|
||||
msgstr "Heslo "
|
||||
|
||||
#: fields/post_object.php:36 fields/post_object.php:462
|
||||
#: fields/relationship.php:769
|
||||
#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769
|
||||
msgid "Post Object"
|
||||
msgstr "Objekt príspevku "
|
||||
|
||||
|
|
@ -1998,28 +1892,22 @@ msgid "Warning"
|
|||
msgstr "Varovanie"
|
||||
|
||||
#: fields/tab.php:133
|
||||
msgid ""
|
||||
"The tab field will display incorrectly when added to a Table style repeater "
|
||||
"field or flexible content field layout"
|
||||
msgid "The tab field will display incorrectly when added to a Table style repeater field or flexible content field layout"
|
||||
msgstr ""
|
||||
"Pole záložky nebude správne zobrazené ak bude pridané do opakovacieho pola "
|
||||
"štýlu tabuľky alebo flexibilného rozloženia pola."
|
||||
"Pole záložky nebude správne zobrazené ak bude pridané do opakovacieho pola štýlu tabuľky alebo flexibilného rozloženia "
|
||||
"pola."
|
||||
|
||||
#: fields/tab.php:146
|
||||
msgid ""
|
||||
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
||||
"together."
|
||||
msgstr ""
|
||||
"Pre lepšiu organizáciu na obrazovke úpravý polí použite \"Polia záložiek\"."
|
||||
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
||||
msgstr "Pre lepšiu organizáciu na obrazovke úpravý polí použite \"Polia záložiek\"."
|
||||
|
||||
#: fields/tab.php:148
|
||||
msgid ""
|
||||
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
||||
"defined) will be grouped together using this field's label as the tab "
|
||||
"heading."
|
||||
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together using this "
|
||||
"field's label as the tab heading."
|
||||
msgstr ""
|
||||
"Všetky polia nasledujúce \"pole záložky\" (pokým nebude definované nové "
|
||||
"\"pole záložky\") budú zoskupené a pod jedným nadpisom a označením."
|
||||
"Všetky polia nasledujúce \"pole záložky\" (pokým nebude definované nové \"pole záložky\") budú zoskupené a pod jedným "
|
||||
"nadpisom a označením."
|
||||
|
||||
#: fields/tab.php:155
|
||||
msgid "Placement"
|
||||
|
|
@ -2283,12 +2171,8 @@ msgid "License"
|
|||
msgstr "Licencia"
|
||||
|
||||
#: pro/admin/views/settings-updates.php:24
|
||||
msgid ""
|
||||
"To unlock updates, please enter your license key below. If you don't have a "
|
||||
"licence key, please see"
|
||||
msgstr ""
|
||||
"Pre odblokovanie aktualizácii, sem zadajte váš licenčný kľúč. Ak ešte "
|
||||
"licenčný kľúč nemáte, pozrite si"
|
||||
msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
||||
msgstr "Pre odblokovanie aktualizácii, sem zadajte váš licenčný kľúč. Ak ešte licenčný kľúč nemáte, pozrite si"
|
||||
|
||||
#: pro/admin/views/settings-updates.php:24
|
||||
msgid "details & pricing"
|
||||
|
|
@ -2337,13 +2221,11 @@ msgstr "Nastavenia "
|
|||
#: pro/core/updates.php:186
|
||||
#, php-format
|
||||
msgid ""
|
||||
"To enable updates, please enter your license key on the <a href=\"%s"
|
||||
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
||||
"\">details & pricing</a>"
|
||||
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't have a licence "
|
||||
"key, please see <a href=\"%s\">details & pricing</a>"
|
||||
msgstr ""
|
||||
"Aby ste zapli aktualizácie, musíte zadať licencčný kľúč na stránke <a href="
|
||||
"\"%s\">aktualizácií</a>. Ak nemáte licenčný kľúč, porizte si <a href=\"%s"
|
||||
"\">podrobnosti a ceny</a>."
|
||||
"Aby ste zapli aktualizácie, musíte zadať licencčný kľúč na stránke <a href=\"%s\">aktualizácií</a>. Ak nemáte licenčný "
|
||||
"kľúč, porizte si <a href=\"%s\">podrobnosti a ceny</a>."
|
||||
|
||||
#: pro/fields/flexible-content.php:36
|
||||
msgid "Flexible Content"
|
||||
|
|
@ -2606,24 +2488,19 @@ msgstr ""
|
|||
#~ msgstr "Import / Export"
|
||||
|
||||
#~ msgid "Field groups are created in order from lowest to highest"
|
||||
#~ msgstr ""
|
||||
#~ "Skupiny polí sú vytvorené v poradí <br /> od najnižšej po najvyššiu "
|
||||
#~ msgstr "Skupiny polí sú vytvorené v poradí <br /> od najnižšej po najvyššiu "
|
||||
|
||||
#~ msgid "ACF PRO Required"
|
||||
#~ msgstr "Musíte mať Pro verziu"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "We have detected an issue which requires your attention: This website "
|
||||
#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF."
|
||||
#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons (%s) which are no "
|
||||
#~ "longer compatible with ACF."
|
||||
#~ msgstr ""
|
||||
#~ "Zistili sme problém vyžadujúci vašu pozornosť. Táto stránka využíva "
|
||||
#~ "doplnky (%s), ktoré už nie sú komaptibilné s ACF."
|
||||
#~ "Zistili sme problém vyžadujúci vašu pozornosť. Táto stránka využíva doplnky (%s), ktoré už nie sú komaptibilné s ACF."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Don't panic, you can simply roll back the plugin and continue using ACF "
|
||||
#~ "as you know it!"
|
||||
#~ msgstr ""
|
||||
#~ "Nemusíte sa báť! Môžete sa vrátiť k používaniu predchádzajúcej verzii ACF!"
|
||||
#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!"
|
||||
#~ msgstr "Nemusíte sa báť! Môžete sa vrátiť k používaniu predchádzajúcej verzii ACF!"
|
||||
|
||||
#~ msgid "Roll back to ACF v%s"
|
||||
#~ msgstr "Vrátiť sa k ACF v%s"
|
||||
|
|
@ -2652,11 +2529,8 @@ msgstr ""
|
|||
#~ msgid "Load & Save Terms to Post"
|
||||
#~ msgstr "Nahrať & uložiť podmienky k prispievaniu "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Load value based on the post's terms and update the post's terms on save"
|
||||
#~ msgstr ""
|
||||
#~ "Nahrať hodnoty založené na podmienkach prispievania, aktualizovať "
|
||||
#~ "akrutálne podmienky a uložiť "
|
||||
#~ msgid "Load value based on the post's terms and update the post's terms on save"
|
||||
#~ msgstr "Nahrať hodnoty založené na podmienkach prispievania, aktualizovať akrutálne podmienky a uložiť "
|
||||
|
||||
#~ msgid "file"
|
||||
#~ msgstr "subor"
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-06-27 15:28+1000\n"
|
||||
"PO-Revision-Date: 2017-06-27 15:29+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Language: sv_SE\n"
|
||||
|
|
@ -665,7 +665,7 @@ msgstr "Toppjusterad"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:117
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Vänsterjusterad"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,15 +3,15 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.6.3\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
||||
"PO-Revision-Date: 2017-10-12 15:02+0300\n"
|
||||
"Last-Translator: Emre Erkan <kara@karalamalar.net>\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Emre Erkan <emre@ada.agency>\n"
|
||||
"Language: tr_TR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Poedit 2.0.3\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -663,7 +663,7 @@ msgstr "Üste hizalı"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Sola hizalı"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1311,7 +1311,8 @@ msgstr "İlişkisel"
|
|||
msgid "jQuery"
|
||||
msgstr "jQuery"
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2621,8 +2622,8 @@ msgstr "Alan grubunu düzenle"
|
|||
msgid "Validate Email"
|
||||
msgstr "E-postayı doğrula"
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Güncelle"
|
||||
|
||||
|
|
|
|||
BIN
lang/acf-uk.mo
BIN
lang/acf-uk.mo
Binary file not shown.
|
|
@ -3,8 +3,8 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
||||
"PO-Revision-Date: 2017-11-05 04:07+0200\n"
|
||||
"Last-Translator: Jurko Chervony <info@skinik.name>\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: skinik <info@skinik.name>\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
|
@ -12,7 +12,7 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Poedit 2.0.4\n"
|
||||
"X-Generator: Poedit 1.8.1\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||
|
|
@ -670,7 +670,7 @@ msgstr "Зверху"
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:103
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "Зліва"
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1274,7 +1274,8 @@ msgstr ""
|
|||
msgid "jQuery"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields.php:149
|
||||
#: includes/fields/class-acf-field-button-group.php:177
|
||||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
|
|
@ -2609,8 +2610,8 @@ msgstr "Редагувати групу полів"
|
|||
msgid "Validate Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
||||
#: pro/options-page.php:81
|
||||
#: includes/forms/form-front.php:103
|
||||
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
||||
msgid "Update"
|
||||
msgstr "Оновити"
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -3,7 +3,7 @@ msgstr ""
|
|||
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2015-08-11 23:50+0200\n"
|
||||
"PO-Revision-Date: 2017-10-13 15:27+1000\n"
|
||||
"PO-Revision-Date: 2018-02-06 10:07+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Amos Lee <470266798@qq.com>\n"
|
||||
"Language: zh_CN\n"
|
||||
|
|
@ -794,7 +794,7 @@ msgid "Top aligned"
|
|||
msgstr "顶部对齐"
|
||||
|
||||
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr "左对齐"
|
||||
|
||||
#: admin/views/field-group-options.php:72
|
||||
|
|
|
|||
94
lang/acf.pot
94
lang/acf.pot
|
|
@ -3,7 +3,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Advanced Custom Fields\n"
|
||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||
"POT-Creation-Date: 2017-12-10 11:15+1000\n"
|
||||
"POT-Creation-Date: 2018-02-06 10:08+1000\n"
|
||||
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
||||
|
|
@ -70,7 +70,7 @@ msgstr ""
|
|||
#: acf.php:401 includes/admin/admin-field-group.php:182
|
||||
#: includes/admin/admin-field-group.php:275
|
||||
#: includes/admin/admin-field-groups.php:510
|
||||
#: pro/fields/class-acf-field-clone.php:807
|
||||
#: pro/fields/class-acf-field-clone.php:811
|
||||
msgid "Fields"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -184,7 +184,7 @@ msgstr ""
|
|||
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
||||
#: includes/admin/views/field-group-locations.php:29
|
||||
#: includes/admin/views/html-location-group.php:3
|
||||
#: includes/api/api-helpers.php:3959
|
||||
#: includes/api/api-helpers.php:4048
|
||||
msgid "or"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -586,55 +586,55 @@ msgstr ""
|
|||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:67
|
||||
#: includes/admin/views/field-group-field.php:68
|
||||
msgid "Field Label"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:68
|
||||
#: includes/admin/views/field-group-field.php:69
|
||||
msgid "This is the name which will appear on the EDIT page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:77
|
||||
#: includes/admin/views/field-group-field.php:78
|
||||
msgid "Field Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:78
|
||||
#: includes/admin/views/field-group-field.php:79
|
||||
msgid "Single word, no spaces. Underscores and dashes allowed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:87
|
||||
#: includes/admin/views/field-group-field.php:88
|
||||
msgid "Field Type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:98
|
||||
#: includes/admin/views/field-group-field.php:99
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:99
|
||||
#: includes/admin/views/field-group-field.php:100
|
||||
msgid "Instructions for authors. Shown when submitting data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:108
|
||||
#: includes/admin/views/field-group-field.php:109
|
||||
msgid "Required?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:131
|
||||
#: includes/admin/views/field-group-field.php:132
|
||||
msgid "Wrapper Attributes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:137
|
||||
#: includes/admin/views/field-group-field.php:138
|
||||
msgid "width"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:152
|
||||
#: includes/admin/views/field-group-field.php:153
|
||||
msgid "class"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:165
|
||||
#: includes/admin/views/field-group-field.php:166
|
||||
msgid "id"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-field.php:177
|
||||
#: includes/admin/views/field-group-field.php:178
|
||||
msgid "Close Field"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -724,7 +724,7 @@ msgstr ""
|
|||
|
||||
#: includes/admin/views/field-group-options.php:63
|
||||
#: includes/fields/class-acf-field-tab.php:107
|
||||
msgid "Left Aligned"
|
||||
msgid "Left aligned"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/field-group-options.php:70
|
||||
|
|
@ -1177,58 +1177,58 @@ msgstr ""
|
|||
msgid "We think you'll love the changes in %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:858
|
||||
#: includes/api/api-helpers.php:947
|
||||
msgid "Thumbnail"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:859
|
||||
#: includes/api/api-helpers.php:948
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:860
|
||||
#: includes/api/api-helpers.php:949
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:909
|
||||
#: includes/api/api-helpers.php:998
|
||||
msgid "Full Size"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:1250 includes/api/api-helpers.php:1823
|
||||
#: pro/fields/class-acf-field-clone.php:992
|
||||
#: includes/api/api-helpers.php:1339 includes/api/api-helpers.php:1912
|
||||
#: pro/fields/class-acf-field-clone.php:996
|
||||
msgid "(no title)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:3880
|
||||
#: includes/api/api-helpers.php:3969
|
||||
#, php-format
|
||||
msgid "Image width must be at least %dpx."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:3885
|
||||
#: includes/api/api-helpers.php:3974
|
||||
#, php-format
|
||||
msgid "Image width must not exceed %dpx."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:3901
|
||||
#: includes/api/api-helpers.php:3990
|
||||
#, php-format
|
||||
msgid "Image height must be at least %dpx."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:3906
|
||||
#: includes/api/api-helpers.php:3995
|
||||
#, php-format
|
||||
msgid "Image height must not exceed %dpx."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:3924
|
||||
#: includes/api/api-helpers.php:4013
|
||||
#, php-format
|
||||
msgid "File size must be at least %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:3929
|
||||
#: includes/api/api-helpers.php:4018
|
||||
#, php-format
|
||||
msgid "File size must must not exceed %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/api/api-helpers.php:3963
|
||||
#: includes/api/api-helpers.php:4052
|
||||
#, php-format
|
||||
msgid "File type must be %s."
|
||||
msgstr ""
|
||||
|
|
@ -1258,7 +1258,7 @@ msgstr ""
|
|||
#: includes/fields/class-acf-field-checkbox.php:384
|
||||
#: includes/fields/class-acf-field-group.php:474
|
||||
#: includes/fields/class-acf-field-radio.php:285
|
||||
#: pro/fields/class-acf-field-clone.php:839
|
||||
#: pro/fields/class-acf-field-clone.php:843
|
||||
#: pro/fields/class-acf-field-flexible-content.php:554
|
||||
#: pro/fields/class-acf-field-flexible-content.php:603
|
||||
#: pro/fields/class-acf-field-repeater.php:450
|
||||
|
|
@ -1873,26 +1873,26 @@ msgid "Sub Fields"
|
|||
msgstr ""
|
||||
|
||||
#: includes/fields/class-acf-field-group.php:475
|
||||
#: pro/fields/class-acf-field-clone.php:840
|
||||
#: pro/fields/class-acf-field-clone.php:844
|
||||
msgid "Specify the style used to render the selected fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-acf-field-group.php:480
|
||||
#: pro/fields/class-acf-field-clone.php:845
|
||||
#: pro/fields/class-acf-field-clone.php:849
|
||||
#: pro/fields/class-acf-field-flexible-content.php:614
|
||||
#: pro/fields/class-acf-field-repeater.php:458
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-acf-field-group.php:481
|
||||
#: pro/fields/class-acf-field-clone.php:846
|
||||
#: pro/fields/class-acf-field-clone.php:850
|
||||
#: pro/fields/class-acf-field-flexible-content.php:613
|
||||
#: pro/fields/class-acf-field-repeater.php:457
|
||||
msgid "Table"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-acf-field-group.php:482
|
||||
#: pro/fields/class-acf-field-clone.php:847
|
||||
#: pro/fields/class-acf-field-clone.php:851
|
||||
#: pro/fields/class-acf-field-flexible-content.php:615
|
||||
#: pro/fields/class-acf-field-repeater.php:459
|
||||
msgid "Row"
|
||||
|
|
@ -2869,53 +2869,53 @@ msgctxt "noun"
|
|||
msgid "Clone"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:808
|
||||
#: pro/fields/class-acf-field-clone.php:812
|
||||
msgid "Select one or more fields you wish to clone"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:825
|
||||
#: pro/fields/class-acf-field-clone.php:829
|
||||
msgid "Display"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:826
|
||||
#: pro/fields/class-acf-field-clone.php:830
|
||||
msgid "Specify the style used to render the clone field"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:831
|
||||
#: pro/fields/class-acf-field-clone.php:835
|
||||
msgid "Group (displays selected fields in a group within this field)"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:832
|
||||
#: pro/fields/class-acf-field-clone.php:836
|
||||
msgid "Seamless (replaces this field with selected fields)"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:853
|
||||
#: pro/fields/class-acf-field-clone.php:857
|
||||
#, php-format
|
||||
msgid "Labels will be displayed as %s"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:856
|
||||
#: pro/fields/class-acf-field-clone.php:860
|
||||
msgid "Prefix Field Labels"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:867
|
||||
#: pro/fields/class-acf-field-clone.php:871
|
||||
#, php-format
|
||||
msgid "Values will be saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:870
|
||||
#: pro/fields/class-acf-field-clone.php:874
|
||||
msgid "Prefix Field Names"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:988
|
||||
#: pro/fields/class-acf-field-clone.php:992
|
||||
msgid "Unknown field"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:1027
|
||||
#: pro/fields/class-acf-field-clone.php:1031
|
||||
msgid "Unknown field group"
|
||||
msgstr ""
|
||||
|
||||
#: pro/fields/class-acf-field-clone.php:1031
|
||||
#: pro/fields/class-acf-field-clone.php:1035
|
||||
#, php-format
|
||||
msgid "All fields from %s field group"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -323,7 +323,7 @@ class acf_admin_options_page {
|
|||
|
||||
|
||||
// render
|
||||
acf_render_fields( $this->page['post_id'], $fields, 'div', $field_group['instruction_placement'] );
|
||||
acf_render_fields( $fields, $this->page['post_id'], 'div', $field_group['instruction_placement'] );
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@
|
|||
<?php
|
||||
|
||||
// render post data
|
||||
acf_form_data(array(
|
||||
'post_id' => $post_id,
|
||||
'nonce' => 'options',
|
||||
acf_form_data(array(
|
||||
'screen' => 'options',
|
||||
'post_id' => $post_id,
|
||||
));
|
||||
|
||||
wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false );
|
||||
|
|
|
|||
|
|
@ -118,6 +118,10 @@ class acf_field_clone extends acf_field {
|
|||
|
||||
function acf_get_fields( $fields, $parent ) {
|
||||
|
||||
// bail early if empty
|
||||
if( empty($fields) ) return $fields;
|
||||
|
||||
|
||||
// bail early if not enabled
|
||||
if( !$this->is_enabled() ) return $fields;
|
||||
|
||||
|
|
|
|||
20
readme.txt
20
readme.txt
|
|
@ -2,7 +2,7 @@
|
|||
Contributors: elliotcondon
|
||||
Tags: acf, advanced, custom, field, fields, form, repeater, content
|
||||
Requires at least: 3.6.0
|
||||
Tested up to: 4.9.0
|
||||
Tested up to: 4.9.9
|
||||
License: GPLv2 or later
|
||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||
|
||||
|
|
@ -66,6 +66,24 @@ From your WordPress dashboard
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 5.6.9 =
|
||||
* User field: Added new 'Return Format' setting (Array, Object, ID)
|
||||
* Core: Added basic compatibility with Gutenberg - values now save
|
||||
* Core: Fixed bug affecting the loading of fields on new Menu Items
|
||||
* Core: Removed private ('show_ui' => false) post types from the 'Post Type' location rule choices
|
||||
* Core: Minor fixes and improvements
|
||||
* Language: Updated French translation - thanks to Maxime Bernard-Jacquet
|
||||
|
||||
= 5.6.8 =
|
||||
* API: Fixed bug causing have_rows() to fail with PHP 7.2
|
||||
* Core: Fixed bug causing "Add new term" form to hide after submit
|
||||
* Core: Minor fixes and improvements
|
||||
* Language: Updated German translation - thanks to Ralf Koller
|
||||
* Language: Updated Portuguese translation - thanks to Pedro Mendonça
|
||||
* Language: Updated Arabic translation - thanks to Karim Ramadan
|
||||
* Language: Updated Spanish translation - thanks to Luis Rull Muñoz
|
||||
* Language: Updated Persian translation - thanks to Majix
|
||||
|
||||
= 5.6.7 =
|
||||
* Fixed an assortment of bugs found in 5.6.6
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue