Merge branch 'release/5.4.6'

This commit is contained in:
I 2016-09-28 09:45:16 +02:00
commit 988a0d425d
38 changed files with 6162 additions and 4644 deletions

View File

@ -3,7 +3,7 @@
Plugin Name: Advanced Custom Fields PRO
Plugin URI: https://www.advancedcustomfields.com/
Description: Customise WordPress with powerful, professional and intuitive fields
Version: 5.4.5
Version: 5.4.6
Author: Elliot Condon
Author URI: http://www.elliotcondon.com/
Copyright: Elliot Condon
@ -58,7 +58,7 @@ class acf {
// basic
'name' => __('Advanced Custom Fields', 'acf'),
'version' => '5.4.5',
'version' => '5.4.6',
// urls
'basename' => plugin_basename( __FILE__ ),

View File

@ -2775,19 +2775,11 @@ function acf_update_user_setting( $name, $value ) {
// 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
if( isset($settings[0]) ) {
$settings = $settings[0];
} else {
$settings = array();
}
// ensure array
$settings = acf_get_array($settings);
// delete setting (allow 0 to save)
@ -2829,19 +2821,19 @@ function acf_get_user_setting( $name = '', $default = false ) {
// 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
if( !isset($settings[0][$name]) ) {
return $default;
}
if( !isset($settings[$name]) ) return $default;
// return
return $settings[0][$name];
return $settings[$name];
}
@ -4839,6 +4831,81 @@ function acf_is_associative_array( $array ) {
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');

View File

@ -602,16 +602,14 @@ function get_row( $format = false ) {
// format
if( $format ) {
// temp wrap value in array
$value = array( $value );
// format entire 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)
$value = acf_format_value( $value, $loop['post_id'], $loop['field'] );
// extract value from array
$value = $value[0];
// get value
$value = acf_maybe_get( $value, $loop['i'] );
}

View File

@ -255,7 +255,7 @@
/* Component containers
----------------------------------*/
.acf-ui-datepicker .ui-widget {
font-family: "Open Sans", sans-serif;
font-family: inherit;
font-size: 14px;
}
.acf-ui-datepicker .ui-widget .ui-widget {
@ -265,7 +265,7 @@
.acf-ui-datepicker .ui-widget select,
.acf-ui-datepicker .ui-widget textarea,
.acf-ui-datepicker .ui-widget button {
font-family: "Open Sans", sans-serif;
font-family: inherit;
font-size: 1em;
}
.acf-ui-datepicker .ui-widget-content {

File diff suppressed because one or more lines are too long

View File

@ -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
@ -1808,22 +1981,44 @@ var acf;
* @return $el2 (jQuery)
*/
duplicate: function( $el, attr ){
duplicate: function( args ){
//console.time('duplicate');
// backwards compatibility
// - array of settings added in v5.4.6
if( typeof args.length !== 'undefined' ) args = { $el: args };
// 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
find = $el.attr(attr);
replace = acf.get_uniqid();
var $el = args.$el,
$el2;
// allow acf to modify DOM
// fixes bug where select field option is not selected
// search
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);
@ -1840,32 +2035,32 @@ var acf;
// find / replace
if( typeof find !== 'undefined' ) {
if( args.search ) {
// replcae data attribute
$el2.attr(attr, replace);
// replace data
$el2.attr('data-id', args.replace);
// 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
$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
$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');
// allow acf to modify DOM
// after
// - allow acf to modify DOM
acf.do_action('after_duplicate', $el, $el2 );
args.after.apply( this, [$el, $el2] );
// append
$el.after( $el2 );
args.append.apply( this, [$el, $el2] );
// add JS functionality
@ -3095,10 +3292,10 @@ var acf;
acf.ajax = acf.model.extend({
active: false,
actions: {
'ready': 'ready'
},
events: {
'change #page_template': '_change_template',
'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"] select': '_change_term'
},
o: {
//'post_id': 0,
//'page_template': 0,
@ -3117,7 +3313,6 @@ var acf;
//'post_taxonomy': 0,
},
xhr: null,
//timeout: null,
update: function( k, v ){
@ -3138,9 +3333,14 @@ var acf;
// update post_id
this.update('post_id', acf.get('post_id'));
// active
this.active = true;
},
/*
timeout: null,
maybe_fetch: function(){
// reference
@ -3167,6 +3367,10 @@ var acf;
fetch: function(){
// bail early if not active
if( !this.active ) return;
// bail early if no ajax
if( !acf.get('ajax') ) return;
@ -3902,6 +4106,11 @@ var acf;
$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"
// 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
@ -7526,8 +7735,7 @@ var acf;
actions: {
'ready': 'initialize',
'append': 'initialize',
//'show': 'show'
'append': 'initialize'
},
events: {
@ -10498,6 +10706,10 @@ var acf;
var self = this;
// action for 3rd party
acf.do_action('validation_begin');
// vars
var data = acf.serialize_form($form);
@ -10567,11 +10779,9 @@ var acf;
// bail early if validationw as not valid
if( !this.valid ) {
return;
}
if( !this.valid ) return;
// update ignore (allow form submit to not run validation)
@ -10649,12 +10859,20 @@ var acf;
this.valid = true;
// action for 3rd party
acf.do_action('validation_success');
// end function
return;
}
// action for 3rd party
acf.do_action('validation_failure');
// set valid (prevents fetch_complete from runing)
this.valid = false;

File diff suppressed because one or more lines are too long

View File

@ -21,7 +21,6 @@ class acf_revisions {
function __construct() {
// 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 );
@ -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
*
@ -249,12 +211,25 @@ class acf_revisions {
// 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)
array_multisort($order, $append);
// remove prefix
$append = acf_remove_array_key_prefix($append, $prefix);
// append
$fields = array_merge($fields, $append);
$fields = $fields + $append;
}
@ -367,6 +342,35 @@ acf()->revisions = new acf_revisions();
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
*

View File

@ -123,6 +123,10 @@ class acf_field_taxonomy extends acf_field {
if( !$field ) return false;
// bail early if taxonomy does not exist
if( !taxonomy_exists($field['taxonomy']) ) return false;
// vars
$results = array();
$args = array();

View File

@ -15,7 +15,6 @@ if( ! class_exists('acf_field_wysiwyg') ) :
class acf_field_wysiwyg extends acf_field {
var $exists = 0;
/*
* __construct
@ -44,30 +43,10 @@ class acf_field_wysiwyg extends acf_field {
);
// Create an acf version of the_content filter (acf_the_content)
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 );
}
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);
// add acf_the_content filters
$this->add_filters();
// actions
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
*

View File

@ -505,19 +505,11 @@ if( typeof acf !== 'undefined' ) {
// check post type
if( in_array($post->post_type, $reject) ) {
$allow = false;
}
if( in_array($post->post_type, $reject) ) $allow = false;
// allow preview
if( $post->post_type == 'revision' && $wp_preview === 'dopreview' ) {
$allow = true;
}
if( $post->post_type == 'revision' && $wp_preview == 'dopreview' ) $allow = true;
// return
@ -550,7 +542,7 @@ if( typeof acf !== 'undefined' ) {
// validate for published post (allow draft to save without validation)
if( get_post_status($post_id) == 'publish' ) {
if( $post->post_status == 'publish' ) {
// show errors
acf_validate_save_post( true );
@ -560,6 +552,14 @@ if( typeof acf !== 'undefined' ) {
// save
acf_save_post( $post_id );
// save revision
if( post_type_supports($post->post_type, 'revisions') ) {
acf_save_post_revision( $post_id );
}
// return

Binary file not shown.

View File

@ -1,9 +1,9 @@
msgid ""
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"
"POT-Creation-Date: 2016-07-29 00:27+0200\n"
"PO-Revision-Date: 2016-07-29 00:42+0200\n"
"POT-Creation-Date: 2016-09-22 09:01+0200\n"
"PO-Revision-Date: 2016-09-22 09:16+0200\n"
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
"Language: de_DE\n"
@ -11,7 +11,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.8.8\n"
"X-Generator: Poedit 1.8.9\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
@ -28,109 +28,109 @@ msgid "Advanced Custom Fields"
msgstr "Advanced Custom Fields"
# @ acf
#: acf.php:271 admin/admin.php:61
#: acf.php:273 admin/admin.php:61
msgid "Field Groups"
msgstr "Feld-Gruppen"
# @ acf
#: acf.php:272
#: acf.php:274
msgid "Field Group"
msgstr "Feld-Gruppe"
# @ 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
msgid "Add New"
msgstr "Erstellen"
# @ acf
#: acf.php:274
#: acf.php:276
msgid "Add New Field Group"
msgstr "Neue Feld-Gruppe erstellen"
# @ acf
#: acf.php:275
#: acf.php:277
msgid "Edit Field Group"
msgstr "Feld-Gruppe bearbeiten"
# @ acf
#: acf.php:276
#: acf.php:278
msgid "New Field Group"
msgstr "Neue Feld-Gruppe"
# @ acf
#: acf.php:277
#: acf.php:279
msgid "View Field Group"
msgstr "Feld-Gruppe anzeigen"
# @ acf
#: acf.php:278
#: acf.php:280
msgid "Search Field Groups"
msgstr "Feld-Gruppen suchen"
# @ acf
#: acf.php:279
#: acf.php:281
msgid "No Field Groups found"
msgstr "Keine Feld-Gruppen gefunden"
# @ acf
#: acf.php:280
#: acf.php:282
msgid "No Field Groups found in Trash"
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
# @ acf
#: acf.php:303 admin/field-group.php:182 admin/field-group.php:280
#: admin/field-groups.php:528 pro/fields/clone.php:662
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
#: admin/field-groups.php:528 pro/fields/clone.php:688
msgid "Fields"
msgstr "Felder"
# @ acf
#: acf.php:304
#: acf.php:306
msgid "Field"
msgstr "Feld"
# @ acf
#: acf.php:306
#: acf.php:308
msgid "Add New Field"
msgstr "Feld hinzufügen"
# @ acf
#: acf.php:307
#: acf.php:309
msgid "Edit Field"
msgstr "Feld bearbeiten"
# @ 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
msgid "New Field"
msgstr "Neues Feld"
# @ acf
#: acf.php:309
#: acf.php:311
msgid "View Field"
msgstr "Feld anzeigen"
# @ acf
#: acf.php:310
#: acf.php:312
msgid "Search Fields"
msgstr "Felder suchen"
# @ acf
#: acf.php:311
#: acf.php:313
msgid "No Fields found"
msgstr "Keine Felder gefunden"
# @ acf
#: acf.php:312
#: acf.php:314
msgid "No Fields found in Trash"
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
msgid "Disabled"
msgstr "Deaktiviert"
#: acf.php:356
#: acf.php:358
#, php-format
msgid "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:162
#: 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"
msgstr "oder"
@ -265,96 +265,96 @@ msgid "Active"
msgstr "Aktiviert"
# @ acf
#: admin/field-group.php:842
#: admin/field-group.php:846
msgid "Front Page"
msgstr "Startseite"
# @ acf
#: admin/field-group.php:843
#: admin/field-group.php:847
msgid "Posts Page"
msgstr "Beitrags-Seite"
# @ acf
#: admin/field-group.php:844
#: admin/field-group.php:848
msgid "Top Level Page (no parent)"
msgstr "Seite ohne übergeordnete Seiten"
# @ acf
#: admin/field-group.php:845
#: admin/field-group.php:849
msgid "Parent Page (has children)"
msgstr "Übergeordnete Seite (mit Unterseiten)"
# @ acf
#: admin/field-group.php:846
#: admin/field-group.php:850
msgid "Child Page (has parent)"
msgstr "Unterseite (mit übergeordneter Seite)"
# @ acf
#: admin/field-group.php:862
#: admin/field-group.php:866
msgid "Default Template"
msgstr "Standard-Template"
# @ acf
#: admin/field-group.php:885
#: admin/field-group.php:889
msgid "Logged in"
msgstr "ist angemeldet"
# @ acf
#: admin/field-group.php:886
#: admin/field-group.php:890
msgid "Viewing front end"
msgstr "ist im Front-End"
# @ acf
#: admin/field-group.php:887
#: admin/field-group.php:891
msgid "Viewing back end"
msgstr "ist im Back-End"
# @ acf
#: admin/field-group.php:906
#: admin/field-group.php:910
msgid "Super Admin"
msgstr "Super-Admin"
# @ acf
#: admin/field-group.php:917 admin/field-group.php:925
#: admin/field-group.php:939 admin/field-group.php:946
#: admin/field-group.php:963 admin/field-group.php:980 fields/file.php:241
#: admin/field-group.php:921 admin/field-group.php:929
#: admin/field-group.php:943 admin/field-group.php:950
#: admin/field-group.php:967 admin/field-group.php:984 fields/file.php:241
#: fields/image.php:237 pro/fields/gallery.php:676
msgid "All"
msgstr "Alle"
# @ acf
#: admin/field-group.php:926
#: admin/field-group.php:930
msgid "Add / Edit"
msgstr "Hinzufügen / Bearbeiten"
# @ acf
#: admin/field-group.php:927
#: admin/field-group.php:931
msgid "Register"
msgstr "Registrieren"
# @ acf
#: admin/field-group.php:1167
#: admin/field-group.php:1171
msgid "Move Complete."
msgstr "Verschieben erfolgreich abgeschlossen."
# @ acf
#: admin/field-group.php:1168
#: admin/field-group.php:1172
#, php-format
msgid "The %s field can now be found in the %s field group"
msgstr "Das Feld \"%s\" wurde in die %s Feld-Gruppe verschoben"
# @ acf
#: admin/field-group.php:1170
#: admin/field-group.php:1174
msgid "Close Window"
msgstr "Schließen"
# @ acf
#: admin/field-group.php:1205
#: admin/field-group.php:1209
msgid "Please select the destination for this field"
msgstr "In welche Feld-Gruppe solle dieses Feld verschoben werden"
# @ acf
#: admin/field-group.php:1212
#: admin/field-group.php:1216
msgid "Move Field"
msgstr "Feld verschieben"
@ -399,8 +399,8 @@ msgid "Sync available"
msgstr "Synchronisierung verfügbar"
# @ acf
#: admin/field-groups.php:525 api/api-template.php:1077
#: api/api-template.php:1290 pro/fields/gallery.php:370
#: admin/field-groups.php:525 api/api-template.php:1039
#: pro/fields/gallery.php:370
msgid "Title"
msgstr "Titel"
@ -493,18 +493,24 @@ msgid "Duplicate"
msgstr "Duplizieren"
# @ 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
msgid "Select %s"
msgstr "%s auswählen"
# @ acf
#: admin/field-groups.php:759
#: admin/field-groups.php:775
msgid "Synchronise field group"
msgstr "Synchronisiere Feld-Gruppe"
# @ acf
#: admin/field-groups.php:759 admin/field-groups.php:776
#: admin/field-groups.php:775 admin/field-groups.php:792
msgid "Sync"
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/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
#: fields/user.php:413 fields/wysiwyg.php:418
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:716
#: pro/fields/clone.php:734
#: fields/user.php:413 fields/wysiwyg.php:464
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
#: pro/fields/clone.php:760
msgid "Yes"
msgstr "Ja"
@ -617,9 +623,9 @@ msgstr "Ja"
#: 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/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:419
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:717
#: pro/fields/clone.php:735
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
#: pro/fields/clone.php:761
msgid "No"
msgstr "Nein"
@ -654,7 +660,7 @@ msgstr "Regel-Gruppe hinzufügen"
# @ acf
#: 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"
msgstr "Ziehen zum Sortieren"
@ -1624,101 +1630,101 @@ msgid "See what's new"
msgstr "Was ist neu"
# @ acf
#: api/api-helpers.php:944
#: api/api-helpers.php:950
msgid "Thumbnail"
msgstr "Miniaturbild"
# @ acf
#: api/api-helpers.php:945
#: api/api-helpers.php:951
msgid "Medium"
msgstr "Mittel"
# @ acf
#: api/api-helpers.php:946
#: api/api-helpers.php:952
msgid "Large"
msgstr "Groß"
# @ acf
#: api/api-helpers.php:995
#: api/api-helpers.php:1001
msgid "Full Size"
msgstr "Volle Größe"
# @ 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)"
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
msgid "Parent"
msgstr "Übergeordnet"
# @ acf
#: api/api-helpers.php:3873
#: api/api-helpers.php:3894
#, php-format
msgid "Image width must be at least %dpx."
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
# @ acf
#: api/api-helpers.php:3878
#: api/api-helpers.php:3899
#, php-format
msgid "Image width must not exceed %dpx."
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
# @ acf
#: api/api-helpers.php:3894
#: api/api-helpers.php:3915
#, php-format
msgid "Image height must be at least %dpx."
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
# @ acf
#: api/api-helpers.php:3899
#: api/api-helpers.php:3920
#, php-format
msgid "Image height must not exceed %dpx."
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
# @ acf
#: api/api-helpers.php:3917
#: api/api-helpers.php:3938
#, php-format
msgid "File size must be at least %s."
msgstr "Die Dateigröße muss mindestens %s sein."
# @ acf
#: api/api-helpers.php:3922
#: api/api-helpers.php:3943
#, php-format
msgid "File size must must not exceed %s."
msgstr "Die Dateigröße darf %s nicht überschreiten."
# @ acf
#: api/api-helpers.php:3956
#: api/api-helpers.php:3977
#, php-format
msgid "File type must be %s."
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"
msgstr "Spam entdeckt"
# @ 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
msgid "Update"
msgstr "Aktualisieren"
# @ acf
#: api/api-template.php:1236
#: api/api-template.php:1310
msgid "Post updated"
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
#: core/field.php:132
msgid "Basic"
@ -1741,8 +1747,8 @@ msgstr "jQuery"
# @ acf
#: 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/flexible-content.php:544 pro/fields/repeater.php:459
#: pro/fields/clone.php:718 pro/fields/flexible-content.php:495
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
msgid "Layout"
msgstr "Layout"
@ -1762,7 +1768,7 @@ msgid "Validation successful"
msgstr "Überprüfung erfolgreich"
# @ 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"
msgstr "Überprüfung fehlgeschlagen"
@ -1803,7 +1809,7 @@ msgid "Uploaded to this post"
msgstr "Zu diesem Beitrag hochgeladen"
# @ acf
#: core/validation.php:207
#: core/validation.php:211
#, php-format
msgid "%s value is required"
msgstr "%s Wert ist notwendig"
@ -1841,10 +1847,10 @@ msgid "red : Red"
msgstr "rot : Rot"
# @ acf
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:124
#: fields/number.php:150 fields/radio.php:284 fields/select.php:455
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
#: fields/url.php:117 fields/wysiwyg.php:379
#: 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/text.php:142 fields/textarea.php:139 fields/true_false.php:115
#: fields/url.php:114 fields/wysiwyg.php:425
msgid "Default Value"
msgstr "Standardwert"
@ -2061,45 +2067,45 @@ msgid "Email"
msgstr "E-Mail"
# @ acf
#: fields/email.php:125 fields/number.php:151 fields/radio.php:285
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
#: fields/wysiwyg.php:380
#: 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/wysiwyg.php:426
msgid "Appears when creating a new post"
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
# @ acf
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
#: fields/email.php:142 fields/number.php:154 fields/password.php:134
#: fields/text.php:151 fields/textarea.php:148 fields/url.php:123
msgid "Placeholder Text"
msgstr "Platzhalter-Text"
# @ acf
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
#: fields/email.php:143 fields/number.php:155 fields/password.php:135
#: fields/text.php:152 fields/textarea.php:149 fields/url.php:124
msgid "Appears within the input"
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
# @ acf
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
#: fields/text.php:166
#: fields/email.php:151 fields/number.php:163 fields/password.php:143
#: fields/text.php:160
msgid "Prepend"
msgstr "Voranstellen"
# @ acf
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
#: fields/text.php:167
#: fields/email.php:152 fields/number.php:164 fields/password.php:144
#: fields/text.php:161
msgid "Appears before the input"
msgstr "Wird dem Eingabefeld vorangestellt"
# @ acf
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
#: fields/text.php:175
#: fields/email.php:160 fields/number.php:172 fields/password.php:152
#: fields/text.php:169
msgid "Append"
msgstr "Anhängen"
# @ acf
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
#: fields/text.php:176
#: fields/email.php:161 fields/number.php:173 fields/password.php:153
#: fields/text.php:170
msgid "Appears after the input"
msgstr "Wird dem Eingabefeld hinten angestellt"
@ -2208,11 +2214,6 @@ msgstr "Lokalisiere"
msgid "Sorry, this browser does not support geolocation"
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
# @ acf
#: fields/google-map.php:133 fields/relationship.php:742
msgid "Search"
msgstr "Suchen"
# @ acf
#: fields/google-map.php:134
msgid "Clear location"
@ -2344,27 +2345,27 @@ msgid "Message"
msgstr "Nachricht"
# @ acf
#: fields/message.php:125 fields/textarea.php:182
#: fields/message.php:125 fields/textarea.php:176
msgid "New Lines"
msgstr "Neue Zeilen"
# @ acf
#: fields/message.php:126 fields/textarea.php:183
#: fields/message.php:126 fields/textarea.php:177
msgid "Controls how new lines are rendered"
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
# @ acf
#: fields/message.php:130 fields/textarea.php:187
#: fields/message.php:130 fields/textarea.php:181
msgid "Automatically add paragraphs"
msgstr "Absätze automatisch hinzufügen"
# @ acf
#: fields/message.php:131 fields/textarea.php:188
#: fields/message.php:131 fields/textarea.php:182
msgid "Automatically add &lt;br&gt;"
msgstr "Zeilenumbrüche ( &lt;br&gt; ) automatisch hinzufügen"
# @ acf
#: fields/message.php:132 fields/textarea.php:189
#: fields/message.php:132 fields/textarea.php:183
msgid "No Formatting"
msgstr "Keine Formatierung"
@ -2386,33 +2387,33 @@ msgid "Number"
msgstr "Numerisch"
# @ acf
#: fields/number.php:186
#: fields/number.php:181
msgid "Minimum Value"
msgstr "Mindestwert"
# @ acf
#: fields/number.php:195
#: fields/number.php:190
msgid "Maximum Value"
msgstr "Maximalwert"
# @ acf
#: fields/number.php:204
#: fields/number.php:199
msgid "Step Size"
msgstr "Schrittweite"
# @ acf
#: fields/number.php:242
#: fields/number.php:237
msgid "Value must be a number"
msgstr "Wert muss eine Zahl sein"
# @ acf
#: fields/number.php:260
#: fields/number.php:255
#, php-format
msgid "Value must be equal to or higher than %d"
msgstr "Wert muss größer oder gleich %d sein"
# @ acf
#: fields/number.php:268
#: fields/number.php:263
#, php-format
msgid "Value must be equal to or lower than %d"
msgstr "Wert muss kleiner oder gleich %d sein"
@ -2837,12 +2838,12 @@ msgid "Text"
msgstr "Text einzeilig"
# @ acf
#: fields/text.php:184 fields/textarea.php:163
#: fields/text.php:178 fields/textarea.php:157
msgid "Character Limit"
msgstr "Zeichenbegrenzung"
# @ acf
#: fields/text.php:185 fields/textarea.php:164
#: fields/text.php:179 fields/textarea.php:158
msgid "Leave blank for no limit"
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
@ -2852,12 +2853,12 @@ msgid "Text Area"
msgstr "Text mehrzeilig"
# @ acf
#: fields/textarea.php:172
#: fields/textarea.php:166
msgid "Rows"
msgstr "Zeilenanzahl"
# @ acf
#: fields/textarea.php:173
#: fields/textarea.php:167
msgid "Sets the textarea height"
msgstr "Definiert die Höhe des Textfelds"
@ -2881,7 +2882,7 @@ msgid "Url"
msgstr "URL"
# @ acf
#: fields/url.php:168
#: fields/url.php:165
msgid "Value must be a valid URL"
msgstr "Bitte eine gültige URL eingeben"
@ -2896,48 +2897,48 @@ msgid "All user roles"
msgstr "Alle Benutzerrollen"
# @ acf
#: fields/wysiwyg.php:37
#: fields/wysiwyg.php:36
msgid "Wysiwyg Editor"
msgstr "WYSIWYG-Editor"
# @ acf
#: fields/wysiwyg.php:331
#: fields/wysiwyg.php:377
msgid "Visual"
msgstr "Visuell"
# @ acf
#: fields/wysiwyg.php:332
#: fields/wysiwyg.php:378
msgctxt "Name for the Text editor tab (formerly HTML)"
msgid "Text"
msgstr "Text"
# @ acf
#: fields/wysiwyg.php:388
#: fields/wysiwyg.php:434
msgid "Tabs"
msgstr "Tabs"
# @ acf
#: fields/wysiwyg.php:393
#: fields/wysiwyg.php:439
msgid "Visual & Text"
msgstr "Visuell & Text"
# @ acf
#: fields/wysiwyg.php:394
#: fields/wysiwyg.php:440
msgid "Visual Only"
msgstr "Nur Visuell"
# @ acf
#: fields/wysiwyg.php:395
#: fields/wysiwyg.php:441
msgid "Text Only"
msgstr "Nur Text"
# @ acf
#: fields/wysiwyg.php:402
#: fields/wysiwyg.php:448
msgid "Toolbar"
msgstr "Werkzeugleiste"
# @ acf
#: fields/wysiwyg.php:412
#: fields/wysiwyg.php:458
msgid "Show Media Upload Buttons?"
msgstr "Button zum Hochladen von Medien anzeigen?"
@ -3078,6 +3079,14 @@ msgstr "Aktualisierungs-Hinweis"
msgid "Options"
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
#, php-format
msgid ""
@ -3095,71 +3104,79 @@ msgctxt "noun"
msgid "Clone"
msgstr "Klon"
#: pro/fields/clone.php:663
#: pro/fields/clone.php:689
msgid "Select one or more fields you wish to clone"
msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest"
# @ acf
#: pro/fields/clone.php:678
#: pro/fields/clone.php:704
msgid "Display"
msgstr "Anzeige"
#: pro/fields/clone.php:679
#: pro/fields/clone.php:705
msgid "Specify the style used to render the clone field"
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)"
msgstr ""
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
"Feldes an)"
#: pro/fields/clone.php:685
#: pro/fields/clone.php:711
msgid "Seamless (replaces this field with selected fields)"
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"
msgstr ""
"Gib den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
# @ acf
#: pro/fields/clone.php:698 pro/fields/flexible-content.php:555
#: pro/fields/repeater.php:467
#: pro/fields/clone.php:724 pro/fields/flexible-content.php:555
#: pro/fields/repeater.php:476
msgid "Block"
msgstr "Block"
# @ acf
#: pro/fields/clone.php:699 pro/fields/flexible-content.php:554
#: pro/fields/repeater.php:466
#: pro/fields/clone.php:725 pro/fields/flexible-content.php:554
#: pro/fields/repeater.php:475
msgid "Table"
msgstr "Tabelle"
# @ acf
#: pro/fields/clone.php:700 pro/fields/flexible-content.php:556
#: pro/fields/repeater.php:468
#: pro/fields/clone.php:726 pro/fields/flexible-content.php:556
#: pro/fields/repeater.php:477
msgid "Row"
msgstr "Reihe"
#: pro/fields/clone.php:706
#: pro/fields/clone.php:732
#, php-format
msgid "Labels will be displayed as %s"
msgstr "Bezeichnungen werden als %s angezeigt"
#: pro/fields/clone.php:709
#: pro/fields/clone.php:735
msgid "Prefix Field Labels"
msgstr "Präfix für Feld-Beschriftungen"
#: pro/fields/clone.php:724
#: pro/fields/clone.php:750
#, php-format
msgid "Values will be saved as %s"
msgstr "Werte werden als %s gespeichert"
#: pro/fields/clone.php:727
#: pro/fields/clone.php:753
msgid "Prefix Field Names"
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
msgid "All fields from %s field group"
msgstr "Alle Felder von Feld-Gruppe %s"
@ -3235,7 +3252,7 @@ msgstr "Layout hinzufügen"
msgid "Remove layout"
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"
msgstr "Zum Auswählen anklicken"
@ -3275,7 +3292,7 @@ msgid "Max"
msgstr "Max"
# @ 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"
msgstr "Button-Beschriftung"
@ -3394,37 +3411,37 @@ msgid "Maximum rows reached ({max} rows)"
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
# @ acf
#: pro/fields/repeater.php:349
#: pro/fields/repeater.php:358
msgid "Add row"
msgstr "Eintrag hinzufügen"
# @ acf
#: pro/fields/repeater.php:350
#: pro/fields/repeater.php:359
msgid "Remove row"
msgstr "Eintrag löschen"
# @ acf
#: pro/fields/repeater.php:398
#: pro/fields/repeater.php:407
msgid "Sub Fields"
msgstr "Wiederholungsfelder"
#: pro/fields/repeater.php:428
#: pro/fields/repeater.php:437
msgid "Collapsed"
msgstr "Zugeklappt"
#: pro/fields/repeater.php:429
#: pro/fields/repeater.php:438
msgid "Select a sub field to show when row is collapsed"
msgstr ""
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
"werden soll"
# @ acf
#: pro/fields/repeater.php:439
#: pro/fields/repeater.php:448
msgid "Minimum Rows"
msgstr "Minimum der Einträge"
# @ acf
#: pro/fields/repeater.php:449
#: pro/fields/repeater.php:458
msgid "Maximum Rows"
msgstr "Maximum der Einträge"

Binary file not shown.

View File

@ -1,9 +1,9 @@
msgid ""
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"
"POT-Creation-Date: 2016-07-29 00:37+0200\n"
"PO-Revision-Date: 2016-07-29 00:42+0200\n"
"POT-Creation-Date: 2016-09-22 09:12+0200\n"
"PO-Revision-Date: 2016-09-22 09:16+0200\n"
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
"Language: de_DE\n"
@ -11,7 +11,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.8.8\n"
"X-Generator: Poedit 1.8.9\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
@ -28,109 +28,109 @@ msgid "Advanced Custom Fields"
msgstr "Advanced Custom Fields"
# @ acf
#: acf.php:271 admin/admin.php:61
#: acf.php:273 admin/admin.php:61
msgid "Field Groups"
msgstr "Feld-Gruppen"
# @ acf
#: acf.php:272
#: acf.php:274
msgid "Field Group"
msgstr "Feld-Gruppe"
# @ 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
msgid "Add New"
msgstr "Erstellen"
# @ acf
#: acf.php:274
#: acf.php:276
msgid "Add New Field Group"
msgstr "Neue Feld-Gruppe erstellen"
# @ acf
#: acf.php:275
#: acf.php:277
msgid "Edit Field Group"
msgstr "Feld-Gruppe bearbeiten"
# @ acf
#: acf.php:276
#: acf.php:278
msgid "New Field Group"
msgstr "Neue Feld-Gruppe"
# @ acf
#: acf.php:277
#: acf.php:279
msgid "View Field Group"
msgstr "Feld-Gruppe anzeigen"
# @ acf
#: acf.php:278
#: acf.php:280
msgid "Search Field Groups"
msgstr "Feld-Gruppen suchen"
# @ acf
#: acf.php:279
#: acf.php:281
msgid "No Field Groups found"
msgstr "Keine Feld-Gruppen gefunden"
# @ acf
#: acf.php:280
#: acf.php:282
msgid "No Field Groups found in Trash"
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
# @ acf
#: acf.php:303 admin/field-group.php:182 admin/field-group.php:280
#: admin/field-groups.php:528 pro/fields/clone.php:662
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
#: admin/field-groups.php:528 pro/fields/clone.php:688
msgid "Fields"
msgstr "Felder"
# @ acf
#: acf.php:304
#: acf.php:306
msgid "Field"
msgstr "Feld"
# @ acf
#: acf.php:306
#: acf.php:308
msgid "Add New Field"
msgstr "Feld hinzufügen"
# @ acf
#: acf.php:307
#: acf.php:309
msgid "Edit Field"
msgstr "Feld bearbeiten"
# @ 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
msgid "New Field"
msgstr "Neues Feld"
# @ acf
#: acf.php:309
#: acf.php:311
msgid "View Field"
msgstr "Feld anzeigen"
# @ acf
#: acf.php:310
#: acf.php:312
msgid "Search Fields"
msgstr "Felder suchen"
# @ acf
#: acf.php:311
#: acf.php:313
msgid "No Fields found"
msgstr "Keine Felder gefunden"
# @ acf
#: acf.php:312
#: acf.php:314
msgid "No Fields found in Trash"
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
msgid "Disabled"
msgstr "Deaktiviert"
#: acf.php:356
#: acf.php:358
#, php-format
msgid "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:162
#: 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"
msgstr "oder"
@ -265,96 +265,96 @@ msgid "Active"
msgstr "Aktiviert"
# @ acf
#: admin/field-group.php:842
#: admin/field-group.php:846
msgid "Front Page"
msgstr "Startseite"
# @ acf
#: admin/field-group.php:843
#: admin/field-group.php:847
msgid "Posts Page"
msgstr "Beitrags-Seite"
# @ acf
#: admin/field-group.php:844
#: admin/field-group.php:848
msgid "Top Level Page (no parent)"
msgstr "Seite ohne übergeordnete Seiten"
# @ acf
#: admin/field-group.php:845
#: admin/field-group.php:849
msgid "Parent Page (has children)"
msgstr "Übergeordnete Seite (mit Unterseiten)"
# @ acf
#: admin/field-group.php:846
#: admin/field-group.php:850
msgid "Child Page (has parent)"
msgstr "Unterseite (mit übergeordneter Seite)"
# @ acf
#: admin/field-group.php:862
#: admin/field-group.php:866
msgid "Default Template"
msgstr "Standard-Template"
# @ acf
#: admin/field-group.php:885
#: admin/field-group.php:889
msgid "Logged in"
msgstr "ist angemeldet"
# @ acf
#: admin/field-group.php:886
#: admin/field-group.php:890
msgid "Viewing front end"
msgstr "ist im Front-End"
# @ acf
#: admin/field-group.php:887
#: admin/field-group.php:891
msgid "Viewing back end"
msgstr "ist im Back-End"
# @ acf
#: admin/field-group.php:906
#: admin/field-group.php:910
msgid "Super Admin"
msgstr "Super-Admin"
# @ acf
#: admin/field-group.php:917 admin/field-group.php:925
#: admin/field-group.php:939 admin/field-group.php:946
#: admin/field-group.php:963 admin/field-group.php:980 fields/file.php:241
#: admin/field-group.php:921 admin/field-group.php:929
#: admin/field-group.php:943 admin/field-group.php:950
#: admin/field-group.php:967 admin/field-group.php:984 fields/file.php:241
#: fields/image.php:237 pro/fields/gallery.php:676
msgid "All"
msgstr "Alle"
# @ acf
#: admin/field-group.php:926
#: admin/field-group.php:930
msgid "Add / Edit"
msgstr "Hinzufügen / Bearbeiten"
# @ acf
#: admin/field-group.php:927
#: admin/field-group.php:931
msgid "Register"
msgstr "Registrieren"
# @ acf
#: admin/field-group.php:1167
#: admin/field-group.php:1171
msgid "Move Complete."
msgstr "Verschieben erfolgreich abgeschlossen."
# @ acf
#: admin/field-group.php:1168
#: admin/field-group.php:1172
#, php-format
msgid "The %s field can now be found in the %s field group"
msgstr "Das Feld \"%s\" wurde in die %s Feld-Gruppe verschoben"
# @ acf
#: admin/field-group.php:1170
#: admin/field-group.php:1174
msgid "Close Window"
msgstr "Schließen"
# @ acf
#: admin/field-group.php:1205
#: admin/field-group.php:1209
msgid "Please select the destination for this field"
msgstr "In welche Feld-Gruppe solle dieses Feld verschoben werden"
# @ acf
#: admin/field-group.php:1212
#: admin/field-group.php:1216
msgid "Move Field"
msgstr "Feld verschieben"
@ -399,8 +399,8 @@ msgid "Sync available"
msgstr "Synchronisierung verfügbar"
# @ acf
#: admin/field-groups.php:525 api/api-template.php:1077
#: api/api-template.php:1290 pro/fields/gallery.php:370
#: admin/field-groups.php:525 api/api-template.php:1039
#: pro/fields/gallery.php:370
msgid "Title"
msgstr "Titel"
@ -493,18 +493,24 @@ msgid "Duplicate"
msgstr "Duplizieren"
# @ 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
msgid "Select %s"
msgstr "%s auswählen"
# @ acf
#: admin/field-groups.php:759
#: admin/field-groups.php:775
msgid "Synchronise field group"
msgstr "Synchronisiere Feld-Gruppe"
# @ acf
#: admin/field-groups.php:759 admin/field-groups.php:776
#: admin/field-groups.php:775 admin/field-groups.php:792
msgid "Sync"
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/tab.php:130 fields/taxonomy.php:785 fields/taxonomy.php:799
#: fields/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
#: fields/user.php:413 fields/wysiwyg.php:418
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:716
#: pro/fields/clone.php:734
#: fields/user.php:413 fields/wysiwyg.php:464
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
#: pro/fields/clone.php:760
msgid "Yes"
msgstr "Ja"
@ -617,9 +623,9 @@ msgstr "Ja"
#: 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/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:419
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:717
#: pro/fields/clone.php:735
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
#: pro/fields/clone.php:761
msgid "No"
msgstr "Nein"
@ -654,7 +660,7 @@ msgstr "Regel-Gruppe hinzufügen"
# @ acf
#: 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"
msgstr "Ziehen zum Sortieren"
@ -1624,101 +1630,101 @@ msgid "See what's new"
msgstr "Was ist neu"
# @ acf
#: api/api-helpers.php:944
#: api/api-helpers.php:950
msgid "Thumbnail"
msgstr "Miniaturbild"
# @ acf
#: api/api-helpers.php:945
#: api/api-helpers.php:951
msgid "Medium"
msgstr "Mittel"
# @ acf
#: api/api-helpers.php:946
#: api/api-helpers.php:952
msgid "Large"
msgstr "Groß"
# @ acf
#: api/api-helpers.php:995
#: api/api-helpers.php:1001
msgid "Full Size"
msgstr "Volle Größe"
# @ 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)"
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
msgid "Parent"
msgstr "Übergeordnet"
# @ acf
#: api/api-helpers.php:3873
#: api/api-helpers.php:3894
#, php-format
msgid "Image width must be at least %dpx."
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
# @ acf
#: api/api-helpers.php:3878
#: api/api-helpers.php:3899
#, php-format
msgid "Image width must not exceed %dpx."
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
# @ acf
#: api/api-helpers.php:3894
#: api/api-helpers.php:3915
#, php-format
msgid "Image height must be at least %dpx."
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
# @ acf
#: api/api-helpers.php:3899
#: api/api-helpers.php:3920
#, php-format
msgid "Image height must not exceed %dpx."
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
# @ acf
#: api/api-helpers.php:3917
#: api/api-helpers.php:3938
#, php-format
msgid "File size must be at least %s."
msgstr "Die Dateigröße muss mindestens %s sein."
# @ acf
#: api/api-helpers.php:3922
#: api/api-helpers.php:3943
#, php-format
msgid "File size must must not exceed %s."
msgstr "Die Dateigröße darf %s nicht überschreiten."
# @ acf
#: api/api-helpers.php:3956
#: api/api-helpers.php:3977
#, php-format
msgid "File type must be %s."
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"
msgstr "Spam entdeckt"
# @ 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
msgid "Update"
msgstr "Aktualisieren"
# @ acf
#: api/api-template.php:1236
#: api/api-template.php:1310
msgid "Post updated"
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
#: core/field.php:132
msgid "Basic"
@ -1741,8 +1747,8 @@ msgstr "jQuery"
# @ acf
#: 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/flexible-content.php:544 pro/fields/repeater.php:459
#: pro/fields/clone.php:718 pro/fields/flexible-content.php:495
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
msgid "Layout"
msgstr "Layout"
@ -1762,7 +1768,7 @@ msgid "Validation successful"
msgstr "Überprüfung erfolgreich"
# @ 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"
msgstr "Überprüfung fehlgeschlagen"
@ -1803,7 +1809,7 @@ msgid "Uploaded to this post"
msgstr "Zu diesem Beitrag hochgeladen"
# @ acf
#: core/validation.php:207
#: core/validation.php:211
#, php-format
msgid "%s value is required"
msgstr "%s Wert ist notwendig"
@ -1841,10 +1847,10 @@ msgid "red : Red"
msgstr "rot : Rot"
# @ acf
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:124
#: fields/number.php:150 fields/radio.php:284 fields/select.php:455
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
#: fields/url.php:117 fields/wysiwyg.php:379
#: 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/text.php:142 fields/textarea.php:139 fields/true_false.php:115
#: fields/url.php:114 fields/wysiwyg.php:425
msgid "Default Value"
msgstr "Standardwert"
@ -2061,45 +2067,45 @@ msgid "Email"
msgstr "E-Mail"
# @ acf
#: fields/email.php:125 fields/number.php:151 fields/radio.php:285
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
#: fields/wysiwyg.php:380
#: 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/wysiwyg.php:426
msgid "Appears when creating a new post"
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
# @ acf
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
#: fields/email.php:142 fields/number.php:154 fields/password.php:134
#: fields/text.php:151 fields/textarea.php:148 fields/url.php:123
msgid "Placeholder Text"
msgstr "Platzhalter-Text"
# @ acf
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
#: fields/email.php:143 fields/number.php:155 fields/password.php:135
#: fields/text.php:152 fields/textarea.php:149 fields/url.php:124
msgid "Appears within the input"
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
# @ acf
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
#: fields/text.php:166
#: fields/email.php:151 fields/number.php:163 fields/password.php:143
#: fields/text.php:160
msgid "Prepend"
msgstr "Voranstellen"
# @ acf
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
#: fields/text.php:167
#: fields/email.php:152 fields/number.php:164 fields/password.php:144
#: fields/text.php:161
msgid "Appears before the input"
msgstr "Wird dem Eingabefeld vorangestellt"
# @ acf
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
#: fields/text.php:175
#: fields/email.php:160 fields/number.php:172 fields/password.php:152
#: fields/text.php:169
msgid "Append"
msgstr "Anhängen"
# @ acf
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
#: fields/text.php:176
#: fields/email.php:161 fields/number.php:173 fields/password.php:153
#: fields/text.php:170
msgid "Appears after the input"
msgstr "Wird dem Eingabefeld hinten angestellt"
@ -2208,11 +2214,6 @@ msgstr "Lokalisiere"
msgid "Sorry, this browser does not support geolocation"
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
# @ acf
#: fields/google-map.php:133 fields/relationship.php:742
msgid "Search"
msgstr "Suchen"
# @ acf
#: fields/google-map.php:134
msgid "Clear location"
@ -2344,27 +2345,27 @@ msgid "Message"
msgstr "Nachricht"
# @ acf
#: fields/message.php:125 fields/textarea.php:182
#: fields/message.php:125 fields/textarea.php:176
msgid "New Lines"
msgstr "Neue Zeilen"
# @ acf
#: fields/message.php:126 fields/textarea.php:183
#: fields/message.php:126 fields/textarea.php:177
msgid "Controls how new lines are rendered"
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
# @ acf
#: fields/message.php:130 fields/textarea.php:187
#: fields/message.php:130 fields/textarea.php:181
msgid "Automatically add paragraphs"
msgstr "Absätze automatisch hinzufügen"
# @ acf
#: fields/message.php:131 fields/textarea.php:188
#: fields/message.php:131 fields/textarea.php:182
msgid "Automatically add &lt;br&gt;"
msgstr "Zeilenumbrüche ( &lt;br&gt; ) automatisch hinzufügen"
# @ acf
#: fields/message.php:132 fields/textarea.php:189
#: fields/message.php:132 fields/textarea.php:183
msgid "No Formatting"
msgstr "Keine Formatierung"
@ -2386,33 +2387,33 @@ msgid "Number"
msgstr "Numerisch"
# @ acf
#: fields/number.php:186
#: fields/number.php:181
msgid "Minimum Value"
msgstr "Mindestwert"
# @ acf
#: fields/number.php:195
#: fields/number.php:190
msgid "Maximum Value"
msgstr "Maximalwert"
# @ acf
#: fields/number.php:204
#: fields/number.php:199
msgid "Step Size"
msgstr "Schrittweite"
# @ acf
#: fields/number.php:242
#: fields/number.php:237
msgid "Value must be a number"
msgstr "Wert muss eine Zahl sein"
# @ acf
#: fields/number.php:260
#: fields/number.php:255
#, php-format
msgid "Value must be equal to or higher than %d"
msgstr "Wert muss größer oder gleich %d sein"
# @ acf
#: fields/number.php:268
#: fields/number.php:263
#, php-format
msgid "Value must be equal to or lower than %d"
msgstr "Wert muss kleiner oder gleich %d sein"
@ -2838,12 +2839,12 @@ msgid "Text"
msgstr "Text einzeilig"
# @ acf
#: fields/text.php:184 fields/textarea.php:163
#: fields/text.php:178 fields/textarea.php:157
msgid "Character Limit"
msgstr "Zeichenbegrenzung"
# @ acf
#: fields/text.php:185 fields/textarea.php:164
#: fields/text.php:179 fields/textarea.php:158
msgid "Leave blank for no limit"
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
@ -2853,12 +2854,12 @@ msgid "Text Area"
msgstr "Text mehrzeilig"
# @ acf
#: fields/textarea.php:172
#: fields/textarea.php:166
msgid "Rows"
msgstr "Zeilenanzahl"
# @ acf
#: fields/textarea.php:173
#: fields/textarea.php:167
msgid "Sets the textarea height"
msgstr "Definiert die Höhe des Textfelds"
@ -2882,7 +2883,7 @@ msgid "Url"
msgstr "URL"
# @ acf
#: fields/url.php:168
#: fields/url.php:165
msgid "Value must be a valid URL"
msgstr "Bitte eine gültige URL eingeben"
@ -2897,48 +2898,48 @@ msgid "All user roles"
msgstr "Alle Benutzerrollen"
# @ acf
#: fields/wysiwyg.php:37
#: fields/wysiwyg.php:36
msgid "Wysiwyg Editor"
msgstr "WYSIWYG-Editor"
# @ acf
#: fields/wysiwyg.php:331
#: fields/wysiwyg.php:377
msgid "Visual"
msgstr "Visuell"
# @ acf
#: fields/wysiwyg.php:332
#: fields/wysiwyg.php:378
msgctxt "Name for the Text editor tab (formerly HTML)"
msgid "Text"
msgstr "Text"
# @ acf
#: fields/wysiwyg.php:388
#: fields/wysiwyg.php:434
msgid "Tabs"
msgstr "Tabs"
# @ acf
#: fields/wysiwyg.php:393
#: fields/wysiwyg.php:439
msgid "Visual & Text"
msgstr "Visuell & Text"
# @ acf
#: fields/wysiwyg.php:394
#: fields/wysiwyg.php:440
msgid "Visual Only"
msgstr "Nur Visuell"
# @ acf
#: fields/wysiwyg.php:395
#: fields/wysiwyg.php:441
msgid "Text Only"
msgstr "Nur Text"
# @ acf
#: fields/wysiwyg.php:402
#: fields/wysiwyg.php:448
msgid "Toolbar"
msgstr "Werkzeugleiste"
# @ acf
#: fields/wysiwyg.php:412
#: fields/wysiwyg.php:458
msgid "Show Media Upload Buttons?"
msgstr "Button zum Hochladen von Medien anzeigen?"
@ -3079,6 +3080,14 @@ msgstr "Aktualisierungs-Hinweis"
msgid "Options"
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
#, php-format
msgid ""
@ -3096,71 +3105,79 @@ msgctxt "noun"
msgid "Clone"
msgstr "Klon"
#: pro/fields/clone.php:663
#: pro/fields/clone.php:689
msgid "Select one or more fields you wish to clone"
msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten"
# @ acf
#: pro/fields/clone.php:678
#: pro/fields/clone.php:704
msgid "Display"
msgstr "Anzeige"
#: pro/fields/clone.php:679
#: pro/fields/clone.php:705
msgid "Specify the style used to render the clone field"
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)"
msgstr ""
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
"Feldes an)"
#: pro/fields/clone.php:685
#: pro/fields/clone.php:711
msgid "Seamless (replaces this field with selected fields)"
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"
msgstr ""
"Geben Sie den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
# @ acf
#: pro/fields/clone.php:698 pro/fields/flexible-content.php:555
#: pro/fields/repeater.php:467
#: pro/fields/clone.php:724 pro/fields/flexible-content.php:555
#: pro/fields/repeater.php:476
msgid "Block"
msgstr "Block"
# @ acf
#: pro/fields/clone.php:699 pro/fields/flexible-content.php:554
#: pro/fields/repeater.php:466
#: pro/fields/clone.php:725 pro/fields/flexible-content.php:554
#: pro/fields/repeater.php:475
msgid "Table"
msgstr "Tabelle"
# @ acf
#: pro/fields/clone.php:700 pro/fields/flexible-content.php:556
#: pro/fields/repeater.php:468
#: pro/fields/clone.php:726 pro/fields/flexible-content.php:556
#: pro/fields/repeater.php:477
msgid "Row"
msgstr "Reihe"
#: pro/fields/clone.php:706
#: pro/fields/clone.php:732
#, php-format
msgid "Labels will be displayed as %s"
msgstr "Bezeichnungen werden als %s angezeigt"
#: pro/fields/clone.php:709
#: pro/fields/clone.php:735
msgid "Prefix Field Labels"
msgstr "Präfix für Feld-Beschriftungen"
#: pro/fields/clone.php:724
#: pro/fields/clone.php:750
#, php-format
msgid "Values will be saved as %s"
msgstr "Werte werden als %s gespeichert"
#: pro/fields/clone.php:727
#: pro/fields/clone.php:753
msgid "Prefix Field Names"
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
msgid "All fields from %s field group"
msgstr "Alle Felder von Feld-Gruppe %s"
@ -3236,7 +3253,7 @@ msgstr "Layout hinzufügen"
msgid "Remove layout"
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"
msgstr "Zum Auswählen anklicken"
@ -3276,7 +3293,7 @@ msgid "Max"
msgstr "Max"
# @ 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"
msgstr "Button-Beschriftung"
@ -3395,37 +3412,37 @@ msgid "Maximum rows reached ({max} rows)"
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
# @ acf
#: pro/fields/repeater.php:349
#: pro/fields/repeater.php:358
msgid "Add row"
msgstr "Eintrag hinzufügen"
# @ acf
#: pro/fields/repeater.php:350
#: pro/fields/repeater.php:359
msgid "Remove row"
msgstr "Eintrag löschen"
# @ acf
#: pro/fields/repeater.php:398
#: pro/fields/repeater.php:407
msgid "Sub Fields"
msgstr "Wiederholungsfelder"
#: pro/fields/repeater.php:428
#: pro/fields/repeater.php:437
msgid "Collapsed"
msgstr "Zugeklappt"
#: pro/fields/repeater.php:429
#: pro/fields/repeater.php:438
msgid "Select a sub field to show when row is collapsed"
msgstr ""
"Wählen Sie welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
"werden soll"
# @ acf
#: pro/fields/repeater.php:439
#: pro/fields/repeater.php:448
msgid "Minimum Rows"
msgstr "Minimum der Einträge"
# @ acf
#: pro/fields/repeater.php:449
#: pro/fields/repeater.php:458
msgid "Maximum Rows"
msgstr "Maximum der Einträge"

Binary file not shown.

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.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -2,10 +2,10 @@
# This file is distributed under the same license as the package.
msgid ""
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"
"POT-Creation-Date: 2016-08-05 16:34+0100\n"
"PO-Revision-Date: 2016-08-05 16:34+0100\n"
"POT-Creation-Date: 2016-09-21 10:28+0100\n"
"PO-Revision-Date: 2016-09-21 10:29+0100\n"
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
"Language: pt_PT\n"
@ -13,7 +13,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.8.8\n"
"X-Generator: Poedit 1.8.9\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
@ -28,91 +28,91 @@ msgstr ""
msgid "Advanced Custom Fields"
msgstr "Advanced Custom Fields"
#: acf.php:271 admin/admin.php:61
#: acf.php:273 admin/admin.php:61
msgid "Field Groups"
msgstr "Grupos de campos"
#: acf.php:272
#: acf.php:274
msgid "Field Group"
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
msgid "Add New"
msgstr "Adicionar novo"
#: acf.php:274
#: acf.php:276
msgid "Add New Field Group"
msgstr "Adicionar novo grupo de campos"
#: acf.php:275
#: acf.php:277
msgid "Edit Field Group"
msgstr "Editar grupo de campos"
#: acf.php:276
#: acf.php:278
msgid "New Field Group"
msgstr "Novo grupo de campos"
#: acf.php:277
#: acf.php:279
msgid "View Field Group"
msgstr "Ver grupo de campos"
#: acf.php:278
#: acf.php:280
msgid "Search Field Groups"
msgstr "Pesquisar grupos de campos"
#: acf.php:279
#: acf.php:281
msgid "No Field Groups found"
msgstr "Nenhum grupo de campos encontrado"
#: acf.php:280
#: acf.php:282
msgid "No Field Groups found in Trash"
msgstr "Nenhum grupo de campos encontrado no lixo"
#: acf.php:303 admin/field-group.php:182 admin/field-group.php:280
#: admin/field-groups.php:528 pro/fields/clone.php:662
#: acf.php:305 admin/field-group.php:182 admin/field-group.php:280
#: admin/field-groups.php:528 pro/fields/clone.php:688
msgid "Fields"
msgstr "Campos"
#: acf.php:304
#: acf.php:306
msgid "Field"
msgstr "Campo"
#: acf.php:306
#: acf.php:308
msgid "Add New Field"
msgstr "Adicionar novo campo"
#: acf.php:307
#: acf.php:309
msgid "Edit Field"
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
msgid "New Field"
msgstr "Novo campo"
#: acf.php:309
#: acf.php:311
msgid "View Field"
msgstr "Ver campo"
#: acf.php:310
#: acf.php:312
msgid "Search Fields"
msgstr "Pesquisar campos"
#: acf.php:311
#: acf.php:313
msgid "No Fields found"
msgstr "Nenhum campo encontrado"
#: acf.php:312
#: acf.php:314
msgid "No Fields found in Trash"
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
msgid "Disabled"
msgstr "Desactivado"
#: acf.php:356
#: acf.php:358
#, php-format
msgid "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:162
#: 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"
msgstr "ou"
@ -226,79 +226,79 @@ msgstr "Chaves dos campos"
msgid "Active"
msgstr "Activo"
#: admin/field-group.php:842
#: admin/field-group.php:846
msgid "Front Page"
msgstr "Página inicial"
#: admin/field-group.php:843
#: admin/field-group.php:847
msgid "Posts Page"
msgstr "Página de artigos"
#: admin/field-group.php:844
#: admin/field-group.php:848
msgid "Top Level Page (no parent)"
msgstr "Página de topo (sem superior)"
#: admin/field-group.php:845
#: admin/field-group.php:849
msgid "Parent Page (has children)"
msgstr "Página superior (tem dependentes)"
#: admin/field-group.php:846
#: admin/field-group.php:850
msgid "Child Page (has parent)"
msgstr "Página dependente (tem superior)"
#: admin/field-group.php:862
#: admin/field-group.php:866
msgid "Default Template"
msgstr "Modelo por omissão"
#: admin/field-group.php:885
#: admin/field-group.php:889
msgid "Logged in"
msgstr "Sessão iniciada"
#: admin/field-group.php:886
#: admin/field-group.php:890
msgid "Viewing front end"
msgstr "A visualizar a frente do site"
#: admin/field-group.php:887
#: admin/field-group.php:891
msgid "Viewing back end"
msgstr "A visualizar a administração do site"
#: admin/field-group.php:906
#: admin/field-group.php:910
msgid "Super Admin"
msgstr "Super Administrador"
#: admin/field-group.php:917 admin/field-group.php:925
#: admin/field-group.php:939 admin/field-group.php:946
#: admin/field-group.php:963 admin/field-group.php:980 fields/file.php:241
#: admin/field-group.php:921 admin/field-group.php:929
#: admin/field-group.php:943 admin/field-group.php:950
#: admin/field-group.php:967 admin/field-group.php:984 fields/file.php:241
#: fields/image.php:237 pro/fields/gallery.php:676
msgid "All"
msgstr "Todos"
#: admin/field-group.php:926
#: admin/field-group.php:930
msgid "Add / Edit"
msgstr "Adicionar / Editar"
#: admin/field-group.php:927
#: admin/field-group.php:931
msgid "Register"
msgstr "Registar"
#: admin/field-group.php:1167
#: admin/field-group.php:1171
msgid "Move Complete."
msgstr "Movido com sucesso."
#: admin/field-group.php:1168
#: admin/field-group.php:1172
#, php-format
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"
#: admin/field-group.php:1170
#: admin/field-group.php:1174
msgid "Close Window"
msgstr "Fechar janela"
#: admin/field-group.php:1205
#: admin/field-group.php:1209
msgid "Please select the destination for this field"
msgstr "Por favor seleccione o destinho para este campo"
#: admin/field-group.php:1212
#: admin/field-group.php:1216
msgid "Move Field"
msgstr "Mover campo"
@ -337,8 +337,8 @@ msgstr[1] "%s grupos de campos sincronizados."
msgid "Sync available"
msgstr "Sincronização disponível"
#: admin/field-groups.php:525 api/api-template.php:1077
#: api/api-template.php:1290 pro/fields/gallery.php:370
#: admin/field-groups.php:525 api/api-template.php:1039
#: pro/fields/gallery.php:370
msgid "Title"
msgstr "Título"
@ -416,16 +416,21 @@ msgstr "Duplicar este item"
msgid "Duplicate"
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
msgid "Select %s"
msgstr "Seleccionar %s"
#: admin/field-groups.php:759
#: admin/field-groups.php:775
msgid "Synchronise field group"
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"
msgstr "Sincronizar"
@ -509,9 +514,9 @@ msgstr "Lógica condicional"
#: 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/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
#: fields/user.php:413 fields/wysiwyg.php:418
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:716
#: pro/fields/clone.php:734
#: fields/user.php:413 fields/wysiwyg.php:464
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
#: pro/fields/clone.php:760
msgid "Yes"
msgstr "Sim"
@ -523,9 +528,9 @@ msgstr "Sim"
#: 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/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:419
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:717
#: pro/fields/clone.php:735
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
#: pro/fields/clone.php:761
msgid "No"
msgstr "Não"
@ -554,7 +559,7 @@ msgid "Add rule group"
msgstr "Adicionar grupo de regras"
#: 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"
msgstr "Arraste para reordenar"
@ -1346,87 +1351,87 @@ msgstr "A ler tarefas de actualização..."
msgid "See what's new"
msgstr "Veja o que há de novo"
#: api/api-helpers.php:944
#: api/api-helpers.php:950
msgid "Thumbnail"
msgstr "Miniatura"
#: api/api-helpers.php:945
#: api/api-helpers.php:951
msgid "Medium"
msgstr "Média"
#: api/api-helpers.php:946
#: api/api-helpers.php:952
msgid "Large"
msgstr "Grande"
#: api/api-helpers.php:995
#: api/api-helpers.php:1001
msgid "Full Size"
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)"
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
msgid "Parent"
msgstr "Superior"
#: api/api-helpers.php:3873
#: api/api-helpers.php:3894
#, php-format
msgid "Image width must be at least %dpx."
msgstr "A largura da imagem deve ser pelo menos de %dpx."
#: api/api-helpers.php:3878
#: api/api-helpers.php:3899
#, php-format
msgid "Image width must not exceed %dpx."
msgstr "A largura da imagem não deve exceder os %dpx."
#: api/api-helpers.php:3894
#: api/api-helpers.php:3915
#, php-format
msgid "Image height must be at least %dpx."
msgstr "A altura da imagem deve ser pelo menos de %dpx."
#: api/api-helpers.php:3899
#: api/api-helpers.php:3920
#, php-format
msgid "Image height must not exceed %dpx."
msgstr "A altura da imagem não deve exceder os %dpx."
#: api/api-helpers.php:3917
#: api/api-helpers.php:3938
#, php-format
msgid "File size must be at least %s."
msgstr "O tamanho do ficheiro deve ser pelo menos de %s."
#: api/api-helpers.php:3922
#: api/api-helpers.php:3943
#, php-format
msgid "File size must must not exceed %s."
msgstr "O tamanho do ficheiro não deve exceder %s."
#: api/api-helpers.php:3956
#: api/api-helpers.php:3977
#, php-format
msgid "File type must be %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"
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
msgid "Update"
msgstr "Actualizar"
#: api/api-template.php:1236
#: api/api-template.php:1310
msgid "Post updated"
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
msgid "Basic"
msgstr "Básico"
@ -1444,8 +1449,8 @@ msgid "jQuery"
msgstr "jQuery"
#: 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/flexible-content.php:544 pro/fields/repeater.php:459
#: pro/fields/clone.php:718 pro/fields/flexible-content.php:495
#: pro/fields/flexible-content.php:544 pro/fields/repeater.php:468
msgid "Layout"
msgstr "Layout"
@ -1461,7 +1466,7 @@ msgstr "Minimizar detalhes"
msgid "Validation successful"
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"
msgstr "A validação falhou"
@ -1498,7 +1503,7 @@ msgstr "Actualizar"
msgid "Uploaded to this post"
msgstr "Carregados neste artigo"
#: core/validation.php:207
#: core/validation.php:211
#, php-format
msgid "%s value is required"
msgstr "O valor %s é obrigatório"
@ -1528,10 +1533,10 @@ msgstr ""
msgid "red : Red"
msgstr "vermelho : Vermelho"
#: fields/checkbox.php:215 fields/color_picker.php:147 fields/email.php:124
#: fields/number.php:150 fields/radio.php:284 fields/select.php:455
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
#: fields/url.php:117 fields/wysiwyg.php:379
#: 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/text.php:142 fields/textarea.php:139 fields/true_false.php:115
#: fields/url.php:114 fields/wysiwyg.php:425
msgid "Default Value"
msgstr "Valor por omissão"
@ -1731,39 +1736,39 @@ msgstr "P"
msgid "Email"
msgstr "Email"
#: fields/email.php:125 fields/number.php:151 fields/radio.php:285
#: fields/text.php:149 fields/textarea.php:146 fields/url.php:118
#: fields/wysiwyg.php:380
#: 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/wysiwyg.php:426
msgid "Appears when creating a new post"
msgstr "Aparece quando é criado um novo conteúdo."
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
#: fields/text.php:157 fields/textarea.php:154 fields/url.php:126
#: fields/email.php:142 fields/number.php:154 fields/password.php:134
#: fields/text.php:151 fields/textarea.php:148 fields/url.php:123
msgid "Placeholder Text"
msgstr "Texto predefinido"
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
#: fields/text.php:158 fields/textarea.php:155 fields/url.php:127
#: fields/email.php:143 fields/number.php:155 fields/password.php:135
#: fields/text.php:152 fields/textarea.php:149 fields/url.php:124
msgid "Appears within the input"
msgstr "Aparece dentro do campo"
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
#: fields/text.php:166
#: fields/email.php:151 fields/number.php:163 fields/password.php:143
#: fields/text.php:160
msgid "Prepend"
msgstr "Preceder"
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
#: fields/text.php:167
#: fields/email.php:152 fields/number.php:164 fields/password.php:144
#: fields/text.php:161
msgid "Appears before the input"
msgstr "Aparece antes do campo"
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
#: fields/text.php:175
#: fields/email.php:160 fields/number.php:172 fields/password.php:152
#: fields/text.php:169
msgid "Append"
msgstr "Suceder"
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
#: fields/text.php:176
#: fields/email.php:161 fields/number.php:173 fields/password.php:153
#: fields/text.php:170
msgid "Appears after the input"
msgstr "Aparece depois do campo"
@ -1850,10 +1855,6 @@ msgstr "A obter localização"
msgid "Sorry, this browser does not support geolocation"
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
msgid "Clear location"
msgstr "Limpar localização"
@ -1957,23 +1958,23 @@ msgstr "Largura"
msgid "Message"
msgstr "Mensagem"
#: fields/message.php:125 fields/textarea.php:182
#: fields/message.php:125 fields/textarea.php:176
msgid "New Lines"
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"
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"
msgstr "Adicionar parágrafos automaticamente"
#: fields/message.php:131 fields/textarea.php:188
#: fields/message.php:131 fields/textarea.php:182
msgid "Automatically add &lt;br&gt;"
msgstr "Adicionar &lt;br&gt; automaticamente"
#: fields/message.php:132 fields/textarea.php:189
#: fields/message.php:132 fields/textarea.php:183
msgid "No Formatting"
msgstr "Sem formatação"
@ -1990,28 +1991,28 @@ msgstr ""
msgid "Number"
msgstr "Número"
#: fields/number.php:186
#: fields/number.php:181
msgid "Minimum Value"
msgstr "Valor mínimo"
#: fields/number.php:195
#: fields/number.php:190
msgid "Maximum Value"
msgstr "Valor máximo"
#: fields/number.php:204
#: fields/number.php:199
msgid "Step Size"
msgstr "Valor dos passos"
#: fields/number.php:242
#: fields/number.php:237
msgid "Value must be a number"
msgstr "O valor deve ser um número"
#: fields/number.php:260
#: fields/number.php:255
#, php-format
msgid "Value must be equal to or higher than %d"
msgstr "O valor deve ser igual ou superior a %d"
#: fields/number.php:268
#: fields/number.php:263
#, php-format
msgid "Value must be equal to or lower than %d"
msgstr "O valor deve ser igual ou inferior a %d"
@ -2375,11 +2376,11 @@ msgstr "Adicionar"
msgid "Text"
msgstr "Texto"
#: fields/text.php:184 fields/textarea.php:163
#: fields/text.php:178 fields/textarea.php:157
msgid "Character Limit"
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"
msgstr "Deixe em branco para nenhum limite"
@ -2387,11 +2388,11 @@ msgstr "Deixe em branco para nenhum limite"
msgid "Text Area"
msgstr "Área de texto"
#: fields/textarea.php:172
#: fields/textarea.php:166
msgid "Rows"
msgstr "Linhas"
#: fields/textarea.php:173
#: fields/textarea.php:167
msgid "Sets the textarea height"
msgstr "Define a altura da área de texto"
@ -2411,7 +2412,7 @@ msgstr "Ex.: Mostrar conteúdo adicional"
msgid "Url"
msgstr "URL"
#: fields/url.php:168
#: fields/url.php:165
msgid "Value must be a valid URL"
msgstr "O valor deve ser um URL válido"
@ -2423,40 +2424,40 @@ msgstr "Filtrar por papel"
msgid "All user roles"
msgstr "Todos os papéis de utilizador"
#: fields/wysiwyg.php:37
#: fields/wysiwyg.php:36
msgid "Wysiwyg Editor"
msgstr "Editor wysiwyg"
#: fields/wysiwyg.php:331
#: fields/wysiwyg.php:377
msgid "Visual"
msgstr "Visual"
#: fields/wysiwyg.php:332
#: fields/wysiwyg.php:378
msgctxt "Name for the Text editor tab (formerly HTML)"
msgid "Text"
msgstr "HTML"
#: fields/wysiwyg.php:388
#: fields/wysiwyg.php:434
msgid "Tabs"
msgstr "Separadores"
#: fields/wysiwyg.php:393
#: fields/wysiwyg.php:439
msgid "Visual & Text"
msgstr "Visual e HTML"
#: fields/wysiwyg.php:394
#: fields/wysiwyg.php:440
msgid "Visual Only"
msgstr "Apenas visual"
#: fields/wysiwyg.php:395
#: fields/wysiwyg.php:441
msgid "Text Only"
msgstr "Apenas HTML"
#: fields/wysiwyg.php:402
#: fields/wysiwyg.php:448
msgid "Toolbar"
msgstr "Barra de ferramentas"
#: fields/wysiwyg.php:412
#: fields/wysiwyg.php:458
msgid "Show Media Upload Buttons?"
msgstr "Mostrar botões de carregar multimédia?"
@ -2573,6 +2574,14 @@ msgstr "Aviso de actualização"
msgid "Options"
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
#, php-format
msgid ""
@ -2589,64 +2598,72 @@ msgctxt "noun"
msgid "Clone"
msgstr "Clone"
#: pro/fields/clone.php:663
#: pro/fields/clone.php:689
msgid "Select one or more fields you wish to clone"
msgstr "Seleccione um ou mais campos que deseje clonar."
#: pro/fields/clone.php:678
#: pro/fields/clone.php:704
msgid "Display"
msgstr "Visualização"
#: pro/fields/clone.php:679
#: pro/fields/clone.php:705
msgid "Specify the style used to render the clone field"
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)"
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)"
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"
msgstr "Especifica o estilo usado para mostrar os campos seleccionados."
#: pro/fields/clone.php:698 pro/fields/flexible-content.php:555
#: pro/fields/repeater.php:467
#: pro/fields/clone.php:724 pro/fields/flexible-content.php:555
#: pro/fields/repeater.php:476
msgid "Block"
msgstr "Bloco"
#: pro/fields/clone.php:699 pro/fields/flexible-content.php:554
#: pro/fields/repeater.php:466
#: pro/fields/clone.php:725 pro/fields/flexible-content.php:554
#: pro/fields/repeater.php:475
msgid "Table"
msgstr "Tabela"
#: pro/fields/clone.php:700 pro/fields/flexible-content.php:556
#: pro/fields/repeater.php:468
#: pro/fields/clone.php:726 pro/fields/flexible-content.php:556
#: pro/fields/repeater.php:477
msgid "Row"
msgstr "Linha"
#: pro/fields/clone.php:706
#: pro/fields/clone.php:732
#, php-format
msgid "Labels will be displayed as %s"
msgstr "As legendas serão mostradas com %s"
#: pro/fields/clone.php:709
#: pro/fields/clone.php:735
msgid "Prefix Field Labels"
msgstr "Prefixo nas legendas dos campos"
#: pro/fields/clone.php:724
#: pro/fields/clone.php:750
#, php-format
msgid "Values will be saved as %s"
msgstr "Os valores serão guardados como %s"
#: pro/fields/clone.php:727
#: pro/fields/clone.php:753
msgid "Prefix Field Names"
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
msgid "All fields from %s field group"
msgstr "Todos os campos do grupo de campos %s"
@ -2708,7 +2725,7 @@ msgstr "Adicionar layout"
msgid "Remove 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"
msgstr "Clique para alternar"
@ -2740,7 +2757,7 @@ msgstr "Mín"
msgid "Max"
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"
msgstr "Legenda do botão"
@ -2840,31 +2857,31 @@ msgstr "Mínimo de linhas alcançado ({min} linhas)"
msgid "Maximum rows reached ({max} rows)"
msgstr "Máximo de linhas alcançado ({max} linhas)"
#: pro/fields/repeater.php:349
#: pro/fields/repeater.php:358
msgid "Add row"
msgstr "Adicionar linha"
#: pro/fields/repeater.php:350
#: pro/fields/repeater.php:359
msgid "Remove row"
msgstr "Remover linha"
#: pro/fields/repeater.php:398
#: pro/fields/repeater.php:407
msgid "Sub Fields"
msgstr "Subcampos"
#: pro/fields/repeater.php:428
#: pro/fields/repeater.php:437
msgid "Collapsed"
msgstr "Minimizado"
#: pro/fields/repeater.php:429
#: pro/fields/repeater.php:438
msgid "Select a sub field to show when row is collapsed"
msgstr "Seleccione o subcampo a mostrar ao minimizar a linha."
#: pro/fields/repeater.php:439
#: pro/fields/repeater.php:448
msgid "Minimum Rows"
msgstr "Mínimo de linhas"
#: pro/fields/repeater.php:449
#: pro/fields/repeater.php:458
msgid "Maximum Rows"
msgstr "Máximo de linhas"

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Advanced Custom Fields\n"
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
"POT-Creation-Date: 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"
"Last-Translator: 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 ""
#: 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"
msgstr ""
@ -332,7 +332,7 @@ msgstr[1] ""
msgid "Sync available"
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
msgid "Title"
msgstr ""
@ -509,9 +509,9 @@ msgstr ""
#: 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/taxonomy.php:813 fields/taxonomy.php:827 fields/user.php:399
#: fields/user.php:413 fields/wysiwyg.php:422
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:738
#: pro/fields/clone.php:756
#: fields/user.php:413 fields/wysiwyg.php:464
#: pro/admin/views/settings-updates.php:93 pro/fields/clone.php:742
#: pro/fields/clone.php:760
msgid "Yes"
msgstr ""
@ -523,9 +523,9 @@ msgstr ""
#: 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/taxonomy.php:800 fields/taxonomy.php:814 fields/taxonomy.php:828
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:423
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:739
#: pro/fields/clone.php:757
#: fields/user.php:400 fields/user.php:414 fields/wysiwyg.php:465
#: pro/admin/views/settings-updates.php:103 pro/fields/clone.php:743
#: pro/fields/clone.php:761
msgid "No"
msgstr ""
@ -1298,7 +1298,7 @@ msgstr ""
msgid "Full Size"
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)"
msgstr ""
@ -1342,24 +1342,24 @@ msgstr ""
msgid "File type must be %s."
msgstr ""
#: api/api-template.php:1050 core/field.php:133
#: api/api-template.php:1048 core/field.php:133
msgid "Content"
msgstr ""
#: api/api-template.php:1058
#: api/api-template.php:1056
msgid "Validate Email"
msgstr ""
#: api/api-template.php:1108
#: api/api-template.php:1106
msgid "Spam Detected"
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
msgid "Update"
msgstr ""
#: api/api-template.php:1312
#: api/api-template.php:1310
msgid "Post updated"
msgstr ""
@ -1380,7 +1380,7 @@ msgid "jQuery"
msgstr ""
#: 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
msgid "Layout"
msgstr ""
@ -1466,7 +1466,7 @@ msgstr ""
#: 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/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"
msgstr ""
@ -1667,7 +1667,7 @@ msgstr ""
#: 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/wysiwyg.php:384
#: fields/wysiwyg.php:426
msgid "Appears when creating a new post"
msgstr ""
@ -2341,40 +2341,40 @@ msgstr ""
msgid "All user roles"
msgstr ""
#: fields/wysiwyg.php:37
#: fields/wysiwyg.php:36
msgid "Wysiwyg Editor"
msgstr ""
#: fields/wysiwyg.php:335
#: fields/wysiwyg.php:377
msgid "Visual"
msgstr ""
#: fields/wysiwyg.php:336
#: fields/wysiwyg.php:378
msgctxt "Name for the Text editor tab (formerly HTML)"
msgid "Text"
msgstr ""
#: fields/wysiwyg.php:392
#: fields/wysiwyg.php:434
msgid "Tabs"
msgstr ""
#: fields/wysiwyg.php:397
#: fields/wysiwyg.php:439
msgid "Visual & Text"
msgstr ""
#: fields/wysiwyg.php:398
#: fields/wysiwyg.php:440
msgid "Visual Only"
msgstr ""
#: fields/wysiwyg.php:399
#: fields/wysiwyg.php:441
msgid "Text Only"
msgstr ""
#: fields/wysiwyg.php:406
#: fields/wysiwyg.php:448
msgid "Toolbar"
msgstr ""
#: fields/wysiwyg.php:416
#: fields/wysiwyg.php:458
msgid "Show Media Upload Buttons?"
msgstr ""
@ -2486,6 +2486,12 @@ msgstr ""
msgid "Options"
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
#, php-format
msgid ""
@ -2499,64 +2505,72 @@ msgctxt "noun"
msgid "Clone"
msgstr ""
#: pro/fields/clone.php:685
#: pro/fields/clone.php:689
msgid "Select one or more fields you wish to clone"
msgstr ""
#: pro/fields/clone.php:700
#: pro/fields/clone.php:704
msgid "Display"
msgstr ""
#: pro/fields/clone.php:701
#: pro/fields/clone.php:705
msgid "Specify the style used to render the clone field"
msgstr ""
#: pro/fields/clone.php:706
#: pro/fields/clone.php:710
msgid "Group (displays selected fields in a group within this field)"
msgstr ""
#: pro/fields/clone.php:707
#: pro/fields/clone.php:711
msgid "Seamless (replaces this field with selected fields)"
msgstr ""
#: pro/fields/clone.php:715
#: pro/fields/clone.php:719
msgid "Specify the style used to render the selected fields"
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
msgid "Block"
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
msgid "Table"
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
msgid "Row"
msgstr ""
#: pro/fields/clone.php:728
#: pro/fields/clone.php:732
#, php-format
msgid "Labels will be displayed as %s"
msgstr ""
#: pro/fields/clone.php:731
#: pro/fields/clone.php:735
msgid "Prefix Field Labels"
msgstr ""
#: pro/fields/clone.php:746
#: pro/fields/clone.php:750
#, php-format
msgid "Values will be saved as %s"
msgstr ""
#: pro/fields/clone.php:749
#: pro/fields/clone.php:753
msgid "Prefix Field Names"
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
msgid "All fields from %s field group"
msgstr ""

View File

@ -147,7 +147,7 @@ class acf_settings_updates {
// license
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;
}
@ -299,7 +299,7 @@ class acf_settings_updates {
// connect
$args = array(
'_nonce' => wp_create_nonce('deactivate_pro_licence'),
'acf_license' => acf_pro_get_license(),
'acf_license' => acf_pro_get_license_key(),
'wp_url' => home_url(),
);

View File

@ -227,66 +227,143 @@ function acf_pro_get_remote_info() {
}
function acf_pro_is_license_active() {
// vars
$data = acf_pro_get_license( true );
$url = home_url();
if( !empty($data['url']) && !empty($data['key']) && $data['url'] == $url ) {
return true;
}
return false;
}
/*
* acf_pro_get_license
*
* This function will return the license
*
* @type function
* @date 20/09/2016
* @since 5.4.0
*
* @param n/a
* @return n/a
*/
function acf_pro_get_license( $all = false ) {
function acf_pro_get_license() {
// get option
$data = get_option('acf_pro_license');
$license = get_option('acf_pro_license');
// bail early if no value
if( !$license ) return false;
// decode
$data = base64_decode($data);
$license = maybe_unserialize(base64_decode($license));
// attempt deserialize
if( is_serialized( $data ) )
{
$data = maybe_unserialize($data);
// bail early if corrupt
if( !$license ) return false;
// 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
if( !$all )
{
$data = $data['key'];
}
// add notice
acf_add_admin_notice( __('Error validating license URL (website does not match). Please re-activate your license','acf'), 'error' );
return false;
return $data;
}
// 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(
'key' => $license,
'key' => $key,
'url' => home_url()
);
$save = maybe_serialize($save);
$save = base64_encode($save);
// encode
$save = base64_encode(maybe_serialize($save));
// update
return update_option('acf_pro_license', $save);
}

View File

@ -137,7 +137,7 @@
duplicate_field: function( $el ) {
// 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
@ -302,7 +302,7 @@
});
$fields.children('.acf-field-object').not('[data-id="acfcloneindex"]').each(function(){
$fields.children('.acf-field-object').each(function(){
// vars
var $field = $(this);
@ -527,23 +527,23 @@
_add: function( $el ){
// duplicate
$el2 = acf.duplicate( $el );
// remove sub fields
$el2.find('.acf-field-object').not('[data-id="acfcloneindex"]').remove();
// show add new message
$el2.find('.no-fields-message').show();
// reset layout meta values
$el2.find('.acf-fc-meta input').val('');
// add new tr
$el.after( $el2 );
var $el2 = acf.duplicate({
$el: $el,
after: function( $el, $el2 ){
// remove sub fields
$el2.find('.acf-field-object').remove();
// show add new message
$el2.find('.no-fields-message').show();
// reset layout meta values
$el2.find('.acf-fc-meta input').val('');
}
});
// render layout
@ -561,13 +561,9 @@
$el2 = acf.duplicate( $el );
// add new tr
$el.after( $el2 );
// fire action 'duplicate_field' and allow acf.pro logic to clean sub fields
acf.do_action('duplicate_field', $el2);
// render layout
this.render_layout( $el2 );
@ -591,7 +587,7 @@
// delete fields
$el.find('.acf-field-object').not('[data-id="acfcloneindex"]').each(function(){
$el.find('.acf-field-object').each(function(){
// delete without animation
acf.field_group.delete_field( $(this), false );

File diff suppressed because one or more lines are too long

View File

@ -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 ){
@ -1128,13 +1149,15 @@
$layout.removeClass('-collapsed');
acf.do_action('refresh', $layout);
acf.do_action('show', $layout, 'collapse');
// close
} else {
$layout.addClass('-collapsed');
acf.do_action('hide', $layout, 'collapse');
}
@ -1142,38 +1165,8 @@
this.sync();
// 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'),
});
// 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 );
}
});
// render
this.render_layout_title( $layout );
}
@ -1197,7 +1190,6 @@
actions: {
'ready': 'initialize',
'append': 'initialize',
'submit': 'close_sidebar',
'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);
// @codekit-prepend "../js/acf-pro.js";

File diff suppressed because one or more lines are too long

View File

@ -165,7 +165,7 @@ class acf_pro_updates {
if( acf_pro_is_license_active() ) {
$obj->package = acf_pro_get_remote_url('download', array(
'k' => acf_pro_get_license(),
'k' => acf_pro_get_license_key(),
'wp_url' => home_url(),
'acf_version' => acf_get_setting('version'),
'wp_version' => get_bloginfo('version'),

View File

@ -223,6 +223,10 @@ class acf_field_clone extends acf_field {
$field_group_fields = acf_get_fields($field_group);
// bail early if no field
if( empty($field_group_fields) ) continue;
// append
$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 ) {
// bail early if no field
if( !$field ) return __('Unknown field', 'acf');
// title
$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 ) {
// 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'] );
}

View File

@ -1065,7 +1065,7 @@ class acf_field_flexible_content extends acf_field {
}
}
// save false for empty value
if( empty($order) ) {

View File

@ -2,7 +2,7 @@
Contributors: elliotcondon
Tags: acf, advanced, custom, field, fields, custom field, custom fields, simple fields, magic fields, more fields, repeater, edit
Requires at least: 3.6.0
Tested up to: 4.6.0
Tested up to: 4.7.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
@ -106,8 +106,15 @@ http://support.advancedcustomfields.com/
== Changelog ==
= 5.4.6-RC1 =
* Flexible content field: Fixed bug where radio input values were lost when adding/duplicating a layout
= 5.4.6 =
* 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 =
* API: Fixed bug in `acf_form()` where AJAX validation ignored 'post_title'