5.4.6
This commit is contained in:
parent
87f6fa72ce
commit
29d82eaefd
4
acf.php
4
acf.php
|
|
@ -3,7 +3,7 @@
|
||||||
Plugin Name: Advanced Custom Fields PRO
|
Plugin Name: Advanced Custom Fields PRO
|
||||||
Plugin URI: https://www.advancedcustomfields.com/
|
Plugin URI: https://www.advancedcustomfields.com/
|
||||||
Description: Customise WordPress with powerful, professional and intuitive fields
|
Description: Customise WordPress with powerful, professional and intuitive fields
|
||||||
Version: 5.4.5
|
Version: 5.4.6
|
||||||
Author: Elliot Condon
|
Author: Elliot Condon
|
||||||
Author URI: http://www.elliotcondon.com/
|
Author URI: http://www.elliotcondon.com/
|
||||||
Copyright: Elliot Condon
|
Copyright: Elliot Condon
|
||||||
|
|
@ -58,7 +58,7 @@ class acf {
|
||||||
|
|
||||||
// basic
|
// basic
|
||||||
'name' => __('Advanced Custom Fields', 'acf'),
|
'name' => __('Advanced Custom Fields', 'acf'),
|
||||||
'version' => '5.4.5',
|
'version' => '5.4.6',
|
||||||
|
|
||||||
// urls
|
// urls
|
||||||
'basename' => plugin_basename( __FILE__ ),
|
'basename' => plugin_basename( __FILE__ ),
|
||||||
|
|
|
||||||
|
|
@ -2775,19 +2775,11 @@ function acf_update_user_setting( $name, $value ) {
|
||||||
|
|
||||||
|
|
||||||
// get user settings
|
// get user settings
|
||||||
$settings = get_user_meta( $user_id, 'acf_user_settings', false );
|
$settings = get_user_meta( $user_id, 'acf_user_settings', true );
|
||||||
|
|
||||||
|
|
||||||
// find settings
|
// ensure array
|
||||||
if( isset($settings[0]) ) {
|
$settings = acf_get_array($settings);
|
||||||
|
|
||||||
$settings = $settings[0];
|
|
||||||
|
|
||||||
} else {
|
|
||||||
|
|
||||||
$settings = array();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// delete setting (allow 0 to save)
|
// delete setting (allow 0 to save)
|
||||||
|
|
@ -2829,19 +2821,19 @@ function acf_get_user_setting( $name = '', $default = false ) {
|
||||||
|
|
||||||
|
|
||||||
// get user settings
|
// get user settings
|
||||||
$settings = get_user_meta( $user_id, 'acf_user_settings', false );
|
$settings = get_user_meta( $user_id, 'acf_user_settings', true );
|
||||||
|
|
||||||
|
|
||||||
|
// ensure array
|
||||||
|
$settings = acf_get_array($settings);
|
||||||
|
|
||||||
|
|
||||||
// bail arly if no settings
|
// bail arly if no settings
|
||||||
if( !isset($settings[0][$name]) ) {
|
if( !isset($settings[$name]) ) return $default;
|
||||||
|
|
||||||
return $default;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// return
|
// return
|
||||||
return $settings[0][$name];
|
return $settings[$name];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -4839,6 +4831,81 @@ function acf_is_associative_array( $array ) {
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* acf_add_array_key_prefix
|
||||||
|
*
|
||||||
|
* This function will add a prefix to all array keys
|
||||||
|
* Useful to preserve numeric keys when performing array_multisort
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 15/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $array (array)
|
||||||
|
* @param $prefix (string)
|
||||||
|
* @return (array)
|
||||||
|
*/
|
||||||
|
|
||||||
|
function acf_add_array_key_prefix( $array, $prefix ) {
|
||||||
|
|
||||||
|
// vars
|
||||||
|
$array2 = array();
|
||||||
|
|
||||||
|
|
||||||
|
// loop
|
||||||
|
foreach( $array as $k => $v ) {
|
||||||
|
|
||||||
|
$k2 = $prefix . $k;
|
||||||
|
$array2[ $k2 ] = $v;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// return
|
||||||
|
return $array2;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* acf_remove_array_key_prefix
|
||||||
|
*
|
||||||
|
* This function will remove a prefix to all array keys
|
||||||
|
* Useful to preserve numeric keys when performing array_multisort
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 15/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $array (array)
|
||||||
|
* @param $prefix (string)
|
||||||
|
* @return (array)
|
||||||
|
*/
|
||||||
|
|
||||||
|
function acf_remove_array_key_prefix( $array, $prefix ) {
|
||||||
|
|
||||||
|
// vars
|
||||||
|
$array2 = array();
|
||||||
|
$l = strlen($prefix);
|
||||||
|
|
||||||
|
|
||||||
|
// loop
|
||||||
|
foreach( $array as $k => $v ) {
|
||||||
|
|
||||||
|
$k2 = (substr($k, 0, $l) === $prefix) ? substr($k, $l) : $k;
|
||||||
|
$array2[ $k2 ] = $v;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// return
|
||||||
|
return $array2;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
add_filter("acf/settings/slug", '_acf_settings_slug');
|
add_filter("acf/settings/slug", '_acf_settings_slug');
|
||||||
|
|
|
||||||
|
|
@ -602,16 +602,14 @@ function get_row( $format = false ) {
|
||||||
// format
|
// format
|
||||||
if( $format ) {
|
if( $format ) {
|
||||||
|
|
||||||
// temp wrap value in array
|
// format entire value
|
||||||
$value = array( $value );
|
// - solves problem where cached value is incomplete
|
||||||
|
// - no performance issues here thanks to cache
|
||||||
|
$value = acf_format_value( $loop['value'], $loop['post_id'], $loop['field'] );
|
||||||
|
|
||||||
|
|
||||||
// format the value (1 row of data)
|
// get value
|
||||||
$value = acf_format_value( $value, $loop['post_id'], $loop['field'] );
|
$value = acf_maybe_get( $value, $loop['i'] );
|
||||||
|
|
||||||
|
|
||||||
// extract value from array
|
|
||||||
$value = $value[0];
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -255,7 +255,7 @@
|
||||||
/* Component containers
|
/* Component containers
|
||||||
----------------------------------*/
|
----------------------------------*/
|
||||||
.acf-ui-datepicker .ui-widget {
|
.acf-ui-datepicker .ui-widget {
|
||||||
font-family: "Open Sans", sans-serif;
|
font-family: inherit;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
.acf-ui-datepicker .ui-widget .ui-widget {
|
.acf-ui-datepicker .ui-widget .ui-widget {
|
||||||
|
|
@ -265,7 +265,7 @@
|
||||||
.acf-ui-datepicker .ui-widget select,
|
.acf-ui-datepicker .ui-widget select,
|
||||||
.acf-ui-datepicker .ui-widget textarea,
|
.acf-ui-datepicker .ui-widget textarea,
|
||||||
.acf-ui-datepicker .ui-widget button {
|
.acf-ui-datepicker .ui-widget button {
|
||||||
font-family: "Open Sans", sans-serif;
|
font-family: inherit;
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
.acf-ui-datepicker .ui-widget-content {
|
.acf-ui-datepicker .ui-widget-content {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -987,6 +987,179 @@ var acf;
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/*
|
||||||
|
* disable_form
|
||||||
|
*
|
||||||
|
* This function will disable all inputs within an element
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 22/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $el (jQuery)
|
||||||
|
* @return na
|
||||||
|
*/
|
||||||
|
|
||||||
|
disable_form: function( $el, context ) {
|
||||||
|
|
||||||
|
// defaults
|
||||||
|
context = context || '';
|
||||||
|
|
||||||
|
|
||||||
|
// loop
|
||||||
|
$el.find('select, textarea, input').each(function(){
|
||||||
|
|
||||||
|
acf.disable( $(this), context );
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* disable
|
||||||
|
*
|
||||||
|
* This function will disable an input
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 22/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $el (jQuery)
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
|
disable: function( $input, context ){
|
||||||
|
|
||||||
|
// defaults
|
||||||
|
context = context || '';
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if is .acf-disabled
|
||||||
|
if( $input.hasClass('acf-disabled') ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// context
|
||||||
|
if( context ) {
|
||||||
|
|
||||||
|
// vars
|
||||||
|
var attr = $input.attr('data-disabled'),
|
||||||
|
disabled = attr ? attr.split(',') : [],
|
||||||
|
i = disabled.indexOf(context);
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if already disabled
|
||||||
|
if( i >= 0 ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// append context
|
||||||
|
disabled.push( context );
|
||||||
|
|
||||||
|
|
||||||
|
// join
|
||||||
|
attr = disabled.join(',');
|
||||||
|
|
||||||
|
|
||||||
|
// update context
|
||||||
|
$input.attr('data-disabled', attr);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// disable input
|
||||||
|
$input.prop('disabled', true);
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* enable_form
|
||||||
|
*
|
||||||
|
* This function will enable all inputs within an element
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 22/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $el (jQuery)
|
||||||
|
* @return na
|
||||||
|
*/
|
||||||
|
|
||||||
|
enable_form: function( $el, context ) {
|
||||||
|
|
||||||
|
// defaults
|
||||||
|
context = context || '';
|
||||||
|
|
||||||
|
|
||||||
|
// loop
|
||||||
|
$el.find('select, textarea, input').each(function(){
|
||||||
|
|
||||||
|
acf.enable( $(this), context );
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* enable
|
||||||
|
*
|
||||||
|
* This function will enable an input
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 22/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $el (jQuery)
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
|
enable: function( $input, context ){
|
||||||
|
|
||||||
|
// defaults
|
||||||
|
context = context || '';
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if is .acf-disabled
|
||||||
|
if( $input.hasClass('acf-disabled') ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// context
|
||||||
|
if( context ) {
|
||||||
|
|
||||||
|
// vars
|
||||||
|
var attr = $input.attr('data-disabled'),
|
||||||
|
disabled = attr ? attr.split(',') : [],
|
||||||
|
i = disabled.indexOf(context);
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if no content or context does not match
|
||||||
|
if( i < 0 ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// delete
|
||||||
|
disabled.splice(i, 1);
|
||||||
|
|
||||||
|
|
||||||
|
// update attr
|
||||||
|
attr = disabled.join(',');
|
||||||
|
|
||||||
|
|
||||||
|
// update context
|
||||||
|
$input.attr('data-disabled', attr);
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if other disableds exist
|
||||||
|
if( attr ) return false;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// enable input
|
||||||
|
$input.prop('disabled', false);
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* remove_tr
|
* remove_tr
|
||||||
|
|
@ -1808,22 +1981,44 @@ var acf;
|
||||||
* @return $el2 (jQuery)
|
* @return $el2 (jQuery)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
duplicate: function( $el, attr ){
|
duplicate: function( args ){
|
||||||
|
|
||||||
//console.time('duplicate');
|
//console.time('duplicate');
|
||||||
|
|
||||||
|
|
||||||
|
// backwards compatibility
|
||||||
|
// - array of settings added in v5.4.6
|
||||||
|
if( typeof args.length !== 'undefined' ) args = { $el: args };
|
||||||
|
|
||||||
|
|
||||||
// defaults
|
// defaults
|
||||||
attr = attr || 'data-id';
|
args = acf.parse_args(args, {
|
||||||
|
$el: false,
|
||||||
|
search: '',
|
||||||
|
replace: '',
|
||||||
|
before: function( $el ){},
|
||||||
|
after: function( $el, $el2 ){},
|
||||||
|
append: function( $el, $el2 ){ $el.after( $el2 ); }
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
// vars
|
// vars
|
||||||
find = $el.attr(attr);
|
var $el = args.$el,
|
||||||
replace = acf.get_uniqid();
|
$el2;
|
||||||
|
|
||||||
|
|
||||||
// allow acf to modify DOM
|
// search
|
||||||
// fixes bug where select field option is not selected
|
if( !args.search ) args.search = $el.attr('data-id');
|
||||||
|
|
||||||
|
|
||||||
|
// replace
|
||||||
|
if( !args.replace ) args.replace = acf.get_uniqid();
|
||||||
|
|
||||||
|
|
||||||
|
// before
|
||||||
|
// - allow acf to modify DOM
|
||||||
|
// - fixes bug where select field option is not selected
|
||||||
|
args.before.apply( this, [$el] );
|
||||||
acf.do_action('before_duplicate', $el);
|
acf.do_action('before_duplicate', $el);
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1840,32 +2035,32 @@ var acf;
|
||||||
|
|
||||||
|
|
||||||
// find / replace
|
// find / replace
|
||||||
if( typeof find !== 'undefined' ) {
|
if( args.search ) {
|
||||||
|
|
||||||
// replcae data attribute
|
// replace data
|
||||||
$el2.attr(attr, replace);
|
$el2.attr('data-id', args.replace);
|
||||||
|
|
||||||
|
|
||||||
// replace ids
|
// replace ids
|
||||||
$el2.find('[id*="' + find + '"]').each(function(){
|
$el2.find('[id*="' + args.search + '"]').each(function(){
|
||||||
|
|
||||||
$(this).attr('id', $(this).attr('id').replace(find, replace) );
|
$(this).attr('id', $(this).attr('id').replace(args.search, args.replace) );
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// replace names
|
// replace names
|
||||||
$el2.find('[name*="' + find + '"]').each(function(){
|
$el2.find('[name*="' + args.search + '"]').each(function(){
|
||||||
|
|
||||||
$(this).attr('name', $(this).attr('name').replace(find, replace) );
|
$(this).attr('name', $(this).attr('name').replace(args.search, args.replace) );
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// replace label for
|
// replace label for
|
||||||
$el2.find('label[for*="' + find + '"]').each(function(){
|
$el2.find('label[for*="' + args.search + '"]').each(function(){
|
||||||
|
|
||||||
$(this).attr('for', $(this).attr('for').replace(find, replace) );
|
$(this).attr('for', $(this).attr('for').replace(args.search, args.replace) );
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -1876,12 +2071,14 @@ var acf;
|
||||||
$el2.find('.ui-sortable').removeClass('ui-sortable');
|
$el2.find('.ui-sortable').removeClass('ui-sortable');
|
||||||
|
|
||||||
|
|
||||||
// allow acf to modify DOM
|
// after
|
||||||
|
// - allow acf to modify DOM
|
||||||
acf.do_action('after_duplicate', $el, $el2 );
|
acf.do_action('after_duplicate', $el, $el2 );
|
||||||
|
args.after.apply( this, [$el, $el2] );
|
||||||
|
|
||||||
|
|
||||||
// append
|
// append
|
||||||
$el.after( $el2 );
|
args.append.apply( this, [$el, $el2] );
|
||||||
|
|
||||||
|
|
||||||
// add JS functionality
|
// add JS functionality
|
||||||
|
|
@ -3095,10 +3292,10 @@ var acf;
|
||||||
|
|
||||||
acf.ajax = acf.model.extend({
|
acf.ajax = acf.model.extend({
|
||||||
|
|
||||||
|
active: false,
|
||||||
actions: {
|
actions: {
|
||||||
'ready': 'ready'
|
'ready': 'ready'
|
||||||
},
|
},
|
||||||
|
|
||||||
events: {
|
events: {
|
||||||
'change #page_template': '_change_template',
|
'change #page_template': '_change_template',
|
||||||
'change #parent_id': '_change_parent',
|
'change #parent_id': '_change_parent',
|
||||||
|
|
@ -3107,7 +3304,6 @@ var acf;
|
||||||
'change .acf-taxonomy-field[data-save="1"] input': '_change_term',
|
'change .acf-taxonomy-field[data-save="1"] input': '_change_term',
|
||||||
'change .acf-taxonomy-field[data-save="1"] select': '_change_term'
|
'change .acf-taxonomy-field[data-save="1"] select': '_change_term'
|
||||||
},
|
},
|
||||||
|
|
||||||
o: {
|
o: {
|
||||||
//'post_id': 0,
|
//'post_id': 0,
|
||||||
//'page_template': 0,
|
//'page_template': 0,
|
||||||
|
|
@ -3117,7 +3313,6 @@ var acf;
|
||||||
//'post_taxonomy': 0,
|
//'post_taxonomy': 0,
|
||||||
},
|
},
|
||||||
xhr: null,
|
xhr: null,
|
||||||
//timeout: null,
|
|
||||||
|
|
||||||
update: function( k, v ){
|
update: function( k, v ){
|
||||||
|
|
||||||
|
|
@ -3138,9 +3333,14 @@ var acf;
|
||||||
// update post_id
|
// update post_id
|
||||||
this.update('post_id', acf.get('post_id'));
|
this.update('post_id', acf.get('post_id'));
|
||||||
|
|
||||||
|
|
||||||
|
// active
|
||||||
|
this.active = true;
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
timeout: null,
|
||||||
maybe_fetch: function(){
|
maybe_fetch: function(){
|
||||||
|
|
||||||
// reference
|
// reference
|
||||||
|
|
@ -3167,6 +3367,10 @@ var acf;
|
||||||
|
|
||||||
fetch: function(){
|
fetch: function(){
|
||||||
|
|
||||||
|
// bail early if not active
|
||||||
|
if( !this.active ) return;
|
||||||
|
|
||||||
|
|
||||||
// bail early if no ajax
|
// bail early if no ajax
|
||||||
if( !acf.get('ajax') ) return;
|
if( !acf.get('ajax') ) return;
|
||||||
|
|
||||||
|
|
@ -3902,6 +4106,11 @@ var acf;
|
||||||
$field.removeClass( 'hidden-by-conditional-logic' );
|
$field.removeClass( 'hidden-by-conditional-logic' );
|
||||||
|
|
||||||
|
|
||||||
|
// clean up incorrectly hidden inputs
|
||||||
|
// case: Select2 is added after conditioan logic hides the select input.
|
||||||
|
$field.find('.acf-clhi.acf-disabled').removeClass('acf-clhi');
|
||||||
|
|
||||||
|
|
||||||
// remove "disabled"
|
// remove "disabled"
|
||||||
// ignore inputs which have a class of 'acf-disabled'. These inputs are disabled for life
|
// ignore inputs which have a class of 'acf-disabled'. These inputs are disabled for life
|
||||||
// ignore inputs which are hidden by conditiona logic of a sub field
|
// ignore inputs which are hidden by conditiona logic of a sub field
|
||||||
|
|
@ -7526,8 +7735,7 @@ var acf;
|
||||||
|
|
||||||
actions: {
|
actions: {
|
||||||
'ready': 'initialize',
|
'ready': 'initialize',
|
||||||
'append': 'initialize',
|
'append': 'initialize'
|
||||||
//'show': 'show'
|
|
||||||
},
|
},
|
||||||
|
|
||||||
events: {
|
events: {
|
||||||
|
|
@ -10498,6 +10706,10 @@ var acf;
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
|
|
||||||
|
// action for 3rd party
|
||||||
|
acf.do_action('validation_begin');
|
||||||
|
|
||||||
|
|
||||||
// vars
|
// vars
|
||||||
var data = acf.serialize_form($form);
|
var data = acf.serialize_form($form);
|
||||||
|
|
||||||
|
|
@ -10567,11 +10779,9 @@ var acf;
|
||||||
|
|
||||||
|
|
||||||
// bail early if validationw as not valid
|
// bail early if validationw as not valid
|
||||||
if( !this.valid ) {
|
if( !this.valid ) return;
|
||||||
|
|
||||||
return;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// update ignore (allow form submit to not run validation)
|
// update ignore (allow form submit to not run validation)
|
||||||
|
|
@ -10649,12 +10859,20 @@ var acf;
|
||||||
this.valid = true;
|
this.valid = true;
|
||||||
|
|
||||||
|
|
||||||
|
// action for 3rd party
|
||||||
|
acf.do_action('validation_success');
|
||||||
|
|
||||||
|
|
||||||
// end function
|
// end function
|
||||||
return;
|
return;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// action for 3rd party
|
||||||
|
acf.do_action('validation_failure');
|
||||||
|
|
||||||
|
|
||||||
// set valid (prevents fetch_complete from runing)
|
// set valid (prevents fetch_complete from runing)
|
||||||
this.valid = false;
|
this.valid = false;
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -21,7 +21,6 @@ class acf_revisions {
|
||||||
function __construct() {
|
function __construct() {
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
add_action('save_post', array($this, 'save_post'), 99, 3);
|
|
||||||
add_action('wp_restore_post_revision', array($this, 'wp_restore_post_revision'), 10, 2 );
|
add_action('wp_restore_post_revision', array($this, 'wp_restore_post_revision'), 10, 2 );
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -33,43 +32,6 @@ class acf_revisions {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* save_post
|
|
||||||
*
|
|
||||||
* description
|
|
||||||
*
|
|
||||||
* @type function
|
|
||||||
* @date 25/06/2016
|
|
||||||
* @since 5.3.8
|
|
||||||
*
|
|
||||||
* @param $post_id (int)
|
|
||||||
* @return $post_id (int)
|
|
||||||
*/
|
|
||||||
|
|
||||||
function save_post( $post_id, $post, $update ) {
|
|
||||||
|
|
||||||
// bail ealry if post type does not support revision
|
|
||||||
if( !post_type_supports($post->post_type, 'revisions') ) return $post_id;
|
|
||||||
|
|
||||||
|
|
||||||
// bail early if not published (no need to save revision)
|
|
||||||
if( $post->post_status != 'publish' ) return $post_id;
|
|
||||||
|
|
||||||
|
|
||||||
// get latest revision
|
|
||||||
$revision = acf_get_post_latest_revision( $post_id );
|
|
||||||
|
|
||||||
|
|
||||||
// save
|
|
||||||
if( $revision ) {
|
|
||||||
|
|
||||||
acf_copy_postmeta( $post_id, $revision->ID );
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* wp_preview_post_fields
|
* wp_preview_post_fields
|
||||||
*
|
*
|
||||||
|
|
@ -249,12 +211,25 @@ class acf_revisions {
|
||||||
// append
|
// append
|
||||||
if( !empty($append) ) {
|
if( !empty($append) ) {
|
||||||
|
|
||||||
|
// vars
|
||||||
|
$prefix = '_';
|
||||||
|
|
||||||
|
|
||||||
|
// add prefix
|
||||||
|
$append = acf_add_array_key_prefix($append, $prefix);
|
||||||
|
$order = acf_add_array_key_prefix($order, $prefix);
|
||||||
|
|
||||||
|
|
||||||
// sort by name (orders sub field values correctly)
|
// sort by name (orders sub field values correctly)
|
||||||
array_multisort($order, $append);
|
array_multisort($order, $append);
|
||||||
|
|
||||||
|
|
||||||
|
// remove prefix
|
||||||
|
$append = acf_remove_array_key_prefix($append, $prefix);
|
||||||
|
|
||||||
|
|
||||||
// append
|
// append
|
||||||
$fields = array_merge($fields, $append);
|
$fields = $fields + $append;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -367,6 +342,35 @@ acf()->revisions = new acf_revisions();
|
||||||
endif; // class_exists check
|
endif; // class_exists check
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* acf_save_post_revision
|
||||||
|
*
|
||||||
|
* This function will copy meta from a post to it's latest revision
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 26/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $post_id (int)
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
|
function acf_save_post_revision( $post_id = 0 ) {
|
||||||
|
|
||||||
|
// get latest revision
|
||||||
|
$revision = acf_get_post_latest_revision( $post_id );
|
||||||
|
|
||||||
|
|
||||||
|
// save
|
||||||
|
if( $revision ) {
|
||||||
|
|
||||||
|
acf_copy_postmeta( $post_id, $revision->ID );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* acf_get_post_latest_revision
|
* acf_get_post_latest_revision
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -123,6 +123,10 @@ class acf_field_taxonomy extends acf_field {
|
||||||
if( !$field ) return false;
|
if( !$field ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if taxonomy does not exist
|
||||||
|
if( !taxonomy_exists($field['taxonomy']) ) return false;
|
||||||
|
|
||||||
|
|
||||||
// vars
|
// vars
|
||||||
$results = array();
|
$results = array();
|
||||||
$args = array();
|
$args = array();
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@ if( ! class_exists('acf_field_wysiwyg') ) :
|
||||||
|
|
||||||
class acf_field_wysiwyg extends acf_field {
|
class acf_field_wysiwyg extends acf_field {
|
||||||
|
|
||||||
var $exists = 0;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* __construct
|
* __construct
|
||||||
|
|
@ -44,30 +43,10 @@ class acf_field_wysiwyg extends acf_field {
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
// Create an acf version of the_content filter (acf_the_content)
|
// add acf_the_content filters
|
||||||
if( !empty($GLOBALS['wp_embed']) ) {
|
$this->add_filters();
|
||||||
|
|
||||||
add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'run_shortcode' ), 8 );
|
|
||||||
add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
add_filter( 'acf_the_content', 'capital_P_dangit', 11 );
|
|
||||||
add_filter( 'acf_the_content', 'wptexturize' );
|
|
||||||
add_filter( 'acf_the_content', 'convert_smilies' );
|
|
||||||
add_filter( 'acf_the_content', 'convert_chars' ); // not found in WP 4.4
|
|
||||||
add_filter( 'acf_the_content', 'wpautop' );
|
|
||||||
add_filter( 'acf_the_content', 'shortcode_unautop' );
|
|
||||||
//add_filter( 'acf_the_content', 'prepend_attachment' ); should only be for the_content (causes double image on attachment page)
|
|
||||||
if( function_exists('wp_make_content_images_responsive') ) {
|
|
||||||
|
|
||||||
add_filter( 'acf_the_content', 'wp_make_content_images_responsive' ); // added in WP 4.4
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
add_filter( 'acf_the_content', 'do_shortcode', 11);
|
|
||||||
|
|
||||||
|
|
||||||
// actions
|
// actions
|
||||||
add_action('acf/input/admin_footer', array($this, 'input_admin_footer'));
|
add_action('acf/input/admin_footer', array($this, 'input_admin_footer'));
|
||||||
|
|
||||||
|
|
@ -78,6 +57,69 @@ class acf_field_wysiwyg extends acf_field {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* add_filters
|
||||||
|
*
|
||||||
|
* This function will add filters to 'acf_the_content'
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 20/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param n/a
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
|
function add_filters() {
|
||||||
|
|
||||||
|
// globals
|
||||||
|
global $wp_version;
|
||||||
|
|
||||||
|
|
||||||
|
// wp-includes/class-wp-embed.php
|
||||||
|
if( !empty($GLOBALS['wp_embed']) ) {
|
||||||
|
|
||||||
|
add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'run_shortcode' ), 8 );
|
||||||
|
add_filter( 'acf_the_content', array( $GLOBALS['wp_embed'], 'autoembed' ), 8 );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// wp-includes/default-filters.php
|
||||||
|
add_filter( 'acf_the_content', 'capital_P_dangit', 11 );
|
||||||
|
add_filter( 'acf_the_content', 'wptexturize' );
|
||||||
|
add_filter( 'acf_the_content', 'convert_smilies', 20 );
|
||||||
|
|
||||||
|
|
||||||
|
// Removed in 4.4
|
||||||
|
if( version_compare($wp_version, '4.4', '<' ) ) {
|
||||||
|
|
||||||
|
add_filter( 'acf_the_content', 'convert_chars' );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
add_filter( 'acf_the_content', 'wpautop' );
|
||||||
|
add_filter( 'acf_the_content', 'shortcode_unautop' );
|
||||||
|
|
||||||
|
|
||||||
|
// should only be for the_content (causes double image on attachment page)
|
||||||
|
//add_filter( 'acf_the_content', 'prepend_attachment' );
|
||||||
|
|
||||||
|
|
||||||
|
// Added in 4.4
|
||||||
|
if( function_exists('wp_make_content_images_responsive') ) {
|
||||||
|
|
||||||
|
add_filter( 'acf_the_content', 'wp_make_content_images_responsive' );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
add_filter( 'acf_the_content', 'do_shortcode', 11);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* get_toolbars
|
* get_toolbars
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -505,19 +505,11 @@ if( typeof acf !== 'undefined' ) {
|
||||||
|
|
||||||
|
|
||||||
// check post type
|
// check post type
|
||||||
if( in_array($post->post_type, $reject) ) {
|
if( in_array($post->post_type, $reject) ) $allow = false;
|
||||||
|
|
||||||
$allow = false;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// allow preview
|
// allow preview
|
||||||
if( $post->post_type == 'revision' && $wp_preview === 'dopreview' ) {
|
if( $post->post_type == 'revision' && $wp_preview == 'dopreview' ) $allow = true;
|
||||||
|
|
||||||
$allow = true;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// return
|
// return
|
||||||
|
|
@ -550,7 +542,7 @@ if( typeof acf !== 'undefined' ) {
|
||||||
|
|
||||||
|
|
||||||
// validate for published post (allow draft to save without validation)
|
// validate for published post (allow draft to save without validation)
|
||||||
if( get_post_status($post_id) == 'publish' ) {
|
if( $post->post_status == 'publish' ) {
|
||||||
|
|
||||||
// show errors
|
// show errors
|
||||||
acf_validate_save_post( true );
|
acf_validate_save_post( true );
|
||||||
|
|
@ -560,6 +552,14 @@ if( typeof acf !== 'undefined' ) {
|
||||||
|
|
||||||
// save
|
// save
|
||||||
acf_save_post( $post_id );
|
acf_save_post( $post_id );
|
||||||
|
|
||||||
|
|
||||||
|
// save revision
|
||||||
|
if( post_type_supports($post->post_type, 'revisions') ) {
|
||||||
|
|
||||||
|
acf_save_post_revision( $post_id );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// return
|
// return
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,9 +1,9 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Advanced Custom Fields Pro v5.4\n"
|
"Project-Id-Version: Advanced Custom Fields Pro v5.4.6\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"POT-Creation-Date: 2016-07-29 00:27+0200\n"
|
"POT-Creation-Date: 2016-09-22 09:01+0200\n"
|
||||||
"PO-Revision-Date: 2016-07-29 00:42+0200\n"
|
"PO-Revision-Date: 2016-09-22 09:16+0200\n"
|
||||||
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
||||||
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 1.8.8\n"
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
"X-Poedit-SourceCharset: UTF-8\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__;"
|
"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;"
|
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||||
|
|
@ -28,109 +28,109 @@ msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:271 admin/admin.php:61
|
#: acf.php:273 admin/admin.php:61
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
msgstr "Feld-Gruppen"
|
msgstr "Feld-Gruppen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:272
|
#: acf.php:274
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Feld-Gruppe"
|
msgstr "Feld-Gruppe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:273 acf.php:305 admin/admin.php:62
|
#: acf.php:275 acf.php:307 admin/admin.php:62
|
||||||
#: pro/fields/flexible-content.php:500
|
#: pro/fields/flexible-content.php:500
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Erstellen"
|
msgstr "Erstellen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:274
|
#: acf.php:276
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Neue Feld-Gruppe erstellen"
|
msgstr "Neue Feld-Gruppe erstellen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:275
|
#: acf.php:277
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Feld-Gruppe bearbeiten"
|
msgstr "Feld-Gruppe bearbeiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:276
|
#: acf.php:278
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Neue Feld-Gruppe"
|
msgstr "Neue Feld-Gruppe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:277
|
#: acf.php:279
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Feld-Gruppe anzeigen"
|
msgstr "Feld-Gruppe anzeigen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:278
|
#: acf.php:280
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Feld-Gruppen suchen"
|
msgstr "Feld-Gruppen suchen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:279
|
#: acf.php:281
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Keine Feld-Gruppen gefunden"
|
msgstr "Keine Feld-Gruppen gefunden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:280
|
#: acf.php:282
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:303 admin/field-group.php:182 admin/field-group.php:280
|
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
|
||||||
#: admin/field-groups.php:528 pro/fields/clone.php:662
|
#: admin/field-groups.php:528 pro/fields/clone.php:688
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Felder"
|
msgstr "Felder"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:304
|
#: acf.php:306
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Feld"
|
msgstr "Feld"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:306
|
#: acf.php:308
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Feld hinzufügen"
|
msgstr "Feld hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:307
|
#: acf.php:309
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Feld bearbeiten"
|
msgstr "Feld bearbeiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:308 admin/views/field-group-fields.php:54
|
#: acf.php:310 admin/views/field-group-fields.php:54
|
||||||
#: admin/views/settings-info.php:111
|
#: admin/views/settings-info.php:111
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Neues Feld"
|
msgstr "Neues Feld"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:309
|
#: acf.php:311
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Feld anzeigen"
|
msgstr "Feld anzeigen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:310
|
#: acf.php:312
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Felder suchen"
|
msgstr "Felder suchen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:311
|
#: acf.php:313
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Keine Felder gefunden"
|
msgstr "Keine Felder gefunden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:312
|
#: acf.php:314
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
||||||
|
|
||||||
#: acf.php:351 admin/field-group.php:395 admin/field-groups.php:585
|
#: acf.php:353 admin/field-group.php:395 admin/field-groups.php:585
|
||||||
#: admin/views/field-group-options.php:13
|
#: admin/views/field-group-options.php:13
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Deaktiviert"
|
msgstr "Deaktiviert"
|
||||||
|
|
||||||
#: acf.php:356
|
#: acf.php:358
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Disabled <span class=\"count\">(%s)</span>"
|
msgid "Disabled <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
||||||
|
|
@ -216,7 +216,7 @@ msgstr "kopieren"
|
||||||
#: admin/views/field-group-field-conditional-logic.php:62
|
#: admin/views/field-group-field-conditional-logic.php:62
|
||||||
#: admin/views/field-group-field-conditional-logic.php:162
|
#: admin/views/field-group-field-conditional-logic.php:162
|
||||||
#: admin/views/field-group-locations.php:59
|
#: admin/views/field-group-locations.php:59
|
||||||
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3952
|
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3973
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "oder"
|
msgstr "oder"
|
||||||
|
|
||||||
|
|
@ -265,96 +265,96 @@ msgid "Active"
|
||||||
msgstr "Aktiviert"
|
msgstr "Aktiviert"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:842
|
#: admin/field-group.php:846
|
||||||
msgid "Front Page"
|
msgid "Front Page"
|
||||||
msgstr "Startseite"
|
msgstr "Startseite"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:843
|
#: admin/field-group.php:847
|
||||||
msgid "Posts Page"
|
msgid "Posts Page"
|
||||||
msgstr "Beitrags-Seite"
|
msgstr "Beitrags-Seite"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:844
|
#: admin/field-group.php:848
|
||||||
msgid "Top Level Page (no parent)"
|
msgid "Top Level Page (no parent)"
|
||||||
msgstr "Seite ohne übergeordnete Seiten"
|
msgstr "Seite ohne übergeordnete Seiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:845
|
#: admin/field-group.php:849
|
||||||
msgid "Parent Page (has children)"
|
msgid "Parent Page (has children)"
|
||||||
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:846
|
#: admin/field-group.php:850
|
||||||
msgid "Child Page (has parent)"
|
msgid "Child Page (has parent)"
|
||||||
msgstr "Unterseite (mit übergeordneter Seite)"
|
msgstr "Unterseite (mit übergeordneter Seite)"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:862
|
#: admin/field-group.php:866
|
||||||
msgid "Default Template"
|
msgid "Default Template"
|
||||||
msgstr "Standard-Template"
|
msgstr "Standard-Template"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:885
|
#: admin/field-group.php:889
|
||||||
msgid "Logged in"
|
msgid "Logged in"
|
||||||
msgstr "ist angemeldet"
|
msgstr "ist angemeldet"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:886
|
#: admin/field-group.php:890
|
||||||
msgid "Viewing front end"
|
msgid "Viewing front end"
|
||||||
msgstr "ist im Front-End"
|
msgstr "ist im Front-End"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:887
|
#: admin/field-group.php:891
|
||||||
msgid "Viewing back end"
|
msgid "Viewing back end"
|
||||||
msgstr "ist im Back-End"
|
msgstr "ist im Back-End"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:906
|
#: admin/field-group.php:910
|
||||||
msgid "Super Admin"
|
msgid "Super Admin"
|
||||||
msgstr "Super-Admin"
|
msgstr "Super-Admin"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:917 admin/field-group.php:925
|
#: admin/field-group.php:921 admin/field-group.php:929
|
||||||
#: admin/field-group.php:939 admin/field-group.php:946
|
#: admin/field-group.php:943 admin/field-group.php:950
|
||||||
#: admin/field-group.php:963 admin/field-group.php:980 fields/file.php:241
|
#: admin/field-group.php:967 admin/field-group.php:984 fields/file.php:241
|
||||||
#: fields/image.php:237 pro/fields/gallery.php:676
|
#: fields/image.php:237 pro/fields/gallery.php:676
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "Alle"
|
msgstr "Alle"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:926
|
#: admin/field-group.php:930
|
||||||
msgid "Add / Edit"
|
msgid "Add / Edit"
|
||||||
msgstr "Hinzufügen / Bearbeiten"
|
msgstr "Hinzufügen / Bearbeiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:927
|
#: admin/field-group.php:931
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "Registrieren"
|
msgstr "Registrieren"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1167
|
#: admin/field-group.php:1171
|
||||||
msgid "Move Complete."
|
msgid "Move Complete."
|
||||||
msgstr "Verschieben erfolgreich abgeschlossen."
|
msgstr "Verschieben erfolgreich abgeschlossen."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1168
|
#: admin/field-group.php:1172
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The %s field can now be found in the %s field group"
|
msgid "The %s field can now be found in the %s field group"
|
||||||
msgstr "Das Feld \"%s\" wurde in die %s Feld-Gruppe verschoben"
|
msgstr "Das Feld \"%s\" wurde in die %s Feld-Gruppe verschoben"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1170
|
#: admin/field-group.php:1174
|
||||||
msgid "Close Window"
|
msgid "Close Window"
|
||||||
msgstr "Schließen"
|
msgstr "Schließen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1205
|
#: admin/field-group.php:1209
|
||||||
msgid "Please select the destination for this field"
|
msgid "Please select the destination for this field"
|
||||||
msgstr "In welche Feld-Gruppe solle dieses Feld verschoben werden"
|
msgstr "In welche Feld-Gruppe solle dieses Feld verschoben werden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1212
|
#: admin/field-group.php:1216
|
||||||
msgid "Move Field"
|
msgid "Move Field"
|
||||||
msgstr "Feld verschieben"
|
msgstr "Feld verschieben"
|
||||||
|
|
||||||
|
|
@ -399,8 +399,8 @@ msgid "Sync available"
|
||||||
msgstr "Synchronisierung verfügbar"
|
msgstr "Synchronisierung verfügbar"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:525 api/api-template.php:1077
|
#: admin/field-groups.php:525 api/api-template.php:1039
|
||||||
#: api/api-template.php:1290 pro/fields/gallery.php:370
|
#: pro/fields/gallery.php:370
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
|
|
@ -493,18 +493,24 @@ msgid "Duplicate"
|
||||||
msgstr "Duplizieren"
|
msgstr "Duplizieren"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:751
|
#: admin/field-groups.php:717 fields/google-map.php:133
|
||||||
|
#: fields/relationship.php:742
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Suchen"
|
||||||
|
|
||||||
|
# @ acf
|
||||||
|
#: admin/field-groups.php:767
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Select %s"
|
msgid "Select %s"
|
||||||
msgstr "%s auswählen"
|
msgstr "%s auswählen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:759
|
#: admin/field-groups.php:775
|
||||||
msgid "Synchronise field group"
|
msgid "Synchronise field group"
|
||||||
msgstr "Synchronisiere Feld-Gruppe"
|
msgstr "Synchronisiere Feld-Gruppe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:759 admin/field-groups.php:776
|
#: admin/field-groups.php:775 admin/field-groups.php:792
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
msgstr "Synchronisieren"
|
msgstr "Synchronisieren"
|
||||||
|
|
||||||
|
|
@ -602,9 +608,9 @@ msgstr "Bedingungen für die Anzeige"
|
||||||
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
||||||
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
||||||
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
||||||
#: fields/user.php:413 fields/wysiwyg.php:418
|
#: fields/user.php:413 fields/wysiwyg.php:464
|
||||||
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:716
|
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
|
||||||
#: pro/fields/clone.php:734
|
#: pro/fields/clone.php:760
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ja"
|
msgstr "Ja"
|
||||||
|
|
||||||
|
|
@ -617,9 +623,9 @@ msgstr "Ja"
|
||||||
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
||||||
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
||||||
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
||||||
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:419
|
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
|
||||||
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:717
|
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
|
||||||
#: pro/fields/clone.php:735
|
#: pro/fields/clone.php:761
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
|
|
@ -654,7 +660,7 @@ msgstr "Regel-Gruppe hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/views/field-group-field.php:50 pro/fields/flexible-content.php:346
|
#: admin/views/field-group-field.php:50 pro/fields/flexible-content.php:346
|
||||||
#: pro/fields/repeater.php:302
|
#: pro/fields/repeater.php:311
|
||||||
msgid "Drag to reorder"
|
msgid "Drag to reorder"
|
||||||
msgstr "Ziehen zum Sortieren"
|
msgstr "Ziehen zum Sortieren"
|
||||||
|
|
||||||
|
|
@ -1624,101 +1630,101 @@ msgid "See what's new"
|
||||||
msgstr "Was ist neu"
|
msgstr "Was ist neu"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:944
|
#: api/api-helpers.php:950
|
||||||
msgid "Thumbnail"
|
msgid "Thumbnail"
|
||||||
msgstr "Miniaturbild"
|
msgstr "Miniaturbild"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:945
|
#: api/api-helpers.php:951
|
||||||
msgid "Medium"
|
msgid "Medium"
|
||||||
msgstr "Mittel"
|
msgstr "Mittel"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:946
|
#: api/api-helpers.php:952
|
||||||
msgid "Large"
|
msgid "Large"
|
||||||
msgstr "Groß"
|
msgstr "Groß"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:995
|
#: api/api-helpers.php:1001
|
||||||
msgid "Full Size"
|
msgid "Full Size"
|
||||||
msgstr "Volle Größe"
|
msgstr "Volle Größe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:1207 api/api-helpers.php:1770 pro/fields/clone.php:849
|
#: api/api-helpers.php:1213 api/api-helpers.php:1776 pro/fields/clone.php:879
|
||||||
msgid "(no title)"
|
msgid "(no title)"
|
||||||
msgstr "(ohne Titel)"
|
msgstr "(ohne Titel)"
|
||||||
|
|
||||||
#: api/api-helpers.php:1807 fields/page_link.php:284 fields/post_object.php:283
|
#: api/api-helpers.php:1813 fields/page_link.php:284 fields/post_object.php:283
|
||||||
#: fields/taxonomy.php:989
|
#: fields/taxonomy.php:989
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Übergeordnet"
|
msgstr "Übergeordnet"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3873
|
#: api/api-helpers.php:3894
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image width must be at least %dpx."
|
msgid "Image width must be at least %dpx."
|
||||||
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3878
|
#: api/api-helpers.php:3899
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image width must not exceed %dpx."
|
msgid "Image width must not exceed %dpx."
|
||||||
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3894
|
#: api/api-helpers.php:3915
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image height must be at least %dpx."
|
msgid "Image height must be at least %dpx."
|
||||||
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3899
|
#: api/api-helpers.php:3920
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image height must not exceed %dpx."
|
msgid "Image height must not exceed %dpx."
|
||||||
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3917
|
#: api/api-helpers.php:3938
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File size must be at least %s."
|
msgid "File size must be at least %s."
|
||||||
msgstr "Die Dateigröße muss mindestens %s sein."
|
msgstr "Die Dateigröße muss mindestens %s sein."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3922
|
#: api/api-helpers.php:3943
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File size must must not exceed %s."
|
msgid "File size must must not exceed %s."
|
||||||
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3956
|
#: api/api-helpers.php:3977
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File type must be %s."
|
msgid "File type must be %s."
|
||||||
msgstr "Der Dateityp muss %s sein."
|
msgstr "Der Dateityp muss %s sein."
|
||||||
|
|
||||||
#: api/api-template.php:1092
|
# @ acf
|
||||||
|
#: api/api-template.php:1048 core/field.php:133
|
||||||
|
msgid "Content"
|
||||||
|
msgstr "Inhalt"
|
||||||
|
|
||||||
|
#: api/api-template.php:1056
|
||||||
|
msgid "Validate Email"
|
||||||
|
msgstr "E-Mail bestätigen"
|
||||||
|
|
||||||
|
#: api/api-template.php:1106
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam entdeckt"
|
msgstr "Spam entdeckt"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-template.php:1235 pro/api/api-options-page.php:50
|
#: api/api-template.php:1309 pro/api/api-options-page.php:50
|
||||||
#: pro/fields/gallery.php:588
|
#: pro/fields/gallery.php:588
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualisieren"
|
msgstr "Aktualisieren"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-template.php:1236
|
#: api/api-template.php:1310
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Beitrag aktualisiert"
|
msgstr "Beitrag aktualisiert"
|
||||||
|
|
||||||
# @ acf
|
|
||||||
#: api/api-template.php:1304 core/field.php:133
|
|
||||||
msgid "Content"
|
|
||||||
msgstr "Inhalt"
|
|
||||||
|
|
||||||
#: api/api-template.php:1369
|
|
||||||
msgid "Validate Email"
|
|
||||||
msgstr "E-Mail bestätigen"
|
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/field.php:132
|
#: core/field.php:132
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
|
|
@ -1741,8 +1747,8 @@ msgstr "jQuery"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
||||||
#: pro/fields/clone.php:692 pro/fields/flexible-content.php:495
|
#: pro/fields/clone.php:718 pro/fields/flexible-content.php:495
|
||||||
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:459
|
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
|
|
@ -1762,7 +1768,7 @@ msgid "Validation successful"
|
||||||
msgstr "Überprüfung erfolgreich"
|
msgstr "Überprüfung erfolgreich"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/input.php:261 core/validation.php:306 forms/widget.php:234
|
#: core/input.php:261 core/validation.php:326 forms/widget.php:234
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Überprüfung fehlgeschlagen"
|
msgstr "Überprüfung fehlgeschlagen"
|
||||||
|
|
||||||
|
|
@ -1803,7 +1809,7 @@ msgid "Uploaded to this post"
|
||||||
msgstr "Zu diesem Beitrag hochgeladen"
|
msgstr "Zu diesem Beitrag hochgeladen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/validation.php:207
|
#: core/validation.php:211
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s value is required"
|
msgid "%s value is required"
|
||||||
msgstr "%s Wert ist notwendig"
|
msgstr "%s Wert ist notwendig"
|
||||||
|
|
@ -1841,10 +1847,10 @@ msgid "red : Red"
|
||||||
msgstr "rot : Rot"
|
msgstr "rot : Rot"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:124
|
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:133
|
||||||
#: fields/number.php:150 fields/radio.php:284 fields/select.php:455
|
#: fields/number.php:145 fields/radio.php:284 fields/select.php:455
|
||||||
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
#: fields/text.php:142 fields/textarea.php:139 fields/true_false.php:115
|
||||||
#: fields/url.php:117 fields/wysiwyg.php:379
|
#: fields/url.php:114 fields/wysiwyg.php:425
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Standardwert"
|
msgstr "Standardwert"
|
||||||
|
|
||||||
|
|
@ -2061,45 +2067,45 @@ msgid "Email"
|
||||||
msgstr "E-Mail"
|
msgstr "E-Mail"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:285
|
#: fields/email.php:134 fields/number.php:146 fields/radio.php:285
|
||||||
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
|
#: fields/text.php:143 fields/textarea.php:140 fields/url.php:115
|
||||||
#: fields/wysiwyg.php:380
|
#: fields/wysiwyg.php:426
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
#: fields/email.php:142 fields/number.php:154 fields/password.php:134
|
||||||
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
|
#: fields/text.php:151 fields/textarea.php:148 fields/url.php:123
|
||||||
msgid "Placeholder Text"
|
msgid "Placeholder Text"
|
||||||
msgstr "Platzhalter-Text"
|
msgstr "Platzhalter-Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
#: fields/email.php:143 fields/number.php:155 fields/password.php:135
|
||||||
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
|
#: fields/text.php:152 fields/textarea.php:149 fields/url.php:124
|
||||||
msgid "Appears within the input"
|
msgid "Appears within the input"
|
||||||
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
#: fields/email.php:151 fields/number.php:163 fields/password.php:143
|
||||||
#: fields/text.php:166
|
#: fields/text.php:160
|
||||||
msgid "Prepend"
|
msgid "Prepend"
|
||||||
msgstr "Voranstellen"
|
msgstr "Voranstellen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
#: fields/email.php:152 fields/number.php:164 fields/password.php:144
|
||||||
#: fields/text.php:167
|
#: fields/text.php:161
|
||||||
msgid "Appears before the input"
|
msgid "Appears before the input"
|
||||||
msgstr "Wird dem Eingabefeld vorangestellt"
|
msgstr "Wird dem Eingabefeld vorangestellt"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
#: fields/email.php:160 fields/number.php:172 fields/password.php:152
|
||||||
#: fields/text.php:175
|
#: fields/text.php:169
|
||||||
msgid "Append"
|
msgid "Append"
|
||||||
msgstr "Anhängen"
|
msgstr "Anhängen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
#: fields/email.php:161 fields/number.php:173 fields/password.php:153
|
||||||
#: fields/text.php:176
|
#: fields/text.php:170
|
||||||
msgid "Appears after the input"
|
msgid "Appears after the input"
|
||||||
msgstr "Wird dem Eingabefeld hinten angestellt"
|
msgstr "Wird dem Eingabefeld hinten angestellt"
|
||||||
|
|
||||||
|
|
@ -2208,11 +2214,6 @@ msgstr "Lokalisiere"
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
||||||
|
|
||||||
# @ acf
|
|
||||||
#: fields/google-map.php:133 fields/relationship.php:742
|
|
||||||
msgid "Search"
|
|
||||||
msgstr "Suchen"
|
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/google-map.php:134
|
#: fields/google-map.php:134
|
||||||
msgid "Clear location"
|
msgid "Clear location"
|
||||||
|
|
@ -2344,27 +2345,27 @@ msgid "Message"
|
||||||
msgstr "Nachricht"
|
msgstr "Nachricht"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:125 fields/textarea.php:182
|
#: fields/message.php:125 fields/textarea.php:176
|
||||||
msgid "New Lines"
|
msgid "New Lines"
|
||||||
msgstr "Neue Zeilen"
|
msgstr "Neue Zeilen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:126 fields/textarea.php:183
|
#: fields/message.php:126 fields/textarea.php:177
|
||||||
msgid "Controls how new lines are rendered"
|
msgid "Controls how new lines are rendered"
|
||||||
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:130 fields/textarea.php:187
|
#: fields/message.php:130 fields/textarea.php:181
|
||||||
msgid "Automatically add paragraphs"
|
msgid "Automatically add paragraphs"
|
||||||
msgstr "Absätze automatisch hinzufügen"
|
msgstr "Absätze automatisch hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:131 fields/textarea.php:188
|
#: fields/message.php:131 fields/textarea.php:182
|
||||||
msgid "Automatically add <br>"
|
msgid "Automatically add <br>"
|
||||||
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:132 fields/textarea.php:189
|
#: fields/message.php:132 fields/textarea.php:183
|
||||||
msgid "No Formatting"
|
msgid "No Formatting"
|
||||||
msgstr "Keine Formatierung"
|
msgstr "Keine Formatierung"
|
||||||
|
|
||||||
|
|
@ -2386,33 +2387,33 @@ msgid "Number"
|
||||||
msgstr "Numerisch"
|
msgstr "Numerisch"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:186
|
#: fields/number.php:181
|
||||||
msgid "Minimum Value"
|
msgid "Minimum Value"
|
||||||
msgstr "Mindestwert"
|
msgstr "Mindestwert"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:195
|
#: fields/number.php:190
|
||||||
msgid "Maximum Value"
|
msgid "Maximum Value"
|
||||||
msgstr "Maximalwert"
|
msgstr "Maximalwert"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:204
|
#: fields/number.php:199
|
||||||
msgid "Step Size"
|
msgid "Step Size"
|
||||||
msgstr "Schrittweite"
|
msgstr "Schrittweite"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:242
|
#: fields/number.php:237
|
||||||
msgid "Value must be a number"
|
msgid "Value must be a number"
|
||||||
msgstr "Wert muss eine Zahl sein"
|
msgstr "Wert muss eine Zahl sein"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:260
|
#: fields/number.php:255
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Value must be equal to or higher than %d"
|
msgid "Value must be equal to or higher than %d"
|
||||||
msgstr "Wert muss größer oder gleich %d sein"
|
msgstr "Wert muss größer oder gleich %d sein"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:268
|
#: fields/number.php:263
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Value must be equal to or lower than %d"
|
msgid "Value must be equal to or lower than %d"
|
||||||
msgstr "Wert muss kleiner oder gleich %d sein"
|
msgstr "Wert muss kleiner oder gleich %d sein"
|
||||||
|
|
@ -2837,12 +2838,12 @@ msgid "Text"
|
||||||
msgstr "Text einzeilig"
|
msgstr "Text einzeilig"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/text.php:184 fields/textarea.php:163
|
#: fields/text.php:178 fields/textarea.php:157
|
||||||
msgid "Character Limit"
|
msgid "Character Limit"
|
||||||
msgstr "Zeichenbegrenzung"
|
msgstr "Zeichenbegrenzung"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/text.php:185 fields/textarea.php:164
|
#: fields/text.php:179 fields/textarea.php:158
|
||||||
msgid "Leave blank for no limit"
|
msgid "Leave blank for no limit"
|
||||||
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
||||||
|
|
||||||
|
|
@ -2852,12 +2853,12 @@ msgid "Text Area"
|
||||||
msgstr "Text mehrzeilig"
|
msgstr "Text mehrzeilig"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/textarea.php:172
|
#: fields/textarea.php:166
|
||||||
msgid "Rows"
|
msgid "Rows"
|
||||||
msgstr "Zeilenanzahl"
|
msgstr "Zeilenanzahl"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/textarea.php:173
|
#: fields/textarea.php:167
|
||||||
msgid "Sets the textarea height"
|
msgid "Sets the textarea height"
|
||||||
msgstr "Definiert die Höhe des Textfelds"
|
msgstr "Definiert die Höhe des Textfelds"
|
||||||
|
|
||||||
|
|
@ -2881,7 +2882,7 @@ msgid "Url"
|
||||||
msgstr "URL"
|
msgstr "URL"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/url.php:168
|
#: fields/url.php:165
|
||||||
msgid "Value must be a valid URL"
|
msgid "Value must be a valid URL"
|
||||||
msgstr "Bitte eine gültige URL eingeben"
|
msgstr "Bitte eine gültige URL eingeben"
|
||||||
|
|
||||||
|
|
@ -2896,48 +2897,48 @@ msgid "All user roles"
|
||||||
msgstr "Alle Benutzerrollen"
|
msgstr "Alle Benutzerrollen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:37
|
#: fields/wysiwyg.php:36
|
||||||
msgid "Wysiwyg Editor"
|
msgid "Wysiwyg Editor"
|
||||||
msgstr "WYSIWYG-Editor"
|
msgstr "WYSIWYG-Editor"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:331
|
#: fields/wysiwyg.php:377
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuell"
|
msgstr "Visuell"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:332
|
#: fields/wysiwyg.php:378
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:388
|
#: fields/wysiwyg.php:434
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Tabs"
|
msgstr "Tabs"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:393
|
#: fields/wysiwyg.php:439
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuell & Text"
|
msgstr "Visuell & Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:394
|
#: fields/wysiwyg.php:440
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Nur Visuell"
|
msgstr "Nur Visuell"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:395
|
#: fields/wysiwyg.php:441
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Nur Text"
|
msgstr "Nur Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:402
|
#: fields/wysiwyg.php:448
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Werkzeugleiste"
|
msgstr "Werkzeugleiste"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:412
|
#: fields/wysiwyg.php:458
|
||||||
msgid "Show Media Upload Buttons?"
|
msgid "Show Media Upload Buttons?"
|
||||||
msgstr "Button zum Hochladen von Medien anzeigen?"
|
msgstr "Button zum Hochladen von Medien anzeigen?"
|
||||||
|
|
||||||
|
|
@ -3078,6 +3079,14 @@ msgstr "Aktualisierungs-Hinweis"
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
msgstr "Optionen"
|
msgstr "Optionen"
|
||||||
|
|
||||||
|
#: pro/api/api-pro.php:328
|
||||||
|
msgid ""
|
||||||
|
"Error validating license URL (website does not match). Please re-activate "
|
||||||
|
"your license"
|
||||||
|
msgstr ""
|
||||||
|
"Fehler bei der Überprüfung der Lizenz-URL (Webseite stimmt nicht überein). "
|
||||||
|
"Bitte reaktiviere Deine Lizenz"
|
||||||
|
|
||||||
#: pro/core/updates.php:206
|
#: pro/core/updates.php:206
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -3095,71 +3104,79 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klon"
|
msgstr "Klon"
|
||||||
|
|
||||||
#: pro/fields/clone.php:663
|
#: pro/fields/clone.php:689
|
||||||
msgid "Select one or more fields you wish to clone"
|
msgid "Select one or more fields you wish to clone"
|
||||||
msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest"
|
msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:678
|
#: pro/fields/clone.php:704
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr "Anzeige"
|
msgstr "Anzeige"
|
||||||
|
|
||||||
#: pro/fields/clone.php:679
|
#: pro/fields/clone.php:705
|
||||||
msgid "Specify the style used to render the clone field"
|
msgid "Specify the style used to render the clone field"
|
||||||
msgstr "Gib den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
msgstr "Gib den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
||||||
|
|
||||||
#: pro/fields/clone.php:684
|
#: pro/fields/clone.php:710
|
||||||
msgid "Group (displays selected fields in a group within this field)"
|
msgid "Group (displays selected fields in a group within this field)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
||||||
"Feldes an)"
|
"Feldes an)"
|
||||||
|
|
||||||
#: pro/fields/clone.php:685
|
#: pro/fields/clone.php:711
|
||||||
msgid "Seamless (replaces this field with selected fields)"
|
msgid "Seamless (replaces this field with selected fields)"
|
||||||
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
||||||
|
|
||||||
#: pro/fields/clone.php:693
|
#: pro/fields/clone.php:719
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gib den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
"Gib den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:698 pro/fields/flexible-content.php:555
|
#: pro/fields/clone.php:724 pro/fields/flexible-content.php:555
|
||||||
#: pro/fields/repeater.php:467
|
#: pro/fields/repeater.php:476
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Block"
|
msgstr "Block"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:699 pro/fields/flexible-content.php:554
|
#: pro/fields/clone.php:725 pro/fields/flexible-content.php:554
|
||||||
#: pro/fields/repeater.php:466
|
#: pro/fields/repeater.php:475
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabelle"
|
msgstr "Tabelle"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:700 pro/fields/flexible-content.php:556
|
#: pro/fields/clone.php:726 pro/fields/flexible-content.php:556
|
||||||
#: pro/fields/repeater.php:468
|
#: pro/fields/repeater.php:477
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Reihe"
|
msgstr "Reihe"
|
||||||
|
|
||||||
#: pro/fields/clone.php:706
|
#: pro/fields/clone.php:732
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Labels will be displayed as %s"
|
msgid "Labels will be displayed as %s"
|
||||||
msgstr "Bezeichnungen werden als %s angezeigt"
|
msgstr "Bezeichnungen werden als %s angezeigt"
|
||||||
|
|
||||||
#: pro/fields/clone.php:709
|
#: pro/fields/clone.php:735
|
||||||
msgid "Prefix Field Labels"
|
msgid "Prefix Field Labels"
|
||||||
msgstr "Präfix für Feld-Beschriftungen"
|
msgstr "Präfix für Feld-Beschriftungen"
|
||||||
|
|
||||||
#: pro/fields/clone.php:724
|
#: pro/fields/clone.php:750
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Values will be saved as %s"
|
msgid "Values will be saved as %s"
|
||||||
msgstr "Werte werden als %s gespeichert"
|
msgstr "Werte werden als %s gespeichert"
|
||||||
|
|
||||||
#: pro/fields/clone.php:727
|
#: pro/fields/clone.php:753
|
||||||
msgid "Prefix Field Names"
|
msgid "Prefix Field Names"
|
||||||
msgstr "Präfix für Feld-Namen"
|
msgstr "Präfix für Feld-Namen"
|
||||||
|
|
||||||
#: pro/fields/clone.php:883
|
#: pro/fields/clone.php:875
|
||||||
|
msgid "Unknown field"
|
||||||
|
msgstr "Unbekanntes Feld"
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:914
|
||||||
|
msgid "Unknown field group"
|
||||||
|
msgstr "Unbekannte Feld-Gruppe"
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:918
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "All fields from %s field group"
|
msgid "All fields from %s field group"
|
||||||
msgstr "Alle Felder von Feld-Gruppe %s"
|
msgstr "Alle Felder von Feld-Gruppe %s"
|
||||||
|
|
@ -3235,7 +3252,7 @@ msgstr "Layout hinzufügen"
|
||||||
msgid "Remove layout"
|
msgid "Remove layout"
|
||||||
msgstr "Layout entfernen"
|
msgstr "Layout entfernen"
|
||||||
|
|
||||||
#: pro/fields/flexible-content.php:356 pro/fields/repeater.php:304
|
#: pro/fields/flexible-content.php:356 pro/fields/repeater.php:313
|
||||||
msgid "Click to toggle"
|
msgid "Click to toggle"
|
||||||
msgstr "Zum Auswählen anklicken"
|
msgstr "Zum Auswählen anklicken"
|
||||||
|
|
||||||
|
|
@ -3275,7 +3292,7 @@ msgid "Max"
|
||||||
msgstr "Max"
|
msgstr "Max"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/flexible-content.php:612 pro/fields/repeater.php:475
|
#: pro/fields/flexible-content.php:612 pro/fields/repeater.php:484
|
||||||
msgid "Button Label"
|
msgid "Button Label"
|
||||||
msgstr "Button-Beschriftung"
|
msgstr "Button-Beschriftung"
|
||||||
|
|
||||||
|
|
@ -3394,37 +3411,37 @@ msgid "Maximum rows reached ({max} rows)"
|
||||||
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:349
|
#: pro/fields/repeater.php:358
|
||||||
msgid "Add row"
|
msgid "Add row"
|
||||||
msgstr "Eintrag hinzufügen"
|
msgstr "Eintrag hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:350
|
#: pro/fields/repeater.php:359
|
||||||
msgid "Remove row"
|
msgid "Remove row"
|
||||||
msgstr "Eintrag löschen"
|
msgstr "Eintrag löschen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:398
|
#: pro/fields/repeater.php:407
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Wiederholungsfelder"
|
msgstr "Wiederholungsfelder"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:428
|
#: pro/fields/repeater.php:437
|
||||||
msgid "Collapsed"
|
msgid "Collapsed"
|
||||||
msgstr "Zugeklappt"
|
msgstr "Zugeklappt"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:429
|
#: pro/fields/repeater.php:438
|
||||||
msgid "Select a sub field to show when row is collapsed"
|
msgid "Select a sub field to show when row is collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
||||||
"werden soll"
|
"werden soll"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:439
|
#: pro/fields/repeater.php:448
|
||||||
msgid "Minimum Rows"
|
msgid "Minimum Rows"
|
||||||
msgstr "Minimum der Einträge"
|
msgstr "Minimum der Einträge"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:449
|
#: pro/fields/repeater.php:458
|
||||||
msgid "Maximum Rows"
|
msgid "Maximum Rows"
|
||||||
msgstr "Maximum der Einträge"
|
msgstr "Maximum der Einträge"
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,9 +1,9 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Advanced Custom Fields Pro v5.4 Formal\n"
|
"Project-Id-Version: Advanced Custom Fields Pro v5.4.6 Formal\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"POT-Creation-Date: 2016-07-29 00:37+0200\n"
|
"POT-Creation-Date: 2016-09-22 09:12+0200\n"
|
||||||
"PO-Revision-Date: 2016-07-29 00:42+0200\n"
|
"PO-Revision-Date: 2016-09-22 09:16+0200\n"
|
||||||
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
||||||
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
||||||
"Language: de_DE\n"
|
"Language: de_DE\n"
|
||||||
|
|
@ -11,7 +11,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 1.8.8\n"
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
"X-Poedit-SourceCharset: UTF-8\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__;"
|
"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;"
|
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
||||||
|
|
@ -28,109 +28,109 @@ msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:271 admin/admin.php:61
|
#: acf.php:273 admin/admin.php:61
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
msgstr "Feld-Gruppen"
|
msgstr "Feld-Gruppen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:272
|
#: acf.php:274
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Feld-Gruppe"
|
msgstr "Feld-Gruppe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:273 acf.php:305 admin/admin.php:62
|
#: acf.php:275 acf.php:307 admin/admin.php:62
|
||||||
#: pro/fields/flexible-content.php:500
|
#: pro/fields/flexible-content.php:500
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Erstellen"
|
msgstr "Erstellen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:274
|
#: acf.php:276
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Neue Feld-Gruppe erstellen"
|
msgstr "Neue Feld-Gruppe erstellen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:275
|
#: acf.php:277
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Feld-Gruppe bearbeiten"
|
msgstr "Feld-Gruppe bearbeiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:276
|
#: acf.php:278
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Neue Feld-Gruppe"
|
msgstr "Neue Feld-Gruppe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:277
|
#: acf.php:279
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Feld-Gruppe anzeigen"
|
msgstr "Feld-Gruppe anzeigen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:278
|
#: acf.php:280
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Feld-Gruppen suchen"
|
msgstr "Feld-Gruppen suchen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:279
|
#: acf.php:281
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Keine Feld-Gruppen gefunden"
|
msgstr "Keine Feld-Gruppen gefunden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:280
|
#: acf.php:282
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:303 admin/field-group.php:182 admin/field-group.php:280
|
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
|
||||||
#: admin/field-groups.php:528 pro/fields/clone.php:662
|
#: admin/field-groups.php:528 pro/fields/clone.php:688
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Felder"
|
msgstr "Felder"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:304
|
#: acf.php:306
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Feld"
|
msgstr "Feld"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:306
|
#: acf.php:308
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Feld hinzufügen"
|
msgstr "Feld hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:307
|
#: acf.php:309
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Feld bearbeiten"
|
msgstr "Feld bearbeiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:308 admin/views/field-group-fields.php:54
|
#: acf.php:310 admin/views/field-group-fields.php:54
|
||||||
#: admin/views/settings-info.php:111
|
#: admin/views/settings-info.php:111
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Neues Feld"
|
msgstr "Neues Feld"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:309
|
#: acf.php:311
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Feld anzeigen"
|
msgstr "Feld anzeigen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:310
|
#: acf.php:312
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Felder suchen"
|
msgstr "Felder suchen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:311
|
#: acf.php:313
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Keine Felder gefunden"
|
msgstr "Keine Felder gefunden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: acf.php:312
|
#: acf.php:314
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
||||||
|
|
||||||
#: acf.php:351 admin/field-group.php:395 admin/field-groups.php:585
|
#: acf.php:353 admin/field-group.php:395 admin/field-groups.php:585
|
||||||
#: admin/views/field-group-options.php:13
|
#: admin/views/field-group-options.php:13
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Deaktiviert"
|
msgstr "Deaktiviert"
|
||||||
|
|
||||||
#: acf.php:356
|
#: acf.php:358
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Disabled <span class=\"count\">(%s)</span>"
|
msgid "Disabled <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
||||||
|
|
@ -216,7 +216,7 @@ msgstr "kopieren"
|
||||||
#: admin/views/field-group-field-conditional-logic.php:62
|
#: admin/views/field-group-field-conditional-logic.php:62
|
||||||
#: admin/views/field-group-field-conditional-logic.php:162
|
#: admin/views/field-group-field-conditional-logic.php:162
|
||||||
#: admin/views/field-group-locations.php:59
|
#: admin/views/field-group-locations.php:59
|
||||||
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3952
|
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3973
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "oder"
|
msgstr "oder"
|
||||||
|
|
||||||
|
|
@ -265,96 +265,96 @@ msgid "Active"
|
||||||
msgstr "Aktiviert"
|
msgstr "Aktiviert"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:842
|
#: admin/field-group.php:846
|
||||||
msgid "Front Page"
|
msgid "Front Page"
|
||||||
msgstr "Startseite"
|
msgstr "Startseite"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:843
|
#: admin/field-group.php:847
|
||||||
msgid "Posts Page"
|
msgid "Posts Page"
|
||||||
msgstr "Beitrags-Seite"
|
msgstr "Beitrags-Seite"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:844
|
#: admin/field-group.php:848
|
||||||
msgid "Top Level Page (no parent)"
|
msgid "Top Level Page (no parent)"
|
||||||
msgstr "Seite ohne übergeordnete Seiten"
|
msgstr "Seite ohne übergeordnete Seiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:845
|
#: admin/field-group.php:849
|
||||||
msgid "Parent Page (has children)"
|
msgid "Parent Page (has children)"
|
||||||
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:846
|
#: admin/field-group.php:850
|
||||||
msgid "Child Page (has parent)"
|
msgid "Child Page (has parent)"
|
||||||
msgstr "Unterseite (mit übergeordneter Seite)"
|
msgstr "Unterseite (mit übergeordneter Seite)"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:862
|
#: admin/field-group.php:866
|
||||||
msgid "Default Template"
|
msgid "Default Template"
|
||||||
msgstr "Standard-Template"
|
msgstr "Standard-Template"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:885
|
#: admin/field-group.php:889
|
||||||
msgid "Logged in"
|
msgid "Logged in"
|
||||||
msgstr "ist angemeldet"
|
msgstr "ist angemeldet"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:886
|
#: admin/field-group.php:890
|
||||||
msgid "Viewing front end"
|
msgid "Viewing front end"
|
||||||
msgstr "ist im Front-End"
|
msgstr "ist im Front-End"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:887
|
#: admin/field-group.php:891
|
||||||
msgid "Viewing back end"
|
msgid "Viewing back end"
|
||||||
msgstr "ist im Back-End"
|
msgstr "ist im Back-End"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:906
|
#: admin/field-group.php:910
|
||||||
msgid "Super Admin"
|
msgid "Super Admin"
|
||||||
msgstr "Super-Admin"
|
msgstr "Super-Admin"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:917 admin/field-group.php:925
|
#: admin/field-group.php:921 admin/field-group.php:929
|
||||||
#: admin/field-group.php:939 admin/field-group.php:946
|
#: admin/field-group.php:943 admin/field-group.php:950
|
||||||
#: admin/field-group.php:963 admin/field-group.php:980 fields/file.php:241
|
#: admin/field-group.php:967 admin/field-group.php:984 fields/file.php:241
|
||||||
#: fields/image.php:237 pro/fields/gallery.php:676
|
#: fields/image.php:237 pro/fields/gallery.php:676
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "Alle"
|
msgstr "Alle"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:926
|
#: admin/field-group.php:930
|
||||||
msgid "Add / Edit"
|
msgid "Add / Edit"
|
||||||
msgstr "Hinzufügen / Bearbeiten"
|
msgstr "Hinzufügen / Bearbeiten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:927
|
#: admin/field-group.php:931
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "Registrieren"
|
msgstr "Registrieren"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1167
|
#: admin/field-group.php:1171
|
||||||
msgid "Move Complete."
|
msgid "Move Complete."
|
||||||
msgstr "Verschieben erfolgreich abgeschlossen."
|
msgstr "Verschieben erfolgreich abgeschlossen."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1168
|
#: admin/field-group.php:1172
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The %s field can now be found in the %s field group"
|
msgid "The %s field can now be found in the %s field group"
|
||||||
msgstr "Das Feld \"%s\" wurde in die %s Feld-Gruppe verschoben"
|
msgstr "Das Feld \"%s\" wurde in die %s Feld-Gruppe verschoben"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1170
|
#: admin/field-group.php:1174
|
||||||
msgid "Close Window"
|
msgid "Close Window"
|
||||||
msgstr "Schließen"
|
msgstr "Schließen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1205
|
#: admin/field-group.php:1209
|
||||||
msgid "Please select the destination for this field"
|
msgid "Please select the destination for this field"
|
||||||
msgstr "In welche Feld-Gruppe solle dieses Feld verschoben werden"
|
msgstr "In welche Feld-Gruppe solle dieses Feld verschoben werden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-group.php:1212
|
#: admin/field-group.php:1216
|
||||||
msgid "Move Field"
|
msgid "Move Field"
|
||||||
msgstr "Feld verschieben"
|
msgstr "Feld verschieben"
|
||||||
|
|
||||||
|
|
@ -399,8 +399,8 @@ msgid "Sync available"
|
||||||
msgstr "Synchronisierung verfügbar"
|
msgstr "Synchronisierung verfügbar"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:525 api/api-template.php:1077
|
#: admin/field-groups.php:525 api/api-template.php:1039
|
||||||
#: api/api-template.php:1290 pro/fields/gallery.php:370
|
#: pro/fields/gallery.php:370
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
|
|
@ -493,18 +493,24 @@ msgid "Duplicate"
|
||||||
msgstr "Duplizieren"
|
msgstr "Duplizieren"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:751
|
#: admin/field-groups.php:717 fields/google-map.php:133
|
||||||
|
#: fields/relationship.php:742
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Suchen"
|
||||||
|
|
||||||
|
# @ acf
|
||||||
|
#: admin/field-groups.php:767
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Select %s"
|
msgid "Select %s"
|
||||||
msgstr "%s auswählen"
|
msgstr "%s auswählen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:759
|
#: admin/field-groups.php:775
|
||||||
msgid "Synchronise field group"
|
msgid "Synchronise field group"
|
||||||
msgstr "Synchronisiere Feld-Gruppe"
|
msgstr "Synchronisiere Feld-Gruppe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/field-groups.php:759 admin/field-groups.php:776
|
#: admin/field-groups.php:775 admin/field-groups.php:792
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
msgstr "Synchronisieren"
|
msgstr "Synchronisieren"
|
||||||
|
|
||||||
|
|
@ -602,9 +608,9 @@ msgstr "Bedingungen für die Anzeige"
|
||||||
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
||||||
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
||||||
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
||||||
#: fields/user.php:413 fields/wysiwyg.php:418
|
#: fields/user.php:413 fields/wysiwyg.php:464
|
||||||
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:716
|
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
|
||||||
#: pro/fields/clone.php:734
|
#: pro/fields/clone.php:760
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Ja"
|
msgstr "Ja"
|
||||||
|
|
||||||
|
|
@ -617,9 +623,9 @@ msgstr "Ja"
|
||||||
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
||||||
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
||||||
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
||||||
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:419
|
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
|
||||||
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:717
|
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
|
||||||
#: pro/fields/clone.php:735
|
#: pro/fields/clone.php:761
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nein"
|
msgstr "Nein"
|
||||||
|
|
||||||
|
|
@ -654,7 +660,7 @@ msgstr "Regel-Gruppe hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: admin/views/field-group-field.php:50 pro/fields/flexible-content.php:346
|
#: admin/views/field-group-field.php:50 pro/fields/flexible-content.php:346
|
||||||
#: pro/fields/repeater.php:302
|
#: pro/fields/repeater.php:311
|
||||||
msgid "Drag to reorder"
|
msgid "Drag to reorder"
|
||||||
msgstr "Ziehen zum Sortieren"
|
msgstr "Ziehen zum Sortieren"
|
||||||
|
|
||||||
|
|
@ -1624,101 +1630,101 @@ msgid "See what's new"
|
||||||
msgstr "Was ist neu"
|
msgstr "Was ist neu"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:944
|
#: api/api-helpers.php:950
|
||||||
msgid "Thumbnail"
|
msgid "Thumbnail"
|
||||||
msgstr "Miniaturbild"
|
msgstr "Miniaturbild"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:945
|
#: api/api-helpers.php:951
|
||||||
msgid "Medium"
|
msgid "Medium"
|
||||||
msgstr "Mittel"
|
msgstr "Mittel"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:946
|
#: api/api-helpers.php:952
|
||||||
msgid "Large"
|
msgid "Large"
|
||||||
msgstr "Groß"
|
msgstr "Groß"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:995
|
#: api/api-helpers.php:1001
|
||||||
msgid "Full Size"
|
msgid "Full Size"
|
||||||
msgstr "Volle Größe"
|
msgstr "Volle Größe"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:1207 api/api-helpers.php:1770 pro/fields/clone.php:849
|
#: api/api-helpers.php:1213 api/api-helpers.php:1776 pro/fields/clone.php:879
|
||||||
msgid "(no title)"
|
msgid "(no title)"
|
||||||
msgstr "(ohne Titel)"
|
msgstr "(ohne Titel)"
|
||||||
|
|
||||||
#: api/api-helpers.php:1807 fields/page_link.php:284 fields/post_object.php:283
|
#: api/api-helpers.php:1813 fields/page_link.php:284 fields/post_object.php:283
|
||||||
#: fields/taxonomy.php:989
|
#: fields/taxonomy.php:989
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Übergeordnet"
|
msgstr "Übergeordnet"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3873
|
#: api/api-helpers.php:3894
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image width must be at least %dpx."
|
msgid "Image width must be at least %dpx."
|
||||||
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3878
|
#: api/api-helpers.php:3899
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image width must not exceed %dpx."
|
msgid "Image width must not exceed %dpx."
|
||||||
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3894
|
#: api/api-helpers.php:3915
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image height must be at least %dpx."
|
msgid "Image height must be at least %dpx."
|
||||||
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3899
|
#: api/api-helpers.php:3920
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image height must not exceed %dpx."
|
msgid "Image height must not exceed %dpx."
|
||||||
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3917
|
#: api/api-helpers.php:3938
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File size must be at least %s."
|
msgid "File size must be at least %s."
|
||||||
msgstr "Die Dateigröße muss mindestens %s sein."
|
msgstr "Die Dateigröße muss mindestens %s sein."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3922
|
#: api/api-helpers.php:3943
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File size must must not exceed %s."
|
msgid "File size must must not exceed %s."
|
||||||
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-helpers.php:3956
|
#: api/api-helpers.php:3977
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File type must be %s."
|
msgid "File type must be %s."
|
||||||
msgstr "Der Dateityp muss %s sein."
|
msgstr "Der Dateityp muss %s sein."
|
||||||
|
|
||||||
#: api/api-template.php:1092
|
# @ acf
|
||||||
|
#: api/api-template.php:1048 core/field.php:133
|
||||||
|
msgid "Content"
|
||||||
|
msgstr "Inhalt"
|
||||||
|
|
||||||
|
#: api/api-template.php:1056
|
||||||
|
msgid "Validate Email"
|
||||||
|
msgstr "E-Mail bestätigen"
|
||||||
|
|
||||||
|
#: api/api-template.php:1106
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam entdeckt"
|
msgstr "Spam entdeckt"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-template.php:1235 pro/api/api-options-page.php:50
|
#: api/api-template.php:1309 pro/api/api-options-page.php:50
|
||||||
#: pro/fields/gallery.php:588
|
#: pro/fields/gallery.php:588
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Aktualisieren"
|
msgstr "Aktualisieren"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: api/api-template.php:1236
|
#: api/api-template.php:1310
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Beitrag aktualisiert"
|
msgstr "Beitrag aktualisiert"
|
||||||
|
|
||||||
# @ acf
|
|
||||||
#: api/api-template.php:1304 core/field.php:133
|
|
||||||
msgid "Content"
|
|
||||||
msgstr "Inhalt"
|
|
||||||
|
|
||||||
#: api/api-template.php:1369
|
|
||||||
msgid "Validate Email"
|
|
||||||
msgstr "E-Mail bestätigen"
|
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/field.php:132
|
#: core/field.php:132
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
|
|
@ -1741,8 +1747,8 @@ msgstr "jQuery"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
||||||
#: pro/fields/clone.php:692 pro/fields/flexible-content.php:495
|
#: pro/fields/clone.php:718 pro/fields/flexible-content.php:495
|
||||||
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:459
|
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
|
|
@ -1762,7 +1768,7 @@ msgid "Validation successful"
|
||||||
msgstr "Überprüfung erfolgreich"
|
msgstr "Überprüfung erfolgreich"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/input.php:261 core/validation.php:306 forms/widget.php:234
|
#: core/input.php:261 core/validation.php:326 forms/widget.php:234
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "Überprüfung fehlgeschlagen"
|
msgstr "Überprüfung fehlgeschlagen"
|
||||||
|
|
||||||
|
|
@ -1803,7 +1809,7 @@ msgid "Uploaded to this post"
|
||||||
msgstr "Zu diesem Beitrag hochgeladen"
|
msgstr "Zu diesem Beitrag hochgeladen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: core/validation.php:207
|
#: core/validation.php:211
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s value is required"
|
msgid "%s value is required"
|
||||||
msgstr "%s Wert ist notwendig"
|
msgstr "%s Wert ist notwendig"
|
||||||
|
|
@ -1841,10 +1847,10 @@ msgid "red : Red"
|
||||||
msgstr "rot : Rot"
|
msgstr "rot : Rot"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:124
|
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:133
|
||||||
#: fields/number.php:150 fields/radio.php:284 fields/select.php:455
|
#: fields/number.php:145 fields/radio.php:284 fields/select.php:455
|
||||||
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
#: fields/text.php:142 fields/textarea.php:139 fields/true_false.php:115
|
||||||
#: fields/url.php:117 fields/wysiwyg.php:379
|
#: fields/url.php:114 fields/wysiwyg.php:425
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Standardwert"
|
msgstr "Standardwert"
|
||||||
|
|
||||||
|
|
@ -2061,45 +2067,45 @@ msgid "Email"
|
||||||
msgstr "E-Mail"
|
msgstr "E-Mail"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:285
|
#: fields/email.php:134 fields/number.php:146 fields/radio.php:285
|
||||||
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
|
#: fields/text.php:143 fields/textarea.php:140 fields/url.php:115
|
||||||
#: fields/wysiwyg.php:380
|
#: fields/wysiwyg.php:426
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
#: fields/email.php:142 fields/number.php:154 fields/password.php:134
|
||||||
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
|
#: fields/text.php:151 fields/textarea.php:148 fields/url.php:123
|
||||||
msgid "Placeholder Text"
|
msgid "Placeholder Text"
|
||||||
msgstr "Platzhalter-Text"
|
msgstr "Platzhalter-Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
#: fields/email.php:143 fields/number.php:155 fields/password.php:135
|
||||||
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
|
#: fields/text.php:152 fields/textarea.php:149 fields/url.php:124
|
||||||
msgid "Appears within the input"
|
msgid "Appears within the input"
|
||||||
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
#: fields/email.php:151 fields/number.php:163 fields/password.php:143
|
||||||
#: fields/text.php:166
|
#: fields/text.php:160
|
||||||
msgid "Prepend"
|
msgid "Prepend"
|
||||||
msgstr "Voranstellen"
|
msgstr "Voranstellen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
#: fields/email.php:152 fields/number.php:164 fields/password.php:144
|
||||||
#: fields/text.php:167
|
#: fields/text.php:161
|
||||||
msgid "Appears before the input"
|
msgid "Appears before the input"
|
||||||
msgstr "Wird dem Eingabefeld vorangestellt"
|
msgstr "Wird dem Eingabefeld vorangestellt"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
#: fields/email.php:160 fields/number.php:172 fields/password.php:152
|
||||||
#: fields/text.php:175
|
#: fields/text.php:169
|
||||||
msgid "Append"
|
msgid "Append"
|
||||||
msgstr "Anhängen"
|
msgstr "Anhängen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
#: fields/email.php:161 fields/number.php:173 fields/password.php:153
|
||||||
#: fields/text.php:176
|
#: fields/text.php:170
|
||||||
msgid "Appears after the input"
|
msgid "Appears after the input"
|
||||||
msgstr "Wird dem Eingabefeld hinten angestellt"
|
msgstr "Wird dem Eingabefeld hinten angestellt"
|
||||||
|
|
||||||
|
|
@ -2208,11 +2214,6 @@ msgstr "Lokalisiere"
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
||||||
|
|
||||||
# @ acf
|
|
||||||
#: fields/google-map.php:133 fields/relationship.php:742
|
|
||||||
msgid "Search"
|
|
||||||
msgstr "Suchen"
|
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/google-map.php:134
|
#: fields/google-map.php:134
|
||||||
msgid "Clear location"
|
msgid "Clear location"
|
||||||
|
|
@ -2344,27 +2345,27 @@ msgid "Message"
|
||||||
msgstr "Nachricht"
|
msgstr "Nachricht"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:125 fields/textarea.php:182
|
#: fields/message.php:125 fields/textarea.php:176
|
||||||
msgid "New Lines"
|
msgid "New Lines"
|
||||||
msgstr "Neue Zeilen"
|
msgstr "Neue Zeilen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:126 fields/textarea.php:183
|
#: fields/message.php:126 fields/textarea.php:177
|
||||||
msgid "Controls how new lines are rendered"
|
msgid "Controls how new lines are rendered"
|
||||||
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:130 fields/textarea.php:187
|
#: fields/message.php:130 fields/textarea.php:181
|
||||||
msgid "Automatically add paragraphs"
|
msgid "Automatically add paragraphs"
|
||||||
msgstr "Absätze automatisch hinzufügen"
|
msgstr "Absätze automatisch hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:131 fields/textarea.php:188
|
#: fields/message.php:131 fields/textarea.php:182
|
||||||
msgid "Automatically add <br>"
|
msgid "Automatically add <br>"
|
||||||
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/message.php:132 fields/textarea.php:189
|
#: fields/message.php:132 fields/textarea.php:183
|
||||||
msgid "No Formatting"
|
msgid "No Formatting"
|
||||||
msgstr "Keine Formatierung"
|
msgstr "Keine Formatierung"
|
||||||
|
|
||||||
|
|
@ -2386,33 +2387,33 @@ msgid "Number"
|
||||||
msgstr "Numerisch"
|
msgstr "Numerisch"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:186
|
#: fields/number.php:181
|
||||||
msgid "Minimum Value"
|
msgid "Minimum Value"
|
||||||
msgstr "Mindestwert"
|
msgstr "Mindestwert"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:195
|
#: fields/number.php:190
|
||||||
msgid "Maximum Value"
|
msgid "Maximum Value"
|
||||||
msgstr "Maximalwert"
|
msgstr "Maximalwert"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:204
|
#: fields/number.php:199
|
||||||
msgid "Step Size"
|
msgid "Step Size"
|
||||||
msgstr "Schrittweite"
|
msgstr "Schrittweite"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:242
|
#: fields/number.php:237
|
||||||
msgid "Value must be a number"
|
msgid "Value must be a number"
|
||||||
msgstr "Wert muss eine Zahl sein"
|
msgstr "Wert muss eine Zahl sein"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:260
|
#: fields/number.php:255
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Value must be equal to or higher than %d"
|
msgid "Value must be equal to or higher than %d"
|
||||||
msgstr "Wert muss größer oder gleich %d sein"
|
msgstr "Wert muss größer oder gleich %d sein"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/number.php:268
|
#: fields/number.php:263
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Value must be equal to or lower than %d"
|
msgid "Value must be equal to or lower than %d"
|
||||||
msgstr "Wert muss kleiner oder gleich %d sein"
|
msgstr "Wert muss kleiner oder gleich %d sein"
|
||||||
|
|
@ -2838,12 +2839,12 @@ msgid "Text"
|
||||||
msgstr "Text einzeilig"
|
msgstr "Text einzeilig"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/text.php:184 fields/textarea.php:163
|
#: fields/text.php:178 fields/textarea.php:157
|
||||||
msgid "Character Limit"
|
msgid "Character Limit"
|
||||||
msgstr "Zeichenbegrenzung"
|
msgstr "Zeichenbegrenzung"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/text.php:185 fields/textarea.php:164
|
#: fields/text.php:179 fields/textarea.php:158
|
||||||
msgid "Leave blank for no limit"
|
msgid "Leave blank for no limit"
|
||||||
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
||||||
|
|
||||||
|
|
@ -2853,12 +2854,12 @@ msgid "Text Area"
|
||||||
msgstr "Text mehrzeilig"
|
msgstr "Text mehrzeilig"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/textarea.php:172
|
#: fields/textarea.php:166
|
||||||
msgid "Rows"
|
msgid "Rows"
|
||||||
msgstr "Zeilenanzahl"
|
msgstr "Zeilenanzahl"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/textarea.php:173
|
#: fields/textarea.php:167
|
||||||
msgid "Sets the textarea height"
|
msgid "Sets the textarea height"
|
||||||
msgstr "Definiert die Höhe des Textfelds"
|
msgstr "Definiert die Höhe des Textfelds"
|
||||||
|
|
||||||
|
|
@ -2882,7 +2883,7 @@ msgid "Url"
|
||||||
msgstr "URL"
|
msgstr "URL"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/url.php:168
|
#: fields/url.php:165
|
||||||
msgid "Value must be a valid URL"
|
msgid "Value must be a valid URL"
|
||||||
msgstr "Bitte eine gültige URL eingeben"
|
msgstr "Bitte eine gültige URL eingeben"
|
||||||
|
|
||||||
|
|
@ -2897,48 +2898,48 @@ msgid "All user roles"
|
||||||
msgstr "Alle Benutzerrollen"
|
msgstr "Alle Benutzerrollen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:37
|
#: fields/wysiwyg.php:36
|
||||||
msgid "Wysiwyg Editor"
|
msgid "Wysiwyg Editor"
|
||||||
msgstr "WYSIWYG-Editor"
|
msgstr "WYSIWYG-Editor"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:331
|
#: fields/wysiwyg.php:377
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visuell"
|
msgstr "Visuell"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:332
|
#: fields/wysiwyg.php:378
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:388
|
#: fields/wysiwyg.php:434
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Tabs"
|
msgstr "Tabs"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:393
|
#: fields/wysiwyg.php:439
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visuell & Text"
|
msgstr "Visuell & Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:394
|
#: fields/wysiwyg.php:440
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Nur Visuell"
|
msgstr "Nur Visuell"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:395
|
#: fields/wysiwyg.php:441
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Nur Text"
|
msgstr "Nur Text"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:402
|
#: fields/wysiwyg.php:448
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Werkzeugleiste"
|
msgstr "Werkzeugleiste"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: fields/wysiwyg.php:412
|
#: fields/wysiwyg.php:458
|
||||||
msgid "Show Media Upload Buttons?"
|
msgid "Show Media Upload Buttons?"
|
||||||
msgstr "Button zum Hochladen von Medien anzeigen?"
|
msgstr "Button zum Hochladen von Medien anzeigen?"
|
||||||
|
|
||||||
|
|
@ -3079,6 +3080,14 @@ msgstr "Aktualisierungs-Hinweis"
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
msgstr "Optionen"
|
msgstr "Optionen"
|
||||||
|
|
||||||
|
#: pro/api/api-pro.php:328
|
||||||
|
msgid ""
|
||||||
|
"Error validating license URL (website does not match). Please re-activate "
|
||||||
|
"your license"
|
||||||
|
msgstr ""
|
||||||
|
"Fehler bei der Überprüfung der Lizenz-URL (Webseite stimmt nicht überein). "
|
||||||
|
"Bitte reaktivieren Sie ihre Lizenz"
|
||||||
|
|
||||||
#: pro/core/updates.php:206
|
#: pro/core/updates.php:206
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -3096,71 +3105,79 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Klon"
|
msgstr "Klon"
|
||||||
|
|
||||||
#: pro/fields/clone.php:663
|
#: pro/fields/clone.php:689
|
||||||
msgid "Select one or more fields you wish to clone"
|
msgid "Select one or more fields you wish to clone"
|
||||||
msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten"
|
msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:678
|
#: pro/fields/clone.php:704
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr "Anzeige"
|
msgstr "Anzeige"
|
||||||
|
|
||||||
#: pro/fields/clone.php:679
|
#: pro/fields/clone.php:705
|
||||||
msgid "Specify the style used to render the clone field"
|
msgid "Specify the style used to render the clone field"
|
||||||
msgstr "Geben Sie den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
msgstr "Geben Sie den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
||||||
|
|
||||||
#: pro/fields/clone.php:684
|
#: pro/fields/clone.php:710
|
||||||
msgid "Group (displays selected fields in a group within this field)"
|
msgid "Group (displays selected fields in a group within this field)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
||||||
"Feldes an)"
|
"Feldes an)"
|
||||||
|
|
||||||
#: pro/fields/clone.php:685
|
#: pro/fields/clone.php:711
|
||||||
msgid "Seamless (replaces this field with selected fields)"
|
msgid "Seamless (replaces this field with selected fields)"
|
||||||
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
||||||
|
|
||||||
#: pro/fields/clone.php:693
|
#: pro/fields/clone.php:719
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Geben Sie den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
"Geben Sie den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:698 pro/fields/flexible-content.php:555
|
#: pro/fields/clone.php:724 pro/fields/flexible-content.php:555
|
||||||
#: pro/fields/repeater.php:467
|
#: pro/fields/repeater.php:476
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Block"
|
msgstr "Block"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:699 pro/fields/flexible-content.php:554
|
#: pro/fields/clone.php:725 pro/fields/flexible-content.php:554
|
||||||
#: pro/fields/repeater.php:466
|
#: pro/fields/repeater.php:475
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabelle"
|
msgstr "Tabelle"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/clone.php:700 pro/fields/flexible-content.php:556
|
#: pro/fields/clone.php:726 pro/fields/flexible-content.php:556
|
||||||
#: pro/fields/repeater.php:468
|
#: pro/fields/repeater.php:477
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Reihe"
|
msgstr "Reihe"
|
||||||
|
|
||||||
#: pro/fields/clone.php:706
|
#: pro/fields/clone.php:732
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Labels will be displayed as %s"
|
msgid "Labels will be displayed as %s"
|
||||||
msgstr "Bezeichnungen werden als %s angezeigt"
|
msgstr "Bezeichnungen werden als %s angezeigt"
|
||||||
|
|
||||||
#: pro/fields/clone.php:709
|
#: pro/fields/clone.php:735
|
||||||
msgid "Prefix Field Labels"
|
msgid "Prefix Field Labels"
|
||||||
msgstr "Präfix für Feld-Beschriftungen"
|
msgstr "Präfix für Feld-Beschriftungen"
|
||||||
|
|
||||||
#: pro/fields/clone.php:724
|
#: pro/fields/clone.php:750
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Values will be saved as %s"
|
msgid "Values will be saved as %s"
|
||||||
msgstr "Werte werden als %s gespeichert"
|
msgstr "Werte werden als %s gespeichert"
|
||||||
|
|
||||||
#: pro/fields/clone.php:727
|
#: pro/fields/clone.php:753
|
||||||
msgid "Prefix Field Names"
|
msgid "Prefix Field Names"
|
||||||
msgstr "Präfix für Feld-Namen"
|
msgstr "Präfix für Feld-Namen"
|
||||||
|
|
||||||
#: pro/fields/clone.php:883
|
#: pro/fields/clone.php:875
|
||||||
|
msgid "Unknown field"
|
||||||
|
msgstr "Unbekanntes Feld"
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:914
|
||||||
|
msgid "Unknown field group"
|
||||||
|
msgstr "Unbekannte Feld-Gruppe"
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:918
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "All fields from %s field group"
|
msgid "All fields from %s field group"
|
||||||
msgstr "Alle Felder von Feld-Gruppe %s"
|
msgstr "Alle Felder von Feld-Gruppe %s"
|
||||||
|
|
@ -3236,7 +3253,7 @@ msgstr "Layout hinzufügen"
|
||||||
msgid "Remove layout"
|
msgid "Remove layout"
|
||||||
msgstr "Layout entfernen"
|
msgstr "Layout entfernen"
|
||||||
|
|
||||||
#: pro/fields/flexible-content.php:356 pro/fields/repeater.php:304
|
#: pro/fields/flexible-content.php:356 pro/fields/repeater.php:313
|
||||||
msgid "Click to toggle"
|
msgid "Click to toggle"
|
||||||
msgstr "Zum Auswählen anklicken"
|
msgstr "Zum Auswählen anklicken"
|
||||||
|
|
||||||
|
|
@ -3276,7 +3293,7 @@ msgid "Max"
|
||||||
msgstr "Max"
|
msgstr "Max"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/flexible-content.php:612 pro/fields/repeater.php:475
|
#: pro/fields/flexible-content.php:612 pro/fields/repeater.php:484
|
||||||
msgid "Button Label"
|
msgid "Button Label"
|
||||||
msgstr "Button-Beschriftung"
|
msgstr "Button-Beschriftung"
|
||||||
|
|
||||||
|
|
@ -3395,37 +3412,37 @@ msgid "Maximum rows reached ({max} rows)"
|
||||||
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:349
|
#: pro/fields/repeater.php:358
|
||||||
msgid "Add row"
|
msgid "Add row"
|
||||||
msgstr "Eintrag hinzufügen"
|
msgstr "Eintrag hinzufügen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:350
|
#: pro/fields/repeater.php:359
|
||||||
msgid "Remove row"
|
msgid "Remove row"
|
||||||
msgstr "Eintrag löschen"
|
msgstr "Eintrag löschen"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:398
|
#: pro/fields/repeater.php:407
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Wiederholungsfelder"
|
msgstr "Wiederholungsfelder"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:428
|
#: pro/fields/repeater.php:437
|
||||||
msgid "Collapsed"
|
msgid "Collapsed"
|
||||||
msgstr "Zugeklappt"
|
msgstr "Zugeklappt"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:429
|
#: pro/fields/repeater.php:438
|
||||||
msgid "Select a sub field to show when row is collapsed"
|
msgid "Select a sub field to show when row is collapsed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Wählen Sie welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
"Wählen Sie welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
||||||
"werden soll"
|
"werden soll"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:439
|
#: pro/fields/repeater.php:448
|
||||||
msgid "Minimum Rows"
|
msgid "Minimum Rows"
|
||||||
msgstr "Minimum der Einträge"
|
msgstr "Minimum der Einträge"
|
||||||
|
|
||||||
# @ acf
|
# @ acf
|
||||||
#: pro/fields/repeater.php:449
|
#: pro/fields/repeater.php:458
|
||||||
msgid "Maximum Rows"
|
msgid "Maximum Rows"
|
||||||
msgstr "Maximum der Einträge"
|
msgstr "Maximum der Einträge"
|
||||||
|
|
||||||
|
|
|
||||||
BIN
lang/acf-fi.mo
BIN
lang/acf-fi.mo
Binary file not shown.
1927
lang/acf-fi.po
1927
lang/acf-fi.po
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
1143
lang/acf-pl_PL.po
1143
lang/acf-pl_PL.po
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -2,10 +2,10 @@
|
||||||
# This file is distributed under the same license as the package.
|
# This file is distributed under the same license as the package.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Advanced Custom Fields PRO 5.4.0\n"
|
"Project-Id-Version: Advanced Custom Fields PRO\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"POT-Creation-Date: 2016-08-05 16:34+0100\n"
|
"POT-Creation-Date: 2016-09-21 10:28+0100\n"
|
||||||
"PO-Revision-Date: 2016-08-05 16:34+0100\n"
|
"PO-Revision-Date: 2016-09-21 10:29+0100\n"
|
||||||
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||||
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||||
"Language: pt_PT\n"
|
"Language: pt_PT\n"
|
||||||
|
|
@ -13,7 +13,7 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 1.8.8\n"
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
"X-Poedit-SourceCharset: UTF-8\n"
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
"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;"
|
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||||
|
|
@ -28,91 +28,91 @@ msgstr ""
|
||||||
msgid "Advanced Custom Fields"
|
msgid "Advanced Custom Fields"
|
||||||
msgstr "Advanced Custom Fields"
|
msgstr "Advanced Custom Fields"
|
||||||
|
|
||||||
#: acf.php:271 admin/admin.php:61
|
#: acf.php:273 admin/admin.php:61
|
||||||
msgid "Field Groups"
|
msgid "Field Groups"
|
||||||
msgstr "Grupos de campos"
|
msgstr "Grupos de campos"
|
||||||
|
|
||||||
#: acf.php:272
|
#: acf.php:274
|
||||||
msgid "Field Group"
|
msgid "Field Group"
|
||||||
msgstr "Grupo de campos"
|
msgstr "Grupo de campos"
|
||||||
|
|
||||||
#: acf.php:273 acf.php:305 admin/admin.php:62
|
#: acf.php:275 acf.php:307 admin/admin.php:62
|
||||||
#: pro/fields/flexible-content.php:500
|
#: pro/fields/flexible-content.php:500
|
||||||
msgid "Add New"
|
msgid "Add New"
|
||||||
msgstr "Adicionar novo"
|
msgstr "Adicionar novo"
|
||||||
|
|
||||||
#: acf.php:274
|
#: acf.php:276
|
||||||
msgid "Add New Field Group"
|
msgid "Add New Field Group"
|
||||||
msgstr "Adicionar novo grupo de campos"
|
msgstr "Adicionar novo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:275
|
#: acf.php:277
|
||||||
msgid "Edit Field Group"
|
msgid "Edit Field Group"
|
||||||
msgstr "Editar grupo de campos"
|
msgstr "Editar grupo de campos"
|
||||||
|
|
||||||
#: acf.php:276
|
#: acf.php:278
|
||||||
msgid "New Field Group"
|
msgid "New Field Group"
|
||||||
msgstr "Novo grupo de campos"
|
msgstr "Novo grupo de campos"
|
||||||
|
|
||||||
#: acf.php:277
|
#: acf.php:279
|
||||||
msgid "View Field Group"
|
msgid "View Field Group"
|
||||||
msgstr "Ver grupo de campos"
|
msgstr "Ver grupo de campos"
|
||||||
|
|
||||||
#: acf.php:278
|
#: acf.php:280
|
||||||
msgid "Search Field Groups"
|
msgid "Search Field Groups"
|
||||||
msgstr "Pesquisar grupos de campos"
|
msgstr "Pesquisar grupos de campos"
|
||||||
|
|
||||||
#: acf.php:279
|
#: acf.php:281
|
||||||
msgid "No Field Groups found"
|
msgid "No Field Groups found"
|
||||||
msgstr "Nenhum grupo de campos encontrado"
|
msgstr "Nenhum grupo de campos encontrado"
|
||||||
|
|
||||||
#: acf.php:280
|
#: acf.php:282
|
||||||
msgid "No Field Groups found in Trash"
|
msgid "No Field Groups found in Trash"
|
||||||
msgstr "Nenhum grupo de campos encontrado no lixo"
|
msgstr "Nenhum grupo de campos encontrado no lixo"
|
||||||
|
|
||||||
#: acf.php:303 admin/field-group.php:182 admin/field-group.php:280
|
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
|
||||||
#: admin/field-groups.php:528 pro/fields/clone.php:662
|
#: admin/field-groups.php:528 pro/fields/clone.php:688
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr "Campos"
|
msgstr "Campos"
|
||||||
|
|
||||||
#: acf.php:304
|
#: acf.php:306
|
||||||
msgid "Field"
|
msgid "Field"
|
||||||
msgstr "Campo"
|
msgstr "Campo"
|
||||||
|
|
||||||
#: acf.php:306
|
#: acf.php:308
|
||||||
msgid "Add New Field"
|
msgid "Add New Field"
|
||||||
msgstr "Adicionar novo campo"
|
msgstr "Adicionar novo campo"
|
||||||
|
|
||||||
#: acf.php:307
|
#: acf.php:309
|
||||||
msgid "Edit Field"
|
msgid "Edit Field"
|
||||||
msgstr "Editar campo"
|
msgstr "Editar campo"
|
||||||
|
|
||||||
#: acf.php:308 admin/views/field-group-fields.php:54
|
#: acf.php:310 admin/views/field-group-fields.php:54
|
||||||
#: admin/views/settings-info.php:111
|
#: admin/views/settings-info.php:111
|
||||||
msgid "New Field"
|
msgid "New Field"
|
||||||
msgstr "Novo campo"
|
msgstr "Novo campo"
|
||||||
|
|
||||||
#: acf.php:309
|
#: acf.php:311
|
||||||
msgid "View Field"
|
msgid "View Field"
|
||||||
msgstr "Ver campo"
|
msgstr "Ver campo"
|
||||||
|
|
||||||
#: acf.php:310
|
#: acf.php:312
|
||||||
msgid "Search Fields"
|
msgid "Search Fields"
|
||||||
msgstr "Pesquisar campos"
|
msgstr "Pesquisar campos"
|
||||||
|
|
||||||
#: acf.php:311
|
#: acf.php:313
|
||||||
msgid "No Fields found"
|
msgid "No Fields found"
|
||||||
msgstr "Nenhum campo encontrado"
|
msgstr "Nenhum campo encontrado"
|
||||||
|
|
||||||
#: acf.php:312
|
#: acf.php:314
|
||||||
msgid "No Fields found in Trash"
|
msgid "No Fields found in Trash"
|
||||||
msgstr "Nenhum campo encontrado no Lixo"
|
msgstr "Nenhum campo encontrado no Lixo"
|
||||||
|
|
||||||
#: acf.php:351 admin/field-group.php:395 admin/field-groups.php:585
|
#: acf.php:353 admin/field-group.php:395 admin/field-groups.php:585
|
||||||
#: admin/views/field-group-options.php:13
|
#: admin/views/field-group-options.php:13
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
msgstr "Desactivado"
|
msgstr "Desactivado"
|
||||||
|
|
||||||
#: acf.php:356
|
#: acf.php:358
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Disabled <span class=\"count\">(%s)</span>"
|
msgid "Disabled <span class=\"count\">(%s)</span>"
|
||||||
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
msgid_plural "Disabled <span class=\"count\">(%s)</span>"
|
||||||
|
|
@ -183,7 +183,7 @@ msgstr "cópia"
|
||||||
#: admin/views/field-group-field-conditional-logic.php:62
|
#: admin/views/field-group-field-conditional-logic.php:62
|
||||||
#: admin/views/field-group-field-conditional-logic.php:162
|
#: admin/views/field-group-field-conditional-logic.php:162
|
||||||
#: admin/views/field-group-locations.php:59
|
#: admin/views/field-group-locations.php:59
|
||||||
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3952
|
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3973
|
||||||
msgid "or"
|
msgid "or"
|
||||||
msgstr "ou"
|
msgstr "ou"
|
||||||
|
|
||||||
|
|
@ -226,79 +226,79 @@ msgstr "Chaves dos campos"
|
||||||
msgid "Active"
|
msgid "Active"
|
||||||
msgstr "Activo"
|
msgstr "Activo"
|
||||||
|
|
||||||
#: admin/field-group.php:842
|
#: admin/field-group.php:846
|
||||||
msgid "Front Page"
|
msgid "Front Page"
|
||||||
msgstr "Página inicial"
|
msgstr "Página inicial"
|
||||||
|
|
||||||
#: admin/field-group.php:843
|
#: admin/field-group.php:847
|
||||||
msgid "Posts Page"
|
msgid "Posts Page"
|
||||||
msgstr "Página de artigos"
|
msgstr "Página de artigos"
|
||||||
|
|
||||||
#: admin/field-group.php:844
|
#: admin/field-group.php:848
|
||||||
msgid "Top Level Page (no parent)"
|
msgid "Top Level Page (no parent)"
|
||||||
msgstr "Página de topo (sem superior)"
|
msgstr "Página de topo (sem superior)"
|
||||||
|
|
||||||
#: admin/field-group.php:845
|
#: admin/field-group.php:849
|
||||||
msgid "Parent Page (has children)"
|
msgid "Parent Page (has children)"
|
||||||
msgstr "Página superior (tem dependentes)"
|
msgstr "Página superior (tem dependentes)"
|
||||||
|
|
||||||
#: admin/field-group.php:846
|
#: admin/field-group.php:850
|
||||||
msgid "Child Page (has parent)"
|
msgid "Child Page (has parent)"
|
||||||
msgstr "Página dependente (tem superior)"
|
msgstr "Página dependente (tem superior)"
|
||||||
|
|
||||||
#: admin/field-group.php:862
|
#: admin/field-group.php:866
|
||||||
msgid "Default Template"
|
msgid "Default Template"
|
||||||
msgstr "Modelo por omissão"
|
msgstr "Modelo por omissão"
|
||||||
|
|
||||||
#: admin/field-group.php:885
|
#: admin/field-group.php:889
|
||||||
msgid "Logged in"
|
msgid "Logged in"
|
||||||
msgstr "Sessão iniciada"
|
msgstr "Sessão iniciada"
|
||||||
|
|
||||||
#: admin/field-group.php:886
|
#: admin/field-group.php:890
|
||||||
msgid "Viewing front end"
|
msgid "Viewing front end"
|
||||||
msgstr "A visualizar a frente do site"
|
msgstr "A visualizar a frente do site"
|
||||||
|
|
||||||
#: admin/field-group.php:887
|
#: admin/field-group.php:891
|
||||||
msgid "Viewing back end"
|
msgid "Viewing back end"
|
||||||
msgstr "A visualizar a administração do site"
|
msgstr "A visualizar a administração do site"
|
||||||
|
|
||||||
#: admin/field-group.php:906
|
#: admin/field-group.php:910
|
||||||
msgid "Super Admin"
|
msgid "Super Admin"
|
||||||
msgstr "Super Administrador"
|
msgstr "Super Administrador"
|
||||||
|
|
||||||
#: admin/field-group.php:917 admin/field-group.php:925
|
#: admin/field-group.php:921 admin/field-group.php:929
|
||||||
#: admin/field-group.php:939 admin/field-group.php:946
|
#: admin/field-group.php:943 admin/field-group.php:950
|
||||||
#: admin/field-group.php:963 admin/field-group.php:980 fields/file.php:241
|
#: admin/field-group.php:967 admin/field-group.php:984 fields/file.php:241
|
||||||
#: fields/image.php:237 pro/fields/gallery.php:676
|
#: fields/image.php:237 pro/fields/gallery.php:676
|
||||||
msgid "All"
|
msgid "All"
|
||||||
msgstr "Todos"
|
msgstr "Todos"
|
||||||
|
|
||||||
#: admin/field-group.php:926
|
#: admin/field-group.php:930
|
||||||
msgid "Add / Edit"
|
msgid "Add / Edit"
|
||||||
msgstr "Adicionar / Editar"
|
msgstr "Adicionar / Editar"
|
||||||
|
|
||||||
#: admin/field-group.php:927
|
#: admin/field-group.php:931
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "Registar"
|
msgstr "Registar"
|
||||||
|
|
||||||
#: admin/field-group.php:1167
|
#: admin/field-group.php:1171
|
||||||
msgid "Move Complete."
|
msgid "Move Complete."
|
||||||
msgstr "Movido com sucesso."
|
msgstr "Movido com sucesso."
|
||||||
|
|
||||||
#: admin/field-group.php:1168
|
#: admin/field-group.php:1172
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The %s field can now be found in the %s field group"
|
msgid "The %s field can now be found in the %s field group"
|
||||||
msgstr "O campo %s pode agora ser encontrado no grupo de campos %s"
|
msgstr "O campo %s pode agora ser encontrado no grupo de campos %s"
|
||||||
|
|
||||||
#: admin/field-group.php:1170
|
#: admin/field-group.php:1174
|
||||||
msgid "Close Window"
|
msgid "Close Window"
|
||||||
msgstr "Fechar janela"
|
msgstr "Fechar janela"
|
||||||
|
|
||||||
#: admin/field-group.php:1205
|
#: admin/field-group.php:1209
|
||||||
msgid "Please select the destination for this field"
|
msgid "Please select the destination for this field"
|
||||||
msgstr "Por favor seleccione o destinho para este campo"
|
msgstr "Por favor seleccione o destinho para este campo"
|
||||||
|
|
||||||
#: admin/field-group.php:1212
|
#: admin/field-group.php:1216
|
||||||
msgid "Move Field"
|
msgid "Move Field"
|
||||||
msgstr "Mover campo"
|
msgstr "Mover campo"
|
||||||
|
|
||||||
|
|
@ -337,8 +337,8 @@ msgstr[1] "%s grupos de campos sincronizados."
|
||||||
msgid "Sync available"
|
msgid "Sync available"
|
||||||
msgstr "Sincronização disponível"
|
msgstr "Sincronização disponível"
|
||||||
|
|
||||||
#: admin/field-groups.php:525 api/api-template.php:1077
|
#: admin/field-groups.php:525 api/api-template.php:1039
|
||||||
#: api/api-template.php:1290 pro/fields/gallery.php:370
|
#: pro/fields/gallery.php:370
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Título"
|
msgstr "Título"
|
||||||
|
|
||||||
|
|
@ -416,16 +416,21 @@ msgstr "Duplicar este item"
|
||||||
msgid "Duplicate"
|
msgid "Duplicate"
|
||||||
msgstr "Duplicar"
|
msgstr "Duplicar"
|
||||||
|
|
||||||
#: admin/field-groups.php:751
|
#: admin/field-groups.php:717 fields/google-map.php:133
|
||||||
|
#: fields/relationship.php:742
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Pesquisa"
|
||||||
|
|
||||||
|
#: admin/field-groups.php:767
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Select %s"
|
msgid "Select %s"
|
||||||
msgstr "Seleccionar %s"
|
msgstr "Seleccionar %s"
|
||||||
|
|
||||||
#: admin/field-groups.php:759
|
#: admin/field-groups.php:775
|
||||||
msgid "Synchronise field group"
|
msgid "Synchronise field group"
|
||||||
msgstr "Sincronizar grupo de campos"
|
msgstr "Sincronizar grupo de campos"
|
||||||
|
|
||||||
#: admin/field-groups.php:759 admin/field-groups.php:776
|
#: admin/field-groups.php:775 admin/field-groups.php:792
|
||||||
msgid "Sync"
|
msgid "Sync"
|
||||||
msgstr "Sincronizar"
|
msgstr "Sincronizar"
|
||||||
|
|
||||||
|
|
@ -509,9 +514,9 @@ msgstr "Lógica condicional"
|
||||||
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
||||||
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
||||||
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
||||||
#: fields/user.php:413 fields/wysiwyg.php:418
|
#: fields/user.php:413 fields/wysiwyg.php:464
|
||||||
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:716
|
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
|
||||||
#: pro/fields/clone.php:734
|
#: pro/fields/clone.php:760
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Sim"
|
msgstr "Sim"
|
||||||
|
|
||||||
|
|
@ -523,9 +528,9 @@ msgstr "Sim"
|
||||||
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
||||||
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
||||||
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
||||||
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:419
|
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
|
||||||
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:717
|
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
|
||||||
#: pro/fields/clone.php:735
|
#: pro/fields/clone.php:761
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Não"
|
msgstr "Não"
|
||||||
|
|
||||||
|
|
@ -554,7 +559,7 @@ msgid "Add rule group"
|
||||||
msgstr "Adicionar grupo de regras"
|
msgstr "Adicionar grupo de regras"
|
||||||
|
|
||||||
#: admin/views/field-group-field.php:50 pro/fields/flexible-content.php:346
|
#: admin/views/field-group-field.php:50 pro/fields/flexible-content.php:346
|
||||||
#: pro/fields/repeater.php:302
|
#: pro/fields/repeater.php:311
|
||||||
msgid "Drag to reorder"
|
msgid "Drag to reorder"
|
||||||
msgstr "Arraste para reordenar"
|
msgstr "Arraste para reordenar"
|
||||||
|
|
||||||
|
|
@ -1346,87 +1351,87 @@ msgstr "A ler tarefas de actualização..."
|
||||||
msgid "See what's new"
|
msgid "See what's new"
|
||||||
msgstr "Veja o que há de novo"
|
msgstr "Veja o que há de novo"
|
||||||
|
|
||||||
#: api/api-helpers.php:944
|
#: api/api-helpers.php:950
|
||||||
msgid "Thumbnail"
|
msgid "Thumbnail"
|
||||||
msgstr "Miniatura"
|
msgstr "Miniatura"
|
||||||
|
|
||||||
#: api/api-helpers.php:945
|
#: api/api-helpers.php:951
|
||||||
msgid "Medium"
|
msgid "Medium"
|
||||||
msgstr "Média"
|
msgstr "Média"
|
||||||
|
|
||||||
#: api/api-helpers.php:946
|
#: api/api-helpers.php:952
|
||||||
msgid "Large"
|
msgid "Large"
|
||||||
msgstr "Grande"
|
msgstr "Grande"
|
||||||
|
|
||||||
#: api/api-helpers.php:995
|
#: api/api-helpers.php:1001
|
||||||
msgid "Full Size"
|
msgid "Full Size"
|
||||||
msgstr "Tamanho original"
|
msgstr "Tamanho original"
|
||||||
|
|
||||||
#: api/api-helpers.php:1207 api/api-helpers.php:1770 pro/fields/clone.php:849
|
#: api/api-helpers.php:1213 api/api-helpers.php:1776 pro/fields/clone.php:879
|
||||||
msgid "(no title)"
|
msgid "(no title)"
|
||||||
msgstr "(sem título)"
|
msgstr "(sem título)"
|
||||||
|
|
||||||
#: api/api-helpers.php:1807 fields/page_link.php:284 fields/post_object.php:283
|
#: api/api-helpers.php:1813 fields/page_link.php:284 fields/post_object.php:283
|
||||||
#: fields/taxonomy.php:989
|
#: fields/taxonomy.php:989
|
||||||
msgid "Parent"
|
msgid "Parent"
|
||||||
msgstr "Superior"
|
msgstr "Superior"
|
||||||
|
|
||||||
#: api/api-helpers.php:3873
|
#: api/api-helpers.php:3894
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image width must be at least %dpx."
|
msgid "Image width must be at least %dpx."
|
||||||
msgstr "A largura da imagem deve ser pelo menos de %dpx."
|
msgstr "A largura da imagem deve ser pelo menos de %dpx."
|
||||||
|
|
||||||
#: api/api-helpers.php:3878
|
#: api/api-helpers.php:3899
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image width must not exceed %dpx."
|
msgid "Image width must not exceed %dpx."
|
||||||
msgstr "A largura da imagem não deve exceder os %dpx."
|
msgstr "A largura da imagem não deve exceder os %dpx."
|
||||||
|
|
||||||
#: api/api-helpers.php:3894
|
#: api/api-helpers.php:3915
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image height must be at least %dpx."
|
msgid "Image height must be at least %dpx."
|
||||||
msgstr "A altura da imagem deve ser pelo menos de %dpx."
|
msgstr "A altura da imagem deve ser pelo menos de %dpx."
|
||||||
|
|
||||||
#: api/api-helpers.php:3899
|
#: api/api-helpers.php:3920
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image height must not exceed %dpx."
|
msgid "Image height must not exceed %dpx."
|
||||||
msgstr "A altura da imagem não deve exceder os %dpx."
|
msgstr "A altura da imagem não deve exceder os %dpx."
|
||||||
|
|
||||||
#: api/api-helpers.php:3917
|
#: api/api-helpers.php:3938
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File size must be at least %s."
|
msgid "File size must be at least %s."
|
||||||
msgstr "O tamanho do ficheiro deve ser pelo menos de %s."
|
msgstr "O tamanho do ficheiro deve ser pelo menos de %s."
|
||||||
|
|
||||||
#: api/api-helpers.php:3922
|
#: api/api-helpers.php:3943
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File size must must not exceed %s."
|
msgid "File size must must not exceed %s."
|
||||||
msgstr "O tamanho do ficheiro não deve exceder %s."
|
msgstr "O tamanho do ficheiro não deve exceder %s."
|
||||||
|
|
||||||
#: api/api-helpers.php:3956
|
#: api/api-helpers.php:3977
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "File type must be %s."
|
msgid "File type must be %s."
|
||||||
msgstr "O tipo de ficheiro deve ser %s."
|
msgstr "O tipo de ficheiro deve ser %s."
|
||||||
|
|
||||||
#: api/api-template.php:1092
|
#: api/api-template.php:1048 core/field.php:133
|
||||||
|
msgid "Content"
|
||||||
|
msgstr "Conteúdo"
|
||||||
|
|
||||||
|
#: api/api-template.php:1056
|
||||||
|
msgid "Validate Email"
|
||||||
|
msgstr "Validar email"
|
||||||
|
|
||||||
|
#: api/api-template.php:1106
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr "Spam detectado"
|
msgstr "Spam detectado"
|
||||||
|
|
||||||
#: api/api-template.php:1235 pro/api/api-options-page.php:50
|
#: api/api-template.php:1309 pro/api/api-options-page.php:50
|
||||||
#: pro/fields/gallery.php:588
|
#: pro/fields/gallery.php:588
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr "Actualizar"
|
msgstr "Actualizar"
|
||||||
|
|
||||||
#: api/api-template.php:1236
|
#: api/api-template.php:1310
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr "Artigo actualizado"
|
msgstr "Artigo actualizado"
|
||||||
|
|
||||||
#: api/api-template.php:1304 core/field.php:133
|
|
||||||
msgid "Content"
|
|
||||||
msgstr "Conteúdo"
|
|
||||||
|
|
||||||
#: api/api-template.php:1369
|
|
||||||
msgid "Validate Email"
|
|
||||||
msgstr "Validar email"
|
|
||||||
|
|
||||||
#: core/field.php:132
|
#: core/field.php:132
|
||||||
msgid "Basic"
|
msgid "Basic"
|
||||||
msgstr "Básico"
|
msgstr "Básico"
|
||||||
|
|
@ -1444,8 +1449,8 @@ msgid "jQuery"
|
||||||
msgstr "jQuery"
|
msgstr "jQuery"
|
||||||
|
|
||||||
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
||||||
#: pro/fields/clone.php:692 pro/fields/flexible-content.php:495
|
#: pro/fields/clone.php:718 pro/fields/flexible-content.php:495
|
||||||
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:459
|
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr "Layout"
|
msgstr "Layout"
|
||||||
|
|
||||||
|
|
@ -1461,7 +1466,7 @@ msgstr "Minimizar detalhes"
|
||||||
msgid "Validation successful"
|
msgid "Validation successful"
|
||||||
msgstr "Validação bem sucedida"
|
msgstr "Validação bem sucedida"
|
||||||
|
|
||||||
#: core/input.php:261 core/validation.php:306 forms/widget.php:234
|
#: core/input.php:261 core/validation.php:326 forms/widget.php:234
|
||||||
msgid "Validation failed"
|
msgid "Validation failed"
|
||||||
msgstr "A validação falhou"
|
msgstr "A validação falhou"
|
||||||
|
|
||||||
|
|
@ -1498,7 +1503,7 @@ msgstr "Actualizar"
|
||||||
msgid "Uploaded to this post"
|
msgid "Uploaded to this post"
|
||||||
msgstr "Carregados neste artigo"
|
msgstr "Carregados neste artigo"
|
||||||
|
|
||||||
#: core/validation.php:207
|
#: core/validation.php:211
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s value is required"
|
msgid "%s value is required"
|
||||||
msgstr "O valor %s é obrigatório"
|
msgstr "O valor %s é obrigatório"
|
||||||
|
|
@ -1528,10 +1533,10 @@ msgstr ""
|
||||||
msgid "red : Red"
|
msgid "red : Red"
|
||||||
msgstr "vermelho : Vermelho"
|
msgstr "vermelho : Vermelho"
|
||||||
|
|
||||||
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:124
|
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:133
|
||||||
#: fields/number.php:150 fields/radio.php:284 fields/select.php:455
|
#: fields/number.php:145 fields/radio.php:284 fields/select.php:455
|
||||||
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
#: fields/text.php:142 fields/textarea.php:139 fields/true_false.php:115
|
||||||
#: fields/url.php:117 fields/wysiwyg.php:379
|
#: fields/url.php:114 fields/wysiwyg.php:425
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr "Valor por omissão"
|
msgstr "Valor por omissão"
|
||||||
|
|
||||||
|
|
@ -1731,39 +1736,39 @@ msgstr "P"
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Email"
|
msgstr "Email"
|
||||||
|
|
||||||
#: fields/email.php:125 fields/number.php:151 fields/radio.php:285
|
#: fields/email.php:134 fields/number.php:146 fields/radio.php:285
|
||||||
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
|
#: fields/text.php:143 fields/textarea.php:140 fields/url.php:115
|
||||||
#: fields/wysiwyg.php:380
|
#: fields/wysiwyg.php:426
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr "Aparece quando é criado um novo conteúdo."
|
msgstr "Aparece quando é criado um novo conteúdo."
|
||||||
|
|
||||||
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
#: fields/email.php:142 fields/number.php:154 fields/password.php:134
|
||||||
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
|
#: fields/text.php:151 fields/textarea.php:148 fields/url.php:123
|
||||||
msgid "Placeholder Text"
|
msgid "Placeholder Text"
|
||||||
msgstr "Texto predefinido"
|
msgstr "Texto predefinido"
|
||||||
|
|
||||||
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
#: fields/email.php:143 fields/number.php:155 fields/password.php:135
|
||||||
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
|
#: fields/text.php:152 fields/textarea.php:149 fields/url.php:124
|
||||||
msgid "Appears within the input"
|
msgid "Appears within the input"
|
||||||
msgstr "Aparece dentro do campo"
|
msgstr "Aparece dentro do campo"
|
||||||
|
|
||||||
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
#: fields/email.php:151 fields/number.php:163 fields/password.php:143
|
||||||
#: fields/text.php:166
|
#: fields/text.php:160
|
||||||
msgid "Prepend"
|
msgid "Prepend"
|
||||||
msgstr "Preceder"
|
msgstr "Preceder"
|
||||||
|
|
||||||
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
#: fields/email.php:152 fields/number.php:164 fields/password.php:144
|
||||||
#: fields/text.php:167
|
#: fields/text.php:161
|
||||||
msgid "Appears before the input"
|
msgid "Appears before the input"
|
||||||
msgstr "Aparece antes do campo"
|
msgstr "Aparece antes do campo"
|
||||||
|
|
||||||
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
#: fields/email.php:160 fields/number.php:172 fields/password.php:152
|
||||||
#: fields/text.php:175
|
#: fields/text.php:169
|
||||||
msgid "Append"
|
msgid "Append"
|
||||||
msgstr "Suceder"
|
msgstr "Suceder"
|
||||||
|
|
||||||
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
#: fields/email.php:161 fields/number.php:173 fields/password.php:153
|
||||||
#: fields/text.php:176
|
#: fields/text.php:170
|
||||||
msgid "Appears after the input"
|
msgid "Appears after the input"
|
||||||
msgstr "Aparece depois do campo"
|
msgstr "Aparece depois do campo"
|
||||||
|
|
||||||
|
|
@ -1850,10 +1855,6 @@ msgstr "A obter localização"
|
||||||
msgid "Sorry, this browser does not support geolocation"
|
msgid "Sorry, this browser does not support geolocation"
|
||||||
msgstr "Desculpe, este navegador não suporta geolocalização."
|
msgstr "Desculpe, este navegador não suporta geolocalização."
|
||||||
|
|
||||||
#: fields/google-map.php:133 fields/relationship.php:742
|
|
||||||
msgid "Search"
|
|
||||||
msgstr "Pesquisa"
|
|
||||||
|
|
||||||
#: fields/google-map.php:134
|
#: fields/google-map.php:134
|
||||||
msgid "Clear location"
|
msgid "Clear location"
|
||||||
msgstr "Limpar localização"
|
msgstr "Limpar localização"
|
||||||
|
|
@ -1957,23 +1958,23 @@ msgstr "Largura"
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr "Mensagem"
|
msgstr "Mensagem"
|
||||||
|
|
||||||
#: fields/message.php:125 fields/textarea.php:182
|
#: fields/message.php:125 fields/textarea.php:176
|
||||||
msgid "New Lines"
|
msgid "New Lines"
|
||||||
msgstr "Novas linhas"
|
msgstr "Novas linhas"
|
||||||
|
|
||||||
#: fields/message.php:126 fields/textarea.php:183
|
#: fields/message.php:126 fields/textarea.php:177
|
||||||
msgid "Controls how new lines are rendered"
|
msgid "Controls how new lines are rendered"
|
||||||
msgstr "Controla como serão visualizadas novas linhas."
|
msgstr "Controla como serão visualizadas novas linhas."
|
||||||
|
|
||||||
#: fields/message.php:130 fields/textarea.php:187
|
#: fields/message.php:130 fields/textarea.php:181
|
||||||
msgid "Automatically add paragraphs"
|
msgid "Automatically add paragraphs"
|
||||||
msgstr "Adicionar parágrafos automaticamente"
|
msgstr "Adicionar parágrafos automaticamente"
|
||||||
|
|
||||||
#: fields/message.php:131 fields/textarea.php:188
|
#: fields/message.php:131 fields/textarea.php:182
|
||||||
msgid "Automatically add <br>"
|
msgid "Automatically add <br>"
|
||||||
msgstr "Adicionar <br> automaticamente"
|
msgstr "Adicionar <br> automaticamente"
|
||||||
|
|
||||||
#: fields/message.php:132 fields/textarea.php:189
|
#: fields/message.php:132 fields/textarea.php:183
|
||||||
msgid "No Formatting"
|
msgid "No Formatting"
|
||||||
msgstr "Sem formatação"
|
msgstr "Sem formatação"
|
||||||
|
|
||||||
|
|
@ -1990,28 +1991,28 @@ msgstr ""
|
||||||
msgid "Number"
|
msgid "Number"
|
||||||
msgstr "Número"
|
msgstr "Número"
|
||||||
|
|
||||||
#: fields/number.php:186
|
#: fields/number.php:181
|
||||||
msgid "Minimum Value"
|
msgid "Minimum Value"
|
||||||
msgstr "Valor mínimo"
|
msgstr "Valor mínimo"
|
||||||
|
|
||||||
#: fields/number.php:195
|
#: fields/number.php:190
|
||||||
msgid "Maximum Value"
|
msgid "Maximum Value"
|
||||||
msgstr "Valor máximo"
|
msgstr "Valor máximo"
|
||||||
|
|
||||||
#: fields/number.php:204
|
#: fields/number.php:199
|
||||||
msgid "Step Size"
|
msgid "Step Size"
|
||||||
msgstr "Valor dos passos"
|
msgstr "Valor dos passos"
|
||||||
|
|
||||||
#: fields/number.php:242
|
#: fields/number.php:237
|
||||||
msgid "Value must be a number"
|
msgid "Value must be a number"
|
||||||
msgstr "O valor deve ser um número"
|
msgstr "O valor deve ser um número"
|
||||||
|
|
||||||
#: fields/number.php:260
|
#: fields/number.php:255
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Value must be equal to or higher than %d"
|
msgid "Value must be equal to or higher than %d"
|
||||||
msgstr "O valor deve ser igual ou superior a %d"
|
msgstr "O valor deve ser igual ou superior a %d"
|
||||||
|
|
||||||
#: fields/number.php:268
|
#: fields/number.php:263
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Value must be equal to or lower than %d"
|
msgid "Value must be equal to or lower than %d"
|
||||||
msgstr "O valor deve ser igual ou inferior a %d"
|
msgstr "O valor deve ser igual ou inferior a %d"
|
||||||
|
|
@ -2375,11 +2376,11 @@ msgstr "Adicionar"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: fields/text.php:184 fields/textarea.php:163
|
#: fields/text.php:178 fields/textarea.php:157
|
||||||
msgid "Character Limit"
|
msgid "Character Limit"
|
||||||
msgstr "Limite de caracteres"
|
msgstr "Limite de caracteres"
|
||||||
|
|
||||||
#: fields/text.php:185 fields/textarea.php:164
|
#: fields/text.php:179 fields/textarea.php:158
|
||||||
msgid "Leave blank for no limit"
|
msgid "Leave blank for no limit"
|
||||||
msgstr "Deixe em branco para nenhum limite"
|
msgstr "Deixe em branco para nenhum limite"
|
||||||
|
|
||||||
|
|
@ -2387,11 +2388,11 @@ msgstr "Deixe em branco para nenhum limite"
|
||||||
msgid "Text Area"
|
msgid "Text Area"
|
||||||
msgstr "Área de texto"
|
msgstr "Área de texto"
|
||||||
|
|
||||||
#: fields/textarea.php:172
|
#: fields/textarea.php:166
|
||||||
msgid "Rows"
|
msgid "Rows"
|
||||||
msgstr "Linhas"
|
msgstr "Linhas"
|
||||||
|
|
||||||
#: fields/textarea.php:173
|
#: fields/textarea.php:167
|
||||||
msgid "Sets the textarea height"
|
msgid "Sets the textarea height"
|
||||||
msgstr "Define a altura da área de texto"
|
msgstr "Define a altura da área de texto"
|
||||||
|
|
||||||
|
|
@ -2411,7 +2412,7 @@ msgstr "Ex.: Mostrar conteúdo adicional"
|
||||||
msgid "Url"
|
msgid "Url"
|
||||||
msgstr "URL"
|
msgstr "URL"
|
||||||
|
|
||||||
#: fields/url.php:168
|
#: fields/url.php:165
|
||||||
msgid "Value must be a valid URL"
|
msgid "Value must be a valid URL"
|
||||||
msgstr "O valor deve ser um URL válido"
|
msgstr "O valor deve ser um URL válido"
|
||||||
|
|
||||||
|
|
@ -2423,40 +2424,40 @@ msgstr "Filtrar por papel"
|
||||||
msgid "All user roles"
|
msgid "All user roles"
|
||||||
msgstr "Todos os papéis de utilizador"
|
msgstr "Todos os papéis de utilizador"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:37
|
#: fields/wysiwyg.php:36
|
||||||
msgid "Wysiwyg Editor"
|
msgid "Wysiwyg Editor"
|
||||||
msgstr "Editor wysiwyg"
|
msgstr "Editor wysiwyg"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:331
|
#: fields/wysiwyg.php:377
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr "Visual"
|
msgstr "Visual"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:332
|
#: fields/wysiwyg.php:378
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "HTML"
|
msgstr "HTML"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:388
|
#: fields/wysiwyg.php:434
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr "Separadores"
|
msgstr "Separadores"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:393
|
#: fields/wysiwyg.php:439
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr "Visual e HTML"
|
msgstr "Visual e HTML"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:394
|
#: fields/wysiwyg.php:440
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr "Apenas visual"
|
msgstr "Apenas visual"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:395
|
#: fields/wysiwyg.php:441
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr "Apenas HTML"
|
msgstr "Apenas HTML"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:402
|
#: fields/wysiwyg.php:448
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr "Barra de ferramentas"
|
msgstr "Barra de ferramentas"
|
||||||
|
|
||||||
#: fields/wysiwyg.php:412
|
#: fields/wysiwyg.php:458
|
||||||
msgid "Show Media Upload Buttons?"
|
msgid "Show Media Upload Buttons?"
|
||||||
msgstr "Mostrar botões de carregar multimédia?"
|
msgstr "Mostrar botões de carregar multimédia?"
|
||||||
|
|
||||||
|
|
@ -2573,6 +2574,14 @@ msgstr "Aviso de actualização"
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
msgstr "Opções"
|
msgstr "Opções"
|
||||||
|
|
||||||
|
#: pro/api/api-pro.php:328
|
||||||
|
msgid ""
|
||||||
|
"Error validating license URL (website does not match). Please re-activate "
|
||||||
|
"your license"
|
||||||
|
msgstr ""
|
||||||
|
"Erro ao validar o URL da licença (o site não corresponde). Por favor "
|
||||||
|
"reactive a sua licença."
|
||||||
|
|
||||||
#: pro/core/updates.php:206
|
#: pro/core/updates.php:206
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2589,64 +2598,72 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr "Clone"
|
msgstr "Clone"
|
||||||
|
|
||||||
#: pro/fields/clone.php:663
|
#: pro/fields/clone.php:689
|
||||||
msgid "Select one or more fields you wish to clone"
|
msgid "Select one or more fields you wish to clone"
|
||||||
msgstr "Seleccione um ou mais campos que deseje clonar."
|
msgstr "Seleccione um ou mais campos que deseje clonar."
|
||||||
|
|
||||||
#: pro/fields/clone.php:678
|
#: pro/fields/clone.php:704
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr "Visualização"
|
msgstr "Visualização"
|
||||||
|
|
||||||
#: pro/fields/clone.php:679
|
#: pro/fields/clone.php:705
|
||||||
msgid "Specify the style used to render the clone field"
|
msgid "Specify the style used to render the clone field"
|
||||||
msgstr "Especifica o estilo usado para mostrar o campo de clone."
|
msgstr "Especifica o estilo usado para mostrar o campo de clone."
|
||||||
|
|
||||||
#: pro/fields/clone.php:684
|
#: pro/fields/clone.php:710
|
||||||
msgid "Group (displays selected fields in a group within this field)"
|
msgid "Group (displays selected fields in a group within this field)"
|
||||||
msgstr "Grupo (mostra os campos seleccionados num grupo dentro deste campo)"
|
msgstr "Grupo (mostra os campos seleccionados num grupo dentro deste campo)"
|
||||||
|
|
||||||
#: pro/fields/clone.php:685
|
#: pro/fields/clone.php:711
|
||||||
msgid "Seamless (replaces this field with selected fields)"
|
msgid "Seamless (replaces this field with selected fields)"
|
||||||
msgstr "Simples (substitui este campo pelos campos seleccionados)"
|
msgstr "Simples (substitui este campo pelos campos seleccionados)"
|
||||||
|
|
||||||
#: pro/fields/clone.php:693
|
#: pro/fields/clone.php:719
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr "Especifica o estilo usado para mostrar os campos seleccionados."
|
msgstr "Especifica o estilo usado para mostrar os campos seleccionados."
|
||||||
|
|
||||||
#: pro/fields/clone.php:698 pro/fields/flexible-content.php:555
|
#: pro/fields/clone.php:724 pro/fields/flexible-content.php:555
|
||||||
#: pro/fields/repeater.php:467
|
#: pro/fields/repeater.php:476
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloco"
|
msgstr "Bloco"
|
||||||
|
|
||||||
#: pro/fields/clone.php:699 pro/fields/flexible-content.php:554
|
#: pro/fields/clone.php:725 pro/fields/flexible-content.php:554
|
||||||
#: pro/fields/repeater.php:466
|
#: pro/fields/repeater.php:475
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr "Tabela"
|
msgstr "Tabela"
|
||||||
|
|
||||||
#: pro/fields/clone.php:700 pro/fields/flexible-content.php:556
|
#: pro/fields/clone.php:726 pro/fields/flexible-content.php:556
|
||||||
#: pro/fields/repeater.php:468
|
#: pro/fields/repeater.php:477
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr "Linha"
|
msgstr "Linha"
|
||||||
|
|
||||||
#: pro/fields/clone.php:706
|
#: pro/fields/clone.php:732
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Labels will be displayed as %s"
|
msgid "Labels will be displayed as %s"
|
||||||
msgstr "As legendas serão mostradas com %s"
|
msgstr "As legendas serão mostradas com %s"
|
||||||
|
|
||||||
#: pro/fields/clone.php:709
|
#: pro/fields/clone.php:735
|
||||||
msgid "Prefix Field Labels"
|
msgid "Prefix Field Labels"
|
||||||
msgstr "Prefixo nas legendas dos campos"
|
msgstr "Prefixo nas legendas dos campos"
|
||||||
|
|
||||||
#: pro/fields/clone.php:724
|
#: pro/fields/clone.php:750
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Values will be saved as %s"
|
msgid "Values will be saved as %s"
|
||||||
msgstr "Os valores serão guardados como %s"
|
msgstr "Os valores serão guardados como %s"
|
||||||
|
|
||||||
#: pro/fields/clone.php:727
|
#: pro/fields/clone.php:753
|
||||||
msgid "Prefix Field Names"
|
msgid "Prefix Field Names"
|
||||||
msgstr "Prefixos nos nomes dos campos"
|
msgstr "Prefixos nos nomes dos campos"
|
||||||
|
|
||||||
#: pro/fields/clone.php:883
|
#: pro/fields/clone.php:875
|
||||||
|
msgid "Unknown field"
|
||||||
|
msgstr "Campo desconhecido"
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:914
|
||||||
|
msgid "Unknown field group"
|
||||||
|
msgstr "Grupo de campos desconhecido"
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:918
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "All fields from %s field group"
|
msgid "All fields from %s field group"
|
||||||
msgstr "Todos os campos do grupo de campos %s"
|
msgstr "Todos os campos do grupo de campos %s"
|
||||||
|
|
@ -2708,7 +2725,7 @@ msgstr "Adicionar layout"
|
||||||
msgid "Remove layout"
|
msgid "Remove layout"
|
||||||
msgstr "Remover layout"
|
msgstr "Remover layout"
|
||||||
|
|
||||||
#: pro/fields/flexible-content.php:356 pro/fields/repeater.php:304
|
#: pro/fields/flexible-content.php:356 pro/fields/repeater.php:313
|
||||||
msgid "Click to toggle"
|
msgid "Click to toggle"
|
||||||
msgstr "Clique para alternar"
|
msgstr "Clique para alternar"
|
||||||
|
|
||||||
|
|
@ -2740,7 +2757,7 @@ msgstr "Mín"
|
||||||
msgid "Max"
|
msgid "Max"
|
||||||
msgstr "Máx"
|
msgstr "Máx"
|
||||||
|
|
||||||
#: pro/fields/flexible-content.php:612 pro/fields/repeater.php:475
|
#: pro/fields/flexible-content.php:612 pro/fields/repeater.php:484
|
||||||
msgid "Button Label"
|
msgid "Button Label"
|
||||||
msgstr "Legenda do botão"
|
msgstr "Legenda do botão"
|
||||||
|
|
||||||
|
|
@ -2840,31 +2857,31 @@ msgstr "Mínimo de linhas alcançado ({min} linhas)"
|
||||||
msgid "Maximum rows reached ({max} rows)"
|
msgid "Maximum rows reached ({max} rows)"
|
||||||
msgstr "Máximo de linhas alcançado ({max} linhas)"
|
msgstr "Máximo de linhas alcançado ({max} linhas)"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:349
|
#: pro/fields/repeater.php:358
|
||||||
msgid "Add row"
|
msgid "Add row"
|
||||||
msgstr "Adicionar linha"
|
msgstr "Adicionar linha"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:350
|
#: pro/fields/repeater.php:359
|
||||||
msgid "Remove row"
|
msgid "Remove row"
|
||||||
msgstr "Remover linha"
|
msgstr "Remover linha"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:398
|
#: pro/fields/repeater.php:407
|
||||||
msgid "Sub Fields"
|
msgid "Sub Fields"
|
||||||
msgstr "Subcampos"
|
msgstr "Subcampos"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:428
|
#: pro/fields/repeater.php:437
|
||||||
msgid "Collapsed"
|
msgid "Collapsed"
|
||||||
msgstr "Minimizado"
|
msgstr "Minimizado"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:429
|
#: pro/fields/repeater.php:438
|
||||||
msgid "Select a sub field to show when row is collapsed"
|
msgid "Select a sub field to show when row is collapsed"
|
||||||
msgstr "Seleccione o subcampo a mostrar ao minimizar a linha."
|
msgstr "Seleccione o subcampo a mostrar ao minimizar a linha."
|
||||||
|
|
||||||
#: pro/fields/repeater.php:439
|
#: pro/fields/repeater.php:448
|
||||||
msgid "Minimum Rows"
|
msgid "Minimum Rows"
|
||||||
msgstr "Mínimo de linhas"
|
msgstr "Mínimo de linhas"
|
||||||
|
|
||||||
#: pro/fields/repeater.php:449
|
#: pro/fields/repeater.php:458
|
||||||
msgid "Maximum Rows"
|
msgid "Maximum Rows"
|
||||||
msgstr "Máximo de linhas"
|
msgstr "Máximo de linhas"
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
1276
lang/acf-ru_RU.po
1276
lang/acf-ru_RU.po
File diff suppressed because it is too large
Load Diff
Binary file not shown.
3491
lang/acf-sv_SE.po
3491
lang/acf-sv_SE.po
File diff suppressed because it is too large
Load Diff
96
lang/acf.pot
96
lang/acf.pot
|
|
@ -3,7 +3,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Advanced Custom Fields\n"
|
"Project-Id-Version: Advanced Custom Fields\n"
|
||||||
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
||||||
"POT-Creation-Date: 2016-09-13 12:28+1000\n"
|
"POT-Creation-Date: 2016-09-22 11:30+1000\n"
|
||||||
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
||||||
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
||||||
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
||||||
|
|
@ -68,7 +68,7 @@ msgid "No Field Groups found in Trash"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
|
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
|
||||||
#: admin/field-groups.php:528 pro/fields/clone.php:684
|
#: admin/field-groups.php:528 pro/fields/clone.php:688
|
||||||
msgid "Fields"
|
msgid "Fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -332,7 +332,7 @@ msgstr[1] ""
|
||||||
msgid "Sync available"
|
msgid "Sync available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: admin/field-groups.php:525 api/api-template.php:1041
|
#: admin/field-groups.php:525 api/api-template.php:1039
|
||||||
#: pro/fields/gallery.php:370
|
#: pro/fields/gallery.php:370
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -509,9 +509,9 @@ msgstr ""
|
||||||
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
#: fields/select.php:483 fields/select.php:497 fields/select.php:511
|
||||||
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
#: fields/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
|
||||||
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
|
||||||
#: fields/user.php:413 fields/wysiwyg.php:422
|
#: fields/user.php:413 fields/wysiwyg.php:464
|
||||||
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:738
|
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
|
||||||
#: pro/fields/clone.php:756
|
#: pro/fields/clone.php:760
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -523,9 +523,9 @@ msgstr ""
|
||||||
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
#: fields/select.php:484 fields/select.php:498 fields/select.php:512
|
||||||
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
#: fields/tab.php:131 fields/taxonomy.php:700 fields/taxonomy.php:786
|
||||||
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
#: fields/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
|
||||||
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:423
|
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
|
||||||
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:739
|
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
|
||||||
#: pro/fields/clone.php:757
|
#: pro/fields/clone.php:761
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1298,7 +1298,7 @@ msgstr ""
|
||||||
msgid "Full Size"
|
msgid "Full Size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: api/api-helpers.php:1213 api/api-helpers.php:1776 pro/fields/clone.php:871
|
#: api/api-helpers.php:1213 api/api-helpers.php:1776 pro/fields/clone.php:879
|
||||||
msgid "(no title)"
|
msgid "(no title)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1342,24 +1342,24 @@ msgstr ""
|
||||||
msgid "File type must be %s."
|
msgid "File type must be %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: api/api-template.php:1050 core/field.php:133
|
#: api/api-template.php:1048 core/field.php:133
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: api/api-template.php:1058
|
#: api/api-template.php:1056
|
||||||
msgid "Validate Email"
|
msgid "Validate Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: api/api-template.php:1108
|
#: api/api-template.php:1106
|
||||||
msgid "Spam Detected"
|
msgid "Spam Detected"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: api/api-template.php:1311 pro/api/api-options-page.php:50
|
#: api/api-template.php:1309 pro/api/api-options-page.php:50
|
||||||
#: pro/fields/gallery.php:588
|
#: pro/fields/gallery.php:588
|
||||||
msgid "Update"
|
msgid "Update"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: api/api-template.php:1312
|
#: api/api-template.php:1310
|
||||||
msgid "Post updated"
|
msgid "Post updated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1380,7 +1380,7 @@ msgid "jQuery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
#: core/field.php:137 fields/checkbox.php:224 fields/radio.php:293
|
||||||
#: pro/fields/clone.php:714 pro/fields/flexible-content.php:495
|
#: pro/fields/clone.php:718 pro/fields/flexible-content.php:495
|
||||||
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
|
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
|
||||||
msgid "Layout"
|
msgid "Layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
@ -1466,7 +1466,7 @@ msgstr ""
|
||||||
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:133
|
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:133
|
||||||
#: fields/number.php:145 fields/radio.php:284 fields/select.php:455
|
#: fields/number.php:145 fields/radio.php:284 fields/select.php:455
|
||||||
#: fields/text.php:142 fields/textarea.php:139 fields/true_false.php:115
|
#: fields/text.php:142 fields/textarea.php:139 fields/true_false.php:115
|
||||||
#: fields/url.php:114 fields/wysiwyg.php:383
|
#: fields/url.php:114 fields/wysiwyg.php:425
|
||||||
msgid "Default Value"
|
msgid "Default Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -1667,7 +1667,7 @@ msgstr ""
|
||||||
|
|
||||||
#: fields/email.php:134 fields/number.php:146 fields/radio.php:285
|
#: fields/email.php:134 fields/number.php:146 fields/radio.php:285
|
||||||
#: fields/text.php:143 fields/textarea.php:140 fields/url.php:115
|
#: fields/text.php:143 fields/textarea.php:140 fields/url.php:115
|
||||||
#: fields/wysiwyg.php:384
|
#: fields/wysiwyg.php:426
|
||||||
msgid "Appears when creating a new post"
|
msgid "Appears when creating a new post"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2341,40 +2341,40 @@ msgstr ""
|
||||||
msgid "All user roles"
|
msgid "All user roles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:37
|
#: fields/wysiwyg.php:36
|
||||||
msgid "Wysiwyg Editor"
|
msgid "Wysiwyg Editor"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:335
|
#: fields/wysiwyg.php:377
|
||||||
msgid "Visual"
|
msgid "Visual"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:336
|
#: fields/wysiwyg.php:378
|
||||||
msgctxt "Name for the Text editor tab (formerly HTML)"
|
msgctxt "Name for the Text editor tab (formerly HTML)"
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:392
|
#: fields/wysiwyg.php:434
|
||||||
msgid "Tabs"
|
msgid "Tabs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:397
|
#: fields/wysiwyg.php:439
|
||||||
msgid "Visual & Text"
|
msgid "Visual & Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:398
|
#: fields/wysiwyg.php:440
|
||||||
msgid "Visual Only"
|
msgid "Visual Only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:399
|
#: fields/wysiwyg.php:441
|
||||||
msgid "Text Only"
|
msgid "Text Only"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:406
|
#: fields/wysiwyg.php:448
|
||||||
msgid "Toolbar"
|
msgid "Toolbar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: fields/wysiwyg.php:416
|
#: fields/wysiwyg.php:458
|
||||||
msgid "Show Media Upload Buttons?"
|
msgid "Show Media Upload Buttons?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
@ -2486,6 +2486,12 @@ msgstr ""
|
||||||
msgid "Options"
|
msgid "Options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: pro/api/api-pro.php:328
|
||||||
|
msgid ""
|
||||||
|
"Error validating license URL (website does not match). Please re-activate "
|
||||||
|
"your license"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: pro/core/updates.php:206
|
#: pro/core/updates.php:206
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
|
|
@ -2499,64 +2505,72 @@ msgctxt "noun"
|
||||||
msgid "Clone"
|
msgid "Clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:685
|
#: pro/fields/clone.php:689
|
||||||
msgid "Select one or more fields you wish to clone"
|
msgid "Select one or more fields you wish to clone"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:700
|
#: pro/fields/clone.php:704
|
||||||
msgid "Display"
|
msgid "Display"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:701
|
#: pro/fields/clone.php:705
|
||||||
msgid "Specify the style used to render the clone field"
|
msgid "Specify the style used to render the clone field"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:706
|
#: pro/fields/clone.php:710
|
||||||
msgid "Group (displays selected fields in a group within this field)"
|
msgid "Group (displays selected fields in a group within this field)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:707
|
#: pro/fields/clone.php:711
|
||||||
msgid "Seamless (replaces this field with selected fields)"
|
msgid "Seamless (replaces this field with selected fields)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:715
|
#: pro/fields/clone.php:719
|
||||||
msgid "Specify the style used to render the selected fields"
|
msgid "Specify the style used to render the selected fields"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:720 pro/fields/flexible-content.php:555
|
#: pro/fields/clone.php:724 pro/fields/flexible-content.php:555
|
||||||
#: pro/fields/repeater.php:476
|
#: pro/fields/repeater.php:476
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:721 pro/fields/flexible-content.php:554
|
#: pro/fields/clone.php:725 pro/fields/flexible-content.php:554
|
||||||
#: pro/fields/repeater.php:475
|
#: pro/fields/repeater.php:475
|
||||||
msgid "Table"
|
msgid "Table"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:722 pro/fields/flexible-content.php:556
|
#: pro/fields/clone.php:726 pro/fields/flexible-content.php:556
|
||||||
#: pro/fields/repeater.php:477
|
#: pro/fields/repeater.php:477
|
||||||
msgid "Row"
|
msgid "Row"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:728
|
#: pro/fields/clone.php:732
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Labels will be displayed as %s"
|
msgid "Labels will be displayed as %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:731
|
#: pro/fields/clone.php:735
|
||||||
msgid "Prefix Field Labels"
|
msgid "Prefix Field Labels"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:746
|
#: pro/fields/clone.php:750
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Values will be saved as %s"
|
msgid "Values will be saved as %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:749
|
#: pro/fields/clone.php:753
|
||||||
msgid "Prefix Field Names"
|
msgid "Prefix Field Names"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pro/fields/clone.php:905
|
#: pro/fields/clone.php:875
|
||||||
|
msgid "Unknown field"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:914
|
||||||
|
msgid "Unknown field group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pro/fields/clone.php:918
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "All fields from %s field group"
|
msgid "All fields from %s field group"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,7 @@ class acf_settings_updates {
|
||||||
// license
|
// license
|
||||||
if( acf_pro_is_license_active() ) {
|
if( acf_pro_is_license_active() ) {
|
||||||
|
|
||||||
$this->view['license'] = acf_pro_get_license();
|
$this->view['license'] = acf_pro_get_license_key();
|
||||||
$this->view['active'] = 1;
|
$this->view['active'] = 1;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -299,7 +299,7 @@ class acf_settings_updates {
|
||||||
// connect
|
// connect
|
||||||
$args = array(
|
$args = array(
|
||||||
'_nonce' => wp_create_nonce('deactivate_pro_licence'),
|
'_nonce' => wp_create_nonce('deactivate_pro_licence'),
|
||||||
'acf_license' => acf_pro_get_license(),
|
'acf_license' => acf_pro_get_license_key(),
|
||||||
'wp_url' => home_url(),
|
'wp_url' => home_url(),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -227,66 +227,143 @@ function acf_pro_get_remote_info() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function acf_pro_is_license_active() {
|
/*
|
||||||
|
* acf_pro_get_license
|
||||||
// vars
|
*
|
||||||
$data = acf_pro_get_license( true );
|
* This function will return the license
|
||||||
$url = home_url();
|
*
|
||||||
|
* @type function
|
||||||
if( !empty($data['url']) && !empty($data['key']) && $data['url'] == $url ) {
|
* @date 20/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
return true;
|
*
|
||||||
|
* @param n/a
|
||||||
}
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
return false;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
function acf_pro_get_license( $all = false ) {
|
function acf_pro_get_license() {
|
||||||
|
|
||||||
// get option
|
// get option
|
||||||
$data = get_option('acf_pro_license');
|
$license = get_option('acf_pro_license');
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if no value
|
||||||
|
if( !$license ) return false;
|
||||||
|
|
||||||
|
|
||||||
// decode
|
// decode
|
||||||
$data = base64_decode($data);
|
$license = maybe_unserialize(base64_decode($license));
|
||||||
|
|
||||||
|
|
||||||
// attempt deserialize
|
// bail early if corrupt
|
||||||
if( is_serialized( $data ) )
|
if( !$license ) return false;
|
||||||
{
|
|
||||||
$data = maybe_unserialize($data);
|
|
||||||
|
// return
|
||||||
|
return $license;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* acf_pro_get_license_key
|
||||||
|
*
|
||||||
|
* This function will return the license key
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 20/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param n/a
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
|
function acf_pro_get_license_key() {
|
||||||
|
|
||||||
|
// vars
|
||||||
|
$license = acf_pro_get_license();
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if empty
|
||||||
|
if( !$license ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// return
|
||||||
|
return $license['key'];
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* acf_pro_is_license_active
|
||||||
|
*
|
||||||
|
* This function will return true if the current license is active
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 20/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param n/a
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
|
function acf_pro_is_license_active() {
|
||||||
|
|
||||||
|
// vars
|
||||||
|
$license = acf_pro_get_license();
|
||||||
|
$url = home_url();
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if empty
|
||||||
|
if( !$license ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if no key
|
||||||
|
if( !$license['key'] ) return false;
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if url does not match
|
||||||
|
if( $license['url'] !== $url ) {
|
||||||
|
|
||||||
// $all
|
// add notice
|
||||||
if( !$all )
|
acf_add_admin_notice( __('Error validating license URL (website does not match). Please re-activate your license','acf'), 'error' );
|
||||||
{
|
return false;
|
||||||
$data = $data['key'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return $data;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// return
|
// return
|
||||||
return false;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* acf_pro_update_license
|
||||||
|
*
|
||||||
|
* This function will update the DB license
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 20/09/2016
|
||||||
|
* @since 5.4.0
|
||||||
|
*
|
||||||
|
* @param $key (string)
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
function acf_pro_update_license( $license ) {
|
function acf_pro_update_license( $key = '' ) {
|
||||||
|
|
||||||
|
// vars
|
||||||
$save = array(
|
$save = array(
|
||||||
'key' => $license,
|
'key' => $key,
|
||||||
'url' => home_url()
|
'url' => home_url()
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
$save = maybe_serialize($save);
|
// encode
|
||||||
$save = base64_encode($save);
|
$save = base64_encode(maybe_serialize($save));
|
||||||
|
|
||||||
|
|
||||||
|
// update
|
||||||
return update_option('acf_pro_license', $save);
|
return update_option('acf_pro_license', $save);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -137,7 +137,7 @@
|
||||||
duplicate_field: function( $el ) {
|
duplicate_field: function( $el ) {
|
||||||
|
|
||||||
// vars
|
// vars
|
||||||
var $fields = $el.find('.acf-field-object').not('[data-id="acfcloneindex"]');
|
var $fields = $el.find('.acf-field-object');
|
||||||
|
|
||||||
|
|
||||||
// bail early if $fields are empty
|
// bail early if $fields are empty
|
||||||
|
|
@ -302,7 +302,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
$fields.children('.acf-field-object').not('[data-id="acfcloneindex"]').each(function(){
|
$fields.children('.acf-field-object').each(function(){
|
||||||
|
|
||||||
// vars
|
// vars
|
||||||
var $field = $(this);
|
var $field = $(this);
|
||||||
|
|
@ -527,23 +527,23 @@
|
||||||
_add: function( $el ){
|
_add: function( $el ){
|
||||||
|
|
||||||
// duplicate
|
// duplicate
|
||||||
$el2 = acf.duplicate( $el );
|
var $el2 = acf.duplicate({
|
||||||
|
$el: $el,
|
||||||
|
after: function( $el, $el2 ){
|
||||||
// remove sub fields
|
|
||||||
$el2.find('.acf-field-object').not('[data-id="acfcloneindex"]').remove();
|
// remove sub fields
|
||||||
|
$el2.find('.acf-field-object').remove();
|
||||||
|
|
||||||
// show add new message
|
|
||||||
$el2.find('.no-fields-message').show();
|
// show add new message
|
||||||
|
$el2.find('.no-fields-message').show();
|
||||||
|
|
||||||
// reset layout meta values
|
|
||||||
$el2.find('.acf-fc-meta input').val('');
|
// reset layout meta values
|
||||||
|
$el2.find('.acf-fc-meta input').val('');
|
||||||
|
|
||||||
// add new tr
|
}
|
||||||
$el.after( $el2 );
|
});
|
||||||
|
|
||||||
|
|
||||||
// render layout
|
// render layout
|
||||||
|
|
@ -561,13 +561,9 @@
|
||||||
$el2 = acf.duplicate( $el );
|
$el2 = acf.duplicate( $el );
|
||||||
|
|
||||||
|
|
||||||
// add new tr
|
|
||||||
$el.after( $el2 );
|
|
||||||
|
|
||||||
|
|
||||||
// fire action 'duplicate_field' and allow acf.pro logic to clean sub fields
|
// fire action 'duplicate_field' and allow acf.pro logic to clean sub fields
|
||||||
acf.do_action('duplicate_field', $el2);
|
acf.do_action('duplicate_field', $el2);
|
||||||
|
|
||||||
|
|
||||||
// render layout
|
// render layout
|
||||||
this.render_layout( $el2 );
|
this.render_layout( $el2 );
|
||||||
|
|
@ -591,7 +587,7 @@
|
||||||
|
|
||||||
|
|
||||||
// delete fields
|
// delete fields
|
||||||
$el.find('.acf-field-object').not('[data-id="acfcloneindex"]').each(function(){
|
$el.find('.acf-field-object').each(function(){
|
||||||
|
|
||||||
// delete without animation
|
// delete without animation
|
||||||
acf.field_group.delete_field( $(this), false );
|
acf.field_group.delete_field( $(this), false );
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -633,19 +633,40 @@
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
render_layout: function( $layout ){
|
render_layout_title: function( $layout ){
|
||||||
|
|
||||||
// update order number
|
// vars
|
||||||
|
var data = acf.serialize( $layout );
|
||||||
|
|
||||||
|
|
||||||
|
// append
|
||||||
|
$.extend(data, {
|
||||||
|
action: 'acf/fields/flexible_content/layout_title',
|
||||||
|
field_key: this.$field.data('key'),
|
||||||
|
post_id: acf.get('post_id'),
|
||||||
|
i: $layout.index(),
|
||||||
|
layout: $layout.data('layout'),
|
||||||
|
});
|
||||||
|
|
||||||
// update text
|
|
||||||
/*
|
|
||||||
var data = acf.serialize_form($layout);
|
|
||||||
|
|
||||||
console.log( data );
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
// ajax get title HTML
|
||||||
|
$.ajax({
|
||||||
|
url : acf.get('ajaxurl'),
|
||||||
|
dataType : 'html',
|
||||||
|
type : 'post',
|
||||||
|
data : data,
|
||||||
|
success: function( html ){
|
||||||
|
|
||||||
|
// bail early if no html
|
||||||
|
if( !html ) return;
|
||||||
|
|
||||||
|
|
||||||
|
// update html
|
||||||
|
$layout.find('> .acf-fc-layout-handle').html( html );
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
validate_add: function( layout ){
|
validate_add: function( layout ){
|
||||||
|
|
@ -1128,13 +1149,15 @@
|
||||||
|
|
||||||
$layout.removeClass('-collapsed');
|
$layout.removeClass('-collapsed');
|
||||||
|
|
||||||
acf.do_action('refresh', $layout);
|
acf.do_action('show', $layout, 'collapse');
|
||||||
|
|
||||||
// close
|
// close
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
$layout.addClass('-collapsed');
|
$layout.addClass('-collapsed');
|
||||||
|
|
||||||
|
acf.do_action('hide', $layout, 'collapse');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1142,38 +1165,8 @@
|
||||||
this.sync();
|
this.sync();
|
||||||
|
|
||||||
|
|
||||||
// vars
|
// render
|
||||||
var data = acf.serialize( $layout );
|
this.render_layout_title( $layout );
|
||||||
|
|
||||||
|
|
||||||
// append
|
|
||||||
$.extend(data, {
|
|
||||||
action: 'acf/fields/flexible_content/layout_title',
|
|
||||||
field_key: this.$field.data('key'),
|
|
||||||
post_id: acf.get('post_id'),
|
|
||||||
i: $layout.index(),
|
|
||||||
layout: $layout.data('layout'),
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
// ajax get title HTML
|
|
||||||
$.ajax({
|
|
||||||
url : acf.get('ajaxurl'),
|
|
||||||
dataType : 'html',
|
|
||||||
type : 'post',
|
|
||||||
data : data,
|
|
||||||
success: function( html ){
|
|
||||||
|
|
||||||
// bail early if no html
|
|
||||||
if( !html ) return;
|
|
||||||
|
|
||||||
|
|
||||||
// update html
|
|
||||||
$layout.find('> .acf-fc-layout-handle').html( html );
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1197,7 +1190,6 @@
|
||||||
actions: {
|
actions: {
|
||||||
'ready': 'initialize',
|
'ready': 'initialize',
|
||||||
'append': 'initialize',
|
'append': 'initialize',
|
||||||
'submit': 'close_sidebar',
|
|
||||||
'show': 'resize'
|
'show': 'resize'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -2357,6 +2349,52 @@
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* acf_gallery_manager
|
||||||
|
*
|
||||||
|
* Priveds some global functionality for the gallery field
|
||||||
|
*
|
||||||
|
* @type function
|
||||||
|
* @date 25/11/2015
|
||||||
|
* @since 5.3.2
|
||||||
|
*
|
||||||
|
* @param n/a
|
||||||
|
* @return n/a
|
||||||
|
*/
|
||||||
|
|
||||||
|
var acf_gallery_manager = acf.model.extend({
|
||||||
|
|
||||||
|
actions: {
|
||||||
|
'validation_begin': 'validation_begin',
|
||||||
|
'validation_failure': 'validation_failure'
|
||||||
|
},
|
||||||
|
|
||||||
|
validation_begin: function(){
|
||||||
|
|
||||||
|
// lock all gallery forms
|
||||||
|
$('.acf-gallery-side-data').each(function(){
|
||||||
|
|
||||||
|
acf.disable_form( $(this), 'gallery' );
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
validation_failure: function(){
|
||||||
|
|
||||||
|
// lock all gallery forms
|
||||||
|
$('.acf-gallery-side-data').each(function(){
|
||||||
|
|
||||||
|
acf.enable_form( $(this), 'gallery' );
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
|
||||||
// @codekit-prepend "../js/acf-pro.js";
|
// @codekit-prepend "../js/acf-pro.js";
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -165,7 +165,7 @@ class acf_pro_updates {
|
||||||
if( acf_pro_is_license_active() ) {
|
if( acf_pro_is_license_active() ) {
|
||||||
|
|
||||||
$obj->package = acf_pro_get_remote_url('download', array(
|
$obj->package = acf_pro_get_remote_url('download', array(
|
||||||
'k' => acf_pro_get_license(),
|
'k' => acf_pro_get_license_key(),
|
||||||
'wp_url' => home_url(),
|
'wp_url' => home_url(),
|
||||||
'acf_version' => acf_get_setting('version'),
|
'acf_version' => acf_get_setting('version'),
|
||||||
'wp_version' => get_bloginfo('version'),
|
'wp_version' => get_bloginfo('version'),
|
||||||
|
|
|
||||||
|
|
@ -223,6 +223,10 @@ class acf_field_clone extends acf_field {
|
||||||
$field_group_fields = acf_get_fields($field_group);
|
$field_group_fields = acf_get_fields($field_group);
|
||||||
|
|
||||||
|
|
||||||
|
// bail early if no field
|
||||||
|
if( empty($field_group_fields) ) continue;
|
||||||
|
|
||||||
|
|
||||||
// append
|
// append
|
||||||
$fields = array_merge($fields, $field_group_fields);
|
$fields = array_merge($fields, $field_group_fields);
|
||||||
|
|
||||||
|
|
@ -867,6 +871,10 @@ class acf_field_clone extends acf_field {
|
||||||
|
|
||||||
function get_clone_setting_field_choice( $field ) {
|
function get_clone_setting_field_choice( $field ) {
|
||||||
|
|
||||||
|
// bail early if no field
|
||||||
|
if( !$field ) return __('Unknown field', 'acf');
|
||||||
|
|
||||||
|
|
||||||
// title
|
// title
|
||||||
$title = $field['label'] ? $field['label'] : __('(no title)', 'acf');
|
$title = $field['label'] ? $field['label'] : __('(no title)', 'acf');
|
||||||
|
|
||||||
|
|
@ -902,6 +910,11 @@ class acf_field_clone extends acf_field {
|
||||||
|
|
||||||
function get_clone_setting_group_choice( $field_group ) {
|
function get_clone_setting_group_choice( $field_group ) {
|
||||||
|
|
||||||
|
// bail early if no field group
|
||||||
|
if( !$field_group ) return __('Unknown field group', 'acf');
|
||||||
|
|
||||||
|
|
||||||
|
// return
|
||||||
return sprintf( __('All fields from %s field group', 'acf'), $field_group['title'] );
|
return sprintf( __('All fields from %s field group', 'acf'), $field_group['title'] );
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1065,7 +1065,7 @@ class acf_field_flexible_content extends acf_field {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// save false for empty value
|
// save false for empty value
|
||||||
if( empty($order) ) {
|
if( empty($order) ) {
|
||||||
|
|
|
||||||
13
readme.txt
13
readme.txt
|
|
@ -2,7 +2,7 @@
|
||||||
Contributors: elliotcondon
|
Contributors: elliotcondon
|
||||||
Tags: acf, advanced, custom, field, fields, custom field, custom fields, simple fields, magic fields, more fields, repeater, edit
|
Tags: acf, advanced, custom, field, fields, custom field, custom fields, simple fields, magic fields, more fields, repeater, edit
|
||||||
Requires at least: 3.6.0
|
Requires at least: 3.6.0
|
||||||
Tested up to: 4.6.0
|
Tested up to: 4.7.0
|
||||||
License: GPLv2 or later
|
License: GPLv2 or later
|
||||||
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
||||||
|
|
||||||
|
|
@ -106,8 +106,15 @@ http://support.advancedcustomfields.com/
|
||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
= 5.4.6-RC1 =
|
= 5.4.6 =
|
||||||
* Flexible content field: Fixed bug where radio input values were lost when adding/duplicating a layout
|
* Gallery field: Fixed bug where open sidebar fields were saved to post
|
||||||
|
* Flexible Content field: Fixed bug causing Google map render issue within collapsed layout
|
||||||
|
* Flexible Content field: Fixed bug during 'duplicate layout' where radio input values were lost
|
||||||
|
* API: Fixed bug causing `get_row(true)` to return incorrect values
|
||||||
|
* Core: Fixed bug where preview values did not load for a draft post
|
||||||
|
* Core: Added notice when PRO license fails to validate URL
|
||||||
|
* Core: Fixed bug where conditional logic would incorrectly enable select elements
|
||||||
|
* Core: Minor fixes and improvements
|
||||||
|
|
||||||
= 5.4.5 =
|
= 5.4.5 =
|
||||||
* API: Fixed bug in `acf_form()` where AJAX validation ignored 'post_title'
|
* API: Fixed bug in `acf_form()` where AJAX validation ignored 'post_title'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue