Version Description
- API: Fixed bug causing have_rows() to fail with PHP 7.2
- Core: Fixed bug causing "Add new term" form to hide after submit
- Core: Minor fixes and improvements
- Language: Updated German translation - thanks to Ralf Koller
- Language: Updated Portuguese translation - thanks to Pedro Mendona
- Language: Updated Arabic translation - thanks to Karim Ramadan
- Language: Updated Spanish translation - thanks to Luis Rull Muoz
- Language: Updated Persian translation - thanks to Majix
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 5.6.8 |
Comparing to | |
See all releases |
Code changes from version 5.6.6 to 5.6.8
- acf.php +47 -63
- assets/css/acf-input.css +153 -150
- assets/js/acf-input.js +99 -51
- assets/js/acf-input.min.js +2 -2
- includes/admin/tools/class-acf-admin-tool-export.php +1 -1
- includes/admin/tools/class-acf-admin-tool-import.php +1 -1
- includes/admin/views/field-group-field.php +4 -3
- includes/admin/views/field-group-options.php +1 -1
- includes/api/api-field.php +1 -1
- includes/api/api-helpers.php +220 -107
- includes/api/api-template.php +0 -31
- includes/api/api-value.php +50 -6
- includes/deprecated.php +48 -1
- includes/fields/class-acf-field-date_picker.php +1 -1
- includes/fields/class-acf-field-date_time_picker.php +2 -2
- includes/fields/class-acf-field-select.php +4 -4
- includes/fields/class-acf-field-tab.php +1 -1
- includes/forms/form-customizer.php +36 -27
- includes/forms/form-post.php +2 -2
- includes/forms/form-taxonomy.php +10 -36
- includes/forms/form-widget.php +19 -14
- includes/json.php +2 -0
- includes/loop.php +4 -0
- lang/acf-ar.mo +0 -0
- lang/acf-ar.po +218 -249
- lang/acf-bg_BG.mo +0 -0
- lang/acf-bg_BG.po +2 -2
- lang/acf-cs_CZ.mo +0 -0
- lang/acf-cs_CZ.po +165 -262
- lang/acf-de_CH.mo +0 -0
- lang/acf-de_CH.po +773 -739
- lang/acf-de_DE.mo +0 -0
- lang/acf-de_DE.po +483 -409
- lang/acf-de_DE_formal.mo +0 -0
- lang/acf-de_DE_formal.po +625 -528
- lang/acf-es_ES.mo +0 -0
- lang/acf-es_ES.po +133 -180
- lang/acf-fa_IR.mo +0 -0
- lang/acf-fa_IR.po +204 -492
- lang/acf-fi.mo +0 -0
- lang/acf-fi.po +4 -4
- lang/acf-fr_FR.mo +0 -0
- lang/acf-fr_FR.po +6 -6
- lang/acf-he_IL.mo +0 -0
- lang/acf-he_IL.po +6 -5
- lang/acf-hu_HU.mo +0 -0
- lang/acf-hu_HU.po +200 -323
- lang/acf-id_ID.mo +0 -0
- lang/acf-id_ID.po +163 -283
- lang/acf-it_IT.mo +0 -0
- lang/acf-it_IT.po +7 -6
- lang/acf-ja.mo +0 -0
- lang/acf-ja.po +283 -443
- lang/acf-nb_NO.mo +0 -0
- lang/acf-nb_NO.po +2 -2
- lang/acf-nl_NL.mo +0 -0
- lang/acf-nl_NL.po +7 -6
- lang/acf-pl_PL.mo +0 -0
- lang/acf-pl_PL.po +2 -2
- lang/acf-pt_BR.mo +0 -0
- lang/acf-pt_BR.po +7 -6
- lang/acf-pt_PT.mo +0 -0
- lang/acf-pt_PT.po +52 -51
- lang/acf-ro_RO.mo +0 -0
- lang/acf-ro_RO.po +5 -5
- lang/acf-ru_RU.mo +0 -0
- lang/acf-ru_RU.po +8 -7
- lang/acf-sk_SK.mo +0 -0
- lang/acf-sk_SK.po +156 -282
- lang/acf-sv_SE.mo +0 -0
- lang/acf-sv_SE.po +2 -2
- lang/acf-tr_TR.mo +0 -0
- lang/acf-tr_TR.po +8 -7
- lang/acf-uk.mo +0 -0
- lang/acf-uk.po +8 -7
- lang/acf-zh_CN.mo +0 -0
- lang/acf-zh_CN.po +2 -2
- lang/acf.pot +222 -203
- readme.txt +16 -1
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: https://www.advancedcustomfields.com/
|
5 |
Description: Customise WordPress with powerful, professional and intuitive fields.
|
6 |
-
Version: 5.6.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
Copyright: Elliot Condon
|
@@ -13,12 +13,12 @@ Domain Path: /lang
|
|
13 |
|
14 |
if( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
15 |
|
16 |
-
if( ! class_exists('
|
17 |
|
18 |
-
class
|
19 |
|
20 |
/** @var string The plugin version number */
|
21 |
-
var $version = '5.6.
|
22 |
|
23 |
|
24 |
/** @var array The plugin settings array */
|
@@ -71,7 +71,7 @@ class acf {
|
|
71 |
'file' => __FILE__,
|
72 |
'basename' => plugin_basename( __FILE__ ),
|
73 |
'path' => plugin_dir_path( __FILE__ ),
|
74 |
-
'
|
75 |
|
76 |
// options
|
77 |
'show_admin' => true,
|
@@ -219,9 +219,9 @@ class acf {
|
|
219 |
$major = intval( acf_get_setting('version') );
|
220 |
|
221 |
|
222 |
-
//
|
223 |
// - allow another plugin to modify dir (maybe force SSL)
|
224 |
-
acf_update_setting('
|
225 |
|
226 |
|
227 |
// textdomain
|
@@ -484,14 +484,14 @@ class acf {
|
|
484 |
|
485 |
|
486 |
// scripts
|
487 |
-
wp_register_script('acf-input',
|
488 |
-
wp_register_script('acf-field-group',
|
489 |
|
490 |
|
491 |
// styles
|
492 |
-
wp_register_style('acf-global',
|
493 |
-
wp_register_style('acf-input',
|
494 |
-
wp_register_style('acf-field-group',
|
495 |
|
496 |
}
|
497 |
|
@@ -518,25 +518,17 @@ class acf {
|
|
518 |
|
519 |
// acf_field_key
|
520 |
if( $field_key = $wp_query->get('acf_field_key') ) {
|
521 |
-
|
522 |
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_name = %s", $field_key );
|
523 |
-
|
524 |
}
|
525 |
|
526 |
-
|
527 |
// acf_field_name
|
528 |
if( $field_name = $wp_query->get('acf_field_name') ) {
|
529 |
-
|
530 |
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_excerpt = %s", $field_name );
|
531 |
-
|
532 |
}
|
533 |
|
534 |
-
|
535 |
// acf_group_key
|
536 |
if( $group_key = $wp_query->get('acf_group_key') ) {
|
537 |
-
|
538 |
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_name = %s", $group_key );
|
539 |
-
|
540 |
}
|
541 |
|
542 |
|
@@ -562,71 +554,61 @@ class acf {
|
|
562 |
|
563 |
function define( $name, $value = true ) {
|
564 |
|
565 |
-
if( !defined($name) )
|
|
|
|
|
566 |
|
567 |
}
|
568 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
|
570 |
-
|
|
|
|
|
|
|
|
|
571 |
* get_setting
|
572 |
*
|
573 |
-
*
|
574 |
*
|
575 |
-
* @type function
|
576 |
* @date 28/09/13
|
577 |
* @since 5.0.0
|
578 |
*
|
579 |
-
* @param
|
580 |
-
* @
|
581 |
-
* @return $value
|
582 |
*/
|
583 |
|
584 |
-
function get_setting( $name
|
585 |
-
|
586 |
-
// check settings
|
587 |
-
if( isset($this->settings[ $name ]) ) {
|
588 |
-
|
589 |
-
$value = $this->settings[ $name ];
|
590 |
-
|
591 |
-
}
|
592 |
-
|
593 |
-
|
594 |
-
// filter for 3rd party customization
|
595 |
-
if( substr($name, 0, 1) !== '_' ) {
|
596 |
-
|
597 |
-
$value = apply_filters( "acf/settings/{$name}", $value );
|
598 |
-
|
599 |
-
}
|
600 |
-
|
601 |
-
|
602 |
-
// return
|
603 |
-
return $value;
|
604 |
-
|
605 |
}
|
606 |
|
607 |
-
|
608 |
-
/*
|
609 |
* update_setting
|
610 |
*
|
611 |
-
*
|
612 |
*
|
613 |
-
* @type function
|
614 |
* @date 28/09/13
|
615 |
* @since 5.0.0
|
616 |
*
|
617 |
-
* @param $name
|
618 |
-
* @param $value
|
619 |
* @return n/a
|
620 |
*/
|
621 |
|
622 |
function update_setting( $name, $value ) {
|
623 |
-
|
624 |
$this->settings[ $name ] = $value;
|
625 |
-
|
626 |
return true;
|
627 |
-
|
628 |
}
|
629 |
-
|
630 |
}
|
631 |
|
632 |
|
@@ -647,17 +629,19 @@ class acf {
|
|
647 |
*/
|
648 |
|
649 |
function acf() {
|
650 |
-
|
|
|
651 |
global $acf;
|
652 |
|
653 |
-
if( !isset($acf) ) {
|
654 |
|
655 |
-
|
656 |
-
|
|
|
657 |
$acf->initialize();
|
658 |
-
|
659 |
}
|
660 |
|
|
|
|
|
661 |
return $acf;
|
662 |
|
663 |
}
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: https://www.advancedcustomfields.com/
|
5 |
Description: Customise WordPress with powerful, professional and intuitive fields.
|
6 |
+
Version: 5.6.8
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
Copyright: Elliot Condon
|
13 |
|
14 |
if( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
15 |
|
16 |
+
if( ! class_exists('ACF') ) :
|
17 |
|
18 |
+
class ACF {
|
19 |
|
20 |
/** @var string The plugin version number */
|
21 |
+
var $version = '5.6.8';
|
22 |
|
23 |
|
24 |
/** @var array The plugin settings array */
|
71 |
'file' => __FILE__,
|
72 |
'basename' => plugin_basename( __FILE__ ),
|
73 |
'path' => plugin_dir_path( __FILE__ ),
|
74 |
+
'url' => plugin_dir_url( __FILE__ ),
|
75 |
|
76 |
// options
|
77 |
'show_admin' => true,
|
219 |
$major = intval( acf_get_setting('version') );
|
220 |
|
221 |
|
222 |
+
// update url
|
223 |
// - allow another plugin to modify dir (maybe force SSL)
|
224 |
+
acf_update_setting('url', plugin_dir_url( __FILE__ ));
|
225 |
|
226 |
|
227 |
// textdomain
|
484 |
|
485 |
|
486 |
// scripts
|
487 |
+
wp_register_script('acf-input', acf_get_url("assets/js/acf-input{$min}.js"), array('jquery', 'jquery-ui-core', 'jquery-ui-sortable', 'jquery-ui-resizable'), $version );
|
488 |
+
wp_register_script('acf-field-group', acf_get_url("assets/js/acf-field-group{$min}.js"), array('acf-input'), $version );
|
489 |
|
490 |
|
491 |
// styles
|
492 |
+
wp_register_style('acf-global', acf_get_url('assets/css/acf-global.css'), array(), $version );
|
493 |
+
wp_register_style('acf-input', acf_get_url('assets/css/acf-input.css'), array('acf-global'), $version );
|
494 |
+
wp_register_style('acf-field-group', acf_get_url('assets/css/acf-field-group.css'), array('acf-input'), $version );
|
495 |
|
496 |
}
|
497 |
|
518 |
|
519 |
// acf_field_key
|
520 |
if( $field_key = $wp_query->get('acf_field_key') ) {
|
|
|
521 |
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_name = %s", $field_key );
|
|
|
522 |
}
|
523 |
|
|
|
524 |
// acf_field_name
|
525 |
if( $field_name = $wp_query->get('acf_field_name') ) {
|
|
|
526 |
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_excerpt = %s", $field_name );
|
|
|
527 |
}
|
528 |
|
|
|
529 |
// acf_group_key
|
530 |
if( $group_key = $wp_query->get('acf_group_key') ) {
|
|
|
531 |
$where .= $wpdb->prepare(" AND {$wpdb->posts}.post_name = %s", $group_key );
|
|
|
532 |
}
|
533 |
|
534 |
|
554 |
|
555 |
function define( $name, $value = true ) {
|
556 |
|
557 |
+
if( !defined($name) ) {
|
558 |
+
define( $name, $value );
|
559 |
+
}
|
560 |
|
561 |
}
|
562 |
|
563 |
+
/**
|
564 |
+
* has_setting
|
565 |
+
*
|
566 |
+
* Returns true if has setting.
|
567 |
+
*
|
568 |
+
* @date 2/2/18
|
569 |
+
* @since 5.6.5
|
570 |
+
*
|
571 |
+
* @param string $name
|
572 |
+
* @return boolean
|
573 |
+
*/
|
574 |
|
575 |
+
function has_setting( $name ) {
|
576 |
+
return isset($this->settings[ $name ]);
|
577 |
+
}
|
578 |
+
|
579 |
+
/**
|
580 |
* get_setting
|
581 |
*
|
582 |
+
* Returns a setting.
|
583 |
*
|
|
|
584 |
* @date 28/09/13
|
585 |
* @since 5.0.0
|
586 |
*
|
587 |
+
* @param string $name
|
588 |
+
* @return mixed
|
|
|
589 |
*/
|
590 |
|
591 |
+
function get_setting( $name ) {
|
592 |
+
return isset($this->settings[ $name ]) ? $this->settings[ $name ] : null;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
593 |
}
|
594 |
|
595 |
+
/**
|
|
|
596 |
* update_setting
|
597 |
*
|
598 |
+
* Updates a setting.
|
599 |
*
|
|
|
600 |
* @date 28/09/13
|
601 |
* @since 5.0.0
|
602 |
*
|
603 |
+
* @param string $name
|
604 |
+
* @param mixed $value
|
605 |
* @return n/a
|
606 |
*/
|
607 |
|
608 |
function update_setting( $name, $value ) {
|
|
|
609 |
$this->settings[ $name ] = $value;
|
|
|
610 |
return true;
|
|
|
611 |
}
|
|
|
612 |
}
|
613 |
|
614 |
|
629 |
*/
|
630 |
|
631 |
function acf() {
|
632 |
+
|
633 |
+
// globals
|
634 |
global $acf;
|
635 |
|
|
|
636 |
|
637 |
+
// initialize
|
638 |
+
if( !isset($acf) ) {
|
639 |
+
$acf = new ACF();
|
640 |
$acf->initialize();
|
|
|
641 |
}
|
642 |
|
643 |
+
|
644 |
+
// return
|
645 |
return $acf;
|
646 |
|
647 |
}
|
assets/css/acf-input.css
CHANGED
@@ -25,10 +25,8 @@
|
|
25 |
position: relative;
|
26 |
}
|
27 |
.acf-field {
|
28 |
-
margin:
|
29 |
-
|
30 |
-
/* input */
|
31 |
-
/* error */
|
32 |
}
|
33 |
.acf-field p.description {
|
34 |
display: block;
|
@@ -64,15 +62,56 @@
|
|
64 |
}
|
65 |
.acf-field .acf-error-message:after {
|
66 |
content: "";
|
|
|
67 |
width: 0;
|
68 |
height: 0;
|
69 |
border: transparent 5px solid;
|
70 |
border-top-color: #F55E4F;
|
71 |
-
display: block;
|
72 |
position: absolute;
|
73 |
bottom: -10px;
|
74 |
left: 10px;
|
75 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
/*--------------------------------------------------------------------------------------------
|
77 |
*
|
78 |
* acf-fields
|
@@ -86,9 +125,6 @@
|
|
86 |
content: "";
|
87 |
display: table;
|
88 |
}
|
89 |
-
.acf-fields:after {
|
90 |
-
margin-bottom: -1px;
|
91 |
-
}
|
92 |
.acf-fields.-border {
|
93 |
border: #dfdfdf solid 1px;
|
94 |
background: #fff;
|
@@ -97,8 +133,10 @@
|
|
97 |
position: relative;
|
98 |
margin: 0;
|
99 |
padding: 15px 12px;
|
100 |
-
border-
|
101 |
-
|
|
|
|
|
102 |
}
|
103 |
td.acf-fields {
|
104 |
padding: 0 !important;
|
@@ -113,9 +151,6 @@ td.acf-fields {
|
|
113 |
padding: 0;
|
114 |
margin: 15px 0;
|
115 |
}
|
116 |
-
.acf-fields.-clear > .acf-field:after {
|
117 |
-
margin-bottom: 0;
|
118 |
-
}
|
119 |
.acf-fields.-clear > .acf-field[data-width] {
|
120 |
border: none !important;
|
121 |
}
|
@@ -152,6 +187,12 @@ td.acf-fields {
|
|
152 |
left: 0;
|
153 |
width: 20%;
|
154 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
.acf-fields.-left > .acf-field > .acf-label {
|
156 |
float: left;
|
157 |
width: 20%;
|
@@ -302,67 +343,9 @@ html[dir="rtl"] .acf-fields.-left > .acf-field > .acf-input {
|
|
302 |
.metabox-prefs label.acf-hidden {
|
303 |
display: none;
|
304 |
}
|
305 |
-
/*--------------------------------------------------------------------------------------------
|
306 |
-
*
|
307 |
-
* Basic ACF field wrap
|
308 |
-
*
|
309 |
-
*--------------------------------------------------------------------------------------------*/
|
310 |
-
/* add term */
|
311 |
-
#addtag div.acf-field.error {
|
312 |
-
border: 0 none;
|
313 |
-
padding: 8px 0;
|
314 |
-
}
|
315 |
-
/* width */
|
316 |
-
.acf-field[data-width] {
|
317 |
-
float: left;
|
318 |
-
clear: none;
|
319 |
-
/* next width */
|
320 |
-
/* table */
|
321 |
-
}
|
322 |
-
.acf-field[data-width] + .acf-field[data-width] {
|
323 |
-
border-left: 1px solid #eeeeee;
|
324 |
-
}
|
325 |
-
.acf-field[data-width]td {
|
326 |
-
float: none;
|
327 |
-
width: auto;
|
328 |
-
}
|
329 |
-
/* field width helpers */
|
330 |
-
/*
|
331 |
-
.acf-r0 {
|
332 |
-
border-top-width: 0 !important;
|
333 |
-
}
|
334 |
-
*/
|
335 |
-
.acf-c0 {
|
336 |
-
clear: left !important;
|
337 |
-
border-left-width: 0 !important;
|
338 |
-
}
|
339 |
-
/* rtl */
|
340 |
-
html[dir="rtl"] .acf-field[data-width] {
|
341 |
-
float: right;
|
342 |
-
}
|
343 |
-
html[dir="rtl"] .acf-field[data-width] + .acf-field {
|
344 |
-
clear: right;
|
345 |
-
}
|
346 |
-
html[dir="rtl"] .acf-field[data-width] + .acf-field[data-width] {
|
347 |
-
clear: none;
|
348 |
-
border-left: none;
|
349 |
-
border-right: 1px solid #eeeeee;
|
350 |
-
}
|
351 |
-
html[dir="rtl"] .acf-c0 {
|
352 |
-
clear: right !important;
|
353 |
-
border-left-width: 1px !important;
|
354 |
-
border-right-width: 0 !important;
|
355 |
-
}
|
356 |
-
/* left aligned */
|
357 |
-
.acf-fields.-left > .acf-field[data-width] {
|
358 |
-
float: none;
|
359 |
-
width: auto !important;
|
360 |
-
border-left-width: 0 !important;
|
361 |
-
border-right-width: 0 !important;
|
362 |
-
}
|
363 |
/*---------------------------------------------------------------------------------------------
|
364 |
*
|
365 |
-
*
|
366 |
*
|
367 |
*---------------------------------------------------------------------------------------------*/
|
368 |
.acf-field input[type="text"],
|
@@ -1273,9 +1256,7 @@ html[dir="rtl"] .acf-relationship .selection .values .acf-icon {
|
|
1273 |
}
|
1274 |
.acf-tab-wrap {
|
1275 |
clear: both;
|
1276 |
-
|
1277 |
-
.acf-tab-wrap:first-child {
|
1278 |
-
clear: none;
|
1279 |
}
|
1280 |
.acf-tab-group {
|
1281 |
border-bottom: #ccc solid 1px;
|
@@ -1315,14 +1296,13 @@ html[dir="rtl"] .acf-tab-group li {
|
|
1315 |
position: relative;
|
1316 |
z-index: 1;
|
1317 |
}
|
1318 |
-
/* inside acf-fields */
|
1319 |
.acf-fields > .acf-tab-wrap {
|
1320 |
background: #F9F9F9;
|
1321 |
}
|
1322 |
.acf-fields > .acf-tab-wrap .acf-tab-group {
|
1323 |
position: relative;
|
1324 |
z-index: 1;
|
1325 |
-
margin-
|
1326 |
border-top: #DFDFDF solid 1px;
|
1327 |
border-bottom: #DFDFDF solid 1px;
|
1328 |
}
|
@@ -1335,13 +1315,15 @@ html[dir="rtl"] .acf-tab-group li {
|
|
1335 |
.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
1336 |
background: #FFFFFF;
|
1337 |
}
|
1338 |
-
|
|
|
|
|
1339 |
.acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
1340 |
padding-left: 20%;
|
1341 |
/* mobile */
|
1342 |
/* rtl */
|
1343 |
}
|
1344 |
-
@media screen and (max-width:
|
1345 |
.acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
1346 |
padding-left: 10px;
|
1347 |
}
|
@@ -1356,16 +1338,60 @@ html[dir="rtl"] .acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
|
1356 |
padding-right: 10px;
|
1357 |
}
|
1358 |
}
|
1359 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1360 |
.acf-field + .acf-tab-wrap.-left:before {
|
1361 |
content: "";
|
1362 |
display: block;
|
1363 |
-
position:
|
1364 |
z-index: 1;
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
|
|
|
|
|
|
1369 |
}
|
1370 |
/* sidebar */
|
1371 |
.acf-fields.-sidebar {
|
@@ -1373,9 +1399,6 @@ html[dir="rtl"] .acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
|
1373 |
position: relative;
|
1374 |
/* before */
|
1375 |
/* rtl */
|
1376 |
-
/* tab wrap left */
|
1377 |
-
/* .acf-fields.-left */
|
1378 |
-
/* first tab group */
|
1379 |
}
|
1380 |
.acf-fields.-sidebar:before {
|
1381 |
content: "";
|
@@ -1398,48 +1421,6 @@ html[dir="rtl"] .acf-fields.-sidebar:before {
|
|
1398 |
left: auto;
|
1399 |
right: 0;
|
1400 |
}
|
1401 |
-
.acf-fields.-sidebar > .acf-tab-wrap.-left .acf-tab-group {
|
1402 |
-
position: absolute;
|
1403 |
-
left: 0;
|
1404 |
-
width: 20%;
|
1405 |
-
border: 0 none;
|
1406 |
-
padding: 0 !important;
|
1407 |
-
/* important overrides 'left aligned labels' */
|
1408 |
-
margin: 1px 0 0;
|
1409 |
-
/* rtl */
|
1410 |
-
}
|
1411 |
-
html[dir="rtl"] .acf-fields.-sidebar > .acf-tab-wrap.-left .acf-tab-group {
|
1412 |
-
left: auto;
|
1413 |
-
right: 0;
|
1414 |
-
}
|
1415 |
-
.acf-fields.-sidebar > .acf-tab-wrap.-left .acf-tab-group li {
|
1416 |
-
float: none;
|
1417 |
-
margin: -1px 0 0;
|
1418 |
-
}
|
1419 |
-
.acf-fields.-sidebar > .acf-tab-wrap.-left .acf-tab-group li a {
|
1420 |
-
border: 1px solid #ededed;
|
1421 |
-
font-size: 13px;
|
1422 |
-
line-height: 18px;
|
1423 |
-
color: #0073aa;
|
1424 |
-
padding: 10px;
|
1425 |
-
font-weight: normal;
|
1426 |
-
border-width: 1px 0;
|
1427 |
-
border-radius: 0;
|
1428 |
-
background: transparent;
|
1429 |
-
}
|
1430 |
-
.acf-fields.-sidebar > .acf-tab-wrap.-left .acf-tab-group li a:hover {
|
1431 |
-
color: #00a0d2;
|
1432 |
-
}
|
1433 |
-
.acf-fields.-sidebar > .acf-tab-wrap.-left .acf-tab-group li.active a {
|
1434 |
-
border-color: #DFDFDF;
|
1435 |
-
color: #000;
|
1436 |
-
margin-right: -1px;
|
1437 |
-
background: #fff;
|
1438 |
-
}
|
1439 |
-
html[dir="rtl"] .acf-fields.-sidebar > .acf-tab-wrap.-left .acf-tab-group li.active a {
|
1440 |
-
margin-right: 0;
|
1441 |
-
margin-left: -1px;
|
1442 |
-
}
|
1443 |
.acf-fields.-sidebar.-left {
|
1444 |
padding: 0 0 0 180px !important;
|
1445 |
/* rtl */
|
@@ -1452,17 +1433,17 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
1452 |
border-color: #dfdfdf;
|
1453 |
width: 180px;
|
1454 |
}
|
1455 |
-
.acf-fields.-sidebar.-left .acf-tab-wrap.-left .acf-tab-group {
|
1456 |
width: 180px;
|
1457 |
}
|
1458 |
-
.acf-fields.-sidebar.-left .acf-tab-wrap.-left .acf-tab-group li a {
|
1459 |
border-color: #e4e4e4;
|
1460 |
}
|
1461 |
-
.acf-fields.-sidebar.-left .acf-tab-wrap.-left .acf-tab-group li.active a {
|
1462 |
background: #F9F9F9;
|
1463 |
}
|
1464 |
-
.acf-fields.-sidebar .acf-tab
|
1465 |
-
border-top
|
1466 |
}
|
1467 |
.acf-fields.-clear > .acf-tab-wrap {
|
1468 |
background: transparent;
|
@@ -1470,7 +1451,8 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
1470 |
.acf-fields.-clear > .acf-tab-wrap .acf-tab-group {
|
1471 |
margin-top: 0;
|
1472 |
border-top: none;
|
1473 |
-
padding: 0;
|
|
|
1474 |
}
|
1475 |
.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {
|
1476 |
background: #e5e5e5;
|
@@ -1482,12 +1464,14 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
1482 |
background: #f1f1f1;
|
1483 |
}
|
1484 |
/* seamless */
|
1485 |
-
.acf-postbox.seamless {
|
1486 |
-
|
1487 |
-
|
|
|
|
|
1488 |
}
|
1489 |
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap {
|
1490 |
-
background:
|
1491 |
margin-bottom: 10px;
|
1492 |
padding-left: 12px;
|
1493 |
padding-right: 12px;
|
@@ -1504,21 +1488,31 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
1504 |
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
1505 |
background: #f1f1f1;
|
1506 |
}
|
1507 |
-
.acf-postbox.seamless > .acf-fields.-left {
|
1508 |
-
|
1509 |
-
|
1510 |
}
|
1511 |
-
.acf-postbox.seamless > .acf-fields
|
1512 |
margin-bottom: 0;
|
1513 |
}
|
1514 |
-
.acf-postbox.seamless > .acf-fields
|
1515 |
border-width: 1px 0 1px 1px !important;
|
1516 |
border-color: #cccccc;
|
1517 |
background: #e5e5e5;
|
1518 |
}
|
1519 |
-
.acf-postbox.seamless > .acf-fields
|
|
|
|
|
|
|
|
|
1520 |
background: #f1f1f1;
|
1521 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1522 |
.compat-item .acf-tab-wrap td {
|
1523 |
display: block;
|
1524 |
}
|
@@ -1921,7 +1915,7 @@ html[dir="rtl"] .acf-range-wrap .acf-prepend {
|
|
1921 |
}
|
1922 |
/*---------------------------------------------------------------------------------------------
|
1923 |
*
|
1924 |
-
* acf-
|
1925 |
*
|
1926 |
*---------------------------------------------------------------------------------------------*/
|
1927 |
.acf-accordion {
|
@@ -1963,6 +1957,7 @@ html[dir="rtl"] .acf-range-wrap .acf-prepend {
|
|
1963 |
/* field specific */
|
1964 |
.acf-field.acf-accordion {
|
1965 |
padding: 0;
|
|
|
1966 |
}
|
1967 |
.acf-field.acf-accordion .acf-accordion-title {
|
1968 |
padding: 12px !important;
|
@@ -2016,6 +2011,10 @@ tr.acf-field.acf-accordion .acf-accordion-content {
|
|
2016 |
padding: 0 12px 12px;
|
2017 |
}
|
2018 |
/* #addtag */
|
|
|
|
|
|
|
|
|
2019 |
#addtag > .acf-field.acf-accordion {
|
2020 |
padding-right: 0;
|
2021 |
margin-right: 5%;
|
@@ -2070,6 +2069,9 @@ tr.acf-accordion + tr.acf-accordion {
|
|
2070 |
.media-modal .compat-attachment-fields .acf-field.acf-accordion > .acf-input {
|
2071 |
width: 100%;
|
2072 |
}
|
|
|
|
|
|
|
2073 |
/*---------------------------------------------------------------------------------------------
|
2074 |
*
|
2075 |
* Attachment Form (single page)
|
@@ -2109,6 +2111,7 @@ tr.acf-accordion + tr.acf-accordion {
|
|
2109 |
/* WP sets tables to act as divs. ACF uses tables, so these muct be reset */
|
2110 |
.media-modal .compat-attachment-fields td.acf-input table {
|
2111 |
display: table;
|
|
|
2112 |
}
|
2113 |
.media-modal .compat-attachment-fields td.acf-input table tbody {
|
2114 |
display: table-row-group;
|
@@ -2522,13 +2525,13 @@ html[dir="rtl"] .form-table > tbody > .acf-tab-wrap td {
|
|
2522 |
* Term
|
2523 |
*
|
2524 |
*--------------------------------------------------------------------------------------------*/
|
2525 |
-
|
2526 |
padding-right: 5%;
|
2527 |
}
|
2528 |
-
|
2529 |
margin: 0;
|
2530 |
}
|
2531 |
-
|
2532 |
font-size: 12px;
|
2533 |
font-weight: normal;
|
2534 |
}
|
25 |
position: relative;
|
26 |
}
|
27 |
.acf-field {
|
28 |
+
margin: 15px 0;
|
29 |
+
clear: both;
|
|
|
|
|
30 |
}
|
31 |
.acf-field p.description {
|
32 |
display: block;
|
62 |
}
|
63 |
.acf-field .acf-error-message:after {
|
64 |
content: "";
|
65 |
+
display: block;
|
66 |
width: 0;
|
67 |
height: 0;
|
68 |
border: transparent 5px solid;
|
69 |
border-top-color: #F55E4F;
|
|
|
70 |
position: absolute;
|
71 |
bottom: -10px;
|
72 |
left: 10px;
|
73 |
}
|
74 |
+
.acf-fieldtd,
|
75 |
+
.acf-fieldtr {
|
76 |
+
margin: 0;
|
77 |
+
}
|
78 |
+
.acf-field[data-width] {
|
79 |
+
float: left;
|
80 |
+
clear: none;
|
81 |
+
/*
|
82 |
+
@media screen and (max-width: @sm) {
|
83 |
+
float: none;
|
84 |
+
width: auto;
|
85 |
+
border-left-width: 0;
|
86 |
+
border-right-width: 0;
|
87 |
+
}
|
88 |
+
*/
|
89 |
+
}
|
90 |
+
.acf-field[data-width] + .acf-field[data-width] {
|
91 |
+
border-left: 1px solid #eeeeee;
|
92 |
+
}
|
93 |
+
html[dir="rtl"] .acf-field[data-width] {
|
94 |
+
float: right;
|
95 |
+
}
|
96 |
+
html[dir="rtl"] .acf-field[data-width] + .acf-field[data-width] {
|
97 |
+
border-left: none;
|
98 |
+
border-right: 1px solid #eeeeee;
|
99 |
+
}
|
100 |
+
.acf-field[data-width]td,
|
101 |
+
.acf-field[data-width]tr {
|
102 |
+
float: none;
|
103 |
+
}
|
104 |
+
.acf-field.-c0 {
|
105 |
+
clear: both;
|
106 |
+
border-left-width: 0 !important;
|
107 |
+
}
|
108 |
+
html[dir="rtl"] .acf-field.-c0 {
|
109 |
+
border-left-width: 1px !important;
|
110 |
+
border-right-width: 0 !important;
|
111 |
+
}
|
112 |
+
.acf-field.-r0 {
|
113 |
+
border-top-width: 0 !important;
|
114 |
+
}
|
115 |
/*--------------------------------------------------------------------------------------------
|
116 |
*
|
117 |
* acf-fields
|
125 |
content: "";
|
126 |
display: table;
|
127 |
}
|
|
|
|
|
|
|
128 |
.acf-fields.-border {
|
129 |
border: #dfdfdf solid 1px;
|
130 |
background: #fff;
|
133 |
position: relative;
|
134 |
margin: 0;
|
135 |
padding: 15px 12px;
|
136 |
+
border-top: #EEEEEE solid 1px;
|
137 |
+
}
|
138 |
+
.acf-fields > .acf-field:first-child {
|
139 |
+
border-top-width: 0;
|
140 |
}
|
141 |
td.acf-fields {
|
142 |
padding: 0 !important;
|
151 |
padding: 0;
|
152 |
margin: 15px 0;
|
153 |
}
|
|
|
|
|
|
|
154 |
.acf-fields.-clear > .acf-field[data-width] {
|
155 |
border: none !important;
|
156 |
}
|
187 |
left: 0;
|
188 |
width: 20%;
|
189 |
}
|
190 |
+
.acf-fields.-left > .acf-field[data-width] {
|
191 |
+
float: none;
|
192 |
+
width: auto !important;
|
193 |
+
border-left-width: 0 !important;
|
194 |
+
border-right-width: 0 !important;
|
195 |
+
}
|
196 |
.acf-fields.-left > .acf-field > .acf-label {
|
197 |
float: left;
|
198 |
width: 20%;
|
343 |
.metabox-prefs label.acf-hidden {
|
344 |
display: none;
|
345 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
/*---------------------------------------------------------------------------------------------
|
347 |
*
|
348 |
+
* Inputs
|
349 |
*
|
350 |
*---------------------------------------------------------------------------------------------*/
|
351 |
.acf-field input[type="text"],
|
1256 |
}
|
1257 |
.acf-tab-wrap {
|
1258 |
clear: both;
|
1259 |
+
z-index: 1;
|
|
|
|
|
1260 |
}
|
1261 |
.acf-tab-group {
|
1262 |
border-bottom: #ccc solid 1px;
|
1296 |
position: relative;
|
1297 |
z-index: 1;
|
1298 |
}
|
|
|
1299 |
.acf-fields > .acf-tab-wrap {
|
1300 |
background: #F9F9F9;
|
1301 |
}
|
1302 |
.acf-fields > .acf-tab-wrap .acf-tab-group {
|
1303 |
position: relative;
|
1304 |
z-index: 1;
|
1305 |
+
margin-bottom: -1px;
|
1306 |
border-top: #DFDFDF solid 1px;
|
1307 |
border-bottom: #DFDFDF solid 1px;
|
1308 |
}
|
1315 |
.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
1316 |
background: #FFFFFF;
|
1317 |
}
|
1318 |
+
.acf-fields > .acf-tab-wrap:first-child .acf-tab-group {
|
1319 |
+
border-top: none;
|
1320 |
+
}
|
1321 |
.acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
1322 |
padding-left: 20%;
|
1323 |
/* mobile */
|
1324 |
/* rtl */
|
1325 |
}
|
1326 |
+
@media screen and (max-width: 782px) {
|
1327 |
.acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
1328 |
padding-left: 10px;
|
1329 |
}
|
1338 |
padding-right: 10px;
|
1339 |
}
|
1340 |
}
|
1341 |
+
.acf-tab-wrap.-left .acf-tab-group {
|
1342 |
+
position: absolute;
|
1343 |
+
left: 0;
|
1344 |
+
width: 20%;
|
1345 |
+
border: 0 none;
|
1346 |
+
padding: 0 !important;
|
1347 |
+
/* important overrides 'left aligned labels' */
|
1348 |
+
margin: 1px 0 0;
|
1349 |
+
}
|
1350 |
+
.acf-tab-wrap.-left .acf-tab-group li {
|
1351 |
+
float: none;
|
1352 |
+
margin: -1px 0 0;
|
1353 |
+
}
|
1354 |
+
.acf-tab-wrap.-left .acf-tab-group li a {
|
1355 |
+
border: 1px solid #ededed;
|
1356 |
+
font-size: 13px;
|
1357 |
+
line-height: 18px;
|
1358 |
+
color: #0073aa;
|
1359 |
+
padding: 10px;
|
1360 |
+
margin: 0;
|
1361 |
+
font-weight: normal;
|
1362 |
+
border-width: 1px 0;
|
1363 |
+
border-radius: 0;
|
1364 |
+
background: transparent;
|
1365 |
+
}
|
1366 |
+
.acf-tab-wrap.-left .acf-tab-group li a:hover {
|
1367 |
+
color: #00a0d2;
|
1368 |
+
}
|
1369 |
+
.acf-tab-wrap.-left .acf-tab-group li.active a {
|
1370 |
+
border-color: #DFDFDF;
|
1371 |
+
color: #000;
|
1372 |
+
margin-right: -1px;
|
1373 |
+
background: #fff;
|
1374 |
+
}
|
1375 |
+
html[dir="rtl"] .acf-tab-wrap.-left .acf-tab-group {
|
1376 |
+
left: auto;
|
1377 |
+
right: 0;
|
1378 |
+
}
|
1379 |
+
html[dir="rtl"] .acf-tab-wrap.-left .acf-tab-group li.active a {
|
1380 |
+
margin-right: 0;
|
1381 |
+
margin-left: -1px;
|
1382 |
+
}
|
1383 |
.acf-field + .acf-tab-wrap.-left:before {
|
1384 |
content: "";
|
1385 |
display: block;
|
1386 |
+
position: relative;
|
1387 |
z-index: 1;
|
1388 |
+
height: 10px;
|
1389 |
+
border-top: #DFDFDF solid 1px;
|
1390 |
+
border-bottom: #DFDFDF solid 1px;
|
1391 |
+
margin-bottom: -1px;
|
1392 |
+
}
|
1393 |
+
.acf-tab-wrap.-left:first-child .acf-tab-group li:first-child a {
|
1394 |
+
border-top: none;
|
1395 |
}
|
1396 |
/* sidebar */
|
1397 |
.acf-fields.-sidebar {
|
1399 |
position: relative;
|
1400 |
/* before */
|
1401 |
/* rtl */
|
|
|
|
|
|
|
1402 |
}
|
1403 |
.acf-fields.-sidebar:before {
|
1404 |
content: "";
|
1421 |
left: auto;
|
1422 |
right: 0;
|
1423 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1424 |
.acf-fields.-sidebar.-left {
|
1425 |
padding: 0 0 0 180px !important;
|
1426 |
/* rtl */
|
1433 |
border-color: #dfdfdf;
|
1434 |
width: 180px;
|
1435 |
}
|
1436 |
+
.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group {
|
1437 |
width: 180px;
|
1438 |
}
|
1439 |
+
.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li a {
|
1440 |
border-color: #e4e4e4;
|
1441 |
}
|
1442 |
+
.acf-fields.-sidebar.-left > .acf-tab-wrap.-left .acf-tab-group li.active a {
|
1443 |
background: #F9F9F9;
|
1444 |
}
|
1445 |
+
.acf-fields.-sidebar > .acf-field-tab + .acf-field {
|
1446 |
+
border-top: none;
|
1447 |
}
|
1448 |
.acf-fields.-clear > .acf-tab-wrap {
|
1449 |
background: transparent;
|
1451 |
.acf-fields.-clear > .acf-tab-wrap .acf-tab-group {
|
1452 |
margin-top: 0;
|
1453 |
border-top: none;
|
1454 |
+
padding-left: 0;
|
1455 |
+
padding-right: 0;
|
1456 |
}
|
1457 |
.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {
|
1458 |
background: #e5e5e5;
|
1464 |
background: #f1f1f1;
|
1465 |
}
|
1466 |
/* seamless */
|
1467 |
+
.acf-postbox.seamless > .acf-fields.-sidebar {
|
1468 |
+
margin-left: 0 !important;
|
1469 |
+
}
|
1470 |
+
.acf-postbox.seamless > .acf-fields.-sidebar:before {
|
1471 |
+
background: transparent;
|
1472 |
}
|
1473 |
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap {
|
1474 |
+
background: transparent;
|
1475 |
margin-bottom: 10px;
|
1476 |
padding-left: 12px;
|
1477 |
padding-right: 12px;
|
1488 |
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
1489 |
background: #f1f1f1;
|
1490 |
}
|
1491 |
+
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left:before {
|
1492 |
+
border-top: none;
|
1493 |
+
height: auto;
|
1494 |
}
|
1495 |
+
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group {
|
1496 |
margin-bottom: 0;
|
1497 |
}
|
1498 |
+
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group li a {
|
1499 |
border-width: 1px 0 1px 1px !important;
|
1500 |
border-color: #cccccc;
|
1501 |
background: #e5e5e5;
|
1502 |
}
|
1503 |
+
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap.-left .acf-tab-group li.active a {
|
1504 |
+
background: #f1f1f1;
|
1505 |
+
}
|
1506 |
+
.menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a,
|
1507 |
+
.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {
|
1508 |
background: #f1f1f1;
|
1509 |
}
|
1510 |
+
.menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover,
|
1511 |
+
.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a:hover,
|
1512 |
+
.menu-edit .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a,
|
1513 |
+
.widget .acf-fields.-clear > .acf-tab-wrap .acf-tab-group li.active a {
|
1514 |
+
background: #fff;
|
1515 |
+
}
|
1516 |
.compat-item .acf-tab-wrap td {
|
1517 |
display: block;
|
1518 |
}
|
1915 |
}
|
1916 |
/*---------------------------------------------------------------------------------------------
|
1917 |
*
|
1918 |
+
* acf-accordion
|
1919 |
*
|
1920 |
*---------------------------------------------------------------------------------------------*/
|
1921 |
.acf-accordion {
|
1957 |
/* field specific */
|
1958 |
.acf-field.acf-accordion {
|
1959 |
padding: 0;
|
1960 |
+
border-color: #dfdfdf;
|
1961 |
}
|
1962 |
.acf-field.acf-accordion .acf-accordion-title {
|
1963 |
padding: 12px !important;
|
2011 |
padding: 0 12px 12px;
|
2012 |
}
|
2013 |
/* #addtag */
|
2014 |
+
#addtag div.acf-field.error {
|
2015 |
+
border: 0 none;
|
2016 |
+
padding: 8px 0;
|
2017 |
+
}
|
2018 |
#addtag > .acf-field.acf-accordion {
|
2019 |
padding-right: 0;
|
2020 |
margin-right: 5%;
|
2069 |
.media-modal .compat-attachment-fields .acf-field.acf-accordion > .acf-input {
|
2070 |
width: 100%;
|
2071 |
}
|
2072 |
+
.media-modal .compat-attachment-fields .acf-field.acf-accordion .compat-attachment-fields > tbody > tr > td {
|
2073 |
+
padding-bottom: 5px;
|
2074 |
+
}
|
2075 |
/*---------------------------------------------------------------------------------------------
|
2076 |
*
|
2077 |
* Attachment Form (single page)
|
2111 |
/* WP sets tables to act as divs. ACF uses tables, so these muct be reset */
|
2112 |
.media-modal .compat-attachment-fields td.acf-input table {
|
2113 |
display: table;
|
2114 |
+
table-layout: auto;
|
2115 |
}
|
2116 |
.media-modal .compat-attachment-fields td.acf-input table tbody {
|
2117 |
display: table-row-group;
|
2525 |
* Term
|
2526 |
*
|
2527 |
*--------------------------------------------------------------------------------------------*/
|
2528 |
+
#acf-term-fields {
|
2529 |
padding-right: 5%;
|
2530 |
}
|
2531 |
+
#acf-term-fields > .acf-field > .acf-label {
|
2532 |
margin: 0;
|
2533 |
}
|
2534 |
+
#acf-term-fields > .acf-field > .acf-label label {
|
2535 |
font-size: 12px;
|
2536 |
font-weight: normal;
|
2537 |
}
|
assets/js/acf-input.js
CHANGED
@@ -3159,30 +3159,12 @@ var acf;
|
|
3159 |
|
3160 |
acf.layout = acf.model.extend({
|
3161 |
|
3162 |
-
active: 0,
|
3163 |
-
|
3164 |
actions: {
|
3165 |
-
'prepare 99': 'prepare',
|
3166 |
'refresh 99': 'refresh'
|
3167 |
},
|
3168 |
|
3169 |
-
prepare: function(){
|
3170 |
-
|
3171 |
-
// vars
|
3172 |
-
this.active = 1;
|
3173 |
-
|
3174 |
-
|
3175 |
-
// render
|
3176 |
-
this.refresh();
|
3177 |
-
|
3178 |
-
},
|
3179 |
-
|
3180 |
refresh: function( $el ){
|
3181 |
|
3182 |
-
// bail early if not yet active
|
3183 |
-
if( !this.active ) return;
|
3184 |
-
|
3185 |
-
|
3186 |
// defaults
|
3187 |
$el = $el || $('body');
|
3188 |
|
@@ -3386,7 +3368,7 @@ var acf;
|
|
3386 |
|
3387 |
|
3388 |
// reset fields
|
3389 |
-
$fields.removeClass('
|
3390 |
|
3391 |
|
3392 |
// loop
|
@@ -3431,11 +3413,11 @@ var acf;
|
|
3431 |
// add classes
|
3432 |
if( this_top == 0 ) {
|
3433 |
|
3434 |
-
$el.addClass('
|
3435 |
|
3436 |
} else if( cell == 0 ) {
|
3437 |
|
3438 |
-
$el.addClass('
|
3439 |
|
3440 |
}
|
3441 |
|
@@ -5113,12 +5095,21 @@ var acf;
|
|
5113 |
// reset scope
|
5114 |
this.$parent = false;
|
5115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5116 |
// find all targets
|
5117 |
var $targets = acf.get_fields(target, false, true);
|
5118 |
|
5119 |
-
// bail early if nothing found
|
5120 |
-
if( !$targets.length ) return false;
|
5121 |
-
|
5122 |
// refine scope if more than 1 found
|
5123 |
if( $targets.length > 1 ) {
|
5124 |
|
@@ -11659,6 +11650,14 @@ var acf;
|
|
11659 |
|
11660 |
var tabs = acf.model.extend({
|
11661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11662 |
events: {
|
11663 |
'click .acf-tab-button': '_click'
|
11664 |
},
|
@@ -11753,17 +11752,50 @@ var acf;
|
|
11753 |
|
11754 |
},
|
11755 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11756 |
createTab: function( $field ){
|
11757 |
|
|
|
|
|
|
|
|
|
11758 |
// vars
|
|
|
|
|
11759 |
var $wrap = this.getWrap( $field );
|
11760 |
var $button = $field.find('.acf-tab-button');
|
11761 |
var settings = $button.data();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11762 |
|
11763 |
|
11764 |
// create wrap
|
11765 |
if( !$wrap.exists() || settings.endpoint ) {
|
11766 |
$wrap = this.createTabWrap( $field, settings );
|
|
|
11767 |
}
|
11768 |
|
11769 |
|
@@ -11771,14 +11803,8 @@ var acf;
|
|
11771 |
var $tab = $('<li></li>').append( $button );
|
11772 |
|
11773 |
|
11774 |
-
//
|
11775 |
-
|
11776 |
-
|
11777 |
-
|
11778 |
-
// active
|
11779 |
-
var order = acf.getPreference('this.tabs') || [];
|
11780 |
-
var index = order[ groupIndex-1 ] || 0;
|
11781 |
-
if( index == tabIndex-1 ) {
|
11782 |
$tab.addClass('active');
|
11783 |
this.open( $field );
|
11784 |
} else {
|
@@ -11794,6 +11820,17 @@ var acf;
|
|
11794 |
$wrap.find('ul').append( $tab );
|
11795 |
|
11796 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11797 |
// return
|
11798 |
return $tab;
|
11799 |
},
|
@@ -11831,6 +11868,34 @@ var acf;
|
|
11831 |
// return
|
11832 |
return $wrap;
|
11833 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11834 |
}
|
11835 |
|
11836 |
});
|
@@ -11868,24 +11933,8 @@ var acf;
|
|
11868 |
|
11869 |
initialize: function(){
|
11870 |
|
11871 |
-
// vars
|
11872 |
-
var $field = this.$field;
|
11873 |
-
var $label = $field.children('.acf-label');
|
11874 |
-
var $input = $field.children('.acf-input');
|
11875 |
-
|
11876 |
-
|
11877 |
-
// bail early if is cell
|
11878 |
-
if( $field.is('td') ) return;
|
11879 |
-
|
11880 |
-
|
11881 |
// add tab
|
11882 |
-
|
11883 |
-
|
11884 |
-
|
11885 |
-
// remove
|
11886 |
-
$field.hide();
|
11887 |
-
$label.remove();
|
11888 |
-
$input.remove();
|
11889 |
|
11890 |
},
|
11891 |
|
@@ -11901,7 +11950,6 @@ var acf;
|
|
11901 |
var $tab = tabs.getTab( $wrap, key );
|
11902 |
var $li = $tab.parent();
|
11903 |
|
11904 |
-
|
11905 |
// bail early if $group does not exist (clone field)
|
11906 |
if( !$wrap.exists() ) return;
|
11907 |
|
@@ -11918,7 +11966,7 @@ var acf;
|
|
11918 |
|
11919 |
// select other tab if active
|
11920 |
if( $li.hasClass('active') ) {
|
11921 |
-
$wrap.find('
|
11922 |
}
|
11923 |
|
11924 |
},
|
3159 |
|
3160 |
acf.layout = acf.model.extend({
|
3161 |
|
|
|
|
|
3162 |
actions: {
|
|
|
3163 |
'refresh 99': 'refresh'
|
3164 |
},
|
3165 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3166 |
refresh: function( $el ){
|
3167 |
|
|
|
|
|
|
|
|
|
3168 |
// defaults
|
3169 |
$el = $el || $('body');
|
3170 |
|
3368 |
|
3369 |
|
3370 |
// reset fields
|
3371 |
+
$fields.removeClass('-r0 -c0').css({'min-height': 0});
|
3372 |
|
3373 |
|
3374 |
// loop
|
3413 |
// add classes
|
3414 |
if( this_top == 0 ) {
|
3415 |
|
3416 |
+
$el.addClass('-r0');
|
3417 |
|
3418 |
} else if( cell == 0 ) {
|
3419 |
|
3420 |
+
$el.addClass('-c0');
|
3421 |
|
3422 |
}
|
3423 |
|
5095 |
// reset scope
|
5096 |
this.$parent = false;
|
5097 |
|
5098 |
+
|
5099 |
+
// find siblings
|
5100 |
+
var selector = acf.get_selector( target );
|
5101 |
+
var $targets = $trigger.siblings( selector );
|
5102 |
+
|
5103 |
+
// return if found
|
5104 |
+
if( $targets.length ) {
|
5105 |
+
this.$parent = $trigger.parent();
|
5106 |
+
return $targets;
|
5107 |
+
}
|
5108 |
+
|
5109 |
+
|
5110 |
// find all targets
|
5111 |
var $targets = acf.get_fields(target, false, true);
|
5112 |
|
|
|
|
|
|
|
5113 |
// refine scope if more than 1 found
|
5114 |
if( $targets.length > 1 ) {
|
5115 |
|
11650 |
|
11651 |
var tabs = acf.model.extend({
|
11652 |
|
11653 |
+
$fields: [],
|
11654 |
+
|
11655 |
+
actions: {
|
11656 |
+
'prepare 15': 'initialize',
|
11657 |
+
'append 15': 'initialize',
|
11658 |
+
'refresh 15': 'refresh'
|
11659 |
+
},
|
11660 |
+
|
11661 |
events: {
|
11662 |
'click .acf-tab-button': '_click'
|
11663 |
},
|
11752 |
|
11753 |
},
|
11754 |
|
11755 |
+
addTab: function( $field ){
|
11756 |
+
this.$fields.push( $field );
|
11757 |
+
},
|
11758 |
+
|
11759 |
+
initialize: function(){
|
11760 |
+
|
11761 |
+
// bail ealry if no fields
|
11762 |
+
if( !this.$fields.length ) return;
|
11763 |
+
|
11764 |
+
// loop
|
11765 |
+
for( var i = 0; i < this.$fields.length; i++) {
|
11766 |
+
this.createTab( this.$fields[ i ] );
|
11767 |
+
}
|
11768 |
+
|
11769 |
+
// reset
|
11770 |
+
this.$fields = [];
|
11771 |
+
|
11772 |
+
},
|
11773 |
+
|
11774 |
createTab: function( $field ){
|
11775 |
|
11776 |
+
// bail early if is cell
|
11777 |
+
if( $field.is('td') ) return false;
|
11778 |
+
|
11779 |
+
|
11780 |
// vars
|
11781 |
+
var $label = $field.children('.acf-label');
|
11782 |
+
var $input = $field.children('.acf-input');
|
11783 |
var $wrap = this.getWrap( $field );
|
11784 |
var $button = $field.find('.acf-tab-button');
|
11785 |
var settings = $button.data();
|
11786 |
+
var open = false;
|
11787 |
+
|
11788 |
+
|
11789 |
+
// remove
|
11790 |
+
$field.hide();
|
11791 |
+
$label.remove();
|
11792 |
+
$input.remove();
|
11793 |
|
11794 |
|
11795 |
// create wrap
|
11796 |
if( !$wrap.exists() || settings.endpoint ) {
|
11797 |
$wrap = this.createTabWrap( $field, settings );
|
11798 |
+
open = true;
|
11799 |
}
|
11800 |
|
11801 |
|
11803 |
var $tab = $('<li></li>').append( $button );
|
11804 |
|
11805 |
|
11806 |
+
// open
|
11807 |
+
if( open ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
11808 |
$tab.addClass('active');
|
11809 |
this.open( $field );
|
11810 |
} else {
|
11820 |
$wrap.find('ul').append( $tab );
|
11821 |
|
11822 |
|
11823 |
+
// toggle active tab
|
11824 |
+
// previous attempts to integrate with above 'open' variable were uncessefull
|
11825 |
+
// this separate toggle logic ensures the tab exists
|
11826 |
+
tabIndex++;
|
11827 |
+
var order = acf.getPreference('this.tabs') || [];
|
11828 |
+
var index = order[ groupIndex-1 ] || 0;
|
11829 |
+
if( index == tabIndex-1 && !open ) {
|
11830 |
+
this.toggle( $button );
|
11831 |
+
}
|
11832 |
+
|
11833 |
+
|
11834 |
// return
|
11835 |
return $tab;
|
11836 |
},
|
11868 |
// return
|
11869 |
return $wrap;
|
11870 |
|
11871 |
+
},
|
11872 |
+
|
11873 |
+
refresh: function( $el ){
|
11874 |
+
|
11875 |
+
// loop
|
11876 |
+
$('.acf-tab-wrap', $el).each(function(){
|
11877 |
+
|
11878 |
+
// vars
|
11879 |
+
var $wrap = $(this);
|
11880 |
+
|
11881 |
+
|
11882 |
+
// fix left aligned min-height
|
11883 |
+
if( $wrap.hasClass('-left') ) {
|
11884 |
+
|
11885 |
+
// vars
|
11886 |
+
var $parent = $wrap.parent();
|
11887 |
+
var attribute = $parent.is('td') ? 'height' : 'min-height';
|
11888 |
+
|
11889 |
+
// find height (minus 1 for border-bottom)
|
11890 |
+
var height = $wrap.position().top + $wrap.children('ul').outerHeight(true) - 1;
|
11891 |
+
|
11892 |
+
// add css
|
11893 |
+
$parent.css(attribute, height);
|
11894 |
+
|
11895 |
+
}
|
11896 |
+
|
11897 |
+
});
|
11898 |
+
|
11899 |
}
|
11900 |
|
11901 |
});
|
11933 |
|
11934 |
initialize: function(){
|
11935 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11936 |
// add tab
|
11937 |
+
tabs.addTab( this.$field );
|
|
|
|
|
|
|
|
|
|
|
|
|
11938 |
|
11939 |
},
|
11940 |
|
11950 |
var $tab = tabs.getTab( $wrap, key );
|
11951 |
var $li = $tab.parent();
|
11952 |
|
|
|
11953 |
// bail early if $group does not exist (clone field)
|
11954 |
if( !$wrap.exists() ) return;
|
11955 |
|
11966 |
|
11967 |
// select other tab if active
|
11968 |
if( $li.hasClass('active') ) {
|
11969 |
+
$wrap.find('li:not(.'+hidden+'):first a').trigger('click');
|
11970 |
}
|
11971 |
|
11972 |
},
|
assets/js/acf-input.min.js
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
!function(e,t){"use strict";var i=function(){function e(){return u}function t(e,t,i,a){return"string"==typeof e&&"function"==typeof t&&(i=parseInt(i||10,10),l("actions",e,t,i,a)),f}function i(){var e=Array.prototype.slice.call(arguments),t=e.shift();return"string"==typeof t&&d("actions",t,e),f}function a(e,t){return"string"==typeof e&&r("actions",e,t),f}function n(e,t,i,a){return"string"==typeof e&&"function"==typeof t&&(i=parseInt(i||10,10),l("filters",e,t,i,a)),f}function s(){var e=Array.prototype.slice.call(arguments),t=e.shift();return"string"==typeof t?d("filters",t,e):f}function o(e,t){return"string"==typeof e&&r("filters",e,t),f}function r(e,t,i,a){if(u[e][t])if(i){var n=u[e][t],s;if(a)for(s=n.length;s--;){var o=n[s];o.callback===i&&o.context===a&&n.splice(s,1)}else for(s=n.length;s--;)n[s].callback===i&&n.splice(s,1)}else u[e][t]=[]}function l(e,t,i,a,n){var s={callback:i,priority:a,context:n},o=u[e][t];o?(o.push(s),o=c(o)):o=[s],u[e][t]=o}function c(e){for(var t,i,a,n=1,s=e.length;n<s;n++){for(t=e[n],i=n;(a=e[i-1])&&a.priority>t.priority;)e[i]=e[i-1],--i;e[i]=t}return e}function d(e,t,i){var a=u[e][t];if(!a)return"filters"===e&&i[0];var n=0,s=a.length;if("filters"===e)for(;n<s;n++)i[0]=a[n].callback.apply(a[n].context,i);else for(;n<s;n++)a[n].callback.apply(a[n].context,i);return"filters"!==e||i[0]}var f={removeFilter:o,applyFilters:s,addFilter:n,removeAction:a,doAction:i,addAction:t,storage:e},u={actions:{},filters:{}};return f};e.wp=e.wp||{},e.wp.hooks=new i}(window);var acf;!function($){$.fn.exists=function(){return $(this).length>0},$.fn.outerHTML=function(){return $(this).get(0).outerHTML},acf={l10n:{},o:{},update:function(e,t){this.o[e]=t},get:function(e){return void 0!==this.o[e]?this.o[e]:null},_e:function(e,t){t=t||!1;var i=this.l10n[e]||"";return t&&(i=i[t]||""),i},add_action:function(){for(var e=arguments[0].split(" "),t=e.length,i=0;i<t;i++)arguments[0]="acf/"+e[i],wp.hooks.addAction.apply(this,arguments);return this},remove_action:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.removeAction.apply(this,arguments),this},do_action:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.doAction.apply(this,arguments),this},add_filter:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.addFilter.apply(this,arguments),this},remove_filter:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.removeFilter.apply(this,arguments),this},apply_filters:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.applyFilters.apply(this,arguments)},get_selector:function(e){e=e||"";var t=".acf-field";if($.isPlainObject(e))if($.isEmptyObject(e))e="";else for(k in e){e=e[k];break}return e&&(t+="-"+e,t=t.split("_").join("-"),t=t.split("field-field-").join("field-")),t},get_fields:function(e,t,i){e=e||"",t=t||!1,i=i||!1;var a=this.get_selector(e),n=$(a,t);return!1!==t&&t.each(function(){$(this).is(a)&&(n=n.add($(this)))}),i||(n=n.not(".acf-clone .acf-field"),n=acf.apply_filters("get_fields",n)),n},get_field:function(e,t){e=e||"",t=t||!1;var i=this.get_fields(e,t,!0);return!!i.exists()&&i.first()},get_closest_field:function(e,t){return t=t||"",e.closest(this.get_selector(t))},get_field_wrap:function(e){return e.closest(this.get_selector())},get_field_key:function(e){return e.data("key")},get_field_type:function(e){return e.data("type")},get_data:function(e,t){var i=e.data();return"object"==typeof t&&(i=this.parse_args(i,t)),i},get_uniqid:function(e,t){void 0===e&&(e="");var i,a=function(e,t){return e=parseInt(e,10).toString(16),t<e.length?e.slice(e.length-t):t>e.length?Array(t-e.length+1).join("0")+e:e};return this.php_js||(this.php_js={}),this.php_js.uniqidSeed||(this.php_js.uniqidSeed=Math.floor(123456789*Math.random())),this.php_js.uniqidSeed++,i=e,i+=a(parseInt((new Date).getTime()/1e3,10),8),i+=a(this.php_js.uniqidSeed,5),t&&(i+=(10*Math.random()).toFixed(8).toString()),i},serialize_form:function(){return this.serialize.apply(this,arguments)},serialize:function(e,t){t=t||"";var i={},a={},n=e.find("select, textarea, input").serializeArray();return $.each(n,function(e,n){var s=n.name,o=n.value;if(t){if(0!==s.indexOf(t))return;s=s.slice(t.length),"["==s.slice(0,1)&&(s=s.slice(1).replace("]",""))}"[]"===s.slice(-2)&&(s=s.slice(0,-2),void 0===a[s]&&(a[s]=-1),a[s]++,s+="["+a[s]+"]"),i[s]=o}),i},disable:function(e,t){if(t=t||"",e.hasClass("acf-disabled"))return!1;if(e.prop("disabled",!0),t){var i=e.data("acf_disabled")||[];i.indexOf(t)<0&&(i.push(t),e.data("acf_disabled",i))}return!0},enable:function(e,t){if(t=t||"",e.hasClass("acf-disabled"))return!1;var i=e.data("acf_disabled")||[];if(t){var a=i.indexOf(t);a>-1&&(i.splice(a,1),e.data("acf_disabled",i))}return!i.length&&(e.prop("disabled",!1),!0)},disable_el:function(e,t){t=t||"",e.find("select, textarea, input").each(function(){acf.disable($(this),t)})},disable_form:function(e,t){this.disable_el.apply(this,arguments)},enable_el:function(e,t){t=t||"",e.find("select, textarea, input").each(function(){acf.enable($(this),t)})},enable_form:function(e,t){this.enable_el.apply(this,arguments)},remove_tr:function(e,t){var i=e.height(),a=e.children().length;e.addClass("acf-remove-element"),setTimeout(function(){e.removeClass("acf-remove-element"),e.html('<td style="padding:0; height:'+i+'px" colspan="'+a+'"></td>'),e.children("td").animate({height:0},250,function(){e.remove(),"function"==typeof t&&t()})},250)},remove_el:function(e,t,i){i=i||0;var a=e.height(),n=e.width(),s=e.css("margin"),o=e.outerHeight(!0);acf.do_action("remove",e),e.wrap('<div class="acf-temp-remove" style="height:'+o+'px"></div>');var r=e.parent();e.css({height:a,width:n,margin:s,position:"absolute"}),setTimeout(function(){r.css({opacity:0,height:i})},50),setTimeout(function(){r.remove(),"function"==typeof t&&t.apply(this,arguments)},301)},isset:function(){var e=arguments,t=e.length,a=null,n;if(0===t)throw new Error("Empty isset");for(a=e[0],i=1;i<t;i++){if(e[i]===n||a[e[i]]===n)return!1;a=a[e[i]]}return!0},maybe_get:function(e,t,i){void 0===i&&(i=null),keys=String(t).split(".");for(var a in keys){var t=keys[a];if(void 0===e[t])return i;e=e[t]}return e},open_popup:function(e){if($popup=$("body > #acf-popup"),$popup.exists())return update_popup(e);var t=['<div id="acf-popup">','<div class="acf-popup-box acf-box">','<div class="title"><h3></h3><a href="#" class="acf-icon -cancel grey acf-close-popup"></a></div>','<div class="inner"></div>','<div class="loading"><i class="acf-loading"></i></div>',"</div>",'<div class="bg"></div>',"</div>"].join("");return $("body").append(t),$("#acf-popup").on("click",".bg, .acf-close-popup",function(e){e.preventDefault(),acf.close_popup()}),this.update_popup(e)},update_popup:function(e){return $popup=$("#acf-popup"),!!$popup.exists()&&(e=$.extend({},{title:"",content:"",width:0,height:0,loading:!1},e),e.title&&$popup.find(".title h3").html(e.title),e.content&&($inner=$popup.find(".inner:first"),$inner.html(e.content),acf.do_action("append",$inner),$inner.attr("style","position: relative;"),e.height=$inner.outerHeight(),$inner.removeAttr("style")),e.width&&$popup.find(".acf-popup-box").css({width:e.width,"margin-left":0-e.width/2}),e.height&&(e.height+=44,$popup.find(".acf-popup-box").css({height:e.height,"margin-top":0-e.height/2})),e.loading?$popup.find(".loading").show():$popup.find(".loading").hide(),$popup)},close_popup:function(){$popup=$("#acf-popup"),$popup.exists()&&$popup.remove()},update_user_setting:function(e,t){$.ajax({url:acf.get("ajaxurl"),dataType:"html",type:"post",data:acf.prepare_for_ajax({action:"acf/update_user_setting",name:e,value:t})})},prepare_for_ajax:function(e){var t={};return $.each(e,function(e,i){$.isPlainObject(i)&&!$.isEmptyObject(i)?$.each(i,function(i,a){i+="";var n=i.indexOf("[");i=0==n?e+i:n>0?e+"["+i.slice(0,n)+"]"+i.slice(n):e+"["+i+"]",t[i]=a}):t[e]=i}),t.nonce=acf.get("nonce"),t.post_id=acf.get("post_id"),t=acf.apply_filters("prepare_for_ajax",t)},is_ajax_success:function(e){return!(!e||!e.success)},get_ajax_message:function(e){var t={text:"",type:"error"};return e?(e.success&&(t.type="success"),e.data&&e.data.message&&(t.text=e.data.message),e.data&&e.data.error&&(t.text=e.data.error),t):t},is_in_view:function(e){var t=e.offset().top,i=t+e.height();if(t===i)return!1;var a=$(window).scrollTop();return i<=a+$(window).height()&&t>=a},val:function(e,t){var i=e.val();e.val(t),t!=i&&e.trigger("change")},str_replace:function(e,t,i){return i.split(e).join(t)},str_sanitize:function(e){var t={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","ß":"s","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Ĉ":"C","ĉ":"c","Ċ":"C","ċ":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"D","đ":"d","Ē":"E","ē":"e","Ĕ":"E","ĕ":"e","Ė":"E","ė":"e","Ę":"E","ę":"e","Ě":"E","ě":"e","Ĝ":"G","ĝ":"g","Ğ":"G","ğ":"g","Ġ":"G","ġ":"g","Ģ":"G","ģ":"g","Ĥ":"H","ĥ":"h","Ħ":"H","ħ":"h","Ĩ":"I","ĩ":"i","Ī":"I","ī":"i","Ĭ":"I","ĭ":"i","Į":"I","į":"i","İ":"I","ı":"i","IJ":"IJ","ij":"ij","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","Ĺ":"L","ĺ":"l","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ŀ":"L","ŀ":"l","Ł":"l","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","ʼn":"n","Ō":"O","ō":"o","Ŏ":"O","ŏ":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ŗ":"R","ŗ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ŝ":"S","ŝ":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ŧ":"T","ŧ":"t","Ũ":"U","ũ":"u","Ū":"U","ū":"u","Ŭ":"U","ŭ":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","ſ":"s","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Ǎ":"A","ǎ":"a","Ǐ":"I","ǐ":"i","Ǒ":"O","ǒ":"o","Ǔ":"U","ǔ":"u","Ǖ":"U","ǖ":"u","Ǘ":"U","ǘ":"u","Ǚ":"U","ǚ":"u","Ǜ":"U","ǜ":"u","Ǻ":"A","ǻ":"a","Ǽ":"AE","ǽ":"ae","Ǿ":"O","ǿ":"o"," ":"_","'":"","?":"","/":"","\\":"",".":"",",":"","`":"",">":"","<":"",'"':"","[":"","]":"","|":"","{":"","}":"","(":"",")":""},i=/\W/g,a=function(e){return void 0!==t[e]?t[e]:e};return e=e.replace(i,a),e=e.toLowerCase()},addslashes:function(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},esc_html:function(e){var t={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};return String(e).replace(/[&<>"'`=\/]/g,function(e){return t[e]})},render_select:function(e,t){var i=e.val();e.html(""),t&&$.each(t,function(t,a){var n=e;a.group&&(n=e.find('optgroup[label="'+a.group+'"]'),n.exists()||(n=$('<optgroup label="'+a.group+'"></optgroup>'),e.append(n))),n.append('<option value="'+a.value+'">'+acf.esc_html(a.label)+"</option>"),i==a.value&&e.prop("selectedIndex",t)})},duplicate:function(e){void 0!==e.length&&(e={$el:e}),e=acf.parse_args(e,{$el:!1,search:"",replace:"",before:function(e){},after:function(e,t){},append:function(e,t){e.after(t)}});var t=e.$el,i;e.search||(e.search=t.attr("data-id")),e.replace||(e.replace=acf.get_uniqid()),e.before.apply(this,[t]),acf.do_action("before_duplicate",t);var i=t.clone();return i.removeClass("acf-clone"),acf.do_action("remove",i),e.search&&(i.attr("data-id",e.replace),i.find('[id*="'+e.search+'"]').each(function(){$(this).attr("id",$(this).attr("id").replace(e.search,e.replace))}),i.find('[name*="'+e.search+'"]').each(function(){$(this).attr("name",$(this).attr("name").replace(e.search,e.replace))}),i.find('label[for*="'+e.search+'"]').each(function(){$(this).attr("for",$(this).attr("for").replace(e.search,e.replace))})),i.find(".ui-sortable").removeClass("ui-sortable"),acf.do_action("after_duplicate",t,i),e.after.apply(this,[t,i]),e.append.apply(this,[t,i]),setTimeout(function(){acf.do_action("append",i)},1),i},decode:function(e){return $("<textarea/>").html(e).text()},parse_args:function(e,t){return"object"!=typeof e&&(e={}),"object"!=typeof t&&(t={}),$.extend({},t,e)},enqueue_script:function(e,t){var i=document.createElement("script");i.type="text/javascript",i.src=e,i.async=!0,i.readyState?i.onreadystatechange=function(){"loaded"!=i.readyState&&"complete"!=i.readyState||(i.onreadystatechange=null,t())}:i.onload=function(){t()},document.body.appendChild(i)}},acf.model={actions:{},filters:{},events:{},extend:function(e){var t=$.extend({},this,e);return $.each(t.actions,function(e,i){t._add_action(e,i)}),$.each(t.filters,function(e,i){t._add_filter(e,i)}),$.each(t.events,function(e,i){t._add_event(e,i)}),t},_add_action:function(e,t){var i=this,a=e.split(" "),e=a[0]||"",n=a[1]||10;acf.add_action(e,i[t],n,i)},_add_filter:function(e,t){var i=this,a=e.split(" "),e=a[0]||"",n=a[1]||10;acf.add_filter(e,i[t],n,i)},_add_event:function(e,t){var i=this,a=e.indexOf(" "),n=a>0?e.substr(0,a):e,s=a>0?e.substr(a+1):"",o=function(e){e.$el=$(this),"function"==typeof i.event&&(e=i.event(e)),i[t].apply(i,arguments)};s?$(document).on(n,s,o):$(document).on(n,o)},get:function(e,t){return t=t||null,void 0!==this[e]&&(t=this[e]),t},set:function(e,t){return this[e]=t,"function"==typeof this["_set_"+e]&&this["_set_"+e].apply(this),this}},acf.field=acf.model.extend({type:"",o:{},$field:null,_add_action:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_action(e,function(e){i.set("$field",e),i[t].apply(i,arguments)})},_add_filter:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_filter(e,function(e){i.set("$field",e),i[t].apply(i,arguments)})},_add_event:function(e,t){var i=this,a=e.substr(0,e.indexOf(" ")),n=e.substr(e.indexOf(" ")+1),s=acf.get_selector(i.type);$(document).on(a,s+" "+n,function(e){var a=$(this),n=acf.get_closest_field(a,i.type);n.length&&(n.is(i.$field)||i.set("$field",n),e.$el=a,e.$field=n,i[t].apply(i,[e]))})},_set_$field:function(){"function"==typeof this.focus&&this.focus()},doFocus:function(e){return this.set("$field",e)}}),acf.fields=acf.model.extend({actions:{prepare:"_prepare",prepare_field:"_prepare_field",ready:"_ready",ready_field:"_ready_field",append:"_append",append_field:"_append_field",load:"_load",load_field:"_load_field",remove:"_remove",remove_field:"_remove_field",sortstart:"_sortstart",sortstart_field:"_sortstart_field",sortstop:"_sortstop",sortstop_field:"_sortstop_field",show:"_show",show_field:"_show_field",hide:"_hide",hide_field:"_hide_field"},_prepare:function(e){acf.get_fields("",e).each(function(){acf.do_action("prepare_field",$(this))})},_prepare_field:function(e){acf.do_action("prepare_field/type="+e.data("type"),e)},_ready:function(e){acf.get_fields("",e).each(function(){acf.do_action("ready_field",$(this))})},_ready_field:function(e){acf.do_action("ready_field/type="+e.data("type"),e)},_append:function(e){acf.get_fields("",e).each(function(){acf.do_action("append_field",$(this))})},_append_field:function(e){acf.do_action("append_field/type="+e.data("type"),e)},_load:function(e){acf.get_fields("",e).each(function(){acf.do_action("load_field",$(this))})},_load_field:function(e){acf.do_action("load_field/type="+e.data("type"),e)},_remove:function(e){acf.get_fields("",e).each(function(){acf.do_action("remove_field",$(this))})},_remove_field:function(e){acf.do_action("remove_field/type="+e.data("type"),e)},_sortstart:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("sortstart_field",$(this),t)})},_sortstart_field:function(e,t){acf.do_action("sortstart_field/type="+e.data("type"),e,t)},_sortstop:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("sortstop_field",$(this),t)})},_sortstop_field:function(e,t){acf.do_action("sortstop_field/type="+e.data("type"),e,t)},_hide:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("hide_field",$(this),t)})},_hide_field:function(e,t){acf.do_action("hide_field/type="+e.data("type"),e,t)},_show:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("show_field",$(this),t)})},_show_field:function(e,t){acf.do_action("show_field/type="+e.data("type"),e,t)}}),$(document).ready(function(){acf.do_action("ready",$("body"))}),$(window).on("load",function(){acf.do_action("load",$("body"))}),acf.layout=acf.model.extend({active:0,actions:{"prepare 99":"prepare","refresh 99":"refresh"},prepare:function(){this.active=1,this.refresh()},refresh:function(e){this.active&&(e=e||$("body"),this.render_tables(e),this.render_groups(e))},render_tables:function(e){var t=this,i=e.find(".acf-table:visible");e.is("table")?i=i.add(e):e.is("tr")&&(i=i.add(e.closest("table"))),i.each(function(){t.render_table($(this))})},render_table:function(e){var t=e.find("> thead th.acf-th"),i=1,a=100;if(t.exists()){var n=e.find("> tbody > tr"),s=n.find("> td.acf-field");n.hasClass("acf-clone")&&n.length>1&&(s=n.not(".acf-clone").find("> td.acf-field")),t.each(function(){var e=$(this),t=e.attr("data-key"),i=s.filter('[data-key="'+t+'"]');i.removeClass("appear-empty"),e.removeClass("hidden-by-conditional-logic"),i.exists()&&(0==i.not(".hidden-by-conditional-logic").length?e.addClass("hidden-by-conditional-logic"):i.filter(".hidden-by-conditional-logic").addClass("appear-empty"))}),t.css("width","auto"),t=t.not(".hidden-by-conditional-logic"),i=t.length,t.filter("[data-width]").each(function(){var e=parseInt($(this).attr("data-width"));a-=e,$(this).css("width",e+"%")}),t=t.not("[data-width]"),t.each(function(){var e=a/t.length;$(this).css("width",e+"%")}),e.find(".acf-row .acf-field.-collapsed-target").removeAttr("colspan"),e.find(".acf-row.-collapsed .acf-field.-collapsed-target").attr("colspan",i)}},render_groups:function(e){var t=this,i=e.find(".acf-fields:visible");e&&e.is(".acf-fields")&&(i=i.add(e)),i.each(function(){t.render_group($(this))})},render_group:function(e){var t=$(),i=0,a=0,n=-1,s=e.children(".acf-field[data-width]:visible");if(s.exists()){if(e.hasClass("-left"))return s.removeAttr("data-width"),void s.css("width","auto");s.removeClass("acf-r0 acf-c0").css({"min-height":0}),s.each(function(e){var s=$(this),o=s.position().top;0==e&&(i=o),o!=i&&(t.css({"min-height":a+1+"px"}),t=$(),i=s.position().top,a=0,n=-1),n++,a=s.outerHeight()>a?s.outerHeight():a,t=t.add(s),0==o?s.addClass("acf-r0"):0==n&&s.addClass("acf-c0")}),t.exists()&&t.css({"min-height":a+1+"px"})}}}),$(document).on("change",".acf-field input, .acf-field textarea, .acf-field select",function(){var e=$("#_acf_changed");e.length&&e.val(1),acf.do_action("change",$(this))}),$(document).on("click",'.acf-field a[href="#"]',function(e){e.preventDefault()}),acf.unload=acf.model.extend({locked:1,active:1,changed:0,filters:{validation_complete:"validation_complete"},actions:{ready:"ready",change:"on"},ready:function(){setTimeout(function(){acf.unload.locked=0},1e3)},events:{"submit form":"off"},validation_complete:function(e,t){return e&&e.errors&&this.on(),e},on:function(){this.changed||!this.active||this.locked||(this.changed=1,$(window).on("beforeunload",this.unload))},off:function(){this.changed=0,$(window).off("beforeunload",this.unload)},unload:function(){return acf._e("unload")}}),acf.tooltip=acf.model.extend({events:{"mouseenter .acf-js-tooltip":"_on","mouseup .acf-js-tooltip":"_off","mouseleave .acf-js-tooltip":"_off"},tooltip:function(e,t){var i=$('<div class="acf-tooltip">'+e+"</div>");$("body").append(i);var a=10;target_w=t.outerWidth(),target_h=t.outerHeight(),target_t=t.offset().top,target_l=t.offset().left,tooltip_w=i.outerWidth(),tooltip_h=i.outerHeight();var n=target_t-tooltip_h,s=target_l+target_w/2-tooltip_w/2;return s<10?(i.addClass("right"),s=target_l+target_w,n=target_t+target_h/2-tooltip_h/2):s+tooltip_w+10>$(window).width()?(i.addClass("left"),s=target_l-tooltip_w,n=target_t+target_h/2-tooltip_h/2):n-$(window).scrollTop()<10?(i.addClass("bottom"),n=target_t+target_h):i.addClass("top"),i.css({top:n,left:s}),i},temp:function(e,t){var t=this.tooltip(e,t),i=0;i+=250,setTimeout(function(){t.addClass("acf-fade-up")},i),i+=250,setTimeout(function(){t.remove()},i)},confirm:function(e,t,i,a,n){i=i||acf._e("are_you_sure"),a=a||'<a href="#" class="acf-confirm-y">'+acf._e("yes")+"</a>",n=n||'<a href="#" class="acf-confirm-n">'+acf._e("No")+"</a>";var s=this.tooltip(i+" "+a+" "+n,e);s.addClass("-confirm");var o=function(i,a){i.preventDefault(),i.stopImmediatePropagation(),e.off("click",r),s.off("click",".acf-confirm-y",r),s.off("click",".acf-confirm-n",l),$("body").off("click",l),s.remove(),t.apply(null,[a])},r=function(e){o(e,!0)},l=function(e){o(e,!1)};s.on("click",".acf-confirm-y",r),s.on("click",".acf-confirm-n",l),e.on("click",r),$("body").on("click",l)},confirm_remove:function(e,t){text=!1,button_y='<a href="#" class="acf-confirm-y -red">'+acf._e("remove")+"</a>",button_n='<a href="#" class="acf-confirm-n">'+acf._e("cancel")+"</a>",this.confirm(e,t,!1,button_y,button_n)},_on:function(e){var t=e.$el.attr("title");if(t){var i=this.tooltip(t,e.$el);e.$el.data("acf-tooltip",{title:t,$el:i}),e.$el.attr("title","")}},_off:function(e){var t=e.$el.data("acf-tooltip");t&&(t.$el.remove(),e.$el.attr("title",t.title))}}),acf.postbox=acf.model.extend({events:{"mouseenter .acf-postbox .handlediv":"on","mouseleave .acf-postbox .handlediv":"off"},on:function(e){e.$el.siblings(".hndle").addClass("hover")},off:function(e){e.$el.siblings(".hndle").removeClass("hover")},render:function(e){e=$.extend({},{id:"",key:"",style:"default",label:"top",edit_url:"",edit_title:"",visibility:!0},e);var t=$("#"+e.id),i=$("#"+e.id+"-hide"),a=i.parent();t.addClass("acf-postbox"),a.addClass("acf-postbox-toggle"),t.removeClass("hide-if-js"),a.removeClass("hide-if-js"),"default"!==e.style&&t.addClass(e.style),t.children(".inside").addClass("acf-fields").addClass("-"+e.label),e.visibility?i.prop("checked",!0):(t.addClass("acf-hidden"),a.addClass("acf-hidden")),e.edit_url&&t.children(".hndle").append('<a href="'+e.edit_url+'" class="dashicons dashicons-admin-generic acf-hndle-cog acf-js-tooltip" title="'+e.edit_title+'"></a>')}});var e=acf.model.extend({events:{"click .acf-panel-title":"_click"},_click:function(e){e.preventDefault(),this.toggle(e.$el.parent())},is_open:function(e){return e.hasClass("-open")},toggle:function(e){this.is_open(e)?this.close(e):this.open(e)},open:function(e){e.addClass("-open"),e.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-down")},close:function(e){e.removeClass("-open"),e.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-right")}});acf.notice=acf.model.extend({actions:{prepare:"prepare"},prepare:function(){var e=$(".acf-notice");e.length&&$("h1:first").after(e)},html:function(e,t){},success:function(e){},error:function(e){},warning:function(e){},information:function(e){}});var t=localStorage.getItem("acf");t=t?JSON.parse(t):{};var a=function(e){return"this."===e.substr(0,5)&&(e=e.substr(5)+"-"+acf.get("post_id")),e};acf.getPreference=function(e){return e=a(e),t[e]||null},acf.setPreference=function(e,i){e=a(e),null===i?delete t[e]:t[e]=i,localStorage.setItem("acf",JSON.stringify(t))},acf.removePreference=function(e){acf.setPreference(e,null)},$(document).on("sortstart",function(e,t){acf.do_action("sortstart",t.item,t.placeholder)}),$(document).on("sortstop",function(e,t){acf.do_action("sortstop",t.item,t.placeholder)}),acf.add_action("sortstart",function(e,t){e.is("tr")&&(e.css("position","relative"),e.children().each(function(){$(this).width($(this).width())}),e.css("position","absolute"),t.html('<td style="height:'+e.height()+'px; padding:0;" colspan="'+e.children("td").length+'"></td>'))}),acf.add_action("before_duplicate",function(e){e.find("select option:selected").addClass("selected")}),acf.add_action("after_duplicate",function(e,t){t.find("select").each(function(){var e=$(this),t=[];e.find("option.selected").each(function(){t.push($(this).val())}),e.val(t)}),e.find("select option.selected").removeClass("selected"),t.find("select option.selected").removeClass("selected")}),Array.prototype.indexOf||(Array.prototype.indexOf=function(e){return $.inArray(e,this)})}(jQuery),function($){acf.ajax=acf.model.extend({active:!1,actions:{ready:"ready"},events:{"change #page_template":"_change_template","change #parent_id":"_change_parent","change #post-formats-select input":"_change_format","change .categorychecklist input":"_change_term","change .categorychecklist select":"_change_term",'change .acf-taxonomy-field[data-save="1"] input':"_change_term",'change .acf-taxonomy-field[data-save="1"] select':"_change_term"},o:{},xhr:null,update:function(e,t){return this.o[e]=t,this},get:function(e){return this.o[e]||null},ready:function(){this.update("post_id",acf.get("post_id")),this.active=!0},fetch:function(){if(this.active&&acf.get("ajax")){this.xhr&&this.xhr.abort();var e=this,t=this.o;t.action="acf/post/get_field_groups",t.exists=[],$(".acf-postbox").not(".acf-hidden").each(function(){t.exists.push($(this).attr("id").substr(4))}),this.xhr=$.ajax({url:acf.get("ajaxurl"),data:acf.prepare_for_ajax(t),type:"post",dataType:"json",success:function(t){acf.is_ajax_success(t)&&e.render(t.data)}})}},render:function(e){$(".acf-postbox").addClass("acf-hidden"),$(".acf-postbox-toggle").addClass("acf-hidden"),$("#acf-style").html(""),$.each(e,function(e,t){var i=$("#acf-"+t.key),a=$("#acf-"+t.key+"-hide"),n=a.parent();i.removeClass("acf-hidden hide-if-js").show(),n.removeClass("acf-hidden hide-if-js").show(),a.prop("checked",!0);var s=i.find(".acf-replace-with-fields");s.exists()&&(s.replaceWith(t.html),acf.do_action("append",i)),0===e&&$("#acf-style").html(t.style),i.find(".acf-hidden-by-postbox").prop("disabled",!1)}),$(".acf-postbox.acf-hidden").find("select, textarea, input").not(":disabled").each(function(){$(this).addClass("acf-hidden-by-postbox").prop("disabled",!0)})},sync_taxonomy_terms:function(){var e=[""];$(".categorychecklist, .acf-taxonomy-field").each(function(){var t=$(this),i=t.find('input[type="checkbox"]').not(":disabled"),a=t.find('input[type="radio"]').not(":disabled"),n=t.find("select").not(":disabled"),s=t.find('input[type="hidden"]').not(":disabled");t.is(".acf-taxonomy-field")&&"1"!=t.attr("data-save")||t.closest(".media-frame").exists()||(i.exists()?i.filter(":checked").each(function(){e.push($(this).val())}):a.exists()?a.filter(":checked").each(function(){e.push($(this).val())}):n.exists()?n.find("option:selected").each(function(){e.push($(this).val())}):s.exists()&&s.each(function(){$(this).val()&&e.push($(this).val())}))}),e=e.filter(function(e,t,i){return i.indexOf(e)==t}),this.update("post_taxonomy",e).fetch()},_change_template:function(e){var t=e.$el.val();this.update("page_template",t).fetch()},_change_parent:function(e){var t="parent",i=0;""!=e.$el.val()&&(t="child",i=e.$el.val()),this.update("page_type",t).update("page_parent",i).fetch()},_change_format:function(e){var t=e.$el.val();"0"==t&&(t="standard"),this.update("post_format",t).fetch()},_change_term:function(e){var t=this;e.$el.closest(".media-frame").exists()||setTimeout(function(){t.sync_taxonomy_terms()},1)}})}(jQuery),function($){acf.fields.button_group=acf.field.extend({type:"button_group",$div:null,events:{'click input[type="radio"]':"click"},focus:function(){this.$div=this.$field.find(".acf-button-group"),this.o=acf.get_data(this.$div,{allow_null:0})},click:function(e){var t=e.$el,i=t.parent("label"),a=i.hasClass("selected");this.$div.find(".selected").removeClass("selected"),i.addClass("selected"),this.o.allow_null&&a&&(e.$el.prop("checked",!1),i.removeClass("selected"),e.$el.trigger("change"))}})}(jQuery),function($){acf.fields.checkbox=acf.field.extend({type:"checkbox",events:{"change input":"_change","click .acf-add-checkbox":"_add"},focus:function(){this.$ul=this.$field.find("ul"),this.$input=this.$field.find('input[type="hidden"]')},add:function(){var e=this.$input.attr("name")+"[]",t='<li><input class="acf-checkbox-custom" type="checkbox" checked="checked" /><input type="text" name="'+e+'" /></li>';this.$ul.find(".acf-add-checkbox").parent("li").before(t)},_change:function(e){var t=this.$ul,i=t.find('input[type="checkbox"]').not(".acf-checkbox-toggle"),a=e.$el.is(":checked");if(e.$el.hasClass("acf-checkbox-toggle"))return void i.prop("checked",a).trigger("change");if(e.$el.hasClass("acf-checkbox-custom")){var n=e.$el.next('input[type="text"]');e.$el.next('input[type="text"]').prop("disabled",!a),a||""!=n.val()||e.$el.parent("li").remove()}if(t.find(".acf-checkbox-toggle").exists()){var a=0==i.not(":checked").length;t.find(".acf-checkbox-toggle").prop("checked",a)}},_add:function(e){this.add()}})}(jQuery),function($){acf.fields.color_picker=acf.field.extend({type:"color_picker",$input:null,$hidden:null,actions:{ready:"initialize",append:"initialize"},focus:function(){this.$input=this.$field.find('input[type="text"]'),this.$hidden=this.$field.find('input[type="hidden"]')},initialize:function(){var e=this.$input,t=this.$hidden,i=function(){setTimeout(function(){acf.val(t,e.val())},1)},a={defaultColor:!1,palettes:!0,hide:!0,change:i,clear:i},a=acf.apply_filters("color_picker_args",a,this.$field);this.$input.wpColorPicker(a)}})}(jQuery),function($,e){var t="hidden-by-conditional-logic",i=acf.conditional_logic=acf.model.extend({conditions:{},triggers:{},$parent:!1,actions:{"prepare 20":"render","append 20":"render",change:"change"},add:function(e,t){for(var i in t){var a=t[i];for(var n in a){var s=a[n];this.addTrigger(s.field,e)}}this.setCondition(e,t)},getTrigger:function(e){return this.triggers[e]||null},setTrigger:function(e,t){this.triggers[e]=t},addTrigger:function(e,t){var i=this.getTrigger(e)||{};i[t]=1,this.setTrigger(e,i)},getConditions:function(){return this.conditions},getCondition:function(e){return this.conditions[e]||null},setCondition:function(e,t){this.conditions[e]=t},render:function(e){e=e||!1;var t=acf.get_fields("",e,!0);this.renderFields(t),acf.do_action("refresh",e)},findTarget:function(e,t){var i=this;this.$parent=!1;var a=acf.get_fields(t,!1,!0);return!!a.length&&(a.length>1&&e.parents(".acf-row, .acf-table, .acf-fields").each(function(){var e=$(this),t=e.find(a);if(t.length)return a=t,i.$parent=e,!1}),a)},change:function(e){var t=acf.get_field_wrap(e),i=t.data("key"),a=this.getTrigger(i);if(!a)return!1;for(var n in a){var s=this.findTarget(t,n);this.renderFields(s)}acf.do_action("refresh",this.$parent)},renderFields:function(e){var t=this;e.each(function(){t.renderField($(this))})},renderField:function(e){var t=!1,i=e.data("key"),a=this.getCondition(i);if(!a)return!1;for(var n=0;n<a.length;n++){for(var s=a[n],o=!0,r=0;r<s.length;r++){var l=s[r],c=this.findTarget(e,l.field);if(!this.calculate(l,c,e)){o=!1;break}}if(o){t=!0;break}}t?this.showField(e):this.hideField(e)},showField:function(e){var i=e.data("key");e.removeClass(t),acf.enable_form(e,"condition-"+i),acf.do_action("show_field",e,"conditional_logic")},hideField:function(e){var i=e.data("key");e.addClass(t),acf.disable_form(e,"condition-"+i),acf.do_action("hide_field",e,"conditional_logic")},calculate:function(e,t,i){if(!t||!i)return!1;var a=!1,n=t.data("type");return"true_false"==n||"checkbox"==n||"radio"==n||"button_group"==n?a=this.calculate_checkbox(e,t):"select"==n&&(a=this.calculate_select(e,t)),"!="===e.operator&&(a=!a),a},calculate_checkbox:function(e,t){var i=t.find('input[value="'+e.value+'"]:checked').exists();return""!==e.value||t.find("input:checked").exists()||(i=!0),i},calculate_select:function(e,t){var i=t.find("select"),a=i.val();return a||$.isNumeric(a)||(a=""),$.isArray(a)||(a=[a]),match=$.inArray(e.value,a)>-1,match}});i.show_field=i.showField,i.hide_field=i.hideField}(jQuery),function($){acf.datepicker=acf.model.extend({actions:{"ready 1":"ready"},ready:function(){var e=acf.get("locale"),t=acf.get("rtl");l10n=acf._e("date_picker"),l10n&&void 0!==$.datepicker&&(l10n.isRTL=t,$.datepicker.regional[e]=l10n,$.datepicker.setDefaults(l10n))},init:function(e,t){void 0!==$.datepicker&&(t=t||{},e.datepicker(t),
|
2 |
$("body > #ui-datepicker-div").exists()&&$("body > #ui-datepicker-div").wrap('<div class="acf-ui-datepicker" />'))},destroy:function(e){}}),acf.fields.date_picker=acf.field.extend({type:"date_picker",$el:null,$input:null,$hidden:null,o:{},actions:{ready:"initialize",append:"initialize"},events:{'blur input[type="text"]':"blur"},focus:function(){this.$el=this.$field.find(".acf-date-picker"),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){if(this.o.save_format)return this.initialize2();var e={dateFormat:this.o.date_format,altField:this.$hidden,altFormat:"yymmdd",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day};e=acf.apply_filters("date_picker_args",e,this.$field),acf.datepicker.init(this.$input,e),acf.do_action("date_picker_init",this.$input,e,this.$field)},initialize2:function(){this.$input.val(this.$hidden.val());var e={dateFormat:this.o.date_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day};e=acf.apply_filters("date_picker_args",e,this.$field);var t=e.dateFormat;e.dateFormat=this.o.save_format,acf.datepicker.init(this.$input,e),this.$input.datepicker("option","dateFormat",t),acf.do_action("date_picker_init",this.$input,e,this.$field)},blur:function(){this.$input.val()||this.$hidden.val("")}})}(jQuery),function($){acf.datetimepicker=acf.model.extend({actions:{"ready 1":"ready"},ready:function(){var e=acf.get("locale"),t=acf.get("rtl");l10n=acf._e("date_time_picker"),l10n&&void 0!==$.timepicker&&(l10n.isRTL=t,$.timepicker.regional[e]=l10n,$.timepicker.setDefaults(l10n))},init:function(e,t){void 0!==$.timepicker&&(t=t||{},e.datetimepicker(t),$("body > #ui-datepicker-div").exists()&&$("body > #ui-datepicker-div").wrap('<div class="acf-ui-datepicker" />'))},destroy:function(e){}}),acf.fields.date_time_picker=acf.field.extend({type:"date_time_picker",$el:null,$input:null,$hidden:null,o:{},actions:{ready:"initialize",append:"initialize"},events:{'blur input[type="text"]':"blur"},focus:function(){this.$el=this.$field.find(".acf-date-time-picker"),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){var e={dateFormat:this.o.date_format,timeFormat:this.o.time_format,altField:this.$hidden,altFieldTimeOnly:!1,altFormat:"yy-mm-dd",altTimeFormat:"HH:mm:ss",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day,controlType:"select",oneLine:!0};e=acf.apply_filters("date_time_picker_args",e,this.$field),acf.datetimepicker.init(this.$input,e),acf.do_action("date_time_picker_init",this.$input,e,this.$field)},blur:function(){this.$input.val()||this.$hidden.val("")}})}(jQuery),function($){acf.fields.file=acf.field.extend({type:"file",$el:null,$input:null,actions:{ready:"initialize",append:"initialize"},events:{'click a[data-name="add"]':"add",'click a[data-name="edit"]':"edit",'click a[data-name="remove"]':"remove",'change input[type="file"]':"change"},focus:function(){this.$el=this.$field.find(".acf-file-uploader"),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){"basic"==this.o.uploader&&this.$el.closest("form").attr("enctype","multipart/form-data")},prepare:function(e){if(e=e||{},e._valid)return e;var t={url:"",alt:"",title:"",filename:"",filesizeHumanReadable:"",icon:"/wp-includes/images/media/default.png"};return e.id&&(t=e.attributes),t._valid=!0,t},render:function(e){e=this.prepare(e),this.$el.find("img").attr({src:e.icon,alt:e.alt,title:e.title}),this.$el.find('[data-name="title"]').text(e.title),this.$el.find('[data-name="filename"]').text(e.filename).attr("href",e.url),this.$el.find('[data-name="filesize"]').text(e.filesizeHumanReadable);var t="";e.id&&(t=e.id),acf.val(this.$input,t),t?this.$el.addClass("has-value"):this.$el.removeClass("has-value")},add:function(){var e=this,t=this.$field,i=acf.get_closest_field(t,"repeater"),a=acf.media.popup({title:acf._e("file","select"),mode:"select",type:"",field:t.data("key"),multiple:i.exists(),library:this.o.library,mime_types:this.o.mime_types,select:function(a,n){if(n>0){var s=t.data("key"),o=t.closest(".acf-row");if(t=!1,o.nextAll(".acf-row:visible").each(function(){if(t=acf.get_field(s,$(this)))return!!t.find(".acf-file-uploader.has-value").exists()&&void(t=!1)}),!t){if(!(o=acf.fields.repeater.doFocus(i).add()))return!1;t=acf.get_field(s,o)}}e.set("$field",t).render(a)}})},edit:function(){var e=this,t=this.$field,i=this.$input.val();if(i)var a=acf.media.popup({title:acf._e("file","edit"),button:acf._e("file","update"),mode:"edit",attachment:i,select:function(i,a){e.set("$field",t).render(i)}})},remove:function(){var e={};this.render(e)},get_file_info:function(e,t){var i=e.val(),a={};if(!i)return void t.val("");a.url=i;var n=e[0].files;if(n.length){var s=n[0];if(a.size=s.size,a.type=s.type,s.type.indexOf("image")>-1){var o=window.URL||window.webkitURL,r=new Image;r.onload=function(){a.width=this.width,a.height=this.height,t.val(jQuery.param(a))},r.src=o.createObjectURL(s)}}t.val(jQuery.param(a))},change:function(e){this.get_file_info(e.$el,this.$input)}})}(jQuery),function($){acf.fields.google_map=acf.field.extend({type:"google_map",url:"",$el:null,$search:null,timeout:null,status:"",geocoder:!1,map:!1,maps:{},$pending:$(),actions:{ready:"initialize",append:"initialize",show:"show"},events:{'click a[data-name="clear"]':"_clear",'click a[data-name="locate"]':"_locate",'click a[data-name="search"]':"_search","keydown .search":"_keydown","keyup .search":"_keyup","focus .search":"_focus","blur .search":"_blur","mousedown .acf-google-map":"_mousedown"},focus:function(){this.$el=this.$field.find(".acf-google-map"),this.$search=this.$el.find(".search"),this.o=acf.get_data(this.$el),this.o.id=this.$el.attr("id"),this.maps[this.o.id]&&(this.map=this.maps[this.o.id])},is_ready:function(){var e=this;return"ready"==this.status||"loading"!=this.status&&(acf.isset(window,"google","maps","places")?(this.status="ready",!0):(acf.isset(window,"google","maps")&&(this.status="ready"),this.url&&(this.status="loading",acf.enqueue_script(this.url,function(){e.status="ready",e.initialize_pending()})),"ready"==this.status))},initialize_pending:function(){var e=this;this.$pending.each(function(){e.set("$field",$(this)).initialize()}),this.$pending=$()},initialize:function(){if(!this.is_ready())return this.$pending=this.$pending.add(this.$field),!1;this.geocoder||(this.geocoder=new google.maps.Geocoder);var e=this,t=this.$field,i=this.$el;this.$search.val(this.$el.find(".input-address").val());var a=acf.apply_filters("google_map_args",{scrollwheel:!1,zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP},this.$field);if(this.map=new google.maps.Map(this.$el.find(".canvas")[0],a),acf.isset(window,"google","maps","places","Autocomplete")){var n=new google.maps.places.Autocomplete(this.$search[0]);n.bindTo("bounds",this.map),google.maps.event.addListener(n,"place_changed",function(t){var i=this.getPlace();e.search(i)}),this.map.autocomplete=n}var s=acf.apply_filters("google_map_marker_args",{draggable:!0,raiseOnDrag:!0,map:this.map},this.$field);this.map.marker=new google.maps.Marker(s),this.map.$el=i,this.map.$field=t;var o=i.find(".input-lat").val(),r=i.find(".input-lng").val();o&&r&&this.update(o,r).center(),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.marker.getPosition(),i=t.lat(),a=t.lng();e.update(i,a).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=t.latLng.lat(),a=t.latLng.lng();e.update(i,a).sync()}),acf.do_action("google_map_init",this.map,this.map.marker,this.$field),this.maps[this.o.id]=this.map},search:function(e){var t=this,i=this.$search.val();if(!i)return!1;this.$el.find(".input-address").val(i);var a=i.split(",");if(2==a.length){var n=a[0],s=a[1];if($.isNumeric(n)&&$.isNumeric(s))return n=parseFloat(n),s=parseFloat(s),void t.update(n,s).center()}if(e&&e.geometry){var n=e.geometry.location.lat(),s=e.geometry.location.lng();return void t.update(n,s).center()}this.$el.addClass("-loading"),t.geocoder.geocode({address:i},function(i,a){if(t.$el.removeClass("-loading"),a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!i[0])return void console.log("No results found");e=i[0];var n=e.geometry.location.lat(),s=e.geometry.location.lng();t.update(n,s).center()})},update:function(e,t){var i=new google.maps.LatLng(e,t);return acf.val(this.$el.find(".input-lat"),e),acf.val(this.$el.find(".input-lng"),t),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("-value"),this.$field.removeClass("error"),acf.do_action("google_map_change",i,this.map,this.$field),this.$search.blur(),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.$el.addClass("-loading"),this.geocoder.geocode({latLng:i},function(t,i){if(e.$el.removeClass("-loading"),i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.$search.val(a.formatted_address),acf.val(e.$el.find(".input-address"),a.formatted_address)}),this},refresh:function(){if(!this.is_ready())return!1;google.maps.event.trigger(this.map,"resize"),this.center()},show:function(){var e=this,t=this.$field;setTimeout(function(){e.set("$field",t).refresh()},10)},_clear:function(e){this.$el.removeClass("-value -loading -search"),this.$search.val(""),acf.val(this.$el.find(".input-address"),""),acf.val(this.$el.find(".input-lat"),""),acf.val(this.$el.find(".input-lng"),""),this.map.marker.setVisible(!1)},_locate:function(e){var t=this;if(!navigator.geolocation)return alert(acf._e("google_map","browser_support")),this;this.$el.addClass("-loading"),navigator.geolocation.getCurrentPosition(function(e){t.$el.removeClass("-loading");var i=e.coords.latitude,a=e.coords.longitude;t.update(i,a).sync().center()})},_search:function(e){this.search()},_focus:function(e){this.$el.removeClass("-value"),this._keyup()},_blur:function(e){var t=this,i=this.$el.find(".input-address").val();i&&(this.timeout=setTimeout(function(){t.$el.addClass("-value"),t.$search.val(i)},100))},_keydown:function(e){13==e.which&&e.preventDefault()},_keyup:function(e){this.$search.val()?this.$el.addClass("-search"):this.$el.removeClass("-search")},_mousedown:function(e){var t=this;setTimeout(function(){clearTimeout(t.timeout)},1)}})}(jQuery),function($){acf.fields.image=acf.field.extend({type:"image",$el:null,$input:null,$img:null,actions:{ready:"initialize",append:"initialize"},events:{'click a[data-name="add"]':"add",'click a[data-name="edit"]':"edit",'click a[data-name="remove"]':"remove",'change input[type="file"]':"change"},focus:function(){this.$el=this.$field.find(".acf-image-uploader"),this.$input=this.$el.find('input[type="hidden"]'),this.$img=this.$el.find("img"),this.o=acf.get_data(this.$el)},initialize:function(){"basic"==this.o.uploader&&this.$el.closest("form").attr("enctype","multipart/form-data")},prepare:function(e){if(e=e||{},e._valid)return e;var t={url:"",alt:"",title:"",caption:"",description:"",width:0,height:0};return e.id&&(t=e.attributes,t.url=acf.maybe_get(t,"sizes."+this.o.preview_size+".url",t.url)),t._valid=!0,t},render:function(e){e=this.prepare(e),this.$img.attr({src:e.url,alt:e.alt,title:e.title});var t="";e.id&&(t=e.id),acf.val(this.$input,t),t?this.$el.addClass("has-value"):this.$el.removeClass("has-value")},add:function(){var e=this,t=this.$field,i=acf.get_closest_field(this.$field,"repeater"),a=acf.media.popup({title:acf._e("image","select"),mode:"select",type:"image",field:t.data("key"),multiple:i.exists(),library:this.o.library,mime_types:this.o.mime_types,select:function(a,n){if(n>0){var s=t.data("key"),o=t.closest(".acf-row");if(t=!1,o.nextAll(".acf-row:visible").each(function(){if(t=acf.get_field(s,$(this)))return!!t.find(".acf-image-uploader.has-value").exists()&&void(t=!1)}),!t){if(!(o=acf.fields.repeater.doFocus(i).add()))return!1;t=acf.get_field(s,o)}}e.set("$field",t).render(a)}})},edit:function(){var e=this,t=this.$field,i=this.$input.val();if(i)var a=acf.media.popup({title:acf._e("image","edit"),button:acf._e("image","update"),mode:"edit",attachment:i,select:function(i,a){e.set("$field",t).render(i)}})},remove:function(){var e={};this.render(e)},change:function(e){acf.fields.file.get_file_info(e.$el,this.$input)}})}(jQuery),function($){acf.fields.link=acf.field.extend({type:"link",active:!1,$el:null,$node:null,events:{'click a[data-name="add"]':"add",'click a[data-name="edit"]':"edit",'click a[data-name="remove"]':"remove","change .link-node":"change"},focus:function(){this.$el=this.$field.find(".acf-link"),this.$node=this.$el.find(".link-node")},add:function(e){acf.link.open(this.$node)},edit:function(e){this.add()},remove:function(e){this.val("")},change:function(e,t){var i={title:this.$node.html(),url:this.$node.attr("href"),target:this.$node.attr("target")};this.val(i)},val:function(e){e=acf.parse_args(e,{title:"",url:"",target:""}),this.$el.removeClass("-value -external"),e.url&&this.$el.addClass("-value"),"_blank"===e.target&&this.$el.addClass("-external"),this.$el.find(".link-title").html(e.title),this.$el.find(".link-url").attr("href",e.url).html(e.url),this.$el.find(".input-title").val(e.title),this.$el.find(".input-target").val(e.target),this.$el.find(".input-url").val(e.url).trigger("change"),this.$node.html(e.title),this.$node.attr("href",e.url),this.$node.attr("target",e.target)}}),acf.link=acf.model.extend({active:!1,$textarea:null,$node:null,events:{"click #wp-link-submit":"_update","wplink-open":"_open","wplink-close":"_close"},atts:function(e){return void 0!==e?(this.$node.html(e.title),this.$node.attr("href",e.url),this.$node.attr("target",e.target),this.$node.trigger("change",[e]),!0):{title:this.$node.html(),url:this.$node.attr("href"),target:this.$node.attr("target")}},inputs:function(e){return void 0!==e?($("#wp-link-text").val(e.title),$("#wp-link-url").val(e.url),$("#wp-link-target").prop("checked","_blank"===e.target),!0):{title:$("#wp-link-text").val(),url:$("#wp-link-url").val(),target:$("#wp-link-target").prop("checked")?"_blank":""}},open:function(e){var t=$('<textarea id="acf-link-textarea"></textarea>');e.before(t),this.active=!0,this.$node=e,this.$textarea=t;var i=this.atts();wpLink.open("acf-link-textarea",i.url,i.title,null),$("#wp-link-wrap").addClass("has-text-field")},reset:function(){this.active=!1,this.$textarea.remove(),this.$textarea=null,this.$node=null},_select:function(e,t){var i=this.inputs();i.title||(i.title=t.find(".item-title").text(),this.inputs(i),console.log(i))},_open:function(e){if(this.active){var t=this.atts();this.inputs(t)}},_close:function(e){this.active&&setTimeout(function(){acf.link.reset()},100)},_update:function(e){if(this.active){var t=this.inputs();this.atts(t)}}})}(jQuery),function($){acf.media=acf.model.extend({frames:[],mime_types:{},actions:{ready:"ready"},frame:function(){var e=this.frames.length-1;return!(e<0)&&this.frames[e]},destroy:function(e){e.detach(),e.dispose(),e=null,this.frames.pop()},popup:function(e){var t=acf.get("post_id"),i=!1;$.isNumeric(t)||(t=0);var a=acf.parse_args(e,{mode:"select",title:"",button:"",type:"",field:"",mime_types:"",library:"all",multiple:!1,attachment:0,post_id:t,select:function(){}});a.id&&(a.attachment=a.id);var i=this.new_media_frame(a);return this.frames.push(i),setTimeout(function(){i.open()},1),i},_get_media_frame_settings:function(e,t){return"select"===t.mode?e=this._get_select_frame_settings(e,t):"edit"===t.mode&&(e=this._get_edit_frame_settings(e,t)),e},_get_select_frame_settings:function(e,t){return t.type&&(e.library.type=t.type),"uploadedTo"===t.library&&(e.library.uploadedTo=t.post_id),e._button=acf._e("media","select"),e},_get_edit_frame_settings:function(e,t){return e.library.post__in=[t.attachment],e._button=acf._e("media","update"),e},_add_media_frame_events:function(e,t){return e.on("open",function(){this.$el.closest(".media-modal").addClass("acf-media-modal -"+t.mode)},e),e.on("content:render:edit-image",function(){var e=this.state().get("image"),t=new wp.media.view.EditImage({model:e,controller:this}).render();this.content.set(t),t.loadEditor()},e),e.on("toolbar:create:select",function(t){t.view=new wp.media.view.Toolbar.Select({text:e.options._button,controller:this})},e),e.on("select",function(){var i=e.state(),a=i.get("image"),n=i.get("selection");if(a)return void t.select.apply(e,[a,0]);if(n){var s=0;return void n.each(function(i){t.select.apply(e,[i,s]),s++})}}),e.on("close",function(){setTimeout(function(){acf.media.destroy(e)},500)}),"select"===t.mode?e=this._add_select_frame_events(e,t):"edit"===t.mode&&(e=this._add_edit_frame_events(e,t)),e},_add_select_frame_events:function(e,t){var i=this;return acf.isset(_wpPluploadSettings,"defaults","multipart_params")&&(_wpPluploadSettings.defaults.multipart_params._acfuploader=t.field,e.on("open",function(){delete _wpPluploadSettings.defaults.multipart_params._acfuploader})),e.on("content:activate:browse",function(){try{var a=e.content.get().toolbar,n=a.get("filters"),s=a.get("search")}catch(e){return}if("image"==t.type&&(n.filters.all.text=acf._e("image","all"),delete n.filters.audio,delete n.filters.video,$.each(n.filters,function(e,t){null===t.props.type&&(t.props.type="image")})),t.mime_types){var o=t.mime_types.split(" ").join("").split(".").join("").split(",");$.each(o,function(e,t){$.each(i.mime_types,function(e,i){if(-1!==e.indexOf(t)){var a={text:t,props:{status:null,type:i,uploadedTo:null,orderby:"date",order:"DESC"},priority:20};n.filters[i]=a}})})}"uploadedTo"==t.library&&(delete n.filters.unattached,delete n.filters.uploaded,n.$el.parent().append('<span class="acf-uploadedTo">'+acf._e("image","uploadedTo")+"</span>"),$.each(n.filters,function(e,i){i.props.uploadedTo=t.post_id})),$.each(n.filters,function(e,i){i.props._acfuploader=t.field}),s.model.attributes._acfuploader=t.field,"function"==typeof n.refresh&&n.refresh()}),e},_add_edit_frame_events:function(e,t){return e.on("open",function(){this.$el.closest(".media-modal").addClass("acf-expanded"),"browse"!=this.content.mode()&&this.content.mode("browse");var e=this.state(),i=e.get("selection"),a=wp.media.attachment(t.attachment);i.add(a)},e),e},new_media_frame:function(e){var t={title:e.title,multiple:e.multiple,library:{},states:[]};t=this._get_media_frame_settings(t,e);var i=wp.media.query(t.library);acf.isset(i,"mirroring","args")&&(i.mirroring.args._acfuploader=e.field),t.states=[new wp.media.controller.Library({library:i,multiple:t.multiple,title:t.title,priority:20,filterable:"all",editable:!0,allowLocalEdits:!0})],acf.isset(wp,"media","controller","EditImage")&&t.states.push(new wp.media.controller.EditImage);var a=wp.media(t);return a.acf=e,a=this._add_media_frame_events(a,e)},ready:function(){var e=acf.get("wp_version"),t=acf.get("browser"),i=acf.get("post_id");acf.isset(window,"wp","media","view","settings","post")&&$.isNumeric(i)&&(wp.media.view.settings.post.id=i),t&&$("body").addClass("browser-"+t),e&&(e+="",major=e.substr(0,1),$("body").addClass("major-"+major)),acf.isset(window,"wp","media","view")&&(this.customize_Attachment(),this.customize_AttachmentFiltersAll(),this.customize_AttachmentCompat())},customize_Attachment:function(){var e=wp.media.view.Attachment.Library;wp.media.view.Attachment.Library=e.extend({render:function(){var t=acf.media.frame(),i=acf.maybe_get(this,"model.attributes.acf_errors");return t&&i&&this.$el.addClass("acf-disabled"),e.prototype.render.apply(this,arguments)},toggleSelection:function(t){var i=this.collection,a=this.options.selection,n=this.model,s=a.single(),o=acf.media.frame(),r=acf.maybe_get(this,"model.attributes.acf_errors"),l=this.controller.$el.find(".media-frame-content .media-sidebar");if(l.children(".acf-selection-error").remove(),l.children().removeClass("acf-hidden"),o&&r){var c=acf.maybe_get(this,"model.attributes.filename","");return l.children().addClass("acf-hidden"),l.prepend(['<div class="acf-selection-error">','<span class="selection-error-label">'+acf._e("restricted")+"</span>",'<span class="selection-error-filename">'+c+"</span>",'<span class="selection-error-message">'+r+"</span>","</div>"].join("")),a.reset(),void a.single(n)}e.prototype.toggleSelection.apply(this,arguments)}})},customize_AttachmentFiltersAll:function(){wp.media.view.AttachmentFilters.All.prototype.refresh=function(){this.$el.html(_.chain(this.filters).map(function(e,t){return{el:$("<option></option>").val(t).html(e.text)[0],priority:e.priority||50}},this).sortBy("priority").pluck("el").value())}},customize_AttachmentCompat:function(){var e=wp.media.view.AttachmentCompat;wp.media.view.AttachmentCompat=e.extend({add_acf_expand_button:function(){var e=this.$el.closest(".media-modal");if(!e.find(".media-frame-router .acf-expand-details").exists()){var t=$(['<a href="#" class="acf-expand-details">','<span class="is-closed"><span class="acf-icon -left small grey"></span>'+acf._e("expand_details")+"</span>",'<span class="is-open"><span class="acf-icon -right small grey"></span>'+acf._e("collapse_details")+"</span>","</a>"].join(""));t.on("click",function(t){t.preventDefault(),e.hasClass("acf-expanded")?e.removeClass("acf-expanded"):e.addClass("acf-expanded")}),e.find(".media-frame-router").append(t)}},render:function(){if(this.ignore_render)return this;var t=this;return setTimeout(function(){t.add_acf_expand_button()},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){acf.do_action("append",t.$el)},50),e.prototype.render.apply(this,arguments)},dispose:function(){return acf.do_action("remove",this.$el),e.prototype.dispose.apply(this,arguments)},save:function(e){e&&e.preventDefault();var t=acf.serialize(this.$el);this.ignore_render=!0,this.model.saveCompat(t)}})}})}(jQuery),function($){acf.fields.oembed=acf.field.extend({type:"oembed",$el:null,events:{'click [data-name="search-button"]':"_search",'click [data-name="clear-button"]':"_clear",'click [data-name="value-title"]':"_edit",'keypress [data-name="search-input"]':"_keypress",'keyup [data-name="search-input"]':"_keyup",'blur [data-name="search-input"]':"_blur"},focus:function(){this.$el=this.$field.find(".acf-oembed"),this.$search=this.$el.find('[data-name="search-input"]'),this.$input=this.$el.find('[data-name="value-input"]'),this.$title=this.$el.find('[data-name="value-title"]'),this.$embed=this.$el.find('[data-name="value-embed"]'),this.o=acf.get_data(this.$el)},maybe_search:function(){var e=this.$input.val(),t=this.$search.val();if(!t)return void this.clear();t!=e&&this.search()},search:function(){var e=this.$search.val();"http"!=e.substr(0,4)&&(e="http://"+e,this.$search.val(e)),this.$el.addClass("is-loading");var t=acf.prepare_for_ajax({action:"acf/fields/oembed/search",s:e,field_key:this.$field.data("key")});this.$el.data("xhr")&&this.$el.data("xhr").abort();var i=$.ajax({url:acf.get("ajaxurl"),data:t,type:"post",dataType:"json",context:this,success:this.search_success});this.$el.data("xhr",i)},search_success:function(e){var t=this.$search.val();if(this.$el.removeClass("is-loading"),!e||!e.html)return void this.$el.removeClass("has-value").addClass("has-error");this.$el.removeClass("has-error").addClass("has-value"),this.$input.val(t),this.$title.html(t),this.$embed.html(e.html)},clear:function(){this.$el.removeClass("has-error has-value"),this.$el.find('[data-name="search-input"]').val(""),this.$input.val(""),this.$title.html(""),this.$embed.html("")},edit:function(){this.$el.addClass("is-editing"),this.$search.val(this.$title.text()).focus()},blur:function(e){this.$el.removeClass("is-editing"),this.maybe_search()},_search:function(e){this.search()},_clear:function(e){this.clear()},_edit:function(e){this.edit()},_keypress:function(e){13==e.which&&e.preventDefault()},_keyup:function(e){this.$search.val()&&this.maybe_search()},_blur:function(e){this.blur()}})}(jQuery),function($){acf.fields.radio=acf.field.extend({type:"radio",$ul:null,actions:{ready:"initialize",append:"initialize"},events:{'click input[type="radio"]':"click"},focus:function(){this.$ul=this.$field.find(".acf-radio-list"),this.o=acf.get_data(this.$ul)},initialize:function(){this.$ul.find(".selected input").prop("checked",!0)},click:function(e){var t=e.$el,i=t.parent("label"),a=i.hasClass("selected"),n=t.val();if(this.$ul.find(".selected").removeClass("selected"),i.addClass("selected"),this.o.allow_null&&a&&(e.$el.prop("checked",!1),i.removeClass("selected"),n=!1,e.$el.trigger("change")),this.o.other_choice){var s=this.$ul.find('input[type="text"]');"other"===n?s.prop("disabled",!1).attr("name",t.attr("name")):s.prop("disabled",!0).attr("name","")}}})}(jQuery),function($){acf.fields.range=acf.field.extend({type:"range",$el:null,$range:null,$input:null,events:{"input input":"_change","change input":"_change"},focus:function(){this.$el=this.$field.find(".acf-range-wrap"),this.$range=this.$el.children('input[type="range"]'),this.$input=this.$el.children('input[type="number"]')},_change:function(e){var t=e.$el.val(),i=e.$el.attr("type");t=t||0,"range"===i?this.$input.val(t):this.$range.val(t)}})}(jQuery),function($){acf.fields.relationship=acf.field.extend({type:"relationship",$el:null,$input:null,$filters:null,$choices:null,$values:null,actions:{ready:"initialize",append:"initialize"},events:{"keypress [data-filter]":"submit_filter","change [data-filter]":"change_filter","keyup [data-filter]":"change_filter","click .choices .acf-rel-item":"add_item",'click [data-name="remove_item"]':"remove_item"},focus:function(){this.$el=this.$field.find(".acf-relationship"),this.$input=this.$el.children('input[type="hidden"]'),this.$choices=this.$el.find(".choices"),this.$values=this.$el.find(".values"),this.o=acf.get_data(this.$el)},initialize:function(){var e=this,t=this.$field,i=this.$el,a=this.$input;this.$values.children(".list").sortable({items:"li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){a.trigger("change")}}),this.$choices.children(".list").scrollTop(0).on("scroll",function(a){if(!i.hasClass("is-loading")&&!i.hasClass("is-empty")&&Math.ceil($(this).scrollTop())+$(this).innerHeight()>=$(this).get(0).scrollHeight){var n=i.data("paged")||1;i.data("paged",n+1),e.set("$field",t).fetch()}}),this.fetch()},maybe_fetch:function(){var e=this,t=this.$field;this.o.timeout&&clearTimeout(this.o.timeout);var i=setTimeout(function(){e.doFocus(t),e.fetch()},300);this.$el.data("timeout",i)},fetch:function(){var e=this,t=this.$field;this.$el.addClass("is-loading"),this.o.xhr&&(this.o.xhr.abort(),this.o.xhr=!1),this.o.action="acf/fields/relationship/query",this.o.field_key=t.data("key"),this.o.post_id=acf.get("post_id");var i=acf.prepare_for_ajax(this.o);1==i.paged&&this.$choices.children(".list").html(""),this.$choices.find("ul:last").append('<p><i class="acf-loading"></i> '+acf._e("relationship","loading")+"</p>");var a=$.ajax({url:acf.get("ajaxurl"),dataType:"json",type:"post",data:i,success:function(i){e.set("$field",t).render(i)}});this.$el.data("xhr",a)},render:function(e){if(this.$el.removeClass("is-loading is-empty"),this.$choices.find("p").remove(),!e||!e.results||!e.results.length)return this.$el.addClass("is-empty"),void(1==this.o.paged&&this.$choices.children(".list").append("<p>"+acf._e("relationship","empty")+"</p>"));var t=$(this.walker(e.results));this.$values.find(".acf-rel-item").each(function(){t.find('.acf-rel-item[data-id="'+$(this).data("id")+'"]').addClass("disabled")}),this.$choices.children(".list").append(t);var i="",a=null;this.$choices.find(".acf-rel-label").each(function(){if($(this).text()==i)return a.append($(this).siblings("ul").html()),void $(this).parent().remove();i=$(this).text(),a=$(this).siblings("ul")})},walker:function(e){var t="";if($.isArray(e))for(var i in e)t+=this.walker(e[i]);else $.isPlainObject(e)&&(void 0!==e.children?(t+='<li><span class="acf-rel-label">'+e.text+'</span><ul class="acf-bl">',t+=this.walker(e.children),t+="</ul></li>"):t+='<li><span class="acf-rel-item" data-id="'+e.id+'">'+e.text+"</span></li>");return t},submit_filter:function(e){13==e.which&&e.preventDefault()},change_filter:function(e){var t=e.$el.val(),i=e.$el.data("filter");this.$el.data(i)!=t&&(this.$el.data(i,t),this.$el.data("paged",1),e.$el.is("select")?this.fetch():this.maybe_fetch())},add_item:function(e){if(this.o.max>0&&this.$values.find(".acf-rel-item").length>=this.o.max)return void alert(acf._e("relationship","max").replace("{max}",this.o.max));if(e.$el.hasClass("disabled"))return!1;e.$el.addClass("disabled");var t=["<li>",'<input type="hidden" name="'+this.$input.attr("name")+'[]" value="'+e.$el.data("id")+'" />','<span data-id="'+e.$el.data("id")+'" class="acf-rel-item">'+e.$el.html(),'<a href="#" class="acf-icon -minus small dark" data-name="remove_item"></a>',"</span>","</li>"].join("");this.$values.children(".list").append(t),this.$input.trigger("change"),acf.validation.remove_error(this.$field)},remove_item:function(e){var t=e.$el.parent(),i=t.data("id");t.parent("li").remove(),this.$choices.find('.acf-rel-item[data-id="'+i+'"]').removeClass("disabled"),this.$input.trigger("change")}})}(jQuery),function($){var e,t,i;e=acf.select2=acf.model.extend({version:0,version3:null,version4:null,actions:{"ready 1":"ready"},ready:function(){this.version=this.get_version(),this.do_function("ready")},get_version:function(){return acf.maybe_get(window,"Select2")?3:acf.maybe_get(window,"jQuery.fn.select2.amd")?4:0},do_function:function(e,t){t=t||[];var i="version"+this.version;return void 0!==this[i]&&void 0!==this[i][e]&&this[i][e].apply(this,t)},get_data:function(e,t){var i=this;return t=t||[],e.children().each(function(){var e=$(this);e.is("optgroup")?t.push({text:e.attr("label"),children:i.get_data(e)}):t.push({id:e.attr("value"),text:e.text()})}),t},decode_data:function(t){return t?($.each(t,function(i,a){t[i].text=acf.decode(a.text),void 0!==a.children&&(t[i].children=e.decode_data(a.children))}),t):[]},count_data:function(e){var t=0;return e?($.each(e,function(e,i){t++,void 0!==i.children&&(t+=i.children.length)}),t):t},get_ajax_data:function(e,t,i,a){var n=acf.prepare_for_ajax({action:e.ajax_action,field_key:e.key,s:t.term||"",paged:t.page||1});return n=acf.apply_filters("select2_ajax_data",n,e,i,a)},get_ajax_results:function(e,t){var i={results:[]};return e||(e=i),void 0===e.results&&(i.results=e,e=i),e.results=this.decode_data(e.results),e=acf.apply_filters("select2_ajax_results",e,t)},get_value:function(e){var t=[],i=e.find("option:selected");return i.exists()?(i=i.sort(function(e,t){return+e.getAttribute("data-i")-+t.getAttribute("data-i")}),i.each(function(){var e=$(this);t.push({id:e.attr("value"),text:e.text(),$el:e})}),t):t},get_input_value:function(e){return e.val().split("||")},sync_input_value:function(e,t){e.val(t.val().join("||"))},add_option:function(e,t,i){e.find('option[value="'+t+'"]').length||e.append('<option value="'+t+'">'+i+"</option>")},select_option:function(e,t){e.find('option[value="'+t+'"]').prop("selected",!0),e.trigger("change")},unselect_option:function(e,t){e.find('option[value="'+t+'"]').prop("selected",!1),e.trigger("change")},init:function(e,t,i){this.do_function("init",arguments)},destroy:function(e){this.do_function("destroy",arguments)},add_value:function(e,t,i){this.do_function("add_value",arguments)},remove_value:function(e,t){this.do_function("remove_value",arguments)}}),t=e.version3={ready:function(){var e=acf.get("locale"),t=acf.get("rtl");if(l10n=acf._e("select"),l10n){var i={
|
3 |
-
formatMatches:function(e){return 1===e?l10n.matches_1:l10n.matches_n.replace("%d",e)},formatNoMatches:function(){return l10n.matches_0},formatAjaxError:function(){return l10n.load_fail},formatInputTooShort:function(e,t){var i=t-e.length;return 1===i?l10n.input_too_short_1:l10n.input_too_short_n.replace("%d",i)},formatInputTooLong:function(e,t){var i=e.length-t;return 1===i?l10n.input_too_long_1:l10n.input_too_long_n.replace("%d",i)},formatSelectionTooBig:function(e){return 1===e?l10n.selection_too_long_1:l10n.selection_too_long_n.replace("%d",e)},formatLoadMore:function(){return l10n.load_more},formatSearching:function(){return l10n.searching}};$.fn.select2.locales=acf.maybe_get(window,"jQuery.fn.select2.locales",{}),$.fn.select2.locales[e]=i,$.extend($.fn.select2.defaults,i)}},set_data:function(e,t){3==this.version&&(e=e.siblings("input")),e.select2("data",t)},append_data:function(e,t){3==this.version&&(e=e.siblings("input"));var i=e.select2("data")||[];i.push(t),e.select2("data",i)},init:function(i,a,n){a=a||{},n=n||null,a=$.extend({allow_null:!1,placeholder:"",multiple:!1,ajax:!1,ajax_action:""},a);var s=i.siblings("input");if(s.exists()){var o={width:"100%",containerCssClass:"-acf",allowClear:a.allow_null,placeholder:a.placeholder,multiple:a.multiple,separator:"||",data:[],escapeMarkup:function(e){return e},formatResult:function(e,t,i,a){var n=$.fn.select2.defaults.formatResult(e,t,i,a);return e.description&&(n+=' <span class="select2-result-description">'+e.description+"</span>"),n}},r=this.get_value(i);if(a.multiple){var l=i.attr("name");o.formatSelection=function(e,t){var i='<input type="hidden" class="select2-search-choice-hidden" name="'+l+'" value="'+e.id+'"'+(s.prop("disabled")?'disabled="disabled"':"")+" />";return t.parent().append(i),e.text}}else r=acf.maybe_get(r,0,!1),!a.allow_null&&r&&s.val(r.id);a.allow_null&&i.find('option[value=""]').remove(),o.data=this.get_data(i),o.initSelection=function(e,t){t(r)},a.ajax&&(o.ajax={url:acf.get("ajaxurl"),dataType:"json",type:"post",cache:!1,quietMillis:250,data:function(t,i){var o={term:t,page:i};return e.get_ajax_data(a,o,s,n)},results:function(i,a){var n={page:a};return setTimeout(function(){t.merge_results()},1),e.get_ajax_results(i,n)}}),o.dropdownCss={"z-index":"999999999"},o.acf=a,o=acf.apply_filters("select2_args",o,i,a,n),s.select2(o);var c=s.select2("container");c.before(i),c.before(s),a.multiple&&c.find("ul.select2-choices").sortable({start:function(){s.select2("onSortStart")},stop:function(){s.select2("onSortEnd")}}),i.prop("disabled",!0).addClass("acf-disabled acf-hidden"),s.on("change",function(t){t.added&&e.add_option(i,t.added.id,t.added.text),e.select_option(i,t.val)}),acf.do_action("select2_init",s,o,a,n)}},merge_results:function(){var e="",t=null;$("#select2-drop .select2-result-with-children").each(function(){var i=$(this).children(".select2-result-label"),a=$(this).children(".select2-result-sub");if(i.text()==e)return t.append(a.children()),void $(this).remove();e=i.text(),t=a})},destroy:function(e){var t=e.siblings("input");t.data("select2")&&t.select2("destroy"),e.siblings(".select2-container").remove(),e.prop("disabled",!1).removeClass("acf-disabled acf-hidden"),t.attr("style","")},add_value:function(t,i,a){e.add_option(t,i,a),e.select_option(t,i);var n=t.siblings("input"),s={id:i,text:a};if(!t.data("multiple"))return n.select2("data",s);var o=n.select2("data")||[];return o.push(s),n.select2("data",o)},remove_value:function(t,i){e.unselect_option(t,i);var a=t.siblings("input"),n=a.select2("data");t.data("multiple")?(n=$.grep(n,function(e){return e.id!=i}),a.select2("data",n)):n&&n.id==i&&a.select2("data",null)}},i=e.version4={init:function(t,a,n){a=a||{},n=n||null,a=$.extend({allow_null:!1,placeholder:"",multiple:!1,ajax:!1,ajax_action:""},a);var s=t.siblings("input");if(s.exists()){var o={width:"100%",allowClear:a.allow_null,placeholder:a.placeholder,multiple:a.multiple,separator:"||",data:[],escapeMarkup:function(e){return e}},r=this.get_value(t);a.multiple?$.each(r,function(e,i){i.$el.detach().appendTo(t)}):r=acf.maybe_get(r,0,""),a.ajax?o.ajax={url:acf.get("ajaxurl"),delay:250,dataType:"json",type:"post",cache:!1,data:function(i){return e.get_ajax_data(a,i,t,n)},processResults:function(t,a){var n=e.get_ajax_results(t,a);return n.more&&(n.pagination={more:!0}),setTimeout(function(){i.merge_results()},1),n}}:(t.removeData("ajax"),t.removeAttr("data-ajax")),o=acf.apply_filters("select2_args",o,t,a,n),t.select2(o);var l=t.next(".select2-container");if(a.multiple){var c=l.find("ul");c.sortable({stop:function(e){c.find(".select2-selection__choice").each(function(){$($(this).data("data").element).detach().appendTo(t),s.trigger("change")})}}),t.on("select2:select",function(e){$(e.params.data.element).detach().appendTo(t)})}s.val(""),l.addClass("-acf"),acf.do_action("select2_init",t,o,a,n)}},merge_results:function(){var e=null,t=null;$('.select2-results__option[role="group"]').each(function(){var i=$(this).children("ul"),a=$(this).children("strong");if(null!==t&&a.text()==t.text())return e.append(i.children()),void $(this).remove();e=i,t=a})},add_value:function(t,i,a){e.add_option(t,i,a),e.select_option(t,i)},remove_value:function(t,i){e.unselect_option(t,i)},destroy:function(e){e.data("select2")&&e.select2("destroy"),e.siblings(".select2-container").remove()}},acf.add_select2=function(t,i){e.init(t,i)},acf.remove_select2=function(t){e.destroy(t)}}(jQuery),function($){acf.fields.select=acf.field.extend({type:"select",$select:null,actions:{ready:"render",append:"render",remove:"remove"},focus:function(){this.$select=this.$field.find("select"),this.$select.exists()&&(this.o=acf.get_data(this.$select),this.o=acf.parse_args(this.o,{ajax_action:"acf/fields/"+this.type+"/query",key:this.$field.data("key")}))},render:function(){if(!this.$select.exists()||!this.o.ui)return!1;acf.select2.init(this.$select,this.o,this.$field)},remove:function(){if(!this.$select.exists()||!this.o.ui)return!1;acf.select2.destroy(this.$select)}}),acf.fields.user=acf.fields.select.extend({type:"user"}),acf.fields.post_object=acf.fields.select.extend({type:"post_object"}),acf.fields.page_link=acf.fields.select.extend({type:"page_link"})}(jQuery),function($,e){var t=0;acf.fields.accordion=acf.field.extend({type:"accordion",$el:null,$wrap:null,actions:{prepare:"initialize",append:"initialize"},focus:function(){},initialize:function(){var e=this.$field,i=e.children(".acf-label"),a=e.children(".acf-input"),n=a.children(".acf-fields"),s=n.data();if(!e.is("td")){if(s.endpoint)return void e.remove();var o=a.children(".description");if(o.length&&i.append(o),e.is("tr")){var r=e.closest("table"),l=$('<div class="acf-accordion-title"/>'),c=$('<div class="acf-accordion-content"/>'),d=$('<table class="'+r.attr("class")+'"/>'),f=$("<tbody/>");l.append(i.html()),d.append(f),c.append(d),a.append(l),a.append(c),i.remove(),n.remove(),a.attr("colspan",2),i=l,a=c,n=f}e.addClass("acf-accordion"),i.addClass("acf-accordion-title"),a.addClass("acf-accordion-content"),t++,s.multi_expand&&e.data("multi-expand",1);var u=acf.getPreference("this.accordions")||[];void 0!==u[t-1]&&(s.open=u[t-1]),s.open&&(e.addClass("-open"),a.css("display","block")),i.prepend('<i class="acf-accordion-icon dashicons dashicons-arrow-'+(s.open?"down":"right")+'"></i>');var h=e.parent();n.addClass(h.hasClass("-left")?"-left":""),n.addClass(h.hasClass("-clear")?"-clear":""),n.append(e.nextUntil(".acf-field-accordion",".acf-field")),n.removeAttr("data-open data-multi_expand data-endpoint")}}});var i=acf.model.extend({events:{"click .acf-accordion-title":"_click"},_click:function(e){e.preventDefault(),this.toggle(e.$el.closest(".acf-accordion"))},isOpen:function(e){return e.hasClass("-open")},toggle:function(e){this.isOpen(e)?this.close(e):this.open(e)},open:function(e){e.find(".acf-accordion-content:first").slideDown().css("display","block"),e.find(".acf-accordion-icon:first").removeClass("dashicons-arrow-right").addClass("dashicons-arrow-down"),e.addClass("-open"),acf.do_action("show",e),e.data("multi-expand")||e.siblings(".acf-accordion.-open").each(function(){i.close($(this))}),acf.do_action("refresh",e)},close:function(e){e.find(".acf-accordion-content:first").slideUp(),e.find(".acf-accordion-icon:first").removeClass("dashicons-arrow-down").addClass("dashicons-arrow-right"),e.removeClass("-open"),acf.do_action("hide",e)}});$(window).on("unload",function(){var e=[];$(".acf-accordion").each(function(){var t=$(this).hasClass("-open")?1:0;e.push(t)}),e.length&&acf.setPreference("this.accordions",e)});var a=acf.model.extend({active:1,events:{"invalidField .acf-accordion":"invalidField"},invalidField:function(e){this.active&&(this.block(),i.open(e.$el))},block:function(){var e=this;this.active=0,setTimeout(function(){e.active=1},1e3)}})}(jQuery),function($){var e="hidden-by-conditional-logic",t=0,i=0,a=acf.model.extend({events:{"click .acf-tab-button":"_click"},_click:function(e){e.preventDefault(),this.toggle(e.$el)},isOpen:function(e){return e.hasClass("-open")},toggle:function(e){var t=e.data("key"),i=e.parent(),a=e.closest(".acf-tab-wrap"),n=a.find(".active a"),s=a.siblings('.acf-field[data-key="'+t+'"]');if(!this.isOpen(s)){if(n.length){var o=n.data("key"),r=n.parent(),l=a.siblings('.acf-field[data-key="'+o+'"]');r.removeClass("active"),this.close(l)}i.addClass("active"),this.open(s),acf.do_action("refresh",a.parent())}},getFields:function(e){return e.nextUntil(".acf-field-tab",".acf-field")},getWrap:function(e){return e.prevAll(".acf-tab-wrap:first")},getTab:function(e,t){return e.find('a[data-key="'+t+'"]')},open:function(e){this.getFields(e).each(function(){$(this).removeClass("hidden-by-tab"),acf.do_action("show_field",$(this),"tab")})},close:function(e){this.getFields(e).each(function(){$(this).addClass("hidden-by-tab"),acf.do_action("hide_field",$(this),"tab")})},createTab:function(e){var a=this.getWrap(e),n=e.find(".acf-tab-button"),s=n.data();a.exists()&&!s.endpoint||(a=this.createTabWrap(e,s));var o=$("<li></li>").append(n);return i++,((acf.getPreference("this.tabs")||[])[t-1]||0)==i-1?(o.addClass("active"),this.open(e)):this.close(e),""==n.html()&&o.hide(),a.find("ul").append(o),o},createTabWrap:function(e,a){var n=e.parent(),s=!1;return n.hasClass("acf-fields")&&"left"==a.placement&&n.addClass("-sidebar"),s=$(e.is("tr")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="acf-hl acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap -'+a.placement+'"><ul class="acf-hl acf-tab-group"></ul></div>'),e.before(s),t++,i=0,s}});acf.fields.tab=acf.field.extend({type:"tab",$el:null,$wrap:null,actions:{prepare:"initialize",append:"initialize",hide:"hide",show:"show"},focus:function(){},initialize:function(){var e=this.$field,t=e.children(".acf-label"),i=e.children(".acf-input");if(!e.is("td")){var n=a.createTab(e);e.hide(),t.remove(),i.remove()}},hide:function(t,i){if("conditional_logic"==i){var n=t.data("key"),s=a.getWrap(t),o=a.getTab(s,n),r=o.parent();s.exists()&&(r.addClass(e),a.getFields(t).each(function(){acf.conditional_logic.hide_field($(this))}),r.hasClass("active")&&s.find("a:visible").first().trigger("click"))}},show:function(t,i){if("conditional_logic"==i){var n=t.data("key"),s=a.getWrap(t),o=a.getTab(s,n),r=o.parent();if(s.exists()){r.removeClass(e),a.getFields(t).each(function(){acf.conditional_logic.show_field($(this))});var l=r.siblings(".active");l.exists()&&!l.hasClass(e)||a.toggle(o)}}}}),$(window).on("unload",function(){var e=[];$(".acf-tab-wrap").each(function(){var t=$(this).find(".active").index()||0;e.push(t)}),e.length&&acf.setPreference("this.tabs",e)});var n=acf.model.extend({active:1,actions:{invalid_field:"invalid_field"},invalid_field:function(e){if(this.active&&e.hasClass("hidden-by-tab")){var t=this,i=e.prevAll(".acf-field-tab:first");e.prevAll(".acf-tab-wrap:first").find('a[data-key="'+i.data("key")+'"]').trigger("click"),this.active=0,setTimeout(function(){t.active=1},1e3)}}})}(jQuery),function($){acf.fields.time_picker=acf.field.extend({type:"time_picker",$el:null,$input:null,$hidden:null,o:{},actions:{ready:"initialize",append:"initialize"},events:{'blur input[type="text"]':"blur"},focus:function(){this.$el=this.$field.find(".acf-time-picker"),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){if(void 0!==$.timepicker){var e={timeFormat:this.o.time_format,altField:this.$hidden,altFieldTimeOnly:!1,altTimeFormat:"HH:mm:ss",showButtonPanel:!0,controlType:"select",oneLine:!0,closeText:acf._e("date_time_picker","selectText")};e.onClose=function(e,t){var i=t.dpDiv,a=i.find(".ui-datepicker-close");if(!e&&a.is(":hover")){if(!(e=acf.maybe_get(t,"settings.timepicker.formattedTime")))return;$.datepicker._setTime(t)}},e=acf.apply_filters("time_picker_args",e,this.$field),this.$input.timepicker(e),$("body > #ui-datepicker-div").exists()&&$("body > #ui-datepicker-div").wrap('<div class="acf-ui-datepicker" />'),acf.do_action("time_picker_init",this.$input,e,this.$field)}},blur:function(){this.$input.val()||this.$hidden.val("")}})}(jQuery),function($){acf.fields.true_false=acf.field.extend({type:"true_false",$switch:null,$input:null,actions:{prepare:"render",append:"render",show:"render"},events:{"change .acf-switch-input":"_change","focus .acf-switch-input":"_focus","blur .acf-switch-input":"_blur","keypress .acf-switch-input":"_keypress"},focus:function(){this.$input=this.$field.find(".acf-switch-input"),this.$switch=this.$field.find(".acf-switch")},render:function(){if(this.$switch.exists()){var e=this.$switch.children(".acf-switch-on"),t=this.$switch.children(".acf-switch-off");width=Math.max(e.width(),t.width()),width&&(e.css("min-width",width),t.css("min-width",width))}},on:function(){this.$input.prop("checked",!0),this.$switch.addClass("-on")},off:function(){this.$input.prop("checked",!1),this.$switch.removeClass("-on")},_change:function(e){e.$el.prop("checked")?this.on():this.off()},_focus:function(e){this.$switch.addClass("-focus")},_blur:function(e){this.$switch.removeClass("-focus")},_keypress:function(e){return 37===e.keyCode?this.off():39===e.keyCode?this.on():void 0}})}(jQuery),function($){acf.fields.taxonomy=acf.field.extend({type:"taxonomy",$el:null,actions:{ready:"render",append:"render",remove:"remove"},events:{'click a[data-name="add"]':"add_term"},focus:function(){this.$el=this.$field.find(".acf-taxonomy-field"),this.o=acf.get_data(this.$el,{save:"",type:"",taxonomy:""}),this.o.key=this.$field.data("key")},render:function(){var e=this.$field.find("select");if(e.exists()){var t=acf.get_data(e);t=acf.parse_args(t,{pagination:!0,ajax_action:"acf/fields/taxonomy/query",key:this.o.key}),acf.select2.init(e,t)}},remove:function(){var e=this.$field.find("select");if(!e.exists())return!1;acf.select2.destroy(e)},add_term:function(e){var t=this;acf.open_popup({title:e.$el.attr("title")||e.$el.data("title"),loading:!0,height:220});var i=acf.prepare_for_ajax({action:"acf/fields/taxonomy/add_term",field_key:this.o.key});$.ajax({url:acf.get("ajaxurl"),data:i,type:"post",dataType:"html",success:function(e){t.add_term_confirm(e)}})},add_term_confirm:function(e){var t=this;acf.update_popup({content:e}),$('#acf-popup input[name="term_name"]').focus(),$("#acf-popup form").on("submit",function(e){e.preventDefault(),t.add_term_submit($(this))})},add_term_submit:function(e){var t=this,i=e.find(".acf-submit"),a=e.find('input[name="term_name"]'),n=e.find('select[name="term_parent"]');if(""===a.val())return a.focus(),!1;i.find("button").attr("disabled","disabled"),i.find(".acf-spinner").addClass("is-active");var s=acf.prepare_for_ajax({action:"acf/fields/taxonomy/add_term",field_key:this.o.key,term_name:a.val(),term_parent:n.exists()?n.val():0});$.ajax({url:acf.get("ajaxurl"),data:s,type:"post",dataType:"json",success:function(e){var n=acf.get_ajax_message(e);acf.is_ajax_success(e)&&(a.val(""),t.append_new_term(e.data)),n.text&&i.find("span").html(n.text)},complete:function(){i.find("button").removeAttr("disabled"),i.find(".acf-spinner").removeClass("is-active"),i.find("span").delay(1500).fadeOut(250,function(){$(this).html(""),$(this).show()}),a.focus()}})},append_new_term:function(e){var t={id:e.term_id,text:e.term_label};switch($('.acf-taxonomy-field[data-taxonomy="'+this.o.taxonomy+'"]').each(function(){var t=$(this).data("type");if("radio"==t||"checkbox"==t){var i=$(this).children('input[type="hidden"]'),a=$(this).find("ul:first"),n=i.attr("name");"checkbox"==t&&(n+="[]");var s=$(['<li data-id="'+e.term_id+'">',"<label>",'<input type="'+t+'" value="'+e.term_id+'" name="'+n+'" /> ',"<span>"+e.term_label+"</span>","</label>","</li>"].join(""));if(e.term_parent){var o=a.find('li[data-id="'+e.term_parent+'"]');a=o.children("ul"),a.exists()||(a=$('<ul class="children acf-bl"></ul>'),o.append(a))}a.append(s)}}),$("#acf-popup #term_parent").each(function(){var t=$('<option value="'+e.term_id+'">'+e.term_label+"</option>");e.term_parent?$(this).children('option[value="'+e.term_parent+'"]').after(t):$(this).append(t)}),this.o.type){case"select":var i=this.$el.children("select");acf.select2.add_value(i,e.term_id,e.term_label);break;case"multi_select":var i=this.$el.children("select");acf.select2.add_value(i,e.term_id,e.term_label);break;case"checkbox":case"radio":var a=this.$el.find(".categorychecklist-holder"),n=a.find('li[data-id="'+e.term_id+'"]'),s=a.get(0).scrollTop+(n.offset().top-a.offset().top);n.find("input").prop("checked",!0),a.animate({scrollTop:s},"250");break}}})}(jQuery),function($){acf.fields.url=acf.field.extend({type:"url",$input:null,actions:{ready:"render",append:"render"},events:{'keyup input[type="url"]':"render"},focus:function(){this.$input=this.$field.find('input[type="url"]')},is_valid:function(){var e=this.$input.val();if(-1!==e.indexOf("://"));else if(0!==e.indexOf("//"))return!1;return!0},render:function(){this.is_valid()?this.$input.parent().addClass("-valid"):this.$input.parent().removeClass("-valid")}})}(jQuery),function($){acf.validation=acf.model.extend({actions:{ready:"ready",append:"ready"},filters:{validation_complete:"validation_complete"},events:{"click #save-post":"click_ignore",'click [type="submit"]':"click_publish","submit form":"submit_form","click .acf-error-message a":"click_message"},active:1,ignore:0,busy:0,valid:!0,errors:[],error_class:"acf-error",message_class:"acf-error-message",$trigger:null,ready:function(e){var t=$(".acf-field input, .acf-field textarea, .acf-field select");if(t.length){var i=this;t.on("invalid",function(e){var t=$(this),i=acf.get_field_wrap(t);i.trigger("invalidField"),acf.do_action("invalid",t),acf.do_action("invalid_field",i),acf.validation.ignore||(e.preventDefault(),acf.validation.errors.push({input:t.attr("name"),message:e.target.validationMessage}),acf.validation.fetch(t.closest("form")))})}},validation_complete:function(e,t){if(!this.errors.length)return e;e.valid=0,e.errors=e.errors||[];var a=[];if(e.errors.length)for(i in e.errors)a.push(e.errors[i].input);if(this.errors.length)for(i in this.errors){var n=this.errors[i];-1===$.inArray(n.input,a)&&e.errors.push(n)}return this.errors=[],e},click_message:function(e){e.preventDefault(),acf.remove_el(e.$el.parent())},click_ignore:function(e){var t=this;this.ignore=1,this.$trigger=e.$el,this.$form=e.$el.closest("form"),$("."+this.message_class).each(function(){acf.remove_el($(this))}),this.ignore_required_inputs(),setTimeout(function(){t.ignore=0},100)},ignore_required_inputs:function(){var e=$(".acf-field input[required], .acf-field textarea[required], .acf-field select[required]");e.length&&(e.prop("required",!1),setTimeout(function(){e.prop("required",!0)},100))},click_publish:function(e){this.$trigger=e.$el},submit_form:function(e){if(!this.active)return!0;if(this.ignore)return this.ignore=0,!0;if(!e.$el.find("#acf-form-data").exists())return!0;var t=e.$el.find("#wp-preview");if(t.exists()&&t.val())return this.toggle(e.$el,"unlock"),!0;e.preventDefault(),this.fetch(e.$el)},toggle:function(e,t){t=t||"unlock";var i=null,a=null,n=$("#submitdiv");n.exists()||(n=$("#submitpost")),n.exists()||(n=e.find("p.submit").last()),n.exists()||(n=e.find(".acf-form-submit")),n.exists()||(n=e),i=n.find('input[type="submit"], .button'),a=n.find(".spinner, .acf-spinner"),this.hide_spinner(a),"unlock"==t?this.enable_submit(i):"lock"==t&&(this.disable_submit(i),this.show_spinner(a.last()))},fetch:function(e){if(this.busy)return!1;var t=this;acf.do_action("validation_begin");var i=acf.serialize(e);i.action="acf/validate_save_post",i=acf.prepare_for_ajax(i),this.busy=1,this.toggle(e,"lock"),$.ajax({url:acf.get("ajaxurl"),data:i,type:"post",dataType:"json",success:function(i){acf.is_ajax_success(i)&&t.fetch_success(e,i.data)},complete:function(){t.fetch_complete(e)}})},fetch_complete:function(e){if(this.busy=0,this.toggle(e,"unlock"),this.valid){this.ignore=1;var t=e.children(".acf-error-message");t.exists()&&(t.addClass("-success"),t.children("p").html(acf._e("validation_successful")),setTimeout(function(){acf.remove_el(t)},2e3)),e.find(".acf-postbox.acf-hidden").remove(),acf.do_action("submit",e),this.$trigger?this.$trigger.click():e.submit(),this.toggle(e,"lock")}},fetch_success:function(e,t){if(!(t=acf.apply_filters("validation_complete",t,e))||t.valid||!t.errors)return this.valid=!0,void acf.do_action("validation_success");acf.do_action("validation_failure"),this.valid=!1,this.$trigger=null,this.display_errors(t.errors,e)},display_errors:function(e,t){if(e&&e.length){var a=t.children(".acf-error-message"),n=acf._e("validation_failed"),s=0,o=null;for(i=0;i<e.length;i++){var r=e[i];if(r.input){var l=t.find('[name="'+r.input+'"]').first();if(l.exists()||(l=t.find('[name^="'+r.input+'"]').first()),l.exists()){s++;var c=acf.get_field_wrap(l);this.add_error(c,r.message),null===o&&(o=c)}}else n+=". "+r.message}1==s?n+=". "+acf._e("validation_failed_1"):s>1&&(n+=". "+acf._e("validation_failed_2").replace("%d",s)),a.exists()||(a=$('<div class="acf-error-message"><p></p><a href="#" class="acf-icon -cancel small"></a></div>'),t.prepend(a)),a.children("p").html(n),null===o&&(o=a),setTimeout(function(){$("html, body").animate({scrollTop:o.offset().top-$(window).height()/2},500)},10)}},add_error:function(e,t){var i=this;e.addClass(this.error_class),void 0!==t&&(e.children(".acf-input").children("."+this.message_class).remove(),e.children(".acf-input").prepend('<div class="'+this.message_class+'"><p>'+t+"</p></div>"));var a=function(){i.remove_error(e),e.off("focus change","input, textarea, select",a)};e.on("focus change","input, textarea, select",a),e.trigger("invalidField"),acf.do_action("add_field_error",e),acf.do_action("invalid_field",e)},remove_error:function(e){var t=e.children(".acf-input").children("."+this.message_class);e.removeClass(this.error_class),setTimeout(function(){acf.remove_el(t)},250),acf.do_action("remove_field_error",e),acf.do_action("valid_field",e)},add_warning:function(e,t){this.add_error(e,t),setTimeout(function(){acf.validation.remove_error(e)},1e3)},show_spinner:function(e){if(e.exists()){var t=acf.get("wp_version");parseFloat(t)>=4.2?e.addClass("is-active"):e.css("display","inline-block")}},hide_spinner:function(e){if(e.exists()){var t=acf.get("wp_version");parseFloat(t)>=4.2?e.removeClass("is-active"):e.css("display","none")}},disable_submit:function(e){e.exists()&&e.addClass("disabled button-disabled button-primary-disabled")},enable_submit:function(e){e.exists()&&e.removeClass("disabled button-disabled button-primary-disabled")}})}(jQuery),function($){acf.fields.wysiwyg=acf.field.extend({type:"wysiwyg",$el:null,$textarea:null,toolbars:{},events:{"mousedown .acf-editor-wrap.delay":"mousedown"},actions:{load:"initialize",append:"initialize",remove:"disable",sortstart:"disable",sortstop:"enable"},focus:function(){this.$el=this.$field.find(".wp-editor-wrap").last(),this.$textarea=this.$el.find("textarea"),this.o=acf.get_data(this.$el,{toolbar:"",active:this.$el.hasClass("tmce-active"),id:this.$textarea.attr("id")})},mousedown:function(e){e.preventDefault(),this.$el.removeClass("delay"),this.$el.find(".acf-editor-toolbar").remove(),this.initialize()},initialize:function(){if(!this.$el.hasClass("delay")){var e={tinymce:!0,quicktags:!0,toolbar:this.o.toolbar,mode:this.o.active?"visual":"text"},t=this.o.id,i=acf.get_uniqid("acf-editor-"),a=this.$el.outerHTML();a=acf.str_replace(t,i,a),this.$el.replaceWith(a),this.o.id=i,acf.tinymce.initialize(this.o.id,e,this.$field)}},disable:function(){acf.tinymce.destroy(this.o.id)},enable:function(){this.o.active&&acf.tinymce.enable(this.o.id)}}),acf.tinymce=acf.model.extend({toolbars:{},actions:{ready:"ready"},ready:function(){var e=$("#acf-hidden-wp-editor");e.exists()&&(e.appendTo("body"),acf.isset(window,"tinymce","on")&&tinymce.on("AddEditor",function(e){var t=e.editor;"acf"===t.id.substr(0,3)&&(t=tinymce.editors.content||t,tinymce.activeEditor=t,wpActiveEditor=t.id)}))},defaults:function(){return"undefined"!=typeof tinyMCEPreInit&&{tinymce:tinyMCEPreInit.mceInit.acf_content,quicktags:tinyMCEPreInit.qtInit.acf_content}},initialize:function(e,t,i){t=t||{},i=i||null,t=acf.parse_args(t,{tinymce:!0,quicktags:!0,toolbar:"full",mode:"visual"}),t.tinymce&&this.initialize_tinymce(e,t,i),t.quicktags&&this.initialize_quicktags(e,t,i)},initialize_tinymce:function(e,t,i){var a=$("#"+e),n=this.defaults(),s=this.toolbars;if("undefined"==typeof tinymce)return!1;if(!n)return!1;if(tinymce.get(e))return this.enable(e);init=$.extend({},n.tinymce,t.tinymce),init.id=e,init.selector="#"+e;var o=t.toolbar;if(o&&void 0!==s[o])for(var r=1;r<=4;r++)init["toolbar"+r]=s[o][r]||"";if(init.setup=function(t){t.on("focus",function(e){acf.validation.remove_error(i)}),t.on("change",function(e){t.save(),a.trigger("change")}),$(t.getWin()).on("unload",function(){acf.tinymce.remove(e)})},init.wp_autoresize_on=!1,init=acf.apply_filters("wysiwyg_tinymce_settings",init,e,i),tinyMCEPreInit.mceInit[e]=init,"visual"==t.mode){tinymce.init(init);var l=tinymce.get(e);acf.do_action("wysiwyg_tinymce_init",l,l.id,init,i)}},initialize_quicktags:function(e,t,i){var a=this.defaults();if("undefined"==typeof quicktags)return!1;if(!a)return!1;init=$.extend({},a.quicktags,t.quicktags),init.id=e,init=acf.apply_filters("wysiwyg_quicktags_settings",init,init.id,i),tinyMCEPreInit.qtInit[e]=init;var n=quicktags(init);this.build_quicktags(n),acf.do_action("wysiwyg_quicktags_init",n,n.id,init,i)},build_quicktags:function(e){var t,i,a,n,s,e,o,r,l,c,d=",strong,em,link,block,del,ins,img,ul,ol,li,code,more,close,";t=e.canvas,i=e.name,a=e.settings,s="",n={},l="",c=e.id,a.buttons&&(l=","+a.buttons+",");for(r in edButtons)edButtons[r]&&(o=edButtons[r].id,l&&-1!==d.indexOf(","+o+",")&&-1===l.indexOf(","+o+",")||edButtons[r].instance&&edButtons[r].instance!==c||(n[o]=edButtons[r],edButtons[r].html&&(s+=edButtons[r].html(i+"_"))));l&&-1!==l.indexOf(",dfw,")&&(n.dfw=new QTags.DFWButton,s+=n.dfw.html(i+"_")),"rtl"===document.getElementsByTagName("html")[0].dir&&(n.textdirection=new QTags.TextDirectionButton,s+=n.textdirection.html(i+"_")),e.toolbar.innerHTML=s,e.theButtons=n,"undefined"!=typeof jQuery&&jQuery(document).triggerHandler("quicktags-init",[e])},disable:function(e){this.destroy(e)},destroy:function(e){this.destroy_tinymce(e)},destroy_tinymce:function(e){if("undefined"==typeof tinymce)return!1;var t=tinymce.get(e);return!!t&&(t.save(),t.destroy(),!0)},enable:function(e){this.enable_tinymce(e)},enable_tinymce:function(e){return"undefined"!=typeof switchEditors&&(void 0!==tinyMCEPreInit.mceInit[e]&&(switchEditors.go(e,"tmce"),!0))}})}(jQuery);
|
1 |
+
!function(e,t){"use strict";var i=function(){function e(){return u}function t(e,t,i,a){return"string"==typeof e&&"function"==typeof t&&(i=parseInt(i||10,10),l("actions",e,t,i,a)),f}function i(){var e=Array.prototype.slice.call(arguments),t=e.shift();return"string"==typeof t&&d("actions",t,e),f}function a(e,t){return"string"==typeof e&&r("actions",e,t),f}function n(e,t,i,a){return"string"==typeof e&&"function"==typeof t&&(i=parseInt(i||10,10),l("filters",e,t,i,a)),f}function s(){var e=Array.prototype.slice.call(arguments),t=e.shift();return"string"==typeof t?d("filters",t,e):f}function o(e,t){return"string"==typeof e&&r("filters",e,t),f}function r(e,t,i,a){if(u[e][t])if(i){var n=u[e][t],s;if(a)for(s=n.length;s--;){var o=n[s];o.callback===i&&o.context===a&&n.splice(s,1)}else for(s=n.length;s--;)n[s].callback===i&&n.splice(s,1)}else u[e][t]=[]}function l(e,t,i,a,n){var s={callback:i,priority:a,context:n},o=u[e][t];o?(o.push(s),o=c(o)):o=[s],u[e][t]=o}function c(e){for(var t,i,a,n=1,s=e.length;n<s;n++){for(t=e[n],i=n;(a=e[i-1])&&a.priority>t.priority;)e[i]=e[i-1],--i;e[i]=t}return e}function d(e,t,i){var a=u[e][t];if(!a)return"filters"===e&&i[0];var n=0,s=a.length;if("filters"===e)for(;n<s;n++)i[0]=a[n].callback.apply(a[n].context,i);else for(;n<s;n++)a[n].callback.apply(a[n].context,i);return"filters"!==e||i[0]}var f={removeFilter:o,applyFilters:s,addFilter:n,removeAction:a,doAction:i,addAction:t,storage:e},u={actions:{},filters:{}};return f};e.wp=e.wp||{},e.wp.hooks=new i}(window);var acf;!function($){$.fn.exists=function(){return $(this).length>0},$.fn.outerHTML=function(){return $(this).get(0).outerHTML},acf={l10n:{},o:{},update:function(e,t){this.o[e]=t},get:function(e){return void 0!==this.o[e]?this.o[e]:null},_e:function(e,t){t=t||!1;var i=this.l10n[e]||"";return t&&(i=i[t]||""),i},add_action:function(){for(var e=arguments[0].split(" "),t=e.length,i=0;i<t;i++)arguments[0]="acf/"+e[i],wp.hooks.addAction.apply(this,arguments);return this},remove_action:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.removeAction.apply(this,arguments),this},do_action:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.doAction.apply(this,arguments),this},add_filter:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.addFilter.apply(this,arguments),this},remove_filter:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.removeFilter.apply(this,arguments),this},apply_filters:function(){return arguments[0]="acf/"+arguments[0],wp.hooks.applyFilters.apply(this,arguments)},get_selector:function(e){e=e||"";var t=".acf-field";if($.isPlainObject(e))if($.isEmptyObject(e))e="";else for(k in e){e=e[k];break}return e&&(t+="-"+e,t=t.split("_").join("-"),t=t.split("field-field-").join("field-")),t},get_fields:function(e,t,i){e=e||"",t=t||!1,i=i||!1;var a=this.get_selector(e),n=$(a,t);return!1!==t&&t.each(function(){$(this).is(a)&&(n=n.add($(this)))}),i||(n=n.not(".acf-clone .acf-field"),n=acf.apply_filters("get_fields",n)),n},get_field:function(e,t){e=e||"",t=t||!1;var i=this.get_fields(e,t,!0);return!!i.exists()&&i.first()},get_closest_field:function(e,t){return t=t||"",e.closest(this.get_selector(t))},get_field_wrap:function(e){return e.closest(this.get_selector())},get_field_key:function(e){return e.data("key")},get_field_type:function(e){return e.data("type")},get_data:function(e,t){var i=e.data();return"object"==typeof t&&(i=this.parse_args(i,t)),i},get_uniqid:function(e,t){void 0===e&&(e="");var i,a=function(e,t){return e=parseInt(e,10).toString(16),t<e.length?e.slice(e.length-t):t>e.length?Array(t-e.length+1).join("0")+e:e};return this.php_js||(this.php_js={}),this.php_js.uniqidSeed||(this.php_js.uniqidSeed=Math.floor(123456789*Math.random())),this.php_js.uniqidSeed++,i=e,i+=a(parseInt((new Date).getTime()/1e3,10),8),i+=a(this.php_js.uniqidSeed,5),t&&(i+=(10*Math.random()).toFixed(8).toString()),i},serialize_form:function(){return this.serialize.apply(this,arguments)},serialize:function(e,t){t=t||"";var i={},a={},n=e.find("select, textarea, input").serializeArray();return $.each(n,function(e,n){var s=n.name,o=n.value;if(t){if(0!==s.indexOf(t))return;s=s.slice(t.length),"["==s.slice(0,1)&&(s=s.slice(1).replace("]",""))}"[]"===s.slice(-2)&&(s=s.slice(0,-2),void 0===a[s]&&(a[s]=-1),a[s]++,s+="["+a[s]+"]"),i[s]=o}),i},disable:function(e,t){if(t=t||"",e.hasClass("acf-disabled"))return!1;if(e.prop("disabled",!0),t){var i=e.data("acf_disabled")||[];i.indexOf(t)<0&&(i.push(t),e.data("acf_disabled",i))}return!0},enable:function(e,t){if(t=t||"",e.hasClass("acf-disabled"))return!1;var i=e.data("acf_disabled")||[];if(t){var a=i.indexOf(t);a>-1&&(i.splice(a,1),e.data("acf_disabled",i))}return!i.length&&(e.prop("disabled",!1),!0)},disable_el:function(e,t){t=t||"",e.find("select, textarea, input").each(function(){acf.disable($(this),t)})},disable_form:function(e,t){this.disable_el.apply(this,arguments)},enable_el:function(e,t){t=t||"",e.find("select, textarea, input").each(function(){acf.enable($(this),t)})},enable_form:function(e,t){this.enable_el.apply(this,arguments)},remove_tr:function(e,t){var i=e.height(),a=e.children().length;e.addClass("acf-remove-element"),setTimeout(function(){e.removeClass("acf-remove-element"),e.html('<td style="padding:0; height:'+i+'px" colspan="'+a+'"></td>'),e.children("td").animate({height:0},250,function(){e.remove(),"function"==typeof t&&t()})},250)},remove_el:function(e,t,i){i=i||0;var a=e.height(),n=e.width(),s=e.css("margin"),o=e.outerHeight(!0);acf.do_action("remove",e),e.wrap('<div class="acf-temp-remove" style="height:'+o+'px"></div>');var r=e.parent();e.css({height:a,width:n,margin:s,position:"absolute"}),setTimeout(function(){r.css({opacity:0,height:i})},50),setTimeout(function(){r.remove(),"function"==typeof t&&t.apply(this,arguments)},301)},isset:function(){var e=arguments,t=e.length,a=null,n;if(0===t)throw new Error("Empty isset");for(a=e[0],i=1;i<t;i++){if(e[i]===n||a[e[i]]===n)return!1;a=a[e[i]]}return!0},maybe_get:function(e,t,i){void 0===i&&(i=null),keys=String(t).split(".");for(var a in keys){var t=keys[a];if(void 0===e[t])return i;e=e[t]}return e},open_popup:function(e){if($popup=$("body > #acf-popup"),$popup.exists())return update_popup(e);var t=['<div id="acf-popup">','<div class="acf-popup-box acf-box">','<div class="title"><h3></h3><a href="#" class="acf-icon -cancel grey acf-close-popup"></a></div>','<div class="inner"></div>','<div class="loading"><i class="acf-loading"></i></div>',"</div>",'<div class="bg"></div>',"</div>"].join("");return $("body").append(t),$("#acf-popup").on("click",".bg, .acf-close-popup",function(e){e.preventDefault(),acf.close_popup()}),this.update_popup(e)},update_popup:function(e){return $popup=$("#acf-popup"),!!$popup.exists()&&(e=$.extend({},{title:"",content:"",width:0,height:0,loading:!1},e),e.title&&$popup.find(".title h3").html(e.title),e.content&&($inner=$popup.find(".inner:first"),$inner.html(e.content),acf.do_action("append",$inner),$inner.attr("style","position: relative;"),e.height=$inner.outerHeight(),$inner.removeAttr("style")),e.width&&$popup.find(".acf-popup-box").css({width:e.width,"margin-left":0-e.width/2}),e.height&&(e.height+=44,$popup.find(".acf-popup-box").css({height:e.height,"margin-top":0-e.height/2})),e.loading?$popup.find(".loading").show():$popup.find(".loading").hide(),$popup)},close_popup:function(){$popup=$("#acf-popup"),$popup.exists()&&$popup.remove()},update_user_setting:function(e,t){$.ajax({url:acf.get("ajaxurl"),dataType:"html",type:"post",data:acf.prepare_for_ajax({action:"acf/update_user_setting",name:e,value:t})})},prepare_for_ajax:function(e){var t={};return $.each(e,function(e,i){$.isPlainObject(i)&&!$.isEmptyObject(i)?$.each(i,function(i,a){i+="";var n=i.indexOf("[");i=0==n?e+i:n>0?e+"["+i.slice(0,n)+"]"+i.slice(n):e+"["+i+"]",t[i]=a}):t[e]=i}),t.nonce=acf.get("nonce"),t.post_id=acf.get("post_id"),t=acf.apply_filters("prepare_for_ajax",t)},is_ajax_success:function(e){return!(!e||!e.success)},get_ajax_message:function(e){var t={text:"",type:"error"};return e?(e.success&&(t.type="success"),e.data&&e.data.message&&(t.text=e.data.message),e.data&&e.data.error&&(t.text=e.data.error),t):t},is_in_view:function(e){var t=e.offset().top,i=t+e.height();if(t===i)return!1;var a=$(window).scrollTop();return i<=a+$(window).height()&&t>=a},val:function(e,t){var i=e.val();e.val(t),t!=i&&e.trigger("change")},str_replace:function(e,t,i){return i.split(e).join(t)},str_sanitize:function(e){var t={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","ß":"s","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Ĉ":"C","ĉ":"c","Ċ":"C","ċ":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"D","đ":"d","Ē":"E","ē":"e","Ĕ":"E","ĕ":"e","Ė":"E","ė":"e","Ę":"E","ę":"e","Ě":"E","ě":"e","Ĝ":"G","ĝ":"g","Ğ":"G","ğ":"g","Ġ":"G","ġ":"g","Ģ":"G","ģ":"g","Ĥ":"H","ĥ":"h","Ħ":"H","ħ":"h","Ĩ":"I","ĩ":"i","Ī":"I","ī":"i","Ĭ":"I","ĭ":"i","Į":"I","į":"i","İ":"I","ı":"i","IJ":"IJ","ij":"ij","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","Ĺ":"L","ĺ":"l","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ŀ":"L","ŀ":"l","Ł":"l","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","ʼn":"n","Ō":"O","ō":"o","Ŏ":"O","ŏ":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ŗ":"R","ŗ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ŝ":"S","ŝ":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ŧ":"T","ŧ":"t","Ũ":"U","ũ":"u","Ū":"U","ū":"u","Ŭ":"U","ŭ":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","ſ":"s","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Ǎ":"A","ǎ":"a","Ǐ":"I","ǐ":"i","Ǒ":"O","ǒ":"o","Ǔ":"U","ǔ":"u","Ǖ":"U","ǖ":"u","Ǘ":"U","ǘ":"u","Ǚ":"U","ǚ":"u","Ǜ":"U","ǜ":"u","Ǻ":"A","ǻ":"a","Ǽ":"AE","ǽ":"ae","Ǿ":"O","ǿ":"o"," ":"_","'":"","?":"","/":"","\\":"",".":"",",":"","`":"",">":"","<":"",'"':"","[":"","]":"","|":"","{":"","}":"","(":"",")":""},i=/\W/g,a=function(e){return void 0!==t[e]?t[e]:e};return e=e.replace(i,a),e=e.toLowerCase()},addslashes:function(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},esc_html:function(e){var t={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/","`":"`","=":"="};return String(e).replace(/[&<>"'`=\/]/g,function(e){return t[e]})},render_select:function(e,t){var i=e.val();e.html(""),t&&$.each(t,function(t,a){var n=e;a.group&&(n=e.find('optgroup[label="'+a.group+'"]'),n.exists()||(n=$('<optgroup label="'+a.group+'"></optgroup>'),e.append(n))),n.append('<option value="'+a.value+'">'+acf.esc_html(a.label)+"</option>"),i==a.value&&e.prop("selectedIndex",t)})},duplicate:function(e){void 0!==e.length&&(e={$el:e}),e=acf.parse_args(e,{$el:!1,search:"",replace:"",before:function(e){},after:function(e,t){},append:function(e,t){e.after(t)}});var t=e.$el,i;e.search||(e.search=t.attr("data-id")),e.replace||(e.replace=acf.get_uniqid()),e.before.apply(this,[t]),acf.do_action("before_duplicate",t);var i=t.clone();return i.removeClass("acf-clone"),acf.do_action("remove",i),e.search&&(i.attr("data-id",e.replace),i.find('[id*="'+e.search+'"]').each(function(){$(this).attr("id",$(this).attr("id").replace(e.search,e.replace))}),i.find('[name*="'+e.search+'"]').each(function(){$(this).attr("name",$(this).attr("name").replace(e.search,e.replace))}),i.find('label[for*="'+e.search+'"]').each(function(){$(this).attr("for",$(this).attr("for").replace(e.search,e.replace))})),i.find(".ui-sortable").removeClass("ui-sortable"),acf.do_action("after_duplicate",t,i),e.after.apply(this,[t,i]),e.append.apply(this,[t,i]),setTimeout(function(){acf.do_action("append",i)},1),i},decode:function(e){return $("<textarea/>").html(e).text()},parse_args:function(e,t){return"object"!=typeof e&&(e={}),"object"!=typeof t&&(t={}),$.extend({},t,e)},enqueue_script:function(e,t){var i=document.createElement("script");i.type="text/javascript",i.src=e,i.async=!0,i.readyState?i.onreadystatechange=function(){"loaded"!=i.readyState&&"complete"!=i.readyState||(i.onreadystatechange=null,t())}:i.onload=function(){t()},document.body.appendChild(i)}},acf.model={actions:{},filters:{},events:{},extend:function(e){var t=$.extend({},this,e);return $.each(t.actions,function(e,i){t._add_action(e,i)}),$.each(t.filters,function(e,i){t._add_filter(e,i)}),$.each(t.events,function(e,i){t._add_event(e,i)}),t},_add_action:function(e,t){var i=this,a=e.split(" "),e=a[0]||"",n=a[1]||10;acf.add_action(e,i[t],n,i)},_add_filter:function(e,t){var i=this,a=e.split(" "),e=a[0]||"",n=a[1]||10;acf.add_filter(e,i[t],n,i)},_add_event:function(e,t){var i=this,a=e.indexOf(" "),n=a>0?e.substr(0,a):e,s=a>0?e.substr(a+1):"",o=function(e){e.$el=$(this),"function"==typeof i.event&&(e=i.event(e)),i[t].apply(i,arguments)};s?$(document).on(n,s,o):$(document).on(n,o)},get:function(e,t){return t=t||null,void 0!==this[e]&&(t=this[e]),t},set:function(e,t){return this[e]=t,"function"==typeof this["_set_"+e]&&this["_set_"+e].apply(this),this}},acf.field=acf.model.extend({type:"",o:{},$field:null,_add_action:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_action(e,function(e){i.set("$field",e),i[t].apply(i,arguments)})},_add_filter:function(e,t){var i=this;e=e+"_field/type="+i.type,acf.add_filter(e,function(e){i.set("$field",e),i[t].apply(i,arguments)})},_add_event:function(e,t){var i=this,a=e.substr(0,e.indexOf(" ")),n=e.substr(e.indexOf(" ")+1),s=acf.get_selector(i.type);$(document).on(a,s+" "+n,function(e){var a=$(this),n=acf.get_closest_field(a,i.type);n.length&&(n.is(i.$field)||i.set("$field",n),e.$el=a,e.$field=n,i[t].apply(i,[e]))})},_set_$field:function(){"function"==typeof this.focus&&this.focus()},doFocus:function(e){return this.set("$field",e)}}),acf.fields=acf.model.extend({actions:{prepare:"_prepare",prepare_field:"_prepare_field",ready:"_ready",ready_field:"_ready_field",append:"_append",append_field:"_append_field",load:"_load",load_field:"_load_field",remove:"_remove",remove_field:"_remove_field",sortstart:"_sortstart",sortstart_field:"_sortstart_field",sortstop:"_sortstop",sortstop_field:"_sortstop_field",show:"_show",show_field:"_show_field",hide:"_hide",hide_field:"_hide_field"},_prepare:function(e){acf.get_fields("",e).each(function(){acf.do_action("prepare_field",$(this))})},_prepare_field:function(e){acf.do_action("prepare_field/type="+e.data("type"),e)},_ready:function(e){acf.get_fields("",e).each(function(){acf.do_action("ready_field",$(this))})},_ready_field:function(e){acf.do_action("ready_field/type="+e.data("type"),e)},_append:function(e){acf.get_fields("",e).each(function(){acf.do_action("append_field",$(this))})},_append_field:function(e){acf.do_action("append_field/type="+e.data("type"),e)},_load:function(e){acf.get_fields("",e).each(function(){acf.do_action("load_field",$(this))})},_load_field:function(e){acf.do_action("load_field/type="+e.data("type"),e)},_remove:function(e){acf.get_fields("",e).each(function(){acf.do_action("remove_field",$(this))})},_remove_field:function(e){acf.do_action("remove_field/type="+e.data("type"),e)},_sortstart:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("sortstart_field",$(this),t)})},_sortstart_field:function(e,t){acf.do_action("sortstart_field/type="+e.data("type"),e,t)},_sortstop:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("sortstop_field",$(this),t)})},_sortstop_field:function(e,t){acf.do_action("sortstop_field/type="+e.data("type"),e,t)},_hide:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("hide_field",$(this),t)})},_hide_field:function(e,t){acf.do_action("hide_field/type="+e.data("type"),e,t)},_show:function(e,t){acf.get_fields("",e).each(function(){acf.do_action("show_field",$(this),t)})},_show_field:function(e,t){acf.do_action("show_field/type="+e.data("type"),e,t)}}),$(document).ready(function(){acf.do_action("ready",$("body"))}),$(window).on("load",function(){acf.do_action("load",$("body"))}),acf.layout=acf.model.extend({actions:{"refresh 99":"refresh"},refresh:function(e){e=e||$("body"),this.render_tables(e),this.render_groups(e)},render_tables:function(e){var t=this,i=e.find(".acf-table:visible");e.is("table")?i=i.add(e):e.is("tr")&&(i=i.add(e.closest("table"))),i.each(function(){t.render_table($(this))})},render_table:function(e){var t=e.find("> thead th.acf-th"),i=1,a=100;if(t.exists()){var n=e.find("> tbody > tr"),s=n.find("> td.acf-field");n.hasClass("acf-clone")&&n.length>1&&(s=n.not(".acf-clone").find("> td.acf-field")),t.each(function(){var e=$(this),t=e.attr("data-key"),i=s.filter('[data-key="'+t+'"]');i.removeClass("appear-empty"),e.removeClass("hidden-by-conditional-logic"),i.exists()&&(0==i.not(".hidden-by-conditional-logic").length?e.addClass("hidden-by-conditional-logic"):i.filter(".hidden-by-conditional-logic").addClass("appear-empty"))}),t.css("width","auto"),t=t.not(".hidden-by-conditional-logic"),i=t.length,t.filter("[data-width]").each(function(){var e=parseInt($(this).attr("data-width"));a-=e,$(this).css("width",e+"%")}),t=t.not("[data-width]"),t.each(function(){var e=a/t.length;$(this).css("width",e+"%")}),e.find(".acf-row .acf-field.-collapsed-target").removeAttr("colspan"),e.find(".acf-row.-collapsed .acf-field.-collapsed-target").attr("colspan",i)}},render_groups:function(e){var t=this,i=e.find(".acf-fields:visible");e&&e.is(".acf-fields")&&(i=i.add(e)),i.each(function(){t.render_group($(this))})},render_group:function(e){var t=$(),i=0,a=0,n=-1,s=e.children(".acf-field[data-width]:visible");if(s.exists()){if(e.hasClass("-left"))return s.removeAttr("data-width"),void s.css("width","auto");s.removeClass("-r0 -c0").css({"min-height":0}),s.each(function(e){var s=$(this),o=s.position().top;0==e&&(i=o),o!=i&&(t.css({"min-height":a+1+"px"}),t=$(),i=s.position().top,a=0,n=-1),n++,a=s.outerHeight()>a?s.outerHeight():a,t=t.add(s),0==o?s.addClass("-r0"):0==n&&s.addClass("-c0")}),t.exists()&&t.css({"min-height":a+1+"px"})}}}),$(document).on("change",".acf-field input, .acf-field textarea, .acf-field select",function(){var e=$("#_acf_changed");e.length&&e.val(1),acf.do_action("change",$(this))}),$(document).on("click",'.acf-field a[href="#"]',function(e){e.preventDefault()}),acf.unload=acf.model.extend({locked:1,active:1,changed:0,filters:{validation_complete:"validation_complete"},actions:{ready:"ready",change:"on"},ready:function(){setTimeout(function(){acf.unload.locked=0},1e3)},events:{"submit form":"off"},validation_complete:function(e,t){return e&&e.errors&&this.on(),e},on:function(){this.changed||!this.active||this.locked||(this.changed=1,$(window).on("beforeunload",this.unload))},off:function(){this.changed=0,$(window).off("beforeunload",this.unload)},unload:function(){return acf._e("unload")}}),acf.tooltip=acf.model.extend({events:{"mouseenter .acf-js-tooltip":"_on","mouseup .acf-js-tooltip":"_off","mouseleave .acf-js-tooltip":"_off"},tooltip:function(e,t){var i=$('<div class="acf-tooltip">'+e+"</div>");$("body").append(i);var a=10;target_w=t.outerWidth(),target_h=t.outerHeight(),target_t=t.offset().top,target_l=t.offset().left,tooltip_w=i.outerWidth(),tooltip_h=i.outerHeight();var n=target_t-tooltip_h,s=target_l+target_w/2-tooltip_w/2;return s<10?(i.addClass("right"),s=target_l+target_w,n=target_t+target_h/2-tooltip_h/2):s+tooltip_w+10>$(window).width()?(i.addClass("left"),s=target_l-tooltip_w,n=target_t+target_h/2-tooltip_h/2):n-$(window).scrollTop()<10?(i.addClass("bottom"),n=target_t+target_h):i.addClass("top"),i.css({top:n,left:s}),i},temp:function(e,t){var t=this.tooltip(e,t),i=0;i+=250,setTimeout(function(){t.addClass("acf-fade-up")},i),i+=250,setTimeout(function(){t.remove()},i)},confirm:function(e,t,i,a,n){i=i||acf._e("are_you_sure"),a=a||'<a href="#" class="acf-confirm-y">'+acf._e("yes")+"</a>",n=n||'<a href="#" class="acf-confirm-n">'+acf._e("No")+"</a>";var s=this.tooltip(i+" "+a+" "+n,e);s.addClass("-confirm");var o=function(i,a){i.preventDefault(),i.stopImmediatePropagation(),e.off("click",r),s.off("click",".acf-confirm-y",r),s.off("click",".acf-confirm-n",l),$("body").off("click",l),s.remove(),t.apply(null,[a])},r=function(e){o(e,!0)},l=function(e){o(e,!1)};s.on("click",".acf-confirm-y",r),s.on("click",".acf-confirm-n",l),e.on("click",r),$("body").on("click",l)},confirm_remove:function(e,t){text=!1,button_y='<a href="#" class="acf-confirm-y -red">'+acf._e("remove")+"</a>",button_n='<a href="#" class="acf-confirm-n">'+acf._e("cancel")+"</a>",this.confirm(e,t,!1,button_y,button_n)},_on:function(e){var t=e.$el.attr("title");if(t){var i=this.tooltip(t,e.$el);e.$el.data("acf-tooltip",{title:t,$el:i}),e.$el.attr("title","")}},_off:function(e){var t=e.$el.data("acf-tooltip");t&&(t.$el.remove(),e.$el.attr("title",t.title))}}),acf.postbox=acf.model.extend({events:{"mouseenter .acf-postbox .handlediv":"on","mouseleave .acf-postbox .handlediv":"off"},on:function(e){e.$el.siblings(".hndle").addClass("hover")},off:function(e){e.$el.siblings(".hndle").removeClass("hover")},render:function(e){e=$.extend({},{id:"",key:"",style:"default",label:"top",edit_url:"",edit_title:"",visibility:!0},e);var t=$("#"+e.id),i=$("#"+e.id+"-hide"),a=i.parent();t.addClass("acf-postbox"),a.addClass("acf-postbox-toggle"),t.removeClass("hide-if-js"),a.removeClass("hide-if-js"),"default"!==e.style&&t.addClass(e.style),t.children(".inside").addClass("acf-fields").addClass("-"+e.label),e.visibility?i.prop("checked",!0):(t.addClass("acf-hidden"),a.addClass("acf-hidden")),e.edit_url&&t.children(".hndle").append('<a href="'+e.edit_url+'" class="dashicons dashicons-admin-generic acf-hndle-cog acf-js-tooltip" title="'+e.edit_title+'"></a>')}});var e=acf.model.extend({events:{"click .acf-panel-title":"_click"},_click:function(e){e.preventDefault(),this.toggle(e.$el.parent())},is_open:function(e){return e.hasClass("-open")},toggle:function(e){this.is_open(e)?this.close(e):this.open(e)},open:function(e){e.addClass("-open"),e.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-down")},close:function(e){e.removeClass("-open"),e.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-right")}});acf.notice=acf.model.extend({actions:{prepare:"prepare"},prepare:function(){var e=$(".acf-notice");e.length&&$("h1:first").after(e)},html:function(e,t){},success:function(e){},error:function(e){},warning:function(e){},information:function(e){}});var t=localStorage.getItem("acf");t=t?JSON.parse(t):{};var a=function(e){return"this."===e.substr(0,5)&&(e=e.substr(5)+"-"+acf.get("post_id")),e};acf.getPreference=function(e){return e=a(e),t[e]||null},acf.setPreference=function(e,i){e=a(e),null===i?delete t[e]:t[e]=i,localStorage.setItem("acf",JSON.stringify(t))},acf.removePreference=function(e){acf.setPreference(e,null)},$(document).on("sortstart",function(e,t){acf.do_action("sortstart",t.item,t.placeholder)}),$(document).on("sortstop",function(e,t){acf.do_action("sortstop",t.item,t.placeholder)}),acf.add_action("sortstart",function(e,t){e.is("tr")&&(e.css("position","relative"),e.children().each(function(){$(this).width($(this).width())}),e.css("position","absolute"),t.html('<td style="height:'+e.height()+'px; padding:0;" colspan="'+e.children("td").length+'"></td>'))}),acf.add_action("before_duplicate",function(e){e.find("select option:selected").addClass("selected")}),acf.add_action("after_duplicate",function(e,t){t.find("select").each(function(){var e=$(this),t=[];e.find("option.selected").each(function(){t.push($(this).val())}),e.val(t)}),e.find("select option.selected").removeClass("selected"),t.find("select option.selected").removeClass("selected")}),Array.prototype.indexOf||(Array.prototype.indexOf=function(e){return $.inArray(e,this)})}(jQuery),function($){acf.ajax=acf.model.extend({active:!1,actions:{ready:"ready"},events:{"change #page_template":"_change_template","change #parent_id":"_change_parent","change #post-formats-select input":"_change_format","change .categorychecklist input":"_change_term","change .categorychecklist select":"_change_term",'change .acf-taxonomy-field[data-save="1"] input':"_change_term",'change .acf-taxonomy-field[data-save="1"] select':"_change_term"},o:{},xhr:null,update:function(e,t){return this.o[e]=t,this},get:function(e){return this.o[e]||null},ready:function(){this.update("post_id",acf.get("post_id")),this.active=!0},fetch:function(){if(this.active&&acf.get("ajax")){this.xhr&&this.xhr.abort();var e=this,t=this.o;t.action="acf/post/get_field_groups",t.exists=[],$(".acf-postbox").not(".acf-hidden").each(function(){t.exists.push($(this).attr("id").substr(4))}),this.xhr=$.ajax({url:acf.get("ajaxurl"),data:acf.prepare_for_ajax(t),type:"post",dataType:"json",success:function(t){acf.is_ajax_success(t)&&e.render(t.data)}})}},render:function(e){$(".acf-postbox").addClass("acf-hidden"),$(".acf-postbox-toggle").addClass("acf-hidden"),$("#acf-style").html(""),$.each(e,function(e,t){var i=$("#acf-"+t.key),a=$("#acf-"+t.key+"-hide"),n=a.parent();i.removeClass("acf-hidden hide-if-js").show(),n.removeClass("acf-hidden hide-if-js").show(),a.prop("checked",!0);var s=i.find(".acf-replace-with-fields");s.exists()&&(s.replaceWith(t.html),acf.do_action("append",i)),0===e&&$("#acf-style").html(t.style),i.find(".acf-hidden-by-postbox").prop("disabled",!1)}),$(".acf-postbox.acf-hidden").find("select, textarea, input").not(":disabled").each(function(){$(this).addClass("acf-hidden-by-postbox").prop("disabled",!0)})},sync_taxonomy_terms:function(){var e=[""];$(".categorychecklist, .acf-taxonomy-field").each(function(){var t=$(this),i=t.find('input[type="checkbox"]').not(":disabled"),a=t.find('input[type="radio"]').not(":disabled"),n=t.find("select").not(":disabled"),s=t.find('input[type="hidden"]').not(":disabled");t.is(".acf-taxonomy-field")&&"1"!=t.attr("data-save")||t.closest(".media-frame").exists()||(i.exists()?i.filter(":checked").each(function(){e.push($(this).val())}):a.exists()?a.filter(":checked").each(function(){e.push($(this).val())}):n.exists()?n.find("option:selected").each(function(){e.push($(this).val())}):s.exists()&&s.each(function(){$(this).val()&&e.push($(this).val())}))}),e=e.filter(function(e,t,i){return i.indexOf(e)==t}),this.update("post_taxonomy",e).fetch()},_change_template:function(e){var t=e.$el.val();this.update("page_template",t).fetch()},_change_parent:function(e){var t="parent",i=0;""!=e.$el.val()&&(t="child",i=e.$el.val()),this.update("page_type",t).update("page_parent",i).fetch()},_change_format:function(e){var t=e.$el.val();"0"==t&&(t="standard"),this.update("post_format",t).fetch()},_change_term:function(e){var t=this;e.$el.closest(".media-frame").exists()||setTimeout(function(){t.sync_taxonomy_terms()},1)}})}(jQuery),function($){acf.fields.button_group=acf.field.extend({type:"button_group",$div:null,events:{'click input[type="radio"]':"click"},focus:function(){this.$div=this.$field.find(".acf-button-group"),this.o=acf.get_data(this.$div,{allow_null:0})},click:function(e){var t=e.$el,i=t.parent("label"),a=i.hasClass("selected");this.$div.find(".selected").removeClass("selected"),i.addClass("selected"),this.o.allow_null&&a&&(e.$el.prop("checked",!1),i.removeClass("selected"),e.$el.trigger("change"))}})}(jQuery),function($){acf.fields.checkbox=acf.field.extend({type:"checkbox",events:{"change input":"_change","click .acf-add-checkbox":"_add"},focus:function(){this.$ul=this.$field.find("ul"),this.$input=this.$field.find('input[type="hidden"]')},add:function(){var e=this.$input.attr("name")+"[]",t='<li><input class="acf-checkbox-custom" type="checkbox" checked="checked" /><input type="text" name="'+e+'" /></li>';this.$ul.find(".acf-add-checkbox").parent("li").before(t)},_change:function(e){var t=this.$ul,i=t.find('input[type="checkbox"]').not(".acf-checkbox-toggle"),a=e.$el.is(":checked");if(e.$el.hasClass("acf-checkbox-toggle"))return void i.prop("checked",a).trigger("change");if(e.$el.hasClass("acf-checkbox-custom")){var n=e.$el.next('input[type="text"]');e.$el.next('input[type="text"]').prop("disabled",!a),a||""!=n.val()||e.$el.parent("li").remove()}if(t.find(".acf-checkbox-toggle").exists()){var a=0==i.not(":checked").length;t.find(".acf-checkbox-toggle").prop("checked",a)}},_add:function(e){this.add()}})}(jQuery),function($){acf.fields.color_picker=acf.field.extend({type:"color_picker",$input:null,$hidden:null,actions:{ready:"initialize",append:"initialize"},focus:function(){this.$input=this.$field.find('input[type="text"]'),this.$hidden=this.$field.find('input[type="hidden"]')},initialize:function(){var e=this.$input,t=this.$hidden,i=function(){setTimeout(function(){acf.val(t,e.val())},1)},a={defaultColor:!1,palettes:!0,hide:!0,change:i,clear:i},a=acf.apply_filters("color_picker_args",a,this.$field);this.$input.wpColorPicker(a)}})}(jQuery),function($,e){var t="hidden-by-conditional-logic",i=acf.conditional_logic=acf.model.extend({conditions:{},triggers:{},$parent:!1,actions:{"prepare 20":"render","append 20":"render",change:"change"},add:function(e,t){for(var i in t){var a=t[i];for(var n in a){var s=a[n];this.addTrigger(s.field,e)}}this.setCondition(e,t)},getTrigger:function(e){return this.triggers[e]||null},setTrigger:function(e,t){this.triggers[e]=t},addTrigger:function(e,t){var i=this.getTrigger(e)||{};i[t]=1,this.setTrigger(e,i)},getConditions:function(){return this.conditions},getCondition:function(e){return this.conditions[e]||null},setCondition:function(e,t){this.conditions[e]=t},render:function(e){e=e||!1;var t=acf.get_fields("",e,!0);this.renderFields(t),acf.do_action("refresh",e)},findTarget:function(e,t){var i=this;this.$parent=!1;var a=acf.get_selector(t),n=e.siblings(a);if(n.length)return this.$parent=e.parent(),n;var n=acf.get_fields(t,!1,!0);return n.length>1&&e.parents(".acf-row, .acf-table, .acf-fields").each(function(){var e=$(this),t=e.find(n);if(t.length)return n=t,i.$parent=e,!1}),n},change:function(e){var t=acf.get_field_wrap(e),i=t.data("key"),a=this.getTrigger(i);if(!a)return!1;for(var n in a){var s=this.findTarget(t,n);this.renderFields(s)}acf.do_action("refresh",this.$parent)},renderFields:function(e){var t=this;e.each(function(){t.renderField($(this))})},renderField:function(e){var t=!1,i=e.data("key"),a=this.getCondition(i);if(!a)return!1;for(var n=0;n<a.length;n++){for(var s=a[n],o=!0,r=0;r<s.length;r++){var l=s[r],c=this.findTarget(e,l.field);if(!this.calculate(l,c,e)){o=!1;break}}if(o){t=!0;break}}t?this.showField(e):this.hideField(e)},showField:function(e){var i=e.data("key");e.removeClass(t),acf.enable_form(e,"condition-"+i),acf.do_action("show_field",e,"conditional_logic")},hideField:function(e){var i=e.data("key");e.addClass(t),acf.disable_form(e,"condition-"+i),acf.do_action("hide_field",e,"conditional_logic")},calculate:function(e,t,i){if(!t||!i)return!1;var a=!1,n=t.data("type");return"true_false"==n||"checkbox"==n||"radio"==n||"button_group"==n?a=this.calculate_checkbox(e,t):"select"==n&&(a=this.calculate_select(e,t)),"!="===e.operator&&(a=!a),a},calculate_checkbox:function(e,t){var i=t.find('input[value="'+e.value+'"]:checked').exists();return""!==e.value||t.find("input:checked").exists()||(i=!0),i},calculate_select:function(e,t){var i=t.find("select"),a=i.val();return a||$.isNumeric(a)||(a=""),$.isArray(a)||(a=[a]),match=$.inArray(e.value,a)>-1,match}});i.show_field=i.showField,i.hide_field=i.hideField}(jQuery),function($){acf.datepicker=acf.model.extend({actions:{"ready 1":"ready"},ready:function(){var e=acf.get("locale"),t=acf.get("rtl");l10n=acf._e("date_picker"),l10n&&void 0!==$.datepicker&&(l10n.isRTL=t,$.datepicker.regional[e]=l10n,$.datepicker.setDefaults(l10n))},init:function(e,t){void 0!==$.datepicker&&(t=t||{},e.datepicker(t),
|
2 |
$("body > #ui-datepicker-div").exists()&&$("body > #ui-datepicker-div").wrap('<div class="acf-ui-datepicker" />'))},destroy:function(e){}}),acf.fields.date_picker=acf.field.extend({type:"date_picker",$el:null,$input:null,$hidden:null,o:{},actions:{ready:"initialize",append:"initialize"},events:{'blur input[type="text"]':"blur"},focus:function(){this.$el=this.$field.find(".acf-date-picker"),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){if(this.o.save_format)return this.initialize2();var e={dateFormat:this.o.date_format,altField:this.$hidden,altFormat:"yymmdd",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day};e=acf.apply_filters("date_picker_args",e,this.$field),acf.datepicker.init(this.$input,e),acf.do_action("date_picker_init",this.$input,e,this.$field)},initialize2:function(){this.$input.val(this.$hidden.val());var e={dateFormat:this.o.date_format,altField:this.$hidden,altFormat:this.o.save_format,changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day};e=acf.apply_filters("date_picker_args",e,this.$field);var t=e.dateFormat;e.dateFormat=this.o.save_format,acf.datepicker.init(this.$input,e),this.$input.datepicker("option","dateFormat",t),acf.do_action("date_picker_init",this.$input,e,this.$field)},blur:function(){this.$input.val()||this.$hidden.val("")}})}(jQuery),function($){acf.datetimepicker=acf.model.extend({actions:{"ready 1":"ready"},ready:function(){var e=acf.get("locale"),t=acf.get("rtl");l10n=acf._e("date_time_picker"),l10n&&void 0!==$.timepicker&&(l10n.isRTL=t,$.timepicker.regional[e]=l10n,$.timepicker.setDefaults(l10n))},init:function(e,t){void 0!==$.timepicker&&(t=t||{},e.datetimepicker(t),$("body > #ui-datepicker-div").exists()&&$("body > #ui-datepicker-div").wrap('<div class="acf-ui-datepicker" />'))},destroy:function(e){}}),acf.fields.date_time_picker=acf.field.extend({type:"date_time_picker",$el:null,$input:null,$hidden:null,o:{},actions:{ready:"initialize",append:"initialize"},events:{'blur input[type="text"]':"blur"},focus:function(){this.$el=this.$field.find(".acf-date-time-picker"),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){var e={dateFormat:this.o.date_format,timeFormat:this.o.time_format,altField:this.$hidden,altFieldTimeOnly:!1,altFormat:"yy-mm-dd",altTimeFormat:"HH:mm:ss",changeYear:!0,yearRange:"-100:+100",changeMonth:!0,showButtonPanel:!0,firstDay:this.o.first_day,controlType:"select",oneLine:!0};e=acf.apply_filters("date_time_picker_args",e,this.$field),acf.datetimepicker.init(this.$input,e),acf.do_action("date_time_picker_init",this.$input,e,this.$field)},blur:function(){this.$input.val()||this.$hidden.val("")}})}(jQuery),function($){acf.fields.file=acf.field.extend({type:"file",$el:null,$input:null,actions:{ready:"initialize",append:"initialize"},events:{'click a[data-name="add"]':"add",'click a[data-name="edit"]':"edit",'click a[data-name="remove"]':"remove",'change input[type="file"]':"change"},focus:function(){this.$el=this.$field.find(".acf-file-uploader"),this.$input=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){"basic"==this.o.uploader&&this.$el.closest("form").attr("enctype","multipart/form-data")},prepare:function(e){if(e=e||{},e._valid)return e;var t={url:"",alt:"",title:"",filename:"",filesizeHumanReadable:"",icon:"/wp-includes/images/media/default.png"};return e.id&&(t=e.attributes),t._valid=!0,t},render:function(e){e=this.prepare(e),this.$el.find("img").attr({src:e.icon,alt:e.alt,title:e.title}),this.$el.find('[data-name="title"]').text(e.title),this.$el.find('[data-name="filename"]').text(e.filename).attr("href",e.url),this.$el.find('[data-name="filesize"]').text(e.filesizeHumanReadable);var t="";e.id&&(t=e.id),acf.val(this.$input,t),t?this.$el.addClass("has-value"):this.$el.removeClass("has-value")},add:function(){var e=this,t=this.$field,i=acf.get_closest_field(t,"repeater"),a=acf.media.popup({title:acf._e("file","select"),mode:"select",type:"",field:t.data("key"),multiple:i.exists(),library:this.o.library,mime_types:this.o.mime_types,select:function(a,n){if(n>0){var s=t.data("key"),o=t.closest(".acf-row");if(t=!1,o.nextAll(".acf-row:visible").each(function(){if(t=acf.get_field(s,$(this)))return!!t.find(".acf-file-uploader.has-value").exists()&&void(t=!1)}),!t){if(!(o=acf.fields.repeater.doFocus(i).add()))return!1;t=acf.get_field(s,o)}}e.set("$field",t).render(a)}})},edit:function(){var e=this,t=this.$field,i=this.$input.val();if(i)var a=acf.media.popup({title:acf._e("file","edit"),button:acf._e("file","update"),mode:"edit",attachment:i,select:function(i,a){e.set("$field",t).render(i)}})},remove:function(){var e={};this.render(e)},get_file_info:function(e,t){var i=e.val(),a={};if(!i)return void t.val("");a.url=i;var n=e[0].files;if(n.length){var s=n[0];if(a.size=s.size,a.type=s.type,s.type.indexOf("image")>-1){var o=window.URL||window.webkitURL,r=new Image;r.onload=function(){a.width=this.width,a.height=this.height,t.val(jQuery.param(a))},r.src=o.createObjectURL(s)}}t.val(jQuery.param(a))},change:function(e){this.get_file_info(e.$el,this.$input)}})}(jQuery),function($){acf.fields.google_map=acf.field.extend({type:"google_map",url:"",$el:null,$search:null,timeout:null,status:"",geocoder:!1,map:!1,maps:{},$pending:$(),actions:{ready:"initialize",append:"initialize",show:"show"},events:{'click a[data-name="clear"]':"_clear",'click a[data-name="locate"]':"_locate",'click a[data-name="search"]':"_search","keydown .search":"_keydown","keyup .search":"_keyup","focus .search":"_focus","blur .search":"_blur","mousedown .acf-google-map":"_mousedown"},focus:function(){this.$el=this.$field.find(".acf-google-map"),this.$search=this.$el.find(".search"),this.o=acf.get_data(this.$el),this.o.id=this.$el.attr("id"),this.maps[this.o.id]&&(this.map=this.maps[this.o.id])},is_ready:function(){var e=this;return"ready"==this.status||"loading"!=this.status&&(acf.isset(window,"google","maps","places")?(this.status="ready",!0):(acf.isset(window,"google","maps")&&(this.status="ready"),this.url&&(this.status="loading",acf.enqueue_script(this.url,function(){e.status="ready",e.initialize_pending()})),"ready"==this.status))},initialize_pending:function(){var e=this;this.$pending.each(function(){e.set("$field",$(this)).initialize()}),this.$pending=$()},initialize:function(){if(!this.is_ready())return this.$pending=this.$pending.add(this.$field),!1;this.geocoder||(this.geocoder=new google.maps.Geocoder);var e=this,t=this.$field,i=this.$el;this.$search.val(this.$el.find(".input-address").val());var a=acf.apply_filters("google_map_args",{scrollwheel:!1,zoom:parseInt(this.o.zoom),center:new google.maps.LatLng(this.o.lat,this.o.lng),mapTypeId:google.maps.MapTypeId.ROADMAP},this.$field);if(this.map=new google.maps.Map(this.$el.find(".canvas")[0],a),acf.isset(window,"google","maps","places","Autocomplete")){var n=new google.maps.places.Autocomplete(this.$search[0]);n.bindTo("bounds",this.map),google.maps.event.addListener(n,"place_changed",function(t){var i=this.getPlace();e.search(i)}),this.map.autocomplete=n}var s=acf.apply_filters("google_map_marker_args",{draggable:!0,raiseOnDrag:!0,map:this.map},this.$field);this.map.marker=new google.maps.Marker(s),this.map.$el=i,this.map.$field=t;var o=i.find(".input-lat").val(),r=i.find(".input-lng").val();o&&r&&this.update(o,r).center(),google.maps.event.addListener(this.map.marker,"dragend",function(){var t=this.map.marker.getPosition(),i=t.lat(),a=t.lng();e.update(i,a).sync()}),google.maps.event.addListener(this.map,"click",function(t){var i=t.latLng.lat(),a=t.latLng.lng();e.update(i,a).sync()}),acf.do_action("google_map_init",this.map,this.map.marker,this.$field),this.maps[this.o.id]=this.map},search:function(e){var t=this,i=this.$search.val();if(!i)return!1;this.$el.find(".input-address").val(i);var a=i.split(",");if(2==a.length){var n=a[0],s=a[1];if($.isNumeric(n)&&$.isNumeric(s))return n=parseFloat(n),s=parseFloat(s),void t.update(n,s).center()}if(e&&e.geometry){var n=e.geometry.location.lat(),s=e.geometry.location.lng();return void t.update(n,s).center()}this.$el.addClass("-loading"),t.geocoder.geocode({address:i},function(i,a){if(t.$el.removeClass("-loading"),a!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+a);if(!i[0])return void console.log("No results found");e=i[0];var n=e.geometry.location.lat(),s=e.geometry.location.lng();t.update(n,s).center()})},update:function(e,t){var i=new google.maps.LatLng(e,t);return acf.val(this.$el.find(".input-lat"),e),acf.val(this.$el.find(".input-lng"),t),this.map.marker.setPosition(i),this.map.marker.setVisible(!0),this.$el.addClass("-value"),this.$field.removeClass("error"),acf.do_action("google_map_change",i,this.map,this.$field),this.$search.blur(),this},center:function(){var e=this.map.marker.getPosition(),t=this.o.lat,i=this.o.lng;e&&(t=e.lat(),i=e.lng());var a=new google.maps.LatLng(t,i);this.map.setCenter(a)},sync:function(){var e=this,t=this.map.marker.getPosition(),i=new google.maps.LatLng(t.lat(),t.lng());return this.$el.addClass("-loading"),this.geocoder.geocode({latLng:i},function(t,i){if(e.$el.removeClass("-loading"),i!=google.maps.GeocoderStatus.OK)return void console.log("Geocoder failed due to: "+i);if(!t[0])return void console.log("No results found");var a=t[0];e.$search.val(a.formatted_address),acf.val(e.$el.find(".input-address"),a.formatted_address)}),this},refresh:function(){if(!this.is_ready())return!1;google.maps.event.trigger(this.map,"resize"),this.center()},show:function(){var e=this,t=this.$field;setTimeout(function(){e.set("$field",t).refresh()},10)},_clear:function(e){this.$el.removeClass("-value -loading -search"),this.$search.val(""),acf.val(this.$el.find(".input-address"),""),acf.val(this.$el.find(".input-lat"),""),acf.val(this.$el.find(".input-lng"),""),this.map.marker.setVisible(!1)},_locate:function(e){var t=this;if(!navigator.geolocation)return alert(acf._e("google_map","browser_support")),this;this.$el.addClass("-loading"),navigator.geolocation.getCurrentPosition(function(e){t.$el.removeClass("-loading");var i=e.coords.latitude,a=e.coords.longitude;t.update(i,a).sync().center()})},_search:function(e){this.search()},_focus:function(e){this.$el.removeClass("-value"),this._keyup()},_blur:function(e){var t=this,i=this.$el.find(".input-address").val();i&&(this.timeout=setTimeout(function(){t.$el.addClass("-value"),t.$search.val(i)},100))},_keydown:function(e){13==e.which&&e.preventDefault()},_keyup:function(e){this.$search.val()?this.$el.addClass("-search"):this.$el.removeClass("-search")},_mousedown:function(e){var t=this;setTimeout(function(){clearTimeout(t.timeout)},1)}})}(jQuery),function($){acf.fields.image=acf.field.extend({type:"image",$el:null,$input:null,$img:null,actions:{ready:"initialize",append:"initialize"},events:{'click a[data-name="add"]':"add",'click a[data-name="edit"]':"edit",'click a[data-name="remove"]':"remove",'change input[type="file"]':"change"},focus:function(){this.$el=this.$field.find(".acf-image-uploader"),this.$input=this.$el.find('input[type="hidden"]'),this.$img=this.$el.find("img"),this.o=acf.get_data(this.$el)},initialize:function(){"basic"==this.o.uploader&&this.$el.closest("form").attr("enctype","multipart/form-data")},prepare:function(e){if(e=e||{},e._valid)return e;var t={url:"",alt:"",title:"",caption:"",description:"",width:0,height:0};return e.id&&(t=e.attributes,t.url=acf.maybe_get(t,"sizes."+this.o.preview_size+".url",t.url)),t._valid=!0,t},render:function(e){e=this.prepare(e),this.$img.attr({src:e.url,alt:e.alt,title:e.title});var t="";e.id&&(t=e.id),acf.val(this.$input,t),t?this.$el.addClass("has-value"):this.$el.removeClass("has-value")},add:function(){var e=this,t=this.$field,i=acf.get_closest_field(this.$field,"repeater"),a=acf.media.popup({title:acf._e("image","select"),mode:"select",type:"image",field:t.data("key"),multiple:i.exists(),library:this.o.library,mime_types:this.o.mime_types,select:function(a,n){if(n>0){var s=t.data("key"),o=t.closest(".acf-row");if(t=!1,o.nextAll(".acf-row:visible").each(function(){if(t=acf.get_field(s,$(this)))return!!t.find(".acf-image-uploader.has-value").exists()&&void(t=!1)}),!t){if(!(o=acf.fields.repeater.doFocus(i).add()))return!1;t=acf.get_field(s,o)}}e.set("$field",t).render(a)}})},edit:function(){var e=this,t=this.$field,i=this.$input.val();if(i)var a=acf.media.popup({title:acf._e("image","edit"),button:acf._e("image","update"),mode:"edit",attachment:i,select:function(i,a){e.set("$field",t).render(i)}})},remove:function(){var e={};this.render(e)},change:function(e){acf.fields.file.get_file_info(e.$el,this.$input)}})}(jQuery),function($){acf.fields.link=acf.field.extend({type:"link",active:!1,$el:null,$node:null,events:{'click a[data-name="add"]':"add",'click a[data-name="edit"]':"edit",'click a[data-name="remove"]':"remove","change .link-node":"change"},focus:function(){this.$el=this.$field.find(".acf-link"),this.$node=this.$el.find(".link-node")},add:function(e){acf.link.open(this.$node)},edit:function(e){this.add()},remove:function(e){this.val("")},change:function(e,t){var i={title:this.$node.html(),url:this.$node.attr("href"),target:this.$node.attr("target")};this.val(i)},val:function(e){e=acf.parse_args(e,{title:"",url:"",target:""}),this.$el.removeClass("-value -external"),e.url&&this.$el.addClass("-value"),"_blank"===e.target&&this.$el.addClass("-external"),this.$el.find(".link-title").html(e.title),this.$el.find(".link-url").attr("href",e.url).html(e.url),this.$el.find(".input-title").val(e.title),this.$el.find(".input-target").val(e.target),this.$el.find(".input-url").val(e.url).trigger("change"),this.$node.html(e.title),this.$node.attr("href",e.url),this.$node.attr("target",e.target)}}),acf.link=acf.model.extend({active:!1,$textarea:null,$node:null,events:{"click #wp-link-submit":"_update","wplink-open":"_open","wplink-close":"_close"},atts:function(e){return void 0!==e?(this.$node.html(e.title),this.$node.attr("href",e.url),this.$node.attr("target",e.target),this.$node.trigger("change",[e]),!0):{title:this.$node.html(),url:this.$node.attr("href"),target:this.$node.attr("target")}},inputs:function(e){return void 0!==e?($("#wp-link-text").val(e.title),$("#wp-link-url").val(e.url),$("#wp-link-target").prop("checked","_blank"===e.target),!0):{title:$("#wp-link-text").val(),url:$("#wp-link-url").val(),target:$("#wp-link-target").prop("checked")?"_blank":""}},open:function(e){var t=$('<textarea id="acf-link-textarea"></textarea>');e.before(t),this.active=!0,this.$node=e,this.$textarea=t;var i=this.atts();wpLink.open("acf-link-textarea",i.url,i.title,null),$("#wp-link-wrap").addClass("has-text-field")},reset:function(){this.active=!1,this.$textarea.remove(),this.$textarea=null,this.$node=null},_select:function(e,t){var i=this.inputs();i.title||(i.title=t.find(".item-title").text(),this.inputs(i),console.log(i))},_open:function(e){if(this.active){var t=this.atts();this.inputs(t)}},_close:function(e){this.active&&setTimeout(function(){acf.link.reset()},100)},_update:function(e){if(this.active){var t=this.inputs();this.atts(t)}}})}(jQuery),function($){acf.media=acf.model.extend({frames:[],mime_types:{},actions:{ready:"ready"},frame:function(){var e=this.frames.length-1;return!(e<0)&&this.frames[e]},destroy:function(e){e.detach(),e.dispose(),e=null,this.frames.pop()},popup:function(e){var t=acf.get("post_id"),i=!1;$.isNumeric(t)||(t=0);var a=acf.parse_args(e,{mode:"select",title:"",button:"",type:"",field:"",mime_types:"",library:"all",multiple:!1,attachment:0,post_id:t,select:function(){}});a.id&&(a.attachment=a.id);var i=this.new_media_frame(a);return this.frames.push(i),setTimeout(function(){i.open()},1),i},_get_media_frame_settings:function(e,t){return"select"===t.mode?e=this._get_select_frame_settings(e,t):"edit"===t.mode&&(e=this._get_edit_frame_settings(e,t)),e},_get_select_frame_settings:function(e,t){return t.type&&(e.library.type=t.type),"uploadedTo"===t.library&&(e.library.uploadedTo=t.post_id),e._button=acf._e("media","select"),e},_get_edit_frame_settings:function(e,t){return e.library.post__in=[t.attachment],e._button=acf._e("media","update"),e},_add_media_frame_events:function(e,t){return e.on("open",function(){this.$el.closest(".media-modal").addClass("acf-media-modal -"+t.mode)},e),e.on("content:render:edit-image",function(){var e=this.state().get("image"),t=new wp.media.view.EditImage({model:e,controller:this}).render();this.content.set(t),t.loadEditor()},e),e.on("toolbar:create:select",function(t){t.view=new wp.media.view.Toolbar.Select({text:e.options._button,controller:this})},e),e.on("select",function(){var i=e.state(),a=i.get("image"),n=i.get("selection");if(a)return void t.select.apply(e,[a,0]);if(n){var s=0;return void n.each(function(i){t.select.apply(e,[i,s]),s++})}}),e.on("close",function(){setTimeout(function(){acf.media.destroy(e)},500)}),"select"===t.mode?e=this._add_select_frame_events(e,t):"edit"===t.mode&&(e=this._add_edit_frame_events(e,t)),e},_add_select_frame_events:function(e,t){var i=this;return acf.isset(_wpPluploadSettings,"defaults","multipart_params")&&(_wpPluploadSettings.defaults.multipart_params._acfuploader=t.field,e.on("open",function(){delete _wpPluploadSettings.defaults.multipart_params._acfuploader})),e.on("content:activate:browse",function(){try{var a=e.content.get().toolbar,n=a.get("filters"),s=a.get("search")}catch(e){return}if("image"==t.type&&(n.filters.all.text=acf._e("image","all"),delete n.filters.audio,delete n.filters.video,$.each(n.filters,function(e,t){null===t.props.type&&(t.props.type="image")})),t.mime_types){var o=t.mime_types.split(" ").join("").split(".").join("").split(",");$.each(o,function(e,t){$.each(i.mime_types,function(e,i){if(-1!==e.indexOf(t)){var a={text:t,props:{status:null,type:i,uploadedTo:null,orderby:"date",order:"DESC"},priority:20};n.filters[i]=a}})})}"uploadedTo"==t.library&&(delete n.filters.unattached,delete n.filters.uploaded,n.$el.parent().append('<span class="acf-uploadedTo">'+acf._e("image","uploadedTo")+"</span>"),$.each(n.filters,function(e,i){i.props.uploadedTo=t.post_id})),$.each(n.filters,function(e,i){i.props._acfuploader=t.field}),s.model.attributes._acfuploader=t.field,"function"==typeof n.refresh&&n.refresh()}),e},_add_edit_frame_events:function(e,t){return e.on("open",function(){this.$el.closest(".media-modal").addClass("acf-expanded"),"browse"!=this.content.mode()&&this.content.mode("browse");var e=this.state(),i=e.get("selection"),a=wp.media.attachment(t.attachment);i.add(a)},e),e},new_media_frame:function(e){var t={title:e.title,multiple:e.multiple,library:{},states:[]};t=this._get_media_frame_settings(t,e);var i=wp.media.query(t.library);acf.isset(i,"mirroring","args")&&(i.mirroring.args._acfuploader=e.field),t.states=[new wp.media.controller.Library({library:i,multiple:t.multiple,title:t.title,priority:20,filterable:"all",editable:!0,allowLocalEdits:!0})],acf.isset(wp,"media","controller","EditImage")&&t.states.push(new wp.media.controller.EditImage);var a=wp.media(t);return a.acf=e,a=this._add_media_frame_events(a,e)},ready:function(){var e=acf.get("wp_version"),t=acf.get("browser"),i=acf.get("post_id");acf.isset(window,"wp","media","view","settings","post")&&$.isNumeric(i)&&(wp.media.view.settings.post.id=i),t&&$("body").addClass("browser-"+t),e&&(e+="",major=e.substr(0,1),$("body").addClass("major-"+major)),acf.isset(window,"wp","media","view")&&(this.customize_Attachment(),this.customize_AttachmentFiltersAll(),this.customize_AttachmentCompat())},customize_Attachment:function(){var e=wp.media.view.Attachment.Library;wp.media.view.Attachment.Library=e.extend({render:function(){var t=acf.media.frame(),i=acf.maybe_get(this,"model.attributes.acf_errors");return t&&i&&this.$el.addClass("acf-disabled"),e.prototype.render.apply(this,arguments)},toggleSelection:function(t){var i=this.collection,a=this.options.selection,n=this.model,s=a.single(),o=acf.media.frame(),r=acf.maybe_get(this,"model.attributes.acf_errors"),l=this.controller.$el.find(".media-frame-content .media-sidebar");if(l.children(".acf-selection-error").remove(),l.children().removeClass("acf-hidden"),o&&r){var c=acf.maybe_get(this,"model.attributes.filename","");return l.children().addClass("acf-hidden"),l.prepend(['<div class="acf-selection-error">','<span class="selection-error-label">'+acf._e("restricted")+"</span>",'<span class="selection-error-filename">'+c+"</span>",'<span class="selection-error-message">'+r+"</span>","</div>"].join("")),a.reset(),void a.single(n)}e.prototype.toggleSelection.apply(this,arguments)}})},customize_AttachmentFiltersAll:function(){wp.media.view.AttachmentFilters.All.prototype.refresh=function(){this.$el.html(_.chain(this.filters).map(function(e,t){return{el:$("<option></option>").val(t).html(e.text)[0],priority:e.priority||50}},this).sortBy("priority").pluck("el").value())}},customize_AttachmentCompat:function(){var e=wp.media.view.AttachmentCompat;wp.media.view.AttachmentCompat=e.extend({add_acf_expand_button:function(){var e=this.$el.closest(".media-modal");if(!e.find(".media-frame-router .acf-expand-details").exists()){var t=$(['<a href="#" class="acf-expand-details">','<span class="is-closed"><span class="acf-icon -left small grey"></span>'+acf._e("expand_details")+"</span>",'<span class="is-open"><span class="acf-icon -right small grey"></span>'+acf._e("collapse_details")+"</span>","</a>"].join(""));t.on("click",function(t){t.preventDefault(),e.hasClass("acf-expanded")?e.removeClass("acf-expanded"):e.addClass("acf-expanded")}),e.find(".media-frame-router").append(t)}},render:function(){if(this.ignore_render)return this;var t=this;return setTimeout(function(){t.add_acf_expand_button()},0),clearTimeout(acf.media.render_timout),acf.media.render_timout=setTimeout(function(){acf.do_action("append",t.$el)},50),e.prototype.render.apply(this,arguments)},dispose:function(){return acf.do_action("remove",this.$el),e.prototype.dispose.apply(this,arguments)},save:function(e){e&&e.preventDefault();var t=acf.serialize(this.$el);this.ignore_render=!0,this.model.saveCompat(t)}})}})}(jQuery),function($){acf.fields.oembed=acf.field.extend({type:"oembed",$el:null,events:{'click [data-name="search-button"]':"_search",'click [data-name="clear-button"]':"_clear",'click [data-name="value-title"]':"_edit",'keypress [data-name="search-input"]':"_keypress",'keyup [data-name="search-input"]':"_keyup",'blur [data-name="search-input"]':"_blur"},focus:function(){this.$el=this.$field.find(".acf-oembed"),this.$search=this.$el.find('[data-name="search-input"]'),this.$input=this.$el.find('[data-name="value-input"]'),this.$title=this.$el.find('[data-name="value-title"]'),this.$embed=this.$el.find('[data-name="value-embed"]'),this.o=acf.get_data(this.$el)},maybe_search:function(){var e=this.$input.val(),t=this.$search.val();if(!t)return void this.clear();t!=e&&this.search()},search:function(){var e=this.$search.val();"http"!=e.substr(0,4)&&(e="http://"+e,this.$search.val(e)),this.$el.addClass("is-loading");var t=acf.prepare_for_ajax({action:"acf/fields/oembed/search",s:e,field_key:this.$field.data("key")});this.$el.data("xhr")&&this.$el.data("xhr").abort();var i=$.ajax({url:acf.get("ajaxurl"),data:t,type:"post",dataType:"json",context:this,success:this.search_success});this.$el.data("xhr",i)},search_success:function(e){var t=this.$search.val();if(this.$el.removeClass("is-loading"),!e||!e.html)return void this.$el.removeClass("has-value").addClass("has-error");this.$el.removeClass("has-error").addClass("has-value"),this.$input.val(t),this.$title.html(t),this.$embed.html(e.html)},clear:function(){this.$el.removeClass("has-error has-value"),this.$el.find('[data-name="search-input"]').val(""),this.$input.val(""),this.$title.html(""),this.$embed.html("")},edit:function(){this.$el.addClass("is-editing"),this.$search.val(this.$title.text()).focus()},blur:function(e){this.$el.removeClass("is-editing"),this.maybe_search()},_search:function(e){this.search()},_clear:function(e){this.clear()},_edit:function(e){this.edit()},_keypress:function(e){13==e.which&&e.preventDefault()},_keyup:function(e){this.$search.val()&&this.maybe_search()},_blur:function(e){this.blur()}})}(jQuery),function($){acf.fields.radio=acf.field.extend({type:"radio",$ul:null,actions:{ready:"initialize",append:"initialize"},events:{'click input[type="radio"]':"click"},focus:function(){this.$ul=this.$field.find(".acf-radio-list"),this.o=acf.get_data(this.$ul)},initialize:function(){this.$ul.find(".selected input").prop("checked",!0)},click:function(e){var t=e.$el,i=t.parent("label"),a=i.hasClass("selected"),n=t.val();if(this.$ul.find(".selected").removeClass("selected"),i.addClass("selected"),this.o.allow_null&&a&&(e.$el.prop("checked",!1),i.removeClass("selected"),n=!1,e.$el.trigger("change")),this.o.other_choice){var s=this.$ul.find('input[type="text"]');"other"===n?s.prop("disabled",!1).attr("name",t.attr("name")):s.prop("disabled",!0).attr("name","")}}})}(jQuery),function($){acf.fields.range=acf.field.extend({type:"range",$el:null,$range:null,$input:null,events:{"input input":"_change","change input":"_change"},focus:function(){this.$el=this.$field.find(".acf-range-wrap"),this.$range=this.$el.children('input[type="range"]'),this.$input=this.$el.children('input[type="number"]')},_change:function(e){var t=e.$el.val(),i=e.$el.attr("type");t=t||0,"range"===i?this.$input.val(t):this.$range.val(t)}})}(jQuery),function($){acf.fields.relationship=acf.field.extend({type:"relationship",$el:null,$input:null,$filters:null,$choices:null,$values:null,actions:{ready:"initialize",append:"initialize"},events:{"keypress [data-filter]":"submit_filter","change [data-filter]":"change_filter","keyup [data-filter]":"change_filter","click .choices .acf-rel-item":"add_item",'click [data-name="remove_item"]':"remove_item"},focus:function(){this.$el=this.$field.find(".acf-relationship"),this.$input=this.$el.children('input[type="hidden"]'),this.$choices=this.$el.find(".choices"),this.$values=this.$el.find(".values"),this.o=acf.get_data(this.$el)},initialize:function(){var e=this,t=this.$field,i=this.$el,a=this.$input;this.$values.children(".list").sortable({items:"li",forceHelperSize:!0,forcePlaceholderSize:!0,scroll:!0,update:function(){a.trigger("change")}}),this.$choices.children(".list").scrollTop(0).on("scroll",function(a){if(!i.hasClass("is-loading")&&!i.hasClass("is-empty")&&Math.ceil($(this).scrollTop())+$(this).innerHeight()>=$(this).get(0).scrollHeight){var n=i.data("paged")||1;i.data("paged",n+1),e.set("$field",t).fetch()}}),this.fetch()},maybe_fetch:function(){var e=this,t=this.$field;this.o.timeout&&clearTimeout(this.o.timeout);var i=setTimeout(function(){e.doFocus(t),e.fetch()},300);this.$el.data("timeout",i)},fetch:function(){var e=this,t=this.$field;this.$el.addClass("is-loading"),this.o.xhr&&(this.o.xhr.abort(),this.o.xhr=!1),this.o.action="acf/fields/relationship/query",this.o.field_key=t.data("key"),this.o.post_id=acf.get("post_id");var i=acf.prepare_for_ajax(this.o);1==i.paged&&this.$choices.children(".list").html(""),this.$choices.find("ul:last").append('<p><i class="acf-loading"></i> '+acf._e("relationship","loading")+"</p>");var a=$.ajax({url:acf.get("ajaxurl"),dataType:"json",type:"post",data:i,success:function(i){e.set("$field",t).render(i)}});this.$el.data("xhr",a)},render:function(e){if(this.$el.removeClass("is-loading is-empty"),this.$choices.find("p").remove(),!e||!e.results||!e.results.length)return this.$el.addClass("is-empty"),void(1==this.o.paged&&this.$choices.children(".list").append("<p>"+acf._e("relationship","empty")+"</p>"));var t=$(this.walker(e.results));this.$values.find(".acf-rel-item").each(function(){t.find('.acf-rel-item[data-id="'+$(this).data("id")+'"]').addClass("disabled")}),this.$choices.children(".list").append(t);var i="",a=null;this.$choices.find(".acf-rel-label").each(function(){if($(this).text()==i)return a.append($(this).siblings("ul").html()),void $(this).parent().remove();i=$(this).text(),a=$(this).siblings("ul")})},walker:function(e){var t="";if($.isArray(e))for(var i in e)t+=this.walker(e[i]);else $.isPlainObject(e)&&(void 0!==e.children?(t+='<li><span class="acf-rel-label">'+e.text+'</span><ul class="acf-bl">',t+=this.walker(e.children),t+="</ul></li>"):t+='<li><span class="acf-rel-item" data-id="'+e.id+'">'+e.text+"</span></li>");return t},submit_filter:function(e){13==e.which&&e.preventDefault()},change_filter:function(e){var t=e.$el.val(),i=e.$el.data("filter");this.$el.data(i)!=t&&(this.$el.data(i,t),this.$el.data("paged",1),e.$el.is("select")?this.fetch():this.maybe_fetch())},add_item:function(e){if(this.o.max>0&&this.$values.find(".acf-rel-item").length>=this.o.max)return void alert(acf._e("relationship","max").replace("{max}",this.o.max));if(e.$el.hasClass("disabled"))return!1;e.$el.addClass("disabled");var t=["<li>",'<input type="hidden" name="'+this.$input.attr("name")+'[]" value="'+e.$el.data("id")+'" />','<span data-id="'+e.$el.data("id")+'" class="acf-rel-item">'+e.$el.html(),'<a href="#" class="acf-icon -minus small dark" data-name="remove_item"></a>',"</span>","</li>"].join("");this.$values.children(".list").append(t),this.$input.trigger("change"),acf.validation.remove_error(this.$field)},remove_item:function(e){var t=e.$el.parent(),i=t.data("id");t.parent("li").remove(),this.$choices.find('.acf-rel-item[data-id="'+i+'"]').removeClass("disabled"),this.$input.trigger("change")}})}(jQuery),function($){var e,t,i;e=acf.select2=acf.model.extend({version:0,version3:null,version4:null,actions:{"ready 1":"ready"},ready:function(){this.version=this.get_version(),this.do_function("ready")},get_version:function(){return acf.maybe_get(window,"Select2")?3:acf.maybe_get(window,"jQuery.fn.select2.amd")?4:0},do_function:function(e,t){t=t||[];var i="version"+this.version;return void 0!==this[i]&&void 0!==this[i][e]&&this[i][e].apply(this,t)},get_data:function(e,t){var i=this;return t=t||[],e.children().each(function(){var e=$(this);e.is("optgroup")?t.push({text:e.attr("label"),children:i.get_data(e)}):t.push({id:e.attr("value"),text:e.text()})}),t},decode_data:function(t){return t?($.each(t,function(i,a){t[i].text=acf.decode(a.text),void 0!==a.children&&(t[i].children=e.decode_data(a.children))}),t):[]},count_data:function(e){var t=0;return e?($.each(e,function(e,i){t++,void 0!==i.children&&(t+=i.children.length)}),t):t},get_ajax_data:function(e,t,i,a){var n=acf.prepare_for_ajax({action:e.ajax_action,field_key:e.key,s:t.term||"",paged:t.page||1});return n=acf.apply_filters("select2_ajax_data",n,e,i,a)},get_ajax_results:function(e,t){var i={results:[]};return e||(e=i),void 0===e.results&&(i.results=e,e=i),e.results=this.decode_data(e.results),e=acf.apply_filters("select2_ajax_results",e,t)},get_value:function(e){var t=[],i=e.find("option:selected");return i.exists()?(i=i.sort(function(e,t){return+e.getAttribute("data-i")-+t.getAttribute("data-i")}),i.each(function(){var e=$(this);t.push({id:e.attr("value"),text:e.text(),$el:e})}),t):t},get_input_value:function(e){return e.val().split("||")},sync_input_value:function(e,t){e.val(t.val().join("||"))},add_option:function(e,t,i){e.find('option[value="'+t+'"]').length||e.append('<option value="'+t+'">'+i+"</option>")},select_option:function(e,t){e.find('option[value="'+t+'"]').prop("selected",!0),e.trigger("change")},unselect_option:function(e,t){e.find('option[value="'+t+'"]').prop("selected",!1),e.trigger("change")},init:function(e,t,i){this.do_function("init",arguments)},destroy:function(e){this.do_function("destroy",arguments)},add_value:function(e,t,i){this.do_function("add_value",arguments)},remove_value:function(e,t){this.do_function("remove_value",arguments)}}),t=e.version3={ready:function(){var e=acf.get("locale"),t=acf.get("rtl");if(l10n=acf._e("select"),l10n){var i={
|
3 |
+
formatMatches:function(e){return 1===e?l10n.matches_1:l10n.matches_n.replace("%d",e)},formatNoMatches:function(){return l10n.matches_0},formatAjaxError:function(){return l10n.load_fail},formatInputTooShort:function(e,t){var i=t-e.length;return 1===i?l10n.input_too_short_1:l10n.input_too_short_n.replace("%d",i)},formatInputTooLong:function(e,t){var i=e.length-t;return 1===i?l10n.input_too_long_1:l10n.input_too_long_n.replace("%d",i)},formatSelectionTooBig:function(e){return 1===e?l10n.selection_too_long_1:l10n.selection_too_long_n.replace("%d",e)},formatLoadMore:function(){return l10n.load_more},formatSearching:function(){return l10n.searching}};$.fn.select2.locales=acf.maybe_get(window,"jQuery.fn.select2.locales",{}),$.fn.select2.locales[e]=i,$.extend($.fn.select2.defaults,i)}},set_data:function(e,t){3==this.version&&(e=e.siblings("input")),e.select2("data",t)},append_data:function(e,t){3==this.version&&(e=e.siblings("input"));var i=e.select2("data")||[];i.push(t),e.select2("data",i)},init:function(i,a,n){a=a||{},n=n||null,a=$.extend({allow_null:!1,placeholder:"",multiple:!1,ajax:!1,ajax_action:""},a);var s=i.siblings("input");if(s.exists()){var o={width:"100%",containerCssClass:"-acf",allowClear:a.allow_null,placeholder:a.placeholder,multiple:a.multiple,separator:"||",data:[],escapeMarkup:function(e){return e},formatResult:function(e,t,i,a){var n=$.fn.select2.defaults.formatResult(e,t,i,a);return e.description&&(n+=' <span class="select2-result-description">'+e.description+"</span>"),n}},r=this.get_value(i);if(a.multiple){var l=i.attr("name");o.formatSelection=function(e,t){var i='<input type="hidden" class="select2-search-choice-hidden" name="'+l+'" value="'+e.id+'"'+(s.prop("disabled")?'disabled="disabled"':"")+" />";return t.parent().append(i),e.text}}else r=acf.maybe_get(r,0,!1),!a.allow_null&&r&&s.val(r.id);a.allow_null&&i.find('option[value=""]').remove(),o.data=this.get_data(i),o.initSelection=function(e,t){t(r)},a.ajax&&(o.ajax={url:acf.get("ajaxurl"),dataType:"json",type:"post",cache:!1,quietMillis:250,data:function(t,i){var o={term:t,page:i};return e.get_ajax_data(a,o,s,n)},results:function(i,a){var n={page:a};return setTimeout(function(){t.merge_results()},1),e.get_ajax_results(i,n)}}),o.dropdownCss={"z-index":"999999999"},o.acf=a,o=acf.apply_filters("select2_args",o,i,a,n),s.select2(o);var c=s.select2("container");c.before(i),c.before(s),a.multiple&&c.find("ul.select2-choices").sortable({start:function(){s.select2("onSortStart")},stop:function(){s.select2("onSortEnd")}}),i.prop("disabled",!0).addClass("acf-disabled acf-hidden"),s.on("change",function(t){t.added&&e.add_option(i,t.added.id,t.added.text),e.select_option(i,t.val)}),acf.do_action("select2_init",s,o,a,n)}},merge_results:function(){var e="",t=null;$("#select2-drop .select2-result-with-children").each(function(){var i=$(this).children(".select2-result-label"),a=$(this).children(".select2-result-sub");if(i.text()==e)return t.append(a.children()),void $(this).remove();e=i.text(),t=a})},destroy:function(e){var t=e.siblings("input");t.data("select2")&&t.select2("destroy"),e.siblings(".select2-container").remove(),e.prop("disabled",!1).removeClass("acf-disabled acf-hidden"),t.attr("style","")},add_value:function(t,i,a){e.add_option(t,i,a),e.select_option(t,i);var n=t.siblings("input"),s={id:i,text:a};if(!t.data("multiple"))return n.select2("data",s);var o=n.select2("data")||[];return o.push(s),n.select2("data",o)},remove_value:function(t,i){e.unselect_option(t,i);var a=t.siblings("input"),n=a.select2("data");t.data("multiple")?(n=$.grep(n,function(e){return e.id!=i}),a.select2("data",n)):n&&n.id==i&&a.select2("data",null)}},i=e.version4={init:function(t,a,n){a=a||{},n=n||null,a=$.extend({allow_null:!1,placeholder:"",multiple:!1,ajax:!1,ajax_action:""},a);var s=t.siblings("input");if(s.exists()){var o={width:"100%",allowClear:a.allow_null,placeholder:a.placeholder,multiple:a.multiple,separator:"||",data:[],escapeMarkup:function(e){return e}},r=this.get_value(t);a.multiple?$.each(r,function(e,i){i.$el.detach().appendTo(t)}):r=acf.maybe_get(r,0,""),a.ajax?o.ajax={url:acf.get("ajaxurl"),delay:250,dataType:"json",type:"post",cache:!1,data:function(i){return e.get_ajax_data(a,i,t,n)},processResults:function(t,a){var n=e.get_ajax_results(t,a);return n.more&&(n.pagination={more:!0}),setTimeout(function(){i.merge_results()},1),n}}:(t.removeData("ajax"),t.removeAttr("data-ajax")),o=acf.apply_filters("select2_args",o,t,a,n),t.select2(o);var l=t.next(".select2-container");if(a.multiple){var c=l.find("ul");c.sortable({stop:function(e){c.find(".select2-selection__choice").each(function(){$($(this).data("data").element).detach().appendTo(t),s.trigger("change")})}}),t.on("select2:select",function(e){$(e.params.data.element).detach().appendTo(t)})}s.val(""),l.addClass("-acf"),acf.do_action("select2_init",t,o,a,n)}},merge_results:function(){var e=null,t=null;$('.select2-results__option[role="group"]').each(function(){var i=$(this).children("ul"),a=$(this).children("strong");if(null!==t&&a.text()==t.text())return e.append(i.children()),void $(this).remove();e=i,t=a})},add_value:function(t,i,a){e.add_option(t,i,a),e.select_option(t,i)},remove_value:function(t,i){e.unselect_option(t,i)},destroy:function(e){e.data("select2")&&e.select2("destroy"),e.siblings(".select2-container").remove()}},acf.add_select2=function(t,i){e.init(t,i)},acf.remove_select2=function(t){e.destroy(t)}}(jQuery),function($){acf.fields.select=acf.field.extend({type:"select",$select:null,actions:{ready:"render",append:"render",remove:"remove"},focus:function(){this.$select=this.$field.find("select"),this.$select.exists()&&(this.o=acf.get_data(this.$select),this.o=acf.parse_args(this.o,{ajax_action:"acf/fields/"+this.type+"/query",key:this.$field.data("key")}))},render:function(){if(!this.$select.exists()||!this.o.ui)return!1;acf.select2.init(this.$select,this.o,this.$field)},remove:function(){if(!this.$select.exists()||!this.o.ui)return!1;acf.select2.destroy(this.$select)}}),acf.fields.user=acf.fields.select.extend({type:"user"}),acf.fields.post_object=acf.fields.select.extend({type:"post_object"}),acf.fields.page_link=acf.fields.select.extend({type:"page_link"})}(jQuery),function($,e){var t=0;acf.fields.accordion=acf.field.extend({type:"accordion",$el:null,$wrap:null,actions:{prepare:"initialize",append:"initialize"},focus:function(){},initialize:function(){var e=this.$field,i=e.children(".acf-label"),a=e.children(".acf-input"),n=a.children(".acf-fields"),s=n.data();if(!e.is("td")){if(s.endpoint)return void e.remove();var o=a.children(".description");if(o.length&&i.append(o),e.is("tr")){var r=e.closest("table"),l=$('<div class="acf-accordion-title"/>'),c=$('<div class="acf-accordion-content"/>'),d=$('<table class="'+r.attr("class")+'"/>'),f=$("<tbody/>");l.append(i.html()),d.append(f),c.append(d),a.append(l),a.append(c),i.remove(),n.remove(),a.attr("colspan",2),i=l,a=c,n=f}e.addClass("acf-accordion"),i.addClass("acf-accordion-title"),a.addClass("acf-accordion-content"),t++,s.multi_expand&&e.data("multi-expand",1);var u=acf.getPreference("this.accordions")||[];void 0!==u[t-1]&&(s.open=u[t-1]),s.open&&(e.addClass("-open"),a.css("display","block")),i.prepend('<i class="acf-accordion-icon dashicons dashicons-arrow-'+(s.open?"down":"right")+'"></i>');var h=e.parent();n.addClass(h.hasClass("-left")?"-left":""),n.addClass(h.hasClass("-clear")?"-clear":""),n.append(e.nextUntil(".acf-field-accordion",".acf-field")),n.removeAttr("data-open data-multi_expand data-endpoint")}}});var i=acf.model.extend({events:{"click .acf-accordion-title":"_click"},_click:function(e){e.preventDefault(),this.toggle(e.$el.closest(".acf-accordion"))},isOpen:function(e){return e.hasClass("-open")},toggle:function(e){this.isOpen(e)?this.close(e):this.open(e)},open:function(e){e.find(".acf-accordion-content:first").slideDown().css("display","block"),e.find(".acf-accordion-icon:first").removeClass("dashicons-arrow-right").addClass("dashicons-arrow-down"),e.addClass("-open"),acf.do_action("show",e),e.data("multi-expand")||e.siblings(".acf-accordion.-open").each(function(){i.close($(this))}),acf.do_action("refresh",e)},close:function(e){e.find(".acf-accordion-content:first").slideUp(),e.find(".acf-accordion-icon:first").removeClass("dashicons-arrow-down").addClass("dashicons-arrow-right"),e.removeClass("-open"),acf.do_action("hide",e)}});$(window).on("unload",function(){var e=[];$(".acf-accordion").each(function(){var t=$(this).hasClass("-open")?1:0;e.push(t)}),e.length&&acf.setPreference("this.accordions",e)});var a=acf.model.extend({active:1,events:{"invalidField .acf-accordion":"invalidField"},invalidField:function(e){this.active&&(this.block(),i.open(e.$el))},block:function(){var e=this;this.active=0,setTimeout(function(){e.active=1},1e3)}})}(jQuery),function($){var e="hidden-by-conditional-logic",t=0,i=0,a=acf.model.extend({$fields:[],actions:{"prepare 15":"initialize","append 15":"initialize","refresh 15":"refresh"},events:{"click .acf-tab-button":"_click"},_click:function(e){e.preventDefault(),this.toggle(e.$el)},isOpen:function(e){return e.hasClass("-open")},toggle:function(e){var t=e.data("key"),i=e.parent(),a=e.closest(".acf-tab-wrap"),n=a.find(".active a"),s=a.siblings('.acf-field[data-key="'+t+'"]');if(!this.isOpen(s)){if(n.length){var o=n.data("key"),r=n.parent(),l=a.siblings('.acf-field[data-key="'+o+'"]');r.removeClass("active"),this.close(l)}i.addClass("active"),this.open(s),acf.do_action("refresh",a.parent())}},getFields:function(e){return e.nextUntil(".acf-field-tab",".acf-field")},getWrap:function(e){return e.prevAll(".acf-tab-wrap:first")},getTab:function(e,t){return e.find('a[data-key="'+t+'"]')},open:function(e){this.getFields(e).each(function(){$(this).removeClass("hidden-by-tab"),acf.do_action("show_field",$(this),"tab")})},close:function(e){this.getFields(e).each(function(){$(this).addClass("hidden-by-tab"),acf.do_action("hide_field",$(this),"tab")})},addTab:function(e){this.$fields.push(e)},initialize:function(){if(this.$fields.length){for(var e=0;e<this.$fields.length;e++)this.createTab(this.$fields[e]);this.$fields=[]}},createTab:function(e){if(e.is("td"))return!1;var a=e.children(".acf-label"),n=e.children(".acf-input"),s=this.getWrap(e),o=e.find(".acf-tab-button"),r=o.data(),l=!1;e.hide(),a.remove(),n.remove(),s.exists()&&!r.endpoint||(s=this.createTabWrap(e,r),l=!0);var c=$("<li></li>").append(o);return l?(c.addClass("active"),this.open(e)):this.close(e),""==o.html()&&c.hide(),s.find("ul").append(c),i++,((acf.getPreference("this.tabs")||[])[t-1]||0)!=i-1||l||this.toggle(o),c},createTabWrap:function(e,a){var n=e.parent(),s=!1;return n.hasClass("acf-fields")&&"left"==a.placement&&n.addClass("-sidebar"),s=$(e.is("tr")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="acf-hl acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap -'+a.placement+'"><ul class="acf-hl acf-tab-group"></ul></div>'),e.before(s),t++,i=0,s},refresh:function(e){$(".acf-tab-wrap",e).each(function(){var e=$(this);if(e.hasClass("-left")){var t=e.parent(),i=t.is("td")?"height":"min-height",a=e.position().top+e.children("ul").outerHeight(!0)-1;t.css(i,a)}})}});acf.fields.tab=acf.field.extend({type:"tab",$el:null,$wrap:null,actions:{prepare:"initialize",append:"initialize",hide:"hide",show:"show"},focus:function(){},initialize:function(){a.addTab(this.$field)},hide:function(t,i){if("conditional_logic"==i){var n=t.data("key"),s=a.getWrap(t),o=a.getTab(s,n),r=o.parent();s.exists()&&(r.addClass(e),a.getFields(t).each(function(){acf.conditional_logic.hide_field($(this))}),r.hasClass("active")&&s.find("li:not(."+e+"):first a").trigger("click"))}},show:function(t,i){if("conditional_logic"==i){var n=t.data("key"),s=a.getWrap(t),o=a.getTab(s,n),r=o.parent();if(s.exists()){r.removeClass(e),a.getFields(t).each(function(){acf.conditional_logic.show_field($(this))});var l=r.siblings(".active");l.exists()&&!l.hasClass(e)||a.toggle(o)}}}}),$(window).on("unload",function(){var e=[];$(".acf-tab-wrap").each(function(){var t=$(this).find(".active").index()||0;e.push(t)}),e.length&&acf.setPreference("this.tabs",e)});var n=acf.model.extend({active:1,actions:{invalid_field:"invalid_field"},invalid_field:function(e){if(this.active&&e.hasClass("hidden-by-tab")){var t=this,i=e.prevAll(".acf-field-tab:first");e.prevAll(".acf-tab-wrap:first").find('a[data-key="'+i.data("key")+'"]').trigger("click"),this.active=0,setTimeout(function(){t.active=1},1e3)}}})}(jQuery),function($){acf.fields.time_picker=acf.field.extend({type:"time_picker",$el:null,$input:null,$hidden:null,o:{},actions:{ready:"initialize",append:"initialize"},events:{'blur input[type="text"]':"blur"},focus:function(){this.$el=this.$field.find(".acf-time-picker"),this.$input=this.$el.find('input[type="text"]'),this.$hidden=this.$el.find('input[type="hidden"]'),this.o=acf.get_data(this.$el)},initialize:function(){if(void 0!==$.timepicker){var e={timeFormat:this.o.time_format,altField:this.$hidden,altFieldTimeOnly:!1,altTimeFormat:"HH:mm:ss",showButtonPanel:!0,controlType:"select",oneLine:!0,closeText:acf._e("date_time_picker","selectText")};e.onClose=function(e,t){var i=t.dpDiv,a=i.find(".ui-datepicker-close");if(!e&&a.is(":hover")){if(!(e=acf.maybe_get(t,"settings.timepicker.formattedTime")))return;$.datepicker._setTime(t)}},e=acf.apply_filters("time_picker_args",e,this.$field),this.$input.timepicker(e),$("body > #ui-datepicker-div").exists()&&$("body > #ui-datepicker-div").wrap('<div class="acf-ui-datepicker" />'),acf.do_action("time_picker_init",this.$input,e,this.$field)}},blur:function(){this.$input.val()||this.$hidden.val("")}})}(jQuery),function($){acf.fields.true_false=acf.field.extend({type:"true_false",$switch:null,$input:null,actions:{prepare:"render",append:"render",show:"render"},events:{"change .acf-switch-input":"_change","focus .acf-switch-input":"_focus","blur .acf-switch-input":"_blur","keypress .acf-switch-input":"_keypress"},focus:function(){this.$input=this.$field.find(".acf-switch-input"),this.$switch=this.$field.find(".acf-switch")},render:function(){if(this.$switch.exists()){var e=this.$switch.children(".acf-switch-on"),t=this.$switch.children(".acf-switch-off");width=Math.max(e.width(),t.width()),width&&(e.css("min-width",width),t.css("min-width",width))}},on:function(){this.$input.prop("checked",!0),this.$switch.addClass("-on")},off:function(){this.$input.prop("checked",!1),this.$switch.removeClass("-on")},_change:function(e){e.$el.prop("checked")?this.on():this.off()},_focus:function(e){this.$switch.addClass("-focus")},_blur:function(e){this.$switch.removeClass("-focus")},_keypress:function(e){return 37===e.keyCode?this.off():39===e.keyCode?this.on():void 0}})}(jQuery),function($){acf.fields.taxonomy=acf.field.extend({type:"taxonomy",$el:null,actions:{ready:"render",append:"render",remove:"remove"},events:{'click a[data-name="add"]':"add_term"},focus:function(){this.$el=this.$field.find(".acf-taxonomy-field"),this.o=acf.get_data(this.$el,{save:"",type:"",taxonomy:""}),this.o.key=this.$field.data("key")},render:function(){var e=this.$field.find("select");if(e.exists()){var t=acf.get_data(e);t=acf.parse_args(t,{pagination:!0,ajax_action:"acf/fields/taxonomy/query",key:this.o.key}),acf.select2.init(e,t)}},remove:function(){var e=this.$field.find("select");if(!e.exists())return!1;acf.select2.destroy(e)},add_term:function(e){var t=this;acf.open_popup({title:e.$el.attr("title")||e.$el.data("title"),loading:!0,height:220});var i=acf.prepare_for_ajax({action:"acf/fields/taxonomy/add_term",field_key:this.o.key});$.ajax({url:acf.get("ajaxurl"),data:i,type:"post",dataType:"html",success:function(e){t.add_term_confirm(e)}})},add_term_confirm:function(e){var t=this;acf.update_popup({content:e}),$('#acf-popup input[name="term_name"]').focus(),$("#acf-popup form").on("submit",function(e){e.preventDefault(),t.add_term_submit($(this))})},add_term_submit:function(e){var t=this,i=e.find(".acf-submit"),a=e.find('input[name="term_name"]'),n=e.find('select[name="term_parent"]');if(""===a.val())return a.focus(),!1;i.find("button").attr("disabled","disabled"),i.find(".acf-spinner").addClass("is-active");var s=acf.prepare_for_ajax({action:"acf/fields/taxonomy/add_term",field_key:this.o.key,term_name:a.val(),term_parent:n.exists()?n.val():0});$.ajax({url:acf.get("ajaxurl"),data:s,type:"post",dataType:"json",success:function(e){var n=acf.get_ajax_message(e);acf.is_ajax_success(e)&&(a.val(""),t.append_new_term(e.data)),n.text&&i.find("span").html(n.text)},complete:function(){i.find("button").removeAttr("disabled"),i.find(".acf-spinner").removeClass("is-active"),i.find("span").delay(1500).fadeOut(250,function(){$(this).html(""),$(this).show()}),a.focus()}})},append_new_term:function(e){var t={id:e.term_id,text:e.term_label};switch($('.acf-taxonomy-field[data-taxonomy="'+this.o.taxonomy+'"]').each(function(){var t=$(this).data("type");if("radio"==t||"checkbox"==t){var i=$(this).children('input[type="hidden"]'),a=$(this).find("ul:first"),n=i.attr("name");"checkbox"==t&&(n+="[]");var s=$(['<li data-id="'+e.term_id+'">',"<label>",'<input type="'+t+'" value="'+e.term_id+'" name="'+n+'" /> ',"<span>"+e.term_label+"</span>","</label>","</li>"].join(""));if(e.term_parent){var o=a.find('li[data-id="'+e.term_parent+'"]');a=o.children("ul"),a.exists()||(a=$('<ul class="children acf-bl"></ul>'),o.append(a))}a.append(s)}}),$("#acf-popup #term_parent").each(function(){var t=$('<option value="'+e.term_id+'">'+e.term_label+"</option>");e.term_parent?$(this).children('option[value="'+e.term_parent+'"]').after(t):$(this).append(t)}),this.o.type){case"select":var i=this.$el.children("select");acf.select2.add_value(i,e.term_id,e.term_label);break;case"multi_select":var i=this.$el.children("select");acf.select2.add_value(i,e.term_id,e.term_label);break;case"checkbox":case"radio":var a=this.$el.find(".categorychecklist-holder"),n=a.find('li[data-id="'+e.term_id+'"]'),s=a.get(0).scrollTop+(n.offset().top-a.offset().top);n.find("input").prop("checked",!0),a.animate({scrollTop:s},"250");break}}})}(jQuery),function($){acf.fields.url=acf.field.extend({type:"url",$input:null,actions:{ready:"render",append:"render"},events:{'keyup input[type="url"]':"render"},focus:function(){this.$input=this.$field.find('input[type="url"]')},is_valid:function(){var e=this.$input.val();if(-1!==e.indexOf("://"));else if(0!==e.indexOf("//"))return!1;return!0},render:function(){this.is_valid()?this.$input.parent().addClass("-valid"):this.$input.parent().removeClass("-valid")}})}(jQuery),function($){acf.validation=acf.model.extend({actions:{ready:"ready",append:"ready"},filters:{validation_complete:"validation_complete"},events:{"click #save-post":"click_ignore",'click [type="submit"]':"click_publish","submit form":"submit_form","click .acf-error-message a":"click_message"},active:1,ignore:0,busy:0,valid:!0,errors:[],error_class:"acf-error",message_class:"acf-error-message",$trigger:null,ready:function(e){var t=$(".acf-field input, .acf-field textarea, .acf-field select");if(t.length){var i=this;t.on("invalid",function(e){var t=$(this),i=acf.get_field_wrap(t);i.trigger("invalidField"),acf.do_action("invalid",t),acf.do_action("invalid_field",i),acf.validation.ignore||(e.preventDefault(),acf.validation.errors.push({input:t.attr("name"),message:e.target.validationMessage}),acf.validation.fetch(t.closest("form")))})}},validation_complete:function(e,t){if(!this.errors.length)return e;e.valid=0,e.errors=e.errors||[];var a=[];if(e.errors.length)for(i in e.errors)a.push(e.errors[i].input);if(this.errors.length)for(i in this.errors){var n=this.errors[i];-1===$.inArray(n.input,a)&&e.errors.push(n)}return this.errors=[],e},click_message:function(e){e.preventDefault(),acf.remove_el(e.$el.parent())},click_ignore:function(e){var t=this;this.ignore=1,this.$trigger=e.$el,this.$form=e.$el.closest("form"),$("."+this.message_class).each(function(){acf.remove_el($(this))}),this.ignore_required_inputs(),setTimeout(function(){t.ignore=0},100)},ignore_required_inputs:function(){var e=$(".acf-field input[required], .acf-field textarea[required], .acf-field select[required]");e.length&&(e.prop("required",!1),setTimeout(function(){e.prop("required",!0)},100))},click_publish:function(e){this.$trigger=e.$el},submit_form:function(e){if(!this.active)return!0;if(this.ignore)return this.ignore=0,!0;if(!e.$el.find("#acf-form-data").exists())return!0;var t=e.$el.find("#wp-preview");if(t.exists()&&t.val())return this.toggle(e.$el,"unlock"),!0;e.preventDefault(),this.fetch(e.$el)},toggle:function(e,t){t=t||"unlock";var i=null,a=null,n=$("#submitdiv");n.exists()||(n=$("#submitpost")),n.exists()||(n=e.find("p.submit").last()),n.exists()||(n=e.find(".acf-form-submit")),n.exists()||(n=e),i=n.find('input[type="submit"], .button'),a=n.find(".spinner, .acf-spinner"),this.hide_spinner(a),"unlock"==t?this.enable_submit(i):"lock"==t&&(this.disable_submit(i),this.show_spinner(a.last()))},fetch:function(e){if(this.busy)return!1;var t=this;acf.do_action("validation_begin");var i=acf.serialize(e);i.action="acf/validate_save_post",i=acf.prepare_for_ajax(i),this.busy=1,this.toggle(e,"lock"),$.ajax({url:acf.get("ajaxurl"),data:i,type:"post",dataType:"json",success:function(i){acf.is_ajax_success(i)&&t.fetch_success(e,i.data)},complete:function(){t.fetch_complete(e)}})},fetch_complete:function(e){if(this.busy=0,this.toggle(e,"unlock"),this.valid){this.ignore=1;var t=e.children(".acf-error-message");t.exists()&&(t.addClass("-success"),t.children("p").html(acf._e("validation_successful")),setTimeout(function(){acf.remove_el(t)},2e3)),e.find(".acf-postbox.acf-hidden").remove(),acf.do_action("submit",e),this.$trigger?this.$trigger.click():e.submit(),this.toggle(e,"lock")}},fetch_success:function(e,t){if(!(t=acf.apply_filters("validation_complete",t,e))||t.valid||!t.errors)return this.valid=!0,void acf.do_action("validation_success");acf.do_action("validation_failure"),this.valid=!1,this.$trigger=null,this.display_errors(t.errors,e)},display_errors:function(e,t){if(e&&e.length){var a=t.children(".acf-error-message"),n=acf._e("validation_failed"),s=0,o=null;for(i=0;i<e.length;i++){var r=e[i];if(r.input){var l=t.find('[name="'+r.input+'"]').first();if(l.exists()||(l=t.find('[name^="'+r.input+'"]').first()),l.exists()){s++;var c=acf.get_field_wrap(l);this.add_error(c,r.message),null===o&&(o=c)}}else n+=". "+r.message}1==s?n+=". "+acf._e("validation_failed_1"):s>1&&(n+=". "+acf._e("validation_failed_2").replace("%d",s)),a.exists()||(a=$('<div class="acf-error-message"><p></p><a href="#" class="acf-icon -cancel small"></a></div>'),t.prepend(a)),a.children("p").html(n),null===o&&(o=a),setTimeout(function(){$("html, body").animate({scrollTop:o.offset().top-$(window).height()/2},500)},10)}},add_error:function(e,t){var i=this;e.addClass(this.error_class),void 0!==t&&(e.children(".acf-input").children("."+this.message_class).remove(),e.children(".acf-input").prepend('<div class="'+this.message_class+'"><p>'+t+"</p></div>"));var a=function(){i.remove_error(e),e.off("focus change","input, textarea, select",a)};e.on("focus change","input, textarea, select",a),e.trigger("invalidField"),acf.do_action("add_field_error",e),acf.do_action("invalid_field",e)},remove_error:function(e){var t=e.children(".acf-input").children("."+this.message_class);e.removeClass(this.error_class),setTimeout(function(){acf.remove_el(t)},250),acf.do_action("remove_field_error",e),acf.do_action("valid_field",e)},add_warning:function(e,t){this.add_error(e,t),setTimeout(function(){acf.validation.remove_error(e)},1e3)},show_spinner:function(e){if(e.exists()){var t=acf.get("wp_version");parseFloat(t)>=4.2?e.addClass("is-active"):e.css("display","inline-block")}},hide_spinner:function(e){if(e.exists()){var t=acf.get("wp_version");parseFloat(t)>=4.2?e.removeClass("is-active"):e.css("display","none")}},disable_submit:function(e){e.exists()&&e.addClass("disabled button-disabled button-primary-disabled")},enable_submit:function(e){e.exists()&&e.removeClass("disabled button-disabled button-primary-disabled")}})}(jQuery),function($){acf.fields.wysiwyg=acf.field.extend({type:"wysiwyg",$el:null,$textarea:null,toolbars:{},events:{"mousedown .acf-editor-wrap.delay":"mousedown"},actions:{load:"initialize",append:"initialize",remove:"disable",sortstart:"disable",sortstop:"enable"},focus:function(){this.$el=this.$field.find(".wp-editor-wrap").last(),this.$textarea=this.$el.find("textarea"),this.o=acf.get_data(this.$el,{toolbar:"",active:this.$el.hasClass("tmce-active"),id:this.$textarea.attr("id")})},mousedown:function(e){e.preventDefault(),this.$el.removeClass("delay"),this.$el.find(".acf-editor-toolbar").remove(),this.initialize()},initialize:function(){if(!this.$el.hasClass("delay")){var e={tinymce:!0,quicktags:!0,toolbar:this.o.toolbar,mode:this.o.active?"visual":"text"},t=this.o.id,i=acf.get_uniqid("acf-editor-"),a=this.$el.outerHTML();a=acf.str_replace(t,i,a),this.$el.replaceWith(a),this.o.id=i,acf.tinymce.initialize(this.o.id,e,this.$field)}},disable:function(){acf.tinymce.destroy(this.o.id)},enable:function(){this.o.active&&acf.tinymce.enable(this.o.id)}}),acf.tinymce=acf.model.extend({toolbars:{},actions:{ready:"ready"},ready:function(){var e=$("#acf-hidden-wp-editor");e.exists()&&(e.appendTo("body"),acf.isset(window,"tinymce","on")&&tinymce.on("AddEditor",function(e){var t=e.editor;"acf"===t.id.substr(0,3)&&(t=tinymce.editors.content||t,tinymce.activeEditor=t,wpActiveEditor=t.id)}))},defaults:function(){return"undefined"!=typeof tinyMCEPreInit&&{tinymce:tinyMCEPreInit.mceInit.acf_content,quicktags:tinyMCEPreInit.qtInit.acf_content}},initialize:function(e,t,i){t=t||{},i=i||null,t=acf.parse_args(t,{tinymce:!0,quicktags:!0,toolbar:"full",mode:"visual"}),t.tinymce&&this.initialize_tinymce(e,t,i),t.quicktags&&this.initialize_quicktags(e,t,i)},initialize_tinymce:function(e,t,i){var a=$("#"+e),n=this.defaults(),s=this.toolbars;if("undefined"==typeof tinymce)return!1;if(!n)return!1;if(tinymce.get(e))return this.enable(e);init=$.extend({},n.tinymce,t.tinymce),init.id=e,init.selector="#"+e;var o=t.toolbar;if(o&&void 0!==s[o])for(var r=1;r<=4;r++)init["toolbar"+r]=s[o][r]||"";if(init.setup=function(t){t.on("focus",function(e){acf.validation.remove_error(i)}),t.on("change",function(e){t.save(),a.trigger("change")}),$(t.getWin()).on("unload",function(){acf.tinymce.remove(e)})},init.wp_autoresize_on=!1,init=acf.apply_filters("wysiwyg_tinymce_settings",init,e,i),tinyMCEPreInit.mceInit[e]=init,"visual"==t.mode){tinymce.init(init);var l=tinymce.get(e);acf.do_action("wysiwyg_tinymce_init",l,l.id,init,i)}},initialize_quicktags:function(e,t,i){var a=this.defaults();if("undefined"==typeof quicktags)return!1;if(!a)return!1;init=$.extend({},a.quicktags,t.quicktags),init.id=e,init=acf.apply_filters("wysiwyg_quicktags_settings",init,init.id,i),tinyMCEPreInit.qtInit[e]=init;var n=quicktags(init);this.build_quicktags(n),acf.do_action("wysiwyg_quicktags_init",n,n.id,init,i)},build_quicktags:function(e){var t,i,a,n,s,e,o,r,l,c,d=",strong,em,link,block,del,ins,img,ul,ol,li,code,more,close,";t=e.canvas,i=e.name,a=e.settings,s="",n={},l="",c=e.id,a.buttons&&(l=","+a.buttons+",");for(r in edButtons)edButtons[r]&&(o=edButtons[r].id,l&&-1!==d.indexOf(","+o+",")&&-1===l.indexOf(","+o+",")||edButtons[r].instance&&edButtons[r].instance!==c||(n[o]=edButtons[r],edButtons[r].html&&(s+=edButtons[r].html(i+"_"))));l&&-1!==l.indexOf(",dfw,")&&(n.dfw=new QTags.DFWButton,s+=n.dfw.html(i+"_")),"rtl"===document.getElementsByTagName("html")[0].dir&&(n.textdirection=new QTags.TextDirectionButton,s+=n.textdirection.html(i+"_")),e.toolbar.innerHTML=s,e.theButtons=n,"undefined"!=typeof jQuery&&jQuery(document).triggerHandler("quicktags-init",[e])},disable:function(e){this.destroy(e)},destroy:function(e){this.destroy_tinymce(e)},destroy_tinymce:function(e){if("undefined"==typeof tinymce)return!1;var t=tinymce.get(e);return!!t&&(t.save(),t.destroy(),!0)},enable:function(e){this.enable_tinymce(e)},enable_tinymce:function(e){return"undefined"!=typeof switchEditors&&(void 0!==tinyMCEPreInit.mceInit[e]&&(switchEditors.go(e,"tmce"),!0))}})}(jQuery);
|
includes/admin/tools/class-acf-admin-tool-export.php
CHANGED
@@ -585,7 +585,7 @@ class ACF_Admin_Tool_Export extends ACF_Admin_Tool {
|
|
585 |
}
|
586 |
|
587 |
// initialize
|
588 |
-
acf_register_admin_tool( '
|
589 |
|
590 |
endif; // class_exists check
|
591 |
|
585 |
}
|
586 |
|
587 |
// initialize
|
588 |
+
acf_register_admin_tool( 'ACF_Admin_Tool_Export' );
|
589 |
|
590 |
endif; // class_exists check
|
591 |
|
includes/admin/tools/class-acf-admin-tool-import.php
CHANGED
@@ -270,7 +270,7 @@ class ACF_Admin_Tool_Import extends ACF_Admin_Tool {
|
|
270 |
}
|
271 |
|
272 |
// initialize
|
273 |
-
acf_register_admin_tool( '
|
274 |
|
275 |
endif; // class_exists check
|
276 |
|
270 |
}
|
271 |
|
272 |
// initialize
|
273 |
+
acf_register_admin_tool( 'ACF_Admin_Tool_Import' );
|
274 |
|
275 |
endif; // class_exists check
|
276 |
|
includes/admin/views/field-group-field.php
CHANGED
@@ -51,9 +51,10 @@ $atts['class'] = str_replace('_', '-', $atts['class']);
|
|
51 |
<a class="delete-field" title="<?php _e("Delete field",'acf'); ?>" href="#"><?php _e("Delete",'acf'); ?></a>
|
52 |
</div>
|
53 |
</li>
|
54 |
-
|
55 |
-
<li class="li-field-
|
56 |
-
<li class="li-field-
|
|
|
57 |
</ul>
|
58 |
</div>
|
59 |
|
51 |
<a class="delete-field" title="<?php _e("Delete field",'acf'); ?>" href="#"><?php _e("Delete",'acf'); ?></a>
|
52 |
</div>
|
53 |
</li>
|
54 |
+
<?php // whitespace before field name looks odd but fixes chrome bug selecting all text in row ?>
|
55 |
+
<li class="li-field-name"> <?php echo $field['name']; ?></li>
|
56 |
+
<li class="li-field-key"> <?php echo $field['key']; ?></li>
|
57 |
+
<li class="li-field-type"> <?php echo acf_get_field_type_label($field['type']); ?></li>
|
58 |
</ul>
|
59 |
</div>
|
60 |
|
includes/admin/views/field-group-options.php
CHANGED
@@ -60,7 +60,7 @@ acf_render_field_wrap(array(
|
|
60 |
'value' => $field_group['label_placement'],
|
61 |
'choices' => array(
|
62 |
'top' => __("Top aligned",'acf'),
|
63 |
-
'left' => __("Left
|
64 |
)
|
65 |
));
|
66 |
|
60 |
'value' => $field_group['label_placement'],
|
61 |
'choices' => array(
|
62 |
'top' => __("Top aligned",'acf'),
|
63 |
+
'left' => __("Left aligned",'acf'),
|
64 |
)
|
65 |
));
|
66 |
|
includes/api/api-field.php
CHANGED
@@ -1097,7 +1097,7 @@ function acf_maybe_get_field( $selector, $post_id = false, $strict = true ) {
|
|
1097 |
|
1098 |
|
1099 |
// get reference
|
1100 |
-
$field_key =
|
1101 |
|
1102 |
|
1103 |
// update selector
|
1097 |
|
1098 |
|
1099 |
// get reference
|
1100 |
+
$field_key = acf_get_reference( $selector, $post_id );
|
1101 |
|
1102 |
|
1103 |
// update selector
|
includes/api/api-helpers.php
CHANGED
@@ -40,23 +40,37 @@ function acf_is_empty( $value ) {
|
|
40 |
}
|
41 |
|
42 |
|
43 |
-
|
44 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
*
|
46 |
* alias of acf()->get_setting()
|
47 |
*
|
48 |
-
* @
|
49 |
-
* @
|
50 |
-
* @since 5.0.0
|
51 |
*
|
52 |
* @param n/a
|
53 |
* @return n/a
|
54 |
*/
|
55 |
|
56 |
-
function
|
57 |
-
|
58 |
-
return acf()->get_setting( $name, $value );
|
59 |
-
|
60 |
}
|
61 |
|
62 |
|
@@ -76,15 +90,35 @@ function acf_get_setting( $name, $value = null ) {
|
|
76 |
|
77 |
function acf_update_setting( $name, $value ) {
|
78 |
|
79 |
-
|
|
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
}
|
82 |
|
83 |
|
84 |
/*
|
85 |
-
*
|
86 |
*
|
87 |
-
* alias of acf()->
|
88 |
*
|
89 |
* @type function
|
90 |
* @date 28/09/13
|
@@ -94,10 +128,21 @@ function acf_update_setting( $name, $value ) {
|
|
94 |
* @return n/a
|
95 |
*/
|
96 |
|
97 |
-
function
|
98 |
|
99 |
-
|
|
|
100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
}
|
102 |
|
103 |
|
@@ -118,23 +163,37 @@ function acf_init() {
|
|
118 |
function acf_append_setting( $name, $value ) {
|
119 |
|
120 |
// vars
|
121 |
-
$setting =
|
122 |
-
|
123 |
|
124 |
// bail ealry if not array
|
125 |
-
if( !is_array($setting) )
|
126 |
-
|
|
|
127 |
|
128 |
// append
|
129 |
$setting[] = $value;
|
130 |
|
131 |
-
|
132 |
// update
|
133 |
-
acf_update_setting( $name, $setting );
|
134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
|
136 |
-
|
137 |
-
return true;
|
138 |
|
139 |
}
|
140 |
|
@@ -174,21 +233,14 @@ function acf_get_compatibility( $name ) {
|
|
174 |
|
175 |
function acf_has_done( $name ) {
|
176 |
|
177 |
-
// vars
|
178 |
-
$setting = "_has_done_{$name}";
|
179 |
-
|
180 |
-
|
181 |
// return true if already done
|
182 |
-
if(
|
183 |
-
|
184 |
-
|
185 |
-
// update setting
|
186 |
-
acf_update_setting($setting, true);
|
187 |
-
|
188 |
|
189 |
-
// return
|
|
|
190 |
return false;
|
191 |
-
|
192 |
}
|
193 |
|
194 |
|
@@ -205,30 +257,52 @@ function acf_has_done( $name ) {
|
|
205 |
* @return (string)
|
206 |
*/
|
207 |
|
208 |
-
function acf_get_path( $path ) {
|
209 |
|
210 |
return ACF_PATH . $path;
|
211 |
|
212 |
}
|
213 |
|
214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
/*
|
216 |
* acf_get_dir
|
217 |
*
|
218 |
-
*
|
219 |
*
|
220 |
-
* @type function
|
221 |
* @date 28/09/13
|
222 |
* @since 5.0.0
|
223 |
*
|
224 |
-
* @param
|
225 |
-
* @return
|
226 |
*/
|
227 |
|
228 |
-
function acf_get_dir( $path ) {
|
229 |
-
|
230 |
-
return acf_get_setting('dir') . $path;
|
231 |
-
|
232 |
}
|
233 |
|
234 |
|
@@ -274,7 +348,7 @@ function acf_include( $file ) {
|
|
274 |
|
275 |
function acf_get_external_path( $file, $path = '' ) {
|
276 |
|
277 |
-
return
|
278 |
|
279 |
}
|
280 |
|
@@ -295,33 +369,53 @@ function acf_get_external_path( $file, $path = '' ) {
|
|
295 |
|
296 |
function acf_get_external_dir( $file, $path = '' ) {
|
297 |
|
298 |
-
|
299 |
-
$external_url = '';
|
300 |
-
$external_path = acf_get_external_path( $file, $path );
|
301 |
-
$wp_plugin_path = wp_normalize_path(WP_PLUGIN_DIR);
|
302 |
-
$wp_content_path = wp_normalize_path(WP_CONTENT_DIR);
|
303 |
-
$wp_path = wp_normalize_path(ABSPATH);
|
304 |
-
|
305 |
-
|
306 |
-
// wp-content/plugins
|
307 |
-
if( strpos($external_path, $wp_plugin_path) === 0 ) {
|
308 |
-
|
309 |
-
return str_replace($wp_plugin_path, plugins_url(), $external_path);
|
310 |
-
|
311 |
-
}
|
312 |
-
|
313 |
-
|
314 |
-
// wp-content
|
315 |
-
if( strpos($external_path, $wp_content_path) === 0 ) {
|
316 |
-
|
317 |
-
return str_replace($wp_content_path, content_url(), $external_path);
|
318 |
|
319 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
|
|
|
|
|
|
|
321 |
|
322 |
-
// return
|
323 |
-
return str_replace($wp_path, home_url(), $external_path);
|
324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
}
|
326 |
|
327 |
|
@@ -496,11 +590,6 @@ function acf_merge_atts( $atts, $extra = array() ) {
|
|
496 |
}
|
497 |
|
498 |
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
/*
|
505 |
* acf_nonce_input
|
506 |
*
|
@@ -4570,6 +4659,48 @@ function acf_is_plugin_active() {
|
|
4570 |
}
|
4571 |
|
4572 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4573 |
/*
|
4574 |
* acf_enable_filter
|
4575 |
*
|
@@ -4585,17 +4716,14 @@ function acf_is_plugin_active() {
|
|
4585 |
|
4586 |
function acf_enable_filter( $filter = '' ) {
|
4587 |
|
4588 |
-
// get
|
4589 |
-
$filters =
|
4590 |
-
|
4591 |
|
4592 |
// append
|
4593 |
$filters[ $filter ] = true;
|
4594 |
|
4595 |
-
|
4596 |
// update
|
4597 |
-
|
4598 |
-
|
4599 |
}
|
4600 |
|
4601 |
|
@@ -4614,17 +4742,14 @@ function acf_enable_filter( $filter = '' ) {
|
|
4614 |
|
4615 |
function acf_disable_filter( $filter = '' ) {
|
4616 |
|
4617 |
-
// get
|
4618 |
-
$filters =
|
4619 |
-
|
4620 |
|
4621 |
// append
|
4622 |
$filters[ $filter ] = false;
|
4623 |
|
4624 |
-
|
4625 |
// update
|
4626 |
-
|
4627 |
-
|
4628 |
}
|
4629 |
|
4630 |
|
@@ -4644,21 +4769,16 @@ function acf_disable_filter( $filter = '' ) {
|
|
4644 |
|
4645 |
function acf_enable_filters() {
|
4646 |
|
4647 |
-
// get
|
4648 |
-
$filters =
|
4649 |
-
|
4650 |
|
4651 |
// loop
|
4652 |
foreach( array_keys($filters) as $k ) {
|
4653 |
-
|
4654 |
$filters[ $k ] = true;
|
4655 |
-
|
4656 |
}
|
4657 |
|
4658 |
-
|
4659 |
// update
|
4660 |
-
|
4661 |
-
|
4662 |
}
|
4663 |
|
4664 |
|
@@ -4678,21 +4798,16 @@ function acf_enable_filters() {
|
|
4678 |
|
4679 |
function acf_disable_filters() {
|
4680 |
|
4681 |
-
// get
|
4682 |
-
$filters =
|
4683 |
-
|
4684 |
|
4685 |
// loop
|
4686 |
foreach( array_keys($filters) as $k ) {
|
4687 |
-
|
4688 |
$filters[ $k ] = false;
|
4689 |
-
|
4690 |
}
|
4691 |
|
4692 |
-
|
4693 |
// update
|
4694 |
-
|
4695 |
-
|
4696 |
}
|
4697 |
|
4698 |
|
@@ -4712,13 +4827,11 @@ function acf_disable_filters() {
|
|
4712 |
|
4713 |
function acf_is_filter_enabled( $filter = '' ) {
|
4714 |
|
4715 |
-
// get
|
4716 |
-
$filters =
|
4717 |
-
|
4718 |
-
|
4719 |
-
// bail early if not set
|
4720 |
-
return empty( $filters[ $filter ] ) ? false : true;
|
4721 |
|
|
|
|
|
4722 |
}
|
4723 |
|
4724 |
|
40 |
}
|
41 |
|
42 |
|
43 |
+
/**
|
44 |
+
* acf_has_setting
|
45 |
+
*
|
46 |
+
* alias of acf()->has_setting()
|
47 |
+
*
|
48 |
+
* @date 2/2/18
|
49 |
+
* @since 5.6.5
|
50 |
+
*
|
51 |
+
* @param n/a
|
52 |
+
* @return n/a
|
53 |
+
*/
|
54 |
+
|
55 |
+
function acf_has_setting( $name = '' ) {
|
56 |
+
return acf()->has_setting( $name );
|
57 |
+
}
|
58 |
+
|
59 |
+
|
60 |
+
/**
|
61 |
+
* acf_raw_setting
|
62 |
*
|
63 |
* alias of acf()->get_setting()
|
64 |
*
|
65 |
+
* @date 2/2/18
|
66 |
+
* @since 5.6.5
|
|
|
67 |
*
|
68 |
* @param n/a
|
69 |
* @return n/a
|
70 |
*/
|
71 |
|
72 |
+
function acf_raw_setting( $name = '' ) {
|
73 |
+
return acf()->get_setting( $name );
|
|
|
|
|
74 |
}
|
75 |
|
76 |
|
90 |
|
91 |
function acf_update_setting( $name, $value ) {
|
92 |
|
93 |
+
// validate name
|
94 |
+
$name = acf_validate_setting( $name );
|
95 |
|
96 |
+
// update
|
97 |
+
return acf()->update_setting( $name, $value );
|
98 |
+
}
|
99 |
+
|
100 |
+
|
101 |
+
/**
|
102 |
+
* acf_validate_setting
|
103 |
+
*
|
104 |
+
* Returns the changed setting name if available.
|
105 |
+
*
|
106 |
+
* @date 2/2/18
|
107 |
+
* @since 5.6.5
|
108 |
+
*
|
109 |
+
* @param n/a
|
110 |
+
* @return n/a
|
111 |
+
*/
|
112 |
+
|
113 |
+
function acf_validate_setting( $name = '' ) {
|
114 |
+
return apply_filters( "acf/validate_setting", $name );
|
115 |
}
|
116 |
|
117 |
|
118 |
/*
|
119 |
+
* acf_get_setting
|
120 |
*
|
121 |
+
* alias of acf()->get_setting()
|
122 |
*
|
123 |
* @type function
|
124 |
* @date 28/09/13
|
128 |
* @return n/a
|
129 |
*/
|
130 |
|
131 |
+
function acf_get_setting( $name, $value = null ) {
|
132 |
|
133 |
+
// validate name
|
134 |
+
$name = acf_validate_setting( $name );
|
135 |
|
136 |
+
// check settings
|
137 |
+
if( acf_has_setting($name) ) {
|
138 |
+
$value = acf_raw_setting( $name );
|
139 |
+
}
|
140 |
+
|
141 |
+
// filter
|
142 |
+
$value = apply_filters( "acf/settings/{$name}", $value );
|
143 |
+
|
144 |
+
// return
|
145 |
+
return $value;
|
146 |
}
|
147 |
|
148 |
|
163 |
function acf_append_setting( $name, $value ) {
|
164 |
|
165 |
// vars
|
166 |
+
$setting = acf_raw_setting( $name );
|
|
|
167 |
|
168 |
// bail ealry if not array
|
169 |
+
if( !is_array($setting) ) {
|
170 |
+
$setting = array();
|
171 |
+
}
|
172 |
|
173 |
// append
|
174 |
$setting[] = $value;
|
175 |
|
|
|
176 |
// update
|
177 |
+
return acf_update_setting( $name, $setting );
|
178 |
+
}
|
179 |
+
|
180 |
+
|
181 |
+
/*
|
182 |
+
* acf_init
|
183 |
+
*
|
184 |
+
* alias of acf()->init()
|
185 |
+
*
|
186 |
+
* @type function
|
187 |
+
* @date 28/09/13
|
188 |
+
* @since 5.0.0
|
189 |
+
*
|
190 |
+
* @param n/a
|
191 |
+
* @return n/a
|
192 |
+
*/
|
193 |
+
|
194 |
+
function acf_init() {
|
195 |
|
196 |
+
acf()->init();
|
|
|
197 |
|
198 |
}
|
199 |
|
233 |
|
234 |
function acf_has_done( $name ) {
|
235 |
|
|
|
|
|
|
|
|
|
236 |
// return true if already done
|
237 |
+
if( acf_raw_setting("has_done_{$name}") ) {
|
238 |
+
return true;
|
239 |
+
}
|
|
|
|
|
|
|
240 |
|
241 |
+
// update setting and return
|
242 |
+
acf_update_setting("has_done_{$name}", true);
|
243 |
return false;
|
|
|
244 |
}
|
245 |
|
246 |
|
257 |
* @return (string)
|
258 |
*/
|
259 |
|
260 |
+
function acf_get_path( $path = '' ) {
|
261 |
|
262 |
return ACF_PATH . $path;
|
263 |
|
264 |
}
|
265 |
|
266 |
|
267 |
+
/**
|
268 |
+
* acf_get_url
|
269 |
+
*
|
270 |
+
* This function will return the url to a file within the ACF plugin folder
|
271 |
+
*
|
272 |
+
* @date 12/12/17
|
273 |
+
* @since 5.6.8
|
274 |
+
*
|
275 |
+
* @param string $path The relative path from the root of the ACF plugin folder
|
276 |
+
* @return string
|
277 |
+
*/
|
278 |
+
|
279 |
+
function acf_get_url( $path = '' ) {
|
280 |
+
|
281 |
+
// define ACF_URL to optimise performance
|
282 |
+
if( !defined('ACF_URL') ) {
|
283 |
+
define( 'ACF_URL', acf_get_setting('url') );
|
284 |
+
}
|
285 |
+
|
286 |
+
// return
|
287 |
+
return ACF_URL . $path;
|
288 |
+
|
289 |
+
}
|
290 |
+
|
291 |
+
|
292 |
/*
|
293 |
* acf_get_dir
|
294 |
*
|
295 |
+
* Deprecated in 5.6.8. Use acf_get_url() instead.
|
296 |
*
|
|
|
297 |
* @date 28/09/13
|
298 |
* @since 5.0.0
|
299 |
*
|
300 |
+
* @param string
|
301 |
+
* @return string
|
302 |
*/
|
303 |
|
304 |
+
function acf_get_dir( $path = '' ) {
|
305 |
+
return acf_get_url( $path );
|
|
|
|
|
306 |
}
|
307 |
|
308 |
|
348 |
|
349 |
function acf_get_external_path( $file, $path = '' ) {
|
350 |
|
351 |
+
return plugin_dir_path( $file ) . $path;
|
352 |
|
353 |
}
|
354 |
|
369 |
|
370 |
function acf_get_external_dir( $file, $path = '' ) {
|
371 |
|
372 |
+
return acf_plugin_dir_url( $file ) . $path;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
|
374 |
+
}
|
375 |
+
|
376 |
+
|
377 |
+
/**
|
378 |
+
* acf_plugin_dir_url
|
379 |
+
*
|
380 |
+
* This function will calculate the url to a plugin folder.
|
381 |
+
* Different to the WP plugin_dir_url(), this function can calculate for urls outside of the plugins folder (theme include).
|
382 |
+
*
|
383 |
+
* @date 13/12/17
|
384 |
+
* @since 5.6.8
|
385 |
+
*
|
386 |
+
* @param type $var Description. Default.
|
387 |
+
* @return type Description.
|
388 |
+
*/
|
389 |
+
|
390 |
+
function acf_plugin_dir_url( $file ) {
|
391 |
|
392 |
+
// vars
|
393 |
+
$path = plugin_dir_path( $file );
|
394 |
+
$path = wp_normalize_path( $path );
|
395 |
|
|
|
|
|
396 |
|
397 |
+
// check plugins
|
398 |
+
$check_path = wp_normalize_path( realpath(WP_PLUGIN_DIR) );
|
399 |
+
if( strpos($path, $check_path) === 0 ) {
|
400 |
+
return str_replace( $check_path, plugins_url(), $path );
|
401 |
+
}
|
402 |
+
|
403 |
+
// check wp-content
|
404 |
+
$check_path = wp_normalize_path( realpath(WP_CONTENT_DIR) );
|
405 |
+
if( strpos($path, $check_path) === 0 ) {
|
406 |
+
return str_replace( $check_path, content_url(), $path );
|
407 |
+
}
|
408 |
+
|
409 |
+
// check root
|
410 |
+
$check_path = wp_normalize_path( realpath(ABSPATH) );
|
411 |
+
if( strpos($path, $check_path) === 0 ) {
|
412 |
+
return str_replace( $check_path, site_url('/'), $path );
|
413 |
+
}
|
414 |
+
|
415 |
+
|
416 |
+
// return
|
417 |
+
return plugin_dir_url( $file );
|
418 |
+
|
419 |
}
|
420 |
|
421 |
|
590 |
}
|
591 |
|
592 |
|
|
|
|
|
|
|
|
|
|
|
593 |
/*
|
594 |
* acf_nonce_input
|
595 |
*
|
4659 |
}
|
4660 |
|
4661 |
|
4662 |
+
/**
|
4663 |
+
* acf_get_filters
|
4664 |
+
*
|
4665 |
+
* Returns the registered filters
|
4666 |
+
*
|
4667 |
+
* @date 2/2/18
|
4668 |
+
* @since 5.6.5
|
4669 |
+
*
|
4670 |
+
* @param type $var Description. Default.
|
4671 |
+
* @return type Description.
|
4672 |
+
*/
|
4673 |
+
|
4674 |
+
function acf_get_filters() {
|
4675 |
+
|
4676 |
+
// get
|
4677 |
+
$filters = acf_raw_setting('filters');
|
4678 |
+
|
4679 |
+
// array
|
4680 |
+
$filters = is_array($filters) ? $filters : array();
|
4681 |
+
|
4682 |
+
// return
|
4683 |
+
return $filters;
|
4684 |
+
}
|
4685 |
+
|
4686 |
+
|
4687 |
+
/**
|
4688 |
+
* acf_update_filters
|
4689 |
+
*
|
4690 |
+
* Updates the registered filters
|
4691 |
+
*
|
4692 |
+
* @date 2/2/18
|
4693 |
+
* @since 5.6.5
|
4694 |
+
*
|
4695 |
+
* @param type $var Description. Default.
|
4696 |
+
* @return type Description.
|
4697 |
+
*/
|
4698 |
+
|
4699 |
+
function acf_update_filters( $filters ) {
|
4700 |
+
return acf_update_setting('filters', $filters);
|
4701 |
+
}
|
4702 |
+
|
4703 |
+
|
4704 |
/*
|
4705 |
* acf_enable_filter
|
4706 |
*
|
4716 |
|
4717 |
function acf_enable_filter( $filter = '' ) {
|
4718 |
|
4719 |
+
// get
|
4720 |
+
$filters = acf_get_filters();
|
|
|
4721 |
|
4722 |
// append
|
4723 |
$filters[ $filter ] = true;
|
4724 |
|
|
|
4725 |
// update
|
4726 |
+
acf_update_filters( $filters );
|
|
|
4727 |
}
|
4728 |
|
4729 |
|
4742 |
|
4743 |
function acf_disable_filter( $filter = '' ) {
|
4744 |
|
4745 |
+
// get
|
4746 |
+
$filters = acf_get_filters();
|
|
|
4747 |
|
4748 |
// append
|
4749 |
$filters[ $filter ] = false;
|
4750 |
|
|
|
4751 |
// update
|
4752 |
+
acf_update_filters( $filters );
|
|
|
4753 |
}
|
4754 |
|
4755 |
|
4769 |
|
4770 |
function acf_enable_filters() {
|
4771 |
|
4772 |
+
// get
|
4773 |
+
$filters = acf_get_filters();
|
|
|
4774 |
|
4775 |
// loop
|
4776 |
foreach( array_keys($filters) as $k ) {
|
|
|
4777 |
$filters[ $k ] = true;
|
|
|
4778 |
}
|
4779 |
|
|
|
4780 |
// update
|
4781 |
+
acf_update_filters( $filters );
|
|
|
4782 |
}
|
4783 |
|
4784 |
|
4798 |
|
4799 |
function acf_disable_filters() {
|
4800 |
|
4801 |
+
// get
|
4802 |
+
$filters = acf_get_filters();
|
|
|
4803 |
|
4804 |
// loop
|
4805 |
foreach( array_keys($filters) as $k ) {
|
|
|
4806 |
$filters[ $k ] = false;
|
|
|
4807 |
}
|
4808 |
|
|
|
4809 |
// update
|
4810 |
+
acf_update_filters( $filters );
|
|
|
4811 |
}
|
4812 |
|
4813 |
|
4827 |
|
4828 |
function acf_is_filter_enabled( $filter = '' ) {
|
4829 |
|
4830 |
+
// get
|
4831 |
+
$filters = acf_get_filters();
|
|
|
|
|
|
|
|
|
4832 |
|
4833 |
+
// return
|
4834 |
+
return !empty($filters[ $filter ]);
|
4835 |
}
|
4836 |
|
4837 |
|
includes/api/api-template.php
CHANGED
@@ -1,36 +1,5 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
/*
|
4 |
-
* acf_get_field_reference()
|
5 |
-
*
|
6 |
-
* This function will find the $field_key that is related to the $field_name.
|
7 |
-
* This is know as the field value reference
|
8 |
-
*
|
9 |
-
* @type function
|
10 |
-
* @since 3.6
|
11 |
-
* @date 29/01/13
|
12 |
-
*
|
13 |
-
* @param $field_name (mixed) the name of the field. eg 'sub_heading'
|
14 |
-
* @param $post_id (int) the post_id of which the value is saved against
|
15 |
-
* @return $reference (string) a string containing the field_key
|
16 |
-
*/
|
17 |
-
|
18 |
-
function acf_get_field_reference( $field_name, $post_id ) {
|
19 |
-
|
20 |
-
// vars
|
21 |
-
$field_key = acf_get_metadata( $post_id, $field_name, true );
|
22 |
-
|
23 |
-
|
24 |
-
// filter
|
25 |
-
$field_key = apply_filters('acf/get_field_reference', $field_key, $field_name, $post_id);
|
26 |
-
|
27 |
-
|
28 |
-
// return
|
29 |
-
return $field_key;
|
30 |
-
|
31 |
-
}
|
32 |
-
|
33 |
-
|
34 |
/*
|
35 |
* get_field()
|
36 |
*
|
1 |
<?php
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
/*
|
4 |
* get_field()
|
5 |
*
|
includes/api/api-value.php
CHANGED
@@ -214,6 +214,45 @@ function acf_update_option( $option = '', $value = '', $autoload = null ) {
|
|
214 |
}
|
215 |
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
/*
|
218 |
* acf_get_value
|
219 |
*
|
@@ -231,10 +270,10 @@ function acf_update_option( $option = '', $value = '', $autoload = null ) {
|
|
231 |
function acf_get_value( $post_id = 0, $field ) {
|
232 |
|
233 |
// allow filter to short-circuit load_value logic
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
|
239 |
|
240 |
// vars
|
@@ -342,9 +381,14 @@ function acf_update_value( $value = null, $post_id = 0, $field ) {
|
|
342 |
|
343 |
// strip slashes
|
344 |
if( acf_get_setting('stripslashes') ) {
|
345 |
-
|
346 |
$value = stripslashes_deep($value);
|
347 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
}
|
349 |
|
350 |
|
214 |
}
|
215 |
|
216 |
|
217 |
+
/**
|
218 |
+
* acf_get_reference
|
219 |
+
*
|
220 |
+
* Finds the field key for a given field name and post_id.
|
221 |
+
*
|
222 |
+
* @date 26/1/18
|
223 |
+
* @since 5.6.5
|
224 |
+
*
|
225 |
+
* @param string $field_name The name of the field. eg 'sub_heading'
|
226 |
+
* @param mixed $post_id The post_id of which the value is saved against
|
227 |
+
* @return string $reference The field key
|
228 |
+
*/
|
229 |
+
|
230 |
+
function acf_get_reference( $field_name, $post_id ) {
|
231 |
+
|
232 |
+
// allow filter to short-circuit load_value logic
|
233 |
+
$reference = apply_filters( "acf/pre_load_reference", null, $field_name, $post_id );
|
234 |
+
if( $reference !== null ) {
|
235 |
+
return $reference;
|
236 |
+
}
|
237 |
+
|
238 |
+
// get hidden meta for this field name
|
239 |
+
$reference = acf_get_metadata( $post_id, $field_name, true );
|
240 |
+
|
241 |
+
// filter
|
242 |
+
$reference = apply_filters('acf/load_reference', $reference, $field_name, $post_id);
|
243 |
+
$reference = apply_filters('acf/get_field_reference', $reference, $field_name, $post_id);
|
244 |
+
|
245 |
+
// return
|
246 |
+
return $reference;
|
247 |
+
|
248 |
+
}
|
249 |
+
|
250 |
+
// deprecated in 5.6.8
|
251 |
+
function acf_get_field_reference( $field_name, $post_id ) {
|
252 |
+
return acf_get_reference( $field_name, $post_id );
|
253 |
+
}
|
254 |
+
|
255 |
+
|
256 |
/*
|
257 |
* acf_get_value
|
258 |
*
|
270 |
function acf_get_value( $post_id = 0, $field ) {
|
271 |
|
272 |
// allow filter to short-circuit load_value logic
|
273 |
+
$value = apply_filters( "acf/pre_load_value", null, $post_id, $field );
|
274 |
+
if( $value !== null ) {
|
275 |
+
return $value;
|
276 |
+
}
|
277 |
|
278 |
|
279 |
// vars
|
381 |
|
382 |
// strip slashes
|
383 |
if( acf_get_setting('stripslashes') ) {
|
|
|
384 |
$value = stripslashes_deep($value);
|
385 |
+
}
|
386 |
+
|
387 |
+
|
388 |
+
// allow filter to short-circuit update_value logic
|
389 |
+
$value = apply_filters( "acf/pre_update_value", $value, $post_id, $field );
|
390 |
+
if( $value === null ) {
|
391 |
+
return false;
|
392 |
}
|
393 |
|
394 |
|
includes/deprecated.php
CHANGED
@@ -26,8 +26,10 @@ class acf_deprecated {
|
|
26 |
add_filter('acf/settings/l10n_textdomain', array($this, 'acf_settings_l10n_textdomain'), 5, 1); // 5.3.3
|
27 |
add_filter('acf/settings/l10n_field', array($this, 'acf_settings_l10n_field'), 5, 1); // 5.3.3
|
28 |
add_filter('acf/settings/l10n_field_group', array($this, 'acf_settings_l10n_field'), 5, 1); // 5.3.3
|
|
|
|
|
29 |
|
30 |
-
|
31 |
// filters
|
32 |
add_filter('acf/validate_field', array($this, 'acf_validate_field'), 10, 1); // 5.5.6
|
33 |
add_filter('acf/validate_field_group', array($this, 'acf_validate_field_group'), 10, 1); // 5.5.6
|
@@ -99,6 +101,51 @@ class acf_deprecated {
|
|
99 |
}
|
100 |
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
/*
|
103 |
* acf_validate_field
|
104 |
*
|
26 |
add_filter('acf/settings/l10n_textdomain', array($this, 'acf_settings_l10n_textdomain'), 5, 1); // 5.3.3
|
27 |
add_filter('acf/settings/l10n_field', array($this, 'acf_settings_l10n_field'), 5, 1); // 5.3.3
|
28 |
add_filter('acf/settings/l10n_field_group', array($this, 'acf_settings_l10n_field'), 5, 1); // 5.3.3
|
29 |
+
add_filter('acf/settings/url', array($this, 'acf_settings_url'), 5, 1); // 5.6.8
|
30 |
+
add_filter('acf/validate_setting', array($this, 'acf_validate_setting'), 5, 1); // 5.6.8
|
31 |
|
32 |
+
|
33 |
// filters
|
34 |
add_filter('acf/validate_field', array($this, 'acf_validate_field'), 10, 1); // 5.5.6
|
35 |
add_filter('acf/validate_field_group', array($this, 'acf_validate_field_group'), 10, 1); // 5.5.6
|
101 |
}
|
102 |
|
103 |
|
104 |
+
/**
|
105 |
+
* acf_settings_url
|
106 |
+
*
|
107 |
+
* This function will add compatibility for previously named hooks
|
108 |
+
*
|
109 |
+
* @date 12/12/17
|
110 |
+
* @since 5.6.8
|
111 |
+
*
|
112 |
+
* @param n/a
|
113 |
+
* @return n/a
|
114 |
+
*/
|
115 |
+
|
116 |
+
function acf_settings_url( $value ) {
|
117 |
+
return apply_filters( "acf/settings/dir", $value );
|
118 |
+
}
|
119 |
+
|
120 |
+
/**
|
121 |
+
* acf_validate_setting
|
122 |
+
*
|
123 |
+
* description
|
124 |
+
*
|
125 |
+
* @date 2/2/18
|
126 |
+
* @since 5.6.5
|
127 |
+
*
|
128 |
+
* @param type $var Description. Default.
|
129 |
+
* @return type Description.
|
130 |
+
*/
|
131 |
+
|
132 |
+
function acf_validate_setting( $name ) {
|
133 |
+
|
134 |
+
// vars
|
135 |
+
$changed = array(
|
136 |
+
'dir' => 'url' // 5.6.8
|
137 |
+
);
|
138 |
+
|
139 |
+
// check
|
140 |
+
if( isset($changed[ $name ]) ) {
|
141 |
+
return $changed[ $name ];
|
142 |
+
}
|
143 |
+
|
144 |
+
//return
|
145 |
+
return $name;
|
146 |
+
}
|
147 |
+
|
148 |
+
|
149 |
/*
|
150 |
* acf_validate_field
|
151 |
*
|
includes/fields/class-acf-field-date_picker.php
CHANGED
@@ -99,7 +99,7 @@ class acf_field_date_picker extends acf_field {
|
|
99 |
|
100 |
|
101 |
// style
|
102 |
-
wp_enqueue_style('acf-datepicker',
|
103 |
|
104 |
}
|
105 |
|
99 |
|
100 |
|
101 |
// style
|
102 |
+
wp_enqueue_style('acf-datepicker', acf_get_url('assets/inc/datepicker/jquery-ui.min.css'), '', '1.11.4' );
|
103 |
|
104 |
}
|
105 |
|
includes/fields/class-acf-field-date_time_picker.php
CHANGED
@@ -78,11 +78,11 @@ class acf_field_date_and_time_picker extends acf_field {
|
|
78 |
|
79 |
|
80 |
// script
|
81 |
-
wp_enqueue_script('acf-timepicker',
|
82 |
|
83 |
|
84 |
// style
|
85 |
-
wp_enqueue_style('acf-timepicker',
|
86 |
|
87 |
}
|
88 |
|
78 |
|
79 |
|
80 |
// script
|
81 |
+
wp_enqueue_script('acf-timepicker', acf_get_url('assets/inc/timepicker/jquery-ui-timepicker-addon.min.js'), array('jquery-ui-datepicker'), $version);
|
82 |
|
83 |
|
84 |
// style
|
85 |
+
wp_enqueue_style('acf-timepicker', acf_get_url('assets/inc/timepicker/jquery-ui-timepicker-addon.min.css'), '', $version);
|
86 |
|
87 |
}
|
88 |
|
includes/fields/class-acf-field-select.php
CHANGED
@@ -101,15 +101,15 @@ class acf_field_select extends acf_field {
|
|
101 |
if( $major == 4 ) {
|
102 |
|
103 |
$version = '4.0';
|
104 |
-
$script =
|
105 |
-
$style =
|
106 |
|
107 |
// v3
|
108 |
} else {
|
109 |
|
110 |
$version = '3.5.2';
|
111 |
-
$script =
|
112 |
-
$style =
|
113 |
|
114 |
}
|
115 |
|
101 |
if( $major == 4 ) {
|
102 |
|
103 |
$version = '4.0';
|
104 |
+
$script = acf_get_url("assets/inc/select2/4/select2.full{$min}.js");
|
105 |
+
$style = acf_get_url("assets/inc/select2/4/select2{$min}.css");
|
106 |
|
107 |
// v3
|
108 |
} else {
|
109 |
|
110 |
$version = '3.5.2';
|
111 |
+
$script = acf_get_url("assets/inc/select2/3/select2{$min}.js");
|
112 |
+
$style = acf_get_url("assets/inc/select2/3/select2.css");
|
113 |
|
114 |
}
|
115 |
|
includes/fields/class-acf-field-tab.php
CHANGED
@@ -104,7 +104,7 @@ class acf_field_tab extends acf_field {
|
|
104 |
'name' => 'placement',
|
105 |
'choices' => array(
|
106 |
'top' => __("Top aligned", 'acf'),
|
107 |
-
'left' => __("Left
|
108 |
)
|
109 |
));
|
110 |
|
104 |
'name' => 'placement',
|
105 |
'choices' => array(
|
106 |
'top' => __("Top aligned", 'acf'),
|
107 |
+
'left' => __("Left aligned", 'acf'),
|
108 |
)
|
109 |
));
|
110 |
|
includes/forms/form-customizer.php
CHANGED
@@ -241,47 +241,56 @@ class acf_form_customizer {
|
|
241 |
if( empty($this->preview_values) ) return;
|
242 |
|
243 |
|
244 |
-
// add
|
245 |
-
add_filter('acf/
|
|
|
246 |
|
247 |
}
|
248 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
|
250 |
-
|
251 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
252 |
*
|
253 |
-
*
|
254 |
-
* Normally, ACF would lookup the DB fro this connection, but a new preview widget has not yet saved anything to the DB
|
255 |
*
|
256 |
-
* @
|
257 |
-
* @
|
258 |
-
* @since 5.3.8
|
259 |
*
|
260 |
-
* @param $
|
261 |
-
* @
|
262 |
-
* @param $post_id (mixed)
|
263 |
-
* @return $field_key
|
264 |
*/
|
265 |
|
266 |
-
function
|
267 |
|
268 |
-
//
|
269 |
if( isset($this->preview_fields[ $post_id ][ $field_name ]) ) {
|
270 |
-
|
271 |
-
// update key
|
272 |
-
$field_key = $this->preview_fields[ $post_id ][ $field_name ];
|
273 |
-
$field_value = $this->preview_values[ $post_id ][ $field_key ];
|
274 |
-
|
275 |
-
|
276 |
-
// cache value
|
277 |
-
acf_set_cache("get_value/post_id={$post_id}/name={$field_name}", $field_value);
|
278 |
-
|
279 |
}
|
280 |
|
281 |
-
|
282 |
// return
|
283 |
-
return $
|
284 |
-
|
285 |
}
|
286 |
|
287 |
|
241 |
if( empty($this->preview_values) ) return;
|
242 |
|
243 |
|
244 |
+
// add filters
|
245 |
+
add_filter('acf/pre_load_value', array($this, 'pre_load_value'), 10, 3);
|
246 |
+
add_filter('acf/pre_load_reference', array($this, 'pre_load_reference'), 10, 3);
|
247 |
|
248 |
}
|
249 |
|
250 |
+
/**
|
251 |
+
* pre_load_value
|
252 |
+
*
|
253 |
+
* Used to inject preview value
|
254 |
+
*
|
255 |
+
* @date 2/2/18
|
256 |
+
* @since 5.6.5
|
257 |
+
*
|
258 |
+
* @param type $var Description. Default.
|
259 |
+
* @return type Description.
|
260 |
+
*/
|
261 |
|
262 |
+
function pre_load_value( $value, $post_id, $field ) {
|
263 |
+
|
264 |
+
// check
|
265 |
+
if( isset($this->preview_values[ $post_id ][ $field['key'] ]) ) {
|
266 |
+
return $this->preview_values[ $post_id ][ $field['key'] ];
|
267 |
+
}
|
268 |
+
|
269 |
+
// return
|
270 |
+
return $value;
|
271 |
+
}
|
272 |
+
|
273 |
+
/**
|
274 |
+
* pre_load_reference
|
275 |
*
|
276 |
+
* Used to inject preview value
|
|
|
277 |
*
|
278 |
+
* @date 2/2/18
|
279 |
+
* @since 5.6.5
|
|
|
280 |
*
|
281 |
+
* @param type $var Description. Default.
|
282 |
+
* @return type Description.
|
|
|
|
|
283 |
*/
|
284 |
|
285 |
+
function pre_load_reference( $field_key, $field_name, $post_id ) {
|
286 |
|
287 |
+
// check
|
288 |
if( isset($this->preview_fields[ $post_id ][ $field_name ]) ) {
|
289 |
+
return $this->preview_fields[ $post_id ][ $field_name ];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
}
|
291 |
|
|
|
292 |
// return
|
293 |
+
return $value;
|
|
|
294 |
}
|
295 |
|
296 |
|
includes/forms/form-post.php
CHANGED
@@ -604,10 +604,10 @@ if( typeof acf !== 'undefined' ) {
|
|
604 |
|
605 |
function is_protected_meta( $protected, $meta_key, $meta_type ) {
|
606 |
|
607 |
-
// if
|
608 |
if( !$protected ) {
|
609 |
|
610 |
-
$reference =
|
611 |
|
612 |
if( acf_is_field_key($reference) ) {
|
613 |
|
604 |
|
605 |
function is_protected_meta( $protected, $meta_key, $meta_type ) {
|
606 |
|
607 |
+
// if acf_get_reference returns a valid key, this is an acf value, so protect it!
|
608 |
if( !$protected ) {
|
609 |
|
610 |
+
$reference = acf_get_reference( $meta_key, $this->post_id );
|
611 |
|
612 |
if( acf_is_field_key($reference) ) {
|
613 |
|
includes/forms/form-taxonomy.php
CHANGED
@@ -159,7 +159,7 @@ class acf_form_taxonomy {
|
|
159 |
));
|
160 |
|
161 |
// wrap
|
162 |
-
echo '<div
|
163 |
|
164 |
// loop
|
165 |
foreach( $field_groups as $field_group ) {
|
@@ -275,49 +275,37 @@ class acf_form_taxonomy {
|
|
275 |
<?php if( $this->form == '#addtag' ): ?>
|
276 |
|
277 |
// store origional HTML
|
278 |
-
var $
|
279 |
-
|
280 |
|
281 |
// events
|
282 |
$('#submit').on('click', function( e ){
|
283 |
|
284 |
// bail early if not active
|
285 |
if( !acf.validation.active ) {
|
286 |
-
|
287 |
return true;
|
288 |
-
|
289 |
}
|
290 |
|
291 |
-
|
292 |
// ignore validation (only ignore once)
|
293 |
if( acf.validation.ignore ) {
|
294 |
-
|
295 |
acf.validation.ignore = 0;
|
296 |
return true;
|
297 |
-
|
298 |
}
|
299 |
|
300 |
-
|
301 |
// bail early if this form does not contain ACF data
|
302 |
-
if( !$('#
|
303 |
-
|
304 |
return true;
|
305 |
-
|
306 |
}
|
307 |
|
308 |
-
|
309 |
// stop WP JS validation
|
310 |
e.stopImmediatePropagation();
|
311 |
|
312 |
-
|
313 |
// store submit trigger so it will be clicked if validation is passed
|
314 |
acf.validation.$trigger = $(this);
|
315 |
-
|
316 |
-
|
317 |
// run validation
|
318 |
acf.validation.fetch( $('#addtag') );
|
319 |
|
320 |
-
|
321 |
// stop all other click events on this input
|
322 |
return false;
|
323 |
|
@@ -328,42 +316,28 @@ class acf_form_taxonomy {
|
|
328 |
|
329 |
// bail early if is other ajax call
|
330 |
if( settings.data.indexOf('action=add-tag') == -1 ) {
|
331 |
-
|
332 |
return;
|
333 |
-
|
334 |
}
|
335 |
|
336 |
-
|
337 |
// unlock form
|
338 |
acf.validation.toggle( $('#addtag'), 'unlock' );
|
339 |
|
340 |
-
|
341 |
// bail early if response contains error
|
342 |
if( xhr.responseText.indexOf('wp_error') !== -1 ) {
|
343 |
-
|
344 |
return;
|
345 |
-
|
346 |
}
|
347 |
|
348 |
-
|
349 |
// action for 3rd party customization
|
350 |
-
acf.do_action('remove', $
|
351 |
-
|
352 |
-
|
353 |
-
// remove old fields
|
354 |
-
$('#addtag').find('.acf-field').remove();
|
355 |
-
|
356 |
-
|
357 |
-
// add orig fields
|
358 |
-
$('#acf-form-data').after( $orig.clone() );
|
359 |
-
|
360 |
|
|
|
|
|
|
|
361 |
// reset unload
|
362 |
acf.unload.off();
|
363 |
|
364 |
-
|
365 |
// action for 3rd party customization
|
366 |
-
acf.do_action('append', $
|
367 |
|
368 |
});
|
369 |
|
159 |
));
|
160 |
|
161 |
// wrap
|
162 |
+
echo '<div id="acf-term-fields" class="acf-fields -clear">';
|
163 |
|
164 |
// loop
|
165 |
foreach( $field_groups as $field_group ) {
|
275 |
<?php if( $this->form == '#addtag' ): ?>
|
276 |
|
277 |
// store origional HTML
|
278 |
+
var $el = $('#acf-term-fields');
|
279 |
+
var html = $el.html();
|
280 |
|
281 |
// events
|
282 |
$('#submit').on('click', function( e ){
|
283 |
|
284 |
// bail early if not active
|
285 |
if( !acf.validation.active ) {
|
|
|
286 |
return true;
|
|
|
287 |
}
|
288 |
|
|
|
289 |
// ignore validation (only ignore once)
|
290 |
if( acf.validation.ignore ) {
|
|
|
291 |
acf.validation.ignore = 0;
|
292 |
return true;
|
|
|
293 |
}
|
294 |
|
|
|
295 |
// bail early if this form does not contain ACF data
|
296 |
+
if( !$('#acf-form-data').exists() ) {
|
|
|
297 |
return true;
|
|
|
298 |
}
|
299 |
|
|
|
300 |
// stop WP JS validation
|
301 |
e.stopImmediatePropagation();
|
302 |
|
|
|
303 |
// store submit trigger so it will be clicked if validation is passed
|
304 |
acf.validation.$trigger = $(this);
|
305 |
+
|
|
|
306 |
// run validation
|
307 |
acf.validation.fetch( $('#addtag') );
|
308 |
|
|
|
309 |
// stop all other click events on this input
|
310 |
return false;
|
311 |
|
316 |
|
317 |
// bail early if is other ajax call
|
318 |
if( settings.data.indexOf('action=add-tag') == -1 ) {
|
|
|
319 |
return;
|
|
|
320 |
}
|
321 |
|
|
|
322 |
// unlock form
|
323 |
acf.validation.toggle( $('#addtag'), 'unlock' );
|
324 |
|
|
|
325 |
// bail early if response contains error
|
326 |
if( xhr.responseText.indexOf('wp_error') !== -1 ) {
|
|
|
327 |
return;
|
|
|
328 |
}
|
329 |
|
|
|
330 |
// action for 3rd party customization
|
331 |
+
acf.do_action('remove', $el);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
|
333 |
+
// restore html
|
334 |
+
$el.html( html );
|
335 |
+
|
336 |
// reset unload
|
337 |
acf.unload.off();
|
338 |
|
|
|
339 |
// action for 3rd party customization
|
340 |
+
acf.do_action('append', $el);
|
341 |
|
342 |
});
|
343 |
|
includes/forms/form-widget.php
CHANGED
@@ -261,20 +261,25 @@ class acf_form_widget {
|
|
261 |
<script type="text/javascript">
|
262 |
(function($) {
|
263 |
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
|
280 |
$('#widgets-right').on('click', '.widget-control-save', function( e ){
|
261 |
<script type="text/javascript">
|
262 |
(function($) {
|
263 |
|
264 |
+
// vars
|
265 |
+
acf.update('post_id', 'widgets');
|
266 |
+
|
267 |
+
|
268 |
+
// restrict get fields
|
269 |
+
acf.add_filter('get_fields', function( $fields ){
|
270 |
+
|
271 |
+
// widgets
|
272 |
+
$fields = $fields.not('#available-widgets .acf-field');
|
273 |
+
|
274 |
+
|
275 |
+
// customizer
|
276 |
+
$fields = $fields.not('.widget-tpl .acf-field');
|
277 |
+
|
278 |
+
|
279 |
+
// return
|
280 |
+
return $fields;
|
281 |
+
|
282 |
+
});
|
283 |
|
284 |
|
285 |
$('#widgets-right').on('click', '.widget-control-save', function( e ){
|
includes/json.php
CHANGED
@@ -141,6 +141,8 @@ class acf_json {
|
|
141 |
// open
|
142 |
$dir = opendir( $path );
|
143 |
|
|
|
|
|
144 |
|
145 |
// loop over files
|
146 |
while(false !== ( $file = readdir($dir)) ) {
|
141 |
// open
|
142 |
$dir = opendir( $path );
|
143 |
|
144 |
+
// bail early if not valid
|
145 |
+
if( !$dir ) return false;
|
146 |
|
147 |
// loop over files
|
148 |
while(false !== ( $file = readdir($dir)) ) {
|
includes/loop.php
CHANGED
@@ -258,6 +258,10 @@ class acf_loop {
|
|
258 |
// reset keys
|
259 |
$this->loops = array_values( $this->loops );
|
260 |
|
|
|
|
|
|
|
|
|
261 |
}
|
262 |
|
263 |
}
|
258 |
// reset keys
|
259 |
$this->loops = array_values( $this->loops );
|
260 |
|
261 |
+
// PHP 7.2 no longer resets array keys for empty value
|
262 |
+
if( $this->is_empty() ) {
|
263 |
+
$this->loops = array();
|
264 |
+
}
|
265 |
}
|
266 |
|
267 |
}
|
lang/acf-ar.mo
CHANGED
Binary file
|
lang/acf-ar.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro\n"
|
4 |
"POT-Creation-Date: 2017-06-27 15:37+1000\n"
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
7 |
"Language-Team: Adil el hallaoui <servicewb11@gmail.com>\n"
|
8 |
"Language: ar\n"
|
@@ -27,11 +27,11 @@ msgstr "الحقول المخصصة المتقدمة"
|
|
27 |
|
28 |
#: acf.php:355 includes/admin/admin.php:117
|
29 |
msgid "Field Groups"
|
30 |
-
msgstr "مجموعات
|
31 |
|
32 |
#: acf.php:356
|
33 |
msgid "Field Group"
|
34 |
-
msgstr "مجموعة
|
35 |
|
36 |
#: acf.php:357 acf.php:389 includes/admin/admin.php:118
|
37 |
#: pro/fields/class-acf-field-flexible-content.php:574
|
@@ -40,31 +40,31 @@ msgstr "إضافة جديد"
|
|
40 |
|
41 |
#: acf.php:358
|
42 |
msgid "Add New Field Group"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: acf.php:359
|
46 |
msgid "Edit Field Group"
|
47 |
-
msgstr "تحرير
|
48 |
|
49 |
#: acf.php:360
|
50 |
msgid "New Field Group"
|
51 |
-
msgstr "
|
52 |
|
53 |
#: acf.php:361
|
54 |
msgid "View Field Group"
|
55 |
-
msgstr "عرض مجموعة"
|
56 |
|
57 |
#: acf.php:362
|
58 |
msgid "Search Field Groups"
|
59 |
-
msgstr "بحث مجموعات
|
60 |
|
61 |
#: acf.php:363
|
62 |
msgid "No Field Groups found"
|
63 |
-
msgstr "لم يتم العثور على
|
64 |
|
65 |
#: acf.php:364
|
66 |
msgid "No Field Groups found in Trash"
|
67 |
-
msgstr "لا توجد مجموعات
|
68 |
|
69 |
#: acf.php:387 includes/admin/admin-field-group.php:182
|
70 |
#: includes/admin/admin-field-group.php:275
|
@@ -83,7 +83,7 @@ msgstr "إضافة حقل جديد"
|
|
83 |
|
84 |
#: acf.php:391
|
85 |
msgid "Edit Field"
|
86 |
-
msgstr "
|
87 |
|
88 |
#: acf.php:392 includes/admin/views/field-group-fields.php:41
|
89 |
#: includes/admin/views/settings-info.php:105
|
@@ -108,50 +108,49 @@ msgstr "لم يتم العثور على أية حقول في سلة المهمل
|
|
108 |
|
109 |
#: acf.php:435 includes/admin/admin-field-group.php:390
|
110 |
#: includes/admin/admin-field-groups.php:567
|
111 |
-
#, fuzzy
|
112 |
msgid "Inactive"
|
113 |
-
msgstr "نشط"
|
114 |
|
115 |
#: acf.php:440
|
116 |
-
#,
|
117 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
118 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
119 |
-
msgstr[0] "
|
120 |
-
msgstr[1] "
|
121 |
-
msgstr[2] "
|
122 |
-
msgstr[3] "
|
123 |
-
msgstr[4] "
|
124 |
-
msgstr[5] "
|
125 |
|
126 |
#: includes/admin/admin-field-group.php:68
|
127 |
#: includes/admin/admin-field-group.php:69
|
128 |
#: includes/admin/admin-field-group.php:71
|
129 |
msgid "Field group updated."
|
130 |
-
msgstr "مجموعة
|
131 |
|
132 |
#: includes/admin/admin-field-group.php:70
|
133 |
msgid "Field group deleted."
|
134 |
-
msgstr "مجموعة
|
135 |
|
136 |
#: includes/admin/admin-field-group.php:73
|
137 |
msgid "Field group published."
|
138 |
-
msgstr "مجموعة
|
139 |
|
140 |
#: includes/admin/admin-field-group.php:74
|
141 |
msgid "Field group saved."
|
142 |
-
msgstr "مجموعة
|
143 |
|
144 |
#: includes/admin/admin-field-group.php:75
|
145 |
msgid "Field group submitted."
|
146 |
-
msgstr "مجموعة
|
147 |
|
148 |
#: includes/admin/admin-field-group.php:76
|
149 |
msgid "Field group scheduled for."
|
150 |
-
msgstr "مجموعة
|
151 |
|
152 |
#: includes/admin/admin-field-group.php:77
|
153 |
msgid "Field group draft updated."
|
154 |
-
msgstr "
|
155 |
|
156 |
#: includes/admin/admin-field-group.php:183
|
157 |
msgid "Location"
|
@@ -159,7 +158,7 @@ msgstr "الموقع"
|
|
159 |
|
160 |
#: includes/admin/admin-field-group.php:184
|
161 |
msgid "Settings"
|
162 |
-
msgstr "
|
163 |
|
164 |
#: includes/admin/admin-field-group.php:269
|
165 |
msgid "Move to trash. Are you sure?"
|
@@ -171,11 +170,11 @@ msgstr "مفحوص"
|
|
171 |
|
172 |
#: includes/admin/admin-field-group.php:271
|
173 |
msgid "No toggle fields available"
|
174 |
-
msgstr "
|
175 |
|
176 |
#: includes/admin/admin-field-group.php:272
|
177 |
msgid "Field group title is required"
|
178 |
-
msgstr "عنوان حقل المجموعة
|
179 |
|
180 |
#: includes/admin/admin-field-group.php:273
|
181 |
#: includes/api/api-field-group.php:732
|
@@ -201,11 +200,11 @@ msgstr "الحقول الفرعية"
|
|
201 |
|
202 |
#: includes/admin/admin-field-group.php:278
|
203 |
msgid "Move Custom Field"
|
204 |
-
msgstr "نقل الحقل
|
205 |
|
206 |
#: includes/admin/admin-field-group.php:279
|
207 |
msgid "This field cannot be moved until its changes have been saved"
|
208 |
-
msgstr "لا يمكن نقل هذا الحقل حتى يتم حفظ
|
209 |
|
210 |
#: includes/admin/admin-field-group.php:280
|
211 |
msgid "Null"
|
@@ -217,7 +216,7 @@ msgstr "سيتم فقدان التغييرات التي أجريتها إذا غ
|
|
217 |
|
218 |
#: includes/admin/admin-field-group.php:282
|
219 |
msgid "The string \"field_\" may not be used at the start of a field name"
|
220 |
-
msgstr "لا يجوز استخدام
|
221 |
|
222 |
#: includes/admin/admin-field-group.php:360
|
223 |
msgid "Field Keys"
|
@@ -230,12 +229,12 @@ msgstr "نشط"
|
|
230 |
|
231 |
#: includes/admin/admin-field-group.php:801
|
232 |
msgid "Move Complete."
|
233 |
-
msgstr "
|
234 |
|
235 |
#: includes/admin/admin-field-group.php:802
|
236 |
#, php-format
|
237 |
msgid "The %s field can now be found in the %s field group"
|
238 |
-
msgstr "
|
239 |
|
240 |
#: includes/admin/admin-field-group.php:803
|
241 |
msgid "Close Window"
|
@@ -253,17 +252,17 @@ msgstr "نقل الحقل"
|
|
253 |
#, php-format
|
254 |
msgid "Active <span class=\"count\">(%s)</span>"
|
255 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
256 |
-
msgstr[0] "
|
257 |
-
msgstr[1] "
|
258 |
-
msgstr[2] "
|
259 |
-
msgstr[3] "
|
260 |
-
msgstr[4] "
|
261 |
-
msgstr[5] "
|
262 |
|
263 |
#: includes/admin/admin-field-groups.php:142
|
264 |
#, php-format
|
265 |
msgid "Field group duplicated. %s"
|
266 |
-
msgstr "مجموعة
|
267 |
|
268 |
#: includes/admin/admin-field-groups.php:146
|
269 |
#, php-format
|
@@ -279,7 +278,7 @@ msgstr[5] "مجموعة الحقل متكررة. %s"
|
|
279 |
#: includes/admin/admin-field-groups.php:227
|
280 |
#, php-format
|
281 |
msgid "Field group synchronised. %s"
|
282 |
-
msgstr "مجموعة
|
283 |
|
284 |
#: includes/admin/admin-field-groups.php:231
|
285 |
#, php-format
|
@@ -323,12 +322,12 @@ msgstr "تخصيص وورد مع حقول قوية ومهنية وبديهية
|
|
323 |
#: includes/admin/settings-info.php:76
|
324 |
#: pro/admin/views/html-settings-updates.php:111
|
325 |
msgid "Changelog"
|
326 |
-
msgstr "سجل
|
327 |
|
328 |
#: includes/admin/admin-field-groups.php:614
|
329 |
#, php-format
|
330 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
331 |
-
msgstr ""
|
332 |
|
333 |
#: includes/admin/admin-field-groups.php:617
|
334 |
msgid "Resources"
|
@@ -336,22 +335,19 @@ msgstr "الموارد"
|
|
336 |
|
337 |
#: includes/admin/admin-field-groups.php:619
|
338 |
msgid "Website"
|
339 |
-
msgstr ""
|
340 |
|
341 |
#: includes/admin/admin-field-groups.php:620
|
342 |
-
#, fuzzy
|
343 |
msgid "Documentation"
|
344 |
-
msgstr "
|
345 |
|
346 |
#: includes/admin/admin-field-groups.php:621
|
347 |
-
#, fuzzy
|
348 |
msgid "Support"
|
349 |
-
msgstr "
|
350 |
|
351 |
#: includes/admin/admin-field-groups.php:623
|
352 |
-
#, fuzzy
|
353 |
msgid "Pro"
|
354 |
-
msgstr "
|
355 |
|
356 |
#: includes/admin/admin-field-groups.php:628
|
357 |
#, fuzzy, php-format
|
@@ -360,7 +356,7 @@ msgstr "شكرا لك على التحديث إلى v %s %s!"
|
|
360 |
|
361 |
#: includes/admin/admin-field-groups.php:668
|
362 |
msgid "Duplicate this item"
|
363 |
-
msgstr "تكرار
|
364 |
|
365 |
#: includes/admin/admin-field-groups.php:668
|
366 |
#: includes/admin/admin-field-groups.php:684
|
@@ -382,7 +378,7 @@ msgstr "اختيار %s"
|
|
382 |
|
383 |
#: includes/admin/admin-field-groups.php:768
|
384 |
msgid "Synchronise field group"
|
385 |
-
msgstr "مزامنة مجموعة
|
386 |
|
387 |
#: includes/admin/admin-field-groups.php:768
|
388 |
#: includes/admin/admin-field-groups.php:798
|
@@ -391,7 +387,7 @@ msgstr "مزامنة"
|
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:780
|
393 |
msgid "Apply"
|
394 |
-
msgstr ""
|
395 |
|
396 |
#: includes/admin/admin-field-groups.php:798
|
397 |
#, fuzzy
|
@@ -414,7 +410,7 @@ msgstr "استعراض المواقع والترقية"
|
|
414 |
|
415 |
#: includes/admin/install.php:187
|
416 |
msgid "Error validating request"
|
417 |
-
msgstr ""
|
418 |
|
419 |
#: includes/admin/install.php:210 includes/admin/views/install.php:105
|
420 |
msgid "No updates available."
|
@@ -427,7 +423,7 @@ msgstr "الإضافات"
|
|
427 |
|
428 |
#: includes/admin/settings-addons.php:87
|
429 |
msgid "<b>Error</b>. Could not load add-ons list"
|
430 |
-
msgstr "<b>خطأ.</b> لا يمكن تحميل قائمة
|
431 |
|
432 |
#: includes/admin/settings-info.php:50
|
433 |
msgid "Info"
|
@@ -445,7 +441,7 @@ msgstr "أدوات"
|
|
445 |
|
446 |
#: includes/admin/settings-tools.php:147 includes/admin/settings-tools.php:380
|
447 |
msgid "No field groups selected"
|
448 |
-
msgstr "
|
449 |
|
450 |
#: includes/admin/settings-tools.php:184
|
451 |
#: includes/fields/class-acf-field-file.php:174
|
@@ -454,7 +450,7 @@ msgstr "لم يتم إختيار ملف"
|
|
454 |
|
455 |
#: includes/admin/settings-tools.php:197
|
456 |
msgid "Error uploading file. Please try again"
|
457 |
-
msgstr "خطأ في تحميل الملف . حاول مرة
|
458 |
|
459 |
#: includes/admin/settings-tools.php:206
|
460 |
msgid "Incorrect file type"
|
@@ -465,15 +461,15 @@ msgid "Import file empty"
|
|
465 |
msgstr "استيراد ملف فارغ"
|
466 |
|
467 |
#: includes/admin/settings-tools.php:331
|
468 |
-
#,
|
469 |
msgid "Imported 1 field group"
|
470 |
msgid_plural "Imported %s field groups"
|
471 |
-
msgstr[0] "استيراد
|
472 |
-
msgstr[1] "استيراد
|
473 |
-
msgstr[2] "استيراد
|
474 |
-
msgstr[3] "استيراد
|
475 |
-
msgstr[4] "استيراد
|
476 |
-
msgstr[5] "استيراد
|
477 |
|
478 |
#: includes/admin/views/field-group-field-conditional-logic.php:28
|
479 |
msgid "Conditional Logic"
|
@@ -501,18 +497,18 @@ msgstr "و"
|
|
501 |
#: includes/admin/views/field-group-field-conditional-logic.php:156
|
502 |
#: includes/admin/views/field-group-locations.php:31
|
503 |
msgid "Add rule group"
|
504 |
-
msgstr "إضافة مجموعة"
|
505 |
|
506 |
#: includes/admin/views/field-group-field.php:41
|
507 |
#: pro/fields/class-acf-field-flexible-content.php:420
|
508 |
#: pro/fields/class-acf-field-repeater.php:358
|
509 |
msgid "Drag to reorder"
|
510 |
-
msgstr "اسحب لإعادة
|
511 |
|
512 |
#: includes/admin/views/field-group-field.php:45
|
513 |
#: includes/admin/views/field-group-field.php:48
|
514 |
msgid "Edit field"
|
515 |
-
msgstr "
|
516 |
|
517 |
#: includes/admin/views/field-group-field.php:48
|
518 |
#: includes/fields/class-acf-field-image.php:140
|
@@ -523,7 +519,7 @@ msgstr "تحرير"
|
|
523 |
|
524 |
#: includes/admin/views/field-group-field.php:49
|
525 |
msgid "Duplicate field"
|
526 |
-
msgstr "
|
527 |
|
528 |
#: includes/admin/views/field-group-field.php:50
|
529 |
msgid "Move field to another group"
|
@@ -535,7 +531,7 @@ msgstr "نقل"
|
|
535 |
|
536 |
#: includes/admin/views/field-group-field.php:51
|
537 |
msgid "Delete field"
|
538 |
-
msgstr "
|
539 |
|
540 |
#: includes/admin/views/field-group-field.php:51
|
541 |
#: pro/fields/class-acf-field-flexible-content.php:572
|
@@ -548,7 +544,7 @@ msgstr "تسمية الحقل"
|
|
548 |
|
549 |
#: includes/admin/views/field-group-field.php:68
|
550 |
msgid "This is the name which will appear on the EDIT page"
|
551 |
-
msgstr "هذا هو الاسم الذي سيظهر
|
552 |
|
553 |
#: includes/admin/views/field-group-field.php:78
|
554 |
msgid "Field Name"
|
@@ -556,7 +552,7 @@ msgstr "اسم الحقل"
|
|
556 |
|
557 |
#: includes/admin/views/field-group-field.php:79
|
558 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
559 |
-
msgstr "كلمة واحدة، لا
|
560 |
|
561 |
#: includes/admin/views/field-group-field.php:89
|
562 |
msgid "Field Type"
|
@@ -565,11 +561,11 @@ msgstr "نوع الحقل"
|
|
565 |
#: includes/admin/views/field-group-field.php:101
|
566 |
#: includes/fields/class-acf-field-tab.php:102
|
567 |
msgid "Instructions"
|
568 |
-
msgstr "
|
569 |
|
570 |
#: includes/admin/views/field-group-field.php:102
|
571 |
msgid "Instructions for authors. Shown when submitting data"
|
572 |
-
msgstr "تعليمات
|
573 |
|
574 |
#: includes/admin/views/field-group-field.php:111
|
575 |
msgid "Required?"
|
@@ -577,7 +573,7 @@ msgstr "مطلوب؟"
|
|
577 |
|
578 |
#: includes/admin/views/field-group-field.php:134
|
579 |
msgid "Wrapper Attributes"
|
580 |
-
msgstr "
|
581 |
|
582 |
#: includes/admin/views/field-group-field.php:140
|
583 |
msgid "width"
|
@@ -585,7 +581,7 @@ msgstr "العرض"
|
|
585 |
|
586 |
#: includes/admin/views/field-group-field.php:155
|
587 |
msgid "class"
|
588 |
-
msgstr "
|
589 |
|
590 |
#: includes/admin/views/field-group-field.php:168
|
591 |
msgid "id"
|
@@ -615,7 +611,7 @@ msgstr "الاسم"
|
|
615 |
|
616 |
#: includes/admin/views/field-group-fields.php:7
|
617 |
msgid "Key"
|
618 |
-
msgstr ""
|
619 |
|
620 |
#: includes/admin/views/field-group-fields.php:8
|
621 |
msgid "Type"
|
@@ -625,25 +621,22 @@ msgstr "النوع:"
|
|
625 |
msgid ""
|
626 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
627 |
"first field."
|
628 |
-
msgstr ""
|
629 |
-
"أية حقول. انقر فوق الزر <strong>+ إضافة حقل</strong> لإنشاء الحقل الأول "
|
630 |
-
"الخاص بك."
|
631 |
|
632 |
#: includes/admin/views/field-group-fields.php:31
|
633 |
msgid "+ Add Field"
|
634 |
-
msgstr "
|
635 |
|
636 |
#: includes/admin/views/field-group-locations.php:9
|
637 |
msgid "Rules"
|
638 |
-
msgstr "
|
639 |
|
640 |
#: includes/admin/views/field-group-locations.php:10
|
641 |
msgid ""
|
642 |
"Create a set of rules to determine which edit screens will use these "
|
643 |
"advanced custom fields"
|
644 |
msgstr ""
|
645 |
-
"إنشاء مجموعة من القواعد لتحديد شاشات
|
646 |
-
"المخصصة متقدمة"
|
647 |
|
648 |
#: includes/admin/views/field-group-options.php:23
|
649 |
msgid "Style"
|
@@ -651,19 +644,19 @@ msgstr "نمط"
|
|
651 |
|
652 |
#: includes/admin/views/field-group-options.php:30
|
653 |
msgid "Standard (WP metabox)"
|
654 |
-
msgstr "قياسي (metabox
|
655 |
|
656 |
#: includes/admin/views/field-group-options.php:31
|
657 |
msgid "Seamless (no metabox)"
|
658 |
-
msgstr "سلس (
|
659 |
|
660 |
#: includes/admin/views/field-group-options.php:38
|
661 |
msgid "Position"
|
662 |
-
msgstr "
|
663 |
|
664 |
#: includes/admin/views/field-group-options.php:45
|
665 |
msgid "High (after title)"
|
666 |
-
msgstr "
|
667 |
|
668 |
#: includes/admin/views/field-group-options.php:46
|
669 |
msgid "Normal (after content)"
|
@@ -684,20 +677,20 @@ msgstr "محاذاة إلى الأعلى"
|
|
684 |
|
685 |
#: includes/admin/views/field-group-options.php:63
|
686 |
#: includes/fields/class-acf-field-tab.php:117
|
687 |
-
msgid "Left
|
688 |
msgstr "محاذاة لليسار"
|
689 |
|
690 |
#: includes/admin/views/field-group-options.php:70
|
691 |
msgid "Instruction placement"
|
692 |
-
msgstr "
|
693 |
|
694 |
#: includes/admin/views/field-group-options.php:77
|
695 |
msgid "Below labels"
|
696 |
-
msgstr "أسفل
|
697 |
|
698 |
#: includes/admin/views/field-group-options.php:78
|
699 |
msgid "Below fields"
|
700 |
-
msgstr "
|
701 |
|
702 |
#: includes/admin/views/field-group-options.php:85
|
703 |
msgid "Order No."
|
@@ -705,11 +698,11 @@ msgstr "رقم الترتيب"
|
|
705 |
|
706 |
#: includes/admin/views/field-group-options.php:86
|
707 |
msgid "Field groups with a lower order will appear first"
|
708 |
-
msgstr "
|
709 |
|
710 |
#: includes/admin/views/field-group-options.php:97
|
711 |
msgid "Shown in field group list"
|
712 |
-
msgstr "
|
713 |
|
714 |
#: includes/admin/views/field-group-options.php:107
|
715 |
msgid "Hide on screen"
|
@@ -717,15 +710,15 @@ msgstr "إخفاء على الشاشة"
|
|
717 |
|
718 |
#: includes/admin/views/field-group-options.php:108
|
719 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen."
|
720 |
-
msgstr "<b>تحديد</b> العناصر <b
|
721 |
|
722 |
#: includes/admin/views/field-group-options.php:108
|
723 |
msgid ""
|
724 |
"If multiple field groups appear on an edit screen, the first field group's "
|
725 |
"options will be used (the one with the lowest order number)"
|
726 |
msgstr ""
|
727 |
-
"إذا
|
728 |
-
"
|
729 |
|
730 |
#: includes/admin/views/field-group-options.php:115
|
731 |
msgid "Permalink"
|
@@ -741,27 +734,27 @@ msgstr "مختصر الموضوع"
|
|
741 |
|
742 |
#: includes/admin/views/field-group-options.php:119
|
743 |
msgid "Discussion"
|
744 |
-
msgstr "
|
745 |
|
746 |
#: includes/admin/views/field-group-options.php:120
|
747 |
msgid "Comments"
|
748 |
-
msgstr "
|
749 |
|
750 |
#: includes/admin/views/field-group-options.php:121
|
751 |
msgid "Revisions"
|
752 |
-
msgstr "
|
753 |
|
754 |
#: includes/admin/views/field-group-options.php:122
|
755 |
msgid "Slug"
|
756 |
-
msgstr "
|
757 |
|
758 |
#: includes/admin/views/field-group-options.php:123
|
759 |
msgid "Author"
|
760 |
-
msgstr "
|
761 |
|
762 |
#: includes/admin/views/field-group-options.php:124
|
763 |
msgid "Format"
|
764 |
-
msgstr "
|
765 |
|
766 |
#: includes/admin/views/field-group-options.php:125
|
767 |
msgid "Page Attributes"
|
@@ -770,15 +763,15 @@ msgstr "سمات الصفحة"
|
|
770 |
#: includes/admin/views/field-group-options.php:126
|
771 |
#: includes/fields/class-acf-field-relationship.php:751
|
772 |
msgid "Featured Image"
|
773 |
-
msgstr "صورة
|
774 |
|
775 |
#: includes/admin/views/field-group-options.php:127
|
776 |
msgid "Categories"
|
777 |
-
msgstr "
|
778 |
|
779 |
#: includes/admin/views/field-group-options.php:128
|
780 |
msgid "Tags"
|
781 |
-
msgstr "
|
782 |
|
783 |
#: includes/admin/views/field-group-options.php:129
|
784 |
msgid "Send Trackbacks"
|
@@ -786,26 +779,25 @@ msgstr "إرسال Trackbacks"
|
|
786 |
|
787 |
#: includes/admin/views/html-location-group.php:3
|
788 |
msgid "Show this field group if"
|
789 |
-
msgstr "
|
790 |
|
791 |
#: includes/admin/views/install-network.php:4
|
792 |
-
#, fuzzy
|
793 |
msgid "Upgrade Sites"
|
794 |
-
msgstr "
|
795 |
|
796 |
#: includes/admin/views/install-network.php:9
|
797 |
#: includes/admin/views/install.php:3
|
798 |
msgid "Advanced Custom Fields Database Upgrade"
|
799 |
-
msgstr "ترقية قاعدة البيانات
|
800 |
|
801 |
#: includes/admin/views/install-network.php:11
|
802 |
-
#,
|
803 |
msgid ""
|
804 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
805 |
"and then click %s."
|
806 |
msgstr ""
|
807 |
-
"تتطلب المواقع التالية
|
808 |
-
"
|
809 |
|
810 |
#: includes/admin/views/install-network.php:20
|
811 |
#: includes/admin/views/install-network.php:28
|
@@ -819,14 +811,14 @@ msgstr "يتطلب الموقع ترقية قاعدة البيانات من %s
|
|
819 |
|
820 |
#: includes/admin/views/install-network.php:50
|
821 |
msgid "Site is up to date"
|
822 |
-
msgstr "الموقع
|
823 |
|
824 |
#: includes/admin/views/install-network.php:63
|
825 |
#, php-format
|
826 |
msgid ""
|
827 |
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
828 |
msgstr ""
|
829 |
-
"ترقية قاعدة
|
830 |
|
831 |
#: includes/admin/views/install-network.php:102
|
832 |
#: includes/admin/views/install-notice.php:42
|
@@ -834,12 +826,12 @@ msgid ""
|
|
834 |
"It is strongly recommended that you backup your database before proceeding. "
|
835 |
"Are you sure you wish to run the updater now?"
|
836 |
msgstr ""
|
837 |
-
"يوصى بشدة أن تقوم احتياطية من قاعدة البيانات قبل المتابعة. هل أنت
|
838 |
-
"ترغب في تشغيل
|
839 |
|
840 |
#: includes/admin/views/install-network.php:158
|
841 |
msgid "Upgrade complete"
|
842 |
-
msgstr "
|
843 |
|
844 |
#: includes/admin/views/install-network.php:162
|
845 |
#: includes/admin/views/install.php:9
|
@@ -850,12 +842,12 @@ msgstr "ترقية البيانات إلى الإصدار %s"
|
|
850 |
#: includes/admin/views/install-notice.php:8
|
851 |
#: pro/fields/class-acf-field-repeater.php:36
|
852 |
msgid "Repeater"
|
853 |
-
msgstr "
|
854 |
|
855 |
#: includes/admin/views/install-notice.php:9
|
856 |
#: pro/fields/class-acf-field-flexible-content.php:36
|
857 |
msgid "Flexible Content"
|
858 |
-
msgstr "المحتوى
|
859 |
|
860 |
#: includes/admin/views/install-notice.php:10
|
861 |
#: pro/fields/class-acf-field-gallery.php:36
|
@@ -869,19 +861,19 @@ msgstr "خيارات الصفحة"
|
|
869 |
|
870 |
#: includes/admin/views/install-notice.php:26
|
871 |
msgid "Database Upgrade Required"
|
872 |
-
msgstr "ترقية قاعدة البيانات
|
873 |
|
874 |
#: includes/admin/views/install-notice.php:28
|
875 |
#, php-format
|
876 |
msgid "Thank you for updating to %s v%s!"
|
877 |
-
msgstr "شكرا لك على
|
878 |
|
879 |
#: includes/admin/views/install-notice.php:28
|
880 |
msgid ""
|
881 |
"Before you start using the new awesome features, please update your database "
|
882 |
"to the newest version."
|
883 |
msgstr ""
|
884 |
-
"قبل البدء باستخدام
|
885 |
"إلى الإصدار الأحدث."
|
886 |
|
887 |
#: includes/admin/views/install-notice.php:31
|
@@ -889,40 +881,40 @@ msgstr ""
|
|
889 |
msgid ""
|
890 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
891 |
"latest version."
|
892 |
-
msgstr ""
|
893 |
|
894 |
#: includes/admin/views/install.php:7
|
895 |
msgid "Reading upgrade tasks..."
|
896 |
msgstr "قراءة مهام الترقية..."
|
897 |
|
898 |
#: includes/admin/views/install.php:11
|
899 |
-
#,
|
900 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
901 |
-
msgstr ""
|
902 |
-
"ترقية قاعدة البيانات كاملة. <a href=\"%s\">العودة إلى لوحة معلومات الشبكة</a>"
|
903 |
|
904 |
#: includes/admin/views/settings-addons.php:17
|
905 |
msgid "Download & Install"
|
906 |
-
msgstr "تحميل
|
907 |
|
908 |
#: includes/admin/views/settings-addons.php:36
|
909 |
msgid "Installed"
|
910 |
-
msgstr "
|
911 |
|
912 |
#: includes/admin/views/settings-info.php:3
|
913 |
msgid "Welcome to Advanced Custom Fields"
|
914 |
-
msgstr "مرحبا
|
915 |
|
916 |
#: includes/admin/views/settings-info.php:4
|
917 |
#, php-format
|
918 |
msgid ""
|
919 |
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
920 |
"hope you like it."
|
921 |
-
msgstr "
|
|
|
922 |
|
923 |
#: includes/admin/views/settings-info.php:17
|
924 |
msgid "A smoother custom field experience"
|
925 |
-
msgstr "تجربة أكثر سلاسة
|
926 |
|
927 |
#: includes/admin/views/settings-info.php:22
|
928 |
msgid "Improved Usability"
|
@@ -934,8 +926,8 @@ msgid ""
|
|
934 |
"across a number of field types including post object, page link, taxonomy "
|
935 |
"and select."
|
936 |
msgstr ""
|
937 |
-
"
|
938 |
-
"
|
939 |
|
940 |
#: includes/admin/views/settings-info.php:27
|
941 |
msgid "Improved Design"
|
@@ -1569,45 +1561,44 @@ msgid "Date Time Picker"
|
|
1569 |
msgstr "عنصر إختيار التاريخ:"
|
1570 |
|
1571 |
#: includes/fields/class-acf-field-date_time_picker.php:44
|
1572 |
-
#, fuzzy
|
1573 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1574 |
msgid "Choose Time"
|
1575 |
-
msgstr "
|
1576 |
|
1577 |
#: includes/fields/class-acf-field-date_time_picker.php:45
|
1578 |
msgctxt "Date Time Picker JS timeText"
|
1579 |
msgid "Time"
|
1580 |
-
msgstr ""
|
1581 |
|
1582 |
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1583 |
msgctxt "Date Time Picker JS hourText"
|
1584 |
msgid "Hour"
|
1585 |
-
msgstr ""
|
1586 |
|
1587 |
#: includes/fields/class-acf-field-date_time_picker.php:47
|
1588 |
msgctxt "Date Time Picker JS minuteText"
|
1589 |
msgid "Minute"
|
1590 |
-
msgstr ""
|
1591 |
|
1592 |
#: includes/fields/class-acf-field-date_time_picker.php:48
|
1593 |
msgctxt "Date Time Picker JS secondText"
|
1594 |
msgid "Second"
|
1595 |
-
msgstr ""
|
1596 |
|
1597 |
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1598 |
msgctxt "Date Time Picker JS millisecText"
|
1599 |
msgid "Millisecond"
|
1600 |
-
msgstr ""
|
1601 |
|
1602 |
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1603 |
msgctxt "Date Time Picker JS microsecText"
|
1604 |
msgid "Microsecond"
|
1605 |
-
msgstr ""
|
1606 |
|
1607 |
#: includes/fields/class-acf-field-date_time_picker.php:51
|
1608 |
msgctxt "Date Time Picker JS timezoneText"
|
1609 |
msgid "Time Zone"
|
1610 |
-
msgstr ""
|
1611 |
|
1612 |
#: includes/fields/class-acf-field-date_time_picker.php:52
|
1613 |
#, fuzzy
|
@@ -1616,13 +1607,11 @@ msgid "Now"
|
|
1616 |
msgstr "المجال %s يمكن الآن إيجاده في %s حقل المجموعة"
|
1617 |
|
1618 |
#: includes/fields/class-acf-field-date_time_picker.php:53
|
1619 |
-
#, fuzzy
|
1620 |
msgctxt "Date Time Picker JS closeText"
|
1621 |
msgid "Done"
|
1622 |
msgstr "تم"
|
1623 |
|
1624 |
#: includes/fields/class-acf-field-date_time_picker.php:54
|
1625 |
-
#, fuzzy
|
1626 |
msgctxt "Date Time Picker JS selectText"
|
1627 |
msgid "Select"
|
1628 |
msgstr "اختار"
|
@@ -1630,22 +1619,22 @@ msgstr "اختار"
|
|
1630 |
#: includes/fields/class-acf-field-date_time_picker.php:56
|
1631 |
msgctxt "Date Time Picker JS amText"
|
1632 |
msgid "AM"
|
1633 |
-
msgstr ""
|
1634 |
|
1635 |
#: includes/fields/class-acf-field-date_time_picker.php:57
|
1636 |
msgctxt "Date Time Picker JS amTextShort"
|
1637 |
msgid "A"
|
1638 |
-
msgstr ""
|
1639 |
|
1640 |
#: includes/fields/class-acf-field-date_time_picker.php:60
|
1641 |
msgctxt "Date Time Picker JS pmText"
|
1642 |
msgid "PM"
|
1643 |
-
msgstr ""
|
1644 |
|
1645 |
#: includes/fields/class-acf-field-date_time_picker.php:61
|
1646 |
msgctxt "Date Time Picker JS pmTextShort"
|
1647 |
msgid "P"
|
1648 |
-
msgstr ""
|
1649 |
|
1650 |
#: includes/fields/class-acf-field-email.php:36
|
1651 |
msgid "Email"
|
@@ -1659,7 +1648,7 @@ msgstr "البريد الإلكتروني"
|
|
1659 |
#: includes/fields/class-acf-field-url.php:115
|
1660 |
#: includes/fields/class-acf-field-wysiwyg.php:437
|
1661 |
msgid "Appears when creating a new post"
|
1662 |
-
msgstr "يظهر عند إنشاء
|
1663 |
|
1664 |
#: includes/fields/class-acf-field-email.php:142
|
1665 |
#: includes/fields/class-acf-field-number.php:154
|
@@ -1856,7 +1845,7 @@ msgstr "تكبير"
|
|
1856 |
|
1857 |
#: includes/fields/class-acf-field-google-map.php:191
|
1858 |
msgid "Set the initial zoom level"
|
1859 |
-
msgstr "ضبط مستوى التكبير
|
1860 |
|
1861 |
#: includes/fields/class-acf-field-google-map.php:200
|
1862 |
#: includes/fields/class-acf-field-image.php:257
|
@@ -1869,12 +1858,11 @@ msgstr "الإرتفاع"
|
|
1869 |
|
1870 |
#: includes/fields/class-acf-field-google-map.php:201
|
1871 |
msgid "Customise the map height"
|
1872 |
-
msgstr "تخصيص ارتفاع
|
1873 |
|
1874 |
#: includes/fields/class-acf-field-group.php:36
|
1875 |
-
#, fuzzy
|
1876 |
msgid "Group"
|
1877 |
-
msgstr "
|
1878 |
|
1879 |
#: includes/fields/class-acf-field-group.php:469
|
1880 |
#: pro/fields/class-acf-field-repeater.php:453
|
@@ -1884,7 +1872,7 @@ msgstr "الحقول الفرعية"
|
|
1884 |
#: includes/fields/class-acf-field-group.php:486
|
1885 |
#: pro/fields/class-acf-field-clone.php:890
|
1886 |
msgid "Specify the style used to render the selected fields"
|
1887 |
-
msgstr ""
|
1888 |
|
1889 |
#: includes/fields/class-acf-field-group.php:491
|
1890 |
#: pro/fields/class-acf-field-clone.php:895
|
@@ -1980,18 +1968,16 @@ msgid "Width"
|
|
1980 |
msgstr "عرض"
|
1981 |
|
1982 |
#: includes/fields/class-acf-field-link.php:36
|
1983 |
-
#, fuzzy
|
1984 |
msgid "Link"
|
1985 |
-
msgstr "رابط
|
1986 |
|
1987 |
#: includes/fields/class-acf-field-link.php:146
|
1988 |
-
#, fuzzy
|
1989 |
msgid "Select Link"
|
1990 |
-
msgstr "إختر
|
1991 |
|
1992 |
#: includes/fields/class-acf-field-link.php:151
|
1993 |
msgid "Opens in a new window/tab"
|
1994 |
-
msgstr ""
|
1995 |
|
1996 |
#: includes/fields/class-acf-field-link.php:186
|
1997 |
#, fuzzy
|
@@ -2133,7 +2119,7 @@ msgstr "إلغاء السماح؟"
|
|
2133 |
|
2134 |
#: includes/fields/class-acf-field-page_link.php:538
|
2135 |
msgid "Allow Archives URLs"
|
2136 |
-
msgstr ""
|
2137 |
|
2138 |
#: includes/fields/class-acf-field-page_link.php:548
|
2139 |
#: includes/fields/class-acf-field-post_object.php:437
|
@@ -2234,11 +2220,11 @@ msgstr "سيتم عرض العناصر المحددة في كل نتيجة"
|
|
2234 |
|
2235 |
#: includes/fields/class-acf-field-relationship.php:758
|
2236 |
msgid "Minimum posts"
|
2237 |
-
msgstr "
|
2238 |
|
2239 |
#: includes/fields/class-acf-field-relationship.php:767
|
2240 |
msgid "Maximum posts"
|
2241 |
-
msgstr "
|
2242 |
|
2243 |
#: includes/fields/class-acf-field-relationship.php:871
|
2244 |
#: pro/fields/class-acf-field-gallery.php:815
|
@@ -2254,7 +2240,6 @@ msgstr[5] "%s يتطلب على الأقل تحديد %s "
|
|
2254 |
|
2255 |
#: includes/fields/class-acf-field-select.php:36
|
2256 |
#: includes/fields/class-acf-field-taxonomy.php:791
|
2257 |
-
#, fuzzy
|
2258 |
msgctxt "noun"
|
2259 |
msgid "Select"
|
2260 |
msgstr "اختار"
|
@@ -2262,16 +2247,15 @@ msgstr "اختار"
|
|
2262 |
#: includes/fields/class-acf-field-select.php:49
|
2263 |
msgctxt "Select2 JS matches_1"
|
2264 |
msgid "One result is available, press enter to select it."
|
2265 |
-
msgstr ""
|
2266 |
|
2267 |
#: includes/fields/class-acf-field-select.php:50
|
2268 |
#, php-format
|
2269 |
msgctxt "Select2 JS matches_n"
|
2270 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2271 |
-
msgstr ""
|
2272 |
|
2273 |
#: includes/fields/class-acf-field-select.php:51
|
2274 |
-
#, fuzzy
|
2275 |
msgctxt "Select2 JS matches_0"
|
2276 |
msgid "No matches found"
|
2277 |
msgstr "لم يتم العثور على مطابقات"
|
@@ -2279,40 +2263,40 @@ msgstr "لم يتم العثور على مطابقات"
|
|
2279 |
#: includes/fields/class-acf-field-select.php:52
|
2280 |
msgctxt "Select2 JS input_too_short_1"
|
2281 |
msgid "Please enter 1 or more characters"
|
2282 |
-
msgstr ""
|
2283 |
|
2284 |
#: includes/fields/class-acf-field-select.php:53
|
2285 |
#, php-format
|
2286 |
msgctxt "Select2 JS input_too_short_n"
|
2287 |
msgid "Please enter %d or more characters"
|
2288 |
-
msgstr ""
|
2289 |
|
2290 |
#: includes/fields/class-acf-field-select.php:54
|
2291 |
msgctxt "Select2 JS input_too_long_1"
|
2292 |
msgid "Please delete 1 character"
|
2293 |
-
msgstr ""
|
2294 |
|
2295 |
#: includes/fields/class-acf-field-select.php:55
|
2296 |
#, php-format
|
2297 |
msgctxt "Select2 JS input_too_long_n"
|
2298 |
msgid "Please delete %d characters"
|
2299 |
-
msgstr ""
|
2300 |
|
2301 |
#: includes/fields/class-acf-field-select.php:56
|
2302 |
msgctxt "Select2 JS selection_too_long_1"
|
2303 |
msgid "You can only select 1 item"
|
2304 |
-
msgstr ""
|
2305 |
|
2306 |
#: includes/fields/class-acf-field-select.php:57
|
2307 |
#, php-format
|
2308 |
msgctxt "Select2 JS selection_too_long_n"
|
2309 |
msgid "You can only select %d items"
|
2310 |
-
msgstr ""
|
2311 |
|
2312 |
#: includes/fields/class-acf-field-select.php:58
|
2313 |
msgctxt "Select2 JS load_more"
|
2314 |
msgid "Loading more results…"
|
2315 |
-
msgstr ""
|
2316 |
|
2317 |
#: includes/fields/class-acf-field-select.php:59
|
2318 |
#, fuzzy
|
@@ -2321,13 +2305,11 @@ msgid "Searching…"
|
|
2321 |
msgstr "بحث الحقول"
|
2322 |
|
2323 |
#: includes/fields/class-acf-field-select.php:60
|
2324 |
-
#, fuzzy
|
2325 |
msgctxt "Select2 JS load_fail"
|
2326 |
msgid "Loading failed"
|
2327 |
-
msgstr "
|
2328 |
|
2329 |
#: includes/fields/class-acf-field-select.php:270 includes/media.php:54
|
2330 |
-
#, fuzzy
|
2331 |
msgctxt "verb"
|
2332 |
msgid "Select"
|
2333 |
msgstr "اختار"
|
@@ -2335,20 +2317,19 @@ msgstr "اختار"
|
|
2335 |
#: includes/fields/class-acf-field-select.php:504
|
2336 |
#: includes/fields/class-acf-field-true_false.php:159
|
2337 |
msgid "Stylised UI"
|
2338 |
-
msgstr "واجهة
|
2339 |
|
2340 |
#: includes/fields/class-acf-field-select.php:514
|
2341 |
msgid "Use AJAX to lazy load choices?"
|
2342 |
-
msgstr "استخدام AJAX لخيارات
|
2343 |
|
2344 |
#: includes/fields/class-acf-field-select.php:525
|
2345 |
-
#, fuzzy
|
2346 |
msgid "Specify the value returned"
|
2347 |
-
msgstr "حدد القيمة التي
|
2348 |
|
2349 |
#: includes/fields/class-acf-field-separator.php:36
|
2350 |
msgid "Separator"
|
2351 |
-
msgstr ""
|
2352 |
|
2353 |
#: includes/fields/class-acf-field-tab.php:36
|
2354 |
msgid "Tab"
|
@@ -2470,12 +2451,12 @@ msgstr "المستخدم غير قادر على إضافة %s جديد"
|
|
2470 |
#: includes/fields/class-acf-field-taxonomy.php:917
|
2471 |
#, php-format
|
2472 |
msgid "%s already exists"
|
2473 |
-
msgstr "%s
|
2474 |
|
2475 |
#: includes/fields/class-acf-field-taxonomy.php:958
|
2476 |
#, php-format
|
2477 |
msgid "%s added"
|
2478 |
-
msgstr "
|
2479 |
|
2480 |
#: includes/fields/class-acf-field-taxonomy.php:1003
|
2481 |
msgid "Add"
|
@@ -2488,7 +2469,7 @@ msgstr "نص"
|
|
2488 |
#: includes/fields/class-acf-field-text.php:178
|
2489 |
#: includes/fields/class-acf-field-textarea.php:157
|
2490 |
msgid "Character Limit"
|
2491 |
-
msgstr "
|
2492 |
|
2493 |
#: includes/fields/class-acf-field-text.php:179
|
2494 |
#: includes/fields/class-acf-field-textarea.php:158
|
@@ -2497,7 +2478,7 @@ msgstr "اتركه فارغا لبدون حد."
|
|
2497 |
|
2498 |
#: includes/fields/class-acf-field-textarea.php:36
|
2499 |
msgid "Text Area"
|
2500 |
-
msgstr "
|
2501 |
|
2502 |
#: includes/fields/class-acf-field-textarea.php:166
|
2503 |
msgid "Rows"
|
@@ -2505,7 +2486,7 @@ msgstr "صفوف"
|
|
2505 |
|
2506 |
#: includes/fields/class-acf-field-textarea.php:167
|
2507 |
msgid "Sets the textarea height"
|
2508 |
-
msgstr "تعيين ارتفاع
|
2509 |
|
2510 |
#: includes/fields/class-acf-field-time_picker.php:36
|
2511 |
#, fuzzy
|
@@ -2524,25 +2505,23 @@ msgstr "نعم"
|
|
2524 |
|
2525 |
#: includes/fields/class-acf-field-true_false.php:142
|
2526 |
msgid "Displays text alongside the checkbox"
|
2527 |
-
msgstr ""
|
2528 |
|
2529 |
#: includes/fields/class-acf-field-true_false.php:170
|
2530 |
-
#, fuzzy
|
2531 |
msgid "On Text"
|
2532 |
-
msgstr "
|
2533 |
|
2534 |
#: includes/fields/class-acf-field-true_false.php:171
|
2535 |
msgid "Text shown when active"
|
2536 |
-
msgstr ""
|
2537 |
|
2538 |
#: includes/fields/class-acf-field-true_false.php:180
|
2539 |
-
#, fuzzy
|
2540 |
msgid "Off Text"
|
2541 |
-
msgstr "
|
2542 |
|
2543 |
#: includes/fields/class-acf-field-true_false.php:181
|
2544 |
msgid "Text shown when inactive"
|
2545 |
-
msgstr ""
|
2546 |
|
2547 |
#: includes/fields/class-acf-field-url.php:36
|
2548 |
msgid "Url"
|
@@ -2562,7 +2541,7 @@ msgstr "فرز حسب:"
|
|
2562 |
|
2563 |
#: includes/fields/class-acf-field-user.php:416
|
2564 |
msgid "All user roles"
|
2565 |
-
msgstr "
|
2566 |
|
2567 |
#: includes/fields/class-acf-field-wysiwyg.php:36
|
2568 |
msgid "Wysiwyg Editor"
|
@@ -2579,11 +2558,11 @@ msgstr "نص"
|
|
2579 |
|
2580 |
#: includes/fields/class-acf-field-wysiwyg.php:392
|
2581 |
msgid "Click to initialize TinyMCE"
|
2582 |
-
msgstr ""
|
2583 |
|
2584 |
#: includes/fields/class-acf-field-wysiwyg.php:445
|
2585 |
msgid "Tabs"
|
2586 |
-
msgstr "
|
2587 |
|
2588 |
#: includes/fields/class-acf-field-wysiwyg.php:450
|
2589 |
msgid "Visual & Text"
|
@@ -2591,15 +2570,15 @@ msgstr "نص و مرئي"
|
|
2591 |
|
2592 |
#: includes/fields/class-acf-field-wysiwyg.php:451
|
2593 |
msgid "Visual Only"
|
2594 |
-
msgstr "
|
2595 |
|
2596 |
#: includes/fields/class-acf-field-wysiwyg.php:452
|
2597 |
msgid "Text Only"
|
2598 |
-
msgstr "
|
2599 |
|
2600 |
#: includes/fields/class-acf-field-wysiwyg.php:459
|
2601 |
msgid "Toolbar"
|
2602 |
-
msgstr "
|
2603 |
|
2604 |
#: includes/fields/class-acf-field-wysiwyg.php:469
|
2605 |
msgid "Show Media Upload Buttons?"
|
@@ -2607,21 +2586,20 @@ msgstr "وتظهر وسائل الإعلام تحميل الأزرار؟"
|
|
2607 |
|
2608 |
#: includes/fields/class-acf-field-wysiwyg.php:479
|
2609 |
msgid "Delay initialization?"
|
2610 |
-
msgstr ""
|
2611 |
|
2612 |
#: includes/fields/class-acf-field-wysiwyg.php:480
|
2613 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2614 |
-
msgstr ""
|
2615 |
|
2616 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2617 |
#: pro/admin/admin-options-page.php:304
|
2618 |
msgid "Edit field group"
|
2619 |
-
msgstr "تحرير مجموعة
|
2620 |
|
2621 |
#: includes/forms/form-front.php:55
|
2622 |
-
#, fuzzy
|
2623 |
msgid "Validate Email"
|
2624 |
-
msgstr "
|
2625 |
|
2626 |
#: includes/forms/form-front.php:103
|
2627 |
#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81
|
@@ -2642,11 +2620,11 @@ msgstr "توسيع التفاصيل"
|
|
2642 |
|
2643 |
#: includes/input.php:259
|
2644 |
msgid "Collapse Details"
|
2645 |
-
msgstr "
|
2646 |
|
2647 |
#: includes/input.php:260
|
2648 |
msgid "Validation successful"
|
2649 |
-
msgstr "التحقق
|
2650 |
|
2651 |
#: includes/input.php:261 includes/validation.php:285
|
2652 |
#: includes/validation.php:296
|
@@ -2668,7 +2646,7 @@ msgstr "محظور"
|
|
2668 |
|
2669 |
#: includes/input.php:268
|
2670 |
msgid "Cancel"
|
2671 |
-
msgstr ""
|
2672 |
|
2673 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
2674 |
msgid "Post"
|
@@ -2693,15 +2671,15 @@ msgstr ""
|
|
2693 |
|
2694 |
#: includes/locations/class-acf-location-comment.php:27
|
2695 |
msgid "Comment"
|
2696 |
-
msgstr "
|
2697 |
|
2698 |
#: includes/locations/class-acf-location-current-user-role.php:27
|
2699 |
msgid "Current User Role"
|
2700 |
-
msgstr "المستخدم الحالي"
|
2701 |
|
2702 |
#: includes/locations/class-acf-location-current-user-role.php:114
|
2703 |
msgid "Super Admin"
|
2704 |
-
msgstr "
|
2705 |
|
2706 |
#: includes/locations/class-acf-location-current-user.php:27
|
2707 |
msgid "Current User"
|
@@ -2721,20 +2699,19 @@ msgstr "عرض النهاية الخلفية"
|
|
2721 |
|
2722 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2723 |
msgid "Menu Item"
|
2724 |
-
msgstr ""
|
2725 |
|
2726 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2727 |
msgid "Menu"
|
2728 |
-
msgstr ""
|
2729 |
|
2730 |
#: includes/locations/class-acf-location-nav-menu.php:113
|
2731 |
-
#, fuzzy
|
2732 |
msgid "Menu Locations"
|
2733 |
-
msgstr "
|
2734 |
|
2735 |
#: includes/locations/class-acf-location-nav-menu.php:123
|
2736 |
msgid "Menus"
|
2737 |
-
msgstr ""
|
2738 |
|
2739 |
#: includes/locations/class-acf-location-page-parent.php:27
|
2740 |
msgid "Page Parent"
|
@@ -2775,7 +2752,7 @@ msgstr "صفحة فرعية (لديها أصل)"
|
|
2775 |
|
2776 |
#: includes/locations/class-acf-location-post-category.php:27
|
2777 |
msgid "Post Category"
|
2778 |
-
msgstr "
|
2779 |
|
2780 |
#: includes/locations/class-acf-location-post-format.php:27
|
2781 |
msgid "Post Format"
|
@@ -2787,7 +2764,7 @@ msgstr "حالة التدوينة"
|
|
2787 |
|
2788 |
#: includes/locations/class-acf-location-post-taxonomy.php:27
|
2789 |
msgid "Post Taxonomy"
|
2790 |
-
msgstr "تصنيف
|
2791 |
|
2792 |
#: includes/locations/class-acf-location-post-template.php:29
|
2793 |
#, fuzzy
|
@@ -2796,11 +2773,11 @@ msgstr "قالب الصفحة:"
|
|
2796 |
|
2797 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
2798 |
msgid "Taxonomy Term"
|
2799 |
-
msgstr "
|
2800 |
|
2801 |
#: includes/locations/class-acf-location-user-form.php:27
|
2802 |
msgid "User Form"
|
2803 |
-
msgstr "
|
2804 |
|
2805 |
#: includes/locations/class-acf-location-user-form.php:92
|
2806 |
msgid "Add / Edit"
|
@@ -2816,16 +2793,14 @@ msgstr "رتبة المستخدم"
|
|
2816 |
|
2817 |
#: includes/locations/class-acf-location-widget.php:27
|
2818 |
msgid "Widget"
|
2819 |
-
msgstr "
|
2820 |
|
2821 |
#: includes/media.php:55
|
2822 |
-
#, fuzzy
|
2823 |
msgctxt "verb"
|
2824 |
msgid "Edit"
|
2825 |
msgstr "تحرير"
|
2826 |
|
2827 |
#: includes/media.php:56
|
2828 |
-
#, fuzzy
|
2829 |
msgctxt "verb"
|
2830 |
msgid "Update"
|
2831 |
msgstr "تحديث"
|
@@ -2838,7 +2813,7 @@ msgstr "%s القيمة مطلوبة"
|
|
2838 |
#. Plugin Name of the plugin/theme
|
2839 |
#: pro/acf-pro.php:28
|
2840 |
msgid "Advanced Custom Fields PRO"
|
2841 |
-
msgstr "
|
2842 |
|
2843 |
#: pro/admin/admin-options-page.php:196
|
2844 |
msgid "Publish"
|
@@ -2850,8 +2825,8 @@ msgid ""
|
|
2850 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
2851 |
"Custom Field Group</a>"
|
2852 |
msgstr ""
|
2853 |
-
"يتم العثور على أية \"مجموعات
|
2854 |
-
"\"
|
2855 |
|
2856 |
#: pro/admin/admin-settings-updates.php:78
|
2857 |
msgid "<b>Error</b>. Could not connect to update server"
|
@@ -2864,16 +2839,15 @@ msgstr "تحديثات"
|
|
2864 |
|
2865 |
#: pro/admin/views/html-settings-updates.php:11
|
2866 |
msgid "Deactivate License"
|
2867 |
-
msgstr "تعطيل
|
2868 |
|
2869 |
#: pro/admin/views/html-settings-updates.php:11
|
2870 |
msgid "Activate License"
|
2871 |
msgstr "تفعيل الترخيص"
|
2872 |
|
2873 |
#: pro/admin/views/html-settings-updates.php:21
|
2874 |
-
#, fuzzy
|
2875 |
msgid "License Information"
|
2876 |
-
msgstr "معلومات
|
2877 |
|
2878 |
#: pro/admin/views/html-settings-updates.php:24
|
2879 |
#, fuzzy, php-format
|
@@ -2904,7 +2878,7 @@ msgstr "آخر نسخة"
|
|
2904 |
|
2905 |
#: pro/admin/views/html-settings-updates.php:88
|
2906 |
msgid "Update Available"
|
2907 |
-
msgstr "
|
2908 |
|
2909 |
#: pro/admin/views/html-settings-updates.php:96
|
2910 |
msgid "Update Plugin"
|
@@ -2925,56 +2899,53 @@ msgstr "إشعار الترقية"
|
|
2925 |
#: pro/fields/class-acf-field-clone.php:36
|
2926 |
msgctxt "noun"
|
2927 |
msgid "Clone"
|
2928 |
-
msgstr ""
|
2929 |
|
2930 |
#: pro/fields/class-acf-field-clone.php:858
|
2931 |
msgid "Select one or more fields you wish to clone"
|
2932 |
-
msgstr ""
|
2933 |
|
2934 |
#: pro/fields/class-acf-field-clone.php:875
|
2935 |
-
#, fuzzy
|
2936 |
msgid "Display"
|
2937 |
-
msgstr "
|
2938 |
|
2939 |
#: pro/fields/class-acf-field-clone.php:876
|
2940 |
msgid "Specify the style used to render the clone field"
|
2941 |
-
msgstr ""
|
2942 |
|
2943 |
#: pro/fields/class-acf-field-clone.php:881
|
2944 |
msgid "Group (displays selected fields in a group within this field)"
|
2945 |
-
msgstr ""
|
2946 |
|
2947 |
#: pro/fields/class-acf-field-clone.php:882
|
2948 |
msgid "Seamless (replaces this field with selected fields)"
|
2949 |
-
msgstr ""
|
2950 |
|
2951 |
#: pro/fields/class-acf-field-clone.php:903
|
2952 |
-
#,
|
2953 |
msgid "Labels will be displayed as %s"
|
2954 |
-
msgstr "سيتم عرض
|
2955 |
|
2956 |
#: pro/fields/class-acf-field-clone.php:906
|
2957 |
-
#, fuzzy
|
2958 |
msgid "Prefix Field Labels"
|
2959 |
-
msgstr "تسمية
|
2960 |
|
2961 |
#: pro/fields/class-acf-field-clone.php:917
|
2962 |
#, php-format
|
2963 |
msgid "Values will be saved as %s"
|
2964 |
-
msgstr ""
|
2965 |
|
2966 |
#: pro/fields/class-acf-field-clone.php:920
|
2967 |
msgid "Prefix Field Names"
|
2968 |
msgstr "بادئة أسماء الحقول"
|
2969 |
|
2970 |
#: pro/fields/class-acf-field-clone.php:1038
|
2971 |
-
#, fuzzy
|
2972 |
msgid "Unknown field"
|
2973 |
-
msgstr "
|
2974 |
|
2975 |
#: pro/fields/class-acf-field-clone.php:1077
|
2976 |
msgid "Unknown field group"
|
2977 |
-
msgstr "مجموعة
|
2978 |
|
2979 |
#: pro/fields/class-acf-field-clone.php:1081
|
2980 |
#, php-format
|
@@ -3156,7 +3127,7 @@ msgstr "إلحاق بالنهاية"
|
|
3156 |
|
3157 |
#: pro/fields/class-acf-field-gallery.php:663
|
3158 |
msgid "Prepend to the beginning"
|
3159 |
-
msgstr ""
|
3160 |
|
3161 |
#: pro/fields/class-acf-field-repeater.php:47
|
3162 |
msgid "Minimum rows reached ({min} rows)"
|
@@ -3214,12 +3185,10 @@ msgstr ""
|
|
3214 |
"\">تفاصيل & التسعير</a>"
|
3215 |
|
3216 |
#. Plugin URI of the plugin/theme
|
3217 |
-
#, fuzzy
|
3218 |
msgid "https://www.advancedcustomfields.com/"
|
3219 |
msgstr "http://www.advancedcustomfields.com/"
|
3220 |
|
3221 |
#. Author of the plugin/theme
|
3222 |
-
#, fuzzy
|
3223 |
msgid "Elliot Condon"
|
3224 |
msgstr "إليوت كوندون"
|
3225 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro\n"
|
4 |
"POT-Creation-Date: 2017-06-27 15:37+1000\n"
|
5 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
6 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
7 |
"Language-Team: Adil el hallaoui <servicewb11@gmail.com>\n"
|
8 |
"Language: ar\n"
|
27 |
|
28 |
#: acf.php:355 includes/admin/admin.php:117
|
29 |
msgid "Field Groups"
|
30 |
+
msgstr "مجموعات الحقول"
|
31 |
|
32 |
#: acf.php:356
|
33 |
msgid "Field Group"
|
34 |
+
msgstr "مجموعة الحقول"
|
35 |
|
36 |
#: acf.php:357 acf.php:389 includes/admin/admin.php:118
|
37 |
#: pro/fields/class-acf-field-flexible-content.php:574
|
40 |
|
41 |
#: acf.php:358
|
42 |
msgid "Add New Field Group"
|
43 |
+
msgstr "إضافة مجموعة حقول جديدة"
|
44 |
|
45 |
#: acf.php:359
|
46 |
msgid "Edit Field Group"
|
47 |
+
msgstr "تحرير مجموعة الحقول"
|
48 |
|
49 |
#: acf.php:360
|
50 |
msgid "New Field Group"
|
51 |
+
msgstr "مجموعة حقول جديدة"
|
52 |
|
53 |
#: acf.php:361
|
54 |
msgid "View Field Group"
|
55 |
+
msgstr "عرض مجموعة الحقول"
|
56 |
|
57 |
#: acf.php:362
|
58 |
msgid "Search Field Groups"
|
59 |
+
msgstr "بحث في مجموعات الحقول"
|
60 |
|
61 |
#: acf.php:363
|
62 |
msgid "No Field Groups found"
|
63 |
+
msgstr "لم يتم العثور على نتائج"
|
64 |
|
65 |
#: acf.php:364
|
66 |
msgid "No Field Groups found in Trash"
|
67 |
+
msgstr "لا توجد مجموعات حقول في سلة المهملات"
|
68 |
|
69 |
#: acf.php:387 includes/admin/admin-field-group.php:182
|
70 |
#: includes/admin/admin-field-group.php:275
|
83 |
|
84 |
#: acf.php:391
|
85 |
msgid "Edit Field"
|
86 |
+
msgstr "تحرير الحقل"
|
87 |
|
88 |
#: acf.php:392 includes/admin/views/field-group-fields.php:41
|
89 |
#: includes/admin/views/settings-info.php:105
|
108 |
|
109 |
#: acf.php:435 includes/admin/admin-field-group.php:390
|
110 |
#: includes/admin/admin-field-groups.php:567
|
|
|
111 |
msgid "Inactive"
|
112 |
+
msgstr "غير نشط"
|
113 |
|
114 |
#: acf.php:440
|
115 |
+
#, php-format
|
116 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
117 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
118 |
+
msgstr[0] "غير نشطة <span class=\"count\">(%s)</span>"
|
119 |
+
msgstr[1] "غير نشط <span class=\"count\">(%s)</span>"
|
120 |
+
msgstr[2] "غير نشطة <span class=\"count\">(%s)</span>"
|
121 |
+
msgstr[3] "غير نشطة <span class=\"count\">(%s)</span>"
|
122 |
+
msgstr[4] "غير نشطة <span class=\"count\">(%s)</span>"
|
123 |
+
msgstr[5] "غير نشطة <span class=\"count\">(%s)</span>"
|
124 |
|
125 |
#: includes/admin/admin-field-group.php:68
|
126 |
#: includes/admin/admin-field-group.php:69
|
127 |
#: includes/admin/admin-field-group.php:71
|
128 |
msgid "Field group updated."
|
129 |
+
msgstr "تم تحديث مجموعة الحقول"
|
130 |
|
131 |
#: includes/admin/admin-field-group.php:70
|
132 |
msgid "Field group deleted."
|
133 |
+
msgstr "تم حذف مجموعة الحقول."
|
134 |
|
135 |
#: includes/admin/admin-field-group.php:73
|
136 |
msgid "Field group published."
|
137 |
+
msgstr "تم نشر مجموعة الحقول."
|
138 |
|
139 |
#: includes/admin/admin-field-group.php:74
|
140 |
msgid "Field group saved."
|
141 |
+
msgstr "تم حفظ مجموعة الحقول."
|
142 |
|
143 |
#: includes/admin/admin-field-group.php:75
|
144 |
msgid "Field group submitted."
|
145 |
+
msgstr "تم تقديم مجموعة الحقول."
|
146 |
|
147 |
#: includes/admin/admin-field-group.php:76
|
148 |
msgid "Field group scheduled for."
|
149 |
+
msgstr "تم جدولة مجموعة الحقول لـ."
|
150 |
|
151 |
#: includes/admin/admin-field-group.php:77
|
152 |
msgid "Field group draft updated."
|
153 |
+
msgstr "تم تحديث مسودة مجموعة الحقول."
|
154 |
|
155 |
#: includes/admin/admin-field-group.php:183
|
156 |
msgid "Location"
|
158 |
|
159 |
#: includes/admin/admin-field-group.php:184
|
160 |
msgid "Settings"
|
161 |
+
msgstr "الإعدادات"
|
162 |
|
163 |
#: includes/admin/admin-field-group.php:269
|
164 |
msgid "Move to trash. Are you sure?"
|
170 |
|
171 |
#: includes/admin/admin-field-group.php:271
|
172 |
msgid "No toggle fields available"
|
173 |
+
msgstr "تبديل الحقول غير متوفر"
|
174 |
|
175 |
#: includes/admin/admin-field-group.php:272
|
176 |
msgid "Field group title is required"
|
177 |
+
msgstr "عنوان حقل المجموعة مطلوب"
|
178 |
|
179 |
#: includes/admin/admin-field-group.php:273
|
180 |
#: includes/api/api-field-group.php:732
|
200 |
|
201 |
#: includes/admin/admin-field-group.php:278
|
202 |
msgid "Move Custom Field"
|
203 |
+
msgstr "نقل الحقل المخصص"
|
204 |
|
205 |
#: includes/admin/admin-field-group.php:279
|
206 |
msgid "This field cannot be moved until its changes have been saved"
|
207 |
+
msgstr "لا يمكن نقل هذا الحقل حتى يتم حفظ تغييراته"
|
208 |
|
209 |
#: includes/admin/admin-field-group.php:280
|
210 |
msgid "Null"
|
216 |
|
217 |
#: includes/admin/admin-field-group.php:282
|
218 |
msgid "The string \"field_\" may not be used at the start of a field name"
|
219 |
+
msgstr "لا يجوز استخدام المقطع “field_” في بداية اسم الحقل"
|
220 |
|
221 |
#: includes/admin/admin-field-group.php:360
|
222 |
msgid "Field Keys"
|
229 |
|
230 |
#: includes/admin/admin-field-group.php:801
|
231 |
msgid "Move Complete."
|
232 |
+
msgstr "تم النقل."
|
233 |
|
234 |
#: includes/admin/admin-field-group.php:802
|
235 |
#, php-format
|
236 |
msgid "The %s field can now be found in the %s field group"
|
237 |
+
msgstr "الحقل %s يمكن الآن إيجاده في مجموعة الحقول %s"
|
238 |
|
239 |
#: includes/admin/admin-field-group.php:803
|
240 |
msgid "Close Window"
|
252 |
#, php-format
|
253 |
msgid "Active <span class=\"count\">(%s)</span>"
|
254 |
msgid_plural "Active <span class=\"count\">(%s)</span>"
|
255 |
+
msgstr[0] "نشط <span class=\"count\">(%s)</span>"
|
256 |
+
msgstr[1] "نشط <span class=\"count\">(%s)</span>"
|
257 |
+
msgstr[2] "نشطة <span class=\"count\">(%s)</span>"
|
258 |
+
msgstr[3] "نشطة <span class=\"count\">(%s)</span>"
|
259 |
+
msgstr[4] "نشطة <span class=\"count\">(%s)</span>"
|
260 |
+
msgstr[5] "نشطة <span class=\"count\">(%s)</span>"
|
261 |
|
262 |
#: includes/admin/admin-field-groups.php:142
|
263 |
#, php-format
|
264 |
msgid "Field group duplicated. %s"
|
265 |
+
msgstr "تم تكرار مجموعة الحقول %s."
|
266 |
|
267 |
#: includes/admin/admin-field-groups.php:146
|
268 |
#, php-format
|
278 |
#: includes/admin/admin-field-groups.php:227
|
279 |
#, php-format
|
280 |
msgid "Field group synchronised. %s"
|
281 |
+
msgstr "تمت مزامنة مجموعة الحقول %s."
|
282 |
|
283 |
#: includes/admin/admin-field-groups.php:231
|
284 |
#, php-format
|
322 |
#: includes/admin/settings-info.php:76
|
323 |
#: pro/admin/views/html-settings-updates.php:111
|
324 |
msgid "Changelog"
|
325 |
+
msgstr "سجل التغييرات"
|
326 |
|
327 |
#: includes/admin/admin-field-groups.php:614
|
328 |
#, php-format
|
329 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
330 |
+
msgstr "اطلع على الجديد في <a href=\"%s\">النسخة %s</a>."
|
331 |
|
332 |
#: includes/admin/admin-field-groups.php:617
|
333 |
msgid "Resources"
|
335 |
|
336 |
#: includes/admin/admin-field-groups.php:619
|
337 |
msgid "Website"
|
338 |
+
msgstr "الموقع الإليكتروني"
|
339 |
|
340 |
#: includes/admin/admin-field-groups.php:620
|
|
|
341 |
msgid "Documentation"
|
342 |
+
msgstr "التوثيق"
|
343 |
|
344 |
#: includes/admin/admin-field-groups.php:621
|
|
|
345 |
msgid "Support"
|
346 |
+
msgstr "الدعم"
|
347 |
|
348 |
#: includes/admin/admin-field-groups.php:623
|
|
|
349 |
msgid "Pro"
|
350 |
+
msgstr "احترافي"
|
351 |
|
352 |
#: includes/admin/admin-field-groups.php:628
|
353 |
#, fuzzy, php-format
|
356 |
|
357 |
#: includes/admin/admin-field-groups.php:668
|
358 |
msgid "Duplicate this item"
|
359 |
+
msgstr "تكرار هذا العنصر"
|
360 |
|
361 |
#: includes/admin/admin-field-groups.php:668
|
362 |
#: includes/admin/admin-field-groups.php:684
|
378 |
|
379 |
#: includes/admin/admin-field-groups.php:768
|
380 |
msgid "Synchronise field group"
|
381 |
+
msgstr "مزامنة مجموعة الحقول"
|
382 |
|
383 |
#: includes/admin/admin-field-groups.php:768
|
384 |
#: includes/admin/admin-field-groups.php:798
|
387 |
|
388 |
#: includes/admin/admin-field-groups.php:780
|
389 |
msgid "Apply"
|
390 |
+
msgstr "تطبيق"
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:798
|
393 |
#, fuzzy
|
410 |
|
411 |
#: includes/admin/install.php:187
|
412 |
msgid "Error validating request"
|
413 |
+
msgstr "حدث خطأ أثناء التحقق من صحة الطلب"
|
414 |
|
415 |
#: includes/admin/install.php:210 includes/admin/views/install.php:105
|
416 |
msgid "No updates available."
|
423 |
|
424 |
#: includes/admin/settings-addons.php:87
|
425 |
msgid "<b>Error</b>. Could not load add-ons list"
|
426 |
+
msgstr "<b>خطأ.</b> لا يمكن تحميل قائمة الإضافات"
|
427 |
|
428 |
#: includes/admin/settings-info.php:50
|
429 |
msgid "Info"
|
441 |
|
442 |
#: includes/admin/settings-tools.php:147 includes/admin/settings-tools.php:380
|
443 |
msgid "No field groups selected"
|
444 |
+
msgstr "لم يتم تحديد مجموعات الحقول"
|
445 |
|
446 |
#: includes/admin/settings-tools.php:184
|
447 |
#: includes/fields/class-acf-field-file.php:174
|
450 |
|
451 |
#: includes/admin/settings-tools.php:197
|
452 |
msgid "Error uploading file. Please try again"
|
453 |
+
msgstr "خطأ في تحميل الملف . حاول مرة أخرى"
|
454 |
|
455 |
#: includes/admin/settings-tools.php:206
|
456 |
msgid "Incorrect file type"
|
461 |
msgstr "استيراد ملف فارغ"
|
462 |
|
463 |
#: includes/admin/settings-tools.php:331
|
464 |
+
#, php-format
|
465 |
msgid "Imported 1 field group"
|
466 |
msgid_plural "Imported %s field groups"
|
467 |
+
msgstr[0] "تم استيراد مجموعة حقول واحدة"
|
468 |
+
msgstr[1] "تم استيراد مجموعة حقول واحدة"
|
469 |
+
msgstr[2] "تم استيراد مجموعتي حقول"
|
470 |
+
msgstr[3] "تم استيراد %s مجموعات حقول"
|
471 |
+
msgstr[4] "تم استيراد %s مجموعات حقول"
|
472 |
+
msgstr[5] "تم استيراد %s مجموعات حقول"
|
473 |
|
474 |
#: includes/admin/views/field-group-field-conditional-logic.php:28
|
475 |
msgid "Conditional Logic"
|
497 |
#: includes/admin/views/field-group-field-conditional-logic.php:156
|
498 |
#: includes/admin/views/field-group-locations.php:31
|
499 |
msgid "Add rule group"
|
500 |
+
msgstr "إضافة مجموعة قاعدة"
|
501 |
|
502 |
#: includes/admin/views/field-group-field.php:41
|
503 |
#: pro/fields/class-acf-field-flexible-content.php:420
|
504 |
#: pro/fields/class-acf-field-repeater.php:358
|
505 |
msgid "Drag to reorder"
|
506 |
+
msgstr "اسحب لإعادة الترتيب"
|
507 |
|
508 |
#: includes/admin/views/field-group-field.php:45
|
509 |
#: includes/admin/views/field-group-field.php:48
|
510 |
msgid "Edit field"
|
511 |
+
msgstr "تحرير الحقل"
|
512 |
|
513 |
#: includes/admin/views/field-group-field.php:48
|
514 |
#: includes/fields/class-acf-field-image.php:140
|
519 |
|
520 |
#: includes/admin/views/field-group-field.php:49
|
521 |
msgid "Duplicate field"
|
522 |
+
msgstr "تكرار الحقل"
|
523 |
|
524 |
#: includes/admin/views/field-group-field.php:50
|
525 |
msgid "Move field to another group"
|
531 |
|
532 |
#: includes/admin/views/field-group-field.php:51
|
533 |
msgid "Delete field"
|
534 |
+
msgstr "حذف الحقل"
|
535 |
|
536 |
#: includes/admin/views/field-group-field.php:51
|
537 |
#: pro/fields/class-acf-field-flexible-content.php:572
|
544 |
|
545 |
#: includes/admin/views/field-group-field.php:68
|
546 |
msgid "This is the name which will appear on the EDIT page"
|
547 |
+
msgstr "هذا هو الاسم الذي سيظهر في صفحة التحرير"
|
548 |
|
549 |
#: includes/admin/views/field-group-field.php:78
|
550 |
msgid "Field Name"
|
552 |
|
553 |
#: includes/admin/views/field-group-field.php:79
|
554 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
555 |
+
msgstr "كلمة واحدة، لا مسافات. الشرطات السفلية والشرطات مسموح بها"
|
556 |
|
557 |
#: includes/admin/views/field-group-field.php:89
|
558 |
msgid "Field Type"
|
561 |
#: includes/admin/views/field-group-field.php:101
|
562 |
#: includes/fields/class-acf-field-tab.php:102
|
563 |
msgid "Instructions"
|
564 |
+
msgstr "التعليمات"
|
565 |
|
566 |
#: includes/admin/views/field-group-field.php:102
|
567 |
msgid "Instructions for authors. Shown when submitting data"
|
568 |
+
msgstr "تعليمات للكتاب. سيظهر عند إرسال البيانات"
|
569 |
|
570 |
#: includes/admin/views/field-group-field.php:111
|
571 |
msgid "Required?"
|
573 |
|
574 |
#: includes/admin/views/field-group-field.php:134
|
575 |
msgid "Wrapper Attributes"
|
576 |
+
msgstr ""
|
577 |
|
578 |
#: includes/admin/views/field-group-field.php:140
|
579 |
msgid "width"
|
581 |
|
582 |
#: includes/admin/views/field-group-field.php:155
|
583 |
msgid "class"
|
584 |
+
msgstr ""
|
585 |
|
586 |
#: includes/admin/views/field-group-field.php:168
|
587 |
msgid "id"
|
611 |
|
612 |
#: includes/admin/views/field-group-fields.php:7
|
613 |
msgid "Key"
|
614 |
+
msgstr "المفتاح"
|
615 |
|
616 |
#: includes/admin/views/field-group-fields.php:8
|
617 |
msgid "Type"
|
621 |
msgid ""
|
622 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
623 |
"first field."
|
624 |
+
msgstr "لا توجد حقول. انقر على زر <strong>+ إضافة حقل</strong> لإنشاء أول حقل."
|
|
|
|
|
625 |
|
626 |
#: includes/admin/views/field-group-fields.php:31
|
627 |
msgid "+ Add Field"
|
628 |
+
msgstr "+ إضافة حقل"
|
629 |
|
630 |
#: includes/admin/views/field-group-locations.php:9
|
631 |
msgid "Rules"
|
632 |
+
msgstr "القواعد"
|
633 |
|
634 |
#: includes/admin/views/field-group-locations.php:10
|
635 |
msgid ""
|
636 |
"Create a set of rules to determine which edit screens will use these "
|
637 |
"advanced custom fields"
|
638 |
msgstr ""
|
639 |
+
"إنشاء مجموعة من القواعد لتحديد أي شاشات التحرير ستستخدم هذه الحقول المخصصة"
|
|
|
640 |
|
641 |
#: includes/admin/views/field-group-options.php:23
|
642 |
msgid "Style"
|
644 |
|
645 |
#: includes/admin/views/field-group-options.php:30
|
646 |
msgid "Standard (WP metabox)"
|
647 |
+
msgstr "قياسي (WP metabox)"
|
648 |
|
649 |
#: includes/admin/views/field-group-options.php:31
|
650 |
msgid "Seamless (no metabox)"
|
651 |
+
msgstr "سلس (بدون metabox)"
|
652 |
|
653 |
#: includes/admin/views/field-group-options.php:38
|
654 |
msgid "Position"
|
655 |
+
msgstr "الموضع"
|
656 |
|
657 |
#: includes/admin/views/field-group-options.php:45
|
658 |
msgid "High (after title)"
|
659 |
+
msgstr "عالي (بعد العنوان)"
|
660 |
|
661 |
#: includes/admin/views/field-group-options.php:46
|
662 |
msgid "Normal (after content)"
|
677 |
|
678 |
#: includes/admin/views/field-group-options.php:63
|
679 |
#: includes/fields/class-acf-field-tab.php:117
|
680 |
+
msgid "Left aligned"
|
681 |
msgstr "محاذاة لليسار"
|
682 |
|
683 |
#: includes/admin/views/field-group-options.php:70
|
684 |
msgid "Instruction placement"
|
685 |
+
msgstr "تعيين مكان التعليمات"
|
686 |
|
687 |
#: includes/admin/views/field-group-options.php:77
|
688 |
msgid "Below labels"
|
689 |
+
msgstr "أسفل التسميات"
|
690 |
|
691 |
#: includes/admin/views/field-group-options.php:78
|
692 |
msgid "Below fields"
|
693 |
+
msgstr "بعد الحقول"
|
694 |
|
695 |
#: includes/admin/views/field-group-options.php:85
|
696 |
msgid "Order No."
|
698 |
|
699 |
#: includes/admin/views/field-group-options.php:86
|
700 |
msgid "Field groups with a lower order will appear first"
|
701 |
+
msgstr "مجموعات الحقول ذات الترتيب الأدنى ستظهر أولا"
|
702 |
|
703 |
#: includes/admin/views/field-group-options.php:97
|
704 |
msgid "Shown in field group list"
|
705 |
+
msgstr "تظهر في قائمة مجموعة الحقول"
|
706 |
|
707 |
#: includes/admin/views/field-group-options.php:107
|
708 |
msgid "Hide on screen"
|
710 |
|
711 |
#: includes/admin/views/field-group-options.php:108
|
712 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen."
|
713 |
+
msgstr "<b>تحديد</b> العناصر <b>لإخفائها</b> من شاشة التحرير."
|
714 |
|
715 |
#: includes/admin/views/field-group-options.php:108
|
716 |
msgid ""
|
717 |
"If multiple field groups appear on an edit screen, the first field group's "
|
718 |
"options will be used (the one with the lowest order number)"
|
719 |
msgstr ""
|
720 |
+
"إذا ظهرت مجموعات حقول متعددة في شاشة التعديل، فسيتم استخدام خيارات المجموعة "
|
721 |
+
"الأولى (تلك التي تحتوي على أقل رقم ترتيب)"
|
722 |
|
723 |
#: includes/admin/views/field-group-options.php:115
|
724 |
msgid "Permalink"
|
734 |
|
735 |
#: includes/admin/views/field-group-options.php:119
|
736 |
msgid "Discussion"
|
737 |
+
msgstr "النقاش"
|
738 |
|
739 |
#: includes/admin/views/field-group-options.php:120
|
740 |
msgid "Comments"
|
741 |
+
msgstr "التعليقات"
|
742 |
|
743 |
#: includes/admin/views/field-group-options.php:121
|
744 |
msgid "Revisions"
|
745 |
+
msgstr "المراجعة"
|
746 |
|
747 |
#: includes/admin/views/field-group-options.php:122
|
748 |
msgid "Slug"
|
749 |
+
msgstr "الاسم اللطيف"
|
750 |
|
751 |
#: includes/admin/views/field-group-options.php:123
|
752 |
msgid "Author"
|
753 |
+
msgstr "الكاتب"
|
754 |
|
755 |
#: includes/admin/views/field-group-options.php:124
|
756 |
msgid "Format"
|
757 |
+
msgstr "الشكل"
|
758 |
|
759 |
#: includes/admin/views/field-group-options.php:125
|
760 |
msgid "Page Attributes"
|
763 |
#: includes/admin/views/field-group-options.php:126
|
764 |
#: includes/fields/class-acf-field-relationship.php:751
|
765 |
msgid "Featured Image"
|
766 |
+
msgstr "صورة بارزة"
|
767 |
|
768 |
#: includes/admin/views/field-group-options.php:127
|
769 |
msgid "Categories"
|
770 |
+
msgstr "التصنيفات"
|
771 |
|
772 |
#: includes/admin/views/field-group-options.php:128
|
773 |
msgid "Tags"
|
774 |
+
msgstr "الوسوم"
|
775 |
|
776 |
#: includes/admin/views/field-group-options.php:129
|
777 |
msgid "Send Trackbacks"
|
779 |
|
780 |
#: includes/admin/views/html-location-group.php:3
|
781 |
msgid "Show this field group if"
|
782 |
+
msgstr "إظهار هذه المجموعة إذا"
|
783 |
|
784 |
#: includes/admin/views/install-network.php:4
|
|
|
785 |
msgid "Upgrade Sites"
|
786 |
+
msgstr "ترقية المواقع"
|
787 |
|
788 |
#: includes/admin/views/install-network.php:9
|
789 |
#: includes/admin/views/install.php:3
|
790 |
msgid "Advanced Custom Fields Database Upgrade"
|
791 |
+
msgstr "الحقول المخصصة المتقدمة: ترقية قاعدة البيانات"
|
792 |
|
793 |
#: includes/admin/views/install-network.php:11
|
794 |
+
#, php-format
|
795 |
msgid ""
|
796 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
797 |
"and then click %s."
|
798 |
msgstr ""
|
799 |
+
"تتطلب المواقع التالية ترقية قاعدة البيانات. تحقق من تلك التي تحتاج إلى "
|
800 |
+
"ترقيتها ومن ثم انقر على %s."
|
801 |
|
802 |
#: includes/admin/views/install-network.php:20
|
803 |
#: includes/admin/views/install-network.php:28
|
811 |
|
812 |
#: includes/admin/views/install-network.php:50
|
813 |
msgid "Site is up to date"
|
814 |
+
msgstr "الموقع محدث"
|
815 |
|
816 |
#: includes/admin/views/install-network.php:63
|
817 |
#, php-format
|
818 |
msgid ""
|
819 |
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
820 |
msgstr ""
|
821 |
+
"تمت ترقية قاعدة البيانات. <a href=\"%s\">العودة إلى لوحة معلومات الشبكة</a>"
|
822 |
|
823 |
#: includes/admin/views/install-network.php:102
|
824 |
#: includes/admin/views/install-notice.php:42
|
826 |
"It is strongly recommended that you backup your database before proceeding. "
|
827 |
"Are you sure you wish to run the updater now?"
|
828 |
msgstr ""
|
829 |
+
"يوصى بشدة أن تقوم بأخذ نسخة احتياطية من قاعدة البيانات قبل المتابعة. هل أنت "
|
830 |
+
"متأكد أنك ترغب في تشغيل التحديث الآن؟"
|
831 |
|
832 |
#: includes/admin/views/install-network.php:158
|
833 |
msgid "Upgrade complete"
|
834 |
+
msgstr "اكتملت عملية الترقية"
|
835 |
|
836 |
#: includes/admin/views/install-network.php:162
|
837 |
#: includes/admin/views/install.php:9
|
842 |
#: includes/admin/views/install-notice.php:8
|
843 |
#: pro/fields/class-acf-field-repeater.php:36
|
844 |
msgid "Repeater"
|
845 |
+
msgstr "المكرر"
|
846 |
|
847 |
#: includes/admin/views/install-notice.php:9
|
848 |
#: pro/fields/class-acf-field-flexible-content.php:36
|
849 |
msgid "Flexible Content"
|
850 |
+
msgstr "المحتوى المرن"
|
851 |
|
852 |
#: includes/admin/views/install-notice.php:10
|
853 |
#: pro/fields/class-acf-field-gallery.php:36
|
861 |
|
862 |
#: includes/admin/views/install-notice.php:26
|
863 |
msgid "Database Upgrade Required"
|
864 |
+
msgstr "ترقية قاعدة البيانات مطلوبة"
|
865 |
|
866 |
#: includes/admin/views/install-notice.php:28
|
867 |
#, php-format
|
868 |
msgid "Thank you for updating to %s v%s!"
|
869 |
+
msgstr "شكرا لك على تحديث %s إلى الإصدار %s!"
|
870 |
|
871 |
#: includes/admin/views/install-notice.php:28
|
872 |
msgid ""
|
873 |
"Before you start using the new awesome features, please update your database "
|
874 |
"to the newest version."
|
875 |
msgstr ""
|
876 |
+
"قبل البدء باستخدام الميزات الجديدة، الرجاء تحديث قاعدة البيانات الخاصة بك "
|
877 |
"إلى الإصدار الأحدث."
|
878 |
|
879 |
#: includes/admin/views/install-notice.php:31
|
881 |
msgid ""
|
882 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
883 |
"latest version."
|
884 |
+
msgstr "يرجى أيضا التأكد من تحديث أي إضافات مدفوعة (%s) أولا إلى أحدث إصدار."
|
885 |
|
886 |
#: includes/admin/views/install.php:7
|
887 |
msgid "Reading upgrade tasks..."
|
888 |
msgstr "قراءة مهام الترقية..."
|
889 |
|
890 |
#: includes/admin/views/install.php:11
|
891 |
+
#, php-format
|
892 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
893 |
+
msgstr "تمت ترقية قاعدة البيانات. <a href=\"%s\">اطلع على الجديد</a>"
|
|
|
894 |
|
895 |
#: includes/admin/views/settings-addons.php:17
|
896 |
msgid "Download & Install"
|
897 |
+
msgstr "تحميل وتثبيت"
|
898 |
|
899 |
#: includes/admin/views/settings-addons.php:36
|
900 |
msgid "Installed"
|
901 |
+
msgstr "تم التثبيت"
|
902 |
|
903 |
#: includes/admin/views/settings-info.php:3
|
904 |
msgid "Welcome to Advanced Custom Fields"
|
905 |
+
msgstr "مرحبا بك في الحقول المخصصة المتقدمة"
|
906 |
|
907 |
#: includes/admin/views/settings-info.php:4
|
908 |
#, php-format
|
909 |
msgid ""
|
910 |
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
911 |
"hope you like it."
|
912 |
+
msgstr ""
|
913 |
+
"شكرا لك للتحديث! ACF %s أكبر وأفضل من أي وقت مضى. نحن نأمل لك أنت تكون كذلك."
|
914 |
|
915 |
#: includes/admin/views/settings-info.php:17
|
916 |
msgid "A smoother custom field experience"
|
917 |
+
msgstr "تجربة حقول مخصصة أكثر سلاسة"
|
918 |
|
919 |
#: includes/admin/views/settings-info.php:22
|
920 |
msgid "Improved Usability"
|
926 |
"across a number of field types including post object, page link, taxonomy "
|
927 |
"and select."
|
928 |
msgstr ""
|
929 |
+
"دمج مكتبة Select2 حسن قابلية الاستخدام والسرعة عبر عدد من أنواع الحقول بما "
|
930 |
+
"في ذلك موضوع المنشور، رابط الصفحة، التصنيف والتحديد"
|
931 |
|
932 |
#: includes/admin/views/settings-info.php:27
|
933 |
msgid "Improved Design"
|
1561 |
msgstr "عنصر إختيار التاريخ:"
|
1562 |
|
1563 |
#: includes/fields/class-acf-field-date_time_picker.php:44
|
|
|
1564 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1565 |
msgid "Choose Time"
|
1566 |
+
msgstr "اختر الوقت"
|
1567 |
|
1568 |
#: includes/fields/class-acf-field-date_time_picker.php:45
|
1569 |
msgctxt "Date Time Picker JS timeText"
|
1570 |
msgid "Time"
|
1571 |
+
msgstr "الوقت"
|
1572 |
|
1573 |
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1574 |
msgctxt "Date Time Picker JS hourText"
|
1575 |
msgid "Hour"
|
1576 |
+
msgstr "الساعة"
|
1577 |
|
1578 |
#: includes/fields/class-acf-field-date_time_picker.php:47
|
1579 |
msgctxt "Date Time Picker JS minuteText"
|
1580 |
msgid "Minute"
|
1581 |
+
msgstr "الدقيقة"
|
1582 |
|
1583 |
#: includes/fields/class-acf-field-date_time_picker.php:48
|
1584 |
msgctxt "Date Time Picker JS secondText"
|
1585 |
msgid "Second"
|
1586 |
+
msgstr "الثانية"
|
1587 |
|
1588 |
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1589 |
msgctxt "Date Time Picker JS millisecText"
|
1590 |
msgid "Millisecond"
|
1591 |
+
msgstr "ميلي ثانية"
|
1592 |
|
1593 |
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1594 |
msgctxt "Date Time Picker JS microsecText"
|
1595 |
msgid "Microsecond"
|
1596 |
+
msgstr "ميكرو ثانية"
|
1597 |
|
1598 |
#: includes/fields/class-acf-field-date_time_picker.php:51
|
1599 |
msgctxt "Date Time Picker JS timezoneText"
|
1600 |
msgid "Time Zone"
|
1601 |
+
msgstr "المنطقة الزمنية"
|
1602 |
|
1603 |
#: includes/fields/class-acf-field-date_time_picker.php:52
|
1604 |
#, fuzzy
|
1607 |
msgstr "المجال %s يمكن الآن إيجاده في %s حقل المجموعة"
|
1608 |
|
1609 |
#: includes/fields/class-acf-field-date_time_picker.php:53
|
|
|
1610 |
msgctxt "Date Time Picker JS closeText"
|
1611 |
msgid "Done"
|
1612 |
msgstr "تم"
|
1613 |
|
1614 |
#: includes/fields/class-acf-field-date_time_picker.php:54
|
|
|
1615 |
msgctxt "Date Time Picker JS selectText"
|
1616 |
msgid "Select"
|
1617 |
msgstr "اختار"
|
1619 |
#: includes/fields/class-acf-field-date_time_picker.php:56
|
1620 |
msgctxt "Date Time Picker JS amText"
|
1621 |
msgid "AM"
|
1622 |
+
msgstr "صباحا"
|
1623 |
|
1624 |
#: includes/fields/class-acf-field-date_time_picker.php:57
|
1625 |
msgctxt "Date Time Picker JS amTextShort"
|
1626 |
msgid "A"
|
1627 |
+
msgstr "ص"
|
1628 |
|
1629 |
#: includes/fields/class-acf-field-date_time_picker.php:60
|
1630 |
msgctxt "Date Time Picker JS pmText"
|
1631 |
msgid "PM"
|
1632 |
+
msgstr "مساء"
|
1633 |
|
1634 |
#: includes/fields/class-acf-field-date_time_picker.php:61
|
1635 |
msgctxt "Date Time Picker JS pmTextShort"
|
1636 |
msgid "P"
|
1637 |
+
msgstr "م"
|
1638 |
|
1639 |
#: includes/fields/class-acf-field-email.php:36
|
1640 |
msgid "Email"
|
1648 |
#: includes/fields/class-acf-field-url.php:115
|
1649 |
#: includes/fields/class-acf-field-wysiwyg.php:437
|
1650 |
msgid "Appears when creating a new post"
|
1651 |
+
msgstr "يظهر عند إنشاء مقالة جديدة"
|
1652 |
|
1653 |
#: includes/fields/class-acf-field-email.php:142
|
1654 |
#: includes/fields/class-acf-field-number.php:154
|
1845 |
|
1846 |
#: includes/fields/class-acf-field-google-map.php:191
|
1847 |
msgid "Set the initial zoom level"
|
1848 |
+
msgstr "ضبط مستوى التكبير"
|
1849 |
|
1850 |
#: includes/fields/class-acf-field-google-map.php:200
|
1851 |
#: includes/fields/class-acf-field-image.php:257
|
1858 |
|
1859 |
#: includes/fields/class-acf-field-google-map.php:201
|
1860 |
msgid "Customise the map height"
|
1861 |
+
msgstr "تخصيص ارتفاع الخريطة"
|
1862 |
|
1863 |
#: includes/fields/class-acf-field-group.php:36
|
|
|
1864 |
msgid "Group"
|
1865 |
+
msgstr "مجموعة"
|
1866 |
|
1867 |
#: includes/fields/class-acf-field-group.php:469
|
1868 |
#: pro/fields/class-acf-field-repeater.php:453
|
1872 |
#: includes/fields/class-acf-field-group.php:486
|
1873 |
#: pro/fields/class-acf-field-clone.php:890
|
1874 |
msgid "Specify the style used to render the selected fields"
|
1875 |
+
msgstr "حدد النمط المستخدم لعرض الحقول المحددة"
|
1876 |
|
1877 |
#: includes/fields/class-acf-field-group.php:491
|
1878 |
#: pro/fields/class-acf-field-clone.php:895
|
1968 |
msgstr "عرض"
|
1969 |
|
1970 |
#: includes/fields/class-acf-field-link.php:36
|
|
|
1971 |
msgid "Link"
|
1972 |
+
msgstr "رابط"
|
1973 |
|
1974 |
#: includes/fields/class-acf-field-link.php:146
|
|
|
1975 |
msgid "Select Link"
|
1976 |
+
msgstr "إختر رابط"
|
1977 |
|
1978 |
#: includes/fields/class-acf-field-link.php:151
|
1979 |
msgid "Opens in a new window/tab"
|
1980 |
+
msgstr "فتح في نافذة / علامة تبويب جديدة"
|
1981 |
|
1982 |
#: includes/fields/class-acf-field-link.php:186
|
1983 |
#, fuzzy
|
2119 |
|
2120 |
#: includes/fields/class-acf-field-page_link.php:538
|
2121 |
msgid "Allow Archives URLs"
|
2122 |
+
msgstr "السماح بالعناوين المؤرشفة"
|
2123 |
|
2124 |
#: includes/fields/class-acf-field-page_link.php:548
|
2125 |
#: includes/fields/class-acf-field-post_object.php:437
|
2220 |
|
2221 |
#: includes/fields/class-acf-field-relationship.php:758
|
2222 |
msgid "Minimum posts"
|
2223 |
+
msgstr "الحد الأدنى للمقالات"
|
2224 |
|
2225 |
#: includes/fields/class-acf-field-relationship.php:767
|
2226 |
msgid "Maximum posts"
|
2227 |
+
msgstr "الحد الأقصى للمقالات"
|
2228 |
|
2229 |
#: includes/fields/class-acf-field-relationship.php:871
|
2230 |
#: pro/fields/class-acf-field-gallery.php:815
|
2240 |
|
2241 |
#: includes/fields/class-acf-field-select.php:36
|
2242 |
#: includes/fields/class-acf-field-taxonomy.php:791
|
|
|
2243 |
msgctxt "noun"
|
2244 |
msgid "Select"
|
2245 |
msgstr "اختار"
|
2247 |
#: includes/fields/class-acf-field-select.php:49
|
2248 |
msgctxt "Select2 JS matches_1"
|
2249 |
msgid "One result is available, press enter to select it."
|
2250 |
+
msgstr "نتيجة واحدة متاحة، اضغط على زر الإدخال لتحديدها."
|
2251 |
|
2252 |
#: includes/fields/class-acf-field-select.php:50
|
2253 |
#, php-format
|
2254 |
msgctxt "Select2 JS matches_n"
|
2255 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2256 |
+
msgstr "%d نتيجة متاحة، استخدم مفاتيح الأسهم للتنقل."
|
2257 |
|
2258 |
#: includes/fields/class-acf-field-select.php:51
|
|
|
2259 |
msgctxt "Select2 JS matches_0"
|
2260 |
msgid "No matches found"
|
2261 |
msgstr "لم يتم العثور على مطابقات"
|
2263 |
#: includes/fields/class-acf-field-select.php:52
|
2264 |
msgctxt "Select2 JS input_too_short_1"
|
2265 |
msgid "Please enter 1 or more characters"
|
2266 |
+
msgstr "الرجاء إدخال حرف واحد أو أكثر"
|
2267 |
|
2268 |
#: includes/fields/class-acf-field-select.php:53
|
2269 |
#, php-format
|
2270 |
msgctxt "Select2 JS input_too_short_n"
|
2271 |
msgid "Please enter %d or more characters"
|
2272 |
+
msgstr "الرجاء إدخال %d حرف أو أكثر"
|
2273 |
|
2274 |
#: includes/fields/class-acf-field-select.php:54
|
2275 |
msgctxt "Select2 JS input_too_long_1"
|
2276 |
msgid "Please delete 1 character"
|
2277 |
+
msgstr "الرجاء حذف حرف واحد"
|
2278 |
|
2279 |
#: includes/fields/class-acf-field-select.php:55
|
2280 |
#, php-format
|
2281 |
msgctxt "Select2 JS input_too_long_n"
|
2282 |
msgid "Please delete %d characters"
|
2283 |
+
msgstr "الرجاء حذف %d حرف"
|
2284 |
|
2285 |
#: includes/fields/class-acf-field-select.php:56
|
2286 |
msgctxt "Select2 JS selection_too_long_1"
|
2287 |
msgid "You can only select 1 item"
|
2288 |
+
msgstr "يمكنك تحديد عنصر واحد فقط"
|
2289 |
|
2290 |
#: includes/fields/class-acf-field-select.php:57
|
2291 |
#, php-format
|
2292 |
msgctxt "Select2 JS selection_too_long_n"
|
2293 |
msgid "You can only select %d items"
|
2294 |
+
msgstr "يمكنك تحديد %d عنصر فقط"
|
2295 |
|
2296 |
#: includes/fields/class-acf-field-select.php:58
|
2297 |
msgctxt "Select2 JS load_more"
|
2298 |
msgid "Loading more results…"
|
2299 |
+
msgstr "تحميل نتائج أكثر…"
|
2300 |
|
2301 |
#: includes/fields/class-acf-field-select.php:59
|
2302 |
#, fuzzy
|
2305 |
msgstr "بحث الحقول"
|
2306 |
|
2307 |
#: includes/fields/class-acf-field-select.php:60
|
|
|
2308 |
msgctxt "Select2 JS load_fail"
|
2309 |
msgid "Loading failed"
|
2310 |
+
msgstr "عملية التحميل فشلت"
|
2311 |
|
2312 |
#: includes/fields/class-acf-field-select.php:270 includes/media.php:54
|
|
|
2313 |
msgctxt "verb"
|
2314 |
msgid "Select"
|
2315 |
msgstr "اختار"
|
2317 |
#: includes/fields/class-acf-field-select.php:504
|
2318 |
#: includes/fields/class-acf-field-true_false.php:159
|
2319 |
msgid "Stylised UI"
|
2320 |
+
msgstr "واجهة المستخدم الأنيقة"
|
2321 |
|
2322 |
#: includes/fields/class-acf-field-select.php:514
|
2323 |
msgid "Use AJAX to lazy load choices?"
|
2324 |
+
msgstr "استخدام AJAX لخيارات التحميل الكسول؟"
|
2325 |
|
2326 |
#: includes/fields/class-acf-field-select.php:525
|
|
|
2327 |
msgid "Specify the value returned"
|
2328 |
+
msgstr "حدد القيمة التي سيتم إرجاعها"
|
2329 |
|
2330 |
#: includes/fields/class-acf-field-separator.php:36
|
2331 |
msgid "Separator"
|
2332 |
+
msgstr "فاصل"
|
2333 |
|
2334 |
#: includes/fields/class-acf-field-tab.php:36
|
2335 |
msgid "Tab"
|
2451 |
#: includes/fields/class-acf-field-taxonomy.php:917
|
2452 |
#, php-format
|
2453 |
msgid "%s already exists"
|
2454 |
+
msgstr "%s موجود بالفعل"
|
2455 |
|
2456 |
#: includes/fields/class-acf-field-taxonomy.php:958
|
2457 |
#, php-format
|
2458 |
msgid "%s added"
|
2459 |
+
msgstr "تمت اضافة %s"
|
2460 |
|
2461 |
#: includes/fields/class-acf-field-taxonomy.php:1003
|
2462 |
msgid "Add"
|
2469 |
#: includes/fields/class-acf-field-text.php:178
|
2470 |
#: includes/fields/class-acf-field-textarea.php:157
|
2471 |
msgid "Character Limit"
|
2472 |
+
msgstr "الحد الأقصى للحروف"
|
2473 |
|
2474 |
#: includes/fields/class-acf-field-text.php:179
|
2475 |
#: includes/fields/class-acf-field-textarea.php:158
|
2478 |
|
2479 |
#: includes/fields/class-acf-field-textarea.php:36
|
2480 |
msgid "Text Area"
|
2481 |
+
msgstr "مربع النص"
|
2482 |
|
2483 |
#: includes/fields/class-acf-field-textarea.php:166
|
2484 |
msgid "Rows"
|
2486 |
|
2487 |
#: includes/fields/class-acf-field-textarea.php:167
|
2488 |
msgid "Sets the textarea height"
|
2489 |
+
msgstr "تعيين ارتفاع مربع النص"
|
2490 |
|
2491 |
#: includes/fields/class-acf-field-time_picker.php:36
|
2492 |
#, fuzzy
|
2505 |
|
2506 |
#: includes/fields/class-acf-field-true_false.php:142
|
2507 |
msgid "Displays text alongside the checkbox"
|
2508 |
+
msgstr "عرض النص بجانب مربع الاختيار"
|
2509 |
|
2510 |
#: includes/fields/class-acf-field-true_false.php:170
|
|
|
2511 |
msgid "On Text"
|
2512 |
+
msgstr "On Text"
|
2513 |
|
2514 |
#: includes/fields/class-acf-field-true_false.php:171
|
2515 |
msgid "Text shown when active"
|
2516 |
+
msgstr "النص المعروض عند التنشيط"
|
2517 |
|
2518 |
#: includes/fields/class-acf-field-true_false.php:180
|
|
|
2519 |
msgid "Off Text"
|
2520 |
+
msgstr "Off Text"
|
2521 |
|
2522 |
#: includes/fields/class-acf-field-true_false.php:181
|
2523 |
msgid "Text shown when inactive"
|
2524 |
+
msgstr "النص المعروض عند عدم النشاط"
|
2525 |
|
2526 |
#: includes/fields/class-acf-field-url.php:36
|
2527 |
msgid "Url"
|
2541 |
|
2542 |
#: includes/fields/class-acf-field-user.php:416
|
2543 |
msgid "All user roles"
|
2544 |
+
msgstr "جميع رتب المستخدم"
|
2545 |
|
2546 |
#: includes/fields/class-acf-field-wysiwyg.php:36
|
2547 |
msgid "Wysiwyg Editor"
|
2558 |
|
2559 |
#: includes/fields/class-acf-field-wysiwyg.php:392
|
2560 |
msgid "Click to initialize TinyMCE"
|
2561 |
+
msgstr "انقر لبدء تهيئة TinyMCE"
|
2562 |
|
2563 |
#: includes/fields/class-acf-field-wysiwyg.php:445
|
2564 |
msgid "Tabs"
|
2565 |
+
msgstr "علامات التبويب"
|
2566 |
|
2567 |
#: includes/fields/class-acf-field-wysiwyg.php:450
|
2568 |
msgid "Visual & Text"
|
2570 |
|
2571 |
#: includes/fields/class-acf-field-wysiwyg.php:451
|
2572 |
msgid "Visual Only"
|
2573 |
+
msgstr "المرئي فقط"
|
2574 |
|
2575 |
#: includes/fields/class-acf-field-wysiwyg.php:452
|
2576 |
msgid "Text Only"
|
2577 |
+
msgstr "النص فقط"
|
2578 |
|
2579 |
#: includes/fields/class-acf-field-wysiwyg.php:459
|
2580 |
msgid "Toolbar"
|
2581 |
+
msgstr "شريط الأدوات"
|
2582 |
|
2583 |
#: includes/fields/class-acf-field-wysiwyg.php:469
|
2584 |
msgid "Show Media Upload Buttons?"
|
2586 |
|
2587 |
#: includes/fields/class-acf-field-wysiwyg.php:479
|
2588 |
msgid "Delay initialization?"
|
2589 |
+
msgstr "تأخير التهيئة؟"
|
2590 |
|
2591 |
#: includes/fields/class-acf-field-wysiwyg.php:480
|
2592 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2593 |
+
msgstr "لن يتم تهيئة TinyMCE حتى يتم النقر فوق الحقل"
|
2594 |
|
2595 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2596 |
#: pro/admin/admin-options-page.php:304
|
2597 |
msgid "Edit field group"
|
2598 |
+
msgstr "تحرير مجموعة الحقول"
|
2599 |
|
2600 |
#: includes/forms/form-front.php:55
|
|
|
2601 |
msgid "Validate Email"
|
2602 |
+
msgstr "التحقق من البريد الإليكتروني"
|
2603 |
|
2604 |
#: includes/forms/form-front.php:103
|
2605 |
#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81
|
2620 |
|
2621 |
#: includes/input.php:259
|
2622 |
msgid "Collapse Details"
|
2623 |
+
msgstr "طي التفاصيل"
|
2624 |
|
2625 |
#: includes/input.php:260
|
2626 |
msgid "Validation successful"
|
2627 |
+
msgstr "عملية التحقق تمت بنجاح"
|
2628 |
|
2629 |
#: includes/input.php:261 includes/validation.php:285
|
2630 |
#: includes/validation.php:296
|
2646 |
|
2647 |
#: includes/input.php:268
|
2648 |
msgid "Cancel"
|
2649 |
+
msgstr "الغاء"
|
2650 |
|
2651 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
2652 |
msgid "Post"
|
2671 |
|
2672 |
#: includes/locations/class-acf-location-comment.php:27
|
2673 |
msgid "Comment"
|
2674 |
+
msgstr "تعليق"
|
2675 |
|
2676 |
#: includes/locations/class-acf-location-current-user-role.php:27
|
2677 |
msgid "Current User Role"
|
2678 |
+
msgstr "رتبة المستخدم الحالي"
|
2679 |
|
2680 |
#: includes/locations/class-acf-location-current-user-role.php:114
|
2681 |
msgid "Super Admin"
|
2682 |
+
msgstr "مدير"
|
2683 |
|
2684 |
#: includes/locations/class-acf-location-current-user.php:27
|
2685 |
msgid "Current User"
|
2699 |
|
2700 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2701 |
msgid "Menu Item"
|
2702 |
+
msgstr "عنصر القائمة"
|
2703 |
|
2704 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2705 |
msgid "Menu"
|
2706 |
+
msgstr "القائمة"
|
2707 |
|
2708 |
#: includes/locations/class-acf-location-nav-menu.php:113
|
|
|
2709 |
msgid "Menu Locations"
|
2710 |
+
msgstr "مواقع القائمة"
|
2711 |
|
2712 |
#: includes/locations/class-acf-location-nav-menu.php:123
|
2713 |
msgid "Menus"
|
2714 |
+
msgstr "القوائم"
|
2715 |
|
2716 |
#: includes/locations/class-acf-location-page-parent.php:27
|
2717 |
msgid "Page Parent"
|
2752 |
|
2753 |
#: includes/locations/class-acf-location-post-category.php:27
|
2754 |
msgid "Post Category"
|
2755 |
+
msgstr "فئة المقالة"
|
2756 |
|
2757 |
#: includes/locations/class-acf-location-post-format.php:27
|
2758 |
msgid "Post Format"
|
2764 |
|
2765 |
#: includes/locations/class-acf-location-post-taxonomy.php:27
|
2766 |
msgid "Post Taxonomy"
|
2767 |
+
msgstr "تصنيف المقالة"
|
2768 |
|
2769 |
#: includes/locations/class-acf-location-post-template.php:29
|
2770 |
#, fuzzy
|
2773 |
|
2774 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
2775 |
msgid "Taxonomy Term"
|
2776 |
+
msgstr "مصطلح التصنيف"
|
2777 |
|
2778 |
#: includes/locations/class-acf-location-user-form.php:27
|
2779 |
msgid "User Form"
|
2780 |
+
msgstr "نموذج المستخدم"
|
2781 |
|
2782 |
#: includes/locations/class-acf-location-user-form.php:92
|
2783 |
msgid "Add / Edit"
|
2793 |
|
2794 |
#: includes/locations/class-acf-location-widget.php:27
|
2795 |
msgid "Widget"
|
2796 |
+
msgstr "ودجت"
|
2797 |
|
2798 |
#: includes/media.php:55
|
|
|
2799 |
msgctxt "verb"
|
2800 |
msgid "Edit"
|
2801 |
msgstr "تحرير"
|
2802 |
|
2803 |
#: includes/media.php:56
|
|
|
2804 |
msgctxt "verb"
|
2805 |
msgid "Update"
|
2806 |
msgstr "تحديث"
|
2813 |
#. Plugin Name of the plugin/theme
|
2814 |
#: pro/acf-pro.php:28
|
2815 |
msgid "Advanced Custom Fields PRO"
|
2816 |
+
msgstr "الحقول المخصصة المتقدمة للمحترفين"
|
2817 |
|
2818 |
#: pro/admin/admin-options-page.php:196
|
2819 |
msgid "Publish"
|
2825 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
2826 |
"Custom Field Group</a>"
|
2827 |
msgstr ""
|
2828 |
+
"لم يتم العثور على أية \"مجموعات حقول مخصصة لصفحة الخيارات هذة. <a href=\"%s"
|
2829 |
+
"\">أنشئ مجموعة حقول مخصصة</a>"
|
2830 |
|
2831 |
#: pro/admin/admin-settings-updates.php:78
|
2832 |
msgid "<b>Error</b>. Could not connect to update server"
|
2839 |
|
2840 |
#: pro/admin/views/html-settings-updates.php:11
|
2841 |
msgid "Deactivate License"
|
2842 |
+
msgstr "تعطيل الترخيص"
|
2843 |
|
2844 |
#: pro/admin/views/html-settings-updates.php:11
|
2845 |
msgid "Activate License"
|
2846 |
msgstr "تفعيل الترخيص"
|
2847 |
|
2848 |
#: pro/admin/views/html-settings-updates.php:21
|
|
|
2849 |
msgid "License Information"
|
2850 |
+
msgstr "معلومات الترخيص"
|
2851 |
|
2852 |
#: pro/admin/views/html-settings-updates.php:24
|
2853 |
#, fuzzy, php-format
|
2878 |
|
2879 |
#: pro/admin/views/html-settings-updates.php:88
|
2880 |
msgid "Update Available"
|
2881 |
+
msgstr "هنالك تحديث متاح"
|
2882 |
|
2883 |
#: pro/admin/views/html-settings-updates.php:96
|
2884 |
msgid "Update Plugin"
|
2899 |
#: pro/fields/class-acf-field-clone.php:36
|
2900 |
msgctxt "noun"
|
2901 |
msgid "Clone"
|
2902 |
+
msgstr "استنساخ"
|
2903 |
|
2904 |
#: pro/fields/class-acf-field-clone.php:858
|
2905 |
msgid "Select one or more fields you wish to clone"
|
2906 |
+
msgstr "حدد حقل واحد أو أكثر ترغب في استنساخه"
|
2907 |
|
2908 |
#: pro/fields/class-acf-field-clone.php:875
|
|
|
2909 |
msgid "Display"
|
2910 |
+
msgstr "عرض"
|
2911 |
|
2912 |
#: pro/fields/class-acf-field-clone.php:876
|
2913 |
msgid "Specify the style used to render the clone field"
|
2914 |
+
msgstr "حدد النمط المستخدم لعرض حقل الاستنساخ"
|
2915 |
|
2916 |
#: pro/fields/class-acf-field-clone.php:881
|
2917 |
msgid "Group (displays selected fields in a group within this field)"
|
2918 |
+
msgstr "المجموعة (تعرض الحقول المحددة في مجموعة ضمن هذا الحقل)"
|
2919 |
|
2920 |
#: pro/fields/class-acf-field-clone.php:882
|
2921 |
msgid "Seamless (replaces this field with selected fields)"
|
2922 |
+
msgstr "سلس (يستبدل هذا الحقل بالحقول المحددة)"
|
2923 |
|
2924 |
#: pro/fields/class-acf-field-clone.php:903
|
2925 |
+
#, php-format
|
2926 |
msgid "Labels will be displayed as %s"
|
2927 |
+
msgstr "سيتم عرض التسمية كـ %s"
|
2928 |
|
2929 |
#: pro/fields/class-acf-field-clone.php:906
|
|
|
2930 |
msgid "Prefix Field Labels"
|
2931 |
+
msgstr "بادئة تسمية الحقول"
|
2932 |
|
2933 |
#: pro/fields/class-acf-field-clone.php:917
|
2934 |
#, php-format
|
2935 |
msgid "Values will be saved as %s"
|
2936 |
+
msgstr "سيتم حفظ القيم كـ %s"
|
2937 |
|
2938 |
#: pro/fields/class-acf-field-clone.php:920
|
2939 |
msgid "Prefix Field Names"
|
2940 |
msgstr "بادئة أسماء الحقول"
|
2941 |
|
2942 |
#: pro/fields/class-acf-field-clone.php:1038
|
|
|
2943 |
msgid "Unknown field"
|
2944 |
+
msgstr "حقول مجهولة"
|
2945 |
|
2946 |
#: pro/fields/class-acf-field-clone.php:1077
|
2947 |
msgid "Unknown field group"
|
2948 |
+
msgstr "مجموعة حقول مجهولة"
|
2949 |
|
2950 |
#: pro/fields/class-acf-field-clone.php:1081
|
2951 |
#, php-format
|
3127 |
|
3128 |
#: pro/fields/class-acf-field-gallery.php:663
|
3129 |
msgid "Prepend to the beginning"
|
3130 |
+
msgstr "إلحاق بالبداية"
|
3131 |
|
3132 |
#: pro/fields/class-acf-field-repeater.php:47
|
3133 |
msgid "Minimum rows reached ({min} rows)"
|
3185 |
"\">تفاصيل & التسعير</a>"
|
3186 |
|
3187 |
#. Plugin URI of the plugin/theme
|
|
|
3188 |
msgid "https://www.advancedcustomfields.com/"
|
3189 |
msgstr "http://www.advancedcustomfields.com/"
|
3190 |
|
3191 |
#. Author of the plugin/theme
|
|
|
3192 |
msgid "Elliot Condon"
|
3193 |
msgstr "إليوت كوندون"
|
3194 |
|
lang/acf-bg_BG.mo
CHANGED
Binary file
|
lang/acf-bg_BG.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:36+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: bg_BG\n"
|
@@ -668,7 +668,7 @@ msgstr "Отгоре"
|
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:63
|
670 |
#: includes/fields/class-acf-field-tab.php:117
|
671 |
-
msgid "Left
|
672 |
msgstr "Отляво"
|
673 |
|
674 |
#: includes/admin/views/field-group-options.php:70
|
3 |
"Project-Id-Version: Advanced Custom Fields\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:36+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:03+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: bg_BG\n"
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:63
|
670 |
#: includes/fields/class-acf-field-tab.php:117
|
671 |
+
msgid "Left aligned"
|
672 |
msgstr "Отляво"
|
673 |
|
674 |
#: includes/admin/views/field-group-options.php:70
|
lang/acf-cs_CZ.mo
CHANGED
Binary file
|
lang/acf-cs_CZ.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:09+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
|
9 |
"Language: cs_CZ\n"
|
@@ -12,9 +12,8 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Generator: Poedit 1.8.1\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
-
"
|
17 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-WPHeader: acf.php\n"
|
20 |
"X-Textdomain-Support: yes\n"
|
@@ -34,8 +33,7 @@ msgstr "Skupiny polí"
|
|
34 |
msgid "Field Group"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: acf.php:207 acf.php:239 admin/admin.php:62
|
38 |
-
#: pro/fields/flexible-content.php:517
|
39 |
msgid "Add New"
|
40 |
msgstr "Přidat nové"
|
41 |
|
@@ -67,8 +65,7 @@ msgstr "Nebyly nalezeny žádné skupiny polí"
|
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr "V koši nebyly nalezeny žádné skupiny polí"
|
69 |
|
70 |
-
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213
|
71 |
-
#: admin/field-groups.php:519
|
72 |
msgid "Fields"
|
73 |
msgstr "Pole"
|
74 |
|
@@ -84,8 +81,7 @@ msgstr ""
|
|
84 |
msgid "Edit Field"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: acf.php:242 admin/views/field-group-fields.php:18
|
88 |
-
#: admin/views/settings-info.php:111
|
89 |
msgid "New Field"
|
90 |
msgstr "Nové pole"
|
91 |
|
@@ -170,10 +166,8 @@ msgstr ""
|
|
170 |
msgid "copy"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: admin/field-group.php:181
|
174 |
-
#: admin/views/field-group-field-conditional-logic.php:
|
175 |
-
#: admin/views/field-group-field-conditional-logic.php:162
|
176 |
-
#: admin/views/field-group-locations.php:23
|
177 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
178 |
msgid "or"
|
179 |
msgstr ""
|
@@ -262,9 +256,8 @@ msgstr ""
|
|
262 |
msgid "Super Admin"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: admin/field-group.php:818 admin/field-group.php:826
|
266 |
-
#: admin/field-group.php:
|
267 |
-
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
268 |
#: fields/image.php:226 pro/fields/gallery.php:653
|
269 |
msgid "All"
|
270 |
msgstr "Vše"
|
@@ -340,8 +333,8 @@ msgstr ""
|
|
340 |
msgid "Title"
|
341 |
msgstr "Název"
|
342 |
|
343 |
-
#: admin/field-groups.php:517 admin/views/field-group-options.php:98
|
344 |
-
#: admin/views/update-network.php:
|
345 |
msgid "Description"
|
346 |
msgstr "Popis"
|
347 |
|
@@ -349,8 +342,7 @@ msgstr "Popis"
|
|
349 |
msgid "Status"
|
350 |
msgstr "Stav"
|
351 |
|
352 |
-
#: admin/field-groups.php:616 admin/settings-info.php:76
|
353 |
-
#: pro/admin/views/settings-updates.php:111
|
354 |
msgid "Changelog"
|
355 |
msgstr "Seznam změn"
|
356 |
|
@@ -370,8 +362,7 @@ msgstr "Zdroje"
|
|
370 |
msgid "Getting Started"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73
|
374 |
-
#: pro/admin/views/settings-updates.php:17
|
375 |
msgid "Updates"
|
376 |
msgstr ""
|
377 |
|
@@ -407,8 +398,8 @@ msgstr "Vytvořil"
|
|
407 |
msgid "Duplicate this item"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin/field-groups.php:673 admin/field-groups.php:685
|
411 |
-
#:
|
412 |
msgid "Duplicate"
|
413 |
msgstr "Duplikovat"
|
414 |
|
@@ -441,8 +432,7 @@ msgstr ""
|
|
441 |
msgid "What's New"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9
|
445 |
-
#: admin/views/settings-tools.php:31
|
446 |
msgid "Tools"
|
447 |
msgstr ""
|
448 |
|
@@ -473,9 +463,7 @@ msgstr ""
|
|
473 |
|
474 |
#: admin/settings-tools.php:332
|
475 |
#, php-format
|
476 |
-
msgid ""
|
477 |
-
"<b>Warning</b>. Import tool detected %s field groups already exist and have "
|
478 |
-
"been ignored: %s"
|
479 |
msgstr ""
|
480 |
|
481 |
#: admin/update.php:113
|
@@ -498,25 +486,20 @@ msgstr "Aktualizovat databázi"
|
|
498 |
msgid "Conditional Logic"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/views/field-group-field-conditional-logic.php:40
|
502 |
-
#:
|
503 |
-
#: fields/
|
504 |
-
#: fields/
|
505 |
-
#: fields/
|
506 |
-
#: fields/
|
507 |
-
#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
508 |
-
#: fields/user.php:471 fields/wysiwyg.php:384
|
509 |
-
#: pro/admin/views/settings-updates.php:93
|
510 |
msgid "Yes"
|
511 |
msgstr "Ano"
|
512 |
|
513 |
-
#: admin/views/field-group-field-conditional-logic.php:41
|
514 |
-
#:
|
515 |
-
#: fields/
|
516 |
-
#: fields/
|
517 |
-
#: fields/
|
518 |
-
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771
|
519 |
-
#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
520 |
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
521 |
#: pro/admin/views/settings-updates.php:103
|
522 |
msgid "No"
|
@@ -526,23 +509,19 @@ msgstr "Ne"
|
|
526 |
msgid "Show this field if"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: admin/views/field-group-field-conditional-logic.php:111
|
530 |
-
#: admin/views/field-group-locations.php:88
|
531 |
msgid "is equal to"
|
532 |
msgstr "je rovno"
|
533 |
|
534 |
-
#: admin/views/field-group-field-conditional-logic.php:112
|
535 |
-
#: admin/views/field-group-locations.php:89
|
536 |
msgid "is not equal to"
|
537 |
msgstr "není rovno"
|
538 |
|
539 |
-
#: admin/views/field-group-field-conditional-logic.php:149
|
540 |
-
#: admin/views/field-group-locations.php:118
|
541 |
msgid "and"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/views/field-group-field-conditional-logic.php:164
|
545 |
-
#: admin/views/field-group-locations.php:133
|
546 |
msgid "Add rule group"
|
547 |
msgstr ""
|
548 |
|
@@ -574,8 +553,7 @@ msgstr ""
|
|
574 |
msgid "Delete"
|
575 |
msgstr "Smazat"
|
576 |
|
577 |
-
#: admin/views/field-group-field.php:68 fields/oembed.php:212
|
578 |
-
#: fields/taxonomy.php:886
|
579 |
msgid "Error"
|
580 |
msgstr ""
|
581 |
|
@@ -656,12 +634,8 @@ msgid "Type"
|
|
656 |
msgstr ""
|
657 |
|
658 |
#: admin/views/field-group-fields.php:44
|
659 |
-
msgid ""
|
660 |
-
"
|
661 |
-
"first field."
|
662 |
-
msgstr ""
|
663 |
-
"Žádná pole. Klikněte na tlačítko<strong>+ Přidat pole</strong> pro vytvoření "
|
664 |
-
"prvního pole."
|
665 |
|
666 |
#: admin/views/field-group-fields.php:51
|
667 |
msgid "Drag and drop to reorder"
|
@@ -676,19 +650,14 @@ msgid "Rules"
|
|
676 |
msgstr "Pravidla"
|
677 |
|
678 |
#: admin/views/field-group-locations.php:6
|
679 |
-
msgid ""
|
680 |
-
"
|
681 |
-
"advanced custom fields"
|
682 |
-
msgstr ""
|
683 |
-
"Vytváří sadu pravidel pro určení, na kterých stránkách úprav budou použita "
|
684 |
-
"tato vlastní pole"
|
685 |
|
686 |
#: admin/views/field-group-locations.php:21
|
687 |
msgid "Show this field group if"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: admin/views/field-group-locations.php:41
|
691 |
-
#: admin/views/field-group-locations.php:47
|
692 |
msgid "Post"
|
693 |
msgstr "Příspěvek"
|
694 |
|
@@ -712,8 +681,7 @@ msgstr "Rubrika příspěvku"
|
|
712 |
msgid "Post Taxonomy"
|
713 |
msgstr "Taxonomie příspěvku"
|
714 |
|
715 |
-
#: admin/views/field-group-locations.php:49
|
716 |
-
#: admin/views/field-group-locations.php:53
|
717 |
msgid "Page"
|
718 |
msgstr "Stránka"
|
719 |
|
@@ -806,7 +774,7 @@ msgid "Top aligned"
|
|
806 |
msgstr ""
|
807 |
|
808 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
809 |
-
msgid "Left
|
810 |
msgstr ""
|
811 |
|
812 |
#: admin/views/field-group-options.php:72
|
@@ -843,8 +811,8 @@ msgstr ""
|
|
843 |
|
844 |
#: admin/views/field-group-options.php:110
|
845 |
msgid ""
|
846 |
-
"If multiple field groups appear on an edit screen, the first field group's "
|
847 |
-
"
|
848 |
msgstr ""
|
849 |
|
850 |
#: admin/views/field-group-options.php:117
|
@@ -917,9 +885,7 @@ msgstr ""
|
|
917 |
|
918 |
#: admin/views/settings-info.php:10
|
919 |
#, php-format
|
920 |
-
msgid ""
|
921 |
-
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
922 |
-
"hope you like it."
|
923 |
msgstr ""
|
924 |
|
925 |
#: admin/views/settings-info.php:23
|
@@ -932,9 +898,8 @@ msgstr ""
|
|
932 |
|
933 |
#: admin/views/settings-info.php:29
|
934 |
msgid ""
|
935 |
-
"Including the popular Select2 library has improved both usability and speed "
|
936 |
-
"
|
937 |
-
"and select."
|
938 |
msgstr ""
|
939 |
|
940 |
#: admin/views/settings-info.php:33
|
@@ -943,9 +908,8 @@ msgstr ""
|
|
943 |
|
944 |
#: admin/views/settings-info.php:34
|
945 |
msgid ""
|
946 |
-
"Many fields have undergone a visual refresh to make ACF look better than "
|
947 |
-
"
|
948 |
-
"(new) fields!"
|
949 |
msgstr ""
|
950 |
|
951 |
#: admin/views/settings-info.php:38
|
@@ -954,9 +918,8 @@ msgstr ""
|
|
954 |
|
955 |
#: admin/views/settings-info.php:39
|
956 |
msgid ""
|
957 |
-
"Redesigning the data architecture has allowed sub fields to live "
|
958 |
-
"
|
959 |
-
"and out of parent fields!"
|
960 |
msgstr ""
|
961 |
|
962 |
#: admin/views/settings-info.php:45
|
@@ -968,16 +931,15 @@ msgid "Introducing ACF PRO"
|
|
968 |
msgstr ""
|
969 |
|
970 |
#: admin/views/settings-info.php:51
|
971 |
-
msgid ""
|
972 |
-
"We're changing the way premium functionality is delivered in an exciting way!"
|
973 |
msgstr ""
|
974 |
|
975 |
#: admin/views/settings-info.php:52
|
976 |
#, php-format
|
977 |
msgid ""
|
978 |
-
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
979 |
-
"
|
980 |
-
"
|
981 |
msgstr ""
|
982 |
|
983 |
#: admin/views/settings-info.php:56
|
@@ -986,9 +948,8 @@ msgstr ""
|
|
986 |
|
987 |
#: admin/views/settings-info.php:57
|
988 |
msgid ""
|
989 |
-
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
990 |
-
"
|
991 |
-
"options pages!"
|
992 |
msgstr ""
|
993 |
|
994 |
#: admin/views/settings-info.php:58
|
@@ -1003,16 +964,15 @@ msgstr ""
|
|
1003 |
#: admin/views/settings-info.php:63
|
1004 |
#, php-format
|
1005 |
msgid ""
|
1006 |
-
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
1007 |
-
"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
#: admin/views/settings-info.php:64
|
1011 |
#, php-format
|
1012 |
msgid ""
|
1013 |
-
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
1014 |
-
"
|
1015 |
-
"\">help desk</a>"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
#: admin/views/settings-info.php:72
|
@@ -1048,9 +1008,7 @@ msgid "Better version control"
|
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: admin/views/settings-info.php:95
|
1051 |
-
msgid ""
|
1052 |
-
"New auto export to JSON feature allows field settings to be version "
|
1053 |
-
"controlled"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: admin/views/settings-info.php:99
|
@@ -1086,9 +1044,7 @@ msgid "New Settings"
|
|
1086 |
msgstr ""
|
1087 |
|
1088 |
#: admin/views/settings-info.php:122
|
1089 |
-
msgid ""
|
1090 |
-
"Field group settings have been added for label placement and instruction "
|
1091 |
-
"placement"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
#: admin/views/settings-info.php:128
|
@@ -1112,8 +1068,7 @@ msgid "Relationship Field"
|
|
1112 |
msgstr ""
|
1113 |
|
1114 |
#: admin/views/settings-info.php:139
|
1115 |
-
msgid ""
|
1116 |
-
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
#: admin/views/settings-info.php:145
|
@@ -1121,9 +1076,7 @@ msgid "Moving Fields"
|
|
1121 |
msgstr ""
|
1122 |
|
1123 |
#: admin/views/settings-info.php:146
|
1124 |
-
msgid ""
|
1125 |
-
"New field group functionality allows you to move a field between groups & "
|
1126 |
-
"parents"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
@@ -1139,9 +1092,7 @@ msgid "Better Options Pages"
|
|
1139 |
msgstr ""
|
1140 |
|
1141 |
#: admin/views/settings-info.php:156
|
1142 |
-
msgid ""
|
1143 |
-
"New functions for options page allow creation of both parent and child menu "
|
1144 |
-
"pages"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: admin/views/settings-info.php:165
|
@@ -1155,11 +1106,10 @@ msgstr "Exportujte skupiny polí do PHP"
|
|
1155 |
|
1156 |
#: admin/views/settings-tools-export.php:17
|
1157 |
msgid ""
|
1158 |
-
"The following code can be used to register a local version of the selected "
|
1159 |
-
"field group
|
1160 |
-
"
|
1161 |
-
"
|
1162 |
-
"an external file."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
#: admin/views/settings-tools.php:5
|
@@ -1172,10 +1122,9 @@ msgstr ""
|
|
1172 |
|
1173 |
#: admin/views/settings-tools.php:38
|
1174 |
msgid ""
|
1175 |
-
"Select the field groups you would like to export and then select your export "
|
1176 |
-
"
|
1177 |
-
"
|
1178 |
-
"code which you can place in your theme."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
#: admin/views/settings-tools.php:50
|
@@ -1192,8 +1141,8 @@ msgstr "Importovat skupiny polí"
|
|
1192 |
|
1193 |
#: admin/views/settings-tools.php:67
|
1194 |
msgid ""
|
1195 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
1196 |
-
"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
@@ -1210,8 +1159,8 @@ msgstr ""
|
|
1210 |
|
1211 |
#: admin/views/update-network.php:10
|
1212 |
msgid ""
|
1213 |
-
"The following sites require a DB upgrade. Check the ones you want to update "
|
1214 |
-
"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
@@ -1233,8 +1182,8 @@ msgstr ""
|
|
1233 |
|
1234 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1235 |
msgid ""
|
1236 |
-
"It is strongly recommended that you backup your database before proceeding. "
|
1237 |
-
"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
#: admin/views/update-network.php:157
|
@@ -1256,8 +1205,7 @@ msgstr ""
|
|
1256 |
|
1257 |
#: admin/views/update-notice.php:25
|
1258 |
msgid ""
|
1259 |
-
"Before you start using the new awesome features, please update your database "
|
1260 |
-
"to the newest version."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
#: admin/views/update.php:12
|
@@ -1360,8 +1308,8 @@ msgstr ""
|
|
1360 |
msgid "jQuery"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
1364 |
-
#: pro/fields/
|
1365 |
msgid "Layout"
|
1366 |
msgstr "Typ zobrazení"
|
1367 |
|
@@ -1423,10 +1371,9 @@ msgstr ""
|
|
1423 |
msgid "red : Red"
|
1424 |
msgstr "cervena : Červená"
|
1425 |
|
1426 |
-
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124
|
1427 |
-
#: fields/
|
1428 |
-
#: fields/
|
1429 |
-
#: fields/url.php:117 fields/wysiwyg.php:345
|
1430 |
msgid "Default Value"
|
1431 |
msgstr "Výchozí hodnota"
|
1432 |
|
@@ -1506,39 +1453,34 @@ msgstr ""
|
|
1506 |
msgid "Email"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
1510 |
-
#: fields/
|
1511 |
-
#: fields/wysiwyg.php:346
|
1512 |
msgid "Appears when creating a new post"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
1516 |
-
#: fields/
|
1517 |
msgid "Placeholder Text"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
1521 |
-
#: fields/
|
1522 |
msgid "Appears within the input"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
1526 |
-
#: fields/text.php:166
|
1527 |
msgid "Prepend"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
1531 |
-
#: fields/text.php:167
|
1532 |
msgid "Appears before the input"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
1536 |
-
#: fields/text.php:175
|
1537 |
msgid "Append"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
1541 |
-
#: fields/text.php:176
|
1542 |
msgid "Appears after the input"
|
1543 |
msgstr ""
|
1544 |
|
@@ -1614,8 +1556,8 @@ msgstr ""
|
|
1614 |
msgid "Restrict which files can be uploaded"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
1618 |
-
#:
|
1619 |
msgid "File size"
|
1620 |
msgstr ""
|
1621 |
|
@@ -1671,8 +1613,8 @@ msgstr ""
|
|
1671 |
msgid "Set the initial zoom level"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279
|
1675 |
-
#:
|
1676 |
msgid "Height"
|
1677 |
msgstr ""
|
1678 |
|
@@ -1732,13 +1674,12 @@ msgstr "Velikost náhledu"
|
|
1732 |
msgid "Shown when entering data"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662
|
1736 |
-
#: pro/fields/gallery.php:695
|
1737 |
msgid "Restrict which images can be uploaded"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251
|
1741 |
-
#: pro/fields/gallery.php:
|
1742 |
msgid "Width"
|
1743 |
msgstr ""
|
1744 |
|
@@ -1808,33 +1749,28 @@ msgstr ""
|
|
1808 |
msgid "Archives"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: fields/page_link.php:535 fields/post_object.php:401
|
1812 |
-
#: fields/relationship.php:690
|
1813 |
msgid "Filter by Post Type"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: fields/page_link.php:543 fields/post_object.php:409
|
1817 |
-
#: fields/relationship.php:698
|
1818 |
msgid "All post types"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: fields/page_link.php:549 fields/post_object.php:415
|
1822 |
-
#: fields/relationship.php:704
|
1823 |
msgid "Filter by Taxonomy"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: fields/page_link.php:557 fields/post_object.php:423
|
1827 |
-
#: fields/relationship.php:712
|
1828 |
msgid "All taxonomies"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406
|
1832 |
-
#: fields/
|
1833 |
msgid "Allow Null?"
|
1834 |
msgstr "Povolit prázdné?"
|
1835 |
|
1836 |
-
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420
|
1837 |
-
#: fields/user.php:466
|
1838 |
msgid "Select multiple values?"
|
1839 |
msgstr "Vybrat více hodnot?"
|
1840 |
|
@@ -1842,8 +1778,7 @@ msgstr "Vybrat více hodnot?"
|
|
1842 |
msgid "Password"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: fields/post_object.php:36 fields/post_object.php:462
|
1846 |
-
#: fields/relationship.php:769
|
1847 |
msgid "Post Object"
|
1848 |
msgstr "Objekt příspěvku"
|
1849 |
|
@@ -1953,21 +1888,18 @@ msgstr ""
|
|
1953 |
|
1954 |
#: fields/tab.php:133
|
1955 |
msgid ""
|
1956 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
1957 |
-
"field
|
1958 |
msgstr ""
|
1959 |
|
1960 |
#: fields/tab.php:146
|
1961 |
-
msgid ""
|
1962 |
-
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
1963 |
-
"together."
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: fields/tab.php:148
|
1967 |
msgid ""
|
1968 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
1969 |
-
"
|
1970 |
-
"heading."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
#: fields/tab.php:155
|
@@ -2233,8 +2165,7 @@ msgstr ""
|
|
2233 |
|
2234 |
#: pro/admin/views/settings-updates.php:24
|
2235 |
msgid ""
|
2236 |
-
"To unlock updates, please enter your license key below. If you don't have a "
|
2237 |
-
"licence key, please see"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
#: pro/admin/views/settings-updates.php:24
|
@@ -2284,9 +2215,8 @@ msgstr "Konfigurace"
|
|
2284 |
#: pro/core/updates.php:186
|
2285 |
#, php-format
|
2286 |
msgid ""
|
2287 |
-
"To enable updates, please enter your license key on the <a href=\"%s"
|
2288 |
-
"
|
2289 |
-
"\">details & pricing</a>"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
#: pro/fields/flexible-content.php:36
|
@@ -2562,11 +2492,10 @@ msgstr ""
|
|
2562 |
#~ msgstr "Žádný metabox"
|
2563 |
|
2564 |
#~ msgid ""
|
2565 |
-
#~ "Read documentation, learn the functions and find some tips & tricks "
|
2566 |
-
#~ "for your next web project."
|
2567 |
#~ msgstr ""
|
2568 |
-
#~ "Přečtěte si dokumentaci, naučte se funkce a objevte zajímavé tipy & "
|
2569 |
-
#~ "
|
2570 |
|
2571 |
#~ msgid "Visit the ACF website"
|
2572 |
#~ msgstr "Navštívit web ACF"
|
@@ -2622,12 +2551,9 @@ msgstr ""
|
|
2622 |
#~ msgid "Activate Add-ons."
|
2623 |
#~ msgstr "Aktivovat přídavky."
|
2624 |
|
2625 |
-
#~ msgid ""
|
2626 |
-
#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
|
2627 |
-
#~ "on multiple sites."
|
2628 |
#~ msgstr ""
|
2629 |
-
#~ "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může "
|
2630 |
-
#~ "být použit na více webech."
|
2631 |
|
2632 |
#~ msgid "Find Add-ons"
|
2633 |
#~ msgstr "Hledat přídavky"
|
@@ -2656,19 +2582,15 @@ msgstr ""
|
|
2656 |
#~ msgid "Export Field Groups to XML"
|
2657 |
#~ msgstr "Exportovat skupiny polí do XML"
|
2658 |
|
2659 |
-
#~ msgid ""
|
2660 |
-
#~ "ACF
|
2661 |
-
#~ "import plugin."
|
2662 |
-
#~ msgstr ""
|
2663 |
-
#~ "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním "
|
2664 |
-
#~ "importním pluginem WP."
|
2665 |
|
2666 |
#~ msgid ""
|
2667 |
-
#~ "Imported field groups <b>will</b> appear in the list of editable field "
|
2668 |
-
#~ "
|
2669 |
#~ msgstr ""
|
2670 |
-
#~ "Importované skupiny polí <b>budou</b> zobrazeny v seznamu upravitelných "
|
2671 |
-
#~ "
|
2672 |
|
2673 |
#~ msgid "Select field group(s) from the list and click \"Export XML\""
|
2674 |
#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Export XML\""
|
@@ -2701,23 +2623,20 @@ msgstr ""
|
|
2701 |
#~ msgstr "Registrovat skupiny polí"
|
2702 |
|
2703 |
#~ msgid ""
|
2704 |
-
#~ "Registered field groups <b>will not</b> appear in the list of editable "
|
2705 |
-
#~ "
|
2706 |
#~ msgstr ""
|
2707 |
-
#~ "Registrované skupiny polí <b>nebudou</b> zobrazeny v seznamu "
|
2708 |
-
#~ "
|
2709 |
-
#~ "šablonách."
|
2710 |
|
2711 |
#~ msgid ""
|
2712 |
-
#~ "Please note that if you export and register field groups within the same "
|
2713 |
-
#~ "
|
2714 |
-
#~ "
|
2715 |
-
#~ "your functions.php file."
|
2716 |
#~ msgstr ""
|
2717 |
-
#~ "Mějte prosím na paměti, že pokud exportujete a registrujete skupiny polí "
|
2718 |
-
#~ "
|
2719 |
-
#~ "
|
2720 |
-
#~ "odstraňte kód ze souboru functions.php."
|
2721 |
|
2722 |
#~ msgid "Select field group(s) from the list and click \"Create PHP\""
|
2723 |
#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Vytvořit PHP\""
|
@@ -2728,11 +2647,8 @@ msgstr ""
|
|
2728 |
#~ msgid "Paste into your functions.php file"
|
2729 |
#~ msgstr "Vložte jej do vašeho souboru functions.php"
|
2730 |
|
2731 |
-
#~ msgid ""
|
2732 |
-
#~ "
|
2733 |
-
#~ msgstr ""
|
2734 |
-
#~ "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních "
|
2735 |
-
#~ "několika řádcích."
|
2736 |
|
2737 |
#~ msgid "Create PHP"
|
2738 |
#~ msgstr "Vytvořit PHP"
|
@@ -2743,44 +2659,37 @@ msgstr ""
|
|
2743 |
#~ msgid ""
|
2744 |
#~ "/**\n"
|
2745 |
#~ " * Activate Add-ons\n"
|
2746 |
-
#~ " * Here you can enter your activation codes to unlock Add-ons to use in "
|
2747 |
-
#~ "your
|
2748 |
-
#~ "
|
2749 |
-
#~ "
|
2750 |
-
#~ " *
|
2751 |
-
#~ "code. \n"
|
2752 |
-
#~ " * You may place this code inside an IF statement that only runs on theme "
|
2753 |
-
#~ "activation.\n"
|
2754 |
#~ " */"
|
2755 |
#~ msgstr ""
|
2756 |
#~ "/**\n"
|
2757 |
#~ " * Aktivovat přídavky\n"
|
2758 |
-
#~ " * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve "
|
2759 |
-
#~ "
|
2760 |
-
#~ "
|
2761 |
-
#~ "
|
2762 |
-
#~ " *
|
2763 |
-
#~ "kódem. \n"
|
2764 |
-
#~ " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po "
|
2765 |
-
#~ "aktivaci šablony.\n"
|
2766 |
#~ " */"
|
2767 |
|
2768 |
#~ msgid ""
|
2769 |
#~ "/**\n"
|
2770 |
#~ " * Register field groups\n"
|
2771 |
-
#~ " * The register_field_group function accepts 1 array which holds the "
|
2772 |
-
#~ "
|
2773 |
-
#~ " * You may edit the array as you see fit. However, this may result in "
|
2774 |
-
#~ "
|
2775 |
#~ " * This code must run every time the functions.php file is read\n"
|
2776 |
#~ " */"
|
2777 |
#~ msgstr ""
|
2778 |
#~ "/**\n"
|
2779 |
#~ " * Registrace skupiny polí\n"
|
2780 |
-
#~ " * Funkce register_field_group akceptuje pole, které obsahuje relevatní "
|
2781 |
-
#~ "
|
2782 |
-
#~ " * Pole můžete upravit podle potřeb. Může to ovšem vyústit v pole "
|
2783 |
-
#~ "nekompatibilní s ACF\n"
|
2784 |
#~ " * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
|
2785 |
#~ " */"
|
2786 |
|
@@ -2856,12 +2765,8 @@ msgstr ""
|
|
2856 |
#~ msgid "Field Order"
|
2857 |
#~ msgstr "Pořadí pole"
|
2858 |
|
2859 |
-
#~ msgid ""
|
2860 |
-
#~ "
|
2861 |
-
#~ "field."
|
2862 |
-
#~ msgstr ""
|
2863 |
-
#~ "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření "
|
2864 |
-
#~ "prvního pole."
|
2865 |
|
2866 |
#~ msgid "Edit this Field"
|
2867 |
#~ msgstr "Upravit toto pole"
|
@@ -2993,18 +2898,17 @@ msgstr ""
|
|
2993 |
#~ msgstr "Odemkněte přídavek konfigurace s aktivačním kódem"
|
2994 |
|
2995 |
#~ msgid "Field groups are created in order <br />from lowest to highest."
|
2996 |
-
#~ msgstr ""
|
2997 |
-
#~ "Skupiny polí jsou vytvořeny v pořadí <br /> od nejnižšího k nejvyššímu."
|
2998 |
|
2999 |
#~ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
3000 |
#~ msgstr "<b>Vybrat</b> položky pro <b>skrytí</b> z obrazovky úprav"
|
3001 |
|
3002 |
#~ msgid ""
|
3003 |
-
#~ "If multiple field groups appear on an edit screen, the first field "
|
3004 |
-
#~ "
|
3005 |
#~ msgstr ""
|
3006 |
-
#~ "Pokud se na obrazovce úprav objeví několik skupin polí, bude použito "
|
3007 |
-
#~ "
|
3008 |
|
3009 |
#~ msgid "Everything Fields deactivated"
|
3010 |
#~ msgstr "Všechna pole deaktivována"
|
@@ -3026,8 +2930,7 @@ msgstr ""
|
|
3026 |
#~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
|
3027 |
#~ msgstr ""
|
3028 |
#~ "Filtrovat příspěvky výběrem typu příspěvku<br />\n"
|
3029 |
-
#~ "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků "
|
3030 |
-
#~ "všech typů příspěvků"
|
3031 |
|
3032 |
#~ msgid "Set to -1 for infinite"
|
3033 |
#~ msgstr "Nastavte na -1 pro nekonečno"
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:09+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
|
9 |
"Language: cs_CZ\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Generator: Poedit 1.8.1\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"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;"
|
16 |
+
"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Poedit-WPHeader: acf.php\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
33 |
msgid "Field Group"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517
|
|
|
37 |
msgid "Add New"
|
38 |
msgstr "Přidat nové"
|
39 |
|
65 |
msgid "No Field Groups found in Trash"
|
66 |
msgstr "V koši nebyly nalezeny žádné skupiny polí"
|
67 |
|
68 |
+
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519
|
|
|
69 |
msgid "Fields"
|
70 |
msgstr "Pole"
|
71 |
|
81 |
msgid "Edit Field"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
|
|
85 |
msgid "New Field"
|
86 |
msgstr "Nové pole"
|
87 |
|
166 |
msgid "copy"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67
|
170 |
+
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23
|
|
|
|
|
171 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
172 |
msgid "or"
|
173 |
msgstr ""
|
256 |
msgid "Super Admin"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840
|
260 |
+
#: admin/field-group.php:847 admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
|
|
261 |
#: fields/image.php:226 pro/fields/gallery.php:653
|
262 |
msgid "All"
|
263 |
msgstr "Vše"
|
333 |
msgid "Title"
|
334 |
msgstr "Název"
|
335 |
|
336 |
+
#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20
|
337 |
+
#: admin/views/update-network.php:28
|
338 |
msgid "Description"
|
339 |
msgstr "Popis"
|
340 |
|
342 |
msgid "Status"
|
343 |
msgstr "Stav"
|
344 |
|
345 |
+
#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
|
|
346 |
msgid "Changelog"
|
347 |
msgstr "Seznam změn"
|
348 |
|
362 |
msgid "Getting Started"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
|
|
366 |
msgid "Updates"
|
367 |
msgstr ""
|
368 |
|
398 |
msgid "Duplicate this item"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58
|
402 |
+
#: pro/fields/flexible-content.php:516
|
403 |
msgid "Duplicate"
|
404 |
msgstr "Duplikovat"
|
405 |
|
432 |
msgid "What's New"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31
|
|
|
436 |
msgid "Tools"
|
437 |
msgstr ""
|
438 |
|
463 |
|
464 |
#: admin/settings-tools.php:332
|
465 |
#, php-format
|
466 |
+
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
|
|
|
|
467 |
msgstr ""
|
468 |
|
469 |
#: admin/update.php:113
|
486 |
msgid "Conditional Logic"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137
|
490 |
+
#: fields/checkbox.php:246 fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582
|
491 |
+
#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 fields/select.php:425
|
492 |
+
#: fields/select.php:439 fields/select.php:453 fields/tab.php:172 fields/taxonomy.php:770
|
493 |
+
#: fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
494 |
+
#: fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93
|
|
|
|
|
|
|
495 |
msgid "Yes"
|
496 |
msgstr "Ano"
|
497 |
|
498 |
+
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138
|
499 |
+
#: fields/checkbox.php:247 fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583
|
500 |
+
#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 fields/select.php:426
|
501 |
+
#: fields/select.php:440 fields/select.php:454 fields/tab.php:173 fields/taxonomy.php:685
|
502 |
+
#: fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
|
|
|
|
503 |
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
504 |
#: pro/admin/views/settings-updates.php:103
|
505 |
msgid "No"
|
509 |
msgid "Show this field if"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88
|
|
|
513 |
msgid "is equal to"
|
514 |
msgstr "je rovno"
|
515 |
|
516 |
+
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89
|
|
|
517 |
msgid "is not equal to"
|
518 |
msgstr "není rovno"
|
519 |
|
520 |
+
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118
|
|
|
521 |
msgid "and"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133
|
|
|
525 |
msgid "Add rule group"
|
526 |
msgstr ""
|
527 |
|
553 |
msgid "Delete"
|
554 |
msgstr "Smazat"
|
555 |
|
556 |
+
#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886
|
|
|
557 |
msgid "Error"
|
558 |
msgstr ""
|
559 |
|
634 |
msgstr ""
|
635 |
|
636 |
#: admin/views/field-group-fields.php:44
|
637 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
638 |
+
msgstr "Žádná pole. Klikněte na tlačítko<strong>+ Přidat pole</strong> pro vytvoření prvního pole."
|
|
|
|
|
|
|
|
|
639 |
|
640 |
#: admin/views/field-group-fields.php:51
|
641 |
msgid "Drag and drop to reorder"
|
650 |
msgstr "Pravidla"
|
651 |
|
652 |
#: admin/views/field-group-locations.php:6
|
653 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
654 |
+
msgstr "Vytváří sadu pravidel pro určení, na kterých stránkách úprav budou použita tato vlastní pole"
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#: admin/views/field-group-locations.php:21
|
657 |
msgid "Show this field group if"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47
|
|
|
661 |
msgid "Post"
|
662 |
msgstr "Příspěvek"
|
663 |
|
681 |
msgid "Post Taxonomy"
|
682 |
msgstr "Taxonomie příspěvku"
|
683 |
|
684 |
+
#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53
|
|
|
685 |
msgid "Page"
|
686 |
msgstr "Stránka"
|
687 |
|
774 |
msgstr ""
|
775 |
|
776 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
777 |
+
msgid "Left aligned"
|
778 |
msgstr ""
|
779 |
|
780 |
#: admin/views/field-group-options.php:72
|
811 |
|
812 |
#: admin/views/field-group-options.php:110
|
813 |
msgid ""
|
814 |
+
"If multiple field groups appear on an edit screen, the first field group's options will be used (the "
|
815 |
+
"one with the lowest order number)"
|
816 |
msgstr ""
|
817 |
|
818 |
#: admin/views/field-group-options.php:117
|
885 |
|
886 |
#: admin/views/settings-info.php:10
|
887 |
#, php-format
|
888 |
+
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
|
|
|
|
889 |
msgstr ""
|
890 |
|
891 |
#: admin/views/settings-info.php:23
|
898 |
|
899 |
#: admin/views/settings-info.php:29
|
900 |
msgid ""
|
901 |
+
"Including the popular Select2 library has improved both usability and speed across a number of field "
|
902 |
+
"types including post object, page link, taxonomy and select."
|
|
|
903 |
msgstr ""
|
904 |
|
905 |
#: admin/views/settings-info.php:33
|
908 |
|
909 |
#: admin/views/settings-info.php:34
|
910 |
msgid ""
|
911 |
+
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are "
|
912 |
+
"seen on the gallery, relationship and oEmbed (new) fields!"
|
|
|
913 |
msgstr ""
|
914 |
|
915 |
#: admin/views/settings-info.php:38
|
918 |
|
919 |
#: admin/views/settings-info.php:39
|
920 |
msgid ""
|
921 |
+
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This "
|
922 |
+
"allows you to drag and drop fields in and out of parent fields!"
|
|
|
923 |
msgstr ""
|
924 |
|
925 |
#: admin/views/settings-info.php:45
|
931 |
msgstr ""
|
932 |
|
933 |
#: admin/views/settings-info.php:51
|
934 |
+
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
|
|
935 |
msgstr ""
|
936 |
|
937 |
#: admin/views/settings-info.php:52
|
938 |
#, php-format
|
939 |
msgid ""
|
940 |
+
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both "
|
941 |
+
"personal and developer licenses available, premium functionality is more affordable and accessible than "
|
942 |
+
"ever before!"
|
943 |
msgstr ""
|
944 |
|
945 |
#: admin/views/settings-info.php:56
|
948 |
|
949 |
#: admin/views/settings-info.php:57
|
950 |
msgid ""
|
951 |
+
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful "
|
952 |
+
"gallery field and the ability to create extra admin options pages!"
|
|
|
953 |
msgstr ""
|
954 |
|
955 |
#: admin/views/settings-info.php:58
|
964 |
#: admin/views/settings-info.php:63
|
965 |
#, php-format
|
966 |
msgid ""
|
967 |
+
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of "
|
968 |
+
"ACF PRO!"
|
969 |
msgstr ""
|
970 |
|
971 |
#: admin/views/settings-info.php:64
|
972 |
#, php-format
|
973 |
msgid ""
|
974 |
+
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, "
|
975 |
+
"please contact our support team via the <a href=\"%s\">help desk</a>"
|
|
|
976 |
msgstr ""
|
977 |
|
978 |
#: admin/views/settings-info.php:72
|
1008 |
msgstr ""
|
1009 |
|
1010 |
#: admin/views/settings-info.php:95
|
1011 |
+
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
|
|
|
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: admin/views/settings-info.php:99
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#: admin/views/settings-info.php:122
|
1047 |
+
msgid "Field group settings have been added for label placement and instruction placement"
|
|
|
|
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: admin/views/settings-info.php:128
|
1068 |
msgstr ""
|
1069 |
|
1070 |
#: admin/views/settings-info.php:139
|
1071 |
+
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
|
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: admin/views/settings-info.php:145
|
1076 |
msgstr ""
|
1077 |
|
1078 |
#: admin/views/settings-info.php:146
|
1079 |
+
msgid "New field group functionality allows you to move a field between groups & parents"
|
|
|
|
|
1080 |
msgstr ""
|
1081 |
|
1082 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1092 |
msgstr ""
|
1093 |
|
1094 |
#: admin/views/settings-info.php:156
|
1095 |
+
msgid "New functions for options page allow creation of both parent and child menu pages"
|
|
|
|
|
1096 |
msgstr ""
|
1097 |
|
1098 |
#: admin/views/settings-info.php:165
|
1106 |
|
1107 |
#: admin/views/settings-tools-export.php:17
|
1108 |
msgid ""
|
1109 |
+
"The following code can be used to register a local version of the selected field group(s). A local "
|
1110 |
+
"field group can provide many benefits such as faster load times, version control & dynamic fields/"
|
1111 |
+
"settings. Simply copy and paste the following code to your theme's functions.php file or include it "
|
1112 |
+
"within an external file."
|
|
|
1113 |
msgstr ""
|
1114 |
|
1115 |
#: admin/views/settings-tools.php:5
|
1122 |
|
1123 |
#: admin/views/settings-tools.php:38
|
1124 |
msgid ""
|
1125 |
+
"Select the field groups you would like to export and then select your export method. Use the download "
|
1126 |
+
"button to export to a .json file which you can then import to another ACF installation. Use the "
|
1127 |
+
"generate button to export to PHP code which you can place in your theme."
|
|
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#: admin/views/settings-tools.php:50
|
1141 |
|
1142 |
#: admin/views/settings-tools.php:67
|
1143 |
msgid ""
|
1144 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button "
|
1145 |
+
"below, ACF will import the field groups."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1159 |
|
1160 |
#: admin/views/update-network.php:10
|
1161 |
msgid ""
|
1162 |
+
"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade "
|
1163 |
+
"Database”."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
1182 |
|
1183 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1184 |
msgid ""
|
1185 |
+
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to "
|
1186 |
+
"run the updater now?"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
#: admin/views/update-network.php:157
|
1205 |
|
1206 |
#: admin/views/update-notice.php:25
|
1207 |
msgid ""
|
1208 |
+
"Before you start using the new awesome features, please update your database to the newest version."
|
|
|
1209 |
msgstr ""
|
1210 |
|
1211 |
#: admin/views/update.php:12
|
1308 |
msgid "jQuery"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512
|
1312 |
+
#: pro/fields/repeater.php:392
|
1313 |
msgid "Layout"
|
1314 |
msgstr "Typ zobrazení"
|
1315 |
|
1371 |
msgid "red : Red"
|
1372 |
msgstr "cervena : Červená"
|
1373 |
|
1374 |
+
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150
|
1375 |
+
#: fields/radio.php:222 fields/select.php:397 fields/text.php:148 fields/textarea.php:145
|
1376 |
+
#: fields/true_false.php:115 fields/url.php:117 fields/wysiwyg.php:345
|
|
|
1377 |
msgid "Default Value"
|
1378 |
msgstr "Výchozí hodnota"
|
1379 |
|
1453 |
msgid "Email"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149
|
1457 |
+
#: fields/textarea.php:146 fields/url.php:118 fields/wysiwyg.php:346
|
|
|
1458 |
msgid "Appears when creating a new post"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157
|
1462 |
+
#: fields/textarea.php:154 fields/url.php:126
|
1463 |
msgid "Placeholder Text"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158
|
1467 |
+
#: fields/textarea.php:155 fields/url.php:127
|
1468 |
msgid "Appears within the input"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
|
|
1472 |
msgid "Prepend"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
|
|
1476 |
msgid "Appears before the input"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
|
|
1480 |
msgid "Append"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
|
|
1484 |
msgid "Appears after the input"
|
1485 |
msgstr ""
|
1486 |
|
1556 |
msgid "Restrict which files can be uploaded"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290
|
1560 |
+
#: pro/fields/gallery.php:684 pro/fields/gallery.php:717
|
1561 |
msgid "File size"
|
1562 |
msgstr ""
|
1563 |
|
1613 |
msgid "Set the initial zoom level"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262
|
1617 |
+
#: pro/fields/gallery.php:673 pro/fields/gallery.php:706
|
1618 |
msgid "Height"
|
1619 |
msgstr ""
|
1620 |
|
1674 |
msgid "Shown when entering data"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695
|
|
|
1678 |
msgid "Restrict which images can be uploaded"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665
|
1682 |
+
#: pro/fields/gallery.php:698
|
1683 |
msgid "Width"
|
1684 |
msgstr ""
|
1685 |
|
1749 |
msgid "Archives"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690
|
|
|
1753 |
msgid "Filter by Post Type"
|
1754 |
msgstr ""
|
1755 |
|
1756 |
+
#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698
|
|
|
1757 |
msgid "All post types"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
+
#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704
|
|
|
1761 |
msgid "Filter by Taxonomy"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
+
#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712
|
|
|
1765 |
msgid "All taxonomies"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765
|
1769 |
+
#: fields/user.php:452
|
1770 |
msgid "Allow Null?"
|
1771 |
msgstr "Povolit prázdné?"
|
1772 |
|
1773 |
+
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466
|
|
|
1774 |
msgid "Select multiple values?"
|
1775 |
msgstr "Vybrat více hodnot?"
|
1776 |
|
1778 |
msgid "Password"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769
|
|
|
1782 |
msgid "Post Object"
|
1783 |
msgstr "Objekt příspěvku"
|
1784 |
|
1888 |
|
1889 |
#: fields/tab.php:133
|
1890 |
msgid ""
|
1891 |
+
"The tab field will display incorrectly when added to a Table style repeater field or flexible content "
|
1892 |
+
"field layout"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
#: fields/tab.php:146
|
1896 |
+
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
|
|
|
|
1897 |
msgstr ""
|
1898 |
|
1899 |
#: fields/tab.php:148
|
1900 |
msgid ""
|
1901 |
+
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped "
|
1902 |
+
"together using this field's label as the tab heading."
|
|
|
1903 |
msgstr ""
|
1904 |
|
1905 |
#: fields/tab.php:155
|
2165 |
|
2166 |
#: pro/admin/views/settings-updates.php:24
|
2167 |
msgid ""
|
2168 |
+
"To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
|
|
2169 |
msgstr ""
|
2170 |
|
2171 |
#: pro/admin/views/settings-updates.php:24
|
2215 |
#: pro/core/updates.php:186
|
2216 |
#, php-format
|
2217 |
msgid ""
|
2218 |
+
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't "
|
2219 |
+
"have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
|
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: pro/fields/flexible-content.php:36
|
2492 |
#~ msgstr "Žádný metabox"
|
2493 |
|
2494 |
#~ msgid ""
|
2495 |
+
#~ "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
|
|
2496 |
#~ msgstr ""
|
2497 |
+
#~ "Přečtěte si dokumentaci, naučte se funkce a objevte zajímavé tipy & triky pro váš další webový "
|
2498 |
+
#~ "projekt."
|
2499 |
|
2500 |
#~ msgid "Visit the ACF website"
|
2501 |
#~ msgstr "Navštívit web ACF"
|
2551 |
#~ msgid "Activate Add-ons."
|
2552 |
#~ msgstr "Aktivovat přídavky."
|
2553 |
|
2554 |
+
#~ msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
|
|
|
|
2555 |
#~ msgstr ""
|
2556 |
+
#~ "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může být použit na více webech."
|
|
|
2557 |
|
2558 |
#~ msgid "Find Add-ons"
|
2559 |
#~ msgstr "Hledat přídavky"
|
2582 |
#~ msgid "Export Field Groups to XML"
|
2583 |
#~ msgstr "Exportovat skupiny polí do XML"
|
2584 |
|
2585 |
+
#~ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
2586 |
+
#~ msgstr "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním importním pluginem WP."
|
|
|
|
|
|
|
|
|
2587 |
|
2588 |
#~ msgid ""
|
2589 |
+
#~ "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for "
|
2590 |
+
#~ "migrating fields groups between Wp websites."
|
2591 |
#~ msgstr ""
|
2592 |
+
#~ "Importované skupiny polí <b>budou</b> zobrazeny v seznamu upravitelných skupin polí. Toto je "
|
2593 |
+
#~ "užitečné pro přesouvání skupin polí mezi WP weby."
|
2594 |
|
2595 |
#~ msgid "Select field group(s) from the list and click \"Export XML\""
|
2596 |
#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Export XML\""
|
2623 |
#~ msgstr "Registrovat skupiny polí"
|
2624 |
|
2625 |
#~ msgid ""
|
2626 |
+
#~ "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful "
|
2627 |
+
#~ "for including fields in themes."
|
2628 |
#~ msgstr ""
|
2629 |
+
#~ "Registrované skupiny polí <b>nebudou</b> zobrazeny v seznamu upravitelných skupin polí. Toto je "
|
2630 |
+
#~ "užitečné při používání polí v šablonách."
|
|
|
2631 |
|
2632 |
#~ msgid ""
|
2633 |
+
#~ "Please note that if you export and register field groups within the same WP, you will see duplicate "
|
2634 |
+
#~ "fields on your edit screens. To fix this, please move the original field group to the trash or "
|
2635 |
+
#~ "remove the code from your functions.php file."
|
|
|
2636 |
#~ msgstr ""
|
2637 |
+
#~ "Mějte prosím na paměti, že pokud exportujete a registrujete skupiny polí v rámci stejného "
|
2638 |
+
#~ "WordPressu, uvidíte na obrazovkách úprav duplikovaná pole. Pro nápravu prosím přesuňte původní "
|
2639 |
+
#~ "skupinu polí do koše nebo odstraňte kód ze souboru functions.php."
|
|
|
2640 |
|
2641 |
#~ msgid "Select field group(s) from the list and click \"Create PHP\""
|
2642 |
#~ msgstr "Vyberte skupinu(y) polí ze seznamu a klikněte na \"Vytvořit PHP\""
|
2647 |
#~ msgid "Paste into your functions.php file"
|
2648 |
#~ msgstr "Vložte jej do vašeho souboru functions.php"
|
2649 |
|
2650 |
+
#~ msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
2651 |
+
#~ msgstr "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních několika řádcích."
|
|
|
|
|
|
|
2652 |
|
2653 |
#~ msgid "Create PHP"
|
2654 |
#~ msgstr "Vytvořit PHP"
|
2659 |
#~ msgid ""
|
2660 |
#~ "/**\n"
|
2661 |
#~ " * Activate Add-ons\n"
|
2662 |
+
#~ " * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
|
2663 |
+
#~ " * Since all activation codes are multi-site licenses, you are allowed to include your key in "
|
2664 |
+
#~ "premium themes. \n"
|
2665 |
+
#~ " * Use the commented out code to update the database with your activation code. \n"
|
2666 |
+
#~ " * You may place this code inside an IF statement that only runs on theme activation.\n"
|
|
|
|
|
|
|
2667 |
#~ " */"
|
2668 |
#~ msgstr ""
|
2669 |
#~ "/**\n"
|
2670 |
#~ " * Aktivovat přídavky\n"
|
2671 |
+
#~ " * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve vaší šabloně. \n"
|
2672 |
+
#~ " * Jelikož jsou všechny aktivační kódy licencovány pro použití na více webech, můžete je použít ve "
|
2673 |
+
#~ "vaší premium šabloně. \n"
|
2674 |
+
#~ " * Použijte zakomentovaný kód pro aktualizaci databáze s vaším aktivačním kódem. \n"
|
2675 |
+
#~ " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po aktivaci šablony.\n"
|
|
|
|
|
|
|
2676 |
#~ " */"
|
2677 |
|
2678 |
#~ msgid ""
|
2679 |
#~ "/**\n"
|
2680 |
#~ " * Register field groups\n"
|
2681 |
+
#~ " * The register_field_group function accepts 1 array which holds the relevant data to register a "
|
2682 |
+
#~ "field group\n"
|
2683 |
+
#~ " * You may edit the array as you see fit. However, this may result in errors if the array is not "
|
2684 |
+
#~ "compatible with ACF\n"
|
2685 |
#~ " * This code must run every time the functions.php file is read\n"
|
2686 |
#~ " */"
|
2687 |
#~ msgstr ""
|
2688 |
#~ "/**\n"
|
2689 |
#~ " * Registrace skupiny polí\n"
|
2690 |
+
#~ " * Funkce register_field_group akceptuje pole, které obsahuje relevatní data k registraci skupiny "
|
2691 |
+
#~ "polí\n"
|
2692 |
+
#~ " * Pole můžete upravit podle potřeb. Může to ovšem vyústit v pole nekompatibilní s ACF\n"
|
|
|
2693 |
#~ " * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
|
2694 |
#~ " */"
|
2695 |
|
2765 |
#~ msgid "Field Order"
|
2766 |
#~ msgstr "Pořadí pole"
|
2767 |
|
2768 |
+
#~ msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
2769 |
+
#~ msgstr "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření prvního pole."
|
|
|
|
|
|
|
|
|
2770 |
|
2771 |
#~ msgid "Edit this Field"
|
2772 |
#~ msgstr "Upravit toto pole"
|
2898 |
#~ msgstr "Odemkněte přídavek konfigurace s aktivačním kódem"
|
2899 |
|
2900 |
#~ msgid "Field groups are created in order <br />from lowest to highest."
|
2901 |
+
#~ msgstr "Skupiny polí jsou vytvořeny v pořadí <br /> od nejnižšího k nejvyššímu."
|
|
|
2902 |
|
2903 |
#~ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
2904 |
#~ msgstr "<b>Vybrat</b> položky pro <b>skrytí</b> z obrazovky úprav"
|
2905 |
|
2906 |
#~ msgid ""
|
2907 |
+
#~ "If multiple field groups appear on an edit screen, the first field group's options will be used. "
|
2908 |
+
#~ "(the one with the lowest order number)"
|
2909 |
#~ msgstr ""
|
2910 |
+
#~ "Pokud se na obrazovce úprav objeví několik skupin polí, bude použito nastavení první skupiny. (s "
|
2911 |
+
#~ "nejžším pořadovým číslem)"
|
2912 |
|
2913 |
#~ msgid "Everything Fields deactivated"
|
2914 |
#~ msgstr "Všechna pole deaktivována"
|
2930 |
#~ "\t\t\t\tTip: deselect all post types to show all post type's posts"
|
2931 |
#~ msgstr ""
|
2932 |
#~ "Filtrovat příspěvky výběrem typu příspěvku<br />\n"
|
2933 |
+
#~ "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků všech typů příspěvků"
|
|
|
2934 |
|
2935 |
#~ msgid "Set to -1 for infinite"
|
2936 |
#~ msgstr "Nastavte na -1 pro nekonečno"
|
lang/acf-de_CH.mo
CHANGED
Binary file
|
lang/acf-de_CH.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Advanced Custom Fields Pro v5.
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Raphael Hüni <rafhun@gmail.com>\n"
|
9 |
"Language: de_CH\n"
|
@@ -23,116 +23,116 @@ msgstr ""
|
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
# @ acf
|
26 |
-
#: acf.php:
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
-
#: acf.php:
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
-
#: acf.php:
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
-
#: acf.php:
|
42 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
-
#: acf.php:
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
-
#: acf.php:
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
-
#: acf.php:
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
-
#: acf.php:
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
-
#: acf.php:
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
-
#: acf.php:
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
-
#: acf.php:
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
-
#: acf.php:
|
83 |
#: includes/admin/admin-field-group.php:275
|
84 |
#: includes/admin/admin-field-groups.php:510
|
85 |
-
#: pro/fields/class-acf-field-clone.php:
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
-
#: acf.php:
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
-
#: acf.php:
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
-
#: acf.php:
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
-
#: acf.php:
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Neues Feld"
|
109 |
|
110 |
# @ acf
|
111 |
-
#: acf.php:
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
-
#: acf.php:
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
-
#: acf.php:
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
-
#: acf.php:
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
-
#: acf.php:
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inaktiv"
|
134 |
|
135 |
-
#: acf.php:
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
@@ -207,7 +207,7 @@ msgstr "Es ist ein Titel für die Feld-Gruppe erforderlich"
|
|
207 |
|
208 |
# @ acf
|
209 |
#: includes/admin/admin-field-group.php:273
|
210 |
-
#: includes/api/api-field-group.php:
|
211 |
msgid "copy"
|
212 |
msgstr "kopieren"
|
213 |
|
@@ -217,7 +217,7 @@ msgstr "kopieren"
|
|
217 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
218 |
#: includes/admin/views/field-group-locations.php:29
|
219 |
#: includes/admin/views/html-location-group.php:3
|
220 |
-
#: includes/api/api-helpers.php:
|
221 |
msgid "or"
|
222 |
msgstr "oder"
|
223 |
|
@@ -239,7 +239,7 @@ msgstr "Benutzerdefiniertes Feld verschieben"
|
|
239 |
# @ acf
|
240 |
#: includes/admin/admin-field-group.php:279
|
241 |
msgid "This field cannot be moved until its changes have been saved"
|
242 |
-
msgstr "Diese Feld kann nicht verschoben werden, bevor es gesichert wurde
|
243 |
|
244 |
# @ acf
|
245 |
#: includes/admin/admin-field-group.php:280
|
@@ -247,10 +247,10 @@ msgid "Null"
|
|
247 |
msgstr "Null"
|
248 |
|
249 |
# @ acf
|
250 |
-
#: includes/admin/admin-field-group.php:281 includes/input.php:
|
251 |
msgid "The changes you made will be lost if you navigate away from this page"
|
252 |
msgstr ""
|
253 |
-
"Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen wird
|
254 |
|
255 |
# @ acf
|
256 |
#: includes/admin/admin-field-group.php:282
|
@@ -335,7 +335,7 @@ msgstr "Synchronisierung verfügbar"
|
|
335 |
|
336 |
# @ acf
|
337 |
#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38
|
338 |
-
#: pro/fields/class-acf-field-gallery.php:
|
339 |
msgid "Title"
|
340 |
msgstr "Titel"
|
341 |
|
@@ -344,7 +344,7 @@ msgstr "Titel"
|
|
344 |
#: includes/admin/views/field-group-options.php:96
|
345 |
#: includes/admin/views/install-network.php:21
|
346 |
#: includes/admin/views/install-network.php:29
|
347 |
-
#: pro/fields/class-acf-field-gallery.php:
|
348 |
msgid "Description"
|
349 |
msgstr "Beschreibung"
|
350 |
|
@@ -363,7 +363,7 @@ msgstr ""
|
|
363 |
# @ acf
|
364 |
#: includes/admin/admin-field-groups.php:609
|
365 |
#: includes/admin/settings-info.php:76
|
366 |
-
#: pro/admin/views/html-settings-updates.php:
|
367 |
msgid "Changelog"
|
368 |
msgstr "Versionshinweise"
|
369 |
|
@@ -379,7 +379,7 @@ msgstr "Dokumentation (engl.)"
|
|
379 |
|
380 |
#: includes/admin/admin-field-groups.php:619
|
381 |
msgid "Website"
|
382 |
-
msgstr ""
|
383 |
|
384 |
#: includes/admin/admin-field-groups.php:620
|
385 |
msgid "Documentation"
|
@@ -390,9 +390,8 @@ msgid "Support"
|
|
390 |
msgstr "Hilfe"
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:623
|
393 |
-
#, fuzzy
|
394 |
msgid "Pro"
|
395 |
-
msgstr "
|
396 |
|
397 |
#: includes/admin/admin-field-groups.php:628
|
398 |
#, php-format
|
@@ -408,14 +407,14 @@ msgstr "Dieses Element duplizieren"
|
|
408 |
#: includes/admin/admin-field-groups.php:668
|
409 |
#: includes/admin/admin-field-groups.php:684
|
410 |
#: includes/admin/views/field-group-field.php:49
|
411 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
412 |
msgid "Duplicate"
|
413 |
msgstr "Duplizieren"
|
414 |
|
415 |
# @ acf
|
416 |
#: includes/admin/admin-field-groups.php:701
|
417 |
-
#: includes/fields/class-acf-field-google-map.php:
|
418 |
-
#: includes/fields/class-acf-field-relationship.php:
|
419 |
msgid "Search"
|
420 |
msgstr "Suchen"
|
421 |
|
@@ -438,11 +437,10 @@ msgstr "Synchronisieren"
|
|
438 |
|
439 |
#: includes/admin/admin-field-groups.php:780
|
440 |
msgid "Apply"
|
441 |
-
msgstr ""
|
442 |
|
443 |
# @ acf
|
444 |
#: includes/admin/admin-field-groups.php:798
|
445 |
-
#, fuzzy
|
446 |
msgid "Bulk Actions"
|
447 |
msgstr "Massenverarbeitung"
|
448 |
|
@@ -506,14 +504,14 @@ msgstr "Keine Feld-Gruppe ausgewählt"
|
|
506 |
|
507 |
# @ acf
|
508 |
#: includes/admin/settings-tools.php:184
|
509 |
-
#: includes/fields/class-acf-field-file.php:
|
510 |
msgid "No file selected"
|
511 |
msgstr "Keine Datei ausgewählt"
|
512 |
|
513 |
# @ acf
|
514 |
#: includes/admin/settings-tools.php:197
|
515 |
msgid "Error uploading file. Please try again"
|
516 |
-
msgstr "Fehler beim Upload. Bitte erneut versuchen
|
517 |
|
518 |
# @ acf
|
519 |
#: includes/admin/settings-tools.php:206
|
@@ -544,13 +542,13 @@ msgstr "Zeige dieses Feld, wenn"
|
|
544 |
|
545 |
# @ acf
|
546 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
547 |
-
#: includes/locations.php:
|
548 |
msgid "is equal to"
|
549 |
msgstr "ist gleich"
|
550 |
|
551 |
# @ acf
|
552 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
553 |
-
#: includes/locations.php:
|
554 |
msgid "is not equal to"
|
555 |
msgstr "ist ungleich"
|
556 |
|
@@ -568,8 +566,8 @@ msgstr "Regel-Gruppe hinzufügen"
|
|
568 |
|
569 |
# @ acf
|
570 |
#: includes/admin/views/field-group-field.php:41
|
571 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
572 |
-
#: pro/fields/class-acf-field-repeater.php:
|
573 |
msgid "Drag to reorder"
|
574 |
msgstr "Ziehen zum Sortieren"
|
575 |
|
@@ -581,9 +579,10 @@ msgstr "Feld bearbeiten"
|
|
581 |
|
582 |
# @ acf
|
583 |
#: includes/admin/views/field-group-field.php:48
|
584 |
-
#: includes/fields/class-acf-field-
|
585 |
-
#: includes/fields/class-acf-field-
|
586 |
-
#:
|
|
|
587 |
msgid "Edit"
|
588 |
msgstr "Bearbeiten"
|
589 |
|
@@ -609,7 +608,7 @@ msgstr "Feld löschen"
|
|
609 |
|
610 |
# @ acf
|
611 |
#: includes/admin/views/field-group-field.php:51
|
612 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
613 |
msgid "Delete"
|
614 |
msgstr "Löschen"
|
615 |
|
@@ -624,60 +623,60 @@ msgid "This is the name which will appear on the EDIT page"
|
|
624 |
msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt"
|
625 |
|
626 |
# @ acf
|
627 |
-
#: includes/admin/views/field-group-field.php:
|
628 |
msgid "Field Name"
|
629 |
msgstr "Feld-Name"
|
630 |
|
631 |
# @ acf
|
632 |
-
#: includes/admin/views/field-group-field.php:
|
633 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
634 |
msgstr ""
|
635 |
"Nur ein Wort ohne Leerzeichen; es sind nur Unterstriche und Bindestriche als "
|
636 |
"Sonderzeichen erlaubt"
|
637 |
|
638 |
# @ acf
|
639 |
-
#: includes/admin/views/field-group-field.php:
|
640 |
msgid "Field Type"
|
641 |
msgstr "Feld-Typ"
|
642 |
|
643 |
# @ acf
|
644 |
-
#: includes/admin/views/field-group-field.php:
|
645 |
-
#: includes/fields/class-acf-field-tab.php:
|
646 |
msgid "Instructions"
|
647 |
msgstr "Anweisungen"
|
648 |
|
649 |
# @ acf
|
650 |
-
#: includes/admin/views/field-group-field.php:
|
651 |
msgid "Instructions for authors. Shown when submitting data"
|
652 |
msgstr "Anweisungen für Autoren werden in der Bearbeitungs-Ansicht angezeigt"
|
653 |
|
654 |
# @ acf
|
655 |
-
#: includes/admin/views/field-group-field.php:
|
656 |
msgid "Required?"
|
657 |
msgstr "Erforderlich?"
|
658 |
|
659 |
# @ acf
|
660 |
-
#: includes/admin/views/field-group-field.php:
|
661 |
msgid "Wrapper Attributes"
|
662 |
msgstr "Wrapper-Attribute"
|
663 |
|
664 |
# @ acf
|
665 |
-
#: includes/admin/views/field-group-field.php:
|
666 |
msgid "width"
|
667 |
msgstr "Breite"
|
668 |
|
669 |
# @ acf
|
670 |
-
#: includes/admin/views/field-group-field.php:
|
671 |
msgid "class"
|
672 |
msgstr "Klasse"
|
673 |
|
674 |
# @ acf
|
675 |
-
#: includes/admin/views/field-group-field.php:
|
676 |
msgid "id"
|
677 |
msgstr "ID"
|
678 |
|
679 |
# @ acf
|
680 |
-
#: includes/admin/views/field-group-field.php:
|
681 |
msgid "Close Field"
|
682 |
msgstr "Feld schliessen"
|
683 |
|
@@ -688,23 +687,24 @@ msgstr "Reihenfolge"
|
|
688 |
|
689 |
# @ acf
|
690 |
#: includes/admin/views/field-group-fields.php:5
|
691 |
-
#: includes/fields/class-acf-field-
|
692 |
-
#: includes/fields/class-acf-field-
|
693 |
-
#: includes/fields/class-acf-field-
|
694 |
-
#:
|
|
|
695 |
msgid "Label"
|
696 |
msgstr "Name"
|
697 |
|
698 |
# @ acf
|
699 |
#: includes/admin/views/field-group-fields.php:6
|
700 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
701 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
702 |
msgid "Name"
|
703 |
msgstr "Feld-Name"
|
704 |
|
705 |
#: includes/admin/views/field-group-fields.php:7
|
706 |
msgid "Key"
|
707 |
-
msgstr ""
|
708 |
|
709 |
# @ acf
|
710 |
#: includes/admin/views/field-group-fields.php:8
|
@@ -781,14 +781,14 @@ msgstr "Platzierung Beschriftung"
|
|
781 |
|
782 |
# @ acf
|
783 |
#: includes/admin/views/field-group-options.php:62
|
784 |
-
#: includes/fields/class-acf-field-tab.php:
|
785 |
msgid "Top aligned"
|
786 |
msgstr "Über dem Feld"
|
787 |
|
788 |
# @ acf
|
789 |
#: includes/admin/views/field-group-options.php:63
|
790 |
-
#: includes/fields/class-acf-field-tab.php:
|
791 |
-
msgid "Left
|
792 |
msgstr "Links neben dem Feld"
|
793 |
|
794 |
# @ acf
|
@@ -809,7 +809,7 @@ msgstr "Unterhalb der Felder"
|
|
809 |
# @ acf
|
810 |
#: includes/admin/views/field-group-options.php:85
|
811 |
msgid "Order No."
|
812 |
-
msgstr "
|
813 |
|
814 |
#: includes/admin/views/field-group-options.php:86
|
815 |
msgid "Field groups with a lower order will appear first"
|
@@ -892,7 +892,7 @@ msgstr "Seiten-Attribute"
|
|
892 |
|
893 |
# @ acf
|
894 |
#: includes/admin/views/field-group-options.php:126
|
895 |
-
#: includes/fields/class-acf-field-relationship.php:
|
896 |
msgid "Featured Image"
|
897 |
msgstr "Beitragsbild"
|
898 |
|
@@ -986,25 +986,25 @@ msgstr "Aktualisiere Daten auf Version %s"
|
|
986 |
|
987 |
# @ acf
|
988 |
#: includes/admin/views/install-notice.php:8
|
989 |
-
#: pro/fields/class-acf-field-repeater.php:
|
990 |
msgid "Repeater"
|
991 |
msgstr "Wiederholung"
|
992 |
|
993 |
# @ acf
|
994 |
#: includes/admin/views/install-notice.php:9
|
995 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
996 |
msgid "Flexible Content"
|
997 |
msgstr "Flexible Inhalte"
|
998 |
|
999 |
# @ acf
|
1000 |
#: includes/admin/views/install-notice.php:10
|
1001 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1002 |
msgid "Gallery"
|
1003 |
msgstr "Galerie"
|
1004 |
|
1005 |
# @ acf
|
1006 |
#: includes/admin/views/install-notice.php:11
|
1007 |
-
#: pro/locations/class-acf-location-options-page.php:
|
1008 |
msgid "Options Page"
|
1009 |
msgstr "Options-Seite"
|
1010 |
|
@@ -1034,6 +1034,8 @@ msgid ""
|
|
1034 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
1035 |
"latest version."
|
1036 |
msgstr ""
|
|
|
|
|
1037 |
|
1038 |
# @ acf
|
1039 |
#: includes/admin/views/install.php:7
|
@@ -1129,7 +1131,7 @@ msgstr ""
|
|
1129 |
# @ acf
|
1130 |
#: includes/admin/views/settings-info.php:39
|
1131 |
msgid "Goodbye Add-ons. Hello PRO"
|
1132 |
-
msgstr "Macht's gut Add-ons… Hallo PRO
|
1133 |
|
1134 |
# @ acf
|
1135 |
#: includes/admin/views/settings-info.php:44
|
@@ -1206,7 +1208,7 @@ msgstr ""
|
|
1206 |
"Um möglichen Fragen vorzubeugen haben wir haben eine <a href=\"%s\"> "
|
1207 |
"Anleitung für den Aktualisierungs-Prozess (Engl.)</a> verfasst. Sollten "
|
1208 |
"dennoch Fragen aufgeworfen werden, kontaktiere bitte unser <a href=\"%s\"> "
|
1209 |
-
"Support-Team </a
|
1210 |
|
1211 |
# @ acf
|
1212 |
#: includes/admin/views/settings-info.php:66
|
@@ -1364,7 +1366,7 @@ msgstr ""
|
|
1364 |
|
1365 |
# @ acf
|
1366 |
#: includes/admin/views/settings-info.php:144
|
1367 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1368 |
msgid "Page Link"
|
1369 |
msgstr "Seiten-Link"
|
1370 |
|
@@ -1467,7 +1469,7 @@ msgstr ""
|
|
1467 |
|
1468 |
# @ acf
|
1469 |
#: includes/admin/views/settings-tools.php:77
|
1470 |
-
#: includes/fields/class-acf-field-file.php:
|
1471 |
msgid "Select File"
|
1472 |
msgstr "Datei auswählen"
|
1473 |
|
@@ -1497,56 +1499,56 @@ msgid "Full Size"
|
|
1497 |
msgstr "Volle Grösse"
|
1498 |
|
1499 |
# @ acf
|
1500 |
-
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:
|
1501 |
-
#: pro/fields/class-acf-field-clone.php:
|
1502 |
msgid "(no title)"
|
1503 |
msgstr "(ohne Titel)"
|
1504 |
|
1505 |
-
#: includes/api/api-helpers.php:
|
1506 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1507 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1508 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1509 |
msgid "Parent"
|
1510 |
msgstr "Eltern"
|
1511 |
|
1512 |
# @ acf
|
1513 |
-
#: includes/api/api-helpers.php:
|
1514 |
#, php-format
|
1515 |
msgid "Image width must be at least %dpx."
|
1516 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1517 |
|
1518 |
# @ acf
|
1519 |
-
#: includes/api/api-helpers.php:
|
1520 |
#, php-format
|
1521 |
msgid "Image width must not exceed %dpx."
|
1522 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1523 |
|
1524 |
# @ acf
|
1525 |
-
#: includes/api/api-helpers.php:
|
1526 |
#, php-format
|
1527 |
msgid "Image height must be at least %dpx."
|
1528 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1529 |
|
1530 |
# @ acf
|
1531 |
-
#: includes/api/api-helpers.php:
|
1532 |
#, php-format
|
1533 |
msgid "Image height must not exceed %dpx."
|
1534 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1535 |
|
1536 |
# @ acf
|
1537 |
-
#: includes/api/api-helpers.php:
|
1538 |
#, php-format
|
1539 |
msgid "File size must be at least %s."
|
1540 |
msgstr "Die Dateigrösse muss mindestens %s sein."
|
1541 |
|
1542 |
# @ acf
|
1543 |
-
#: includes/api/api-helpers.php:
|
1544 |
#, php-format
|
1545 |
msgid "File size must must not exceed %s."
|
1546 |
msgstr "Die Dateigrösse darf %s nicht überschreiten."
|
1547 |
|
1548 |
# @ acf
|
1549 |
-
#: includes/api/api-helpers.php:
|
1550 |
#, php-format
|
1551 |
msgid "File type must be %s."
|
1552 |
msgstr "Der Dateityp muss %s sein."
|
@@ -1577,1174 +1579,1198 @@ msgid "jQuery"
|
|
1577 |
msgstr "jQuery"
|
1578 |
|
1579 |
# @ acf
|
1580 |
-
#: includes/fields.php:149
|
1581 |
-
#: includes/fields/class-acf-field-group.php:
|
1582 |
-
#: includes/fields/class-acf-field-
|
1583 |
-
#:
|
1584 |
-
#:
|
1585 |
-
#: pro/fields/class-acf-field-
|
1586 |
-
#: pro/fields/class-acf-field-
|
|
|
|
|
1587 |
msgid "Layout"
|
1588 |
msgstr "Layout"
|
1589 |
|
1590 |
# @ acf
|
1591 |
-
#: includes/fields.php:
|
1592 |
msgid "Field type does not exist"
|
1593 |
msgstr "Feld-Typ existiert nicht"
|
1594 |
|
1595 |
-
#: includes/fields.php:
|
1596 |
-
#, fuzzy
|
1597 |
msgid "Unknown"
|
1598 |
-
msgstr "
|
1599 |
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
msgid "Checkbox"
|
1604 |
-
msgstr "Checkbox"
|
1605 |
-
|
1606 |
-
# @ acf
|
1607 |
-
#: includes/fields/class-acf-field-checkbox.php:150
|
1608 |
-
msgid "Toggle All"
|
1609 |
-
msgstr "Alle auswählen"
|
1610 |
-
|
1611 |
-
#: includes/fields/class-acf-field-checkbox.php:207
|
1612 |
-
msgid "Add new choice"
|
1613 |
-
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1614 |
|
1615 |
# @ acf
|
1616 |
-
#: includes/fields/class-acf-field-
|
1617 |
-
#: includes/fields/class-acf-field-
|
1618 |
-
#: includes/fields/class-acf-field-
|
|
|
1619 |
msgid "Choices"
|
1620 |
msgstr "Auswahlmöglichkeiten"
|
1621 |
|
1622 |
# @ acf
|
1623 |
-
#: includes/fields/class-acf-field-
|
1624 |
-
#: includes/fields/class-acf-field-
|
1625 |
-
#: includes/fields/class-acf-field-
|
|
|
1626 |
msgid "Enter each choice on a new line."
|
1627 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1628 |
|
1629 |
# @ acf
|
1630 |
-
#: includes/fields/class-acf-field-
|
1631 |
-
#: includes/fields/class-acf-field-
|
1632 |
-
#: includes/fields/class-acf-field-
|
|
|
1633 |
msgid "For more control, you may specify both a value and label like this:"
|
1634 |
msgstr ""
|
1635 |
"Für eine bessere Darstellung, kannst Du auch einen Wert und dazu dessen "
|
1636 |
"Beschriftung definieren:"
|
1637 |
|
1638 |
# @ acf
|
1639 |
-
#: includes/fields/class-acf-field-
|
1640 |
-
#: includes/fields/class-acf-field-
|
1641 |
-
#: includes/fields/class-acf-field-
|
|
|
1642 |
msgid "red : Red"
|
1643 |
msgstr "rot : Rot"
|
1644 |
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
#: includes/fields/class-acf-field-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
msgstr "Benutzerdefinierte Werte sichern"
|
1656 |
-
|
1657 |
-
#: includes/fields/class-acf-field-checkbox.php:271
|
1658 |
-
msgid "Save 'custom' values to the field's choices"
|
1659 |
-
msgstr ""
|
1660 |
-
"Sichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1661 |
|
1662 |
# @ acf
|
1663 |
-
#: includes/fields/class-acf-field-
|
1664 |
-
#: includes/fields/class-acf-field-
|
1665 |
-
#: includes/fields/class-acf-field-
|
1666 |
-
#: includes/fields/class-acf-field-
|
1667 |
-
#: includes/fields/class-acf-field-
|
1668 |
-
#: includes/fields/class-acf-field-
|
1669 |
-
#: includes/fields/class-acf-field-
|
1670 |
-
#: includes/fields/class-acf-field-
|
1671 |
-
#: includes/fields/class-acf-field-
|
1672 |
-
#: includes/fields/class-acf-field-
|
1673 |
-
#: includes/fields/class-acf-field-
|
|
|
|
|
1674 |
msgid "Default Value"
|
1675 |
msgstr "Standardwert"
|
1676 |
|
1677 |
# @ acf
|
1678 |
-
#: includes/fields/class-acf-field-
|
1679 |
-
#: includes/fields/class-acf-field-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
#: includes/fields/class-acf-field-
|
1685 |
-
#: includes/fields/class-acf-field-
|
1686 |
-
|
1687 |
-
|
|
|
1688 |
|
1689 |
# @ acf
|
1690 |
-
#: includes/fields/class-acf-field-
|
1691 |
-
#: includes/fields/class-acf-field-
|
|
|
1692 |
msgid "Horizontal"
|
1693 |
msgstr "Horizontal"
|
1694 |
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
msgstr ""
|
1702 |
-
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1703 |
|
1704 |
# @ acf
|
1705 |
-
#: includes/fields/class-acf-field-
|
1706 |
-
#: includes/fields/class-acf-field-
|
1707 |
-
#: includes/fields/class-acf-field-
|
1708 |
-
#: includes/fields/class-acf-field-
|
1709 |
-
#: includes/fields/class-acf-field-
|
1710 |
-
#: includes/fields/class-acf-field-
|
|
|
1711 |
msgid "Return Value"
|
1712 |
msgstr "Rückgabewert"
|
1713 |
|
1714 |
# @ acf
|
1715 |
-
#: includes/fields/class-acf-field-
|
1716 |
-
#: includes/fields/class-acf-field-
|
1717 |
-
#: includes/fields/class-acf-field-
|
1718 |
-
#: includes/fields/class-acf-field-
|
1719 |
-
#: includes/fields/class-acf-field-
|
|
|
1720 |
msgid "Specify the returned value on front end"
|
1721 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1722 |
|
1723 |
-
#: includes/fields/class-acf-field-
|
1724 |
-
#: includes/fields/class-acf-field-
|
1725 |
-
#: includes/fields/class-acf-field-
|
|
|
1726 |
msgid "Value"
|
1727 |
msgstr "Wert"
|
1728 |
|
1729 |
-
#: includes/fields/class-acf-field-
|
1730 |
-
#: includes/fields/class-acf-field-
|
1731 |
-
#: includes/fields/class-acf-field-
|
|
|
1732 |
msgid "Both (Array)"
|
1733 |
msgstr "Beide (Array)"
|
1734 |
|
1735 |
# @ acf
|
1736 |
-
#: includes/fields/class-acf-field-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1737 |
msgid "Color Picker"
|
1738 |
msgstr "Farbe"
|
1739 |
|
1740 |
# @ acf
|
1741 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1742 |
msgid "Clear"
|
1743 |
msgstr "Leeren"
|
1744 |
|
1745 |
# @ acf
|
1746 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1747 |
msgid "Default"
|
1748 |
msgstr "Standard"
|
1749 |
|
1750 |
# @ acf
|
1751 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1752 |
msgid "Select Color"
|
1753 |
msgstr "Farbe auswählen"
|
1754 |
|
1755 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1756 |
msgid "Current Color"
|
1757 |
msgstr "Aktuelle Farbe"
|
1758 |
|
1759 |
# @ acf
|
1760 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1761 |
msgid "Date Picker"
|
1762 |
msgstr "Datum"
|
1763 |
|
1764 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1765 |
msgctxt "Date Picker JS closeText"
|
1766 |
msgid "Done"
|
1767 |
msgstr "Schliessen"
|
1768 |
|
1769 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1770 |
msgctxt "Date Picker JS currentText"
|
1771 |
msgid "Today"
|
1772 |
msgstr "Heute"
|
1773 |
|
1774 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1775 |
msgctxt "Date Picker JS nextText"
|
1776 |
msgid "Next"
|
1777 |
msgstr "Weiter"
|
1778 |
|
1779 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1780 |
msgctxt "Date Picker JS prevText"
|
1781 |
msgid "Prev"
|
1782 |
msgstr "Zurück"
|
1783 |
|
1784 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1785 |
msgctxt "Date Picker JS weekHeader"
|
1786 |
msgid "Wk"
|
1787 |
msgstr "KW"
|
1788 |
|
1789 |
# @ acf
|
1790 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1791 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1792 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1793 |
msgid "Display Format"
|
1794 |
msgstr "Darstellungs-Format"
|
1795 |
|
1796 |
# @ acf
|
1797 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1798 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1799 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1800 |
msgid "The format displayed when editing a post"
|
1801 |
msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
1802 |
|
1803 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1804 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1805 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1806 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1807 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1808 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1809 |
-
#, fuzzy
|
1810 |
msgid "Custom:"
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1814 |
msgid "Save Format"
|
1815 |
msgstr "Format sichern"
|
1816 |
|
1817 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1818 |
msgid "The format used when saving a value"
|
1819 |
msgstr "Das verwendete Format, wenn der Wert gesichert wird"
|
1820 |
|
1821 |
# @ acf
|
1822 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1823 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1824 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1825 |
-
#: includes/fields/class-acf-field-relationship.php:
|
1826 |
-
#: includes/fields/class-acf-field-select.php:
|
1827 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1828 |
msgid "Return Format"
|
1829 |
msgstr "Rückgabewert"
|
1830 |
|
1831 |
# @ acf
|
1832 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1833 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1834 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1835 |
msgid "The format returned via template functions"
|
1836 |
msgstr "Das Datums-Format für die Ausgabe in den Template-Funktionen"
|
1837 |
|
1838 |
# @ acf
|
1839 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1840 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1841 |
msgid "Week Starts On"
|
1842 |
msgstr "Die Woche beginnt am"
|
1843 |
|
1844 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1845 |
msgid "Date Time Picker"
|
1846 |
msgstr "Datum/Uhrzeit"
|
1847 |
|
1848 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1849 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1850 |
msgid "Choose Time"
|
1851 |
msgstr "Zeit setzen"
|
1852 |
|
1853 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1854 |
msgctxt "Date Time Picker JS timeText"
|
1855 |
msgid "Time"
|
1856 |
msgstr "Zeit"
|
1857 |
|
1858 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1859 |
msgctxt "Date Time Picker JS hourText"
|
1860 |
msgid "Hour"
|
1861 |
msgstr "Stunde"
|
1862 |
|
1863 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1864 |
msgctxt "Date Time Picker JS minuteText"
|
1865 |
msgid "Minute"
|
1866 |
msgstr "Minute"
|
1867 |
|
1868 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1869 |
msgctxt "Date Time Picker JS secondText"
|
1870 |
msgid "Second"
|
1871 |
msgstr "Sekunde"
|
1872 |
|
1873 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1874 |
msgctxt "Date Time Picker JS millisecText"
|
1875 |
msgid "Millisecond"
|
1876 |
msgstr "Millisekunde"
|
1877 |
|
1878 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1879 |
msgctxt "Date Time Picker JS microsecText"
|
1880 |
msgid "Microsecond"
|
1881 |
msgstr "Mikrosekunde"
|
1882 |
|
1883 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1884 |
msgctxt "Date Time Picker JS timezoneText"
|
1885 |
msgid "Time Zone"
|
1886 |
msgstr "Zeitzone"
|
1887 |
|
1888 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1889 |
msgctxt "Date Time Picker JS currentText"
|
1890 |
msgid "Now"
|
1891 |
msgstr "Jetzt"
|
1892 |
|
1893 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1894 |
msgctxt "Date Time Picker JS closeText"
|
1895 |
msgid "Done"
|
1896 |
msgstr "Schliessen"
|
1897 |
|
1898 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1899 |
msgctxt "Date Time Picker JS selectText"
|
1900 |
msgid "Select"
|
1901 |
msgstr "Auswählen"
|
1902 |
|
1903 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1904 |
msgctxt "Date Time Picker JS amText"
|
1905 |
msgid "AM"
|
1906 |
msgstr "AM"
|
1907 |
|
1908 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1909 |
msgctxt "Date Time Picker JS amTextShort"
|
1910 |
msgid "A"
|
1911 |
msgstr "A"
|
1912 |
|
1913 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1914 |
msgctxt "Date Time Picker JS pmText"
|
1915 |
msgid "PM"
|
1916 |
msgstr "PM"
|
1917 |
|
1918 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1919 |
msgctxt "Date Time Picker JS pmTextShort"
|
1920 |
msgid "P"
|
1921 |
msgstr "P"
|
1922 |
|
1923 |
# @ acf
|
1924 |
-
#: includes/fields/class-acf-field-email.php:
|
1925 |
msgid "Email"
|
1926 |
msgstr "E-Mail"
|
1927 |
|
1928 |
# @ acf
|
1929 |
-
#: includes/fields/class-acf-field-email.php:
|
1930 |
-
#: includes/fields/class-acf-field-number.php:
|
1931 |
-
#: includes/fields/class-acf-field-
|
1932 |
-
#: includes/fields/class-acf-field-text.php:
|
1933 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1934 |
-
#: includes/fields/class-acf-field-url.php:
|
1935 |
-
#: includes/fields/class-acf-field-wysiwyg.php:437
|
1936 |
-
msgid "Appears when creating a new post"
|
1937 |
-
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1938 |
-
|
1939 |
-
# @ acf
|
1940 |
-
#: includes/fields/class-acf-field-email.php:142
|
1941 |
-
#: includes/fields/class-acf-field-number.php:154
|
1942 |
-
#: includes/fields/class-acf-field-password.php:134
|
1943 |
-
#: includes/fields/class-acf-field-text.php:151
|
1944 |
-
#: includes/fields/class-acf-field-textarea.php:148
|
1945 |
-
#: includes/fields/class-acf-field-url.php:123
|
1946 |
msgid "Placeholder Text"
|
1947 |
msgstr "Platzhalter-Text"
|
1948 |
|
1949 |
# @ acf
|
1950 |
-
#: includes/fields/class-acf-field-email.php:
|
1951 |
-
#: includes/fields/class-acf-field-number.php:
|
1952 |
-
#: includes/fields/class-acf-field-password.php:
|
1953 |
-
#: includes/fields/class-acf-field-text.php:
|
1954 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1955 |
-
#: includes/fields/class-acf-field-url.php:
|
1956 |
msgid "Appears within the input"
|
1957 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1958 |
|
1959 |
# @ acf
|
1960 |
-
#: includes/fields/class-acf-field-email.php:
|
1961 |
-
#: includes/fields/class-acf-field-number.php:
|
1962 |
-
#: includes/fields/class-acf-field-password.php:
|
1963 |
-
#: includes/fields/class-acf-field-
|
|
|
1964 |
msgid "Prepend"
|
1965 |
msgstr "Voranstellen"
|
1966 |
|
1967 |
# @ acf
|
1968 |
-
#: includes/fields/class-acf-field-email.php:
|
1969 |
-
#: includes/fields/class-acf-field-number.php:
|
1970 |
-
#: includes/fields/class-acf-field-password.php:
|
1971 |
-
#: includes/fields/class-acf-field-
|
|
|
1972 |
msgid "Appears before the input"
|
1973 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1974 |
|
1975 |
# @ acf
|
1976 |
-
#: includes/fields/class-acf-field-email.php:
|
1977 |
-
#: includes/fields/class-acf-field-number.php:
|
1978 |
-
#: includes/fields/class-acf-field-password.php:
|
1979 |
-
#: includes/fields/class-acf-field-
|
|
|
1980 |
msgid "Append"
|
1981 |
msgstr "Anhängen"
|
1982 |
|
1983 |
# @ acf
|
1984 |
-
#: includes/fields/class-acf-field-email.php:
|
1985 |
-
#: includes/fields/class-acf-field-number.php:
|
1986 |
-
#: includes/fields/class-acf-field-password.php:
|
1987 |
-
#: includes/fields/class-acf-field-
|
|
|
1988 |
msgid "Appears after the input"
|
1989 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1990 |
|
1991 |
# @ acf
|
1992 |
-
#: includes/fields/class-acf-field-file.php:
|
1993 |
msgid "File"
|
1994 |
msgstr "Datei"
|
1995 |
|
1996 |
# @ acf
|
1997 |
-
#: includes/fields/class-acf-field-file.php:
|
1998 |
msgid "Edit File"
|
1999 |
msgstr "Datei bearbeiten"
|
2000 |
|
2001 |
# @ acf
|
2002 |
-
#: includes/fields/class-acf-field-file.php:
|
2003 |
msgid "Update File"
|
2004 |
msgstr "Datei aktualisieren"
|
2005 |
|
2006 |
# @ acf
|
2007 |
-
#: includes/fields/class-acf-field-file.php:
|
2008 |
-
#: includes/fields/class-acf-field-image.php:
|
2009 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2010 |
msgid "Uploaded to this post"
|
2011 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2012 |
|
2013 |
-
#: includes/fields/class-acf-field-file.php:
|
2014 |
msgid "File name"
|
2015 |
msgstr "Dateiname"
|
2016 |
|
2017 |
# @ acf
|
2018 |
-
#: includes/fields/class-acf-field-file.php:
|
2019 |
-
#: includes/fields/class-acf-field-file.php:
|
2020 |
-
#: includes/fields/class-acf-field-file.php:
|
2021 |
-
#: includes/fields/class-acf-field-image.php:
|
2022 |
-
#: includes/fields/class-acf-field-image.php:
|
2023 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2024 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2025 |
msgid "File size"
|
2026 |
msgstr "Dateigrösse"
|
2027 |
|
2028 |
# @ acf
|
2029 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2030 |
msgid "Add File"
|
2031 |
msgstr "Datei hinzufügen"
|
2032 |
|
2033 |
# @ acf
|
2034 |
-
#: includes/fields/class-acf-field-file.php:
|
2035 |
msgid "File Array"
|
2036 |
msgstr "Datei-Array"
|
2037 |
|
2038 |
# @ acf
|
2039 |
-
#: includes/fields/class-acf-field-file.php:
|
2040 |
msgid "File URL"
|
2041 |
msgstr "Datei-URL"
|
2042 |
|
2043 |
# @ acf
|
2044 |
-
#: includes/fields/class-acf-field-file.php:
|
2045 |
msgid "File ID"
|
2046 |
msgstr "Datei-ID"
|
2047 |
|
2048 |
# @ acf
|
2049 |
-
#: includes/fields/class-acf-field-file.php:
|
2050 |
-
#: includes/fields/class-acf-field-image.php:
|
2051 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2052 |
msgid "Library"
|
2053 |
msgstr "Medienübersicht"
|
2054 |
|
2055 |
# @ acf
|
2056 |
-
#: includes/fields/class-acf-field-file.php:
|
2057 |
-
#: includes/fields/class-acf-field-image.php:
|
2058 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2059 |
msgid "Limit the media library choice"
|
2060 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2061 |
|
2062 |
# @ acf
|
2063 |
-
#: includes/fields/class-acf-field-file.php:
|
2064 |
-
#: includes/fields/class-acf-field-image.php:
|
2065 |
-
#: includes/locations/class-acf-location-attachment.php:
|
2066 |
-
#: includes/locations/class-acf-location-comment.php:
|
2067 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2068 |
-
#: includes/locations/class-acf-location-taxonomy.php:
|
2069 |
-
#: includes/locations/class-acf-location-user-form.php:
|
2070 |
-
#: includes/locations/class-acf-location-user-role.php:
|
2071 |
-
#: includes/locations/class-acf-location-widget.php:
|
2072 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2073 |
msgid "All"
|
2074 |
msgstr "Alle"
|
2075 |
|
2076 |
# @ acf
|
2077 |
-
#: includes/fields/class-acf-field-file.php:
|
2078 |
-
#: includes/fields/class-acf-field-image.php:
|
2079 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2080 |
msgid "Uploaded to post"
|
2081 |
msgstr "Für den Beitrag hochgeladen"
|
2082 |
|
2083 |
# @ acf
|
2084 |
-
#: includes/fields/class-acf-field-file.php:
|
2085 |
-
#: includes/fields/class-acf-field-image.php:
|
2086 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2087 |
msgid "Minimum"
|
2088 |
msgstr "Minimum"
|
2089 |
|
2090 |
# @ acf
|
2091 |
-
#: includes/fields/class-acf-field-file.php:
|
2092 |
-
#: includes/fields/class-acf-field-file.php:
|
2093 |
msgid "Restrict which files can be uploaded"
|
2094 |
msgstr ""
|
2095 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2096 |
"erfüllen"
|
2097 |
|
2098 |
# @ acf
|
2099 |
-
#: includes/fields/class-acf-field-file.php:
|
2100 |
-
#: includes/fields/class-acf-field-image.php:
|
2101 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2102 |
msgid "Maximum"
|
2103 |
msgstr "Maximum"
|
2104 |
|
2105 |
# @ acf
|
2106 |
-
#: includes/fields/class-acf-field-file.php:
|
2107 |
-
#: includes/fields/class-acf-field-image.php:
|
2108 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2109 |
msgid "Allowed file types"
|
2110 |
msgstr "Erlaubte Datei-Formate"
|
2111 |
|
2112 |
# @ acf
|
2113 |
-
#: includes/fields/class-acf-field-file.php:
|
2114 |
-
#: includes/fields/class-acf-field-image.php:
|
2115 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2116 |
msgid "Comma separated list. Leave blank for all types"
|
2117 |
msgstr ""
|
2118 |
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2119 |
"erlaubt"
|
2120 |
|
2121 |
# @ acf
|
2122 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2123 |
msgid "Google Map"
|
2124 |
msgstr "Google Maps"
|
2125 |
|
2126 |
# @ acf
|
2127 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2128 |
msgid "Locating"
|
2129 |
msgstr "Lokalisiere"
|
2130 |
|
2131 |
# @ acf
|
2132 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2133 |
msgid "Sorry, this browser does not support geolocation"
|
2134 |
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
2135 |
|
2136 |
# @ acf
|
2137 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2138 |
msgid "Clear location"
|
2139 |
msgstr "Position löschen"
|
2140 |
|
2141 |
# @ acf
|
2142 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2143 |
msgid "Find current location"
|
2144 |
msgstr "Aktuelle Position finden"
|
2145 |
|
2146 |
# @ acf
|
2147 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2148 |
msgid "Search for address..."
|
2149 |
msgstr "Nach der Adresse suchen..."
|
2150 |
|
2151 |
# @ acf
|
2152 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2153 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2154 |
msgid "Center"
|
2155 |
msgstr "Kartenmittelpunkt"
|
2156 |
|
2157 |
# @ acf
|
2158 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2159 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2160 |
msgid "Center the initial map"
|
2161 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2162 |
|
2163 |
# @ acf
|
2164 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2165 |
msgid "Zoom"
|
2166 |
msgstr "Zoom"
|
2167 |
|
2168 |
# @ acf
|
2169 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2170 |
msgid "Set the initial zoom level"
|
2171 |
msgstr "Legt die Zoomstufe der Karte fest"
|
2172 |
|
2173 |
# @ acf
|
2174 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2175 |
-
#: includes/fields/class-acf-field-image.php:
|
2176 |
-
#: includes/fields/class-acf-field-image.php:
|
2177 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2178 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2179 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2180 |
msgid "Height"
|
2181 |
msgstr "Höhe"
|
2182 |
|
2183 |
# @ acf
|
2184 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2185 |
msgid "Customise the map height"
|
2186 |
msgstr "Legt die Höhe der Karte fest"
|
2187 |
|
2188 |
# @ acf
|
2189 |
-
#: includes/fields/class-acf-field-group.php:
|
2190 |
-
#, fuzzy
|
2191 |
msgid "Group"
|
2192 |
-
msgstr ""
|
2193 |
-
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses Felds "
|
2194 |
-
"an)"
|
2195 |
|
2196 |
# @ acf
|
2197 |
-
#: includes/fields/class-acf-field-group.php:
|
2198 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2199 |
msgid "Sub Fields"
|
2200 |
msgstr "Wiederholungsfelder"
|
2201 |
|
2202 |
-
#: includes/fields/class-acf-field-group.php:
|
2203 |
-
#: pro/fields/class-acf-field-clone.php:
|
2204 |
msgid "Specify the style used to render the selected fields"
|
2205 |
msgstr "Gib an, wie die ausgewählten Felder angezeigt werden sollen"
|
2206 |
|
2207 |
# @ acf
|
2208 |
-
#: includes/fields/class-acf-field-group.php:
|
2209 |
-
#: pro/fields/class-acf-field-clone.php:
|
2210 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2211 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2212 |
msgid "Block"
|
2213 |
msgstr "Block"
|
2214 |
|
2215 |
# @ acf
|
2216 |
-
#: includes/fields/class-acf-field-group.php:
|
2217 |
-
#: pro/fields/class-acf-field-clone.php:
|
2218 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2219 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2220 |
msgid "Table"
|
2221 |
msgstr "Tabelle"
|
2222 |
|
2223 |
# @ acf
|
2224 |
-
#: includes/fields/class-acf-field-group.php:
|
2225 |
-
#: pro/fields/class-acf-field-clone.php:
|
2226 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2227 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2228 |
msgid "Row"
|
2229 |
msgstr "Reihe"
|
2230 |
|
2231 |
# @ acf
|
2232 |
-
#: includes/fields/class-acf-field-image.php:
|
2233 |
msgid "Image"
|
2234 |
msgstr "Bild"
|
2235 |
|
2236 |
# @ acf
|
2237 |
-
#: includes/fields/class-acf-field-image.php:
|
2238 |
msgid "Select Image"
|
2239 |
msgstr "Bild auswählen"
|
2240 |
|
2241 |
# @ acf
|
2242 |
-
#: includes/fields/class-acf-field-image.php:
|
2243 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2244 |
msgid "Edit Image"
|
2245 |
msgstr "Bild bearbeiten"
|
2246 |
|
2247 |
# @ acf
|
2248 |
-
#: includes/fields/class-acf-field-image.php:
|
2249 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2250 |
msgid "Update Image"
|
2251 |
msgstr "Bild aktualisieren"
|
2252 |
|
2253 |
# @ acf
|
2254 |
-
#: includes/fields/class-acf-field-image.php:
|
2255 |
msgid "All images"
|
2256 |
msgstr "Alle Bilder"
|
2257 |
|
2258 |
# @ acf
|
2259 |
-
#: includes/fields/class-acf-field-image.php:
|
2260 |
-
#: includes/fields/class-acf-field-link.php:153 includes/input.php:267
|
2261 |
-
#: pro/fields/class-acf-field-gallery.php:358
|
2262 |
-
#: pro/fields/class-acf-field-gallery.php:546
|
2263 |
-
msgid "Remove"
|
2264 |
-
msgstr "Entfernen"
|
2265 |
-
|
2266 |
-
# @ acf
|
2267 |
-
#: includes/fields/class-acf-field-image.php:158
|
2268 |
msgid "No image selected"
|
2269 |
msgstr "Kein Bild ausgewählt"
|
2270 |
|
2271 |
# @ acf
|
2272 |
-
#: includes/fields/class-acf-field-image.php:
|
2273 |
msgid "Add Image"
|
2274 |
msgstr "Bild hinzufügen"
|
2275 |
|
2276 |
# @ acf
|
2277 |
-
#: includes/fields/class-acf-field-image.php:
|
2278 |
msgid "Image Array"
|
2279 |
msgstr "Bild-Array"
|
2280 |
|
2281 |
# @ acf
|
2282 |
-
#: includes/fields/class-acf-field-image.php:
|
2283 |
msgid "Image URL"
|
2284 |
msgstr "Bild-URL"
|
2285 |
|
2286 |
# @ acf
|
2287 |
-
#: includes/fields/class-acf-field-image.php:
|
2288 |
msgid "Image ID"
|
2289 |
msgstr "Bild-ID"
|
2290 |
|
2291 |
# @ acf
|
2292 |
-
#: includes/fields/class-acf-field-image.php:
|
2293 |
msgid "Preview Size"
|
2294 |
msgstr "Masse der Vorschau"
|
2295 |
|
2296 |
# @ acf
|
2297 |
-
#: includes/fields/class-acf-field-image.php:
|
2298 |
msgid "Shown when entering data"
|
2299 |
msgstr "Legt fest welche Masse die Vorschau in der Bearbeitungs-Ansicht hat"
|
2300 |
|
2301 |
# @ acf
|
2302 |
-
#: includes/fields/class-acf-field-image.php:
|
2303 |
-
#: includes/fields/class-acf-field-image.php:
|
2304 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2305 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2306 |
msgid "Restrict which images can be uploaded"
|
2307 |
msgstr ""
|
2308 |
"Erlaubt nur das Hochladen von Bildern, die die angegebenen Eigenschaften "
|
2309 |
"erfüllen"
|
2310 |
|
2311 |
# @ acf
|
2312 |
-
#: includes/fields/class-acf-field-image.php:
|
2313 |
-
#: includes/fields/class-acf-field-image.php:
|
2314 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2315 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2316 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2317 |
msgid "Width"
|
2318 |
msgstr "Breite"
|
2319 |
|
2320 |
# @ acf
|
2321 |
-
#: includes/fields/class-acf-field-link.php:
|
2322 |
-
#, fuzzy
|
2323 |
msgid "Link"
|
2324 |
-
msgstr "
|
2325 |
|
2326 |
# @ acf
|
2327 |
-
#: includes/fields/class-acf-field-link.php:
|
2328 |
-
#, fuzzy
|
2329 |
msgid "Select Link"
|
2330 |
-
msgstr "
|
2331 |
|
2332 |
-
#: includes/fields/class-acf-field-link.php:
|
2333 |
msgid "Opens in a new window/tab"
|
2334 |
-
msgstr ""
|
2335 |
|
2336 |
# @ acf
|
2337 |
-
#: includes/fields/class-acf-field-link.php:
|
2338 |
-
#, fuzzy
|
2339 |
msgid "Link Array"
|
2340 |
-
msgstr "
|
2341 |
|
2342 |
# @ acf
|
2343 |
-
#: includes/fields/class-acf-field-link.php:
|
2344 |
-
#, fuzzy
|
2345 |
msgid "Link URL"
|
2346 |
-
msgstr "
|
2347 |
|
2348 |
# @ acf
|
2349 |
-
#: includes/fields/class-acf-field-message.php:
|
2350 |
-
#: includes/fields/class-acf-field-message.php:
|
2351 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2352 |
msgid "Message"
|
2353 |
msgstr "Nachricht"
|
2354 |
|
2355 |
# @ acf
|
2356 |
-
#: includes/fields/class-acf-field-message.php:
|
2357 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2358 |
msgid "New Lines"
|
2359 |
msgstr "Neue Zeilen"
|
2360 |
|
2361 |
# @ acf
|
2362 |
-
#: includes/fields/class-acf-field-message.php:
|
2363 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2364 |
msgid "Controls how new lines are rendered"
|
2365 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2366 |
|
2367 |
# @ acf
|
2368 |
-
#: includes/fields/class-acf-field-message.php:
|
2369 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2370 |
msgid "Automatically add paragraphs"
|
2371 |
msgstr "Absätze automatisch hinzufügen"
|
2372 |
|
2373 |
# @ acf
|
2374 |
-
#: includes/fields/class-acf-field-message.php:
|
2375 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2376 |
msgid "Automatically add <br>"
|
2377 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2378 |
|
2379 |
# @ acf
|
2380 |
-
#: includes/fields/class-acf-field-message.php:
|
2381 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2382 |
msgid "No Formatting"
|
2383 |
msgstr "Keine Formatierung"
|
2384 |
|
2385 |
# @ acf
|
2386 |
-
#: includes/fields/class-acf-field-message.php:
|
2387 |
msgid "Escape HTML"
|
2388 |
msgstr "HTML enkodieren"
|
2389 |
|
2390 |
# @ acf
|
2391 |
-
#: includes/fields/class-acf-field-message.php:
|
2392 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2393 |
msgstr ""
|
2394 |
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2395 |
"interpretiert"
|
2396 |
|
2397 |
# @ acf
|
2398 |
-
#: includes/fields/class-acf-field-number.php:
|
2399 |
msgid "Number"
|
2400 |
msgstr "Numerisch"
|
2401 |
|
2402 |
# @ acf
|
2403 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2404 |
msgid "Minimum Value"
|
2405 |
msgstr "Mindestwert"
|
2406 |
|
2407 |
# @ acf
|
2408 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2409 |
msgid "Maximum Value"
|
2410 |
msgstr "Maximalwert"
|
2411 |
|
2412 |
# @ acf
|
2413 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2414 |
msgid "Step Size"
|
2415 |
msgstr "Schrittweite"
|
2416 |
|
2417 |
# @ acf
|
2418 |
-
#: includes/fields/class-acf-field-number.php:
|
2419 |
msgid "Value must be a number"
|
2420 |
msgstr "Wert muss eine Zahl sein"
|
2421 |
|
2422 |
# @ acf
|
2423 |
-
#: includes/fields/class-acf-field-number.php:
|
2424 |
#, php-format
|
2425 |
msgid "Value must be equal to or higher than %d"
|
2426 |
msgstr "Wert muss grösser oder gleich %d sein"
|
2427 |
|
2428 |
# @ acf
|
2429 |
-
#: includes/fields/class-acf-field-number.php:
|
2430 |
#, php-format
|
2431 |
msgid "Value must be equal to or lower than %d"
|
2432 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2433 |
|
2434 |
# @ acf
|
2435 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2436 |
msgid "oEmbed"
|
2437 |
msgstr "oEmbed"
|
2438 |
|
2439 |
# @ acf
|
2440 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2441 |
msgid "Enter URL"
|
2442 |
msgstr "URL eingeben"
|
2443 |
|
2444 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2445 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2446 |
msgid "Error."
|
2447 |
msgstr "Fehler."
|
2448 |
|
2449 |
# @ acf
|
2450 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2451 |
msgid "No embed found for the given URL."
|
2452 |
msgstr "Keine Inhalte für die eingegebene URL gefunden."
|
2453 |
|
2454 |
# @ acf
|
2455 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2456 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2457 |
msgid "Embed Size"
|
2458 |
msgstr "Masse"
|
2459 |
|
2460 |
# @ acf
|
2461 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2462 |
msgid "Archives"
|
2463 |
msgstr "Archive"
|
2464 |
|
2465 |
# @ acf
|
2466 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2467 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2468 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2469 |
msgid "Filter by Post Type"
|
2470 |
msgstr "Nach Post Types filtern"
|
2471 |
|
2472 |
# @ acf
|
2473 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2474 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2475 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2476 |
msgid "All post types"
|
2477 |
msgstr "Alle verfügbaren Post Types"
|
2478 |
|
2479 |
# @ acf
|
2480 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2481 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2482 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2483 |
msgid "Filter by Taxonomy"
|
2484 |
msgstr "Nach Taxonomien filtern"
|
2485 |
|
2486 |
# @ acf
|
2487 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2488 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2489 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2490 |
msgid "All taxonomies"
|
2491 |
msgstr "Alle Taxonomien"
|
2492 |
|
2493 |
-
|
2494 |
-
#: includes/fields/class-acf-field-page_link.php:528
|
2495 |
-
#: includes/fields/class-acf-field-post_object.php:427
|
2496 |
-
#: includes/fields/class-acf-field-radio.php:259
|
2497 |
-
#: includes/fields/class-acf-field-select.php:484
|
2498 |
-
#: includes/fields/class-acf-field-taxonomy.php:799
|
2499 |
-
#: includes/fields/class-acf-field-user.php:423
|
2500 |
-
msgid "Allow Null?"
|
2501 |
-
msgstr "NULL-Werte zulassen?"
|
2502 |
-
|
2503 |
-
#: includes/fields/class-acf-field-page_link.php:538
|
2504 |
msgid "Allow Archives URLs"
|
2505 |
msgstr "Archiv URLs erlauben"
|
2506 |
|
2507 |
# @ acf
|
2508 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2509 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2510 |
-
#: includes/fields/class-acf-field-select.php:
|
2511 |
-
#: includes/fields/class-acf-field-user.php:
|
2512 |
msgid "Select multiple values?"
|
2513 |
msgstr "Mehrere Werte auswählbar?"
|
2514 |
|
2515 |
# @ acf
|
2516 |
-
#: includes/fields/class-acf-field-password.php:
|
2517 |
msgid "Password"
|
2518 |
msgstr "Passwort"
|
2519 |
|
2520 |
# @ acf
|
2521 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2522 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2523 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2524 |
msgid "Post Object"
|
2525 |
msgstr "Beitrags-Objekt"
|
2526 |
|
2527 |
# @ acf
|
2528 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2529 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2530 |
msgid "Post ID"
|
2531 |
msgstr "Beitrags-ID"
|
2532 |
|
2533 |
# @ acf
|
2534 |
-
#: includes/fields/class-acf-field-radio.php:
|
2535 |
msgid "Radio Button"
|
2536 |
msgstr "Radio-Button"
|
2537 |
|
2538 |
# @ acf
|
2539 |
-
#: includes/fields/class-acf-field-radio.php:
|
2540 |
msgid "Other"
|
2541 |
msgstr "Sonstige"
|
2542 |
|
2543 |
# @ acf
|
2544 |
-
#: includes/fields/class-acf-field-radio.php:
|
2545 |
msgid "Add 'other' choice to allow for custom values"
|
2546 |
msgstr ""
|
2547 |
"Fügt die Option 'Sonstige' hinzu, welche erlaubt, benutzerdefinierte Werte "
|
2548 |
"hinzuzufügen"
|
2549 |
|
2550 |
# @ acf
|
2551 |
-
#: includes/fields/class-acf-field-radio.php:
|
2552 |
msgid "Save Other"
|
2553 |
msgstr "'Sonstige' speichern"
|
2554 |
|
2555 |
# @ acf
|
2556 |
-
#: includes/fields/class-acf-field-radio.php:
|
2557 |
msgid "Save 'other' values to the field's choices"
|
2558 |
msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu"
|
2559 |
|
|
|
|
|
|
|
|
|
2560 |
# @ acf
|
2561 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2562 |
msgid "Relationship"
|
2563 |
msgstr "Beziehung"
|
2564 |
|
2565 |
# @ acf
|
2566 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2567 |
msgid "Minimum values reached ( {min} values )"
|
2568 |
msgstr "Minimum der Einträge mit ({min} Einträge) erreicht"
|
2569 |
|
2570 |
# @ acf
|
2571 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2572 |
msgid "Maximum values reached ( {max} values )"
|
2573 |
msgstr "Maximum der Einträge mit ({max} Einträge) erreicht"
|
2574 |
|
2575 |
# @ acf
|
2576 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2577 |
msgid "Loading"
|
2578 |
msgstr "Lade"
|
2579 |
|
2580 |
# @ acf
|
2581 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2582 |
msgid "No matches found"
|
2583 |
msgstr "Keine Übereinstimmung gefunden"
|
2584 |
|
2585 |
# @ acf
|
2586 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2587 |
-
msgid "Search..."
|
2588 |
-
msgstr "Suchen..."
|
2589 |
-
|
2590 |
-
# @ acf
|
2591 |
-
#: includes/fields/class-acf-field-relationship.php:594
|
2592 |
msgid "Select post type"
|
2593 |
msgstr "Beitrag-Typ auswählen"
|
2594 |
|
2595 |
# @ acf
|
2596 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2597 |
msgid "Select taxonomy"
|
2598 |
msgstr "Taxonomie auswählen"
|
2599 |
|
2600 |
# @ acf
|
2601 |
-
#: includes/fields/class-acf-field-relationship.php:
|
|
|
|
|
|
|
|
|
|
|
2602 |
msgid "Filters"
|
2603 |
msgstr "Filter"
|
2604 |
|
2605 |
# @ acf
|
2606 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2607 |
#: includes/locations/class-acf-location-post-type.php:27
|
2608 |
msgid "Post Type"
|
2609 |
msgstr "Beitrags-Typ"
|
2610 |
|
2611 |
# @ acf
|
2612 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2613 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2614 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2615 |
msgid "Taxonomy"
|
2616 |
msgstr "Taxonomie"
|
2617 |
|
2618 |
# @ acf
|
2619 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2620 |
msgid "Elements"
|
2621 |
msgstr "Elemente"
|
2622 |
|
2623 |
# @ acf
|
2624 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2625 |
msgid "Selected elements will be displayed in each result"
|
2626 |
msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt"
|
2627 |
|
2628 |
# @ acf
|
2629 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2630 |
msgid "Minimum posts"
|
2631 |
msgstr "Min. Anzahl der Beiträge"
|
2632 |
|
2633 |
# @ acf
|
2634 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2635 |
msgid "Maximum posts"
|
2636 |
msgstr "Max. Anzahl der Beiträge"
|
2637 |
|
2638 |
# @ acf
|
2639 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2640 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2641 |
#, php-format
|
2642 |
msgid "%s requires at least %s selection"
|
2643 |
msgid_plural "%s requires at least %s selections"
|
2644 |
msgstr[0] "%s benötigt mindestens %s Selektion"
|
2645 |
msgstr[1] "%s benötigt mindestens %s Selektionen"
|
2646 |
|
2647 |
-
#: includes/fields/class-acf-field-select.php:
|
2648 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2649 |
msgctxt "noun"
|
2650 |
msgid "Select"
|
2651 |
msgstr "Auswahlmenü"
|
2652 |
|
2653 |
-
#: includes/fields/class-acf-field-select.php:
|
2654 |
msgctxt "Select2 JS matches_1"
|
2655 |
msgid "One result is available, press enter to select it."
|
2656 |
msgstr "Ein Resultat gefunden, mit Enter auswählen."
|
2657 |
|
2658 |
-
#: includes/fields/class-acf-field-select.php:
|
2659 |
#, php-format
|
2660 |
msgctxt "Select2 JS matches_n"
|
2661 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2662 |
msgstr "%d Resultate gefunden, benutze die Pfeiltasten um zu navigieren."
|
2663 |
|
2664 |
-
#: includes/fields/class-acf-field-select.php:
|
2665 |
msgctxt "Select2 JS matches_0"
|
2666 |
msgid "No matches found"
|
2667 |
msgstr "Keine Übereinstimmungen gefunden"
|
2668 |
|
2669 |
-
#: includes/fields/class-acf-field-select.php:
|
2670 |
msgctxt "Select2 JS input_too_short_1"
|
2671 |
msgid "Please enter 1 or more characters"
|
2672 |
msgstr "Bitte eins oder mehrere Zeichen eingeben"
|
2673 |
|
2674 |
-
#: includes/fields/class-acf-field-select.php:
|
2675 |
#, php-format
|
2676 |
msgctxt "Select2 JS input_too_short_n"
|
2677 |
msgid "Please enter %d or more characters"
|
2678 |
msgstr "Bitte %d mehr Zeichen eingeben"
|
2679 |
|
2680 |
-
#: includes/fields/class-acf-field-select.php:
|
2681 |
msgctxt "Select2 JS input_too_long_1"
|
2682 |
msgid "Please delete 1 character"
|
2683 |
msgstr "Bitte ein Zeichen löschen"
|
2684 |
|
2685 |
-
#: includes/fields/class-acf-field-select.php:
|
2686 |
#, php-format
|
2687 |
msgctxt "Select2 JS input_too_long_n"
|
2688 |
msgid "Please delete %d characters"
|
2689 |
msgstr "Bitte %d Zeichen löschen"
|
2690 |
|
2691 |
-
#: includes/fields/class-acf-field-select.php:
|
2692 |
msgctxt "Select2 JS selection_too_long_1"
|
2693 |
msgid "You can only select 1 item"
|
2694 |
msgstr "Du kannst du ein Resultat wählen"
|
2695 |
|
2696 |
-
#: includes/fields/class-acf-field-select.php:
|
2697 |
#, php-format
|
2698 |
msgctxt "Select2 JS selection_too_long_n"
|
2699 |
msgid "You can only select %d items"
|
2700 |
msgstr "Du kannst nur %d Resultate auswählen"
|
2701 |
|
2702 |
-
#: includes/fields/class-acf-field-select.php:
|
2703 |
msgctxt "Select2 JS load_more"
|
2704 |
msgid "Loading more results…"
|
2705 |
msgstr "Lade weitere Resultate…"
|
2706 |
|
2707 |
-
#: includes/fields/class-acf-field-select.php:
|
2708 |
msgctxt "Select2 JS searching"
|
2709 |
msgid "Searching…"
|
2710 |
msgstr "Suche…"
|
2711 |
|
2712 |
-
#: includes/fields/class-acf-field-select.php:
|
2713 |
msgctxt "Select2 JS load_fail"
|
2714 |
msgid "Loading failed"
|
2715 |
msgstr "Fehler beim Laden"
|
2716 |
|
2717 |
-
#: includes/fields/class-acf-field-select.php:
|
2718 |
msgctxt "verb"
|
2719 |
msgid "Select"
|
2720 |
msgstr "Auswählen"
|
2721 |
|
2722 |
# @ acf
|
2723 |
-
#: includes/fields/class-acf-field-select.php:
|
2724 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2725 |
msgid "Stylised UI"
|
2726 |
msgstr "Modernes Auswahlfeld"
|
2727 |
|
2728 |
# @ acf
|
2729 |
-
#: includes/fields/class-acf-field-select.php:
|
2730 |
msgid "Use AJAX to lazy load choices?"
|
2731 |
-
msgstr "AJAX zum Laden der Einträge aktivieren"
|
2732 |
|
2733 |
-
#: includes/fields/class-acf-field-select.php:
|
2734 |
msgid "Specify the value returned"
|
2735 |
msgstr "Rückgabewert festlegen"
|
2736 |
|
2737 |
-
#: includes/fields/class-acf-field-separator.php:
|
2738 |
msgid "Separator"
|
2739 |
-
msgstr ""
|
2740 |
|
2741 |
# @ acf
|
2742 |
-
#: includes/fields/class-acf-field-tab.php:
|
2743 |
msgid "Tab"
|
2744 |
msgstr "Tab"
|
2745 |
|
2746 |
# @ acf
|
2747 |
-
#: includes/fields/class-acf-field-tab.php:
|
2748 |
msgid ""
|
2749 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2750 |
"field or flexible content field layout"
|
@@ -2753,7 +2779,7 @@ msgstr ""
|
|
2753 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2754 |
|
2755 |
# @ acf
|
2756 |
-
#: includes/fields/class-acf-field-tab.php:
|
2757 |
msgid ""
|
2758 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2759 |
"together."
|
@@ -2762,7 +2788,7 @@ msgstr ""
|
|
2762 |
"Tabs zusammengefasst werden."
|
2763 |
|
2764 |
# @ acf
|
2765 |
-
#: includes/fields/class-acf-field-tab.php:
|
2766 |
msgid ""
|
2767 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2768 |
"defined) will be grouped together using this field's label as the tab "
|
@@ -2773,280 +2799,285 @@ msgstr ""
|
|
2773 |
"zusammengefasst."
|
2774 |
|
2775 |
# @ acf
|
2776 |
-
#: includes/fields/class-acf-field-tab.php:
|
2777 |
msgid "Placement"
|
2778 |
msgstr "Platzierung Tabs"
|
2779 |
|
2780 |
-
#: includes/fields/class-acf-field-tab.php:
|
2781 |
msgid "End-point"
|
2782 |
msgstr "Abschluss"
|
2783 |
|
2784 |
-
#: includes/fields/class-acf-field-tab.php:
|
2785 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2786 |
msgstr "Benutze das Feld als einen Abschluss und starte eine Gruppe an Tabs"
|
2787 |
|
2788 |
-
|
2789 |
-
|
2790 |
-
|
2791 |
-
|
2792 |
-
|
2793 |
-
msgid "No"
|
2794 |
-
msgstr "Nein"
|
2795 |
|
2796 |
# @ acf
|
2797 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2798 |
msgid "None"
|
2799 |
msgstr "Nur Text"
|
2800 |
|
2801 |
# @ acf
|
2802 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2803 |
msgid "Select the taxonomy to be displayed"
|
2804 |
msgstr "Wähle die Taxonomie, welche angezeigt werden soll"
|
2805 |
|
2806 |
# @ acf
|
2807 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2808 |
msgid "Appearance"
|
2809 |
msgstr "Anzeige"
|
2810 |
|
2811 |
# @ acf
|
2812 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2813 |
msgid "Select the appearance of this field"
|
2814 |
msgstr "Wähle das Aussehen für dieses Feld"
|
2815 |
|
2816 |
# @ acf
|
2817 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2818 |
msgid "Multiple Values"
|
2819 |
-
msgstr "Mehrere Werte
|
2820 |
|
2821 |
# @ acf
|
2822 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2823 |
msgid "Multi Select"
|
2824 |
msgstr "Auswahlmenü"
|
2825 |
|
2826 |
# @ acf
|
2827 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2828 |
msgid "Single Value"
|
2829 |
msgstr "Einzelne Werte"
|
2830 |
|
2831 |
# @ acf
|
2832 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2833 |
msgid "Radio Buttons"
|
2834 |
msgstr "Radio Button"
|
2835 |
|
2836 |
# @ acf
|
2837 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2838 |
msgid "Create Terms"
|
2839 |
msgstr "Neue Einträge erlauben"
|
2840 |
|
2841 |
# @ acf
|
2842 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2843 |
msgid "Allow new terms to be created whilst editing"
|
2844 |
msgstr "Erlaube das Erstellen neuer Einträge beim Editieren"
|
2845 |
|
2846 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2847 |
msgid "Save Terms"
|
2848 |
msgstr "Einträge speichern"
|
2849 |
|
2850 |
# @ acf
|
2851 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2852 |
msgid "Connect selected terms to the post"
|
2853 |
msgstr "Speichert die ausgewählten Einträge auch im Beitrag"
|
2854 |
|
2855 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2856 |
msgid "Load Terms"
|
2857 |
msgstr "Einträge laden"
|
2858 |
|
2859 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2860 |
msgid "Load value from posts terms"
|
2861 |
msgstr "Den Wert von den Einträgen des Beitrags laden"
|
2862 |
|
2863 |
# @ acf
|
2864 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2865 |
msgid "Term Object"
|
2866 |
msgstr "Begriffs-Objekt"
|
2867 |
|
2868 |
# @ acf
|
2869 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2870 |
msgid "Term ID"
|
2871 |
msgstr "Begriffs-ID"
|
2872 |
|
2873 |
# @ acf
|
2874 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2875 |
#, php-format
|
2876 |
msgid "User unable to add new %s"
|
2877 |
msgstr "Der Benutzer kann keine neue %s hinzufügen"
|
2878 |
|
2879 |
# @ acf
|
2880 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2881 |
#, php-format
|
2882 |
msgid "%s already exists"
|
2883 |
msgstr "%s ist bereits vorhanden"
|
2884 |
|
2885 |
# @ acf
|
2886 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2887 |
#, php-format
|
2888 |
msgid "%s added"
|
2889 |
msgstr "%s hinzugefügt"
|
2890 |
|
2891 |
# @ acf
|
2892 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2893 |
msgid "Add"
|
2894 |
msgstr "Hinzufügen"
|
2895 |
|
2896 |
# @ acf
|
2897 |
-
#: includes/fields/class-acf-field-text.php:
|
2898 |
msgid "Text"
|
2899 |
msgstr "Text einzeilig"
|
2900 |
|
2901 |
# @ acf
|
2902 |
-
#: includes/fields/class-acf-field-text.php:
|
2903 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2904 |
msgid "Character Limit"
|
2905 |
msgstr "Zeichenbegrenzung"
|
2906 |
|
2907 |
# @ acf
|
2908 |
-
#: includes/fields/class-acf-field-text.php:
|
2909 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2910 |
msgid "Leave blank for no limit"
|
2911 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2912 |
|
2913 |
# @ acf
|
2914 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2915 |
msgid "Text Area"
|
2916 |
msgstr "Text mehrzeilig"
|
2917 |
|
2918 |
# @ acf
|
2919 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2920 |
msgid "Rows"
|
2921 |
msgstr "Zeilenanzahl"
|
2922 |
|
2923 |
# @ acf
|
2924 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2925 |
msgid "Sets the textarea height"
|
2926 |
msgstr "Definiert die Höhe des Textfelds"
|
2927 |
|
2928 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
2929 |
msgid "Time Picker"
|
2930 |
msgstr "Uhrzeit"
|
2931 |
|
2932 |
# @ acf
|
2933 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2934 |
msgid "True / False"
|
2935 |
msgstr "Ja/Nein"
|
2936 |
|
2937 |
# @ acf
|
2938 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2939 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2940 |
-
#: pro/admin/views/html-settings-updates.php:
|
2941 |
msgid "Yes"
|
2942 |
msgstr "Ja"
|
2943 |
|
2944 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2945 |
msgid "Displays text alongside the checkbox"
|
2946 |
msgstr "Zeigt Text neben der Checkbox"
|
2947 |
|
2948 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2949 |
msgid "On Text"
|
2950 |
msgstr "Wenn aktiv"
|
2951 |
|
2952 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2953 |
msgid "Text shown when active"
|
2954 |
msgstr "Angezeigter Text im aktiven Zustand"
|
2955 |
|
2956 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2957 |
msgid "Off Text"
|
2958 |
msgstr "Wenn inaktiv"
|
2959 |
|
2960 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2961 |
msgid "Text shown when inactive"
|
2962 |
msgstr "Angezeigter Text im inaktiven Zustand"
|
2963 |
|
2964 |
# @ acf
|
2965 |
-
#: includes/fields/class-acf-field-url.php:
|
2966 |
msgid "Url"
|
2967 |
msgstr "URL"
|
2968 |
|
2969 |
# @ acf
|
2970 |
-
#: includes/fields/class-acf-field-url.php:
|
2971 |
msgid "Value must be a valid URL"
|
2972 |
msgstr "Bitte eine gültige URL eingeben"
|
2973 |
|
2974 |
# @ acf
|
2975 |
-
#: includes/fields/class-acf-field-user.php:
|
2976 |
msgid "User"
|
2977 |
msgstr "Benutzer"
|
2978 |
|
2979 |
# @ acf
|
2980 |
-
#: includes/fields/class-acf-field-user.php:
|
2981 |
msgid "Filter by role"
|
2982 |
msgstr "Filtere nach Benutzerrollen"
|
2983 |
|
2984 |
# @ acf
|
2985 |
-
#: includes/fields/class-acf-field-user.php:
|
2986 |
msgid "All user roles"
|
2987 |
msgstr "Alle Benutzerrollen"
|
2988 |
|
2989 |
# @ acf
|
2990 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2991 |
msgid "Wysiwyg Editor"
|
2992 |
msgstr "WYSIWYG-Editor"
|
2993 |
|
2994 |
# @ acf
|
2995 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2996 |
msgid "Visual"
|
2997 |
msgstr "Visuell"
|
2998 |
|
2999 |
# @ acf
|
3000 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3001 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3002 |
msgid "Text"
|
3003 |
msgstr "Text"
|
3004 |
|
3005 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3006 |
msgid "Click to initialize TinyMCE"
|
3007 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3008 |
|
3009 |
# @ acf
|
3010 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3011 |
msgid "Tabs"
|
3012 |
msgstr "Tabs"
|
3013 |
|
3014 |
# @ acf
|
3015 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3016 |
msgid "Visual & Text"
|
3017 |
msgstr "Visuell & Text"
|
3018 |
|
3019 |
# @ acf
|
3020 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3021 |
msgid "Visual Only"
|
3022 |
msgstr "Nur Visuell"
|
3023 |
|
3024 |
# @ acf
|
3025 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3026 |
msgid "Text Only"
|
3027 |
msgstr "Nur Text"
|
3028 |
|
3029 |
# @ acf
|
3030 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3031 |
msgid "Toolbar"
|
3032 |
msgstr "Werkzeugleiste"
|
3033 |
|
3034 |
# @ acf
|
3035 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3036 |
msgid "Show Media Upload Buttons?"
|
3037 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3038 |
|
3039 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3040 |
msgid "Delay initialization?"
|
3041 |
msgstr "Initialisierung verzögern?"
|
3042 |
|
3043 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3044 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3045 |
-
msgstr "TinyMCE wird nicht initialisiert bis das Feld geklickt wird
|
3046 |
|
3047 |
# @ acf
|
3048 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
3049 |
-
#: pro/admin/admin-options-page.php:
|
3050 |
msgid "Edit field group"
|
3051 |
msgstr "Feld-Gruppen bearbeiten"
|
3052 |
|
@@ -3056,7 +3087,7 @@ msgstr "E-Mail bestätigen"
|
|
3056 |
|
3057 |
# @ acf
|
3058 |
#: includes/forms/form-front.php:103
|
3059 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3060 |
msgid "Update"
|
3061 |
msgstr "Aktualisieren"
|
3062 |
|
@@ -3070,44 +3101,49 @@ msgid "Spam Detected"
|
|
3070 |
msgstr "Spam erkannt"
|
3071 |
|
3072 |
# @ acf
|
3073 |
-
#: includes/input.php:
|
3074 |
msgid "Expand Details"
|
3075 |
msgstr "Details einblenden"
|
3076 |
|
3077 |
# @ acf
|
3078 |
-
#: includes/input.php:
|
3079 |
msgid "Collapse Details"
|
3080 |
msgstr "Details ausblenden"
|
3081 |
|
3082 |
# @ acf
|
3083 |
-
#: includes/input.php:
|
3084 |
msgid "Validation successful"
|
3085 |
msgstr "Überprüfung erfolgreich"
|
3086 |
|
3087 |
# @ acf
|
3088 |
-
#: includes/input.php:
|
3089 |
#: includes/validation.php:296
|
3090 |
msgid "Validation failed"
|
3091 |
msgstr "Überprüfung fehlgeschlagen"
|
3092 |
|
3093 |
# @ acf
|
3094 |
-
#: includes/input.php:
|
3095 |
msgid "1 field requires attention"
|
3096 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3097 |
|
3098 |
# @ acf
|
3099 |
-
#: includes/input.php:
|
3100 |
#, php-format
|
3101 |
msgid "%d fields require attention"
|
3102 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3103 |
|
3104 |
-
#: includes/input.php:
|
3105 |
msgid "Restricted"
|
3106 |
msgstr "Eingeschränkt"
|
3107 |
|
3108 |
-
|
|
|
|
|
|
|
|
|
|
|
3109 |
msgid "Cancel"
|
3110 |
-
msgstr ""
|
3111 |
|
3112 |
# @ acf
|
3113 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
@@ -3129,10 +3165,10 @@ msgstr "Formulare"
|
|
3129 |
msgid "Attachment"
|
3130 |
msgstr "Dateianhang"
|
3131 |
|
3132 |
-
#: includes/locations/class-acf-location-attachment.php:
|
3133 |
#, php-format
|
3134 |
msgid "All %s formats"
|
3135 |
-
msgstr ""
|
3136 |
|
3137 |
# @ acf
|
3138 |
#: includes/locations/class-acf-location-comment.php:27
|
@@ -3145,7 +3181,7 @@ msgid "Current User Role"
|
|
3145 |
msgstr "Aktuelle Benutzer-Rolle"
|
3146 |
|
3147 |
# @ acf
|
3148 |
-
#: includes/locations/class-acf-location-current-user-role.php:
|
3149 |
msgid "Super Admin"
|
3150 |
msgstr "Super-Admin"
|
3151 |
|
@@ -3155,37 +3191,36 @@ msgid "Current User"
|
|
3155 |
msgstr "Aktueller Benutzer"
|
3156 |
|
3157 |
# @ acf
|
3158 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3159 |
msgid "Logged in"
|
3160 |
-
msgstr "
|
3161 |
|
3162 |
# @ acf
|
3163 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3164 |
msgid "Viewing front end"
|
3165 |
-
msgstr "
|
3166 |
|
3167 |
# @ acf
|
3168 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3169 |
msgid "Viewing back end"
|
3170 |
-
msgstr "
|
3171 |
|
3172 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
3173 |
msgid "Menu Item"
|
3174 |
-
msgstr ""
|
3175 |
|
3176 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
3177 |
msgid "Menu"
|
3178 |
-
msgstr ""
|
3179 |
|
3180 |
# @ acf
|
3181 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
3182 |
-
#, fuzzy
|
3183 |
msgid "Menu Locations"
|
3184 |
-
msgstr "
|
3185 |
|
3186 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
3187 |
msgid "Menus"
|
3188 |
-
msgstr ""
|
3189 |
|
3190 |
# @ acf
|
3191 |
#: includes/locations/class-acf-location-page-parent.php:27
|
@@ -3198,8 +3233,8 @@ msgid "Page Template"
|
|
3198 |
msgstr "Seiten-Template"
|
3199 |
|
3200 |
# @ acf
|
3201 |
-
#: includes/locations/class-acf-location-page-template.php:
|
3202 |
-
#: includes/locations/class-acf-location-post-template.php:
|
3203 |
msgid "Default Template"
|
3204 |
msgstr "Standard-Template"
|
3205 |
|
@@ -3209,27 +3244,27 @@ msgid "Page Type"
|
|
3209 |
msgstr "Seitentyp"
|
3210 |
|
3211 |
# @ acf
|
3212 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3213 |
msgid "Front Page"
|
3214 |
msgstr "Startseite"
|
3215 |
|
3216 |
# @ acf
|
3217 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3218 |
msgid "Posts Page"
|
3219 |
msgstr "Beitrags-Seite"
|
3220 |
|
3221 |
# @ acf
|
3222 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3223 |
msgid "Top Level Page (no parent)"
|
3224 |
msgstr "Seite ohne übergeordnete Seiten"
|
3225 |
|
3226 |
# @ acf
|
3227 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3228 |
msgid "Parent Page (has children)"
|
3229 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3230 |
|
3231 |
# @ acf
|
3232 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3233 |
msgid "Child Page (has parent)"
|
3234 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3235 |
|
@@ -3254,10 +3289,9 @@ msgid "Post Taxonomy"
|
|
3254 |
msgstr "Beitrags-Taxonomie"
|
3255 |
|
3256 |
# @ acf
|
3257 |
-
#: includes/locations/class-acf-location-post-template.php:
|
3258 |
-
#, fuzzy
|
3259 |
msgid "Post Template"
|
3260 |
-
msgstr "
|
3261 |
|
3262 |
# @ acf
|
3263 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
@@ -3270,12 +3304,12 @@ msgid "User Form"
|
|
3270 |
msgstr "Benutzer-Formular"
|
3271 |
|
3272 |
# @ acf
|
3273 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3274 |
msgid "Add / Edit"
|
3275 |
msgstr "Hinzufügen / Bearbeiten"
|
3276 |
|
3277 |
# @ acf
|
3278 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3279 |
msgid "Register"
|
3280 |
msgstr "Registrieren"
|
3281 |
|
@@ -3312,12 +3346,12 @@ msgid "Advanced Custom Fields PRO"
|
|
3312 |
msgstr "Advanced Custom Fields PRO"
|
3313 |
|
3314 |
# @ acf
|
3315 |
-
#: pro/admin/admin-options-page.php:
|
3316 |
msgid "Publish"
|
3317 |
msgstr "Veröffentlichen"
|
3318 |
|
3319 |
# @ acf
|
3320 |
-
#: pro/admin/admin-options-page.php:
|
3321 |
#, php-format
|
3322 |
msgid ""
|
3323 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
@@ -3330,29 +3364,29 @@ msgstr ""
|
|
3330 |
#: pro/admin/admin-settings-updates.php:78
|
3331 |
msgid "<b>Error</b>. Could not connect to update server"
|
3332 |
msgstr ""
|
3333 |
-
"<b>Fehler</b>. Verbindung zum Update-Server konnte nicht hergestellt werden
|
3334 |
|
3335 |
# @ acf
|
3336 |
#: pro/admin/admin-settings-updates.php:162
|
3337 |
-
#: pro/admin/views/html-settings-updates.php:
|
3338 |
msgid "Updates"
|
3339 |
msgstr "Aktualisierungen"
|
3340 |
|
3341 |
# @ acf
|
3342 |
-
#: pro/admin/views/html-settings-updates.php:
|
3343 |
msgid "Deactivate License"
|
3344 |
msgstr "Lizenz deaktivieren"
|
3345 |
|
3346 |
# @ acf
|
3347 |
-
#: pro/admin/views/html-settings-updates.php:
|
3348 |
msgid "Activate License"
|
3349 |
msgstr "Lizenz aktivieren"
|
3350 |
|
3351 |
-
#: pro/admin/views/html-settings-updates.php:
|
3352 |
msgid "License Information"
|
3353 |
msgstr "Lizenzinformationen"
|
3354 |
|
3355 |
-
#: pro/admin/views/html-settings-updates.php:
|
3356 |
#, php-format
|
3357 |
msgid ""
|
3358 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -3364,366 +3398,366 @@ msgstr ""
|
|
3364 |
"target=\"_blank\">Details & Preise</a>."
|
3365 |
|
3366 |
# @ acf
|
3367 |
-
#: pro/admin/views/html-settings-updates.php:
|
3368 |
msgid "License Key"
|
3369 |
msgstr "Lizenzschlüssel"
|
3370 |
|
3371 |
# @ acf
|
3372 |
-
#: pro/admin/views/html-settings-updates.php:
|
3373 |
msgid "Update Information"
|
3374 |
msgstr "Aktualisierungsinformationen"
|
3375 |
|
3376 |
# @ acf
|
3377 |
-
#: pro/admin/views/html-settings-updates.php:
|
3378 |
msgid "Current Version"
|
3379 |
msgstr "Installierte Version"
|
3380 |
|
3381 |
# @ acf
|
3382 |
-
#: pro/admin/views/html-settings-updates.php:
|
3383 |
msgid "Latest Version"
|
3384 |
msgstr "Aktuellste Version"
|
3385 |
|
3386 |
# @ acf
|
3387 |
-
#: pro/admin/views/html-settings-updates.php:
|
3388 |
msgid "Update Available"
|
3389 |
msgstr "Aktualisierung verfügbar"
|
3390 |
|
3391 |
# @ acf
|
3392 |
-
#: pro/admin/views/html-settings-updates.php:
|
3393 |
msgid "Update Plugin"
|
3394 |
msgstr "Plugin aktualisieren"
|
3395 |
|
3396 |
# @ acf
|
3397 |
-
#: pro/admin/views/html-settings-updates.php:
|
3398 |
msgid "Please enter your license key above to unlock updates"
|
3399 |
msgstr ""
|
3400 |
"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit "
|
3401 |
"freizuschalten"
|
3402 |
|
3403 |
# @ acf
|
3404 |
-
#: pro/admin/views/html-settings-updates.php:
|
3405 |
msgid "Check Again"
|
3406 |
msgstr "Erneut suchen"
|
3407 |
|
3408 |
# @ acf
|
3409 |
-
#: pro/admin/views/html-settings-updates.php:
|
3410 |
msgid "Upgrade Notice"
|
3411 |
msgstr "Aktualisierungs-Hinweis"
|
3412 |
|
3413 |
-
#: pro/fields/class-acf-field-clone.php:
|
3414 |
msgctxt "noun"
|
3415 |
msgid "Clone"
|
3416 |
msgstr "Klonen"
|
3417 |
|
3418 |
-
#: pro/fields/class-acf-field-clone.php:
|
3419 |
msgid "Select one or more fields you wish to clone"
|
3420 |
msgstr "Wähle eines oder mehrere Felder aus, das/die du klonen willst"
|
3421 |
|
3422 |
# @ acf
|
3423 |
-
#: pro/fields/class-acf-field-clone.php:
|
3424 |
msgid "Display"
|
3425 |
msgstr "Anzeige"
|
3426 |
|
3427 |
-
#: pro/fields/class-acf-field-clone.php:
|
3428 |
msgid "Specify the style used to render the clone field"
|
3429 |
msgstr "Gib an, wie die geklonten Felder ausgegeben werden sollen"
|
3430 |
|
3431 |
-
#: pro/fields/class-acf-field-clone.php:
|
3432 |
msgid "Group (displays selected fields in a group within this field)"
|
3433 |
msgstr ""
|
3434 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses Felds "
|
3435 |
"an)"
|
3436 |
|
3437 |
-
#: pro/fields/class-acf-field-clone.php:
|
3438 |
msgid "Seamless (replaces this field with selected fields)"
|
3439 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3440 |
|
3441 |
-
#: pro/fields/class-acf-field-clone.php:
|
3442 |
#, php-format
|
3443 |
msgid "Labels will be displayed as %s"
|
3444 |
msgstr "Bezeichnungen werden angezeigt als %s"
|
3445 |
|
3446 |
-
#: pro/fields/class-acf-field-clone.php:
|
3447 |
msgid "Prefix Field Labels"
|
3448 |
msgstr "Präfix für Feld Bezeichnungen"
|
3449 |
|
3450 |
-
#: pro/fields/class-acf-field-clone.php:
|
3451 |
#, php-format
|
3452 |
msgid "Values will be saved as %s"
|
3453 |
msgstr "Werte werden gespeichert als %s"
|
3454 |
|
3455 |
-
#: pro/fields/class-acf-field-clone.php:
|
3456 |
msgid "Prefix Field Names"
|
3457 |
msgstr "Präfix für Feld Namen"
|
3458 |
|
3459 |
-
#: pro/fields/class-acf-field-clone.php:
|
3460 |
msgid "Unknown field"
|
3461 |
msgstr "Unbekanntes Feld"
|
3462 |
|
3463 |
-
#: pro/fields/class-acf-field-clone.php:
|
3464 |
msgid "Unknown field group"
|
3465 |
msgstr "Unbekannte Feld-Gruppe"
|
3466 |
|
3467 |
-
#: pro/fields/class-acf-field-clone.php:
|
3468 |
#, php-format
|
3469 |
msgid "All fields from %s field group"
|
3470 |
msgstr "Alle Felder der %s Feld-Gruppe"
|
3471 |
|
3472 |
# @ acf
|
3473 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3474 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3475 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3476 |
msgid "Add Row"
|
3477 |
msgstr "Eintrag hinzufügen"
|
3478 |
|
3479 |
# @ acf
|
3480 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3481 |
msgid "layout"
|
3482 |
msgstr "Eintrag"
|
3483 |
|
3484 |
# @ acf
|
3485 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3486 |
msgid "layouts"
|
3487 |
msgstr "Einträge"
|
3488 |
|
3489 |
# @ acf
|
3490 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3491 |
msgid "remove {layout}?"
|
3492 |
msgstr "{layout} löschen?"
|
3493 |
|
3494 |
# @ acf
|
3495 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3496 |
msgid "This field requires at least {min} {identifier}"
|
3497 |
msgstr "Dieses Feld erfordert mindestens {min} {identifier}"
|
3498 |
|
3499 |
# @ acf
|
3500 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3501 |
msgid "This field has a limit of {max} {identifier}"
|
3502 |
msgstr "Diesem Feld dürfen maximal {max} {identifier} hinzugefügt werden."
|
3503 |
|
3504 |
# @ acf
|
3505 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3506 |
msgid "This field requires at least {min} {label} {identifier}"
|
3507 |
msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}"
|
3508 |
|
3509 |
# @ acf
|
3510 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3511 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3512 |
msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})"
|
3513 |
|
3514 |
# @ acf
|
3515 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3516 |
msgid "{available} {label} {identifier} available (max {max})"
|
3517 |
msgstr "{available} {label} {identifier} möglich (max {max})"
|
3518 |
|
3519 |
# @ acf
|
3520 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3521 |
msgid "{required} {label} {identifier} required (min {min})"
|
3522 |
msgstr "{required} {label} {identifier} erforderlich (min {min})"
|
3523 |
|
3524 |
# @ acf
|
3525 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3526 |
msgid "Flexible Content requires at least 1 layout"
|
3527 |
msgstr "Flexibler Inhalt benötigt mindestens ein Layout"
|
3528 |
|
3529 |
# @ acf
|
3530 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3531 |
#, php-format
|
3532 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3533 |
msgstr "Klicke \"%s\" zum Erstellen des Layouts"
|
3534 |
|
3535 |
# @ acf
|
3536 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3537 |
msgid "Add layout"
|
3538 |
msgstr "Layout hinzufügen"
|
3539 |
|
3540 |
# @ acf
|
3541 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3542 |
msgid "Remove layout"
|
3543 |
msgstr "Layout entfernen"
|
3544 |
|
3545 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3546 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3547 |
msgid "Click to toggle"
|
3548 |
msgstr "Zum Auswählen anklicken"
|
3549 |
|
3550 |
# @ acf
|
3551 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3552 |
msgid "Reorder Layout"
|
3553 |
msgstr "Layout sortieren"
|
3554 |
|
3555 |
# @ acf
|
3556 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3557 |
msgid "Reorder"
|
3558 |
msgstr "Sortieren"
|
3559 |
|
3560 |
# @ acf
|
3561 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3562 |
msgid "Delete Layout"
|
3563 |
msgstr "Layout löschen"
|
3564 |
|
3565 |
# @ acf
|
3566 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3567 |
msgid "Duplicate Layout"
|
3568 |
msgstr "Layout duplizieren"
|
3569 |
|
3570 |
# @ acf
|
3571 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3572 |
msgid "Add New Layout"
|
3573 |
msgstr "Neues Layout hinzufügen"
|
3574 |
|
3575 |
# @ acf
|
3576 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3577 |
msgid "Min"
|
3578 |
msgstr "Min"
|
3579 |
|
3580 |
# @ acf
|
3581 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3582 |
msgid "Max"
|
3583 |
msgstr "Max"
|
3584 |
|
3585 |
# @ acf
|
3586 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3587 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3588 |
msgid "Button Label"
|
3589 |
msgstr "Button-Beschriftung"
|
3590 |
|
3591 |
# @ acf
|
3592 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3593 |
msgid "Minimum Layouts"
|
3594 |
msgstr "Minimum Layouts"
|
3595 |
|
3596 |
# @ acf
|
3597 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3598 |
msgid "Maximum Layouts"
|
3599 |
msgstr "Maximum Layouts"
|
3600 |
|
3601 |
# @ acf
|
3602 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3603 |
msgid "Add Image to Gallery"
|
3604 |
msgstr "Bild zur Galerie hinzufügen"
|
3605 |
|
3606 |
# @ acf
|
3607 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3608 |
msgid "Maximum selection reached"
|
3609 |
msgstr "Maximale Auswahl erreicht"
|
3610 |
|
3611 |
# @ acf
|
3612 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3613 |
msgid "Length"
|
3614 |
msgstr "Länge"
|
3615 |
|
3616 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3617 |
msgid "Caption"
|
3618 |
msgstr "Beschriftung"
|
3619 |
|
3620 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3621 |
msgid "Alt Text"
|
3622 |
msgstr "Alt Text"
|
3623 |
|
3624 |
# @ acf
|
3625 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3626 |
msgid "Add to gallery"
|
3627 |
msgstr "Zur Galerie hinzufügen"
|
3628 |
|
3629 |
# @ acf
|
3630 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3631 |
msgid "Bulk actions"
|
3632 |
msgstr "Massenverarbeitung"
|
3633 |
|
3634 |
# @ acf
|
3635 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3636 |
msgid "Sort by date uploaded"
|
3637 |
msgstr "Sortiere nach Upload-Datum"
|
3638 |
|
3639 |
# @ acf
|
3640 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3641 |
msgid "Sort by date modified"
|
3642 |
msgstr "Sortiere nach Änderungs-Datum"
|
3643 |
|
3644 |
# @ acf
|
3645 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3646 |
msgid "Sort by title"
|
3647 |
msgstr "Sortiere nach Titel"
|
3648 |
|
3649 |
# @ acf
|
3650 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3651 |
msgid "Reverse current order"
|
3652 |
msgstr "Aktuelle Sortierung umkehren"
|
3653 |
|
3654 |
# @ acf
|
3655 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3656 |
msgid "Close"
|
3657 |
msgstr "Schliessen"
|
3658 |
|
3659 |
# @ acf
|
3660 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3661 |
msgid "Minimum Selection"
|
3662 |
msgstr "Minimale Auswahl"
|
3663 |
|
3664 |
# @ acf
|
3665 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3666 |
msgid "Maximum Selection"
|
3667 |
msgstr "Maximale Auswahl"
|
3668 |
|
3669 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3670 |
msgid "Insert"
|
3671 |
msgstr "Einfügen"
|
3672 |
|
3673 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3674 |
msgid "Specify where new attachments are added"
|
3675 |
msgstr "Gib an, wo neue Anhänge eingefügt werden sollen"
|
3676 |
|
3677 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3678 |
msgid "Append to the end"
|
3679 |
msgstr "Am Schluss anhängen"
|
3680 |
|
3681 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3682 |
msgid "Prepend to the beginning"
|
3683 |
msgstr "Vor Beginn einfügen"
|
3684 |
|
3685 |
# @ acf
|
3686 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3687 |
msgid "Minimum rows reached ({min} rows)"
|
3688 |
msgstr "Minimum der Einträge mit ({min} Reihen) erreicht"
|
3689 |
|
3690 |
# @ acf
|
3691 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3692 |
msgid "Maximum rows reached ({max} rows)"
|
3693 |
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
3694 |
|
3695 |
# @ acf
|
3696 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3697 |
msgid "Add row"
|
3698 |
msgstr "Eintrag hinzufügen"
|
3699 |
|
3700 |
# @ acf
|
3701 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3702 |
msgid "Remove row"
|
3703 |
msgstr "Eintrag löschen"
|
3704 |
|
3705 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3706 |
msgid "Collapsed"
|
3707 |
msgstr "Zugeklappt"
|
3708 |
|
3709 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3710 |
msgid "Select a sub field to show when row is collapsed"
|
3711 |
msgstr ""
|
3712 |
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
3713 |
-
"werden soll
|
3714 |
|
3715 |
# @ acf
|
3716 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3717 |
msgid "Minimum Rows"
|
3718 |
msgstr "Minimum der Einträge"
|
3719 |
|
3720 |
# @ acf
|
3721 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3722 |
msgid "Maximum Rows"
|
3723 |
msgstr "Maximum der Einträge"
|
3724 |
|
3725 |
# @ acf
|
3726 |
-
#: pro/locations/class-acf-location-options-page.php:
|
3727 |
msgid "No options pages exist"
|
3728 |
msgstr "Keine Options-Seiten vorhanden"
|
3729 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Custom Fields Pro v5.6.6\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Raphael Hüni <rafhun@gmail.com>\n"
|
9 |
"Language: de_CH\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
# @ acf
|
26 |
+
#: acf.php:67
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
+
#: acf.php:369 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
+
#: acf.php:370
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
+
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
42 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
+
#: acf.php:372
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
+
#: acf.php:373
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
+
#: acf.php:374
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
+
#: acf.php:375
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
+
#: acf.php:376
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
+
#: acf.php:377
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
+
#: acf.php:378
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
+
#: acf.php:401 includes/admin/admin-field-group.php:182
|
83 |
#: includes/admin/admin-field-group.php:275
|
84 |
#: includes/admin/admin-field-groups.php:510
|
85 |
+
#: pro/fields/class-acf-field-clone.php:807
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
+
#: acf.php:402
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
+
#: acf.php:404
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
+
#: acf.php:405
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
+
#: acf.php:406 includes/admin/views/field-group-fields.php:41
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Neues Feld"
|
109 |
|
110 |
# @ acf
|
111 |
+
#: acf.php:407
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
+
#: acf.php:408
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
+
#: acf.php:409
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
+
#: acf.php:410
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
+
#: acf.php:449 includes/admin/admin-field-group.php:390
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inaktiv"
|
134 |
|
135 |
+
#: acf.php:454
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
207 |
|
208 |
# @ acf
|
209 |
#: includes/admin/admin-field-group.php:273
|
210 |
+
#: includes/api/api-field-group.php:751
|
211 |
msgid "copy"
|
212 |
msgstr "kopieren"
|
213 |
|
217 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
218 |
#: includes/admin/views/field-group-locations.php:29
|
219 |
#: includes/admin/views/html-location-group.php:3
|
220 |
+
#: includes/api/api-helpers.php:3964
|
221 |
msgid "or"
|
222 |
msgstr "oder"
|
223 |
|
239 |
# @ acf
|
240 |
#: includes/admin/admin-field-group.php:279
|
241 |
msgid "This field cannot be moved until its changes have been saved"
|
242 |
+
msgstr "Diese Feld kann nicht verschoben werden, bevor es gesichert wurde"
|
243 |
|
244 |
# @ acf
|
245 |
#: includes/admin/admin-field-group.php:280
|
247 |
msgstr "Null"
|
248 |
|
249 |
# @ acf
|
250 |
+
#: includes/admin/admin-field-group.php:281 includes/input.php:258
|
251 |
msgid "The changes you made will be lost if you navigate away from this page"
|
252 |
msgstr ""
|
253 |
+
"Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen wird"
|
254 |
|
255 |
# @ acf
|
256 |
#: includes/admin/admin-field-group.php:282
|
335 |
|
336 |
# @ acf
|
337 |
#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38
|
338 |
+
#: pro/fields/class-acf-field-gallery.php:355
|
339 |
msgid "Title"
|
340 |
msgstr "Titel"
|
341 |
|
344 |
#: includes/admin/views/field-group-options.php:96
|
345 |
#: includes/admin/views/install-network.php:21
|
346 |
#: includes/admin/views/install-network.php:29
|
347 |
+
#: pro/fields/class-acf-field-gallery.php:382
|
348 |
msgid "Description"
|
349 |
msgstr "Beschreibung"
|
350 |
|
363 |
# @ acf
|
364 |
#: includes/admin/admin-field-groups.php:609
|
365 |
#: includes/admin/settings-info.php:76
|
366 |
+
#: pro/admin/views/html-settings-updates.php:107
|
367 |
msgid "Changelog"
|
368 |
msgstr "Versionshinweise"
|
369 |
|
379 |
|
380 |
#: includes/admin/admin-field-groups.php:619
|
381 |
msgid "Website"
|
382 |
+
msgstr "Webseite"
|
383 |
|
384 |
#: includes/admin/admin-field-groups.php:620
|
385 |
msgid "Documentation"
|
390 |
msgstr "Hilfe"
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:623
|
|
|
393 |
msgid "Pro"
|
394 |
+
msgstr "Pro"
|
395 |
|
396 |
#: includes/admin/admin-field-groups.php:628
|
397 |
#, php-format
|
407 |
#: includes/admin/admin-field-groups.php:668
|
408 |
#: includes/admin/admin-field-groups.php:684
|
409 |
#: includes/admin/views/field-group-field.php:49
|
410 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
411 |
msgid "Duplicate"
|
412 |
msgstr "Duplizieren"
|
413 |
|
414 |
# @ acf
|
415 |
#: includes/admin/admin-field-groups.php:701
|
416 |
+
#: includes/fields/class-acf-field-google-map.php:112
|
417 |
+
#: includes/fields/class-acf-field-relationship.php:656
|
418 |
msgid "Search"
|
419 |
msgstr "Suchen"
|
420 |
|
437 |
|
438 |
#: includes/admin/admin-field-groups.php:780
|
439 |
msgid "Apply"
|
440 |
+
msgstr "Anwenden"
|
441 |
|
442 |
# @ acf
|
443 |
#: includes/admin/admin-field-groups.php:798
|
|
|
444 |
msgid "Bulk Actions"
|
445 |
msgstr "Massenverarbeitung"
|
446 |
|
504 |
|
505 |
# @ acf
|
506 |
#: includes/admin/settings-tools.php:184
|
507 |
+
#: includes/fields/class-acf-field-file.php:155
|
508 |
msgid "No file selected"
|
509 |
msgstr "Keine Datei ausgewählt"
|
510 |
|
511 |
# @ acf
|
512 |
#: includes/admin/settings-tools.php:197
|
513 |
msgid "Error uploading file. Please try again"
|
514 |
+
msgstr "Fehler beim Upload. Bitte erneut versuchen"
|
515 |
|
516 |
# @ acf
|
517 |
#: includes/admin/settings-tools.php:206
|
542 |
|
543 |
# @ acf
|
544 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
545 |
+
#: includes/locations.php:247
|
546 |
msgid "is equal to"
|
547 |
msgstr "ist gleich"
|
548 |
|
549 |
# @ acf
|
550 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
551 |
+
#: includes/locations.php:248
|
552 |
msgid "is not equal to"
|
553 |
msgstr "ist ungleich"
|
554 |
|
566 |
|
567 |
# @ acf
|
568 |
#: includes/admin/views/field-group-field.php:41
|
569 |
+
#: pro/fields/class-acf-field-flexible-content.php:403
|
570 |
+
#: pro/fields/class-acf-field-repeater.php:296
|
571 |
msgid "Drag to reorder"
|
572 |
msgstr "Ziehen zum Sortieren"
|
573 |
|
579 |
|
580 |
# @ acf
|
581 |
#: includes/admin/views/field-group-field.php:48
|
582 |
+
#: includes/fields/class-acf-field-file.php:137
|
583 |
+
#: includes/fields/class-acf-field-image.php:122
|
584 |
+
#: includes/fields/class-acf-field-link.php:139
|
585 |
+
#: pro/fields/class-acf-field-gallery.php:342
|
586 |
msgid "Edit"
|
587 |
msgstr "Bearbeiten"
|
588 |
|
608 |
|
609 |
# @ acf
|
610 |
#: includes/admin/views/field-group-field.php:51
|
611 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
612 |
msgid "Delete"
|
613 |
msgstr "Löschen"
|
614 |
|
623 |
msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt"
|
624 |
|
625 |
# @ acf
|
626 |
+
#: includes/admin/views/field-group-field.php:77
|
627 |
msgid "Field Name"
|
628 |
msgstr "Feld-Name"
|
629 |
|
630 |
# @ acf
|
631 |
+
#: includes/admin/views/field-group-field.php:78
|
632 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
633 |
msgstr ""
|
634 |
"Nur ein Wort ohne Leerzeichen; es sind nur Unterstriche und Bindestriche als "
|
635 |
"Sonderzeichen erlaubt"
|
636 |
|
637 |
# @ acf
|
638 |
+
#: includes/admin/views/field-group-field.php:87
|
639 |
msgid "Field Type"
|
640 |
msgstr "Feld-Typ"
|
641 |
|
642 |
# @ acf
|
643 |
+
#: includes/admin/views/field-group-field.php:98
|
644 |
+
#: includes/fields/class-acf-field-tab.php:88
|
645 |
msgid "Instructions"
|
646 |
msgstr "Anweisungen"
|
647 |
|
648 |
# @ acf
|
649 |
+
#: includes/admin/views/field-group-field.php:99
|
650 |
msgid "Instructions for authors. Shown when submitting data"
|
651 |
msgstr "Anweisungen für Autoren werden in der Bearbeitungs-Ansicht angezeigt"
|
652 |
|
653 |
# @ acf
|
654 |
+
#: includes/admin/views/field-group-field.php:108
|
655 |
msgid "Required?"
|
656 |
msgstr "Erforderlich?"
|
657 |
|
658 |
# @ acf
|
659 |
+
#: includes/admin/views/field-group-field.php:131
|
660 |
msgid "Wrapper Attributes"
|
661 |
msgstr "Wrapper-Attribute"
|
662 |
|
663 |
# @ acf
|
664 |
+
#: includes/admin/views/field-group-field.php:137
|
665 |
msgid "width"
|
666 |
msgstr "Breite"
|
667 |
|
668 |
# @ acf
|
669 |
+
#: includes/admin/views/field-group-field.php:152
|
670 |
msgid "class"
|
671 |
msgstr "Klasse"
|
672 |
|
673 |
# @ acf
|
674 |
+
#: includes/admin/views/field-group-field.php:165
|
675 |
msgid "id"
|
676 |
msgstr "ID"
|
677 |
|
678 |
# @ acf
|
679 |
+
#: includes/admin/views/field-group-field.php:177
|
680 |
msgid "Close Field"
|
681 |
msgstr "Feld schliessen"
|
682 |
|
687 |
|
688 |
# @ acf
|
689 |
#: includes/admin/views/field-group-fields.php:5
|
690 |
+
#: includes/fields/class-acf-field-button-group.php:198
|
691 |
+
#: includes/fields/class-acf-field-checkbox.php:415
|
692 |
+
#: includes/fields/class-acf-field-radio.php:306
|
693 |
+
#: includes/fields/class-acf-field-select.php:432
|
694 |
+
#: pro/fields/class-acf-field-flexible-content.php:582
|
695 |
msgid "Label"
|
696 |
msgstr "Name"
|
697 |
|
698 |
# @ acf
|
699 |
#: includes/admin/views/field-group-fields.php:6
|
700 |
+
#: includes/fields/class-acf-field-taxonomy.php:964
|
701 |
+
#: pro/fields/class-acf-field-flexible-content.php:595
|
702 |
msgid "Name"
|
703 |
msgstr "Feld-Name"
|
704 |
|
705 |
#: includes/admin/views/field-group-fields.php:7
|
706 |
msgid "Key"
|
707 |
+
msgstr "Feld-Schlüssel"
|
708 |
|
709 |
# @ acf
|
710 |
#: includes/admin/views/field-group-fields.php:8
|
781 |
|
782 |
# @ acf
|
783 |
#: includes/admin/views/field-group-options.php:62
|
784 |
+
#: includes/fields/class-acf-field-tab.php:102
|
785 |
msgid "Top aligned"
|
786 |
msgstr "Über dem Feld"
|
787 |
|
788 |
# @ acf
|
789 |
#: includes/admin/views/field-group-options.php:63
|
790 |
+
#: includes/fields/class-acf-field-tab.php:103
|
791 |
+
msgid "Left aligned"
|
792 |
msgstr "Links neben dem Feld"
|
793 |
|
794 |
# @ acf
|
809 |
# @ acf
|
810 |
#: includes/admin/views/field-group-options.php:85
|
811 |
msgid "Order No."
|
812 |
+
msgstr "Sortiernr."
|
813 |
|
814 |
#: includes/admin/views/field-group-options.php:86
|
815 |
msgid "Field groups with a lower order will appear first"
|
892 |
|
893 |
# @ acf
|
894 |
#: includes/admin/views/field-group-options.php:126
|
895 |
+
#: includes/fields/class-acf-field-relationship.php:670
|
896 |
msgid "Featured Image"
|
897 |
msgstr "Beitragsbild"
|
898 |
|
986 |
|
987 |
# @ acf
|
988 |
#: includes/admin/views/install-notice.php:8
|
989 |
+
#: pro/fields/class-acf-field-repeater.php:25
|
990 |
msgid "Repeater"
|
991 |
msgstr "Wiederholung"
|
992 |
|
993 |
# @ acf
|
994 |
#: includes/admin/views/install-notice.php:9
|
995 |
+
#: pro/fields/class-acf-field-flexible-content.php:25
|
996 |
msgid "Flexible Content"
|
997 |
msgstr "Flexible Inhalte"
|
998 |
|
999 |
# @ acf
|
1000 |
#: includes/admin/views/install-notice.php:10
|
1001 |
+
#: pro/fields/class-acf-field-gallery.php:25
|
1002 |
msgid "Gallery"
|
1003 |
msgstr "Galerie"
|
1004 |
|
1005 |
# @ acf
|
1006 |
#: includes/admin/views/install-notice.php:11
|
1007 |
+
#: pro/locations/class-acf-location-options-page.php:26
|
1008 |
msgid "Options Page"
|
1009 |
msgstr "Options-Seite"
|
1010 |
|
1034 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
1035 |
"latest version."
|
1036 |
msgstr ""
|
1037 |
+
"Stelle bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) vorab auf die "
|
1038 |
+
"neueste Version aktualisiert wurden."
|
1039 |
|
1040 |
# @ acf
|
1041 |
#: includes/admin/views/install.php:7
|
1131 |
# @ acf
|
1132 |
#: includes/admin/views/settings-info.php:39
|
1133 |
msgid "Goodbye Add-ons. Hello PRO"
|
1134 |
+
msgstr "Macht's gut Add-ons… Hallo PRO"
|
1135 |
|
1136 |
# @ acf
|
1137 |
#: includes/admin/views/settings-info.php:44
|
1208 |
"Um möglichen Fragen vorzubeugen haben wir haben eine <a href=\"%s\"> "
|
1209 |
"Anleitung für den Aktualisierungs-Prozess (Engl.)</a> verfasst. Sollten "
|
1210 |
"dennoch Fragen aufgeworfen werden, kontaktiere bitte unser <a href=\"%s\"> "
|
1211 |
+
"Support-Team </a>"
|
1212 |
|
1213 |
# @ acf
|
1214 |
#: includes/admin/views/settings-info.php:66
|
1366 |
|
1367 |
# @ acf
|
1368 |
#: includes/admin/views/settings-info.php:144
|
1369 |
+
#: includes/fields/class-acf-field-page_link.php:25
|
1370 |
msgid "Page Link"
|
1371 |
msgstr "Seiten-Link"
|
1372 |
|
1469 |
|
1470 |
# @ acf
|
1471 |
#: includes/admin/views/settings-tools.php:77
|
1472 |
+
#: includes/fields/class-acf-field-file.php:35
|
1473 |
msgid "Select File"
|
1474 |
msgstr "Datei auswählen"
|
1475 |
|
1499 |
msgstr "Volle Grösse"
|
1500 |
|
1501 |
# @ acf
|
1502 |
+
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1503 |
+
#: pro/fields/class-acf-field-clone.php:992
|
1504 |
msgid "(no title)"
|
1505 |
msgstr "(ohne Titel)"
|
1506 |
|
1507 |
+
#: includes/api/api-helpers.php:1868
|
1508 |
+
#: includes/fields/class-acf-field-page_link.php:269
|
1509 |
+
#: includes/fields/class-acf-field-post_object.php:268
|
1510 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
1511 |
msgid "Parent"
|
1512 |
msgstr "Eltern"
|
1513 |
|
1514 |
# @ acf
|
1515 |
+
#: includes/api/api-helpers.php:3885
|
1516 |
#, php-format
|
1517 |
msgid "Image width must be at least %dpx."
|
1518 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1519 |
|
1520 |
# @ acf
|
1521 |
+
#: includes/api/api-helpers.php:3890
|
1522 |
#, php-format
|
1523 |
msgid "Image width must not exceed %dpx."
|
1524 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1525 |
|
1526 |
# @ acf
|
1527 |
+
#: includes/api/api-helpers.php:3906
|
1528 |
#, php-format
|
1529 |
msgid "Image height must be at least %dpx."
|
1530 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1531 |
|
1532 |
# @ acf
|
1533 |
+
#: includes/api/api-helpers.php:3911
|
1534 |
#, php-format
|
1535 |
msgid "Image height must not exceed %dpx."
|
1536 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1537 |
|
1538 |
# @ acf
|
1539 |
+
#: includes/api/api-helpers.php:3929
|
1540 |
#, php-format
|
1541 |
msgid "File size must be at least %s."
|
1542 |
msgstr "Die Dateigrösse muss mindestens %s sein."
|
1543 |
|
1544 |
# @ acf
|
1545 |
+
#: includes/api/api-helpers.php:3934
|
1546 |
#, php-format
|
1547 |
msgid "File size must must not exceed %s."
|
1548 |
msgstr "Die Dateigrösse darf %s nicht überschreiten."
|
1549 |
|
1550 |
# @ acf
|
1551 |
+
#: includes/api/api-helpers.php:3968
|
1552 |
#, php-format
|
1553 |
msgid "File type must be %s."
|
1554 |
msgstr "Der Dateityp muss %s sein."
|
1579 |
msgstr "jQuery"
|
1580 |
|
1581 |
# @ acf
|
1582 |
+
#: includes/fields.php:149
|
1583 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1584 |
+
#: includes/fields/class-acf-field-checkbox.php:384
|
1585 |
+
#: includes/fields/class-acf-field-group.php:474
|
1586 |
+
#: includes/fields/class-acf-field-radio.php:285
|
1587 |
+
#: pro/fields/class-acf-field-clone.php:839
|
1588 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
1589 |
+
#: pro/fields/class-acf-field-flexible-content.php:601
|
1590 |
+
#: pro/fields/class-acf-field-repeater.php:450
|
1591 |
msgid "Layout"
|
1592 |
msgstr "Layout"
|
1593 |
|
1594 |
# @ acf
|
1595 |
+
#: includes/fields.php:326
|
1596 |
msgid "Field type does not exist"
|
1597 |
msgstr "Feld-Typ existiert nicht"
|
1598 |
|
1599 |
+
#: includes/fields.php:326
|
|
|
1600 |
msgid "Unknown"
|
1601 |
+
msgstr "Unbekannt"
|
1602 |
|
1603 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
1604 |
+
msgid "Button Group"
|
1605 |
+
msgstr "Button Gruppe"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1606 |
|
1607 |
# @ acf
|
1608 |
+
#: includes/fields/class-acf-field-button-group.php:149
|
1609 |
+
#: includes/fields/class-acf-field-checkbox.php:344
|
1610 |
+
#: includes/fields/class-acf-field-radio.php:235
|
1611 |
+
#: includes/fields/class-acf-field-select.php:368
|
1612 |
msgid "Choices"
|
1613 |
msgstr "Auswahlmöglichkeiten"
|
1614 |
|
1615 |
# @ acf
|
1616 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1617 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1618 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1619 |
+
#: includes/fields/class-acf-field-select.php:369
|
1620 |
msgid "Enter each choice on a new line."
|
1621 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1622 |
|
1623 |
# @ acf
|
1624 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1625 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1626 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1627 |
+
#: includes/fields/class-acf-field-select.php:369
|
1628 |
msgid "For more control, you may specify both a value and label like this:"
|
1629 |
msgstr ""
|
1630 |
"Für eine bessere Darstellung, kannst Du auch einen Wert und dazu dessen "
|
1631 |
"Beschriftung definieren:"
|
1632 |
|
1633 |
# @ acf
|
1634 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1635 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1636 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1637 |
+
#: includes/fields/class-acf-field-select.php:369
|
1638 |
msgid "red : Red"
|
1639 |
msgstr "rot : Rot"
|
1640 |
|
1641 |
+
# @ acf
|
1642 |
+
#: includes/fields/class-acf-field-button-group.php:158
|
1643 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
1644 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
1645 |
+
#: includes/fields/class-acf-field-radio.php:244
|
1646 |
+
#: includes/fields/class-acf-field-select.php:386
|
1647 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
1648 |
+
#: includes/fields/class-acf-field-user.php:408
|
1649 |
+
msgid "Allow Null?"
|
1650 |
+
msgstr "NULL-Werte zulassen?"
|
|
|
|
|
|
|
|
|
|
|
|
|
1651 |
|
1652 |
# @ acf
|
1653 |
+
#: includes/fields/class-acf-field-button-group.php:168
|
1654 |
+
#: includes/fields/class-acf-field-checkbox.php:375
|
1655 |
+
#: includes/fields/class-acf-field-color_picker.php:131
|
1656 |
+
#: includes/fields/class-acf-field-email.php:118
|
1657 |
+
#: includes/fields/class-acf-field-number.php:127
|
1658 |
+
#: includes/fields/class-acf-field-radio.php:276
|
1659 |
+
#: includes/fields/class-acf-field-range.php:148
|
1660 |
+
#: includes/fields/class-acf-field-select.php:377
|
1661 |
+
#: includes/fields/class-acf-field-text.php:119
|
1662 |
+
#: includes/fields/class-acf-field-textarea.php:102
|
1663 |
+
#: includes/fields/class-acf-field-true_false.php:135
|
1664 |
+
#: includes/fields/class-acf-field-url.php:100
|
1665 |
+
#: includes/fields/class-acf-field-wysiwyg.php:410
|
1666 |
msgid "Default Value"
|
1667 |
msgstr "Standardwert"
|
1668 |
|
1669 |
# @ acf
|
1670 |
+
#: includes/fields/class-acf-field-button-group.php:169
|
1671 |
+
#: includes/fields/class-acf-field-email.php:119
|
1672 |
+
#: includes/fields/class-acf-field-number.php:128
|
1673 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1674 |
+
#: includes/fields/class-acf-field-range.php:149
|
1675 |
+
#: includes/fields/class-acf-field-text.php:120
|
1676 |
+
#: includes/fields/class-acf-field-textarea.php:103
|
1677 |
+
#: includes/fields/class-acf-field-url.php:101
|
1678 |
+
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1679 |
+
msgid "Appears when creating a new post"
|
1680 |
+
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1681 |
|
1682 |
# @ acf
|
1683 |
+
#: includes/fields/class-acf-field-button-group.php:183
|
1684 |
+
#: includes/fields/class-acf-field-checkbox.php:391
|
1685 |
+
#: includes/fields/class-acf-field-radio.php:292
|
1686 |
msgid "Horizontal"
|
1687 |
msgstr "Horizontal"
|
1688 |
|
1689 |
+
# @ acf
|
1690 |
+
#: includes/fields/class-acf-field-button-group.php:184
|
1691 |
+
#: includes/fields/class-acf-field-checkbox.php:390
|
1692 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1693 |
+
msgid "Vertical"
|
1694 |
+
msgstr "Vertikal"
|
|
|
|
|
1695 |
|
1696 |
# @ acf
|
1697 |
+
#: includes/fields/class-acf-field-button-group.php:191
|
1698 |
+
#: includes/fields/class-acf-field-checkbox.php:408
|
1699 |
+
#: includes/fields/class-acf-field-file.php:200
|
1700 |
+
#: includes/fields/class-acf-field-image.php:188
|
1701 |
+
#: includes/fields/class-acf-field-link.php:166
|
1702 |
+
#: includes/fields/class-acf-field-radio.php:299
|
1703 |
+
#: includes/fields/class-acf-field-taxonomy.php:833
|
1704 |
msgid "Return Value"
|
1705 |
msgstr "Rückgabewert"
|
1706 |
|
1707 |
# @ acf
|
1708 |
+
#: includes/fields/class-acf-field-button-group.php:192
|
1709 |
+
#: includes/fields/class-acf-field-checkbox.php:409
|
1710 |
+
#: includes/fields/class-acf-field-file.php:201
|
1711 |
+
#: includes/fields/class-acf-field-image.php:189
|
1712 |
+
#: includes/fields/class-acf-field-link.php:167
|
1713 |
+
#: includes/fields/class-acf-field-radio.php:300
|
1714 |
msgid "Specify the returned value on front end"
|
1715 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1716 |
|
1717 |
+
#: includes/fields/class-acf-field-button-group.php:197
|
1718 |
+
#: includes/fields/class-acf-field-checkbox.php:414
|
1719 |
+
#: includes/fields/class-acf-field-radio.php:305
|
1720 |
+
#: includes/fields/class-acf-field-select.php:431
|
1721 |
msgid "Value"
|
1722 |
msgstr "Wert"
|
1723 |
|
1724 |
+
#: includes/fields/class-acf-field-button-group.php:199
|
1725 |
+
#: includes/fields/class-acf-field-checkbox.php:416
|
1726 |
+
#: includes/fields/class-acf-field-radio.php:307
|
1727 |
+
#: includes/fields/class-acf-field-select.php:433
|
1728 |
msgid "Both (Array)"
|
1729 |
msgstr "Beide (Array)"
|
1730 |
|
1731 |
# @ acf
|
1732 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1733 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1734 |
+
msgid "Checkbox"
|
1735 |
+
msgstr "Checkbox"
|
1736 |
+
|
1737 |
+
# @ acf
|
1738 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1739 |
+
msgid "Toggle All"
|
1740 |
+
msgstr "Alle auswählen"
|
1741 |
+
|
1742 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1743 |
+
msgid "Add new choice"
|
1744 |
+
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1745 |
+
|
1746 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1747 |
+
msgid "Allow Custom"
|
1748 |
+
msgstr "Erlaube benutzerdefinierte Felder"
|
1749 |
+
|
1750 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
1751 |
+
msgid "Allow 'custom' values to be added"
|
1752 |
+
msgstr "Erlaube das Hinzufügen benutzerdefinierter Werte"
|
1753 |
+
|
1754 |
+
#: includes/fields/class-acf-field-checkbox.php:364
|
1755 |
+
msgid "Save Custom"
|
1756 |
+
msgstr "Benutzerdefinierte Werte sichern"
|
1757 |
+
|
1758 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1759 |
+
msgid "Save 'custom' values to the field's choices"
|
1760 |
+
msgstr ""
|
1761 |
+
"Sichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1762 |
+
|
1763 |
+
# @ acf
|
1764 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1765 |
+
#: includes/fields/class-acf-field-select.php:378
|
1766 |
+
msgid "Enter each default value on a new line"
|
1767 |
+
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
1768 |
+
|
1769 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1770 |
+
msgid "Toggle"
|
1771 |
+
msgstr "Auswählen"
|
1772 |
+
|
1773 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
1774 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
1775 |
+
msgstr ""
|
1776 |
+
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1777 |
+
|
1778 |
+
# @ acf
|
1779 |
+
#: includes/fields/class-acf-field-color_picker.php:25
|
1780 |
msgid "Color Picker"
|
1781 |
msgstr "Farbe"
|
1782 |
|
1783 |
# @ acf
|
1784 |
+
#: includes/fields/class-acf-field-color_picker.php:68
|
1785 |
msgid "Clear"
|
1786 |
msgstr "Leeren"
|
1787 |
|
1788 |
# @ acf
|
1789 |
+
#: includes/fields/class-acf-field-color_picker.php:69
|
1790 |
msgid "Default"
|
1791 |
msgstr "Standard"
|
1792 |
|
1793 |
# @ acf
|
1794 |
+
#: includes/fields/class-acf-field-color_picker.php:70
|
1795 |
msgid "Select Color"
|
1796 |
msgstr "Farbe auswählen"
|
1797 |
|
1798 |
+
#: includes/fields/class-acf-field-color_picker.php:71
|
1799 |
msgid "Current Color"
|
1800 |
msgstr "Aktuelle Farbe"
|
1801 |
|
1802 |
# @ acf
|
1803 |
+
#: includes/fields/class-acf-field-date_picker.php:25
|
1804 |
msgid "Date Picker"
|
1805 |
msgstr "Datum"
|
1806 |
|
1807 |
+
#: includes/fields/class-acf-field-date_picker.php:33
|
1808 |
msgctxt "Date Picker JS closeText"
|
1809 |
msgid "Done"
|
1810 |
msgstr "Schliessen"
|
1811 |
|
1812 |
+
#: includes/fields/class-acf-field-date_picker.php:34
|
1813 |
msgctxt "Date Picker JS currentText"
|
1814 |
msgid "Today"
|
1815 |
msgstr "Heute"
|
1816 |
|
1817 |
+
#: includes/fields/class-acf-field-date_picker.php:35
|
1818 |
msgctxt "Date Picker JS nextText"
|
1819 |
msgid "Next"
|
1820 |
msgstr "Weiter"
|
1821 |
|
1822 |
+
#: includes/fields/class-acf-field-date_picker.php:36
|
1823 |
msgctxt "Date Picker JS prevText"
|
1824 |
msgid "Prev"
|
1825 |
msgstr "Zurück"
|
1826 |
|
1827 |
+
#: includes/fields/class-acf-field-date_picker.php:37
|
1828 |
msgctxt "Date Picker JS weekHeader"
|
1829 |
msgid "Wk"
|
1830 |
msgstr "KW"
|
1831 |
|
1832 |
# @ acf
|
1833 |
+
#: includes/fields/class-acf-field-date_picker.php:207
|
1834 |
+
#: includes/fields/class-acf-field-date_time_picker.php:181
|
1835 |
+
#: includes/fields/class-acf-field-time_picker.php:109
|
1836 |
msgid "Display Format"
|
1837 |
msgstr "Darstellungs-Format"
|
1838 |
|
1839 |
# @ acf
|
1840 |
+
#: includes/fields/class-acf-field-date_picker.php:208
|
1841 |
+
#: includes/fields/class-acf-field-date_time_picker.php:182
|
1842 |
+
#: includes/fields/class-acf-field-time_picker.php:110
|
1843 |
msgid "The format displayed when editing a post"
|
1844 |
msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
1845 |
|
1846 |
+
#: includes/fields/class-acf-field-date_picker.php:216
|
1847 |
+
#: includes/fields/class-acf-field-date_picker.php:247
|
1848 |
+
#: includes/fields/class-acf-field-date_time_picker.php:191
|
1849 |
+
#: includes/fields/class-acf-field-date_time_picker.php:208
|
1850 |
+
#: includes/fields/class-acf-field-time_picker.php:117
|
1851 |
+
#: includes/fields/class-acf-field-time_picker.php:132
|
|
|
1852 |
msgid "Custom:"
|
1853 |
+
msgstr "Benutzerdefiniert:"
|
1854 |
|
1855 |
+
#: includes/fields/class-acf-field-date_picker.php:226
|
1856 |
msgid "Save Format"
|
1857 |
msgstr "Format sichern"
|
1858 |
|
1859 |
+
#: includes/fields/class-acf-field-date_picker.php:227
|
1860 |
msgid "The format used when saving a value"
|
1861 |
msgstr "Das verwendete Format, wenn der Wert gesichert wird"
|
1862 |
|
1863 |
# @ acf
|
1864 |
+
#: includes/fields/class-acf-field-date_picker.php:237
|
1865 |
+
#: includes/fields/class-acf-field-date_time_picker.php:198
|
1866 |
+
#: includes/fields/class-acf-field-post_object.php:432
|
1867 |
+
#: includes/fields/class-acf-field-relationship.php:697
|
1868 |
+
#: includes/fields/class-acf-field-select.php:426
|
1869 |
+
#: includes/fields/class-acf-field-time_picker.php:124
|
1870 |
msgid "Return Format"
|
1871 |
msgstr "Rückgabewert"
|
1872 |
|
1873 |
# @ acf
|
1874 |
+
#: includes/fields/class-acf-field-date_picker.php:238
|
1875 |
+
#: includes/fields/class-acf-field-date_time_picker.php:199
|
1876 |
+
#: includes/fields/class-acf-field-time_picker.php:125
|
1877 |
msgid "The format returned via template functions"
|
1878 |
msgstr "Das Datums-Format für die Ausgabe in den Template-Funktionen"
|
1879 |
|
1880 |
# @ acf
|
1881 |
+
#: includes/fields/class-acf-field-date_picker.php:256
|
1882 |
+
#: includes/fields/class-acf-field-date_time_picker.php:215
|
1883 |
msgid "Week Starts On"
|
1884 |
msgstr "Die Woche beginnt am"
|
1885 |
|
1886 |
+
#: includes/fields/class-acf-field-date_time_picker.php:25
|
1887 |
msgid "Date Time Picker"
|
1888 |
msgstr "Datum/Uhrzeit"
|
1889 |
|
1890 |
+
#: includes/fields/class-acf-field-date_time_picker.php:33
|
1891 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1892 |
msgid "Choose Time"
|
1893 |
msgstr "Zeit setzen"
|
1894 |
|
1895 |
+
#: includes/fields/class-acf-field-date_time_picker.php:34
|
1896 |
msgctxt "Date Time Picker JS timeText"
|
1897 |
msgid "Time"
|
1898 |
msgstr "Zeit"
|
1899 |
|
1900 |
+
#: includes/fields/class-acf-field-date_time_picker.php:35
|
1901 |
msgctxt "Date Time Picker JS hourText"
|
1902 |
msgid "Hour"
|
1903 |
msgstr "Stunde"
|
1904 |
|
1905 |
+
#: includes/fields/class-acf-field-date_time_picker.php:36
|
1906 |
msgctxt "Date Time Picker JS minuteText"
|
1907 |
msgid "Minute"
|
1908 |
msgstr "Minute"
|
1909 |
|
1910 |
+
#: includes/fields/class-acf-field-date_time_picker.php:37
|
1911 |
msgctxt "Date Time Picker JS secondText"
|
1912 |
msgid "Second"
|
1913 |
msgstr "Sekunde"
|
1914 |
|
1915 |
+
#: includes/fields/class-acf-field-date_time_picker.php:38
|
1916 |
msgctxt "Date Time Picker JS millisecText"
|
1917 |
msgid "Millisecond"
|
1918 |
msgstr "Millisekunde"
|
1919 |
|
1920 |
+
#: includes/fields/class-acf-field-date_time_picker.php:39
|
1921 |
msgctxt "Date Time Picker JS microsecText"
|
1922 |
msgid "Microsecond"
|
1923 |
msgstr "Mikrosekunde"
|
1924 |
|
1925 |
+
#: includes/fields/class-acf-field-date_time_picker.php:40
|
1926 |
msgctxt "Date Time Picker JS timezoneText"
|
1927 |
msgid "Time Zone"
|
1928 |
msgstr "Zeitzone"
|
1929 |
|
1930 |
+
#: includes/fields/class-acf-field-date_time_picker.php:41
|
1931 |
msgctxt "Date Time Picker JS currentText"
|
1932 |
msgid "Now"
|
1933 |
msgstr "Jetzt"
|
1934 |
|
1935 |
+
#: includes/fields/class-acf-field-date_time_picker.php:42
|
1936 |
msgctxt "Date Time Picker JS closeText"
|
1937 |
msgid "Done"
|
1938 |
msgstr "Schliessen"
|
1939 |
|
1940 |
+
#: includes/fields/class-acf-field-date_time_picker.php:43
|
1941 |
msgctxt "Date Time Picker JS selectText"
|
1942 |
msgid "Select"
|
1943 |
msgstr "Auswählen"
|
1944 |
|
1945 |
+
#: includes/fields/class-acf-field-date_time_picker.php:45
|
1946 |
msgctxt "Date Time Picker JS amText"
|
1947 |
msgid "AM"
|
1948 |
msgstr "AM"
|
1949 |
|
1950 |
+
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1951 |
msgctxt "Date Time Picker JS amTextShort"
|
1952 |
msgid "A"
|
1953 |
msgstr "A"
|
1954 |
|
1955 |
+
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1956 |
msgctxt "Date Time Picker JS pmText"
|
1957 |
msgid "PM"
|
1958 |
msgstr "PM"
|
1959 |
|
1960 |
+
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1961 |
msgctxt "Date Time Picker JS pmTextShort"
|
1962 |
msgid "P"
|
1963 |
msgstr "P"
|
1964 |
|
1965 |
# @ acf
|
1966 |
+
#: includes/fields/class-acf-field-email.php:25
|
1967 |
msgid "Email"
|
1968 |
msgstr "E-Mail"
|
1969 |
|
1970 |
# @ acf
|
1971 |
+
#: includes/fields/class-acf-field-email.php:127
|
1972 |
+
#: includes/fields/class-acf-field-number.php:136
|
1973 |
+
#: includes/fields/class-acf-field-password.php:71
|
1974 |
+
#: includes/fields/class-acf-field-text.php:128
|
1975 |
+
#: includes/fields/class-acf-field-textarea.php:111
|
1976 |
+
#: includes/fields/class-acf-field-url.php:109
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1977 |
msgid "Placeholder Text"
|
1978 |
msgstr "Platzhalter-Text"
|
1979 |
|
1980 |
# @ acf
|
1981 |
+
#: includes/fields/class-acf-field-email.php:128
|
1982 |
+
#: includes/fields/class-acf-field-number.php:137
|
1983 |
+
#: includes/fields/class-acf-field-password.php:72
|
1984 |
+
#: includes/fields/class-acf-field-text.php:129
|
1985 |
+
#: includes/fields/class-acf-field-textarea.php:112
|
1986 |
+
#: includes/fields/class-acf-field-url.php:110
|
1987 |
msgid "Appears within the input"
|
1988 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1989 |
|
1990 |
# @ acf
|
1991 |
+
#: includes/fields/class-acf-field-email.php:136
|
1992 |
+
#: includes/fields/class-acf-field-number.php:145
|
1993 |
+
#: includes/fields/class-acf-field-password.php:80
|
1994 |
+
#: includes/fields/class-acf-field-range.php:187
|
1995 |
+
#: includes/fields/class-acf-field-text.php:137
|
1996 |
msgid "Prepend"
|
1997 |
msgstr "Voranstellen"
|
1998 |
|
1999 |
# @ acf
|
2000 |
+
#: includes/fields/class-acf-field-email.php:137
|
2001 |
+
#: includes/fields/class-acf-field-number.php:146
|
2002 |
+
#: includes/fields/class-acf-field-password.php:81
|
2003 |
+
#: includes/fields/class-acf-field-range.php:188
|
2004 |
+
#: includes/fields/class-acf-field-text.php:138
|
2005 |
msgid "Appears before the input"
|
2006 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
2007 |
|
2008 |
# @ acf
|
2009 |
+
#: includes/fields/class-acf-field-email.php:145
|
2010 |
+
#: includes/fields/class-acf-field-number.php:154
|
2011 |
+
#: includes/fields/class-acf-field-password.php:89
|
2012 |
+
#: includes/fields/class-acf-field-range.php:196
|
2013 |
+
#: includes/fields/class-acf-field-text.php:146
|
2014 |
msgid "Append"
|
2015 |
msgstr "Anhängen"
|
2016 |
|
2017 |
# @ acf
|
2018 |
+
#: includes/fields/class-acf-field-email.php:146
|
2019 |
+
#: includes/fields/class-acf-field-number.php:155
|
2020 |
+
#: includes/fields/class-acf-field-password.php:90
|
2021 |
+
#: includes/fields/class-acf-field-range.php:197
|
2022 |
+
#: includes/fields/class-acf-field-text.php:147
|
2023 |
msgid "Appears after the input"
|
2024 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
2025 |
|
2026 |
# @ acf
|
2027 |
+
#: includes/fields/class-acf-field-file.php:25
|
2028 |
msgid "File"
|
2029 |
msgstr "Datei"
|
2030 |
|
2031 |
# @ acf
|
2032 |
+
#: includes/fields/class-acf-field-file.php:36
|
2033 |
msgid "Edit File"
|
2034 |
msgstr "Datei bearbeiten"
|
2035 |
|
2036 |
# @ acf
|
2037 |
+
#: includes/fields/class-acf-field-file.php:37
|
2038 |
msgid "Update File"
|
2039 |
msgstr "Datei aktualisieren"
|
2040 |
|
2041 |
# @ acf
|
2042 |
+
#: includes/fields/class-acf-field-file.php:38
|
2043 |
+
#: includes/fields/class-acf-field-image.php:43 includes/media.php:57
|
2044 |
+
#: pro/fields/class-acf-field-gallery.php:44
|
2045 |
msgid "Uploaded to this post"
|
2046 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2047 |
|
2048 |
+
#: includes/fields/class-acf-field-file.php:126
|
2049 |
msgid "File name"
|
2050 |
msgstr "Dateiname"
|
2051 |
|
2052 |
# @ acf
|
2053 |
+
#: includes/fields/class-acf-field-file.php:130
|
2054 |
+
#: includes/fields/class-acf-field-file.php:233
|
2055 |
+
#: includes/fields/class-acf-field-file.php:244
|
2056 |
+
#: includes/fields/class-acf-field-image.php:248
|
2057 |
+
#: includes/fields/class-acf-field-image.php:277
|
2058 |
+
#: pro/fields/class-acf-field-gallery.php:690
|
2059 |
+
#: pro/fields/class-acf-field-gallery.php:719
|
2060 |
msgid "File size"
|
2061 |
msgstr "Dateigrösse"
|
2062 |
|
2063 |
# @ acf
|
2064 |
+
#: includes/fields/class-acf-field-file.php:139
|
2065 |
+
#: includes/fields/class-acf-field-image.php:124
|
2066 |
+
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2067 |
+
#: pro/fields/class-acf-field-gallery.php:343
|
2068 |
+
#: pro/fields/class-acf-field-gallery.php:531
|
2069 |
+
msgid "Remove"
|
2070 |
+
msgstr "Entfernen"
|
2071 |
+
|
2072 |
+
# @ acf
|
2073 |
+
#: includes/fields/class-acf-field-file.php:155
|
2074 |
msgid "Add File"
|
2075 |
msgstr "Datei hinzufügen"
|
2076 |
|
2077 |
# @ acf
|
2078 |
+
#: includes/fields/class-acf-field-file.php:206
|
2079 |
msgid "File Array"
|
2080 |
msgstr "Datei-Array"
|
2081 |
|
2082 |
# @ acf
|
2083 |
+
#: includes/fields/class-acf-field-file.php:207
|
2084 |
msgid "File URL"
|
2085 |
msgstr "Datei-URL"
|
2086 |
|
2087 |
# @ acf
|
2088 |
+
#: includes/fields/class-acf-field-file.php:208
|
2089 |
msgid "File ID"
|
2090 |
msgstr "Datei-ID"
|
2091 |
|
2092 |
# @ acf
|
2093 |
+
#: includes/fields/class-acf-field-file.php:215
|
2094 |
+
#: includes/fields/class-acf-field-image.php:213
|
2095 |
+
#: pro/fields/class-acf-field-gallery.php:655
|
2096 |
msgid "Library"
|
2097 |
msgstr "Medienübersicht"
|
2098 |
|
2099 |
# @ acf
|
2100 |
+
#: includes/fields/class-acf-field-file.php:216
|
2101 |
+
#: includes/fields/class-acf-field-image.php:214
|
2102 |
+
#: pro/fields/class-acf-field-gallery.php:656
|
2103 |
msgid "Limit the media library choice"
|
2104 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2105 |
|
2106 |
# @ acf
|
2107 |
+
#: includes/fields/class-acf-field-file.php:221
|
2108 |
+
#: includes/fields/class-acf-field-image.php:219
|
2109 |
+
#: includes/locations/class-acf-location-attachment.php:101
|
2110 |
+
#: includes/locations/class-acf-location-comment.php:79
|
2111 |
+
#: includes/locations/class-acf-location-nav-menu.php:102
|
2112 |
+
#: includes/locations/class-acf-location-taxonomy.php:79
|
2113 |
+
#: includes/locations/class-acf-location-user-form.php:87
|
2114 |
+
#: includes/locations/class-acf-location-user-role.php:111
|
2115 |
+
#: includes/locations/class-acf-location-widget.php:83
|
2116 |
+
#: pro/fields/class-acf-field-gallery.php:661
|
2117 |
msgid "All"
|
2118 |
msgstr "Alle"
|
2119 |
|
2120 |
# @ acf
|
2121 |
+
#: includes/fields/class-acf-field-file.php:222
|
2122 |
+
#: includes/fields/class-acf-field-image.php:220
|
2123 |
+
#: pro/fields/class-acf-field-gallery.php:662
|
2124 |
msgid "Uploaded to post"
|
2125 |
msgstr "Für den Beitrag hochgeladen"
|
2126 |
|
2127 |
# @ acf
|
2128 |
+
#: includes/fields/class-acf-field-file.php:229
|
2129 |
+
#: includes/fields/class-acf-field-image.php:227
|
2130 |
+
#: pro/fields/class-acf-field-gallery.php:669
|
2131 |
msgid "Minimum"
|
2132 |
msgstr "Minimum"
|
2133 |
|
2134 |
# @ acf
|
2135 |
+
#: includes/fields/class-acf-field-file.php:230
|
2136 |
+
#: includes/fields/class-acf-field-file.php:241
|
2137 |
msgid "Restrict which files can be uploaded"
|
2138 |
msgstr ""
|
2139 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2140 |
"erfüllen"
|
2141 |
|
2142 |
# @ acf
|
2143 |
+
#: includes/fields/class-acf-field-file.php:240
|
2144 |
+
#: includes/fields/class-acf-field-image.php:256
|
2145 |
+
#: pro/fields/class-acf-field-gallery.php:698
|
2146 |
msgid "Maximum"
|
2147 |
msgstr "Maximum"
|
2148 |
|
2149 |
# @ acf
|
2150 |
+
#: includes/fields/class-acf-field-file.php:251
|
2151 |
+
#: includes/fields/class-acf-field-image.php:285
|
2152 |
+
#: pro/fields/class-acf-field-gallery.php:727
|
2153 |
msgid "Allowed file types"
|
2154 |
msgstr "Erlaubte Datei-Formate"
|
2155 |
|
2156 |
# @ acf
|
2157 |
+
#: includes/fields/class-acf-field-file.php:252
|
2158 |
+
#: includes/fields/class-acf-field-image.php:286
|
2159 |
+
#: pro/fields/class-acf-field-gallery.php:728
|
2160 |
msgid "Comma separated list. Leave blank for all types"
|
2161 |
msgstr ""
|
2162 |
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2163 |
"erlaubt"
|
2164 |
|
2165 |
# @ acf
|
2166 |
+
#: includes/fields/class-acf-field-google-map.php:25
|
2167 |
msgid "Google Map"
|
2168 |
msgstr "Google Maps"
|
2169 |
|
2170 |
# @ acf
|
2171 |
+
#: includes/fields/class-acf-field-google-map.php:40
|
2172 |
msgid "Locating"
|
2173 |
msgstr "Lokalisiere"
|
2174 |
|
2175 |
# @ acf
|
2176 |
+
#: includes/fields/class-acf-field-google-map.php:41
|
2177 |
msgid "Sorry, this browser does not support geolocation"
|
2178 |
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
2179 |
|
2180 |
# @ acf
|
2181 |
+
#: includes/fields/class-acf-field-google-map.php:113
|
2182 |
msgid "Clear location"
|
2183 |
msgstr "Position löschen"
|
2184 |
|
2185 |
# @ acf
|
2186 |
+
#: includes/fields/class-acf-field-google-map.php:114
|
2187 |
msgid "Find current location"
|
2188 |
msgstr "Aktuelle Position finden"
|
2189 |
|
2190 |
# @ acf
|
2191 |
+
#: includes/fields/class-acf-field-google-map.php:117
|
2192 |
msgid "Search for address..."
|
2193 |
msgstr "Nach der Adresse suchen..."
|
2194 |
|
2195 |
# @ acf
|
2196 |
+
#: includes/fields/class-acf-field-google-map.php:147
|
2197 |
+
#: includes/fields/class-acf-field-google-map.php:158
|
2198 |
msgid "Center"
|
2199 |
msgstr "Kartenmittelpunkt"
|
2200 |
|
2201 |
# @ acf
|
2202 |
+
#: includes/fields/class-acf-field-google-map.php:148
|
2203 |
+
#: includes/fields/class-acf-field-google-map.php:159
|
2204 |
msgid "Center the initial map"
|
2205 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2206 |
|
2207 |
# @ acf
|
2208 |
+
#: includes/fields/class-acf-field-google-map.php:170
|
2209 |
msgid "Zoom"
|
2210 |
msgstr "Zoom"
|
2211 |
|
2212 |
# @ acf
|
2213 |
+
#: includes/fields/class-acf-field-google-map.php:171
|
2214 |
msgid "Set the initial zoom level"
|
2215 |
msgstr "Legt die Zoomstufe der Karte fest"
|
2216 |
|
2217 |
# @ acf
|
2218 |
+
#: includes/fields/class-acf-field-google-map.php:180
|
2219 |
+
#: includes/fields/class-acf-field-image.php:239
|
2220 |
+
#: includes/fields/class-acf-field-image.php:268
|
2221 |
+
#: includes/fields/class-acf-field-oembed.php:281
|
2222 |
+
#: pro/fields/class-acf-field-gallery.php:681
|
2223 |
+
#: pro/fields/class-acf-field-gallery.php:710
|
2224 |
msgid "Height"
|
2225 |
msgstr "Höhe"
|
2226 |
|
2227 |
# @ acf
|
2228 |
+
#: includes/fields/class-acf-field-google-map.php:181
|
2229 |
msgid "Customise the map height"
|
2230 |
msgstr "Legt die Höhe der Karte fest"
|
2231 |
|
2232 |
# @ acf
|
2233 |
+
#: includes/fields/class-acf-field-group.php:25
|
|
|
2234 |
msgid "Group"
|
2235 |
+
msgstr "Gruppe"
|
|
|
|
|
2236 |
|
2237 |
# @ acf
|
2238 |
+
#: includes/fields/class-acf-field-group.php:459
|
2239 |
+
#: pro/fields/class-acf-field-repeater.php:389
|
2240 |
msgid "Sub Fields"
|
2241 |
msgstr "Wiederholungsfelder"
|
2242 |
|
2243 |
+
#: includes/fields/class-acf-field-group.php:475
|
2244 |
+
#: pro/fields/class-acf-field-clone.php:840
|
2245 |
msgid "Specify the style used to render the selected fields"
|
2246 |
msgstr "Gib an, wie die ausgewählten Felder angezeigt werden sollen"
|
2247 |
|
2248 |
# @ acf
|
2249 |
+
#: includes/fields/class-acf-field-group.php:480
|
2250 |
+
#: pro/fields/class-acf-field-clone.php:845
|
2251 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
2252 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
2253 |
msgid "Block"
|
2254 |
msgstr "Block"
|
2255 |
|
2256 |
# @ acf
|
2257 |
+
#: includes/fields/class-acf-field-group.php:481
|
2258 |
+
#: pro/fields/class-acf-field-clone.php:846
|
2259 |
+
#: pro/fields/class-acf-field-flexible-content.php:611
|
2260 |
+
#: pro/fields/class-acf-field-repeater.php:457
|
2261 |
msgid "Table"
|
2262 |
msgstr "Tabelle"
|
2263 |
|
2264 |
# @ acf
|
2265 |
+
#: includes/fields/class-acf-field-group.php:482
|
2266 |
+
#: pro/fields/class-acf-field-clone.php:847
|
2267 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
2268 |
+
#: pro/fields/class-acf-field-repeater.php:459
|
2269 |
msgid "Row"
|
2270 |
msgstr "Reihe"
|
2271 |
|
2272 |
# @ acf
|
2273 |
+
#: includes/fields/class-acf-field-image.php:25
|
2274 |
msgid "Image"
|
2275 |
msgstr "Bild"
|
2276 |
|
2277 |
# @ acf
|
2278 |
+
#: includes/fields/class-acf-field-image.php:40
|
2279 |
msgid "Select Image"
|
2280 |
msgstr "Bild auswählen"
|
2281 |
|
2282 |
# @ acf
|
2283 |
+
#: includes/fields/class-acf-field-image.php:41
|
2284 |
+
#: pro/fields/class-acf-field-gallery.php:42
|
2285 |
msgid "Edit Image"
|
2286 |
msgstr "Bild bearbeiten"
|
2287 |
|
2288 |
# @ acf
|
2289 |
+
#: includes/fields/class-acf-field-image.php:42
|
2290 |
+
#: pro/fields/class-acf-field-gallery.php:43
|
2291 |
msgid "Update Image"
|
2292 |
msgstr "Bild aktualisieren"
|
2293 |
|
2294 |
# @ acf
|
2295 |
+
#: includes/fields/class-acf-field-image.php:44
|
2296 |
msgid "All images"
|
2297 |
msgstr "Alle Bilder"
|
2298 |
|
2299 |
# @ acf
|
2300 |
+
#: includes/fields/class-acf-field-image.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2301 |
msgid "No image selected"
|
2302 |
msgstr "Kein Bild ausgewählt"
|
2303 |
|
2304 |
# @ acf
|
2305 |
+
#: includes/fields/class-acf-field-image.php:140
|
2306 |
msgid "Add Image"
|
2307 |
msgstr "Bild hinzufügen"
|
2308 |
|
2309 |
# @ acf
|
2310 |
+
#: includes/fields/class-acf-field-image.php:194
|
2311 |
msgid "Image Array"
|
2312 |
msgstr "Bild-Array"
|
2313 |
|
2314 |
# @ acf
|
2315 |
+
#: includes/fields/class-acf-field-image.php:195
|
2316 |
msgid "Image URL"
|
2317 |
msgstr "Bild-URL"
|
2318 |
|
2319 |
# @ acf
|
2320 |
+
#: includes/fields/class-acf-field-image.php:196
|
2321 |
msgid "Image ID"
|
2322 |
msgstr "Bild-ID"
|
2323 |
|
2324 |
# @ acf
|
2325 |
+
#: includes/fields/class-acf-field-image.php:203
|
2326 |
msgid "Preview Size"
|
2327 |
msgstr "Masse der Vorschau"
|
2328 |
|
2329 |
# @ acf
|
2330 |
+
#: includes/fields/class-acf-field-image.php:204
|
2331 |
msgid "Shown when entering data"
|
2332 |
msgstr "Legt fest welche Masse die Vorschau in der Bearbeitungs-Ansicht hat"
|
2333 |
|
2334 |
# @ acf
|
2335 |
+
#: includes/fields/class-acf-field-image.php:228
|
2336 |
+
#: includes/fields/class-acf-field-image.php:257
|
2337 |
+
#: pro/fields/class-acf-field-gallery.php:670
|
2338 |
+
#: pro/fields/class-acf-field-gallery.php:699
|
2339 |
msgid "Restrict which images can be uploaded"
|
2340 |
msgstr ""
|
2341 |
"Erlaubt nur das Hochladen von Bildern, die die angegebenen Eigenschaften "
|
2342 |
"erfüllen"
|
2343 |
|
2344 |
# @ acf
|
2345 |
+
#: includes/fields/class-acf-field-image.php:231
|
2346 |
+
#: includes/fields/class-acf-field-image.php:260
|
2347 |
+
#: includes/fields/class-acf-field-oembed.php:270
|
2348 |
+
#: pro/fields/class-acf-field-gallery.php:673
|
2349 |
+
#: pro/fields/class-acf-field-gallery.php:702
|
2350 |
msgid "Width"
|
2351 |
msgstr "Breite"
|
2352 |
|
2353 |
# @ acf
|
2354 |
+
#: includes/fields/class-acf-field-link.php:25
|
|
|
2355 |
msgid "Link"
|
2356 |
+
msgstr "Link"
|
2357 |
|
2358 |
# @ acf
|
2359 |
+
#: includes/fields/class-acf-field-link.php:133
|
|
|
2360 |
msgid "Select Link"
|
2361 |
+
msgstr "Link auswählen"
|
2362 |
|
2363 |
+
#: includes/fields/class-acf-field-link.php:138
|
2364 |
msgid "Opens in a new window/tab"
|
2365 |
+
msgstr "Öffnet in einem neuen Fenster/Tab"
|
2366 |
|
2367 |
# @ acf
|
2368 |
+
#: includes/fields/class-acf-field-link.php:172
|
|
|
2369 |
msgid "Link Array"
|
2370 |
+
msgstr "Link Array"
|
2371 |
|
2372 |
# @ acf
|
2373 |
+
#: includes/fields/class-acf-field-link.php:173
|
|
|
2374 |
msgid "Link URL"
|
2375 |
+
msgstr "Link URL"
|
2376 |
|
2377 |
# @ acf
|
2378 |
+
#: includes/fields/class-acf-field-message.php:25
|
2379 |
+
#: includes/fields/class-acf-field-message.php:101
|
2380 |
+
#: includes/fields/class-acf-field-true_false.php:126
|
2381 |
msgid "Message"
|
2382 |
msgstr "Nachricht"
|
2383 |
|
2384 |
# @ acf
|
2385 |
+
#: includes/fields/class-acf-field-message.php:110
|
2386 |
+
#: includes/fields/class-acf-field-textarea.php:139
|
2387 |
msgid "New Lines"
|
2388 |
msgstr "Neue Zeilen"
|
2389 |
|
2390 |
# @ acf
|
2391 |
+
#: includes/fields/class-acf-field-message.php:111
|
2392 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
2393 |
msgid "Controls how new lines are rendered"
|
2394 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2395 |
|
2396 |
# @ acf
|
2397 |
+
#: includes/fields/class-acf-field-message.php:115
|
2398 |
+
#: includes/fields/class-acf-field-textarea.php:144
|
2399 |
msgid "Automatically add paragraphs"
|
2400 |
msgstr "Absätze automatisch hinzufügen"
|
2401 |
|
2402 |
# @ acf
|
2403 |
+
#: includes/fields/class-acf-field-message.php:116
|
2404 |
+
#: includes/fields/class-acf-field-textarea.php:145
|
2405 |
msgid "Automatically add <br>"
|
2406 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2407 |
|
2408 |
# @ acf
|
2409 |
+
#: includes/fields/class-acf-field-message.php:117
|
2410 |
+
#: includes/fields/class-acf-field-textarea.php:146
|
2411 |
msgid "No Formatting"
|
2412 |
msgstr "Keine Formatierung"
|
2413 |
|
2414 |
# @ acf
|
2415 |
+
#: includes/fields/class-acf-field-message.php:124
|
2416 |
msgid "Escape HTML"
|
2417 |
msgstr "HTML enkodieren"
|
2418 |
|
2419 |
# @ acf
|
2420 |
+
#: includes/fields/class-acf-field-message.php:125
|
2421 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2422 |
msgstr ""
|
2423 |
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2424 |
"interpretiert"
|
2425 |
|
2426 |
# @ acf
|
2427 |
+
#: includes/fields/class-acf-field-number.php:25
|
2428 |
msgid "Number"
|
2429 |
msgstr "Numerisch"
|
2430 |
|
2431 |
# @ acf
|
2432 |
+
#: includes/fields/class-acf-field-number.php:163
|
2433 |
+
#: includes/fields/class-acf-field-range.php:157
|
2434 |
msgid "Minimum Value"
|
2435 |
msgstr "Mindestwert"
|
2436 |
|
2437 |
# @ acf
|
2438 |
+
#: includes/fields/class-acf-field-number.php:172
|
2439 |
+
#: includes/fields/class-acf-field-range.php:167
|
2440 |
msgid "Maximum Value"
|
2441 |
msgstr "Maximalwert"
|
2442 |
|
2443 |
# @ acf
|
2444 |
+
#: includes/fields/class-acf-field-number.php:181
|
2445 |
+
#: includes/fields/class-acf-field-range.php:177
|
2446 |
msgid "Step Size"
|
2447 |
msgstr "Schrittweite"
|
2448 |
|
2449 |
# @ acf
|
2450 |
+
#: includes/fields/class-acf-field-number.php:219
|
2451 |
msgid "Value must be a number"
|
2452 |
msgstr "Wert muss eine Zahl sein"
|
2453 |
|
2454 |
# @ acf
|
2455 |
+
#: includes/fields/class-acf-field-number.php:237
|
2456 |
#, php-format
|
2457 |
msgid "Value must be equal to or higher than %d"
|
2458 |
msgstr "Wert muss grösser oder gleich %d sein"
|
2459 |
|
2460 |
# @ acf
|
2461 |
+
#: includes/fields/class-acf-field-number.php:245
|
2462 |
#, php-format
|
2463 |
msgid "Value must be equal to or lower than %d"
|
2464 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2465 |
|
2466 |
# @ acf
|
2467 |
+
#: includes/fields/class-acf-field-oembed.php:25
|
2468 |
msgid "oEmbed"
|
2469 |
msgstr "oEmbed"
|
2470 |
|
2471 |
# @ acf
|
2472 |
+
#: includes/fields/class-acf-field-oembed.php:219
|
2473 |
msgid "Enter URL"
|
2474 |
msgstr "URL eingeben"
|
2475 |
|
2476 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2477 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2478 |
msgid "Error."
|
2479 |
msgstr "Fehler."
|
2480 |
|
2481 |
# @ acf
|
2482 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2483 |
msgid "No embed found for the given URL."
|
2484 |
msgstr "Keine Inhalte für die eingegebene URL gefunden."
|
2485 |
|
2486 |
# @ acf
|
2487 |
+
#: includes/fields/class-acf-field-oembed.php:267
|
2488 |
+
#: includes/fields/class-acf-field-oembed.php:278
|
2489 |
msgid "Embed Size"
|
2490 |
msgstr "Masse"
|
2491 |
|
2492 |
# @ acf
|
2493 |
+
#: includes/fields/class-acf-field-page_link.php:177
|
2494 |
msgid "Archives"
|
2495 |
msgstr "Archive"
|
2496 |
|
2497 |
# @ acf
|
2498 |
+
#: includes/fields/class-acf-field-page_link.php:485
|
2499 |
+
#: includes/fields/class-acf-field-post_object.php:384
|
2500 |
+
#: includes/fields/class-acf-field-relationship.php:623
|
2501 |
msgid "Filter by Post Type"
|
2502 |
msgstr "Nach Post Types filtern"
|
2503 |
|
2504 |
# @ acf
|
2505 |
+
#: includes/fields/class-acf-field-page_link.php:493
|
2506 |
+
#: includes/fields/class-acf-field-post_object.php:392
|
2507 |
+
#: includes/fields/class-acf-field-relationship.php:631
|
2508 |
msgid "All post types"
|
2509 |
msgstr "Alle verfügbaren Post Types"
|
2510 |
|
2511 |
# @ acf
|
2512 |
+
#: includes/fields/class-acf-field-page_link.php:499
|
2513 |
+
#: includes/fields/class-acf-field-post_object.php:398
|
2514 |
+
#: includes/fields/class-acf-field-relationship.php:637
|
2515 |
msgid "Filter by Taxonomy"
|
2516 |
msgstr "Nach Taxonomien filtern"
|
2517 |
|
2518 |
# @ acf
|
2519 |
+
#: includes/fields/class-acf-field-page_link.php:507
|
2520 |
+
#: includes/fields/class-acf-field-post_object.php:406
|
2521 |
+
#: includes/fields/class-acf-field-relationship.php:645
|
2522 |
msgid "All taxonomies"
|
2523 |
msgstr "Alle Taxonomien"
|
2524 |
|
2525 |
+
#: includes/fields/class-acf-field-page_link.php:523
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2526 |
msgid "Allow Archives URLs"
|
2527 |
msgstr "Archiv URLs erlauben"
|
2528 |
|
2529 |
# @ acf
|
2530 |
+
#: includes/fields/class-acf-field-page_link.php:533
|
2531 |
+
#: includes/fields/class-acf-field-post_object.php:422
|
2532 |
+
#: includes/fields/class-acf-field-select.php:396
|
2533 |
+
#: includes/fields/class-acf-field-user.php:418
|
2534 |
msgid "Select multiple values?"
|
2535 |
msgstr "Mehrere Werte auswählbar?"
|
2536 |
|
2537 |
# @ acf
|
2538 |
+
#: includes/fields/class-acf-field-password.php:25
|
2539 |
msgid "Password"
|
2540 |
msgstr "Passwort"
|
2541 |
|
2542 |
# @ acf
|
2543 |
+
#: includes/fields/class-acf-field-post_object.php:25
|
2544 |
+
#: includes/fields/class-acf-field-post_object.php:437
|
2545 |
+
#: includes/fields/class-acf-field-relationship.php:702
|
2546 |
msgid "Post Object"
|
2547 |
msgstr "Beitrags-Objekt"
|
2548 |
|
2549 |
# @ acf
|
2550 |
+
#: includes/fields/class-acf-field-post_object.php:438
|
2551 |
+
#: includes/fields/class-acf-field-relationship.php:703
|
2552 |
msgid "Post ID"
|
2553 |
msgstr "Beitrags-ID"
|
2554 |
|
2555 |
# @ acf
|
2556 |
+
#: includes/fields/class-acf-field-radio.php:25
|
2557 |
msgid "Radio Button"
|
2558 |
msgstr "Radio-Button"
|
2559 |
|
2560 |
# @ acf
|
2561 |
+
#: includes/fields/class-acf-field-radio.php:254
|
2562 |
msgid "Other"
|
2563 |
msgstr "Sonstige"
|
2564 |
|
2565 |
# @ acf
|
2566 |
+
#: includes/fields/class-acf-field-radio.php:259
|
2567 |
msgid "Add 'other' choice to allow for custom values"
|
2568 |
msgstr ""
|
2569 |
"Fügt die Option 'Sonstige' hinzu, welche erlaubt, benutzerdefinierte Werte "
|
2570 |
"hinzuzufügen"
|
2571 |
|
2572 |
# @ acf
|
2573 |
+
#: includes/fields/class-acf-field-radio.php:265
|
2574 |
msgid "Save Other"
|
2575 |
msgstr "'Sonstige' speichern"
|
2576 |
|
2577 |
# @ acf
|
2578 |
+
#: includes/fields/class-acf-field-radio.php:270
|
2579 |
msgid "Save 'other' values to the field's choices"
|
2580 |
msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu"
|
2581 |
|
2582 |
+
#: includes/fields/class-acf-field-range.php:25
|
2583 |
+
msgid "Range"
|
2584 |
+
msgstr "Range"
|
2585 |
+
|
2586 |
# @ acf
|
2587 |
+
#: includes/fields/class-acf-field-relationship.php:25
|
2588 |
msgid "Relationship"
|
2589 |
msgstr "Beziehung"
|
2590 |
|
2591 |
# @ acf
|
2592 |
+
#: includes/fields/class-acf-field-relationship.php:37
|
2593 |
msgid "Minimum values reached ( {min} values )"
|
2594 |
msgstr "Minimum der Einträge mit ({min} Einträge) erreicht"
|
2595 |
|
2596 |
# @ acf
|
2597 |
+
#: includes/fields/class-acf-field-relationship.php:38
|
2598 |
msgid "Maximum values reached ( {max} values )"
|
2599 |
msgstr "Maximum der Einträge mit ({max} Einträge) erreicht"
|
2600 |
|
2601 |
# @ acf
|
2602 |
+
#: includes/fields/class-acf-field-relationship.php:39
|
2603 |
msgid "Loading"
|
2604 |
msgstr "Lade"
|
2605 |
|
2606 |
# @ acf
|
2607 |
+
#: includes/fields/class-acf-field-relationship.php:40
|
2608 |
msgid "No matches found"
|
2609 |
msgstr "Keine Übereinstimmung gefunden"
|
2610 |
|
2611 |
# @ acf
|
2612 |
+
#: includes/fields/class-acf-field-relationship.php:423
|
|
|
|
|
|
|
|
|
|
|
2613 |
msgid "Select post type"
|
2614 |
msgstr "Beitrag-Typ auswählen"
|
2615 |
|
2616 |
# @ acf
|
2617 |
+
#: includes/fields/class-acf-field-relationship.php:449
|
2618 |
msgid "Select taxonomy"
|
2619 |
msgstr "Taxonomie auswählen"
|
2620 |
|
2621 |
# @ acf
|
2622 |
+
#: includes/fields/class-acf-field-relationship.php:539
|
2623 |
+
msgid "Search..."
|
2624 |
+
msgstr "Suchen..."
|
2625 |
+
|
2626 |
+
# @ acf
|
2627 |
+
#: includes/fields/class-acf-field-relationship.php:651
|
2628 |
msgid "Filters"
|
2629 |
msgstr "Filter"
|
2630 |
|
2631 |
# @ acf
|
2632 |
+
#: includes/fields/class-acf-field-relationship.php:657
|
2633 |
#: includes/locations/class-acf-location-post-type.php:27
|
2634 |
msgid "Post Type"
|
2635 |
msgstr "Beitrags-Typ"
|
2636 |
|
2637 |
# @ acf
|
2638 |
+
#: includes/fields/class-acf-field-relationship.php:658
|
2639 |
+
#: includes/fields/class-acf-field-taxonomy.php:28
|
2640 |
+
#: includes/fields/class-acf-field-taxonomy.php:763
|
2641 |
msgid "Taxonomy"
|
2642 |
msgstr "Taxonomie"
|
2643 |
|
2644 |
# @ acf
|
2645 |
+
#: includes/fields/class-acf-field-relationship.php:665
|
2646 |
msgid "Elements"
|
2647 |
msgstr "Elemente"
|
2648 |
|
2649 |
# @ acf
|
2650 |
+
#: includes/fields/class-acf-field-relationship.php:666
|
2651 |
msgid "Selected elements will be displayed in each result"
|
2652 |
msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt"
|
2653 |
|
2654 |
# @ acf
|
2655 |
+
#: includes/fields/class-acf-field-relationship.php:677
|
2656 |
msgid "Minimum posts"
|
2657 |
msgstr "Min. Anzahl der Beiträge"
|
2658 |
|
2659 |
# @ acf
|
2660 |
+
#: includes/fields/class-acf-field-relationship.php:686
|
2661 |
msgid "Maximum posts"
|
2662 |
msgstr "Max. Anzahl der Beiträge"
|
2663 |
|
2664 |
# @ acf
|
2665 |
+
#: includes/fields/class-acf-field-relationship.php:790
|
2666 |
+
#: pro/fields/class-acf-field-gallery.php:800
|
2667 |
#, php-format
|
2668 |
msgid "%s requires at least %s selection"
|
2669 |
msgid_plural "%s requires at least %s selections"
|
2670 |
msgstr[0] "%s benötigt mindestens %s Selektion"
|
2671 |
msgstr[1] "%s benötigt mindestens %s Selektionen"
|
2672 |
|
2673 |
+
#: includes/fields/class-acf-field-select.php:25
|
2674 |
+
#: includes/fields/class-acf-field-taxonomy.php:785
|
2675 |
msgctxt "noun"
|
2676 |
msgid "Select"
|
2677 |
msgstr "Auswahlmenü"
|
2678 |
|
2679 |
+
#: includes/fields/class-acf-field-select.php:38
|
2680 |
msgctxt "Select2 JS matches_1"
|
2681 |
msgid "One result is available, press enter to select it."
|
2682 |
msgstr "Ein Resultat gefunden, mit Enter auswählen."
|
2683 |
|
2684 |
+
#: includes/fields/class-acf-field-select.php:39
|
2685 |
#, php-format
|
2686 |
msgctxt "Select2 JS matches_n"
|
2687 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2688 |
msgstr "%d Resultate gefunden, benutze die Pfeiltasten um zu navigieren."
|
2689 |
|
2690 |
+
#: includes/fields/class-acf-field-select.php:40
|
2691 |
msgctxt "Select2 JS matches_0"
|
2692 |
msgid "No matches found"
|
2693 |
msgstr "Keine Übereinstimmungen gefunden"
|
2694 |
|
2695 |
+
#: includes/fields/class-acf-field-select.php:41
|
2696 |
msgctxt "Select2 JS input_too_short_1"
|
2697 |
msgid "Please enter 1 or more characters"
|
2698 |
msgstr "Bitte eins oder mehrere Zeichen eingeben"
|
2699 |
|
2700 |
+
#: includes/fields/class-acf-field-select.php:42
|
2701 |
#, php-format
|
2702 |
msgctxt "Select2 JS input_too_short_n"
|
2703 |
msgid "Please enter %d or more characters"
|
2704 |
msgstr "Bitte %d mehr Zeichen eingeben"
|
2705 |
|
2706 |
+
#: includes/fields/class-acf-field-select.php:43
|
2707 |
msgctxt "Select2 JS input_too_long_1"
|
2708 |
msgid "Please delete 1 character"
|
2709 |
msgstr "Bitte ein Zeichen löschen"
|
2710 |
|
2711 |
+
#: includes/fields/class-acf-field-select.php:44
|
2712 |
#, php-format
|
2713 |
msgctxt "Select2 JS input_too_long_n"
|
2714 |
msgid "Please delete %d characters"
|
2715 |
msgstr "Bitte %d Zeichen löschen"
|
2716 |
|
2717 |
+
#: includes/fields/class-acf-field-select.php:45
|
2718 |
msgctxt "Select2 JS selection_too_long_1"
|
2719 |
msgid "You can only select 1 item"
|
2720 |
msgstr "Du kannst du ein Resultat wählen"
|
2721 |
|
2722 |
+
#: includes/fields/class-acf-field-select.php:46
|
2723 |
#, php-format
|
2724 |
msgctxt "Select2 JS selection_too_long_n"
|
2725 |
msgid "You can only select %d items"
|
2726 |
msgstr "Du kannst nur %d Resultate auswählen"
|
2727 |
|
2728 |
+
#: includes/fields/class-acf-field-select.php:47
|
2729 |
msgctxt "Select2 JS load_more"
|
2730 |
msgid "Loading more results…"
|
2731 |
msgstr "Lade weitere Resultate…"
|
2732 |
|
2733 |
+
#: includes/fields/class-acf-field-select.php:48
|
2734 |
msgctxt "Select2 JS searching"
|
2735 |
msgid "Searching…"
|
2736 |
msgstr "Suche…"
|
2737 |
|
2738 |
+
#: includes/fields/class-acf-field-select.php:49
|
2739 |
msgctxt "Select2 JS load_fail"
|
2740 |
msgid "Loading failed"
|
2741 |
msgstr "Fehler beim Laden"
|
2742 |
|
2743 |
+
#: includes/fields/class-acf-field-select.php:255 includes/media.php:54
|
2744 |
msgctxt "verb"
|
2745 |
msgid "Select"
|
2746 |
msgstr "Auswählen"
|
2747 |
|
2748 |
# @ acf
|
2749 |
+
#: includes/fields/class-acf-field-select.php:406
|
2750 |
+
#: includes/fields/class-acf-field-true_false.php:144
|
2751 |
msgid "Stylised UI"
|
2752 |
msgstr "Modernes Auswahlfeld"
|
2753 |
|
2754 |
# @ acf
|
2755 |
+
#: includes/fields/class-acf-field-select.php:416
|
2756 |
msgid "Use AJAX to lazy load choices?"
|
2757 |
+
msgstr "AJAX zum Laden der Einträge aktivieren?"
|
2758 |
|
2759 |
+
#: includes/fields/class-acf-field-select.php:427
|
2760 |
msgid "Specify the value returned"
|
2761 |
msgstr "Rückgabewert festlegen"
|
2762 |
|
2763 |
+
#: includes/fields/class-acf-field-separator.php:25
|
2764 |
msgid "Separator"
|
2765 |
+
msgstr "Trennelement"
|
2766 |
|
2767 |
# @ acf
|
2768 |
+
#: includes/fields/class-acf-field-tab.php:25
|
2769 |
msgid "Tab"
|
2770 |
msgstr "Tab"
|
2771 |
|
2772 |
# @ acf
|
2773 |
+
#: includes/fields/class-acf-field-tab.php:82
|
2774 |
msgid ""
|
2775 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2776 |
"field or flexible content field layout"
|
2779 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2780 |
|
2781 |
# @ acf
|
2782 |
+
#: includes/fields/class-acf-field-tab.php:83
|
2783 |
msgid ""
|
2784 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2785 |
"together."
|
2788 |
"Tabs zusammengefasst werden."
|
2789 |
|
2790 |
# @ acf
|
2791 |
+
#: includes/fields/class-acf-field-tab.php:84
|
2792 |
msgid ""
|
2793 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2794 |
"defined) will be grouped together using this field's label as the tab "
|
2799 |
"zusammengefasst."
|
2800 |
|
2801 |
# @ acf
|
2802 |
+
#: includes/fields/class-acf-field-tab.php:98
|
2803 |
msgid "Placement"
|
2804 |
msgstr "Platzierung Tabs"
|
2805 |
|
2806 |
+
#: includes/fields/class-acf-field-tab.php:110
|
2807 |
msgid "End-point"
|
2808 |
msgstr "Abschluss"
|
2809 |
|
2810 |
+
#: includes/fields/class-acf-field-tab.php:111
|
2811 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2812 |
msgstr "Benutze das Feld als einen Abschluss und starte eine Gruppe an Tabs"
|
2813 |
|
2814 |
+
#: includes/fields/class-acf-field-taxonomy.php:713
|
2815 |
+
#, php-format
|
2816 |
+
msgctxt "No terms"
|
2817 |
+
msgid "No %s"
|
2818 |
+
msgstr "Keine %s"
|
|
|
|
|
2819 |
|
2820 |
# @ acf
|
2821 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
2822 |
msgid "None"
|
2823 |
msgstr "Nur Text"
|
2824 |
|
2825 |
# @ acf
|
2826 |
+
#: includes/fields/class-acf-field-taxonomy.php:764
|
2827 |
msgid "Select the taxonomy to be displayed"
|
2828 |
msgstr "Wähle die Taxonomie, welche angezeigt werden soll"
|
2829 |
|
2830 |
# @ acf
|
2831 |
+
#: includes/fields/class-acf-field-taxonomy.php:773
|
2832 |
msgid "Appearance"
|
2833 |
msgstr "Anzeige"
|
2834 |
|
2835 |
# @ acf
|
2836 |
+
#: includes/fields/class-acf-field-taxonomy.php:774
|
2837 |
msgid "Select the appearance of this field"
|
2838 |
msgstr "Wähle das Aussehen für dieses Feld"
|
2839 |
|
2840 |
# @ acf
|
2841 |
+
#: includes/fields/class-acf-field-taxonomy.php:779
|
2842 |
msgid "Multiple Values"
|
2843 |
+
msgstr "Mehrere Werte"
|
2844 |
|
2845 |
# @ acf
|
2846 |
+
#: includes/fields/class-acf-field-taxonomy.php:781
|
2847 |
msgid "Multi Select"
|
2848 |
msgstr "Auswahlmenü"
|
2849 |
|
2850 |
# @ acf
|
2851 |
+
#: includes/fields/class-acf-field-taxonomy.php:783
|
2852 |
msgid "Single Value"
|
2853 |
msgstr "Einzelne Werte"
|
2854 |
|
2855 |
# @ acf
|
2856 |
+
#: includes/fields/class-acf-field-taxonomy.php:784
|
2857 |
msgid "Radio Buttons"
|
2858 |
msgstr "Radio Button"
|
2859 |
|
2860 |
# @ acf
|
2861 |
+
#: includes/fields/class-acf-field-taxonomy.php:803
|
2862 |
msgid "Create Terms"
|
2863 |
msgstr "Neue Einträge erlauben"
|
2864 |
|
2865 |
# @ acf
|
2866 |
+
#: includes/fields/class-acf-field-taxonomy.php:804
|
2867 |
msgid "Allow new terms to be created whilst editing"
|
2868 |
msgstr "Erlaube das Erstellen neuer Einträge beim Editieren"
|
2869 |
|
2870 |
+
#: includes/fields/class-acf-field-taxonomy.php:813
|
2871 |
msgid "Save Terms"
|
2872 |
msgstr "Einträge speichern"
|
2873 |
|
2874 |
# @ acf
|
2875 |
+
#: includes/fields/class-acf-field-taxonomy.php:814
|
2876 |
msgid "Connect selected terms to the post"
|
2877 |
msgstr "Speichert die ausgewählten Einträge auch im Beitrag"
|
2878 |
|
2879 |
+
#: includes/fields/class-acf-field-taxonomy.php:823
|
2880 |
msgid "Load Terms"
|
2881 |
msgstr "Einträge laden"
|
2882 |
|
2883 |
+
#: includes/fields/class-acf-field-taxonomy.php:824
|
2884 |
msgid "Load value from posts terms"
|
2885 |
msgstr "Den Wert von den Einträgen des Beitrags laden"
|
2886 |
|
2887 |
# @ acf
|
2888 |
+
#: includes/fields/class-acf-field-taxonomy.php:838
|
2889 |
msgid "Term Object"
|
2890 |
msgstr "Begriffs-Objekt"
|
2891 |
|
2892 |
# @ acf
|
2893 |
+
#: includes/fields/class-acf-field-taxonomy.php:839
|
2894 |
msgid "Term ID"
|
2895 |
msgstr "Begriffs-ID"
|
2896 |
|
2897 |
# @ acf
|
2898 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2899 |
#, php-format
|
2900 |
msgid "User unable to add new %s"
|
2901 |
msgstr "Der Benutzer kann keine neue %s hinzufügen"
|
2902 |
|
2903 |
# @ acf
|
2904 |
+
#: includes/fields/class-acf-field-taxonomy.php:911
|
2905 |
#, php-format
|
2906 |
msgid "%s already exists"
|
2907 |
msgstr "%s ist bereits vorhanden"
|
2908 |
|
2909 |
# @ acf
|
2910 |
+
#: includes/fields/class-acf-field-taxonomy.php:952
|
2911 |
#, php-format
|
2912 |
msgid "%s added"
|
2913 |
msgstr "%s hinzugefügt"
|
2914 |
|
2915 |
# @ acf
|
2916 |
+
#: includes/fields/class-acf-field-taxonomy.php:997
|
2917 |
msgid "Add"
|
2918 |
msgstr "Hinzufügen"
|
2919 |
|
2920 |
# @ acf
|
2921 |
+
#: includes/fields/class-acf-field-text.php:25
|
2922 |
msgid "Text"
|
2923 |
msgstr "Text einzeilig"
|
2924 |
|
2925 |
# @ acf
|
2926 |
+
#: includes/fields/class-acf-field-text.php:155
|
2927 |
+
#: includes/fields/class-acf-field-textarea.php:120
|
2928 |
msgid "Character Limit"
|
2929 |
msgstr "Zeichenbegrenzung"
|
2930 |
|
2931 |
# @ acf
|
2932 |
+
#: includes/fields/class-acf-field-text.php:156
|
2933 |
+
#: includes/fields/class-acf-field-textarea.php:121
|
2934 |
msgid "Leave blank for no limit"
|
2935 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2936 |
|
2937 |
# @ acf
|
2938 |
+
#: includes/fields/class-acf-field-textarea.php:25
|
2939 |
msgid "Text Area"
|
2940 |
msgstr "Text mehrzeilig"
|
2941 |
|
2942 |
# @ acf
|
2943 |
+
#: includes/fields/class-acf-field-textarea.php:129
|
2944 |
msgid "Rows"
|
2945 |
msgstr "Zeilenanzahl"
|
2946 |
|
2947 |
# @ acf
|
2948 |
+
#: includes/fields/class-acf-field-textarea.php:130
|
2949 |
msgid "Sets the textarea height"
|
2950 |
msgstr "Definiert die Höhe des Textfelds"
|
2951 |
|
2952 |
+
#: includes/fields/class-acf-field-time_picker.php:25
|
2953 |
msgid "Time Picker"
|
2954 |
msgstr "Uhrzeit"
|
2955 |
|
2956 |
# @ acf
|
2957 |
+
#: includes/fields/class-acf-field-true_false.php:25
|
2958 |
msgid "True / False"
|
2959 |
msgstr "Ja/Nein"
|
2960 |
|
2961 |
# @ acf
|
2962 |
+
#: includes/fields/class-acf-field-true_false.php:79
|
2963 |
+
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2964 |
+
#: pro/admin/views/html-settings-updates.php:89
|
2965 |
msgid "Yes"
|
2966 |
msgstr "Ja"
|
2967 |
|
2968 |
+
# @ acf
|
2969 |
+
#: includes/fields/class-acf-field-true_false.php:80
|
2970 |
+
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2971 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2972 |
+
msgid "No"
|
2973 |
+
msgstr "Nein"
|
2974 |
+
|
2975 |
+
#: includes/fields/class-acf-field-true_false.php:127
|
2976 |
msgid "Displays text alongside the checkbox"
|
2977 |
msgstr "Zeigt Text neben der Checkbox"
|
2978 |
|
2979 |
+
#: includes/fields/class-acf-field-true_false.php:155
|
2980 |
msgid "On Text"
|
2981 |
msgstr "Wenn aktiv"
|
2982 |
|
2983 |
+
#: includes/fields/class-acf-field-true_false.php:156
|
2984 |
msgid "Text shown when active"
|
2985 |
msgstr "Angezeigter Text im aktiven Zustand"
|
2986 |
|
2987 |
+
#: includes/fields/class-acf-field-true_false.php:165
|
2988 |
msgid "Off Text"
|
2989 |
msgstr "Wenn inaktiv"
|
2990 |
|
2991 |
+
#: includes/fields/class-acf-field-true_false.php:166
|
2992 |
msgid "Text shown when inactive"
|
2993 |
msgstr "Angezeigter Text im inaktiven Zustand"
|
2994 |
|
2995 |
# @ acf
|
2996 |
+
#: includes/fields/class-acf-field-url.php:25
|
2997 |
msgid "Url"
|
2998 |
msgstr "URL"
|
2999 |
|
3000 |
# @ acf
|
3001 |
+
#: includes/fields/class-acf-field-url.php:151
|
3002 |
msgid "Value must be a valid URL"
|
3003 |
msgstr "Bitte eine gültige URL eingeben"
|
3004 |
|
3005 |
# @ acf
|
3006 |
+
#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95
|
3007 |
msgid "User"
|
3008 |
msgstr "Benutzer"
|
3009 |
|
3010 |
# @ acf
|
3011 |
+
#: includes/fields/class-acf-field-user.php:393
|
3012 |
msgid "Filter by role"
|
3013 |
msgstr "Filtere nach Benutzerrollen"
|
3014 |
|
3015 |
# @ acf
|
3016 |
+
#: includes/fields/class-acf-field-user.php:401
|
3017 |
msgid "All user roles"
|
3018 |
msgstr "Alle Benutzerrollen"
|
3019 |
|
3020 |
# @ acf
|
3021 |
+
#: includes/fields/class-acf-field-wysiwyg.php:25
|
3022 |
msgid "Wysiwyg Editor"
|
3023 |
msgstr "WYSIWYG-Editor"
|
3024 |
|
3025 |
# @ acf
|
3026 |
+
#: includes/fields/class-acf-field-wysiwyg.php:359
|
3027 |
msgid "Visual"
|
3028 |
msgstr "Visuell"
|
3029 |
|
3030 |
# @ acf
|
3031 |
+
#: includes/fields/class-acf-field-wysiwyg.php:360
|
3032 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3033 |
msgid "Text"
|
3034 |
msgstr "Text"
|
3035 |
|
3036 |
+
#: includes/fields/class-acf-field-wysiwyg.php:366
|
3037 |
msgid "Click to initialize TinyMCE"
|
3038 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3039 |
|
3040 |
# @ acf
|
3041 |
+
#: includes/fields/class-acf-field-wysiwyg.php:419
|
3042 |
msgid "Tabs"
|
3043 |
msgstr "Tabs"
|
3044 |
|
3045 |
# @ acf
|
3046 |
+
#: includes/fields/class-acf-field-wysiwyg.php:424
|
3047 |
msgid "Visual & Text"
|
3048 |
msgstr "Visuell & Text"
|
3049 |
|
3050 |
# @ acf
|
3051 |
+
#: includes/fields/class-acf-field-wysiwyg.php:425
|
3052 |
msgid "Visual Only"
|
3053 |
msgstr "Nur Visuell"
|
3054 |
|
3055 |
# @ acf
|
3056 |
+
#: includes/fields/class-acf-field-wysiwyg.php:426
|
3057 |
msgid "Text Only"
|
3058 |
msgstr "Nur Text"
|
3059 |
|
3060 |
# @ acf
|
3061 |
+
#: includes/fields/class-acf-field-wysiwyg.php:433
|
3062 |
msgid "Toolbar"
|
3063 |
msgstr "Werkzeugleiste"
|
3064 |
|
3065 |
# @ acf
|
3066 |
+
#: includes/fields/class-acf-field-wysiwyg.php:443
|
3067 |
msgid "Show Media Upload Buttons?"
|
3068 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3069 |
|
3070 |
+
#: includes/fields/class-acf-field-wysiwyg.php:453
|
3071 |
msgid "Delay initialization?"
|
3072 |
msgstr "Initialisierung verzögern?"
|
3073 |
|
3074 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
3075 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3076 |
+
msgstr "TinyMCE wird nicht initialisiert bis das Feld geklickt wird"
|
3077 |
|
3078 |
# @ acf
|
3079 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
3080 |
+
#: pro/admin/admin-options-page.php:308
|
3081 |
msgid "Edit field group"
|
3082 |
msgstr "Feld-Gruppen bearbeiten"
|
3083 |
|
3087 |
|
3088 |
# @ acf
|
3089 |
#: includes/forms/form-front.php:103
|
3090 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
3091 |
msgid "Update"
|
3092 |
msgstr "Aktualisieren"
|
3093 |
|
3101 |
msgstr "Spam erkannt"
|
3102 |
|
3103 |
# @ acf
|
3104 |
+
#: includes/input.php:259
|
3105 |
msgid "Expand Details"
|
3106 |
msgstr "Details einblenden"
|
3107 |
|
3108 |
# @ acf
|
3109 |
+
#: includes/input.php:260
|
3110 |
msgid "Collapse Details"
|
3111 |
msgstr "Details ausblenden"
|
3112 |
|
3113 |
# @ acf
|
3114 |
+
#: includes/input.php:261
|
3115 |
msgid "Validation successful"
|
3116 |
msgstr "Überprüfung erfolgreich"
|
3117 |
|
3118 |
# @ acf
|
3119 |
+
#: includes/input.php:262 includes/validation.php:285
|
3120 |
#: includes/validation.php:296
|
3121 |
msgid "Validation failed"
|
3122 |
msgstr "Überprüfung fehlgeschlagen"
|
3123 |
|
3124 |
# @ acf
|
3125 |
+
#: includes/input.php:263
|
3126 |
msgid "1 field requires attention"
|
3127 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3128 |
|
3129 |
# @ acf
|
3130 |
+
#: includes/input.php:264
|
3131 |
#, php-format
|
3132 |
msgid "%d fields require attention"
|
3133 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3134 |
|
3135 |
+
#: includes/input.php:265
|
3136 |
msgid "Restricted"
|
3137 |
msgstr "Eingeschränkt"
|
3138 |
|
3139 |
+
# @ acf
|
3140 |
+
#: includes/input.php:266
|
3141 |
+
msgid "Are you sure?"
|
3142 |
+
msgstr "Sind Sie sicher?"
|
3143 |
+
|
3144 |
+
#: includes/input.php:270
|
3145 |
msgid "Cancel"
|
3146 |
+
msgstr "Abbrechen"
|
3147 |
|
3148 |
# @ acf
|
3149 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
3165 |
msgid "Attachment"
|
3166 |
msgstr "Dateianhang"
|
3167 |
|
3168 |
+
#: includes/locations/class-acf-location-attachment.php:109
|
3169 |
#, php-format
|
3170 |
msgid "All %s formats"
|
3171 |
+
msgstr "Alle %s Formate"
|
3172 |
|
3173 |
# @ acf
|
3174 |
#: includes/locations/class-acf-location-comment.php:27
|
3181 |
msgstr "Aktuelle Benutzer-Rolle"
|
3182 |
|
3183 |
# @ acf
|
3184 |
+
#: includes/locations/class-acf-location-current-user-role.php:110
|
3185 |
msgid "Super Admin"
|
3186 |
msgstr "Super-Admin"
|
3187 |
|
3191 |
msgstr "Aktueller Benutzer"
|
3192 |
|
3193 |
# @ acf
|
3194 |
+
#: includes/locations/class-acf-location-current-user.php:97
|
3195 |
msgid "Logged in"
|
3196 |
+
msgstr "Ist angemeldet"
|
3197 |
|
3198 |
# @ acf
|
3199 |
+
#: includes/locations/class-acf-location-current-user.php:98
|
3200 |
msgid "Viewing front end"
|
3201 |
+
msgstr "Ist im Front-End"
|
3202 |
|
3203 |
# @ acf
|
3204 |
+
#: includes/locations/class-acf-location-current-user.php:99
|
3205 |
msgid "Viewing back end"
|
3206 |
+
msgstr "Ist im Back-End"
|
3207 |
|
3208 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
3209 |
msgid "Menu Item"
|
3210 |
+
msgstr "Menüelement"
|
3211 |
|
3212 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
3213 |
msgid "Menu"
|
3214 |
+
msgstr "Menü"
|
3215 |
|
3216 |
# @ acf
|
3217 |
+
#: includes/locations/class-acf-location-nav-menu.php:109
|
|
|
3218 |
msgid "Menu Locations"
|
3219 |
+
msgstr "Menüpositionen"
|
3220 |
|
3221 |
+
#: includes/locations/class-acf-location-nav-menu.php:119
|
3222 |
msgid "Menus"
|
3223 |
+
msgstr "Menüs"
|
3224 |
|
3225 |
# @ acf
|
3226 |
#: includes/locations/class-acf-location-page-parent.php:27
|
3233 |
msgstr "Seiten-Template"
|
3234 |
|
3235 |
# @ acf
|
3236 |
+
#: includes/locations/class-acf-location-page-template.php:98
|
3237 |
+
#: includes/locations/class-acf-location-post-template.php:151
|
3238 |
msgid "Default Template"
|
3239 |
msgstr "Standard-Template"
|
3240 |
|
3244 |
msgstr "Seitentyp"
|
3245 |
|
3246 |
# @ acf
|
3247 |
+
#: includes/locations/class-acf-location-page-type.php:145
|
3248 |
msgid "Front Page"
|
3249 |
msgstr "Startseite"
|
3250 |
|
3251 |
# @ acf
|
3252 |
+
#: includes/locations/class-acf-location-page-type.php:146
|
3253 |
msgid "Posts Page"
|
3254 |
msgstr "Beitrags-Seite"
|
3255 |
|
3256 |
# @ acf
|
3257 |
+
#: includes/locations/class-acf-location-page-type.php:147
|
3258 |
msgid "Top Level Page (no parent)"
|
3259 |
msgstr "Seite ohne übergeordnete Seiten"
|
3260 |
|
3261 |
# @ acf
|
3262 |
+
#: includes/locations/class-acf-location-page-type.php:148
|
3263 |
msgid "Parent Page (has children)"
|
3264 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3265 |
|
3266 |
# @ acf
|
3267 |
+
#: includes/locations/class-acf-location-page-type.php:149
|
3268 |
msgid "Child Page (has parent)"
|
3269 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3270 |
|
3289 |
msgstr "Beitrags-Taxonomie"
|
3290 |
|
3291 |
# @ acf
|
3292 |
+
#: includes/locations/class-acf-location-post-template.php:27
|
|
|
3293 |
msgid "Post Template"
|
3294 |
+
msgstr "Beitrags-Vorlage"
|
3295 |
|
3296 |
# @ acf
|
3297 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
3304 |
msgstr "Benutzer-Formular"
|
3305 |
|
3306 |
# @ acf
|
3307 |
+
#: includes/locations/class-acf-location-user-form.php:88
|
3308 |
msgid "Add / Edit"
|
3309 |
msgstr "Hinzufügen / Bearbeiten"
|
3310 |
|
3311 |
# @ acf
|
3312 |
+
#: includes/locations/class-acf-location-user-form.php:89
|
3313 |
msgid "Register"
|
3314 |
msgstr "Registrieren"
|
3315 |
|
3346 |
msgstr "Advanced Custom Fields PRO"
|
3347 |
|
3348 |
# @ acf
|
3349 |
+
#: pro/admin/admin-options-page.php:200
|
3350 |
msgid "Publish"
|
3351 |
msgstr "Veröffentlichen"
|
3352 |
|
3353 |
# @ acf
|
3354 |
+
#: pro/admin/admin-options-page.php:206
|
3355 |
#, php-format
|
3356 |
msgid ""
|
3357 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
3364 |
#: pro/admin/admin-settings-updates.php:78
|
3365 |
msgid "<b>Error</b>. Could not connect to update server"
|
3366 |
msgstr ""
|
3367 |
+
"<b>Fehler</b>. Verbindung zum Update-Server konnte nicht hergestellt werden"
|
3368 |
|
3369 |
# @ acf
|
3370 |
#: pro/admin/admin-settings-updates.php:162
|
3371 |
+
#: pro/admin/views/html-settings-updates.php:13
|
3372 |
msgid "Updates"
|
3373 |
msgstr "Aktualisierungen"
|
3374 |
|
3375 |
# @ acf
|
3376 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3377 |
msgid "Deactivate License"
|
3378 |
msgstr "Lizenz deaktivieren"
|
3379 |
|
3380 |
# @ acf
|
3381 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3382 |
msgid "Activate License"
|
3383 |
msgstr "Lizenz aktivieren"
|
3384 |
|
3385 |
+
#: pro/admin/views/html-settings-updates.php:17
|
3386 |
msgid "License Information"
|
3387 |
msgstr "Lizenzinformationen"
|
3388 |
|
3389 |
+
#: pro/admin/views/html-settings-updates.php:20
|
3390 |
#, php-format
|
3391 |
msgid ""
|
3392 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3398 |
"target=\"_blank\">Details & Preise</a>."
|
3399 |
|
3400 |
# @ acf
|
3401 |
+
#: pro/admin/views/html-settings-updates.php:29
|
3402 |
msgid "License Key"
|
3403 |
msgstr "Lizenzschlüssel"
|
3404 |
|
3405 |
# @ acf
|
3406 |
+
#: pro/admin/views/html-settings-updates.php:61
|
3407 |
msgid "Update Information"
|
3408 |
msgstr "Aktualisierungsinformationen"
|
3409 |
|
3410 |
# @ acf
|
3411 |
+
#: pro/admin/views/html-settings-updates.php:68
|
3412 |
msgid "Current Version"
|
3413 |
msgstr "Installierte Version"
|
3414 |
|
3415 |
# @ acf
|
3416 |
+
#: pro/admin/views/html-settings-updates.php:76
|
3417 |
msgid "Latest Version"
|
3418 |
msgstr "Aktuellste Version"
|
3419 |
|
3420 |
# @ acf
|
3421 |
+
#: pro/admin/views/html-settings-updates.php:84
|
3422 |
msgid "Update Available"
|
3423 |
msgstr "Aktualisierung verfügbar"
|
3424 |
|
3425 |
# @ acf
|
3426 |
+
#: pro/admin/views/html-settings-updates.php:92
|
3427 |
msgid "Update Plugin"
|
3428 |
msgstr "Plugin aktualisieren"
|
3429 |
|
3430 |
# @ acf
|
3431 |
+
#: pro/admin/views/html-settings-updates.php:94
|
3432 |
msgid "Please enter your license key above to unlock updates"
|
3433 |
msgstr ""
|
3434 |
"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit "
|
3435 |
"freizuschalten"
|
3436 |
|
3437 |
# @ acf
|
3438 |
+
#: pro/admin/views/html-settings-updates.php:100
|
3439 |
msgid "Check Again"
|
3440 |
msgstr "Erneut suchen"
|
3441 |
|
3442 |
# @ acf
|
3443 |
+
#: pro/admin/views/html-settings-updates.php:117
|
3444 |
msgid "Upgrade Notice"
|
3445 |
msgstr "Aktualisierungs-Hinweis"
|
3446 |
|
3447 |
+
#: pro/fields/class-acf-field-clone.php:25
|
3448 |
msgctxt "noun"
|
3449 |
msgid "Clone"
|
3450 |
msgstr "Klonen"
|
3451 |
|
3452 |
+
#: pro/fields/class-acf-field-clone.php:808
|
3453 |
msgid "Select one or more fields you wish to clone"
|
3454 |
msgstr "Wähle eines oder mehrere Felder aus, das/die du klonen willst"
|
3455 |
|
3456 |
# @ acf
|
3457 |
+
#: pro/fields/class-acf-field-clone.php:825
|
3458 |
msgid "Display"
|
3459 |
msgstr "Anzeige"
|
3460 |
|
3461 |
+
#: pro/fields/class-acf-field-clone.php:826
|
3462 |
msgid "Specify the style used to render the clone field"
|
3463 |
msgstr "Gib an, wie die geklonten Felder ausgegeben werden sollen"
|
3464 |
|
3465 |
+
#: pro/fields/class-acf-field-clone.php:831
|
3466 |
msgid "Group (displays selected fields in a group within this field)"
|
3467 |
msgstr ""
|
3468 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses Felds "
|
3469 |
"an)"
|
3470 |
|
3471 |
+
#: pro/fields/class-acf-field-clone.php:832
|
3472 |
msgid "Seamless (replaces this field with selected fields)"
|
3473 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3474 |
|
3475 |
+
#: pro/fields/class-acf-field-clone.php:853
|
3476 |
#, php-format
|
3477 |
msgid "Labels will be displayed as %s"
|
3478 |
msgstr "Bezeichnungen werden angezeigt als %s"
|
3479 |
|
3480 |
+
#: pro/fields/class-acf-field-clone.php:856
|
3481 |
msgid "Prefix Field Labels"
|
3482 |
msgstr "Präfix für Feld Bezeichnungen"
|
3483 |
|
3484 |
+
#: pro/fields/class-acf-field-clone.php:867
|
3485 |
#, php-format
|
3486 |
msgid "Values will be saved as %s"
|
3487 |
msgstr "Werte werden gespeichert als %s"
|
3488 |
|
3489 |
+
#: pro/fields/class-acf-field-clone.php:870
|
3490 |
msgid "Prefix Field Names"
|
3491 |
msgstr "Präfix für Feld Namen"
|
3492 |
|
3493 |
+
#: pro/fields/class-acf-field-clone.php:988
|
3494 |
msgid "Unknown field"
|
3495 |
msgstr "Unbekanntes Feld"
|
3496 |
|
3497 |
+
#: pro/fields/class-acf-field-clone.php:1027
|
3498 |
msgid "Unknown field group"
|
3499 |
msgstr "Unbekannte Feld-Gruppe"
|
3500 |
|
3501 |
+
#: pro/fields/class-acf-field-clone.php:1031
|
3502 |
#, php-format
|
3503 |
msgid "All fields from %s field group"
|
3504 |
msgstr "Alle Felder der %s Feld-Gruppe"
|
3505 |
|
3506 |
# @ acf
|
3507 |
+
#: pro/fields/class-acf-field-flexible-content.php:31
|
3508 |
+
#: pro/fields/class-acf-field-repeater.php:174
|
3509 |
+
#: pro/fields/class-acf-field-repeater.php:470
|
3510 |
msgid "Add Row"
|
3511 |
msgstr "Eintrag hinzufügen"
|
3512 |
|
3513 |
# @ acf
|
3514 |
+
#: pro/fields/class-acf-field-flexible-content.php:34
|
3515 |
msgid "layout"
|
3516 |
msgstr "Eintrag"
|
3517 |
|
3518 |
# @ acf
|
3519 |
+
#: pro/fields/class-acf-field-flexible-content.php:35
|
3520 |
msgid "layouts"
|
3521 |
msgstr "Einträge"
|
3522 |
|
3523 |
# @ acf
|
3524 |
+
#: pro/fields/class-acf-field-flexible-content.php:36
|
3525 |
msgid "remove {layout}?"
|
3526 |
msgstr "{layout} löschen?"
|
3527 |
|
3528 |
# @ acf
|
3529 |
+
#: pro/fields/class-acf-field-flexible-content.php:37
|
3530 |
msgid "This field requires at least {min} {identifier}"
|
3531 |
msgstr "Dieses Feld erfordert mindestens {min} {identifier}"
|
3532 |
|
3533 |
# @ acf
|
3534 |
+
#: pro/fields/class-acf-field-flexible-content.php:38
|
3535 |
msgid "This field has a limit of {max} {identifier}"
|
3536 |
msgstr "Diesem Feld dürfen maximal {max} {identifier} hinzugefügt werden."
|
3537 |
|
3538 |
# @ acf
|
3539 |
+
#: pro/fields/class-acf-field-flexible-content.php:39
|
3540 |
msgid "This field requires at least {min} {label} {identifier}"
|
3541 |
msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}"
|
3542 |
|
3543 |
# @ acf
|
3544 |
+
#: pro/fields/class-acf-field-flexible-content.php:40
|
3545 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3546 |
msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})"
|
3547 |
|
3548 |
# @ acf
|
3549 |
+
#: pro/fields/class-acf-field-flexible-content.php:41
|
3550 |
msgid "{available} {label} {identifier} available (max {max})"
|
3551 |
msgstr "{available} {label} {identifier} möglich (max {max})"
|
3552 |
|
3553 |
# @ acf
|
3554 |
+
#: pro/fields/class-acf-field-flexible-content.php:42
|
3555 |
msgid "{required} {label} {identifier} required (min {min})"
|
3556 |
msgstr "{required} {label} {identifier} erforderlich (min {min})"
|
3557 |
|
3558 |
# @ acf
|
3559 |
+
#: pro/fields/class-acf-field-flexible-content.php:43
|
3560 |
msgid "Flexible Content requires at least 1 layout"
|
3561 |
msgstr "Flexibler Inhalt benötigt mindestens ein Layout"
|
3562 |
|
3563 |
# @ acf
|
3564 |
+
#: pro/fields/class-acf-field-flexible-content.php:273
|
3565 |
#, php-format
|
3566 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3567 |
msgstr "Klicke \"%s\" zum Erstellen des Layouts"
|
3568 |
|
3569 |
# @ acf
|
3570 |
+
#: pro/fields/class-acf-field-flexible-content.php:406
|
3571 |
msgid "Add layout"
|
3572 |
msgstr "Layout hinzufügen"
|
3573 |
|
3574 |
# @ acf
|
3575 |
+
#: pro/fields/class-acf-field-flexible-content.php:407
|
3576 |
msgid "Remove layout"
|
3577 |
msgstr "Layout entfernen"
|
3578 |
|
3579 |
+
#: pro/fields/class-acf-field-flexible-content.php:408
|
3580 |
+
#: pro/fields/class-acf-field-repeater.php:298
|
3581 |
msgid "Click to toggle"
|
3582 |
msgstr "Zum Auswählen anklicken"
|
3583 |
|
3584 |
# @ acf
|
3585 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3586 |
msgid "Reorder Layout"
|
3587 |
msgstr "Layout sortieren"
|
3588 |
|
3589 |
# @ acf
|
3590 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3591 |
msgid "Reorder"
|
3592 |
msgstr "Sortieren"
|
3593 |
|
3594 |
# @ acf
|
3595 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
3596 |
msgid "Delete Layout"
|
3597 |
msgstr "Layout löschen"
|
3598 |
|
3599 |
# @ acf
|
3600 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3601 |
msgid "Duplicate Layout"
|
3602 |
msgstr "Layout duplizieren"
|
3603 |
|
3604 |
# @ acf
|
3605 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3606 |
msgid "Add New Layout"
|
3607 |
msgstr "Neues Layout hinzufügen"
|
3608 |
|
3609 |
# @ acf
|
3610 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
3611 |
msgid "Min"
|
3612 |
msgstr "Min"
|
3613 |
|
3614 |
# @ acf
|
3615 |
+
#: pro/fields/class-acf-field-flexible-content.php:641
|
3616 |
msgid "Max"
|
3617 |
msgstr "Max"
|
3618 |
|
3619 |
# @ acf
|
3620 |
+
#: pro/fields/class-acf-field-flexible-content.php:668
|
3621 |
+
#: pro/fields/class-acf-field-repeater.php:466
|
3622 |
msgid "Button Label"
|
3623 |
msgstr "Button-Beschriftung"
|
3624 |
|
3625 |
# @ acf
|
3626 |
+
#: pro/fields/class-acf-field-flexible-content.php:677
|
3627 |
msgid "Minimum Layouts"
|
3628 |
msgstr "Minimum Layouts"
|
3629 |
|
3630 |
# @ acf
|
3631 |
+
#: pro/fields/class-acf-field-flexible-content.php:686
|
3632 |
msgid "Maximum Layouts"
|
3633 |
msgstr "Maximum Layouts"
|
3634 |
|
3635 |
# @ acf
|
3636 |
+
#: pro/fields/class-acf-field-gallery.php:41
|
3637 |
msgid "Add Image to Gallery"
|
3638 |
msgstr "Bild zur Galerie hinzufügen"
|
3639 |
|
3640 |
# @ acf
|
3641 |
+
#: pro/fields/class-acf-field-gallery.php:45
|
3642 |
msgid "Maximum selection reached"
|
3643 |
msgstr "Maximale Auswahl erreicht"
|
3644 |
|
3645 |
# @ acf
|
3646 |
+
#: pro/fields/class-acf-field-gallery.php:321
|
3647 |
msgid "Length"
|
3648 |
msgstr "Länge"
|
3649 |
|
3650 |
+
#: pro/fields/class-acf-field-gallery.php:364
|
3651 |
msgid "Caption"
|
3652 |
msgstr "Beschriftung"
|
3653 |
|
3654 |
+
#: pro/fields/class-acf-field-gallery.php:373
|
3655 |
msgid "Alt Text"
|
3656 |
msgstr "Alt Text"
|
3657 |
|
3658 |
# @ acf
|
3659 |
+
#: pro/fields/class-acf-field-gallery.php:544
|
3660 |
msgid "Add to gallery"
|
3661 |
msgstr "Zur Galerie hinzufügen"
|
3662 |
|
3663 |
# @ acf
|
3664 |
+
#: pro/fields/class-acf-field-gallery.php:548
|
3665 |
msgid "Bulk actions"
|
3666 |
msgstr "Massenverarbeitung"
|
3667 |
|
3668 |
# @ acf
|
3669 |
+
#: pro/fields/class-acf-field-gallery.php:549
|
3670 |
msgid "Sort by date uploaded"
|
3671 |
msgstr "Sortiere nach Upload-Datum"
|
3672 |
|
3673 |
# @ acf
|
3674 |
+
#: pro/fields/class-acf-field-gallery.php:550
|
3675 |
msgid "Sort by date modified"
|
3676 |
msgstr "Sortiere nach Änderungs-Datum"
|
3677 |
|
3678 |
# @ acf
|
3679 |
+
#: pro/fields/class-acf-field-gallery.php:551
|
3680 |
msgid "Sort by title"
|
3681 |
msgstr "Sortiere nach Titel"
|
3682 |
|
3683 |
# @ acf
|
3684 |
+
#: pro/fields/class-acf-field-gallery.php:552
|
3685 |
msgid "Reverse current order"
|
3686 |
msgstr "Aktuelle Sortierung umkehren"
|
3687 |
|
3688 |
# @ acf
|
3689 |
+
#: pro/fields/class-acf-field-gallery.php:570
|
3690 |
msgid "Close"
|
3691 |
msgstr "Schliessen"
|
3692 |
|
3693 |
# @ acf
|
3694 |
+
#: pro/fields/class-acf-field-gallery.php:624
|
3695 |
msgid "Minimum Selection"
|
3696 |
msgstr "Minimale Auswahl"
|
3697 |
|
3698 |
# @ acf
|
3699 |
+
#: pro/fields/class-acf-field-gallery.php:633
|
3700 |
msgid "Maximum Selection"
|
3701 |
msgstr "Maximale Auswahl"
|
3702 |
|
3703 |
+
#: pro/fields/class-acf-field-gallery.php:642
|
3704 |
msgid "Insert"
|
3705 |
msgstr "Einfügen"
|
3706 |
|
3707 |
+
#: pro/fields/class-acf-field-gallery.php:643
|
3708 |
msgid "Specify where new attachments are added"
|
3709 |
msgstr "Gib an, wo neue Anhänge eingefügt werden sollen"
|
3710 |
|
3711 |
+
#: pro/fields/class-acf-field-gallery.php:647
|
3712 |
msgid "Append to the end"
|
3713 |
msgstr "Am Schluss anhängen"
|
3714 |
|
3715 |
+
#: pro/fields/class-acf-field-gallery.php:648
|
3716 |
msgid "Prepend to the beginning"
|
3717 |
msgstr "Vor Beginn einfügen"
|
3718 |
|
3719 |
# @ acf
|
3720 |
+
#: pro/fields/class-acf-field-repeater.php:36
|
3721 |
msgid "Minimum rows reached ({min} rows)"
|
3722 |
msgstr "Minimum der Einträge mit ({min} Reihen) erreicht"
|
3723 |
|
3724 |
# @ acf
|
3725 |
+
#: pro/fields/class-acf-field-repeater.php:37
|
3726 |
msgid "Maximum rows reached ({max} rows)"
|
3727 |
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
3728 |
|
3729 |
# @ acf
|
3730 |
+
#: pro/fields/class-acf-field-repeater.php:343
|
3731 |
msgid "Add row"
|
3732 |
msgstr "Eintrag hinzufügen"
|
3733 |
|
3734 |
# @ acf
|
3735 |
+
#: pro/fields/class-acf-field-repeater.php:344
|
3736 |
msgid "Remove row"
|
3737 |
msgstr "Eintrag löschen"
|
3738 |
|
3739 |
+
#: pro/fields/class-acf-field-repeater.php:419
|
3740 |
msgid "Collapsed"
|
3741 |
msgstr "Zugeklappt"
|
3742 |
|
3743 |
+
#: pro/fields/class-acf-field-repeater.php:420
|
3744 |
msgid "Select a sub field to show when row is collapsed"
|
3745 |
msgstr ""
|
3746 |
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
3747 |
+
"werden soll"
|
3748 |
|
3749 |
# @ acf
|
3750 |
+
#: pro/fields/class-acf-field-repeater.php:430
|
3751 |
msgid "Minimum Rows"
|
3752 |
msgstr "Minimum der Einträge"
|
3753 |
|
3754 |
# @ acf
|
3755 |
+
#: pro/fields/class-acf-field-repeater.php:440
|
3756 |
msgid "Maximum Rows"
|
3757 |
msgstr "Maximum der Einträge"
|
3758 |
|
3759 |
# @ acf
|
3760 |
+
#: pro/locations/class-acf-location-options-page.php:79
|
3761 |
msgid "No options pages exist"
|
3762 |
msgstr "Keine Options-Seiten vorhanden"
|
3763 |
|
lang/acf-de_DE.mo
CHANGED
Binary file
|
lang/acf-de_DE.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Advanced Custom Fields Pro v5.6.
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
@@ -23,116 +23,116 @@ msgstr ""
|
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
# @ acf
|
26 |
-
#: acf.php:
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
-
#: acf.php:
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
-
#: acf.php:
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
-
#: acf.php:
|
42 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
-
#: acf.php:
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
-
#: acf.php:
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
-
#: acf.php:
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
-
#: acf.php:
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
-
#: acf.php:
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
-
#: acf.php:
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
-
#: acf.php:
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
-
#: acf.php:
|
83 |
#: includes/admin/admin-field-group.php:275
|
84 |
#: includes/admin/admin-field-groups.php:510
|
85 |
-
#: pro/fields/class-acf-field-clone.php:
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
-
#: acf.php:
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
-
#: acf.php:
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
-
#: acf.php:
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
-
#: acf.php:
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Neues Feld"
|
109 |
|
110 |
# @ acf
|
111 |
-
#: acf.php:
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
-
#: acf.php:
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
-
#: acf.php:
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
-
#: acf.php:
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
-
#: acf.php:
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inaktiv"
|
134 |
|
135 |
-
#: acf.php:
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
@@ -182,6 +182,7 @@ msgid "Location"
|
|
182 |
msgstr "Position"
|
183 |
|
184 |
#: includes/admin/admin-field-group.php:184
|
|
|
185 |
msgid "Settings"
|
186 |
msgstr "Einstellungen"
|
187 |
|
@@ -217,7 +218,7 @@ msgstr "kopieren"
|
|
217 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
218 |
#: includes/admin/views/field-group-locations.php:29
|
219 |
#: includes/admin/views/html-location-group.php:3
|
220 |
-
#: includes/api/api-helpers.php:
|
221 |
msgid "or"
|
222 |
msgstr "oder"
|
223 |
|
@@ -399,51 +400,56 @@ msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
|
399 |
msgstr "Danke für das Vertrauen in <a href=\"%s\">ACF</a>."
|
400 |
|
401 |
# @ acf
|
402 |
-
#: includes/admin/admin-field-groups.php:
|
403 |
msgid "Duplicate this item"
|
404 |
msgstr "Dieses Element duplizieren"
|
405 |
|
406 |
# @ acf
|
407 |
-
#: includes/admin/admin-field-groups.php:
|
408 |
-
#: includes/admin/admin-field-groups.php:
|
409 |
#: includes/admin/views/field-group-field.php:49
|
410 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
411 |
msgid "Duplicate"
|
412 |
msgstr "Duplizieren"
|
413 |
|
414 |
# @ acf
|
415 |
-
#: includes/admin/admin-field-groups.php:
|
416 |
#: includes/fields/class-acf-field-google-map.php:112
|
417 |
#: includes/fields/class-acf-field-relationship.php:656
|
418 |
msgid "Search"
|
419 |
msgstr "Suchen"
|
420 |
|
421 |
# @ acf
|
422 |
-
#: includes/admin/admin-field-groups.php:
|
423 |
#, php-format
|
424 |
msgid "Select %s"
|
425 |
msgstr "%s auswählen"
|
426 |
|
427 |
# @ acf
|
428 |
-
#: includes/admin/admin-field-groups.php:
|
429 |
msgid "Synchronise field group"
|
430 |
msgstr "Synchronisiere Feld-Gruppe"
|
431 |
|
432 |
# @ acf
|
433 |
-
#: includes/admin/admin-field-groups.php:
|
434 |
-
#: includes/admin/admin-field-groups.php:
|
435 |
msgid "Sync"
|
436 |
msgstr "Synchronisieren"
|
437 |
|
438 |
-
#: includes/admin/admin-field-groups.php:
|
439 |
msgid "Apply"
|
440 |
msgstr "Anwenden"
|
441 |
|
442 |
# @ acf
|
443 |
-
#: includes/admin/admin-field-groups.php:
|
444 |
msgid "Bulk Actions"
|
445 |
msgstr "Massenverarbeitung"
|
446 |
|
|
|
|
|
|
|
|
|
|
|
447 |
# @ acf
|
448 |
#: includes/admin/admin.php:113
|
449 |
#: includes/admin/views/field-group-options.php:118
|
@@ -491,39 +497,123 @@ msgstr "Info"
|
|
491 |
msgid "What's New"
|
492 |
msgstr "Was gibt es Neues"
|
493 |
|
494 |
-
|
495 |
-
#: includes/admin/
|
496 |
-
|
497 |
-
|
498 |
-
|
|
|
|
|
|
|
|
|
|
|
499 |
|
500 |
# @ acf
|
501 |
-
#: includes/admin/
|
|
|
502 |
msgid "No field groups selected"
|
503 |
msgstr "Keine Feld-Gruppe ausgewählt"
|
504 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
# @ acf
|
506 |
-
#: includes/admin/
|
507 |
-
#: includes/fields/class-acf-field-file.php:
|
508 |
msgid "No file selected"
|
509 |
msgstr "Keine Datei ausgewählt"
|
510 |
|
511 |
# @ acf
|
512 |
-
#: includes/admin/
|
513 |
msgid "Error uploading file. Please try again"
|
514 |
msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen"
|
515 |
|
516 |
# @ acf
|
517 |
-
#: includes/admin/
|
518 |
msgid "Incorrect file type"
|
519 |
msgstr "Falscher Dateityp"
|
520 |
|
521 |
# @ acf
|
522 |
-
#: includes/admin/
|
523 |
msgid "Import file empty"
|
524 |
msgstr "Die importierte Datei ist leer"
|
525 |
|
526 |
-
#: includes/admin/
|
527 |
#, php-format
|
528 |
msgid "Imported 1 field group"
|
529 |
msgid_plural "Imported %s field groups"
|
@@ -579,7 +669,7 @@ msgstr "Feld bearbeiten"
|
|
579 |
|
580 |
# @ acf
|
581 |
#: includes/admin/views/field-group-field.php:48
|
582 |
-
#: includes/fields/class-acf-field-file.php:
|
583 |
#: includes/fields/class-acf-field-image.php:122
|
584 |
#: includes/fields/class-acf-field-link.php:139
|
585 |
#: pro/fields/class-acf-field-gallery.php:342
|
@@ -608,7 +698,7 @@ msgstr "Feld löschen"
|
|
608 |
|
609 |
# @ acf
|
610 |
#: includes/admin/views/field-group-field.php:51
|
611 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
612 |
msgid "Delete"
|
613 |
msgstr "Löschen"
|
614 |
|
@@ -623,60 +713,59 @@ msgid "This is the name which will appear on the EDIT page"
|
|
623 |
msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt"
|
624 |
|
625 |
# @ acf
|
626 |
-
#: includes/admin/views/field-group-field.php:
|
627 |
msgid "Field Name"
|
628 |
msgstr "Feld-Name"
|
629 |
|
630 |
# @ acf
|
631 |
-
#: includes/admin/views/field-group-field.php:
|
632 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
633 |
msgstr ""
|
634 |
"Nur ein Wort ohne Leerzeichen; es sind nur Unterstriche und Bindestriche als "
|
635 |
"Sonderzeichen erlaubt"
|
636 |
|
637 |
# @ acf
|
638 |
-
#: includes/admin/views/field-group-field.php:
|
639 |
msgid "Field Type"
|
640 |
msgstr "Feld-Typ"
|
641 |
|
642 |
# @ acf
|
643 |
-
#: includes/admin/views/field-group-field.php:
|
644 |
-
#: includes/fields/class-acf-field-tab.php:88
|
645 |
msgid "Instructions"
|
646 |
msgstr "Anweisungen"
|
647 |
|
648 |
# @ acf
|
649 |
-
#: includes/admin/views/field-group-field.php:
|
650 |
msgid "Instructions for authors. Shown when submitting data"
|
651 |
msgstr "Anweisungen für Autoren werden in der Bearbeitungs-Ansicht angezeigt"
|
652 |
|
653 |
# @ acf
|
654 |
-
#: includes/admin/views/field-group-field.php:
|
655 |
msgid "Required?"
|
656 |
msgstr "Erforderlich?"
|
657 |
|
658 |
# @ acf
|
659 |
-
#: includes/admin/views/field-group-field.php:
|
660 |
msgid "Wrapper Attributes"
|
661 |
msgstr "Wrapper-Attribute"
|
662 |
|
663 |
# @ acf
|
664 |
-
#: includes/admin/views/field-group-field.php:
|
665 |
msgid "width"
|
666 |
msgstr "Breite"
|
667 |
|
668 |
# @ acf
|
669 |
-
#: includes/admin/views/field-group-field.php:
|
670 |
msgid "class"
|
671 |
msgstr "Klasse"
|
672 |
|
673 |
# @ acf
|
674 |
-
#: includes/admin/views/field-group-field.php:
|
675 |
msgid "id"
|
676 |
msgstr "ID"
|
677 |
|
678 |
# @ acf
|
679 |
-
#: includes/admin/views/field-group-field.php:
|
680 |
msgid "Close Field"
|
681 |
msgstr "Feld schließen"
|
682 |
|
@@ -687,17 +776,18 @@ msgstr "Reihenfolge"
|
|
687 |
|
688 |
# @ acf
|
689 |
#: includes/admin/views/field-group-fields.php:5
|
|
|
690 |
#: includes/fields/class-acf-field-checkbox.php:415
|
691 |
#: includes/fields/class-acf-field-radio.php:306
|
692 |
#: includes/fields/class-acf-field-select.php:432
|
693 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
694 |
msgid "Label"
|
695 |
msgstr "Name"
|
696 |
|
697 |
# @ acf
|
698 |
#: includes/admin/views/field-group-fields.php:6
|
699 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
700 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
701 |
msgid "Name"
|
702 |
msgstr "Feld-Name"
|
703 |
|
@@ -780,14 +870,14 @@ msgstr "Platzierung Beschriftung"
|
|
780 |
|
781 |
# @ acf
|
782 |
#: includes/admin/views/field-group-options.php:62
|
783 |
-
#: includes/fields/class-acf-field-tab.php:
|
784 |
msgid "Top aligned"
|
785 |
msgstr "Über dem Feld"
|
786 |
|
787 |
# @ acf
|
788 |
#: includes/admin/views/field-group-options.php:63
|
789 |
-
#: includes/fields/class-acf-field-tab.php:
|
790 |
-
msgid "Left
|
791 |
msgstr "Links neben dem Feld"
|
792 |
|
793 |
# @ acf
|
@@ -1397,157 +1487,69 @@ msgid "We think you'll love the changes in %s."
|
|
1397 |
msgstr "Wir glauben Du wirst die Änderungen in %s lieben."
|
1398 |
|
1399 |
# @ acf
|
1400 |
-
#: includes/
|
1401 |
-
msgid "Export Field Groups to PHP"
|
1402 |
-
msgstr "Exportieren der Feld-Gruppen nach PHP"
|
1403 |
-
|
1404 |
-
# @ acf
|
1405 |
-
#: includes/admin/views/settings-tools-export.php:27
|
1406 |
-
msgid ""
|
1407 |
-
"The following code can be used to register a local version of the selected "
|
1408 |
-
"field group(s). A local field group can provide many benefits such as faster "
|
1409 |
-
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
1410 |
-
"the following code to your theme's functions.php file or include it within "
|
1411 |
-
"an external file."
|
1412 |
-
msgstr ""
|
1413 |
-
"Der nachfolgende Code kann dazu verwendet werden eine lokale Version der "
|
1414 |
-
"ausgewählten Feld-Gruppe(n) zu registrieren. Eine lokale Feld-Gruppe bietet "
|
1415 |
-
"viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische "
|
1416 |
-
"Felder und Einstellungen. Kopiere einfach folgenden Code und füge ihn in die "
|
1417 |
-
"functions.php oder eine externe Datei in Deinem Theme ein."
|
1418 |
-
|
1419 |
-
# @ acf
|
1420 |
-
#: includes/admin/views/settings-tools.php:5
|
1421 |
-
msgid "Select Field Groups"
|
1422 |
-
msgstr "Felder-Gruppen auswählen"
|
1423 |
-
|
1424 |
-
# @ acf
|
1425 |
-
#: includes/admin/views/settings-tools.php:35
|
1426 |
-
msgid "Export Field Groups"
|
1427 |
-
msgstr "Feld-Gruppen exportieren"
|
1428 |
-
|
1429 |
-
# @ acf
|
1430 |
-
#: includes/admin/views/settings-tools.php:38
|
1431 |
-
msgid ""
|
1432 |
-
"Select the field groups you would like to export and then select your export "
|
1433 |
-
"method. Use the download button to export to a .json file which you can then "
|
1434 |
-
"import to another ACF installation. Use the generate button to export to PHP "
|
1435 |
-
"code which you can place in your theme."
|
1436 |
-
msgstr ""
|
1437 |
-
"Entscheide zuerst welche Felder-Gruppen Du exportieren möchtest und wähle im "
|
1438 |
-
"Anschluss das Format in das exportiert werden soll. Klicke den \"JSON-Datei "
|
1439 |
-
"exportieren\"-Button, um eine JSON-Datei zu erhalten, welche Du dann in "
|
1440 |
-
"einer anderen ACF-Installation importieren kannst. Wähle den \"Erstelle PHP-"
|
1441 |
-
"Code\"-Button, um PHP-Code zu erhalten, den Du im Anschluss in der functions."
|
1442 |
-
"php Deines Themes einfügen kannst."
|
1443 |
-
|
1444 |
-
# @ acf
|
1445 |
-
#: includes/admin/views/settings-tools.php:50
|
1446 |
-
msgid "Download export file"
|
1447 |
-
msgstr "JSON-Datei exportieren"
|
1448 |
-
|
1449 |
-
# @ acf
|
1450 |
-
#: includes/admin/views/settings-tools.php:51
|
1451 |
-
msgid "Generate export code"
|
1452 |
-
msgstr "Erstelle PHP-Code"
|
1453 |
-
|
1454 |
-
# @ acf
|
1455 |
-
#: includes/admin/views/settings-tools.php:64
|
1456 |
-
msgid "Import Field Groups"
|
1457 |
-
msgstr "Feld-Gruppen importieren"
|
1458 |
-
|
1459 |
-
# @ acf
|
1460 |
-
#: includes/admin/views/settings-tools.php:67
|
1461 |
-
msgid ""
|
1462 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
1463 |
-
"you click the import button below, ACF will import the field groups."
|
1464 |
-
msgstr ""
|
1465 |
-
"Wähle die Advanced Custom Fields JSON-Datei aus, welche Du importieren "
|
1466 |
-
"möchtest. Nach dem Klicken des Importieren-Buttons wird ACF die Felder-"
|
1467 |
-
"Gruppen hinzufügen."
|
1468 |
-
|
1469 |
-
# @ acf
|
1470 |
-
#: includes/admin/views/settings-tools.php:77
|
1471 |
-
#: includes/fields/class-acf-field-file.php:35
|
1472 |
-
msgid "Select File"
|
1473 |
-
msgstr "Datei auswählen"
|
1474 |
-
|
1475 |
-
# @ acf
|
1476 |
-
#: includes/admin/views/settings-tools.php:86
|
1477 |
-
msgid "Import"
|
1478 |
-
msgstr "Importieren"
|
1479 |
-
|
1480 |
-
# @ acf
|
1481 |
-
#: includes/api/api-helpers.php:856
|
1482 |
msgid "Thumbnail"
|
1483 |
msgstr "Miniaturbild"
|
1484 |
|
1485 |
# @ acf
|
1486 |
-
#: includes/api/api-helpers.php:
|
1487 |
msgid "Medium"
|
1488 |
msgstr "Mittel"
|
1489 |
|
1490 |
# @ acf
|
1491 |
-
#: includes/api/api-helpers.php:
|
1492 |
msgid "Large"
|
1493 |
msgstr "Groß"
|
1494 |
|
1495 |
# @ acf
|
1496 |
-
#: includes/api/api-helpers.php:
|
1497 |
msgid "Full Size"
|
1498 |
msgstr "Volle Größe"
|
1499 |
|
1500 |
# @ acf
|
1501 |
-
#: includes/api/api-helpers.php:
|
1502 |
-
#: pro/fields/class-acf-field-clone.php:
|
1503 |
msgid "(no title)"
|
1504 |
msgstr "(ohne Titel)"
|
1505 |
|
1506 |
-
#: includes/api/api-helpers.php:1868
|
1507 |
-
#: includes/fields/class-acf-field-page_link.php:269
|
1508 |
-
#: includes/fields/class-acf-field-post_object.php:268
|
1509 |
-
#: includes/fields/class-acf-field-taxonomy.php:986
|
1510 |
-
msgid "Parent"
|
1511 |
-
msgstr "Übergeordnet"
|
1512 |
-
|
1513 |
# @ acf
|
1514 |
-
#: includes/api/api-helpers.php:
|
1515 |
#, php-format
|
1516 |
msgid "Image width must be at least %dpx."
|
1517 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1518 |
|
1519 |
# @ acf
|
1520 |
-
#: includes/api/api-helpers.php:
|
1521 |
#, php-format
|
1522 |
msgid "Image width must not exceed %dpx."
|
1523 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1524 |
|
1525 |
# @ acf
|
1526 |
-
#: includes/api/api-helpers.php:
|
1527 |
#, php-format
|
1528 |
msgid "Image height must be at least %dpx."
|
1529 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1530 |
|
1531 |
# @ acf
|
1532 |
-
#: includes/api/api-helpers.php:
|
1533 |
#, php-format
|
1534 |
msgid "Image height must not exceed %dpx."
|
1535 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1536 |
|
1537 |
# @ acf
|
1538 |
-
#: includes/api/api-helpers.php:
|
1539 |
#, php-format
|
1540 |
msgid "File size must be at least %s."
|
1541 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1542 |
|
1543 |
# @ acf
|
1544 |
-
#: includes/api/api-helpers.php:
|
1545 |
#, php-format
|
1546 |
msgid "File size must must not exceed %s."
|
1547 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1548 |
|
1549 |
# @ acf
|
1550 |
-
#: includes/api/api-helpers.php:
|
1551 |
#, php-format
|
1552 |
msgid "File type must be %s."
|
1553 |
msgstr "Der Dateityp muss %s sein."
|
@@ -1578,12 +1580,14 @@ msgid "jQuery"
|
|
1578 |
msgstr "jQuery"
|
1579 |
|
1580 |
# @ acf
|
1581 |
-
#: includes/fields.php:149
|
1582 |
-
#: includes/fields/class-acf-field-group.php:
|
|
|
|
|
1583 |
#: includes/fields/class-acf-field-radio.php:285
|
1584 |
-
#: pro/fields/class-acf-field-clone.php:
|
1585 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1586 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1587 |
#: pro/fields/class-acf-field-repeater.php:450
|
1588 |
msgid "Layout"
|
1589 |
msgstr "Layout"
|
@@ -1597,22 +1601,45 @@ msgstr "Feld-Typ existiert nicht"
|
|
1597 |
msgid "Unknown"
|
1598 |
msgstr "Unbekannte Feld-Gruppe"
|
1599 |
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
msgid "Checkbox"
|
1604 |
-
msgstr "Checkbox"
|
1605 |
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
msgstr "Alle auswählen"
|
1610 |
|
1611 |
-
#: includes/fields/class-acf-field-
|
1612 |
-
msgid "
|
1613 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1614 |
|
1615 |
# @ acf
|
|
|
1616 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1617 |
#: includes/fields/class-acf-field-radio.php:235
|
1618 |
#: includes/fields/class-acf-field-select.php:368
|
@@ -1620,6 +1647,7 @@ msgid "Choices"
|
|
1620 |
msgstr "Auswahlmöglichkeiten"
|
1621 |
|
1622 |
# @ acf
|
|
|
1623 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1624 |
#: includes/fields/class-acf-field-radio.php:236
|
1625 |
#: includes/fields/class-acf-field-select.php:369
|
@@ -1627,6 +1655,7 @@ msgid "Enter each choice on a new line."
|
|
1627 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1628 |
|
1629 |
# @ acf
|
|
|
1630 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1631 |
#: includes/fields/class-acf-field-radio.php:236
|
1632 |
#: includes/fields/class-acf-field-select.php:369
|
@@ -1636,75 +1665,72 @@ msgstr ""
|
|
1636 |
"Beschriftung definieren:"
|
1637 |
|
1638 |
# @ acf
|
|
|
1639 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1640 |
#: includes/fields/class-acf-field-radio.php:236
|
1641 |
#: includes/fields/class-acf-field-select.php:369
|
1642 |
msgid "red : Red"
|
1643 |
msgstr "rot : Rot"
|
1644 |
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
#: includes/fields/class-acf-field-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
msgstr "Benutzerdefinierte Werte abspeichern"
|
1656 |
-
|
1657 |
-
#: includes/fields/class-acf-field-checkbox.php:369
|
1658 |
-
msgid "Save 'custom' values to the field's choices"
|
1659 |
-
msgstr ""
|
1660 |
-
"Speichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1661 |
|
1662 |
# @ acf
|
|
|
1663 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1664 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1665 |
-
#: includes/fields/class-acf-field-email.php:
|
1666 |
-
#: includes/fields/class-acf-field-number.php:
|
1667 |
#: includes/fields/class-acf-field-radio.php:276
|
1668 |
-
#: includes/fields/class-acf-field-range.php:
|
1669 |
#: includes/fields/class-acf-field-select.php:377
|
1670 |
-
#: includes/fields/class-acf-field-text.php:
|
1671 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1672 |
#: includes/fields/class-acf-field-true_false.php:135
|
1673 |
-
#: includes/fields/class-acf-field-url.php:
|
1674 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
1675 |
msgid "Default Value"
|
1676 |
msgstr "Standardwert"
|
1677 |
|
1678 |
# @ acf
|
1679 |
-
#: includes/fields/class-acf-field-
|
1680 |
-
#: includes/fields/class-acf-field-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
#: includes/fields/class-acf-field-
|
1686 |
-
#: includes/fields/class-acf-field-
|
1687 |
-
|
1688 |
-
|
|
|
1689 |
|
1690 |
# @ acf
|
|
|
1691 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1692 |
#: includes/fields/class-acf-field-radio.php:292
|
1693 |
msgid "Horizontal"
|
1694 |
msgstr "Horizontal"
|
1695 |
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
msgstr ""
|
1703 |
-
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1704 |
|
1705 |
# @ acf
|
|
|
1706 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1707 |
-
#: includes/fields/class-acf-field-file.php:
|
1708 |
#: includes/fields/class-acf-field-image.php:188
|
1709 |
#: includes/fields/class-acf-field-link.php:166
|
1710 |
#: includes/fields/class-acf-field-radio.php:299
|
@@ -1713,26 +1739,76 @@ msgid "Return Value"
|
|
1713 |
msgstr "Rückgabewert"
|
1714 |
|
1715 |
# @ acf
|
|
|
1716 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1717 |
-
#: includes/fields/class-acf-field-file.php:
|
1718 |
#: includes/fields/class-acf-field-image.php:189
|
1719 |
#: includes/fields/class-acf-field-link.php:167
|
1720 |
#: includes/fields/class-acf-field-radio.php:300
|
1721 |
msgid "Specify the returned value on front end"
|
1722 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1723 |
|
|
|
1724 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1725 |
#: includes/fields/class-acf-field-radio.php:305
|
1726 |
#: includes/fields/class-acf-field-select.php:431
|
1727 |
msgid "Value"
|
1728 |
msgstr "Wert"
|
1729 |
|
|
|
1730 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1731 |
#: includes/fields/class-acf-field-radio.php:307
|
1732 |
#: includes/fields/class-acf-field-select.php:433
|
1733 |
msgid "Both (Array)"
|
1734 |
msgstr "Beide (Array)"
|
1735 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1736 |
# @ acf
|
1737 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1738 |
msgid "Color Picker"
|
@@ -1808,7 +1884,7 @@ msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
|
1808 |
#: includes/fields/class-acf-field-time_picker.php:117
|
1809 |
#: includes/fields/class-acf-field-time_picker.php:132
|
1810 |
msgid "Custom:"
|
1811 |
-
msgstr "
|
1812 |
|
1813 |
#: includes/fields/class-acf-field-date_picker.php:226
|
1814 |
msgid "Save Format"
|
@@ -1926,70 +2002,58 @@ msgid "Email"
|
|
1926 |
msgstr "E-Mail"
|
1927 |
|
1928 |
# @ acf
|
1929 |
-
#: includes/fields/class-acf-field-email.php:
|
1930 |
-
#: includes/fields/class-acf-field-number.php:
|
1931 |
-
#: includes/fields/class-acf-field-radio.php:277
|
1932 |
-
#: includes/fields/class-acf-field-range.php:142
|
1933 |
-
#: includes/fields/class-acf-field-text.php:116
|
1934 |
-
#: includes/fields/class-acf-field-textarea.php:99
|
1935 |
-
#: includes/fields/class-acf-field-url.php:97
|
1936 |
-
#: includes/fields/class-acf-field-wysiwyg.php:422
|
1937 |
-
msgid "Appears when creating a new post"
|
1938 |
-
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1939 |
-
|
1940 |
-
# @ acf
|
1941 |
-
#: includes/fields/class-acf-field-email.php:123
|
1942 |
-
#: includes/fields/class-acf-field-number.php:132
|
1943 |
#: includes/fields/class-acf-field-password.php:71
|
1944 |
-
#: includes/fields/class-acf-field-text.php:
|
1945 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1946 |
-
#: includes/fields/class-acf-field-url.php:
|
1947 |
msgid "Placeholder Text"
|
1948 |
msgstr "Platzhalter-Text"
|
1949 |
|
1950 |
# @ acf
|
1951 |
-
#: includes/fields/class-acf-field-email.php:
|
1952 |
-
#: includes/fields/class-acf-field-number.php:
|
1953 |
#: includes/fields/class-acf-field-password.php:72
|
1954 |
-
#: includes/fields/class-acf-field-text.php:
|
1955 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1956 |
-
#: includes/fields/class-acf-field-url.php:
|
1957 |
msgid "Appears within the input"
|
1958 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1959 |
|
1960 |
# @ acf
|
1961 |
-
#: includes/fields/class-acf-field-email.php:
|
1962 |
-
#: includes/fields/class-acf-field-number.php:
|
1963 |
#: includes/fields/class-acf-field-password.php:80
|
1964 |
-
#: includes/fields/class-acf-field-range.php:
|
1965 |
-
#: includes/fields/class-acf-field-text.php:
|
1966 |
msgid "Prepend"
|
1967 |
msgstr "Voranstellen"
|
1968 |
|
1969 |
# @ acf
|
1970 |
-
#: includes/fields/class-acf-field-email.php:
|
1971 |
-
#: includes/fields/class-acf-field-number.php:
|
1972 |
#: includes/fields/class-acf-field-password.php:81
|
1973 |
-
#: includes/fields/class-acf-field-range.php:
|
1974 |
-
#: includes/fields/class-acf-field-text.php:
|
1975 |
msgid "Appears before the input"
|
1976 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1977 |
|
1978 |
# @ acf
|
1979 |
-
#: includes/fields/class-acf-field-email.php:
|
1980 |
-
#: includes/fields/class-acf-field-number.php:
|
1981 |
#: includes/fields/class-acf-field-password.php:89
|
1982 |
-
#: includes/fields/class-acf-field-range.php:
|
1983 |
-
#: includes/fields/class-acf-field-text.php:
|
1984 |
msgid "Append"
|
1985 |
msgstr "Anhängen"
|
1986 |
|
1987 |
# @ acf
|
1988 |
-
#: includes/fields/class-acf-field-email.php:
|
1989 |
-
#: includes/fields/class-acf-field-number.php:
|
1990 |
#: includes/fields/class-acf-field-password.php:90
|
1991 |
-
#: includes/fields/class-acf-field-range.php:
|
1992 |
-
#: includes/fields/class-acf-field-text.php:
|
1993 |
msgid "Appears after the input"
|
1994 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1995 |
|
@@ -2015,14 +2079,14 @@ msgstr "Datei aktualisieren"
|
|
2015 |
msgid "Uploaded to this post"
|
2016 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2017 |
|
2018 |
-
#: includes/fields/class-acf-field-file.php:
|
2019 |
msgid "File name"
|
2020 |
msgstr "Dateiname"
|
2021 |
|
2022 |
# @ acf
|
2023 |
-
#: includes/fields/class-acf-field-file.php:
|
2024 |
-
#: includes/fields/class-acf-field-file.php:
|
2025 |
-
#: includes/fields/class-acf-field-file.php:
|
2026 |
#: includes/fields/class-acf-field-image.php:248
|
2027 |
#: includes/fields/class-acf-field-image.php:277
|
2028 |
#: pro/fields/class-acf-field-gallery.php:690
|
@@ -2031,7 +2095,7 @@ msgid "File size"
|
|
2031 |
msgstr "Dateigröße"
|
2032 |
|
2033 |
# @ acf
|
2034 |
-
#: includes/fields/class-acf-field-file.php:
|
2035 |
#: includes/fields/class-acf-field-image.php:124
|
2036 |
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2037 |
#: pro/fields/class-acf-field-gallery.php:343
|
@@ -2040,41 +2104,41 @@ msgid "Remove"
|
|
2040 |
msgstr "Entfernen"
|
2041 |
|
2042 |
# @ acf
|
2043 |
-
#: includes/fields/class-acf-field-file.php:
|
2044 |
msgid "Add File"
|
2045 |
msgstr "Datei hinzufügen"
|
2046 |
|
2047 |
# @ acf
|
2048 |
-
#: includes/fields/class-acf-field-file.php:
|
2049 |
msgid "File Array"
|
2050 |
msgstr "Datei-Array"
|
2051 |
|
2052 |
# @ acf
|
2053 |
-
#: includes/fields/class-acf-field-file.php:
|
2054 |
msgid "File URL"
|
2055 |
msgstr "Datei-URL"
|
2056 |
|
2057 |
# @ acf
|
2058 |
-
#: includes/fields/class-acf-field-file.php:
|
2059 |
msgid "File ID"
|
2060 |
msgstr "Datei-ID"
|
2061 |
|
2062 |
# @ acf
|
2063 |
-
#: includes/fields/class-acf-field-file.php:
|
2064 |
#: includes/fields/class-acf-field-image.php:213
|
2065 |
#: pro/fields/class-acf-field-gallery.php:655
|
2066 |
msgid "Library"
|
2067 |
msgstr "Medienübersicht"
|
2068 |
|
2069 |
# @ acf
|
2070 |
-
#: includes/fields/class-acf-field-file.php:
|
2071 |
#: includes/fields/class-acf-field-image.php:214
|
2072 |
#: pro/fields/class-acf-field-gallery.php:656
|
2073 |
msgid "Limit the media library choice"
|
2074 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2075 |
|
2076 |
# @ acf
|
2077 |
-
#: includes/fields/class-acf-field-file.php:
|
2078 |
#: includes/fields/class-acf-field-image.php:219
|
2079 |
#: includes/locations/class-acf-location-attachment.php:101
|
2080 |
#: includes/locations/class-acf-location-comment.php:79
|
@@ -2088,43 +2152,43 @@ msgid "All"
|
|
2088 |
msgstr "Alle"
|
2089 |
|
2090 |
# @ acf
|
2091 |
-
#: includes/fields/class-acf-field-file.php:
|
2092 |
#: includes/fields/class-acf-field-image.php:220
|
2093 |
#: pro/fields/class-acf-field-gallery.php:662
|
2094 |
msgid "Uploaded to post"
|
2095 |
msgstr "Für den Beitrag hochgeladen"
|
2096 |
|
2097 |
# @ acf
|
2098 |
-
#: includes/fields/class-acf-field-file.php:
|
2099 |
#: includes/fields/class-acf-field-image.php:227
|
2100 |
#: pro/fields/class-acf-field-gallery.php:669
|
2101 |
msgid "Minimum"
|
2102 |
msgstr "Minimum"
|
2103 |
|
2104 |
# @ acf
|
2105 |
-
#: includes/fields/class-acf-field-file.php:
|
2106 |
-
#: includes/fields/class-acf-field-file.php:
|
2107 |
msgid "Restrict which files can be uploaded"
|
2108 |
msgstr ""
|
2109 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2110 |
"erfüllen"
|
2111 |
|
2112 |
# @ acf
|
2113 |
-
#: includes/fields/class-acf-field-file.php:
|
2114 |
#: includes/fields/class-acf-field-image.php:256
|
2115 |
#: pro/fields/class-acf-field-gallery.php:698
|
2116 |
msgid "Maximum"
|
2117 |
msgstr "Maximum"
|
2118 |
|
2119 |
# @ acf
|
2120 |
-
#: includes/fields/class-acf-field-file.php:
|
2121 |
#: includes/fields/class-acf-field-image.php:285
|
2122 |
#: pro/fields/class-acf-field-gallery.php:727
|
2123 |
msgid "Allowed file types"
|
2124 |
msgstr "Erlaubte Datei-Formate"
|
2125 |
|
2126 |
# @ acf
|
2127 |
-
#: includes/fields/class-acf-field-file.php:
|
2128 |
#: includes/fields/class-acf-field-image.php:286
|
2129 |
#: pro/fields/class-acf-field-gallery.php:728
|
2130 |
msgid "Comma separated list. Leave blank for all types"
|
@@ -2207,37 +2271,37 @@ msgstr ""
|
|
2207 |
"Feldes an)"
|
2208 |
|
2209 |
# @ acf
|
2210 |
-
#: includes/fields/class-acf-field-group.php:
|
2211 |
#: pro/fields/class-acf-field-repeater.php:389
|
2212 |
msgid "Sub Fields"
|
2213 |
msgstr "Wiederholungsfelder"
|
2214 |
|
2215 |
-
#: includes/fields/class-acf-field-group.php:
|
2216 |
-
#: pro/fields/class-acf-field-clone.php:
|
2217 |
msgid "Specify the style used to render the selected fields"
|
2218 |
msgstr ""
|
2219 |
"Gib den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2220 |
|
2221 |
# @ acf
|
2222 |
-
#: includes/fields/class-acf-field-group.php:
|
2223 |
-
#: pro/fields/class-acf-field-clone.php:
|
2224 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2225 |
#: pro/fields/class-acf-field-repeater.php:458
|
2226 |
msgid "Block"
|
2227 |
msgstr "Block"
|
2228 |
|
2229 |
# @ acf
|
2230 |
-
#: includes/fields/class-acf-field-group.php:
|
2231 |
-
#: pro/fields/class-acf-field-clone.php:
|
2232 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2233 |
#: pro/fields/class-acf-field-repeater.php:457
|
2234 |
msgid "Table"
|
2235 |
msgstr "Tabelle"
|
2236 |
|
2237 |
# @ acf
|
2238 |
-
#: includes/fields/class-acf-field-group.php:
|
2239 |
-
#: pro/fields/class-acf-field-clone.php:
|
2240 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2241 |
#: pro/fields/class-acf-field-repeater.php:459
|
2242 |
msgid "Row"
|
2243 |
msgstr "Reihe"
|
@@ -2326,12 +2390,12 @@ msgstr "Breite"
|
|
2326 |
# @ acf
|
2327 |
#: includes/fields/class-acf-field-link.php:25
|
2328 |
msgid "Link"
|
2329 |
-
msgstr "
|
2330 |
|
2331 |
# @ acf
|
2332 |
#: includes/fields/class-acf-field-link.php:133
|
2333 |
msgid "Select Link"
|
2334 |
-
msgstr "
|
2335 |
|
2336 |
#: includes/fields/class-acf-field-link.php:138
|
2337 |
msgid "Opens in a new window/tab"
|
@@ -2340,12 +2404,12 @@ msgstr "In einem neuen Fenster/Tab öffnen"
|
|
2340 |
# @ acf
|
2341 |
#: includes/fields/class-acf-field-link.php:172
|
2342 |
msgid "Link Array"
|
2343 |
-
msgstr "
|
2344 |
|
2345 |
# @ acf
|
2346 |
#: includes/fields/class-acf-field-link.php:173
|
2347 |
msgid "Link URL"
|
2348 |
-
msgstr "
|
2349 |
|
2350 |
# @ acf
|
2351 |
#: includes/fields/class-acf-field-message.php:25
|
@@ -2356,31 +2420,31 @@ msgstr "Nachricht"
|
|
2356 |
|
2357 |
# @ acf
|
2358 |
#: includes/fields/class-acf-field-message.php:110
|
2359 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2360 |
msgid "New Lines"
|
2361 |
msgstr "Neue Zeilen"
|
2362 |
|
2363 |
# @ acf
|
2364 |
#: includes/fields/class-acf-field-message.php:111
|
2365 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2366 |
msgid "Controls how new lines are rendered"
|
2367 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2368 |
|
2369 |
# @ acf
|
2370 |
#: includes/fields/class-acf-field-message.php:115
|
2371 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2372 |
msgid "Automatically add paragraphs"
|
2373 |
msgstr "Absätze automatisch hinzufügen"
|
2374 |
|
2375 |
# @ acf
|
2376 |
#: includes/fields/class-acf-field-message.php:116
|
2377 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2378 |
msgid "Automatically add <br>"
|
2379 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2380 |
|
2381 |
# @ acf
|
2382 |
#: includes/fields/class-acf-field-message.php:117
|
2383 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2384 |
msgid "No Formatting"
|
2385 |
msgstr "Keine Formatierung"
|
2386 |
|
@@ -2402,36 +2466,36 @@ msgid "Number"
|
|
2402 |
msgstr "Numerisch"
|
2403 |
|
2404 |
# @ acf
|
2405 |
-
#: includes/fields/class-acf-field-number.php:
|
2406 |
-
#: includes/fields/class-acf-field-range.php:
|
2407 |
msgid "Minimum Value"
|
2408 |
msgstr "Mindestwert"
|
2409 |
|
2410 |
# @ acf
|
2411 |
-
#: includes/fields/class-acf-field-number.php:
|
2412 |
-
#: includes/fields/class-acf-field-range.php:
|
2413 |
msgid "Maximum Value"
|
2414 |
msgstr "Maximalwert"
|
2415 |
|
2416 |
# @ acf
|
2417 |
-
#: includes/fields/class-acf-field-number.php:
|
2418 |
-
#: includes/fields/class-acf-field-range.php:
|
2419 |
msgid "Step Size"
|
2420 |
msgstr "Schrittweite"
|
2421 |
|
2422 |
# @ acf
|
2423 |
-
#: includes/fields/class-acf-field-number.php:
|
2424 |
msgid "Value must be a number"
|
2425 |
msgstr "Wert muss eine Zahl sein"
|
2426 |
|
2427 |
# @ acf
|
2428 |
-
#: includes/fields/class-acf-field-number.php:
|
2429 |
#, php-format
|
2430 |
msgid "Value must be equal to or higher than %d"
|
2431 |
msgstr "Wert muss größer oder gleich %d sein"
|
2432 |
|
2433 |
# @ acf
|
2434 |
-
#: includes/fields/class-acf-field-number.php:
|
2435 |
#, php-format
|
2436 |
msgid "Value must be equal to or lower than %d"
|
2437 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
@@ -2467,6 +2531,12 @@ msgstr "Maße"
|
|
2467 |
msgid "Archives"
|
2468 |
msgstr "Archive"
|
2469 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2470 |
# @ acf
|
2471 |
#: includes/fields/class-acf-field-page_link.php:485
|
2472 |
#: includes/fields/class-acf-field-post_object.php:384
|
@@ -2495,16 +2565,6 @@ msgstr "Nach Taxonomien filtern"
|
|
2495 |
msgid "All taxonomies"
|
2496 |
msgstr "Alle Taxonomien"
|
2497 |
|
2498 |
-
# @ acf
|
2499 |
-
#: includes/fields/class-acf-field-page_link.php:513
|
2500 |
-
#: includes/fields/class-acf-field-post_object.php:412
|
2501 |
-
#: includes/fields/class-acf-field-radio.php:244
|
2502 |
-
#: includes/fields/class-acf-field-select.php:386
|
2503 |
-
#: includes/fields/class-acf-field-taxonomy.php:793
|
2504 |
-
#: includes/fields/class-acf-field-user.php:408
|
2505 |
-
msgid "Allow Null?"
|
2506 |
-
msgstr "NULL-Werte zulassen?"
|
2507 |
-
|
2508 |
#: includes/fields/class-acf-field-page_link.php:523
|
2509 |
msgid "Allow Archives URLs"
|
2510 |
msgstr "Archiv-URL's zulassen"
|
@@ -2740,7 +2800,7 @@ msgstr "Modernes Auswahlfeld"
|
|
2740 |
# @ acf
|
2741 |
#: includes/fields/class-acf-field-select.php:416
|
2742 |
msgid "Use AJAX to lazy load choices?"
|
2743 |
-
msgstr "AJAX verwenden um die Auswahl mittels
|
2744 |
|
2745 |
#: includes/fields/class-acf-field-select.php:427
|
2746 |
msgid "Specify the value returned"
|
@@ -2756,46 +2816,17 @@ msgid "Tab"
|
|
2756 |
msgstr "Tab"
|
2757 |
|
2758 |
# @ acf
|
2759 |
-
#: includes/fields/class-acf-field-tab.php:
|
2760 |
-
msgid ""
|
2761 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
2762 |
-
"field or flexible content field layout"
|
2763 |
-
msgstr ""
|
2764 |
-
"Ein Tab-Feld wird nicht korrekt dargestellt, wenn es zu einem Wiederholung- "
|
2765 |
-
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2766 |
-
|
2767 |
-
# @ acf
|
2768 |
-
#: includes/fields/class-acf-field-tab.php:83
|
2769 |
-
msgid ""
|
2770 |
-
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2771 |
-
"together."
|
2772 |
-
msgstr ""
|
2773 |
-
"Mit \"Tab Feldern\" können Felder für eine bessere Struktur im Editor in "
|
2774 |
-
"Tabs zusammengefasst werden."
|
2775 |
-
|
2776 |
-
# @ acf
|
2777 |
-
#: includes/fields/class-acf-field-tab.php:84
|
2778 |
-
msgid ""
|
2779 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2780 |
-
"defined) will be grouped together using this field's label as the tab "
|
2781 |
-
"heading."
|
2782 |
-
msgstr ""
|
2783 |
-
"Alle Felder, die auf dieses \"Tab Feld\" folgen (oder bis ein weiteres \"Tab "
|
2784 |
-
"Feld\" definiert ist), werden in einem Tab mit dem Namen dieses Felds "
|
2785 |
-
"zusammengefasst."
|
2786 |
-
|
2787 |
-
# @ acf
|
2788 |
-
#: includes/fields/class-acf-field-tab.php:98
|
2789 |
msgid "Placement"
|
2790 |
msgstr "Platzierung Tabs"
|
2791 |
|
2792 |
-
#: includes/fields/class-acf-field-tab.php:
|
2793 |
-
msgid "
|
2794 |
-
|
2795 |
-
|
2796 |
-
|
2797 |
-
|
2798 |
-
|
2799 |
|
2800 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
2801 |
#, php-format
|
@@ -2909,14 +2940,14 @@ msgid "Text"
|
|
2909 |
msgstr "Text einzeilig"
|
2910 |
|
2911 |
# @ acf
|
2912 |
-
#: includes/fields/class-acf-field-text.php:
|
2913 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2914 |
msgid "Character Limit"
|
2915 |
msgstr "Zeichenbegrenzung"
|
2916 |
|
2917 |
# @ acf
|
2918 |
-
#: includes/fields/class-acf-field-text.php:
|
2919 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2920 |
msgid "Leave blank for no limit"
|
2921 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2922 |
|
@@ -2926,12 +2957,12 @@ msgid "Text Area"
|
|
2926 |
msgstr "Text mehrzeilig"
|
2927 |
|
2928 |
# @ acf
|
2929 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2930 |
msgid "Rows"
|
2931 |
msgstr "Zeilenanzahl"
|
2932 |
|
2933 |
# @ acf
|
2934 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2935 |
msgid "Sets the textarea height"
|
2936 |
msgstr "Definiert die Höhe des Textfelds"
|
2937 |
|
@@ -2984,7 +3015,7 @@ msgid "Url"
|
|
2984 |
msgstr "URL"
|
2985 |
|
2986 |
# @ acf
|
2987 |
-
#: includes/fields/class-acf-field-url.php:
|
2988 |
msgid "Value must be a valid URL"
|
2989 |
msgstr "Bitte eine gültige URL eingeben"
|
2990 |
|
@@ -3009,55 +3040,55 @@ msgid "Wysiwyg Editor"
|
|
3009 |
msgstr "WYSIWYG-Editor"
|
3010 |
|
3011 |
# @ acf
|
3012 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3013 |
msgid "Visual"
|
3014 |
msgstr "Visuell"
|
3015 |
|
3016 |
# @ acf
|
3017 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3018 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3019 |
msgid "Text"
|
3020 |
msgstr "Text"
|
3021 |
|
3022 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3023 |
msgid "Click to initialize TinyMCE"
|
3024 |
msgstr "Klicke um TinyMCE zu initialisieren"
|
3025 |
|
3026 |
# @ acf
|
3027 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3028 |
msgid "Tabs"
|
3029 |
msgstr "Tabs"
|
3030 |
|
3031 |
# @ acf
|
3032 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3033 |
msgid "Visual & Text"
|
3034 |
msgstr "Visuell & Text"
|
3035 |
|
3036 |
# @ acf
|
3037 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3038 |
msgid "Visual Only"
|
3039 |
msgstr "Nur Visuell"
|
3040 |
|
3041 |
# @ acf
|
3042 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3043 |
msgid "Text Only"
|
3044 |
msgstr "Nur Text"
|
3045 |
|
3046 |
# @ acf
|
3047 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3048 |
msgid "Toolbar"
|
3049 |
msgstr "Werkzeugleiste"
|
3050 |
|
3051 |
# @ acf
|
3052 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3053 |
msgid "Show Media Upload Buttons?"
|
3054 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3055 |
|
3056 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3057 |
msgid "Delay initialization?"
|
3058 |
msgstr "Initialisierung verzögern?"
|
3059 |
|
3060 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3061 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3062 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3063 |
|
@@ -3082,7 +3113,7 @@ msgstr "Aktualisieren"
|
|
3082 |
msgid "Post updated"
|
3083 |
msgstr "Beitrag aktualisiert"
|
3084 |
|
3085 |
-
#: includes/forms/form-front.php:
|
3086 |
msgid "Spam Detected"
|
3087 |
msgstr "Spam entdeckt"
|
3088 |
|
@@ -3125,7 +3156,7 @@ msgstr "Eingeschränkt"
|
|
3125 |
# @ acf
|
3126 |
#: includes/input.php:266
|
3127 |
msgid "Are you sure?"
|
3128 |
-
msgstr "Wirklich
|
3129 |
|
3130 |
#: includes/input.php:270
|
3131 |
msgid "Cancel"
|
@@ -3437,56 +3468,56 @@ msgctxt "noun"
|
|
3437 |
msgid "Clone"
|
3438 |
msgstr "Klon"
|
3439 |
|
3440 |
-
#: pro/fields/class-acf-field-clone.php:
|
3441 |
msgid "Select one or more fields you wish to clone"
|
3442 |
msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest"
|
3443 |
|
3444 |
# @ acf
|
3445 |
-
#: pro/fields/class-acf-field-clone.php:
|
3446 |
msgid "Display"
|
3447 |
msgstr "Anzeige"
|
3448 |
|
3449 |
-
#: pro/fields/class-acf-field-clone.php:
|
3450 |
msgid "Specify the style used to render the clone field"
|
3451 |
msgstr "Gib den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3452 |
|
3453 |
-
#: pro/fields/class-acf-field-clone.php:
|
3454 |
msgid "Group (displays selected fields in a group within this field)"
|
3455 |
msgstr ""
|
3456 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
3457 |
"Feldes an)"
|
3458 |
|
3459 |
-
#: pro/fields/class-acf-field-clone.php:
|
3460 |
msgid "Seamless (replaces this field with selected fields)"
|
3461 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3462 |
|
3463 |
-
#: pro/fields/class-acf-field-clone.php:
|
3464 |
#, php-format
|
3465 |
msgid "Labels will be displayed as %s"
|
3466 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3467 |
|
3468 |
-
#: pro/fields/class-acf-field-clone.php:
|
3469 |
msgid "Prefix Field Labels"
|
3470 |
msgstr "Präfix für Feld-Beschriftungen"
|
3471 |
|
3472 |
-
#: pro/fields/class-acf-field-clone.php:
|
3473 |
#, php-format
|
3474 |
msgid "Values will be saved as %s"
|
3475 |
msgstr "Werte werden als %s gespeichert"
|
3476 |
|
3477 |
-
#: pro/fields/class-acf-field-clone.php:
|
3478 |
msgid "Prefix Field Names"
|
3479 |
msgstr "Präfix für Feld-Namen"
|
3480 |
|
3481 |
-
#: pro/fields/class-acf-field-clone.php:
|
3482 |
msgid "Unknown field"
|
3483 |
msgstr "Unbekanntes Feld"
|
3484 |
|
3485 |
-
#: pro/fields/class-acf-field-clone.php:
|
3486 |
msgid "Unknown field group"
|
3487 |
msgstr "Unbekannte Feld-Gruppe"
|
3488 |
|
3489 |
-
#: pro/fields/class-acf-field-clone.php:
|
3490 |
#, php-format
|
3491 |
msgid "All fields from %s field group"
|
3492 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
@@ -3570,53 +3601,53 @@ msgid "Click to toggle"
|
|
3570 |
msgstr "Zum Auswählen anklicken"
|
3571 |
|
3572 |
# @ acf
|
3573 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3574 |
msgid "Reorder Layout"
|
3575 |
msgstr "Layout sortieren"
|
3576 |
|
3577 |
# @ acf
|
3578 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3579 |
msgid "Reorder"
|
3580 |
msgstr "Sortieren"
|
3581 |
|
3582 |
# @ acf
|
3583 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3584 |
msgid "Delete Layout"
|
3585 |
msgstr "Layout löschen"
|
3586 |
|
3587 |
# @ acf
|
3588 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3589 |
msgid "Duplicate Layout"
|
3590 |
msgstr "Layout duplizieren"
|
3591 |
|
3592 |
# @ acf
|
3593 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3594 |
msgid "Add New Layout"
|
3595 |
msgstr "Neues Layout hinzufügen"
|
3596 |
|
3597 |
# @ acf
|
3598 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3599 |
msgid "Min"
|
3600 |
msgstr "Min"
|
3601 |
|
3602 |
# @ acf
|
3603 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3604 |
msgid "Max"
|
3605 |
msgstr "Max"
|
3606 |
|
3607 |
# @ acf
|
3608 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3609 |
#: pro/fields/class-acf-field-repeater.php:466
|
3610 |
msgid "Button Label"
|
3611 |
msgstr "Button-Beschriftung"
|
3612 |
|
3613 |
# @ acf
|
3614 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3615 |
msgid "Minimum Layouts"
|
3616 |
msgstr "Minimum Layouts"
|
3617 |
|
3618 |
# @ acf
|
3619 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3620 |
msgid "Maximum Layouts"
|
3621 |
msgstr "Maximum Layouts"
|
3622 |
|
@@ -3784,6 +3815,49 @@ msgstr "Elliot Condon"
|
|
3784 |
msgid "http://www.elliotcondon.com/"
|
3785 |
msgstr "http://www.elliotcondon.com/"
|
3786 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3787 |
# @ acf
|
3788 |
#~ msgid "Getting Started"
|
3789 |
#~ msgstr "Erste Schritte"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Custom Fields Pro v5.6.7\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2017-12-13 02:10+0100\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
# @ acf
|
26 |
+
#: acf.php:67
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
+
#: acf.php:369 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
+
#: acf.php:370
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
+
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
42 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
+
#: acf.php:372
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
+
#: acf.php:373
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
+
#: acf.php:374
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
+
#: acf.php:375
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
+
#: acf.php:376
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
+
#: acf.php:377
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
+
#: acf.php:378
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
+
#: acf.php:401 includes/admin/admin-field-group.php:182
|
83 |
#: includes/admin/admin-field-group.php:275
|
84 |
#: includes/admin/admin-field-groups.php:510
|
85 |
+
#: pro/fields/class-acf-field-clone.php:807
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
+
#: acf.php:402
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
+
#: acf.php:404
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
+
#: acf.php:405
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
+
#: acf.php:406 includes/admin/views/field-group-fields.php:41
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Neues Feld"
|
109 |
|
110 |
# @ acf
|
111 |
+
#: acf.php:407
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
+
#: acf.php:408
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
+
#: acf.php:409
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
+
#: acf.php:410
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
+
#: acf.php:449 includes/admin/admin-field-group.php:390
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inaktiv"
|
134 |
|
135 |
+
#: acf.php:454
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
182 |
msgstr "Position"
|
183 |
|
184 |
#: includes/admin/admin-field-group.php:184
|
185 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:295
|
186 |
msgid "Settings"
|
187 |
msgstr "Einstellungen"
|
188 |
|
218 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
219 |
#: includes/admin/views/field-group-locations.php:29
|
220 |
#: includes/admin/views/html-location-group.php:3
|
221 |
+
#: includes/api/api-helpers.php:3981
|
222 |
msgid "or"
|
223 |
msgstr "oder"
|
224 |
|
400 |
msgstr "Danke für das Vertrauen in <a href=\"%s\">ACF</a>."
|
401 |
|
402 |
# @ acf
|
403 |
+
#: includes/admin/admin-field-groups.php:667
|
404 |
msgid "Duplicate this item"
|
405 |
msgstr "Dieses Element duplizieren"
|
406 |
|
407 |
# @ acf
|
408 |
+
#: includes/admin/admin-field-groups.php:667
|
409 |
+
#: includes/admin/admin-field-groups.php:683
|
410 |
#: includes/admin/views/field-group-field.php:49
|
411 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
412 |
msgid "Duplicate"
|
413 |
msgstr "Duplizieren"
|
414 |
|
415 |
# @ acf
|
416 |
+
#: includes/admin/admin-field-groups.php:700
|
417 |
#: includes/fields/class-acf-field-google-map.php:112
|
418 |
#: includes/fields/class-acf-field-relationship.php:656
|
419 |
msgid "Search"
|
420 |
msgstr "Suchen"
|
421 |
|
422 |
# @ acf
|
423 |
+
#: includes/admin/admin-field-groups.php:759
|
424 |
#, php-format
|
425 |
msgid "Select %s"
|
426 |
msgstr "%s auswählen"
|
427 |
|
428 |
# @ acf
|
429 |
+
#: includes/admin/admin-field-groups.php:767
|
430 |
msgid "Synchronise field group"
|
431 |
msgstr "Synchronisiere Feld-Gruppe"
|
432 |
|
433 |
# @ acf
|
434 |
+
#: includes/admin/admin-field-groups.php:767
|
435 |
+
#: includes/admin/admin-field-groups.php:797
|
436 |
msgid "Sync"
|
437 |
msgstr "Synchronisieren"
|
438 |
|
439 |
+
#: includes/admin/admin-field-groups.php:779
|
440 |
msgid "Apply"
|
441 |
msgstr "Anwenden"
|
442 |
|
443 |
# @ acf
|
444 |
+
#: includes/admin/admin-field-groups.php:797
|
445 |
msgid "Bulk Actions"
|
446 |
msgstr "Massenverarbeitung"
|
447 |
|
448 |
+
#: includes/admin/admin-tools.php:116
|
449 |
+
#: includes/admin/views/html-admin-tools.php:21
|
450 |
+
msgid "Tools"
|
451 |
+
msgstr "Werkzeuge"
|
452 |
+
|
453 |
# @ acf
|
454 |
#: includes/admin/admin.php:113
|
455 |
#: includes/admin/views/field-group-options.php:118
|
497 |
msgid "What's New"
|
498 |
msgstr "Was gibt es Neues"
|
499 |
|
500 |
+
# @ acf
|
501 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:33
|
502 |
+
msgid "Export Field Groups"
|
503 |
+
msgstr "Feld-Gruppen exportieren"
|
504 |
+
|
505 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:38
|
506 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:342
|
507 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:371
|
508 |
+
msgid "Generate PHP"
|
509 |
+
msgstr "PHP erstellen"
|
510 |
|
511 |
# @ acf
|
512 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:97
|
513 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:135
|
514 |
msgid "No field groups selected"
|
515 |
msgstr "Keine Feld-Gruppe ausgewählt"
|
516 |
|
517 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:174
|
518 |
+
#, php-format
|
519 |
+
msgid "Exported 1 field group."
|
520 |
+
msgid_plural "Exported %s field groups."
|
521 |
+
msgstr[0] "Eine Feld-Gruppe wurde exportiert."
|
522 |
+
msgstr[1] "%s Feld-Gruppen wurden exportiert."
|
523 |
+
|
524 |
+
# @ acf
|
525 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:241
|
526 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:269
|
527 |
+
msgid "Select Field Groups"
|
528 |
+
msgstr "Felder-Gruppen auswählen"
|
529 |
+
|
530 |
+
# @ acf
|
531 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:336
|
532 |
+
msgid ""
|
533 |
+
"Select the field groups you would like to export and then select your export "
|
534 |
+
"method. Use the download button to export to a .json file which you can then "
|
535 |
+
"import to another ACF installation. Use the generate button to export to PHP "
|
536 |
+
"code which you can place in your theme."
|
537 |
+
msgstr ""
|
538 |
+
"Entscheide zuerst welche Felder-Gruppen Du exportieren möchtest und wähle im "
|
539 |
+
"Anschluss das Format in das exportiert werden soll. Klicke den \"JSON-Datei "
|
540 |
+
"exportieren\"-Button, um eine JSON-Datei zu erhalten, welche Du dann in "
|
541 |
+
"einer anderen ACF-Installation importieren kannst. Wähle den \"Erstelle PHP-"
|
542 |
+
"Code\"-Button, um PHP-Code zu erhalten, den Du im Anschluss in der functions."
|
543 |
+
"php Deines Themes einfügen kannst."
|
544 |
+
|
545 |
+
# @ acf
|
546 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:341
|
547 |
+
msgid "Export File"
|
548 |
+
msgstr "Datei exportieren"
|
549 |
+
|
550 |
+
# @ acf
|
551 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:414
|
552 |
+
msgid ""
|
553 |
+
"The following code can be used to register a local version of the selected "
|
554 |
+
"field group(s). A local field group can provide many benefits such as faster "
|
555 |
+
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
556 |
+
"the following code to your theme's functions.php file or include it within "
|
557 |
+
"an external file."
|
558 |
+
msgstr ""
|
559 |
+
"Der nachfolgende Code kann dazu verwendet werden eine lokale Version der "
|
560 |
+
"ausgewählten Feld-Gruppe(n) zu registrieren. Eine lokale Feld-Gruppe bietet "
|
561 |
+
"viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische "
|
562 |
+
"Felder und Einstellungen. Kopiere einfach folgenden Code und füge ihn in die "
|
563 |
+
"functions.php oder eine externe Datei in Deinem Theme ein."
|
564 |
+
|
565 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:446
|
566 |
+
msgid "Copy to clipboard"
|
567 |
+
msgstr "In die Zwischenablage kopieren"
|
568 |
+
|
569 |
+
# @ acf
|
570 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:26
|
571 |
+
msgid "Import Field Groups"
|
572 |
+
msgstr "Feld-Gruppen importieren"
|
573 |
+
|
574 |
+
# @ acf
|
575 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:61
|
576 |
+
msgid ""
|
577 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
578 |
+
"you click the import button below, ACF will import the field groups."
|
579 |
+
msgstr ""
|
580 |
+
"Wähle die Advanced Custom Fields JSON-Datei aus, welche Du importieren "
|
581 |
+
"möchtest. Nach dem Klicken des Importieren-Buttons wird ACF die Felder-"
|
582 |
+
"Gruppen hinzufügen."
|
583 |
+
|
584 |
+
# @ acf
|
585 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:66
|
586 |
+
#: includes/fields/class-acf-field-file.php:35
|
587 |
+
msgid "Select File"
|
588 |
+
msgstr "Datei auswählen"
|
589 |
+
|
590 |
+
# @ acf
|
591 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:76
|
592 |
+
msgid "Import File"
|
593 |
+
msgstr "Datei importieren"
|
594 |
+
|
595 |
# @ acf
|
596 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:100
|
597 |
+
#: includes/fields/class-acf-field-file.php:159
|
598 |
msgid "No file selected"
|
599 |
msgstr "Keine Datei ausgewählt"
|
600 |
|
601 |
# @ acf
|
602 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:113
|
603 |
msgid "Error uploading file. Please try again"
|
604 |
msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen"
|
605 |
|
606 |
# @ acf
|
607 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:122
|
608 |
msgid "Incorrect file type"
|
609 |
msgstr "Falscher Dateityp"
|
610 |
|
611 |
# @ acf
|
612 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:139
|
613 |
msgid "Import file empty"
|
614 |
msgstr "Die importierte Datei ist leer"
|
615 |
|
616 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:247
|
617 |
#, php-format
|
618 |
msgid "Imported 1 field group"
|
619 |
msgid_plural "Imported %s field groups"
|
669 |
|
670 |
# @ acf
|
671 |
#: includes/admin/views/field-group-field.php:48
|
672 |
+
#: includes/fields/class-acf-field-file.php:141
|
673 |
#: includes/fields/class-acf-field-image.php:122
|
674 |
#: includes/fields/class-acf-field-link.php:139
|
675 |
#: pro/fields/class-acf-field-gallery.php:342
|
698 |
|
699 |
# @ acf
|
700 |
#: includes/admin/views/field-group-field.php:51
|
701 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
702 |
msgid "Delete"
|
703 |
msgstr "Löschen"
|
704 |
|
713 |
msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt"
|
714 |
|
715 |
# @ acf
|
716 |
+
#: includes/admin/views/field-group-field.php:77
|
717 |
msgid "Field Name"
|
718 |
msgstr "Feld-Name"
|
719 |
|
720 |
# @ acf
|
721 |
+
#: includes/admin/views/field-group-field.php:78
|
722 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
723 |
msgstr ""
|
724 |
"Nur ein Wort ohne Leerzeichen; es sind nur Unterstriche und Bindestriche als "
|
725 |
"Sonderzeichen erlaubt"
|
726 |
|
727 |
# @ acf
|
728 |
+
#: includes/admin/views/field-group-field.php:87
|
729 |
msgid "Field Type"
|
730 |
msgstr "Feld-Typ"
|
731 |
|
732 |
# @ acf
|
733 |
+
#: includes/admin/views/field-group-field.php:98
|
|
|
734 |
msgid "Instructions"
|
735 |
msgstr "Anweisungen"
|
736 |
|
737 |
# @ acf
|
738 |
+
#: includes/admin/views/field-group-field.php:99
|
739 |
msgid "Instructions for authors. Shown when submitting data"
|
740 |
msgstr "Anweisungen für Autoren werden in der Bearbeitungs-Ansicht angezeigt"
|
741 |
|
742 |
# @ acf
|
743 |
+
#: includes/admin/views/field-group-field.php:108
|
744 |
msgid "Required?"
|
745 |
msgstr "Erforderlich?"
|
746 |
|
747 |
# @ acf
|
748 |
+
#: includes/admin/views/field-group-field.php:131
|
749 |
msgid "Wrapper Attributes"
|
750 |
msgstr "Wrapper-Attribute"
|
751 |
|
752 |
# @ acf
|
753 |
+
#: includes/admin/views/field-group-field.php:137
|
754 |
msgid "width"
|
755 |
msgstr "Breite"
|
756 |
|
757 |
# @ acf
|
758 |
+
#: includes/admin/views/field-group-field.php:152
|
759 |
msgid "class"
|
760 |
msgstr "Klasse"
|
761 |
|
762 |
# @ acf
|
763 |
+
#: includes/admin/views/field-group-field.php:165
|
764 |
msgid "id"
|
765 |
msgstr "ID"
|
766 |
|
767 |
# @ acf
|
768 |
+
#: includes/admin/views/field-group-field.php:177
|
769 |
msgid "Close Field"
|
770 |
msgstr "Feld schließen"
|
771 |
|
776 |
|
777 |
# @ acf
|
778 |
#: includes/admin/views/field-group-fields.php:5
|
779 |
+
#: includes/fields/class-acf-field-button-group.php:198
|
780 |
#: includes/fields/class-acf-field-checkbox.php:415
|
781 |
#: includes/fields/class-acf-field-radio.php:306
|
782 |
#: includes/fields/class-acf-field-select.php:432
|
783 |
+
#: pro/fields/class-acf-field-flexible-content.php:584
|
784 |
msgid "Label"
|
785 |
msgstr "Name"
|
786 |
|
787 |
# @ acf
|
788 |
#: includes/admin/views/field-group-fields.php:6
|
789 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
790 |
+
#: pro/fields/class-acf-field-flexible-content.php:597
|
791 |
msgid "Name"
|
792 |
msgstr "Feld-Name"
|
793 |
|
870 |
|
871 |
# @ acf
|
872 |
#: includes/admin/views/field-group-options.php:62
|
873 |
+
#: includes/fields/class-acf-field-tab.php:106
|
874 |
msgid "Top aligned"
|
875 |
msgstr "Über dem Feld"
|
876 |
|
877 |
# @ acf
|
878 |
#: includes/admin/views/field-group-options.php:63
|
879 |
+
#: includes/fields/class-acf-field-tab.php:107
|
880 |
+
msgid "Left aligned"
|
881 |
msgstr "Links neben dem Feld"
|
882 |
|
883 |
# @ acf
|
1487 |
msgstr "Wir glauben Du wirst die Änderungen in %s lieben."
|
1488 |
|
1489 |
# @ acf
|
1490 |
+
#: includes/api/api-helpers.php:880
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1491 |
msgid "Thumbnail"
|
1492 |
msgstr "Miniaturbild"
|
1493 |
|
1494 |
# @ acf
|
1495 |
+
#: includes/api/api-helpers.php:881
|
1496 |
msgid "Medium"
|
1497 |
msgstr "Mittel"
|
1498 |
|
1499 |
# @ acf
|
1500 |
+
#: includes/api/api-helpers.php:882
|
1501 |
msgid "Large"
|
1502 |
msgstr "Groß"
|
1503 |
|
1504 |
# @ acf
|
1505 |
+
#: includes/api/api-helpers.php:931
|
1506 |
msgid "Full Size"
|
1507 |
msgstr "Volle Größe"
|
1508 |
|
1509 |
# @ acf
|
1510 |
+
#: includes/api/api-helpers.php:1272 includes/api/api-helpers.php:1845
|
1511 |
+
#: pro/fields/class-acf-field-clone.php:992
|
1512 |
msgid "(no title)"
|
1513 |
msgstr "(ohne Titel)"
|
1514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1515 |
# @ acf
|
1516 |
+
#: includes/api/api-helpers.php:3902
|
1517 |
#, php-format
|
1518 |
msgid "Image width must be at least %dpx."
|
1519 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1520 |
|
1521 |
# @ acf
|
1522 |
+
#: includes/api/api-helpers.php:3907
|
1523 |
#, php-format
|
1524 |
msgid "Image width must not exceed %dpx."
|
1525 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1526 |
|
1527 |
# @ acf
|
1528 |
+
#: includes/api/api-helpers.php:3923
|
1529 |
#, php-format
|
1530 |
msgid "Image height must be at least %dpx."
|
1531 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1532 |
|
1533 |
# @ acf
|
1534 |
+
#: includes/api/api-helpers.php:3928
|
1535 |
#, php-format
|
1536 |
msgid "Image height must not exceed %dpx."
|
1537 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1538 |
|
1539 |
# @ acf
|
1540 |
+
#: includes/api/api-helpers.php:3946
|
1541 |
#, php-format
|
1542 |
msgid "File size must be at least %s."
|
1543 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1544 |
|
1545 |
# @ acf
|
1546 |
+
#: includes/api/api-helpers.php:3951
|
1547 |
#, php-format
|
1548 |
msgid "File size must must not exceed %s."
|
1549 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1550 |
|
1551 |
# @ acf
|
1552 |
+
#: includes/api/api-helpers.php:3985
|
1553 |
#, php-format
|
1554 |
msgid "File type must be %s."
|
1555 |
msgstr "Der Dateityp muss %s sein."
|
1580 |
msgstr "jQuery"
|
1581 |
|
1582 |
# @ acf
|
1583 |
+
#: includes/fields.php:149
|
1584 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1585 |
+
#: includes/fields/class-acf-field-checkbox.php:384
|
1586 |
+
#: includes/fields/class-acf-field-group.php:474
|
1587 |
#: includes/fields/class-acf-field-radio.php:285
|
1588 |
+
#: pro/fields/class-acf-field-clone.php:839
|
1589 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
1590 |
+
#: pro/fields/class-acf-field-flexible-content.php:603
|
1591 |
#: pro/fields/class-acf-field-repeater.php:450
|
1592 |
msgid "Layout"
|
1593 |
msgstr "Layout"
|
1601 |
msgid "Unknown"
|
1602 |
msgstr "Unbekannte Feld-Gruppe"
|
1603 |
|
1604 |
+
#: includes/fields/class-acf-field-accordion.php:24
|
1605 |
+
msgid "Accordion"
|
1606 |
+
msgstr "Akkordeon"
|
|
|
|
|
1607 |
|
1608 |
+
#: includes/fields/class-acf-field-accordion.php:99
|
1609 |
+
msgid "Open"
|
1610 |
+
msgstr "Offen"
|
|
|
1611 |
|
1612 |
+
#: includes/fields/class-acf-field-accordion.php:100
|
1613 |
+
msgid "Display this accordion as open on page load."
|
1614 |
+
msgstr "Dieses Akkordeon beim Laden der Seite geöffnet anzeigen."
|
1615 |
+
|
1616 |
+
#: includes/fields/class-acf-field-accordion.php:109
|
1617 |
+
msgid "Multi-expand"
|
1618 |
+
msgstr "Gleichzeitig geöffnet"
|
1619 |
+
|
1620 |
+
#: includes/fields/class-acf-field-accordion.php:110
|
1621 |
+
msgid "Allow this accordion to open without closing others."
|
1622 |
+
msgstr "Erlaubt dieses Akkordeon zu öffnen ohne andere zu schließen."
|
1623 |
+
|
1624 |
+
#: includes/fields/class-acf-field-accordion.php:119
|
1625 |
+
#: includes/fields/class-acf-field-tab.php:114
|
1626 |
+
msgid "Endpoint"
|
1627 |
+
msgstr "Abschluss"
|
1628 |
+
|
1629 |
+
#: includes/fields/class-acf-field-accordion.php:120
|
1630 |
+
msgid ""
|
1631 |
+
"Define an endpoint for the previous accordion to stop. This accordion will "
|
1632 |
+
"not be visible."
|
1633 |
+
msgstr ""
|
1634 |
+
"Schließt das vorangegangene Akkordeon-Feld ab. Das abschließende Feld wird "
|
1635 |
+
"nicht sichtbar sein."
|
1636 |
+
|
1637 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
1638 |
+
msgid "Button Group"
|
1639 |
+
msgstr "Button-Gruppe"
|
1640 |
|
1641 |
# @ acf
|
1642 |
+
#: includes/fields/class-acf-field-button-group.php:149
|
1643 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1644 |
#: includes/fields/class-acf-field-radio.php:235
|
1645 |
#: includes/fields/class-acf-field-select.php:368
|
1647 |
msgstr "Auswahlmöglichkeiten"
|
1648 |
|
1649 |
# @ acf
|
1650 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1651 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1652 |
#: includes/fields/class-acf-field-radio.php:236
|
1653 |
#: includes/fields/class-acf-field-select.php:369
|
1655 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1656 |
|
1657 |
# @ acf
|
1658 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1659 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1660 |
#: includes/fields/class-acf-field-radio.php:236
|
1661 |
#: includes/fields/class-acf-field-select.php:369
|
1665 |
"Beschriftung definieren:"
|
1666 |
|
1667 |
# @ acf
|
1668 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1669 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1670 |
#: includes/fields/class-acf-field-radio.php:236
|
1671 |
#: includes/fields/class-acf-field-select.php:369
|
1672 |
msgid "red : Red"
|
1673 |
msgstr "rot : Rot"
|
1674 |
|
1675 |
+
# @ acf
|
1676 |
+
#: includes/fields/class-acf-field-button-group.php:158
|
1677 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
1678 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
1679 |
+
#: includes/fields/class-acf-field-radio.php:244
|
1680 |
+
#: includes/fields/class-acf-field-select.php:386
|
1681 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
1682 |
+
#: includes/fields/class-acf-field-user.php:408
|
1683 |
+
msgid "Allow Null?"
|
1684 |
+
msgstr "NULL-Werte zulassen?"
|
|
|
|
|
|
|
|
|
|
|
|
|
1685 |
|
1686 |
# @ acf
|
1687 |
+
#: includes/fields/class-acf-field-button-group.php:168
|
1688 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1689 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1690 |
+
#: includes/fields/class-acf-field-email.php:118
|
1691 |
+
#: includes/fields/class-acf-field-number.php:127
|
1692 |
#: includes/fields/class-acf-field-radio.php:276
|
1693 |
+
#: includes/fields/class-acf-field-range.php:148
|
1694 |
#: includes/fields/class-acf-field-select.php:377
|
1695 |
+
#: includes/fields/class-acf-field-text.php:119
|
1696 |
+
#: includes/fields/class-acf-field-textarea.php:102
|
1697 |
#: includes/fields/class-acf-field-true_false.php:135
|
1698 |
+
#: includes/fields/class-acf-field-url.php:100
|
1699 |
+
#: includes/fields/class-acf-field-wysiwyg.php:410
|
1700 |
msgid "Default Value"
|
1701 |
msgstr "Standardwert"
|
1702 |
|
1703 |
# @ acf
|
1704 |
+
#: includes/fields/class-acf-field-button-group.php:169
|
1705 |
+
#: includes/fields/class-acf-field-email.php:119
|
1706 |
+
#: includes/fields/class-acf-field-number.php:128
|
1707 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1708 |
+
#: includes/fields/class-acf-field-range.php:149
|
1709 |
+
#: includes/fields/class-acf-field-text.php:120
|
1710 |
+
#: includes/fields/class-acf-field-textarea.php:103
|
1711 |
+
#: includes/fields/class-acf-field-url.php:101
|
1712 |
+
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1713 |
+
msgid "Appears when creating a new post"
|
1714 |
+
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1715 |
|
1716 |
# @ acf
|
1717 |
+
#: includes/fields/class-acf-field-button-group.php:183
|
1718 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1719 |
#: includes/fields/class-acf-field-radio.php:292
|
1720 |
msgid "Horizontal"
|
1721 |
msgstr "Horizontal"
|
1722 |
|
1723 |
+
# @ acf
|
1724 |
+
#: includes/fields/class-acf-field-button-group.php:184
|
1725 |
+
#: includes/fields/class-acf-field-checkbox.php:390
|
1726 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1727 |
+
msgid "Vertical"
|
1728 |
+
msgstr "Vertikal"
|
|
|
|
|
1729 |
|
1730 |
# @ acf
|
1731 |
+
#: includes/fields/class-acf-field-button-group.php:191
|
1732 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1733 |
+
#: includes/fields/class-acf-field-file.php:204
|
1734 |
#: includes/fields/class-acf-field-image.php:188
|
1735 |
#: includes/fields/class-acf-field-link.php:166
|
1736 |
#: includes/fields/class-acf-field-radio.php:299
|
1739 |
msgstr "Rückgabewert"
|
1740 |
|
1741 |
# @ acf
|
1742 |
+
#: includes/fields/class-acf-field-button-group.php:192
|
1743 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1744 |
+
#: includes/fields/class-acf-field-file.php:205
|
1745 |
#: includes/fields/class-acf-field-image.php:189
|
1746 |
#: includes/fields/class-acf-field-link.php:167
|
1747 |
#: includes/fields/class-acf-field-radio.php:300
|
1748 |
msgid "Specify the returned value on front end"
|
1749 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1750 |
|
1751 |
+
#: includes/fields/class-acf-field-button-group.php:197
|
1752 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1753 |
#: includes/fields/class-acf-field-radio.php:305
|
1754 |
#: includes/fields/class-acf-field-select.php:431
|
1755 |
msgid "Value"
|
1756 |
msgstr "Wert"
|
1757 |
|
1758 |
+
#: includes/fields/class-acf-field-button-group.php:199
|
1759 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1760 |
#: includes/fields/class-acf-field-radio.php:307
|
1761 |
#: includes/fields/class-acf-field-select.php:433
|
1762 |
msgid "Both (Array)"
|
1763 |
msgstr "Beide (Array)"
|
1764 |
|
1765 |
+
# @ acf
|
1766 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1767 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1768 |
+
msgid "Checkbox"
|
1769 |
+
msgstr "Checkbox"
|
1770 |
+
|
1771 |
+
# @ acf
|
1772 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1773 |
+
msgid "Toggle All"
|
1774 |
+
msgstr "Alle auswählen"
|
1775 |
+
|
1776 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1777 |
+
msgid "Add new choice"
|
1778 |
+
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1779 |
+
|
1780 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1781 |
+
msgid "Allow Custom"
|
1782 |
+
msgstr "Erlaube Benutzerdefinierte Werte"
|
1783 |
+
|
1784 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
1785 |
+
msgid "Allow 'custom' values to be added"
|
1786 |
+
msgstr "Erlaube das Hinzufügen benutzerdefinierter Werte"
|
1787 |
+
|
1788 |
+
#: includes/fields/class-acf-field-checkbox.php:364
|
1789 |
+
msgid "Save Custom"
|
1790 |
+
msgstr "Benutzerdefinierte Werte abspeichern"
|
1791 |
+
|
1792 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1793 |
+
msgid "Save 'custom' values to the field's choices"
|
1794 |
+
msgstr ""
|
1795 |
+
"Speichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1796 |
+
|
1797 |
+
# @ acf
|
1798 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1799 |
+
#: includes/fields/class-acf-field-select.php:378
|
1800 |
+
msgid "Enter each default value on a new line"
|
1801 |
+
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
1802 |
+
|
1803 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1804 |
+
msgid "Toggle"
|
1805 |
+
msgstr "Auswählen"
|
1806 |
+
|
1807 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
1808 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
1809 |
+
msgstr ""
|
1810 |
+
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1811 |
+
|
1812 |
# @ acf
|
1813 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1814 |
msgid "Color Picker"
|
1884 |
#: includes/fields/class-acf-field-time_picker.php:117
|
1885 |
#: includes/fields/class-acf-field-time_picker.php:132
|
1886 |
msgid "Custom:"
|
1887 |
+
msgstr "Individuelles Format:"
|
1888 |
|
1889 |
#: includes/fields/class-acf-field-date_picker.php:226
|
1890 |
msgid "Save Format"
|
2002 |
msgstr "E-Mail"
|
2003 |
|
2004 |
# @ acf
|
2005 |
+
#: includes/fields/class-acf-field-email.php:127
|
2006 |
+
#: includes/fields/class-acf-field-number.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007 |
#: includes/fields/class-acf-field-password.php:71
|
2008 |
+
#: includes/fields/class-acf-field-text.php:128
|
2009 |
+
#: includes/fields/class-acf-field-textarea.php:111
|
2010 |
+
#: includes/fields/class-acf-field-url.php:109
|
2011 |
msgid "Placeholder Text"
|
2012 |
msgstr "Platzhalter-Text"
|
2013 |
|
2014 |
# @ acf
|
2015 |
+
#: includes/fields/class-acf-field-email.php:128
|
2016 |
+
#: includes/fields/class-acf-field-number.php:137
|
2017 |
#: includes/fields/class-acf-field-password.php:72
|
2018 |
+
#: includes/fields/class-acf-field-text.php:129
|
2019 |
+
#: includes/fields/class-acf-field-textarea.php:112
|
2020 |
+
#: includes/fields/class-acf-field-url.php:110
|
2021 |
msgid "Appears within the input"
|
2022 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
2023 |
|
2024 |
# @ acf
|
2025 |
+
#: includes/fields/class-acf-field-email.php:136
|
2026 |
+
#: includes/fields/class-acf-field-number.php:145
|
2027 |
#: includes/fields/class-acf-field-password.php:80
|
2028 |
+
#: includes/fields/class-acf-field-range.php:187
|
2029 |
+
#: includes/fields/class-acf-field-text.php:137
|
2030 |
msgid "Prepend"
|
2031 |
msgstr "Voranstellen"
|
2032 |
|
2033 |
# @ acf
|
2034 |
+
#: includes/fields/class-acf-field-email.php:137
|
2035 |
+
#: includes/fields/class-acf-field-number.php:146
|
2036 |
#: includes/fields/class-acf-field-password.php:81
|
2037 |
+
#: includes/fields/class-acf-field-range.php:188
|
2038 |
+
#: includes/fields/class-acf-field-text.php:138
|
2039 |
msgid "Appears before the input"
|
2040 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
2041 |
|
2042 |
# @ acf
|
2043 |
+
#: includes/fields/class-acf-field-email.php:145
|
2044 |
+
#: includes/fields/class-acf-field-number.php:154
|
2045 |
#: includes/fields/class-acf-field-password.php:89
|
2046 |
+
#: includes/fields/class-acf-field-range.php:196
|
2047 |
+
#: includes/fields/class-acf-field-text.php:146
|
2048 |
msgid "Append"
|
2049 |
msgstr "Anhängen"
|
2050 |
|
2051 |
# @ acf
|
2052 |
+
#: includes/fields/class-acf-field-email.php:146
|
2053 |
+
#: includes/fields/class-acf-field-number.php:155
|
2054 |
#: includes/fields/class-acf-field-password.php:90
|
2055 |
+
#: includes/fields/class-acf-field-range.php:197
|
2056 |
+
#: includes/fields/class-acf-field-text.php:147
|
2057 |
msgid "Appears after the input"
|
2058 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
2059 |
|
2079 |
msgid "Uploaded to this post"
|
2080 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2081 |
|
2082 |
+
#: includes/fields/class-acf-field-file.php:130
|
2083 |
msgid "File name"
|
2084 |
msgstr "Dateiname"
|
2085 |
|
2086 |
# @ acf
|
2087 |
+
#: includes/fields/class-acf-field-file.php:134
|
2088 |
+
#: includes/fields/class-acf-field-file.php:237
|
2089 |
+
#: includes/fields/class-acf-field-file.php:248
|
2090 |
#: includes/fields/class-acf-field-image.php:248
|
2091 |
#: includes/fields/class-acf-field-image.php:277
|
2092 |
#: pro/fields/class-acf-field-gallery.php:690
|
2095 |
msgstr "Dateigröße"
|
2096 |
|
2097 |
# @ acf
|
2098 |
+
#: includes/fields/class-acf-field-file.php:143
|
2099 |
#: includes/fields/class-acf-field-image.php:124
|
2100 |
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2101 |
#: pro/fields/class-acf-field-gallery.php:343
|
2104 |
msgstr "Entfernen"
|
2105 |
|
2106 |
# @ acf
|
2107 |
+
#: includes/fields/class-acf-field-file.php:159
|
2108 |
msgid "Add File"
|
2109 |
msgstr "Datei hinzufügen"
|
2110 |
|
2111 |
# @ acf
|
2112 |
+
#: includes/fields/class-acf-field-file.php:210
|
2113 |
msgid "File Array"
|
2114 |
msgstr "Datei-Array"
|
2115 |
|
2116 |
# @ acf
|
2117 |
+
#: includes/fields/class-acf-field-file.php:211
|
2118 |
msgid "File URL"
|
2119 |
msgstr "Datei-URL"
|
2120 |
|
2121 |
# @ acf
|
2122 |
+
#: includes/fields/class-acf-field-file.php:212
|
2123 |
msgid "File ID"
|
2124 |
msgstr "Datei-ID"
|
2125 |
|
2126 |
# @ acf
|
2127 |
+
#: includes/fields/class-acf-field-file.php:219
|
2128 |
#: includes/fields/class-acf-field-image.php:213
|
2129 |
#: pro/fields/class-acf-field-gallery.php:655
|
2130 |
msgid "Library"
|
2131 |
msgstr "Medienübersicht"
|
2132 |
|
2133 |
# @ acf
|
2134 |
+
#: includes/fields/class-acf-field-file.php:220
|
2135 |
#: includes/fields/class-acf-field-image.php:214
|
2136 |
#: pro/fields/class-acf-field-gallery.php:656
|
2137 |
msgid "Limit the media library choice"
|
2138 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2139 |
|
2140 |
# @ acf
|
2141 |
+
#: includes/fields/class-acf-field-file.php:225
|
2142 |
#: includes/fields/class-acf-field-image.php:219
|
2143 |
#: includes/locations/class-acf-location-attachment.php:101
|
2144 |
#: includes/locations/class-acf-location-comment.php:79
|
2152 |
msgstr "Alle"
|
2153 |
|
2154 |
# @ acf
|
2155 |
+
#: includes/fields/class-acf-field-file.php:226
|
2156 |
#: includes/fields/class-acf-field-image.php:220
|
2157 |
#: pro/fields/class-acf-field-gallery.php:662
|
2158 |
msgid "Uploaded to post"
|
2159 |
msgstr "Für den Beitrag hochgeladen"
|
2160 |
|
2161 |
# @ acf
|
2162 |
+
#: includes/fields/class-acf-field-file.php:233
|
2163 |
#: includes/fields/class-acf-field-image.php:227
|
2164 |
#: pro/fields/class-acf-field-gallery.php:669
|
2165 |
msgid "Minimum"
|
2166 |
msgstr "Minimum"
|
2167 |
|
2168 |
# @ acf
|
2169 |
+
#: includes/fields/class-acf-field-file.php:234
|
2170 |
+
#: includes/fields/class-acf-field-file.php:245
|
2171 |
msgid "Restrict which files can be uploaded"
|
2172 |
msgstr ""
|
2173 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2174 |
"erfüllen"
|
2175 |
|
2176 |
# @ acf
|
2177 |
+
#: includes/fields/class-acf-field-file.php:244
|
2178 |
#: includes/fields/class-acf-field-image.php:256
|
2179 |
#: pro/fields/class-acf-field-gallery.php:698
|
2180 |
msgid "Maximum"
|
2181 |
msgstr "Maximum"
|
2182 |
|
2183 |
# @ acf
|
2184 |
+
#: includes/fields/class-acf-field-file.php:255
|
2185 |
#: includes/fields/class-acf-field-image.php:285
|
2186 |
#: pro/fields/class-acf-field-gallery.php:727
|
2187 |
msgid "Allowed file types"
|
2188 |
msgstr "Erlaubte Datei-Formate"
|
2189 |
|
2190 |
# @ acf
|
2191 |
+
#: includes/fields/class-acf-field-file.php:256
|
2192 |
#: includes/fields/class-acf-field-image.php:286
|
2193 |
#: pro/fields/class-acf-field-gallery.php:728
|
2194 |
msgid "Comma separated list. Leave blank for all types"
|
2271 |
"Feldes an)"
|
2272 |
|
2273 |
# @ acf
|
2274 |
+
#: includes/fields/class-acf-field-group.php:459
|
2275 |
#: pro/fields/class-acf-field-repeater.php:389
|
2276 |
msgid "Sub Fields"
|
2277 |
msgstr "Wiederholungsfelder"
|
2278 |
|
2279 |
+
#: includes/fields/class-acf-field-group.php:475
|
2280 |
+
#: pro/fields/class-acf-field-clone.php:840
|
2281 |
msgid "Specify the style used to render the selected fields"
|
2282 |
msgstr ""
|
2283 |
"Gib den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2284 |
|
2285 |
# @ acf
|
2286 |
+
#: includes/fields/class-acf-field-group.php:480
|
2287 |
+
#: pro/fields/class-acf-field-clone.php:845
|
2288 |
+
#: pro/fields/class-acf-field-flexible-content.php:614
|
2289 |
#: pro/fields/class-acf-field-repeater.php:458
|
2290 |
msgid "Block"
|
2291 |
msgstr "Block"
|
2292 |
|
2293 |
# @ acf
|
2294 |
+
#: includes/fields/class-acf-field-group.php:481
|
2295 |
+
#: pro/fields/class-acf-field-clone.php:846
|
2296 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
2297 |
#: pro/fields/class-acf-field-repeater.php:457
|
2298 |
msgid "Table"
|
2299 |
msgstr "Tabelle"
|
2300 |
|
2301 |
# @ acf
|
2302 |
+
#: includes/fields/class-acf-field-group.php:482
|
2303 |
+
#: pro/fields/class-acf-field-clone.php:847
|
2304 |
+
#: pro/fields/class-acf-field-flexible-content.php:615
|
2305 |
#: pro/fields/class-acf-field-repeater.php:459
|
2306 |
msgid "Row"
|
2307 |
msgstr "Reihe"
|
2390 |
# @ acf
|
2391 |
#: includes/fields/class-acf-field-link.php:25
|
2392 |
msgid "Link"
|
2393 |
+
msgstr "Link"
|
2394 |
|
2395 |
# @ acf
|
2396 |
#: includes/fields/class-acf-field-link.php:133
|
2397 |
msgid "Select Link"
|
2398 |
+
msgstr "Link auswählen"
|
2399 |
|
2400 |
#: includes/fields/class-acf-field-link.php:138
|
2401 |
msgid "Opens in a new window/tab"
|
2404 |
# @ acf
|
2405 |
#: includes/fields/class-acf-field-link.php:172
|
2406 |
msgid "Link Array"
|
2407 |
+
msgstr "Link-Array"
|
2408 |
|
2409 |
# @ acf
|
2410 |
#: includes/fields/class-acf-field-link.php:173
|
2411 |
msgid "Link URL"
|
2412 |
+
msgstr "Link-URL"
|
2413 |
|
2414 |
# @ acf
|
2415 |
#: includes/fields/class-acf-field-message.php:25
|
2420 |
|
2421 |
# @ acf
|
2422 |
#: includes/fields/class-acf-field-message.php:110
|
2423 |
+
#: includes/fields/class-acf-field-textarea.php:139
|
2424 |
msgid "New Lines"
|
2425 |
msgstr "Neue Zeilen"
|
2426 |
|
2427 |
# @ acf
|
2428 |
#: includes/fields/class-acf-field-message.php:111
|
2429 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
2430 |
msgid "Controls how new lines are rendered"
|
2431 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2432 |
|
2433 |
# @ acf
|
2434 |
#: includes/fields/class-acf-field-message.php:115
|
2435 |
+
#: includes/fields/class-acf-field-textarea.php:144
|
2436 |
msgid "Automatically add paragraphs"
|
2437 |
msgstr "Absätze automatisch hinzufügen"
|
2438 |
|
2439 |
# @ acf
|
2440 |
#: includes/fields/class-acf-field-message.php:116
|
2441 |
+
#: includes/fields/class-acf-field-textarea.php:145
|
2442 |
msgid "Automatically add <br>"
|
2443 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2444 |
|
2445 |
# @ acf
|
2446 |
#: includes/fields/class-acf-field-message.php:117
|
2447 |
+
#: includes/fields/class-acf-field-textarea.php:146
|
2448 |
msgid "No Formatting"
|
2449 |
msgstr "Keine Formatierung"
|
2450 |
|
2466 |
msgstr "Numerisch"
|
2467 |
|
2468 |
# @ acf
|
2469 |
+
#: includes/fields/class-acf-field-number.php:163
|
2470 |
+
#: includes/fields/class-acf-field-range.php:157
|
2471 |
msgid "Minimum Value"
|
2472 |
msgstr "Mindestwert"
|
2473 |
|
2474 |
# @ acf
|
2475 |
+
#: includes/fields/class-acf-field-number.php:172
|
2476 |
+
#: includes/fields/class-acf-field-range.php:167
|
2477 |
msgid "Maximum Value"
|
2478 |
msgstr "Maximalwert"
|
2479 |
|
2480 |
# @ acf
|
2481 |
+
#: includes/fields/class-acf-field-number.php:181
|
2482 |
+
#: includes/fields/class-acf-field-range.php:177
|
2483 |
msgid "Step Size"
|
2484 |
msgstr "Schrittweite"
|
2485 |
|
2486 |
# @ acf
|
2487 |
+
#: includes/fields/class-acf-field-number.php:219
|
2488 |
msgid "Value must be a number"
|
2489 |
msgstr "Wert muss eine Zahl sein"
|
2490 |
|
2491 |
# @ acf
|
2492 |
+
#: includes/fields/class-acf-field-number.php:237
|
2493 |
#, php-format
|
2494 |
msgid "Value must be equal to or higher than %d"
|
2495 |
msgstr "Wert muss größer oder gleich %d sein"
|
2496 |
|
2497 |
# @ acf
|
2498 |
+
#: includes/fields/class-acf-field-number.php:245
|
2499 |
#, php-format
|
2500 |
msgid "Value must be equal to or lower than %d"
|
2501 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2531 |
msgid "Archives"
|
2532 |
msgstr "Archive"
|
2533 |
|
2534 |
+
#: includes/fields/class-acf-field-page_link.php:269
|
2535 |
+
#: includes/fields/class-acf-field-post_object.php:268
|
2536 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
2537 |
+
msgid "Parent"
|
2538 |
+
msgstr "Übergeordnet"
|
2539 |
+
|
2540 |
# @ acf
|
2541 |
#: includes/fields/class-acf-field-page_link.php:485
|
2542 |
#: includes/fields/class-acf-field-post_object.php:384
|
2565 |
msgid "All taxonomies"
|
2566 |
msgstr "Alle Taxonomien"
|
2567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2568 |
#: includes/fields/class-acf-field-page_link.php:523
|
2569 |
msgid "Allow Archives URLs"
|
2570 |
msgstr "Archiv-URL's zulassen"
|
2800 |
# @ acf
|
2801 |
#: includes/fields/class-acf-field-select.php:416
|
2802 |
msgid "Use AJAX to lazy load choices?"
|
2803 |
+
msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu laden?"
|
2804 |
|
2805 |
#: includes/fields/class-acf-field-select.php:427
|
2806 |
msgid "Specify the value returned"
|
2816 |
msgstr "Tab"
|
2817 |
|
2818 |
# @ acf
|
2819 |
+
#: includes/fields/class-acf-field-tab.php:102
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2820 |
msgid "Placement"
|
2821 |
msgstr "Platzierung Tabs"
|
2822 |
|
2823 |
+
#: includes/fields/class-acf-field-tab.php:115
|
2824 |
+
msgid ""
|
2825 |
+
"Define an endpoint for the previous tabs to stop. This will start a new "
|
2826 |
+
"group of tabs."
|
2827 |
+
msgstr ""
|
2828 |
+
"Schließt die vorangegangene Gruppe an Tab-Feldern ab und beginnt eine neue "
|
2829 |
+
"Gruppe."
|
2830 |
|
2831 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
2832 |
#, php-format
|
2940 |
msgstr "Text einzeilig"
|
2941 |
|
2942 |
# @ acf
|
2943 |
+
#: includes/fields/class-acf-field-text.php:155
|
2944 |
+
#: includes/fields/class-acf-field-textarea.php:120
|
2945 |
msgid "Character Limit"
|
2946 |
msgstr "Zeichenbegrenzung"
|
2947 |
|
2948 |
# @ acf
|
2949 |
+
#: includes/fields/class-acf-field-text.php:156
|
2950 |
+
#: includes/fields/class-acf-field-textarea.php:121
|
2951 |
msgid "Leave blank for no limit"
|
2952 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2953 |
|
2957 |
msgstr "Text mehrzeilig"
|
2958 |
|
2959 |
# @ acf
|
2960 |
+
#: includes/fields/class-acf-field-textarea.php:129
|
2961 |
msgid "Rows"
|
2962 |
msgstr "Zeilenanzahl"
|
2963 |
|
2964 |
# @ acf
|
2965 |
+
#: includes/fields/class-acf-field-textarea.php:130
|
2966 |
msgid "Sets the textarea height"
|
2967 |
msgstr "Definiert die Höhe des Textfelds"
|
2968 |
|
3015 |
msgstr "URL"
|
3016 |
|
3017 |
# @ acf
|
3018 |
+
#: includes/fields/class-acf-field-url.php:151
|
3019 |
msgid "Value must be a valid URL"
|
3020 |
msgstr "Bitte eine gültige URL eingeben"
|
3021 |
|
3040 |
msgstr "WYSIWYG-Editor"
|
3041 |
|
3042 |
# @ acf
|
3043 |
+
#: includes/fields/class-acf-field-wysiwyg.php:359
|
3044 |
msgid "Visual"
|
3045 |
msgstr "Visuell"
|
3046 |
|
3047 |
# @ acf
|
3048 |
+
#: includes/fields/class-acf-field-wysiwyg.php:360
|
3049 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3050 |
msgid "Text"
|
3051 |
msgstr "Text"
|
3052 |
|
3053 |
+
#: includes/fields/class-acf-field-wysiwyg.php:366
|
3054 |
msgid "Click to initialize TinyMCE"
|
3055 |
msgstr "Klicke um TinyMCE zu initialisieren"
|
3056 |
|
3057 |
# @ acf
|
3058 |
+
#: includes/fields/class-acf-field-wysiwyg.php:419
|
3059 |
msgid "Tabs"
|
3060 |
msgstr "Tabs"
|
3061 |
|
3062 |
# @ acf
|
3063 |
+
#: includes/fields/class-acf-field-wysiwyg.php:424
|
3064 |
msgid "Visual & Text"
|
3065 |
msgstr "Visuell & Text"
|
3066 |
|
3067 |
# @ acf
|
3068 |
+
#: includes/fields/class-acf-field-wysiwyg.php:425
|
3069 |
msgid "Visual Only"
|
3070 |
msgstr "Nur Visuell"
|
3071 |
|
3072 |
# @ acf
|
3073 |
+
#: includes/fields/class-acf-field-wysiwyg.php:426
|
3074 |
msgid "Text Only"
|
3075 |
msgstr "Nur Text"
|
3076 |
|
3077 |
# @ acf
|
3078 |
+
#: includes/fields/class-acf-field-wysiwyg.php:433
|
3079 |
msgid "Toolbar"
|
3080 |
msgstr "Werkzeugleiste"
|
3081 |
|
3082 |
# @ acf
|
3083 |
+
#: includes/fields/class-acf-field-wysiwyg.php:443
|
3084 |
msgid "Show Media Upload Buttons?"
|
3085 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3086 |
|
3087 |
+
#: includes/fields/class-acf-field-wysiwyg.php:453
|
3088 |
msgid "Delay initialization?"
|
3089 |
msgstr "Initialisierung verzögern?"
|
3090 |
|
3091 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
3092 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3093 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3094 |
|
3113 |
msgid "Post updated"
|
3114 |
msgstr "Beitrag aktualisiert"
|
3115 |
|
3116 |
+
#: includes/forms/form-front.php:230
|
3117 |
msgid "Spam Detected"
|
3118 |
msgstr "Spam entdeckt"
|
3119 |
|
3156 |
# @ acf
|
3157 |
#: includes/input.php:266
|
3158 |
msgid "Are you sure?"
|
3159 |
+
msgstr "Wirklich entfernen?"
|
3160 |
|
3161 |
#: includes/input.php:270
|
3162 |
msgid "Cancel"
|
3468 |
msgid "Clone"
|
3469 |
msgstr "Klon"
|
3470 |
|
3471 |
+
#: pro/fields/class-acf-field-clone.php:808
|
3472 |
msgid "Select one or more fields you wish to clone"
|
3473 |
msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest"
|
3474 |
|
3475 |
# @ acf
|
3476 |
+
#: pro/fields/class-acf-field-clone.php:825
|
3477 |
msgid "Display"
|
3478 |
msgstr "Anzeige"
|
3479 |
|
3480 |
+
#: pro/fields/class-acf-field-clone.php:826
|
3481 |
msgid "Specify the style used to render the clone field"
|
3482 |
msgstr "Gib den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3483 |
|
3484 |
+
#: pro/fields/class-acf-field-clone.php:831
|
3485 |
msgid "Group (displays selected fields in a group within this field)"
|
3486 |
msgstr ""
|
3487 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
3488 |
"Feldes an)"
|
3489 |
|
3490 |
+
#: pro/fields/class-acf-field-clone.php:832
|
3491 |
msgid "Seamless (replaces this field with selected fields)"
|
3492 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3493 |
|
3494 |
+
#: pro/fields/class-acf-field-clone.php:853
|
3495 |
#, php-format
|
3496 |
msgid "Labels will be displayed as %s"
|
3497 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3498 |
|
3499 |
+
#: pro/fields/class-acf-field-clone.php:856
|
3500 |
msgid "Prefix Field Labels"
|
3501 |
msgstr "Präfix für Feld-Beschriftungen"
|
3502 |
|
3503 |
+
#: pro/fields/class-acf-field-clone.php:867
|
3504 |
#, php-format
|
3505 |
msgid "Values will be saved as %s"
|
3506 |
msgstr "Werte werden als %s gespeichert"
|
3507 |
|
3508 |
+
#: pro/fields/class-acf-field-clone.php:870
|
3509 |
msgid "Prefix Field Names"
|
3510 |
msgstr "Präfix für Feld-Namen"
|
3511 |
|
3512 |
+
#: pro/fields/class-acf-field-clone.php:988
|
3513 |
msgid "Unknown field"
|
3514 |
msgstr "Unbekanntes Feld"
|
3515 |
|
3516 |
+
#: pro/fields/class-acf-field-clone.php:1027
|
3517 |
msgid "Unknown field group"
|
3518 |
msgstr "Unbekannte Feld-Gruppe"
|
3519 |
|
3520 |
+
#: pro/fields/class-acf-field-clone.php:1031
|
3521 |
#, php-format
|
3522 |
msgid "All fields from %s field group"
|
3523 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
3601 |
msgstr "Zum Auswählen anklicken"
|
3602 |
|
3603 |
# @ acf
|
3604 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3605 |
msgid "Reorder Layout"
|
3606 |
msgstr "Layout sortieren"
|
3607 |
|
3608 |
# @ acf
|
3609 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3610 |
msgid "Reorder"
|
3611 |
msgstr "Sortieren"
|
3612 |
|
3613 |
# @ acf
|
3614 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3615 |
msgid "Delete Layout"
|
3616 |
msgstr "Layout löschen"
|
3617 |
|
3618 |
# @ acf
|
3619 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
3620 |
msgid "Duplicate Layout"
|
3621 |
msgstr "Layout duplizieren"
|
3622 |
|
3623 |
# @ acf
|
3624 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
3625 |
msgid "Add New Layout"
|
3626 |
msgstr "Neues Layout hinzufügen"
|
3627 |
|
3628 |
# @ acf
|
3629 |
+
#: pro/fields/class-acf-field-flexible-content.php:630
|
3630 |
msgid "Min"
|
3631 |
msgstr "Min"
|
3632 |
|
3633 |
# @ acf
|
3634 |
+
#: pro/fields/class-acf-field-flexible-content.php:643
|
3635 |
msgid "Max"
|
3636 |
msgstr "Max"
|
3637 |
|
3638 |
# @ acf
|
3639 |
+
#: pro/fields/class-acf-field-flexible-content.php:670
|
3640 |
#: pro/fields/class-acf-field-repeater.php:466
|
3641 |
msgid "Button Label"
|
3642 |
msgstr "Button-Beschriftung"
|
3643 |
|
3644 |
# @ acf
|
3645 |
+
#: pro/fields/class-acf-field-flexible-content.php:679
|
3646 |
msgid "Minimum Layouts"
|
3647 |
msgstr "Minimum Layouts"
|
3648 |
|
3649 |
# @ acf
|
3650 |
+
#: pro/fields/class-acf-field-flexible-content.php:688
|
3651 |
msgid "Maximum Layouts"
|
3652 |
msgstr "Maximum Layouts"
|
3653 |
|
3815 |
msgid "http://www.elliotcondon.com/"
|
3816 |
msgstr "http://www.elliotcondon.com/"
|
3817 |
|
3818 |
+
# @ acf
|
3819 |
+
#~ msgid "Export Field Groups to PHP"
|
3820 |
+
#~ msgstr "Exportieren der Feld-Gruppen nach PHP"
|
3821 |
+
|
3822 |
+
# @ acf
|
3823 |
+
#~ msgid "Download export file"
|
3824 |
+
#~ msgstr "JSON-Datei exportieren"
|
3825 |
+
|
3826 |
+
# @ acf
|
3827 |
+
#~ msgid "Generate export code"
|
3828 |
+
#~ msgstr "Erstelle PHP-Code"
|
3829 |
+
|
3830 |
+
# @ acf
|
3831 |
+
#~ msgid "Import"
|
3832 |
+
#~ msgstr "Importieren"
|
3833 |
+
|
3834 |
+
# @ acf
|
3835 |
+
#~ msgid ""
|
3836 |
+
#~ "The tab field will display incorrectly when added to a Table style "
|
3837 |
+
#~ "repeater field or flexible content field layout"
|
3838 |
+
#~ msgstr ""
|
3839 |
+
#~ "Ein Tab-Feld wird nicht korrekt dargestellt, wenn es zu einem "
|
3840 |
+
#~ "Wiederholung- oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden "
|
3841 |
+
#~ "ist"
|
3842 |
+
|
3843 |
+
# @ acf
|
3844 |
+
#~ msgid ""
|
3845 |
+
#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
3846 |
+
#~ "together."
|
3847 |
+
#~ msgstr ""
|
3848 |
+
#~ "Mit \"Tab Feldern\" können Felder für eine bessere Struktur im Editor in "
|
3849 |
+
#~ "Tabs zusammengefasst werden."
|
3850 |
+
|
3851 |
+
# @ acf
|
3852 |
+
#~ msgid ""
|
3853 |
+
#~ "All fields following this \"tab field\" (or until another \"tab field\" "
|
3854 |
+
#~ "is defined) will be grouped together using this field's label as the tab "
|
3855 |
+
#~ "heading."
|
3856 |
+
#~ msgstr ""
|
3857 |
+
#~ "Alle Felder, die auf dieses \"Tab Feld\" folgen (oder bis ein weiteres "
|
3858 |
+
#~ "\"Tab Feld\" definiert ist), werden in einem Tab mit dem Namen dieses "
|
3859 |
+
#~ "Felds zusammengefasst."
|
3860 |
+
|
3861 |
# @ acf
|
3862 |
#~ msgid "Getting Started"
|
3863 |
#~ msgstr "Erste Schritte"
|
lang/acf-de_DE_formal.mo
CHANGED
Binary file
|
lang/acf-de_DE_formal.po
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Advanced Custom Fields Pro v5.6.
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
@@ -23,116 +23,116 @@ msgstr ""
|
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
# @ acf
|
26 |
-
#: acf.php:
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
-
#: acf.php:
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
-
#: acf.php:
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
-
#: acf.php:
|
42 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
-
#: acf.php:
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
-
#: acf.php:
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
-
#: acf.php:
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
-
#: acf.php:
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
-
#: acf.php:
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
-
#: acf.php:
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
-
#: acf.php:
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
-
#: acf.php:
|
83 |
#: includes/admin/admin-field-group.php:275
|
84 |
#: includes/admin/admin-field-groups.php:510
|
85 |
-
#: pro/fields/class-acf-field-clone.php:
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
-
#: acf.php:
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
-
#: acf.php:
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
-
#: acf.php:
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
-
#: acf.php:
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Neues Feld"
|
109 |
|
110 |
# @ acf
|
111 |
-
#: acf.php:
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
-
#: acf.php:
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
-
#: acf.php:
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
-
#: acf.php:
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
-
#: acf.php:
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inaktiv"
|
134 |
|
135 |
-
#: acf.php:
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
@@ -182,6 +182,7 @@ msgid "Location"
|
|
182 |
msgstr "Position"
|
183 |
|
184 |
#: includes/admin/admin-field-group.php:184
|
|
|
185 |
msgid "Settings"
|
186 |
msgstr "Einstellungen"
|
187 |
|
@@ -206,7 +207,8 @@ msgid "Field group title is required"
|
|
206 |
msgstr "Es ist ein Titel für die Feld-Gruppe erforderlich"
|
207 |
|
208 |
# @ acf
|
209 |
-
#: includes/admin/admin-field-group.php:273
|
|
|
210 |
msgid "copy"
|
211 |
msgstr "kopieren"
|
212 |
|
@@ -216,7 +218,7 @@ msgstr "kopieren"
|
|
216 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
217 |
#: includes/admin/views/field-group-locations.php:29
|
218 |
#: includes/admin/views/html-location-group.php:3
|
219 |
-
#: includes/api/api-helpers.php:
|
220 |
msgid "or"
|
221 |
msgstr "oder"
|
222 |
|
@@ -356,11 +358,12 @@ msgstr "Status"
|
|
356 |
#: includes/admin/admin-field-groups.php:607
|
357 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
358 |
msgstr ""
|
359 |
-
"WordPress durch leistungsfähige, professionelle und zugleich intuitive
|
360 |
-
"erweitern."
|
361 |
|
362 |
# @ acf
|
363 |
-
#: includes/admin/admin-field-groups.php:609
|
|
|
364 |
#: pro/admin/views/html-settings-updates.php:107
|
365 |
msgid "Changelog"
|
366 |
msgstr "Versionshinweise"
|
@@ -397,53 +400,59 @@ msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
|
397 |
msgstr "Danke für das Vertrauen in <a href=\"%s\">ACF</a>."
|
398 |
|
399 |
# @ acf
|
400 |
-
#: includes/admin/admin-field-groups.php:
|
401 |
msgid "Duplicate this item"
|
402 |
msgstr "Dieses Element duplizieren"
|
403 |
|
404 |
# @ acf
|
405 |
-
#: includes/admin/admin-field-groups.php:
|
406 |
-
#: includes/admin/admin-field-groups.php:
|
407 |
#: includes/admin/views/field-group-field.php:49
|
408 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
409 |
msgid "Duplicate"
|
410 |
msgstr "Duplizieren"
|
411 |
|
412 |
# @ acf
|
413 |
-
#: includes/admin/admin-field-groups.php:
|
414 |
#: includes/fields/class-acf-field-google-map.php:112
|
415 |
#: includes/fields/class-acf-field-relationship.php:656
|
416 |
msgid "Search"
|
417 |
msgstr "Suchen"
|
418 |
|
419 |
# @ acf
|
420 |
-
#: includes/admin/admin-field-groups.php:
|
421 |
#, php-format
|
422 |
msgid "Select %s"
|
423 |
msgstr "%s auswählen"
|
424 |
|
425 |
# @ acf
|
426 |
-
#: includes/admin/admin-field-groups.php:
|
427 |
msgid "Synchronise field group"
|
428 |
msgstr "Synchronisiere Feld-Gruppe"
|
429 |
|
430 |
# @ acf
|
431 |
-
#: includes/admin/admin-field-groups.php:
|
432 |
-
#: includes/admin/admin-field-groups.php:
|
433 |
msgid "Sync"
|
434 |
msgstr "Synchronisieren"
|
435 |
|
436 |
-
#: includes/admin/admin-field-groups.php:
|
437 |
msgid "Apply"
|
438 |
msgstr "Anwenden"
|
439 |
|
440 |
# @ acf
|
441 |
-
#: includes/admin/admin-field-groups.php:
|
442 |
msgid "Bulk Actions"
|
443 |
msgstr "Massenverarbeitung"
|
444 |
|
|
|
|
|
|
|
|
|
|
|
445 |
# @ acf
|
446 |
-
#: includes/admin/admin.php:113
|
|
|
447 |
msgid "Custom Fields"
|
448 |
msgstr "Eigene Felder"
|
449 |
|
@@ -488,39 +497,123 @@ msgstr "Info"
|
|
488 |
msgid "What's New"
|
489 |
msgstr "Was gibt es Neues"
|
490 |
|
491 |
-
|
492 |
-
#: includes/admin/
|
493 |
-
|
494 |
-
|
495 |
-
|
|
|
|
|
|
|
|
|
|
|
496 |
|
497 |
# @ acf
|
498 |
-
#: includes/admin/
|
|
|
499 |
msgid "No field groups selected"
|
500 |
msgstr "Keine Feld-Gruppe ausgewählt"
|
501 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
502 |
# @ acf
|
503 |
-
#: includes/admin/
|
504 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
msgid "No file selected"
|
506 |
msgstr "Keine Datei ausgewählt"
|
507 |
|
508 |
# @ acf
|
509 |
-
#: includes/admin/
|
510 |
msgid "Error uploading file. Please try again"
|
511 |
msgstr "Fehler beim Upload der Datei. Bitte versuchen Sie es erneut"
|
512 |
|
513 |
# @ acf
|
514 |
-
#: includes/admin/
|
515 |
msgid "Incorrect file type"
|
516 |
msgstr "Falscher Dateityp"
|
517 |
|
518 |
# @ acf
|
519 |
-
#: includes/admin/
|
520 |
msgid "Import file empty"
|
521 |
msgstr "Die importierte Datei ist leer"
|
522 |
|
523 |
-
#: includes/admin/
|
524 |
#, php-format
|
525 |
msgid "Imported 1 field group"
|
526 |
msgid_plural "Imported %s field groups"
|
@@ -576,7 +669,7 @@ msgstr "Feld bearbeiten"
|
|
576 |
|
577 |
# @ acf
|
578 |
#: includes/admin/views/field-group-field.php:48
|
579 |
-
#: includes/fields/class-acf-field-file.php:
|
580 |
#: includes/fields/class-acf-field-image.php:122
|
581 |
#: includes/fields/class-acf-field-link.php:139
|
582 |
#: pro/fields/class-acf-field-gallery.php:342
|
@@ -605,7 +698,7 @@ msgstr "Feld löschen"
|
|
605 |
|
606 |
# @ acf
|
607 |
#: includes/admin/views/field-group-field.php:51
|
608 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
609 |
msgid "Delete"
|
610 |
msgstr "Löschen"
|
611 |
|
@@ -620,60 +713,59 @@ msgid "This is the name which will appear on the EDIT page"
|
|
620 |
msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt"
|
621 |
|
622 |
# @ acf
|
623 |
-
#: includes/admin/views/field-group-field.php:
|
624 |
msgid "Field Name"
|
625 |
msgstr "Feld-Name"
|
626 |
|
627 |
# @ acf
|
628 |
-
#: includes/admin/views/field-group-field.php:
|
629 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
630 |
msgstr ""
|
631 |
"Nur ein Wort ohne Leerzeichen; es sind nur Unterstriche und Bindestriche als "
|
632 |
"Sonderzeichen erlaubt"
|
633 |
|
634 |
# @ acf
|
635 |
-
#: includes/admin/views/field-group-field.php:
|
636 |
msgid "Field Type"
|
637 |
msgstr "Feld-Typ"
|
638 |
|
639 |
# @ acf
|
640 |
-
#: includes/admin/views/field-group-field.php:
|
641 |
-
#: includes/fields/class-acf-field-tab.php:88
|
642 |
msgid "Instructions"
|
643 |
msgstr "Anweisungen"
|
644 |
|
645 |
# @ acf
|
646 |
-
#: includes/admin/views/field-group-field.php:
|
647 |
msgid "Instructions for authors. Shown when submitting data"
|
648 |
msgstr "Anweisungen für Autoren werden in der Bearbeitungs-Ansicht angezeigt"
|
649 |
|
650 |
# @ acf
|
651 |
-
#: includes/admin/views/field-group-field.php:
|
652 |
msgid "Required?"
|
653 |
msgstr "Erforderlich?"
|
654 |
|
655 |
# @ acf
|
656 |
-
#: includes/admin/views/field-group-field.php:
|
657 |
msgid "Wrapper Attributes"
|
658 |
msgstr "Wrapper-Attribute"
|
659 |
|
660 |
# @ acf
|
661 |
-
#: includes/admin/views/field-group-field.php:
|
662 |
msgid "width"
|
663 |
msgstr "Breite"
|
664 |
|
665 |
# @ acf
|
666 |
-
#: includes/admin/views/field-group-field.php:
|
667 |
msgid "class"
|
668 |
msgstr "Klasse"
|
669 |
|
670 |
# @ acf
|
671 |
-
#: includes/admin/views/field-group-field.php:
|
672 |
msgid "id"
|
673 |
msgstr "ID"
|
674 |
|
675 |
# @ acf
|
676 |
-
#: includes/admin/views/field-group-field.php:
|
677 |
msgid "Close Field"
|
678 |
msgstr "Feld schließen"
|
679 |
|
@@ -684,17 +776,18 @@ msgstr "Reihenfolge"
|
|
684 |
|
685 |
# @ acf
|
686 |
#: includes/admin/views/field-group-fields.php:5
|
|
|
687 |
#: includes/fields/class-acf-field-checkbox.php:415
|
688 |
#: includes/fields/class-acf-field-radio.php:306
|
689 |
#: includes/fields/class-acf-field-select.php:432
|
690 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
691 |
msgid "Label"
|
692 |
msgstr "Name"
|
693 |
|
694 |
# @ acf
|
695 |
#: includes/admin/views/field-group-fields.php:6
|
696 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
697 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
698 |
msgid "Name"
|
699 |
msgstr "Feld-Name"
|
700 |
|
@@ -710,11 +803,11 @@ msgstr "Typ"
|
|
710 |
# @ acf
|
711 |
#: includes/admin/views/field-group-fields.php:14
|
712 |
msgid ""
|
713 |
-
"No fields. Click the <strong>+ Add Field</strong> button to create your
|
714 |
-
"field."
|
715 |
msgstr ""
|
716 |
-
"Es sind noch keine Felder angelegt. Klicken Sie den <strong>+ Feld
|
717 |
-
"Button</strong> und erstellen Sie Ihr erstes Feld."
|
718 |
|
719 |
# @ acf
|
720 |
#: includes/admin/views/field-group-fields.php:31
|
@@ -729,8 +822,8 @@ msgstr "Regeln"
|
|
729 |
# @ acf
|
730 |
#: includes/admin/views/field-group-locations.php:10
|
731 |
msgid ""
|
732 |
-
"Create a set of rules to determine which edit screens will use these
|
733 |
-
"custom fields"
|
734 |
msgstr ""
|
735 |
"Erstelle ein Regelwerk das festlegt welche Bearbeitungs-Ansichten diese Feld-"
|
736 |
"Gruppe nutzen dürfen"
|
@@ -777,14 +870,14 @@ msgstr "Platzierung Beschriftung"
|
|
777 |
|
778 |
# @ acf
|
779 |
#: includes/admin/views/field-group-options.php:62
|
780 |
-
#: includes/fields/class-acf-field-tab.php:
|
781 |
msgid "Top aligned"
|
782 |
msgstr "Über dem Feld"
|
783 |
|
784 |
# @ acf
|
785 |
#: includes/admin/views/field-group-options.php:63
|
786 |
-
#: includes/fields/class-acf-field-tab.php:
|
787 |
-
msgid "Left
|
788 |
msgstr "Links neben dem Feld"
|
789 |
|
790 |
# @ acf
|
@@ -823,7 +916,8 @@ msgstr "Verstecken"
|
|
823 |
# @ acf
|
824 |
#: includes/admin/views/field-group-options.php:108
|
825 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen."
|
826 |
-
msgstr "
|
|
|
827 |
|
828 |
# @ acf
|
829 |
#: includes/admin/views/field-group-options.php:108
|
@@ -831,9 +925,9 @@ msgid ""
|
|
831 |
"If multiple field groups appear on an edit screen, the first field group's "
|
832 |
"options will be used (the one with the lowest order number)"
|
833 |
msgstr ""
|
834 |
-
"Sind für einen Bearbeiten-Dialog mehrere Felder-Gruppen definiert, werden
|
835 |
-
"Optionen der ersten Felder-Gruppe angewendet (die mit der niedrigsten
|
836 |
-
"für die Reihenfolge)."
|
837 |
|
838 |
# @ acf
|
839 |
#: includes/admin/views/field-group-options.php:115
|
@@ -916,15 +1010,16 @@ msgid "Upgrade Sites"
|
|
916 |
msgstr "Websites upgraden"
|
917 |
|
918 |
# @ acf
|
919 |
-
#: includes/admin/views/install-network.php:9
|
|
|
920 |
msgid "Advanced Custom Fields Database Upgrade"
|
921 |
msgstr "Advanced Custom Fields Datenbank-Upgrade"
|
922 |
|
923 |
#: includes/admin/views/install-network.php:11
|
924 |
#, php-format
|
925 |
msgid ""
|
926 |
-
"The following sites require a DB upgrade. Check the ones you want to update
|
927 |
-
"then click %s."
|
928 |
msgstr ""
|
929 |
"Folgende Websites erfordern ein Upgrade der Datenbank. Markieren Sie die "
|
930 |
"gewünschten Seiten und klicken Sie dann %s."
|
@@ -949,16 +1044,18 @@ msgstr "Die Website ist aktuell"
|
|
949 |
# @ acf
|
950 |
#: includes/admin/views/install-network.php:63
|
951 |
#, php-format
|
952 |
-
msgid "
|
|
|
953 |
msgstr ""
|
954 |
-
"Upgrade der Datenbank fertiggestellt. <a href=\"%s\">Zum Netzwerk Dashboard</
|
|
|
955 |
|
956 |
# @ acf
|
957 |
#: includes/admin/views/install-network.php:102
|
958 |
#: includes/admin/views/install-notice.php:42
|
959 |
msgid ""
|
960 |
-
"It is strongly recommended that you backup your database before proceeding.
|
961 |
-
"you sure you wish to run the updater now?"
|
962 |
msgstr ""
|
963 |
"Es wird dringend empfohlen, dass Sie ihre Datenbank sichern, bevor Sie "
|
964 |
"fortfahren. Sind sie sicher, dass Sie jetzt das Upgrade durchführen wollen?"
|
@@ -1013,8 +1110,8 @@ msgstr "Danke für die Aktualisierung auf %s v%s!"
|
|
1013 |
# @ acf
|
1014 |
#: includes/admin/views/install-notice.php:28
|
1015 |
msgid ""
|
1016 |
-
"Before you start using the new awesome features, please update your database
|
1017 |
-
"the newest version."
|
1018 |
msgstr ""
|
1019 |
"Bevor Sie die großartigen neuen Funktionen nutzen können ist ein Upgrade der "
|
1020 |
"Datenbank notwendig."
|
@@ -1037,8 +1134,8 @@ msgstr "Aufgaben für das Upgrade einlesen…"
|
|
1037 |
#, php-format
|
1038 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
1039 |
msgstr ""
|
1040 |
-
"Datenbank-Upgrade abgeschlossen. <a href=\"%s\">Schauen Sie nach was es
|
1041 |
-
"gibt</a>"
|
1042 |
|
1043 |
# @ acf
|
1044 |
#: includes/admin/views/settings-addons.php:17
|
@@ -1059,16 +1156,17 @@ msgstr "Willkommen bei Advanced Custom Fields"
|
|
1059 |
#: includes/admin/views/settings-info.php:4
|
1060 |
#, php-format
|
1061 |
msgid ""
|
1062 |
-
"Thank you for updating! ACF %s is bigger and better than ever before. We
|
1063 |
-
"you like it."
|
1064 |
msgstr ""
|
1065 |
-
"Vielen Dank fürs Aktualisieren! ACF %s ist größer und besser als je zuvor.
|
1066 |
-
"hoffen es wird ihnen gefallen."
|
1067 |
|
1068 |
# @ acf
|
1069 |
#: includes/admin/views/settings-info.php:17
|
1070 |
msgid "A smoother custom field experience"
|
1071 |
-
msgstr "
|
|
|
1072 |
|
1073 |
# @ acf
|
1074 |
#: includes/admin/views/settings-info.php:22
|
@@ -1079,8 +1177,8 @@ msgstr "Verbesserte Benutzerfreundlichkeit"
|
|
1079 |
#: includes/admin/views/settings-info.php:23
|
1080 |
msgid ""
|
1081 |
"Including the popular Select2 library has improved both usability and speed "
|
1082 |
-
"across a number of field types including post object, page link, taxonomy
|
1083 |
-
"select."
|
1084 |
msgstr ""
|
1085 |
"Durch die Einführung der beliebten Select2 Bibliothek wurde sowohl die "
|
1086 |
"Benutzerfreundlichkeit als auch die Geschwindigkeit einiger Feldtypen wie "
|
@@ -1095,9 +1193,9 @@ msgstr "Verbessertes Design"
|
|
1095 |
# @ acf
|
1096 |
#: includes/admin/views/settings-info.php:28
|
1097 |
msgid ""
|
1098 |
-
"Many fields have undergone a visual refresh to make ACF look better than
|
1099 |
-
"Noticeable changes are seen on the gallery, relationship and oEmbed
|
1100 |
-
"fields!"
|
1101 |
msgstr ""
|
1102 |
"Viele Felder wurden visuell überarbeitet, damit ACF besser denn je aussieht! "
|
1103 |
"Die markantesten Änderungen erfuhren das Galerie-, Beziehungs- sowie das "
|
@@ -1111,14 +1209,14 @@ msgstr "Verbesserte Datenstruktur"
|
|
1111 |
# @ acf
|
1112 |
#: includes/admin/views/settings-info.php:33
|
1113 |
msgid ""
|
1114 |
-
"Redesigning the data architecture has allowed sub fields to live
|
1115 |
-
"from their parents. This allows you to drag and drop fields in
|
1116 |
-
"parent fields!"
|
1117 |
msgstr ""
|
1118 |
-
"Die Neugestaltung der Datenarchitektur erlaubt es, dass Felder unabhängig
|
1119 |
-
"ihren übergeordneten Feldern existieren können. Dies ermöglicht, dass
|
1120 |
-
"per Drag-and-Drop, in und aus ihren übergeordneten Feldern verschoben
|
1121 |
-
"können!"
|
1122 |
|
1123 |
# @ acf
|
1124 |
#: includes/admin/views/settings-info.php:39
|
@@ -1142,14 +1240,14 @@ msgstr ""
|
|
1142 |
#: includes/admin/views/settings-info.php:46
|
1143 |
#, php-format
|
1144 |
msgid ""
|
1145 |
-
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro
|
1146 |
-
"of ACF</a>. With both personal and developer licenses available,
|
1147 |
-
"functionality is more affordable and accessible than ever before!"
|
1148 |
msgstr ""
|
1149 |
-
"Alle vier, vormals separat erhältlichen, Premium-Add-ons wurden in der neuen
|
1150 |
-
"href=\"%s\">Pro-Version von ACF</a> zusammengefasst. Besagte Premium-"
|
1151 |
-
"Funktionalität, erhältlich in einer Einzel- sowie einer Entwickler-Lizenz,
|
1152 |
-
"somit erschwinglicher denn je!"
|
1153 |
|
1154 |
# @ acf
|
1155 |
#: includes/admin/views/settings-info.php:50
|
@@ -1182,24 +1280,24 @@ msgstr "Kinderleichte Aktualisierung"
|
|
1182 |
#: includes/admin/views/settings-info.php:57
|
1183 |
#, php-format
|
1184 |
msgid ""
|
1185 |
-
"To help make upgrading easy, <a href=\"%s\">login to your store account</a>
|
1186 |
-
"claim a free copy of ACF PRO!"
|
1187 |
msgstr ""
|
1188 |
-
"Wir haben den Aktualisierungsprozess so einfach wie möglich gehalten; <a
|
1189 |
-
"
|
1190 |
-
"Gratisexemplar von ACF PRO an!"
|
1191 |
|
1192 |
# @ acf
|
1193 |
#: includes/admin/views/settings-info.php:58
|
1194 |
#, php-format
|
1195 |
msgid ""
|
1196 |
-
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions,
|
1197 |
-
"if you do have one, please contact our support team via the <a href=\"%s
|
1198 |
-
"desk</a>"
|
1199 |
msgstr ""
|
1200 |
"Um möglichen Fragen zu begegnen haben wir haben einen <a href=\"%s\">Upgrade-"
|
1201 |
-
"Leitfaden (Engl.)</a> erstellt. Sollten dennoch Fragen auftreten,
|
1202 |
-
"Sie bitte unser <a href=\"%s\"> Support-Team </a>"
|
1203 |
|
1204 |
# @ acf
|
1205 |
#: includes/admin/views/settings-info.php:66
|
@@ -1237,7 +1335,8 @@ msgstr "Lokales JSON"
|
|
1237 |
# @ acf
|
1238 |
#: includes/admin/views/settings-info.php:82
|
1239 |
msgid "New auto export to JSON feature improves speed"
|
1240 |
-
msgstr "
|
|
|
1241 |
|
1242 |
# @ acf
|
1243 |
#: includes/admin/views/settings-info.php:88
|
@@ -1247,7 +1346,8 @@ msgstr "Verbesserte Versionskontrolle"
|
|
1247 |
# @ acf
|
1248 |
#: includes/admin/views/settings-info.php:89
|
1249 |
msgid ""
|
1250 |
-
"New auto export to JSON feature allows field settings to be version
|
|
|
1251 |
msgstr ""
|
1252 |
"Die neue JSON Export Funktionalität erlaubt die Versionskontrolle von Feld-"
|
1253 |
"Einstellungen"
|
@@ -1287,7 +1387,8 @@ msgstr "Neue Galerie"
|
|
1287 |
# @ acf
|
1288 |
#: includes/admin/views/settings-info.php:111
|
1289 |
msgid "The gallery field has undergone a much needed facelift"
|
1290 |
-
msgstr "
|
|
|
1291 |
|
1292 |
# @ acf
|
1293 |
#: includes/admin/views/settings-info.php:115
|
@@ -1322,8 +1423,8 @@ msgstr "Bessere Validierung"
|
|
1322 |
#: includes/admin/views/settings-info.php:128
|
1323 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1324 |
msgstr ""
|
1325 |
-
"Die Formular-Validierung wird nun mit Hilfe von PHP + AJAX erledigt,
|
1326 |
-
"nur JS zu verwenden"
|
1327 |
|
1328 |
# @ acf
|
1329 |
#: includes/admin/views/settings-info.php:132
|
@@ -1332,10 +1433,11 @@ msgstr "Beziehungs-Feld"
|
|
1332 |
|
1333 |
# @ acf
|
1334 |
#: includes/admin/views/settings-info.php:133
|
1335 |
-
msgid "
|
|
|
1336 |
msgstr ""
|
1337 |
-
"Neue Einstellungen innerhalb des Beziehungs-Feldes um nach Suche, Beitrags-
|
1338 |
-
"und oder Taxonomie filtern zu können"
|
1339 |
|
1340 |
# @ acf
|
1341 |
#: includes/admin/views/settings-info.php:139
|
@@ -1348,8 +1450,8 @@ msgid ""
|
|
1348 |
"New field group functionality allows you to move a field between groups & "
|
1349 |
"parents"
|
1350 |
msgstr ""
|
1351 |
-
"Die neue Feld-Gruppen-Funktionalität erlaubt es ein Feld zwischen Gruppen
|
1352 |
-
"übergeordneten Gruppen frei zu verschieben"
|
1353 |
|
1354 |
# @ acf
|
1355 |
#: includes/admin/views/settings-info.php:144
|
@@ -1361,8 +1463,8 @@ msgstr "Seiten-Link"
|
|
1361 |
#: includes/admin/views/settings-info.php:145
|
1362 |
msgid "New archives group in page_link field selection"
|
1363 |
msgstr ""
|
1364 |
-
"Im neuen Seitenlink-Feld werden alle Archiv-URL's der verfügbaren Custom
|
1365 |
-
"Types in einer Options-Gruppe zusammengefasst"
|
1366 |
|
1367 |
# @ acf
|
1368 |
#: includes/admin/views/settings-info.php:149
|
@@ -1385,157 +1487,69 @@ msgid "We think you'll love the changes in %s."
|
|
1385 |
msgstr "Wir glauben Sie werden die Änderungen in %s lieben."
|
1386 |
|
1387 |
# @ acf
|
1388 |
-
#: includes/
|
1389 |
-
msgid "Export Field Groups to PHP"
|
1390 |
-
msgstr "Exportieren der Feld-Gruppen nach PHP"
|
1391 |
-
|
1392 |
-
# @ acf
|
1393 |
-
#: includes/admin/views/settings-tools-export.php:27
|
1394 |
-
msgid ""
|
1395 |
-
"The following code can be used to register a local version of the selected "
|
1396 |
-
"field group(s). A local field group can provide many benefits such as faster "
|
1397 |
-
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
1398 |
-
"the following code to your theme's functions.php file or include it within an "
|
1399 |
-
"external file."
|
1400 |
-
msgstr ""
|
1401 |
-
"Der nachfolgende Code kann dazu verwendet werden eine lokale Version der "
|
1402 |
-
"ausgewählten Feld-Gruppe(n) zu registrieren. Eine lokale Feld-Gruppe bietet "
|
1403 |
-
"viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische "
|
1404 |
-
"Felder und Einstellungen. Kopieren Sie einfach folgenden Code und füge ihn in "
|
1405 |
-
"die functions.php oder eine externe Datei in Ihrem Theme ein."
|
1406 |
-
|
1407 |
-
# @ acf
|
1408 |
-
#: includes/admin/views/settings-tools.php:5
|
1409 |
-
msgid "Select Field Groups"
|
1410 |
-
msgstr "Felder-Gruppen auswählen"
|
1411 |
-
|
1412 |
-
# @ acf
|
1413 |
-
#: includes/admin/views/settings-tools.php:35
|
1414 |
-
msgid "Export Field Groups"
|
1415 |
-
msgstr "Feld-Gruppen exportieren"
|
1416 |
-
|
1417 |
-
# @ acf
|
1418 |
-
#: includes/admin/views/settings-tools.php:38
|
1419 |
-
msgid ""
|
1420 |
-
"Select the field groups you would like to export and then select your export "
|
1421 |
-
"method. Use the download button to export to a .json file which you can then "
|
1422 |
-
"import to another ACF installation. Use the generate button to export to PHP "
|
1423 |
-
"code which you can place in your theme."
|
1424 |
-
msgstr ""
|
1425 |
-
"Entscheiden Sie zuerst welche Felder-Gruppen Sie exportieren möchten und wählen "
|
1426 |
-
"im Anschluss das Format in das exportiert werden soll. Klicken Sie den \"JSON-"
|
1427 |
-
"Datei exportieren\"-Button, um eine JSON-Datei zu erhalten, welche Sie dann in "
|
1428 |
-
"einer anderen ACF-Installation importieren können. Wählen Sie den \"Erstelle "
|
1429 |
-
"PHP-Code\"-Button, um PHP-Code zu erhalten, den Sie im Anschluss in der "
|
1430 |
-
"functions.php Ihres Themes einfügen können."
|
1431 |
-
|
1432 |
-
# @ acf
|
1433 |
-
#: includes/admin/views/settings-tools.php:50
|
1434 |
-
msgid "Download export file"
|
1435 |
-
msgstr "JSON-Datei exportieren"
|
1436 |
-
|
1437 |
-
# @ acf
|
1438 |
-
#: includes/admin/views/settings-tools.php:51
|
1439 |
-
msgid "Generate export code"
|
1440 |
-
msgstr "Erstelle PHP-Code"
|
1441 |
-
|
1442 |
-
# @ acf
|
1443 |
-
#: includes/admin/views/settings-tools.php:64
|
1444 |
-
msgid "Import Field Groups"
|
1445 |
-
msgstr "Feld-Gruppen importieren"
|
1446 |
-
|
1447 |
-
# @ acf
|
1448 |
-
#: includes/admin/views/settings-tools.php:67
|
1449 |
-
msgid ""
|
1450 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When you "
|
1451 |
-
"click the import button below, ACF will import the field groups."
|
1452 |
-
msgstr ""
|
1453 |
-
"Wählen Sie die Advanced Custom Fields JSON-Datei aus, welche Sie importieren "
|
1454 |
-
"möchten. Nach dem Klicken des Importieren-Buttons wird ACF die Felder-Gruppen "
|
1455 |
-
"hinzufügen."
|
1456 |
-
|
1457 |
-
# @ acf
|
1458 |
-
#: includes/admin/views/settings-tools.php:77
|
1459 |
-
#: includes/fields/class-acf-field-file.php:35
|
1460 |
-
msgid "Select File"
|
1461 |
-
msgstr "Datei auswählen"
|
1462 |
-
|
1463 |
-
# @ acf
|
1464 |
-
#: includes/admin/views/settings-tools.php:86
|
1465 |
-
msgid "Import"
|
1466 |
-
msgstr "Importieren"
|
1467 |
-
|
1468 |
-
# @ acf
|
1469 |
-
#: includes/api/api-helpers.php:856
|
1470 |
msgid "Thumbnail"
|
1471 |
msgstr "Miniaturbild"
|
1472 |
|
1473 |
# @ acf
|
1474 |
-
#: includes/api/api-helpers.php:
|
1475 |
msgid "Medium"
|
1476 |
msgstr "Mittel"
|
1477 |
|
1478 |
# @ acf
|
1479 |
-
#: includes/api/api-helpers.php:
|
1480 |
msgid "Large"
|
1481 |
msgstr "Groß"
|
1482 |
|
1483 |
# @ acf
|
1484 |
-
#: includes/api/api-helpers.php:
|
1485 |
msgid "Full Size"
|
1486 |
msgstr "Volle Größe"
|
1487 |
|
1488 |
# @ acf
|
1489 |
-
#: includes/api/api-helpers.php:
|
1490 |
-
#: pro/fields/class-acf-field-clone.php:
|
1491 |
msgid "(no title)"
|
1492 |
msgstr "(ohne Titel)"
|
1493 |
|
1494 |
-
#: includes/api/api-helpers.php:1868
|
1495 |
-
#: includes/fields/class-acf-field-page_link.php:269
|
1496 |
-
#: includes/fields/class-acf-field-post_object.php:268
|
1497 |
-
#: includes/fields/class-acf-field-taxonomy.php:986
|
1498 |
-
msgid "Parent"
|
1499 |
-
msgstr "Übergeordnet"
|
1500 |
-
|
1501 |
# @ acf
|
1502 |
-
#: includes/api/api-helpers.php:
|
1503 |
#, php-format
|
1504 |
msgid "Image width must be at least %dpx."
|
1505 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1506 |
|
1507 |
# @ acf
|
1508 |
-
#: includes/api/api-helpers.php:
|
1509 |
#, php-format
|
1510 |
msgid "Image width must not exceed %dpx."
|
1511 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1512 |
|
1513 |
# @ acf
|
1514 |
-
#: includes/api/api-helpers.php:
|
1515 |
#, php-format
|
1516 |
msgid "Image height must be at least %dpx."
|
1517 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1518 |
|
1519 |
# @ acf
|
1520 |
-
#: includes/api/api-helpers.php:
|
1521 |
#, php-format
|
1522 |
msgid "Image height must not exceed %dpx."
|
1523 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1524 |
|
1525 |
# @ acf
|
1526 |
-
#: includes/api/api-helpers.php:
|
1527 |
#, php-format
|
1528 |
msgid "File size must be at least %s."
|
1529 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1530 |
|
1531 |
# @ acf
|
1532 |
-
#: includes/api/api-helpers.php:
|
1533 |
#, php-format
|
1534 |
msgid "File size must must not exceed %s."
|
1535 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1536 |
|
1537 |
# @ acf
|
1538 |
-
#: includes/api/api-helpers.php:
|
1539 |
#, php-format
|
1540 |
msgid "File type must be %s."
|
1541 |
msgstr "Der Dateityp muss %s sein."
|
@@ -1566,12 +1580,14 @@ msgid "jQuery"
|
|
1566 |
msgstr "jQuery"
|
1567 |
|
1568 |
# @ acf
|
1569 |
-
#: includes/fields.php:149
|
1570 |
-
#: includes/fields/class-acf-field-group.php:
|
|
|
|
|
1571 |
#: includes/fields/class-acf-field-radio.php:285
|
1572 |
-
#: pro/fields/class-acf-field-clone.php:
|
1573 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1574 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1575 |
#: pro/fields/class-acf-field-repeater.php:450
|
1576 |
msgid "Layout"
|
1577 |
msgstr "Layout"
|
@@ -1585,22 +1601,45 @@ msgstr "Feld-Typ existiert nicht"
|
|
1585 |
msgid "Unknown"
|
1586 |
msgstr "Unbekannte Feld-Gruppe"
|
1587 |
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
msgid "Checkbox"
|
1592 |
-
msgstr "Checkbox"
|
1593 |
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
msgstr "Alle auswählen"
|
1598 |
|
1599 |
-
#: includes/fields/class-acf-field-
|
1600 |
-
msgid "
|
1601 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1602 |
|
1603 |
# @ acf
|
|
|
1604 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1605 |
#: includes/fields/class-acf-field-radio.php:235
|
1606 |
#: includes/fields/class-acf-field-select.php:368
|
@@ -1608,6 +1647,7 @@ msgid "Choices"
|
|
1608 |
msgstr "Auswahlmöglichkeiten"
|
1609 |
|
1610 |
# @ acf
|
|
|
1611 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1612 |
#: includes/fields/class-acf-field-radio.php:236
|
1613 |
#: includes/fields/class-acf-field-select.php:369
|
@@ -1615,6 +1655,7 @@ msgid "Enter each choice on a new line."
|
|
1615 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1616 |
|
1617 |
# @ acf
|
|
|
1618 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1619 |
#: includes/fields/class-acf-field-radio.php:236
|
1620 |
#: includes/fields/class-acf-field-select.php:369
|
@@ -1624,75 +1665,72 @@ msgstr ""
|
|
1624 |
"Beschriftung definieren:"
|
1625 |
|
1626 |
# @ acf
|
|
|
1627 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1628 |
#: includes/fields/class-acf-field-radio.php:236
|
1629 |
#: includes/fields/class-acf-field-select.php:369
|
1630 |
msgid "red : Red"
|
1631 |
msgstr "rot : Rot"
|
1632 |
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
#: includes/fields/class-acf-field-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
msgstr "Benutzerdefinierte Werte abspeichern"
|
1644 |
-
|
1645 |
-
#: includes/fields/class-acf-field-checkbox.php:369
|
1646 |
-
msgid "Save 'custom' values to the field's choices"
|
1647 |
-
msgstr ""
|
1648 |
-
"Speichern sie benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1649 |
|
1650 |
# @ acf
|
|
|
1651 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1652 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1653 |
-
#: includes/fields/class-acf-field-email.php:
|
1654 |
-
#: includes/fields/class-acf-field-number.php:
|
1655 |
#: includes/fields/class-acf-field-radio.php:276
|
1656 |
-
#: includes/fields/class-acf-field-range.php:
|
1657 |
#: includes/fields/class-acf-field-select.php:377
|
1658 |
-
#: includes/fields/class-acf-field-text.php:
|
1659 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1660 |
#: includes/fields/class-acf-field-true_false.php:135
|
1661 |
-
#: includes/fields/class-acf-field-url.php:
|
1662 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
1663 |
msgid "Default Value"
|
1664 |
msgstr "Standardwert"
|
1665 |
|
1666 |
# @ acf
|
1667 |
-
#: includes/fields/class-acf-field-
|
1668 |
-
#: includes/fields/class-acf-field-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
#: includes/fields/class-acf-field-
|
1674 |
-
#: includes/fields/class-acf-field-
|
1675 |
-
|
1676 |
-
|
|
|
1677 |
|
1678 |
# @ acf
|
|
|
1679 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1680 |
#: includes/fields/class-acf-field-radio.php:292
|
1681 |
msgid "Horizontal"
|
1682 |
msgstr "Horizontal"
|
1683 |
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
msgstr ""
|
1691 |
-
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1692 |
|
1693 |
# @ acf
|
|
|
1694 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1695 |
-
#: includes/fields/class-acf-field-file.php:
|
1696 |
#: includes/fields/class-acf-field-image.php:188
|
1697 |
#: includes/fields/class-acf-field-link.php:166
|
1698 |
#: includes/fields/class-acf-field-radio.php:299
|
@@ -1701,26 +1739,76 @@ msgid "Return Value"
|
|
1701 |
msgstr "Rückgabewert"
|
1702 |
|
1703 |
# @ acf
|
|
|
1704 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1705 |
-
#: includes/fields/class-acf-field-file.php:
|
1706 |
#: includes/fields/class-acf-field-image.php:189
|
1707 |
#: includes/fields/class-acf-field-link.php:167
|
1708 |
#: includes/fields/class-acf-field-radio.php:300
|
1709 |
msgid "Specify the returned value on front end"
|
1710 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1711 |
|
|
|
1712 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1713 |
#: includes/fields/class-acf-field-radio.php:305
|
1714 |
#: includes/fields/class-acf-field-select.php:431
|
1715 |
msgid "Value"
|
1716 |
msgstr "Wert"
|
1717 |
|
|
|
1718 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1719 |
#: includes/fields/class-acf-field-radio.php:307
|
1720 |
#: includes/fields/class-acf-field-select.php:433
|
1721 |
msgid "Both (Array)"
|
1722 |
msgstr "Beide (Array)"
|
1723 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1724 |
# @ acf
|
1725 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1726 |
msgid "Color Picker"
|
@@ -1796,7 +1884,7 @@ msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
|
1796 |
#: includes/fields/class-acf-field-time_picker.php:117
|
1797 |
#: includes/fields/class-acf-field-time_picker.php:132
|
1798 |
msgid "Custom:"
|
1799 |
-
msgstr "
|
1800 |
|
1801 |
#: includes/fields/class-acf-field-date_picker.php:226
|
1802 |
msgid "Save Format"
|
@@ -1914,70 +2002,58 @@ msgid "Email"
|
|
1914 |
msgstr "E-Mail"
|
1915 |
|
1916 |
# @ acf
|
1917 |
-
#: includes/fields/class-acf-field-email.php:
|
1918 |
-
#: includes/fields/class-acf-field-number.php:
|
1919 |
-
#: includes/fields/class-acf-field-radio.php:277
|
1920 |
-
#: includes/fields/class-acf-field-range.php:142
|
1921 |
-
#: includes/fields/class-acf-field-text.php:116
|
1922 |
-
#: includes/fields/class-acf-field-textarea.php:99
|
1923 |
-
#: includes/fields/class-acf-field-url.php:97
|
1924 |
-
#: includes/fields/class-acf-field-wysiwyg.php:422
|
1925 |
-
msgid "Appears when creating a new post"
|
1926 |
-
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1927 |
-
|
1928 |
-
# @ acf
|
1929 |
-
#: includes/fields/class-acf-field-email.php:123
|
1930 |
-
#: includes/fields/class-acf-field-number.php:132
|
1931 |
#: includes/fields/class-acf-field-password.php:71
|
1932 |
-
#: includes/fields/class-acf-field-text.php:
|
1933 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1934 |
-
#: includes/fields/class-acf-field-url.php:
|
1935 |
msgid "Placeholder Text"
|
1936 |
msgstr "Platzhalter-Text"
|
1937 |
|
1938 |
# @ acf
|
1939 |
-
#: includes/fields/class-acf-field-email.php:
|
1940 |
-
#: includes/fields/class-acf-field-number.php:
|
1941 |
#: includes/fields/class-acf-field-password.php:72
|
1942 |
-
#: includes/fields/class-acf-field-text.php:
|
1943 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1944 |
-
#: includes/fields/class-acf-field-url.php:
|
1945 |
msgid "Appears within the input"
|
1946 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1947 |
|
1948 |
# @ acf
|
1949 |
-
#: includes/fields/class-acf-field-email.php:
|
1950 |
-
#: includes/fields/class-acf-field-number.php:
|
1951 |
#: includes/fields/class-acf-field-password.php:80
|
1952 |
-
#: includes/fields/class-acf-field-range.php:
|
1953 |
-
#: includes/fields/class-acf-field-text.php:
|
1954 |
msgid "Prepend"
|
1955 |
msgstr "Voranstellen"
|
1956 |
|
1957 |
# @ acf
|
1958 |
-
#: includes/fields/class-acf-field-email.php:
|
1959 |
-
#: includes/fields/class-acf-field-number.php:
|
1960 |
#: includes/fields/class-acf-field-password.php:81
|
1961 |
-
#: includes/fields/class-acf-field-range.php:
|
1962 |
-
#: includes/fields/class-acf-field-text.php:
|
1963 |
msgid "Appears before the input"
|
1964 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1965 |
|
1966 |
# @ acf
|
1967 |
-
#: includes/fields/class-acf-field-email.php:
|
1968 |
-
#: includes/fields/class-acf-field-number.php:
|
1969 |
#: includes/fields/class-acf-field-password.php:89
|
1970 |
-
#: includes/fields/class-acf-field-range.php:
|
1971 |
-
#: includes/fields/class-acf-field-text.php:
|
1972 |
msgid "Append"
|
1973 |
msgstr "Anhängen"
|
1974 |
|
1975 |
# @ acf
|
1976 |
-
#: includes/fields/class-acf-field-email.php:
|
1977 |
-
#: includes/fields/class-acf-field-number.php:
|
1978 |
#: includes/fields/class-acf-field-password.php:90
|
1979 |
-
#: includes/fields/class-acf-field-range.php:
|
1980 |
-
#: includes/fields/class-acf-field-text.php:
|
1981 |
msgid "Appears after the input"
|
1982 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1983 |
|
@@ -2003,14 +2079,14 @@ msgstr "Datei aktualisieren"
|
|
2003 |
msgid "Uploaded to this post"
|
2004 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2005 |
|
2006 |
-
#: includes/fields/class-acf-field-file.php:
|
2007 |
msgid "File name"
|
2008 |
msgstr "Dateiname"
|
2009 |
|
2010 |
# @ acf
|
2011 |
-
#: includes/fields/class-acf-field-file.php:
|
2012 |
-
#: includes/fields/class-acf-field-file.php:
|
2013 |
-
#: includes/fields/class-acf-field-file.php:
|
2014 |
#: includes/fields/class-acf-field-image.php:248
|
2015 |
#: includes/fields/class-acf-field-image.php:277
|
2016 |
#: pro/fields/class-acf-field-gallery.php:690
|
@@ -2019,7 +2095,7 @@ msgid "File size"
|
|
2019 |
msgstr "Dateigröße"
|
2020 |
|
2021 |
# @ acf
|
2022 |
-
#: includes/fields/class-acf-field-file.php:
|
2023 |
#: includes/fields/class-acf-field-image.php:124
|
2024 |
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2025 |
#: pro/fields/class-acf-field-gallery.php:343
|
@@ -2028,41 +2104,41 @@ msgid "Remove"
|
|
2028 |
msgstr "Entfernen"
|
2029 |
|
2030 |
# @ acf
|
2031 |
-
#: includes/fields/class-acf-field-file.php:
|
2032 |
msgid "Add File"
|
2033 |
msgstr "Datei hinzufügen"
|
2034 |
|
2035 |
# @ acf
|
2036 |
-
#: includes/fields/class-acf-field-file.php:
|
2037 |
msgid "File Array"
|
2038 |
msgstr "Datei-Array"
|
2039 |
|
2040 |
# @ acf
|
2041 |
-
#: includes/fields/class-acf-field-file.php:
|
2042 |
msgid "File URL"
|
2043 |
msgstr "Datei-URL"
|
2044 |
|
2045 |
# @ acf
|
2046 |
-
#: includes/fields/class-acf-field-file.php:
|
2047 |
msgid "File ID"
|
2048 |
msgstr "Datei-ID"
|
2049 |
|
2050 |
# @ acf
|
2051 |
-
#: includes/fields/class-acf-field-file.php:
|
2052 |
#: includes/fields/class-acf-field-image.php:213
|
2053 |
#: pro/fields/class-acf-field-gallery.php:655
|
2054 |
msgid "Library"
|
2055 |
msgstr "Medienübersicht"
|
2056 |
|
2057 |
# @ acf
|
2058 |
-
#: includes/fields/class-acf-field-file.php:
|
2059 |
#: includes/fields/class-acf-field-image.php:214
|
2060 |
#: pro/fields/class-acf-field-gallery.php:656
|
2061 |
msgid "Limit the media library choice"
|
2062 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2063 |
|
2064 |
# @ acf
|
2065 |
-
#: includes/fields/class-acf-field-file.php:
|
2066 |
#: includes/fields/class-acf-field-image.php:219
|
2067 |
#: includes/locations/class-acf-location-attachment.php:101
|
2068 |
#: includes/locations/class-acf-location-comment.php:79
|
@@ -2076,47 +2152,49 @@ msgid "All"
|
|
2076 |
msgstr "Alle"
|
2077 |
|
2078 |
# @ acf
|
2079 |
-
#: includes/fields/class-acf-field-file.php:
|
2080 |
#: includes/fields/class-acf-field-image.php:220
|
2081 |
#: pro/fields/class-acf-field-gallery.php:662
|
2082 |
msgid "Uploaded to post"
|
2083 |
msgstr "Für den Beitrag hochgeladen"
|
2084 |
|
2085 |
# @ acf
|
2086 |
-
#: includes/fields/class-acf-field-file.php:
|
2087 |
#: includes/fields/class-acf-field-image.php:227
|
2088 |
#: pro/fields/class-acf-field-gallery.php:669
|
2089 |
msgid "Minimum"
|
2090 |
msgstr "Minimum"
|
2091 |
|
2092 |
# @ acf
|
2093 |
-
#: includes/fields/class-acf-field-file.php:
|
2094 |
-
#: includes/fields/class-acf-field-file.php:
|
2095 |
msgid "Restrict which files can be uploaded"
|
2096 |
msgstr ""
|
2097 |
-
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften
|
|
|
2098 |
|
2099 |
# @ acf
|
2100 |
-
#: includes/fields/class-acf-field-file.php:
|
2101 |
#: includes/fields/class-acf-field-image.php:256
|
2102 |
#: pro/fields/class-acf-field-gallery.php:698
|
2103 |
msgid "Maximum"
|
2104 |
msgstr "Maximum"
|
2105 |
|
2106 |
# @ acf
|
2107 |
-
#: includes/fields/class-acf-field-file.php:
|
2108 |
#: includes/fields/class-acf-field-image.php:285
|
2109 |
#: pro/fields/class-acf-field-gallery.php:727
|
2110 |
msgid "Allowed file types"
|
2111 |
msgstr "Erlaubte Datei-Formate"
|
2112 |
|
2113 |
# @ acf
|
2114 |
-
#: includes/fields/class-acf-field-file.php:
|
2115 |
#: includes/fields/class-acf-field-image.php:286
|
2116 |
#: pro/fields/class-acf-field-gallery.php:728
|
2117 |
msgid "Comma separated list. Leave blank for all types"
|
2118 |
msgstr ""
|
2119 |
-
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind
|
|
|
2120 |
|
2121 |
# @ acf
|
2122 |
#: includes/fields/class-acf-field-google-map.php:25
|
@@ -2189,41 +2267,41 @@ msgstr "Legt die Höhe der Karte fest"
|
|
2189 |
#: includes/fields/class-acf-field-group.php:25
|
2190 |
msgid "Group"
|
2191 |
msgstr ""
|
2192 |
-
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses
|
2193 |
-
"an)"
|
2194 |
|
2195 |
# @ acf
|
2196 |
-
#: includes/fields/class-acf-field-group.php:
|
2197 |
#: pro/fields/class-acf-field-repeater.php:389
|
2198 |
msgid "Sub Fields"
|
2199 |
msgstr "Wiederholungsfelder"
|
2200 |
|
2201 |
-
#: includes/fields/class-acf-field-group.php:
|
2202 |
-
#: pro/fields/class-acf-field-clone.php:
|
2203 |
msgid "Specify the style used to render the selected fields"
|
2204 |
msgstr ""
|
2205 |
"Geben Sie den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2206 |
|
2207 |
# @ acf
|
2208 |
-
#: includes/fields/class-acf-field-group.php:
|
2209 |
-
#: pro/fields/class-acf-field-clone.php:
|
2210 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2211 |
#: pro/fields/class-acf-field-repeater.php:458
|
2212 |
msgid "Block"
|
2213 |
msgstr "Block"
|
2214 |
|
2215 |
# @ acf
|
2216 |
-
#: includes/fields/class-acf-field-group.php:
|
2217 |
-
#: pro/fields/class-acf-field-clone.php:
|
2218 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2219 |
#: pro/fields/class-acf-field-repeater.php:457
|
2220 |
msgid "Table"
|
2221 |
msgstr "Tabelle"
|
2222 |
|
2223 |
# @ acf
|
2224 |
-
#: includes/fields/class-acf-field-group.php:
|
2225 |
-
#: pro/fields/class-acf-field-clone.php:
|
2226 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2227 |
#: pro/fields/class-acf-field-repeater.php:459
|
2228 |
msgid "Row"
|
2229 |
msgstr "Reihe"
|
@@ -2297,7 +2375,8 @@ msgstr "Legt fest welche Maße die Vorschau in der Bearbeitungs-Ansicht hat"
|
|
2297 |
#: pro/fields/class-acf-field-gallery.php:699
|
2298 |
msgid "Restrict which images can be uploaded"
|
2299 |
msgstr ""
|
2300 |
-
"Erlaubt nur das Hochladen von Bildern die die angegebenen Eigenschaften
|
|
|
2301 |
|
2302 |
# @ acf
|
2303 |
#: includes/fields/class-acf-field-image.php:231
|
@@ -2311,12 +2390,12 @@ msgstr "Breite"
|
|
2311 |
# @ acf
|
2312 |
#: includes/fields/class-acf-field-link.php:25
|
2313 |
msgid "Link"
|
2314 |
-
msgstr "
|
2315 |
|
2316 |
# @ acf
|
2317 |
#: includes/fields/class-acf-field-link.php:133
|
2318 |
msgid "Select Link"
|
2319 |
-
msgstr "
|
2320 |
|
2321 |
#: includes/fields/class-acf-field-link.php:138
|
2322 |
msgid "Opens in a new window/tab"
|
@@ -2325,12 +2404,12 @@ msgstr "In einem neuen Fenster/Tab öffnen"
|
|
2325 |
# @ acf
|
2326 |
#: includes/fields/class-acf-field-link.php:172
|
2327 |
msgid "Link Array"
|
2328 |
-
msgstr "
|
2329 |
|
2330 |
# @ acf
|
2331 |
#: includes/fields/class-acf-field-link.php:173
|
2332 |
msgid "Link URL"
|
2333 |
-
msgstr "
|
2334 |
|
2335 |
# @ acf
|
2336 |
#: includes/fields/class-acf-field-message.php:25
|
@@ -2341,31 +2420,31 @@ msgstr "Nachricht"
|
|
2341 |
|
2342 |
# @ acf
|
2343 |
#: includes/fields/class-acf-field-message.php:110
|
2344 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2345 |
msgid "New Lines"
|
2346 |
msgstr "Neue Zeilen"
|
2347 |
|
2348 |
# @ acf
|
2349 |
#: includes/fields/class-acf-field-message.php:111
|
2350 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2351 |
msgid "Controls how new lines are rendered"
|
2352 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2353 |
|
2354 |
# @ acf
|
2355 |
#: includes/fields/class-acf-field-message.php:115
|
2356 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2357 |
msgid "Automatically add paragraphs"
|
2358 |
msgstr "Absätze automatisch hinzufügen"
|
2359 |
|
2360 |
# @ acf
|
2361 |
#: includes/fields/class-acf-field-message.php:116
|
2362 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2363 |
msgid "Automatically add <br>"
|
2364 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2365 |
|
2366 |
# @ acf
|
2367 |
#: includes/fields/class-acf-field-message.php:117
|
2368 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2369 |
msgid "No Formatting"
|
2370 |
msgstr "Keine Formatierung"
|
2371 |
|
@@ -2378,7 +2457,8 @@ msgstr "HTML enkodieren"
|
|
2378 |
#: includes/fields/class-acf-field-message.php:125
|
2379 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2380 |
msgstr ""
|
2381 |
-
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht
|
|
|
2382 |
|
2383 |
# @ acf
|
2384 |
#: includes/fields/class-acf-field-number.php:25
|
@@ -2386,36 +2466,36 @@ msgid "Number"
|
|
2386 |
msgstr "Numerisch"
|
2387 |
|
2388 |
# @ acf
|
2389 |
-
#: includes/fields/class-acf-field-number.php:
|
2390 |
-
#: includes/fields/class-acf-field-range.php:
|
2391 |
msgid "Minimum Value"
|
2392 |
msgstr "Mindestwert"
|
2393 |
|
2394 |
# @ acf
|
2395 |
-
#: includes/fields/class-acf-field-number.php:
|
2396 |
-
#: includes/fields/class-acf-field-range.php:
|
2397 |
msgid "Maximum Value"
|
2398 |
msgstr "Maximalwert"
|
2399 |
|
2400 |
# @ acf
|
2401 |
-
#: includes/fields/class-acf-field-number.php:
|
2402 |
-
#: includes/fields/class-acf-field-range.php:
|
2403 |
msgid "Step Size"
|
2404 |
msgstr "Schrittweite"
|
2405 |
|
2406 |
# @ acf
|
2407 |
-
#: includes/fields/class-acf-field-number.php:
|
2408 |
msgid "Value must be a number"
|
2409 |
msgstr "Wert muss eine Zahl sein"
|
2410 |
|
2411 |
# @ acf
|
2412 |
-
#: includes/fields/class-acf-field-number.php:
|
2413 |
#, php-format
|
2414 |
msgid "Value must be equal to or higher than %d"
|
2415 |
msgstr "Wert muss größer oder gleich %d sein"
|
2416 |
|
2417 |
# @ acf
|
2418 |
-
#: includes/fields/class-acf-field-number.php:
|
2419 |
#, php-format
|
2420 |
msgid "Value must be equal to or lower than %d"
|
2421 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
@@ -2451,6 +2531,12 @@ msgstr "Maße"
|
|
2451 |
msgid "Archives"
|
2452 |
msgstr "Archive"
|
2453 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2454 |
# @ acf
|
2455 |
#: includes/fields/class-acf-field-page_link.php:485
|
2456 |
#: includes/fields/class-acf-field-post_object.php:384
|
@@ -2479,16 +2565,6 @@ msgstr "Nach Taxonomien filtern"
|
|
2479 |
msgid "All taxonomies"
|
2480 |
msgstr "Alle Taxonomien"
|
2481 |
|
2482 |
-
# @ acf
|
2483 |
-
#: includes/fields/class-acf-field-page_link.php:513
|
2484 |
-
#: includes/fields/class-acf-field-post_object.php:412
|
2485 |
-
#: includes/fields/class-acf-field-radio.php:244
|
2486 |
-
#: includes/fields/class-acf-field-select.php:386
|
2487 |
-
#: includes/fields/class-acf-field-taxonomy.php:793
|
2488 |
-
#: includes/fields/class-acf-field-user.php:408
|
2489 |
-
msgid "Allow Null?"
|
2490 |
-
msgstr "NULL-Werte zulassen?"
|
2491 |
-
|
2492 |
#: includes/fields/class-acf-field-page_link.php:523
|
2493 |
msgid "Allow Archives URLs"
|
2494 |
msgstr "Archiv-URL's zulassen"
|
@@ -2647,15 +2723,16 @@ msgstr "Auswahl"
|
|
2647 |
msgctxt "Select2 JS matches_1"
|
2648 |
msgid "One result is available, press enter to select it."
|
2649 |
msgstr ""
|
2650 |
-
"Es ist ein Ergebnis verfügbar, drücken Sie die Eingabetaste um es
|
|
|
2651 |
|
2652 |
#: includes/fields/class-acf-field-select.php:39
|
2653 |
#, php-format
|
2654 |
msgctxt "Select2 JS matches_n"
|
2655 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2656 |
msgstr ""
|
2657 |
-
"Es sind %d Ergebnisse verfügbar, benutzen Sie die Pfeiltasten um nach oben
|
2658 |
-
"unten zu navigieren."
|
2659 |
|
2660 |
#: includes/fields/class-acf-field-select.php:40
|
2661 |
msgctxt "Select2 JS matches_0"
|
@@ -2724,7 +2801,7 @@ msgstr "Modernes Auswahlfeld"
|
|
2724 |
# @ acf
|
2725 |
#: includes/fields/class-acf-field-select.php:416
|
2726 |
msgid "Use AJAX to lazy load choices?"
|
2727 |
-
msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu
|
2728 |
|
2729 |
#: includes/fields/class-acf-field-select.php:427
|
2730 |
msgid "Specify the value returned"
|
@@ -2740,45 +2817,17 @@ msgid "Tab"
|
|
2740 |
msgstr "Tab"
|
2741 |
|
2742 |
# @ acf
|
2743 |
-
#: includes/fields/class-acf-field-tab.php:
|
2744 |
-
msgid ""
|
2745 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
2746 |
-
"field or flexible content field layout"
|
2747 |
-
msgstr ""
|
2748 |
-
"Ein Tab-Feld wird nicht korrekt dargestellt, wenn es zu einem Wiederholung- "
|
2749 |
-
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2750 |
-
|
2751 |
-
# @ acf
|
2752 |
-
#: includes/fields/class-acf-field-tab.php:83
|
2753 |
-
msgid ""
|
2754 |
-
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2755 |
-
"together."
|
2756 |
-
msgstr ""
|
2757 |
-
"Mit \"Tab Feldern\" können Felder für eine bessere Struktur im Editor in Tabs "
|
2758 |
-
"zusammengefasst werden."
|
2759 |
-
|
2760 |
-
# @ acf
|
2761 |
-
#: includes/fields/class-acf-field-tab.php:84
|
2762 |
-
msgid ""
|
2763 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2764 |
-
"defined) will be grouped together using this field's label as the tab heading."
|
2765 |
-
msgstr ""
|
2766 |
-
"Alle Felder, die auf dieses \"Tab Feld\" folgen (oder bis ein weiteres \"Tab "
|
2767 |
-
"Feld\" definiert ist), werden in einem Tab mit dem Namen dieses Felds "
|
2768 |
-
"zusammengefasst."
|
2769 |
-
|
2770 |
-
# @ acf
|
2771 |
-
#: includes/fields/class-acf-field-tab.php:98
|
2772 |
msgid "Placement"
|
2773 |
msgstr "Platzierung Tabs"
|
2774 |
|
2775 |
-
#: includes/fields/class-acf-field-tab.php:
|
2776 |
-
msgid "
|
2777 |
-
|
2778 |
-
|
2779 |
-
|
2780 |
-
|
2781 |
-
|
2782 |
|
2783 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
2784 |
#, php-format
|
@@ -2892,14 +2941,14 @@ msgid "Text"
|
|
2892 |
msgstr "Text einzeilig"
|
2893 |
|
2894 |
# @ acf
|
2895 |
-
#: includes/fields/class-acf-field-text.php:
|
2896 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2897 |
msgid "Character Limit"
|
2898 |
msgstr "Zeichenbegrenzung"
|
2899 |
|
2900 |
# @ acf
|
2901 |
-
#: includes/fields/class-acf-field-text.php:
|
2902 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2903 |
msgid "Leave blank for no limit"
|
2904 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2905 |
|
@@ -2909,12 +2958,12 @@ msgid "Text Area"
|
|
2909 |
msgstr "Text mehrzeilig"
|
2910 |
|
2911 |
# @ acf
|
2912 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2913 |
msgid "Rows"
|
2914 |
msgstr "Zeilenanzahl"
|
2915 |
|
2916 |
# @ acf
|
2917 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2918 |
msgid "Sets the textarea height"
|
2919 |
msgstr "Definiert die Höhe des Textfelds"
|
2920 |
|
@@ -2967,7 +3016,7 @@ msgid "Url"
|
|
2967 |
msgstr "URL"
|
2968 |
|
2969 |
# @ acf
|
2970 |
-
#: includes/fields/class-acf-field-url.php:
|
2971 |
msgid "Value must be a valid URL"
|
2972 |
msgstr "Bitte eine gültige URL eingeben"
|
2973 |
|
@@ -2992,55 +3041,55 @@ msgid "Wysiwyg Editor"
|
|
2992 |
msgstr "WYSIWYG-Editor"
|
2993 |
|
2994 |
# @ acf
|
2995 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2996 |
msgid "Visual"
|
2997 |
msgstr "Visuell"
|
2998 |
|
2999 |
# @ acf
|
3000 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3001 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3002 |
msgid "Text"
|
3003 |
msgstr "Text"
|
3004 |
|
3005 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3006 |
msgid "Click to initialize TinyMCE"
|
3007 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3008 |
|
3009 |
# @ acf
|
3010 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3011 |
msgid "Tabs"
|
3012 |
msgstr "Tabs"
|
3013 |
|
3014 |
# @ acf
|
3015 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3016 |
msgid "Visual & Text"
|
3017 |
msgstr "Visuell & Text"
|
3018 |
|
3019 |
# @ acf
|
3020 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3021 |
msgid "Visual Only"
|
3022 |
msgstr "Nur Visuell"
|
3023 |
|
3024 |
# @ acf
|
3025 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3026 |
msgid "Text Only"
|
3027 |
msgstr "Nur Text"
|
3028 |
|
3029 |
# @ acf
|
3030 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3031 |
msgid "Toolbar"
|
3032 |
msgstr "Werkzeugleiste"
|
3033 |
|
3034 |
# @ acf
|
3035 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3036 |
msgid "Show Media Upload Buttons?"
|
3037 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3038 |
|
3039 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3040 |
msgid "Delay initialization?"
|
3041 |
msgstr "Initialisierung verzögern?"
|
3042 |
|
3043 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3044 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3045 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3046 |
|
@@ -3055,8 +3104,8 @@ msgid "Validate Email"
|
|
3055 |
msgstr "E-Mail bestätigen"
|
3056 |
|
3057 |
# @ acf
|
3058 |
-
#: includes/forms/form-front.php:103
|
3059 |
-
#: pro/options-page.php:81
|
3060 |
msgid "Update"
|
3061 |
msgstr "Aktualisieren"
|
3062 |
|
@@ -3065,7 +3114,7 @@ msgstr "Aktualisieren"
|
|
3065 |
msgid "Post updated"
|
3066 |
msgstr "Beitrag aktualisiert"
|
3067 |
|
3068 |
-
#: includes/forms/form-front.php:
|
3069 |
msgid "Spam Detected"
|
3070 |
msgstr "Spam entdeckt"
|
3071 |
|
@@ -3085,7 +3134,8 @@ msgid "Validation successful"
|
|
3085 |
msgstr "Überprüfung erfolgreich"
|
3086 |
|
3087 |
# @ acf
|
3088 |
-
#: includes/input.php:262 includes/validation.php:285
|
|
|
3089 |
msgid "Validation failed"
|
3090 |
msgstr "Überprüfung fehlgeschlagen"
|
3091 |
|
@@ -3107,7 +3157,7 @@ msgstr "Eingeschränkt"
|
|
3107 |
# @ acf
|
3108 |
#: includes/input.php:266
|
3109 |
msgid "Are you sure?"
|
3110 |
-
msgstr "Wirklich
|
3111 |
|
3112 |
#: includes/input.php:270
|
3113 |
msgid "Cancel"
|
@@ -3325,14 +3375,15 @@ msgid ""
|
|
3325 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
3326 |
"Custom Field Group</a>"
|
3327 |
msgstr ""
|
3328 |
-
"Keine Feld-Gruppen für die Options-Seite gefunden. <a href=\"%s\">Erstelle
|
3329 |
-
"Feld-Gruppe</a>"
|
3330 |
|
3331 |
# @ acf
|
3332 |
#: pro/admin/admin-settings-updates.php:78
|
3333 |
msgid "<b>Error</b>. Could not connect to update server"
|
3334 |
msgstr ""
|
3335 |
-
"<b>Fehler</b>. Es konnte keine Verbindung zum Update-Server hergestellt
|
|
|
3336 |
|
3337 |
# @ acf
|
3338 |
#: pro/admin/admin-settings-updates.php:162
|
@@ -3358,11 +3409,13 @@ msgstr "Lizenzinformation"
|
|
3358 |
#, php-format
|
3359 |
msgid ""
|
3360 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3361 |
-
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</
|
|
|
3362 |
msgstr ""
|
3363 |
"Um die Update-Fähigkeit freizuschalten geben Sie bitte unten Ihren "
|
3364 |
-
"Lizenzschlüssel ein. Falls Sie keinen besitzen informieren Sie sich bitte
|
3365 |
-
"hinsichtlich der <a href=\"%s\" target=\"_blank\">Preise und
|
|
|
3366 |
|
3367 |
# @ acf
|
3368 |
#: pro/admin/views/html-settings-updates.php:29
|
@@ -3416,56 +3469,56 @@ msgctxt "noun"
|
|
3416 |
msgid "Clone"
|
3417 |
msgstr "Klon"
|
3418 |
|
3419 |
-
#: pro/fields/class-acf-field-clone.php:
|
3420 |
msgid "Select one or more fields you wish to clone"
|
3421 |
msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten"
|
3422 |
|
3423 |
# @ acf
|
3424 |
-
#: pro/fields/class-acf-field-clone.php:
|
3425 |
msgid "Display"
|
3426 |
msgstr "Anzeige"
|
3427 |
|
3428 |
-
#: pro/fields/class-acf-field-clone.php:
|
3429 |
msgid "Specify the style used to render the clone field"
|
3430 |
msgstr "Geben Sie den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3431 |
|
3432 |
-
#: pro/fields/class-acf-field-clone.php:
|
3433 |
msgid "Group (displays selected fields in a group within this field)"
|
3434 |
msgstr ""
|
3435 |
-
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses
|
3436 |
-
"an)"
|
3437 |
|
3438 |
-
#: pro/fields/class-acf-field-clone.php:
|
3439 |
msgid "Seamless (replaces this field with selected fields)"
|
3440 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3441 |
|
3442 |
-
#: pro/fields/class-acf-field-clone.php:
|
3443 |
#, php-format
|
3444 |
msgid "Labels will be displayed as %s"
|
3445 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3446 |
|
3447 |
-
#: pro/fields/class-acf-field-clone.php:
|
3448 |
msgid "Prefix Field Labels"
|
3449 |
msgstr "Präfix für Feld-Beschriftungen"
|
3450 |
|
3451 |
-
#: pro/fields/class-acf-field-clone.php:
|
3452 |
#, php-format
|
3453 |
msgid "Values will be saved as %s"
|
3454 |
msgstr "Werte werden als %s gespeichert"
|
3455 |
|
3456 |
-
#: pro/fields/class-acf-field-clone.php:
|
3457 |
msgid "Prefix Field Names"
|
3458 |
msgstr "Präfix für Feld-Namen"
|
3459 |
|
3460 |
-
#: pro/fields/class-acf-field-clone.php:
|
3461 |
msgid "Unknown field"
|
3462 |
msgstr "Unbekanntes Feld"
|
3463 |
|
3464 |
-
#: pro/fields/class-acf-field-clone.php:
|
3465 |
msgid "Unknown field group"
|
3466 |
msgstr "Unbekannte Feld-Gruppe"
|
3467 |
|
3468 |
-
#: pro/fields/class-acf-field-clone.php:
|
3469 |
#, php-format
|
3470 |
msgid "All fields from %s field group"
|
3471 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
@@ -3549,53 +3602,53 @@ msgid "Click to toggle"
|
|
3549 |
msgstr "Zum Auswählen anklicken"
|
3550 |
|
3551 |
# @ acf
|
3552 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3553 |
msgid "Reorder Layout"
|
3554 |
msgstr "Layout sortieren"
|
3555 |
|
3556 |
# @ acf
|
3557 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3558 |
msgid "Reorder"
|
3559 |
msgstr "Sortieren"
|
3560 |
|
3561 |
# @ acf
|
3562 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3563 |
msgid "Delete Layout"
|
3564 |
msgstr "Layout löschen"
|
3565 |
|
3566 |
# @ acf
|
3567 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3568 |
msgid "Duplicate Layout"
|
3569 |
msgstr "Layout duplizieren"
|
3570 |
|
3571 |
# @ acf
|
3572 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3573 |
msgid "Add New Layout"
|
3574 |
msgstr "Neues Layout hinzufügen"
|
3575 |
|
3576 |
# @ acf
|
3577 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3578 |
msgid "Min"
|
3579 |
msgstr "Min"
|
3580 |
|
3581 |
# @ acf
|
3582 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3583 |
msgid "Max"
|
3584 |
msgstr "Max"
|
3585 |
|
3586 |
# @ acf
|
3587 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3588 |
#: pro/fields/class-acf-field-repeater.php:466
|
3589 |
msgid "Button Label"
|
3590 |
msgstr "Button-Beschriftung"
|
3591 |
|
3592 |
# @ acf
|
3593 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3594 |
msgid "Minimum Layouts"
|
3595 |
msgstr "Minimum Layouts"
|
3596 |
|
3597 |
# @ acf
|
3598 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3599 |
msgid "Maximum Layouts"
|
3600 |
msgstr "Maximum Layouts"
|
3601 |
|
@@ -3741,14 +3794,14 @@ msgstr "Optionen aktualisiert"
|
|
3741 |
#: pro/updates.php:97
|
3742 |
#, php-format
|
3743 |
msgid ""
|
3744 |
-
"To enable updates, please enter your license key on the <a href=\"%s
|
3745 |
-
"a> page. If you don't have a licence key, please see <a href=\"%s
|
3746 |
-
"pricing</a>."
|
3747 |
msgstr ""
|
3748 |
"Um die Update-Fähigkeit freizuschalten geben Sie bitte Ihren Lizenzschlüssel "
|
3749 |
"auf der <a href=\"%s\">Aktualisierungen</a> Seite ein. Falls Sie keinen "
|
3750 |
-
"besitzen informieren Sie sich bitte hier hinsichtlich der <a href=\"%s\"
|
3751 |
-
"
|
3752 |
|
3753 |
#. Plugin URI of the plugin/theme
|
3754 |
msgid "https://www.advancedcustomfields.com/"
|
@@ -3763,6 +3816,49 @@ msgstr "Elliot Condon"
|
|
3763 |
msgid "http://www.elliotcondon.com/"
|
3764 |
msgstr "http://www.elliotcondon.com/"
|
3765 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3766 |
# @ acf
|
3767 |
#~ msgid "Getting Started"
|
3768 |
#~ msgstr "Erste Schritte"
|
@@ -3794,8 +3890,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3794 |
|
3795 |
#~ msgid "Term meta upgrade not possible (termmeta table does not exist)"
|
3796 |
#~ msgstr ""
|
3797 |
-
#~ "Term Meta-Aktualisierung war nicht möglich (die termmeta-Tabelle
|
3798 |
-
#~ "nicht)"
|
3799 |
|
3800 |
# @ acf
|
3801 |
#~ msgid "Error"
|
@@ -3810,8 +3906,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3810 |
#~ "Error validating ACF PRO license URL (website does not match). Please re-"
|
3811 |
#~ "activate your license"
|
3812 |
#~ msgstr ""
|
3813 |
-
#~ "Fehler bei der Überprüfung der ACF PRO Lizenz URL (Webseiten stimmen
|
3814 |
-
#~ "überein). Bitte reaktivieren sie ihre Lizenz"
|
3815 |
|
3816 |
#~ msgid "Disabled"
|
3817 |
#~ msgstr "Deaktiviert"
|
@@ -3844,8 +3940,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3844 |
#~ "Error validating license URL (website does not match). Please re-activate "
|
3845 |
#~ "your license"
|
3846 |
#~ msgstr ""
|
3847 |
-
#~ "Fehler bei der Überprüfung der Lizenz-URL (Webseite stimmt nicht
|
3848 |
-
#~ "Bitte reaktivieren Sie ihre Lizenz"
|
3849 |
|
3850 |
# @ acf
|
3851 |
#~ msgid "<b>Success</b>. Import tool added %s field groups: %s"
|
@@ -3853,11 +3949,11 @@ msgstr "http://www.elliotcondon.com/"
|
|
3853 |
|
3854 |
# @ acf
|
3855 |
#~ msgid ""
|
3856 |
-
#~ "<b>Warning</b>. Import tool detected %s field groups already exist and
|
3857 |
-
#~ "been ignored: %s"
|
3858 |
#~ msgstr ""
|
3859 |
-
#~ "<b>Warnung</b>. Der Import hat %s Feld-Gruppen erkannt, die schon
|
3860 |
-
#~ "sind und diese ignoriert: %s"
|
3861 |
|
3862 |
# @ acf
|
3863 |
#~ msgid "Upgrade ACF"
|
@@ -3869,11 +3965,11 @@ msgstr "http://www.elliotcondon.com/"
|
|
3869 |
|
3870 |
# @ acf
|
3871 |
#~ msgid ""
|
3872 |
-
#~ "The following sites require a DB upgrade. Check the ones you want to
|
3873 |
-
#~ "and then click “Upgrade Database”."
|
3874 |
#~ msgstr ""
|
3875 |
-
#~ "Die folgenden Seiten erfordern eine Datenbank- Aktualisierung. Markieren
|
3876 |
-
#~ "die gewünschten Seiten und klicken \\\"Aktualisiere Datenbank\\\"."
|
3877 |
|
3878 |
# @ acf
|
3879 |
#~ msgid "Select"
|
@@ -3882,8 +3978,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3882 |
# @ acf
|
3883 |
#~ msgid "<b>Connection Error</b>. Sorry, please try again"
|
3884 |
#~ msgstr ""
|
3885 |
-
#~ "<b>Verbindungsfehler</b>. Entschuldigung, versuchen Sie es bitte später
|
3886 |
-
#~ "einmal"
|
3887 |
|
3888 |
# @ acf
|
3889 |
#~ msgid "Done"
|
@@ -3934,8 +4030,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3934 |
|
3935 |
# @ acf
|
3936 |
#~ msgid ""
|
3937 |
-
#~ "To unlock updates, please enter your license key below. If you don't have
|
3938 |
-
#~ "licence key, please see"
|
3939 |
#~ msgstr ""
|
3940 |
#~ "Um die Aktualisierungs-Fähigkeit freizuschalten, tragen Sie bitte Ihren "
|
3941 |
#~ "Lizenzschlüssel im darunterliegenden Feld ein. Sollten Sie noch keinen "
|
@@ -3948,13 +4044,13 @@ msgstr "http://www.elliotcondon.com/"
|
|
3948 |
# @ acf
|
3949 |
#~ msgid ""
|
3950 |
#~ "To enable updates, please enter your license key on the <a href=\"%s"
|
3951 |
-
#~ "\">Updates</a> page. If you don't have a licence key, please see <a href
|
3952 |
-
#~ "\">details & pricing</a>"
|
3953 |
#~ msgstr ""
|
3954 |
#~ "Um die Aktualisierungen freizuschalten, tragen Sie bitte Ihren "
|
3955 |
#~ "Lizenzschlüssel auf der <a href=\"%s\">Aktualisierungen</a>-Seite ein. "
|
3956 |
-
#~ "Sollten Sie noch keinen Lizenzschlüssel besitzen, informieren Sie sich
|
3957 |
-
#~ "hier über die <a href=\"%s\">Details und Preise</a>"
|
3958 |
|
3959 |
# @ acf
|
3960 |
#~ msgid "Advanced Custom Fields Pro"
|
@@ -3984,7 +4080,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3984 |
#~ msgstr "Synchronisierung verfügbar"
|
3985 |
|
3986 |
# @ acf
|
3987 |
-
#~ msgid "
|
|
|
3988 |
#~ msgstr ""
|
3989 |
#~ "Bitte beachten Sie, dass der gesamte Text zuerst durch eine WordPress "
|
3990 |
#~ "Funktion gefiltert wird. Siehe: "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Custom Fields Pro v5.6.7 Formal\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2017-12-13 02:11+0100\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
# @ acf
|
26 |
+
#: acf.php:67
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
+
#: acf.php:369 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
+
#: acf.php:370
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
+
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
42 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
+
#: acf.php:372
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
+
#: acf.php:373
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
+
#: acf.php:374
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
+
#: acf.php:375
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
+
#: acf.php:376
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
+
#: acf.php:377
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
+
#: acf.php:378
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
+
#: acf.php:401 includes/admin/admin-field-group.php:182
|
83 |
#: includes/admin/admin-field-group.php:275
|
84 |
#: includes/admin/admin-field-groups.php:510
|
85 |
+
#: pro/fields/class-acf-field-clone.php:807
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
+
#: acf.php:402
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
+
#: acf.php:404
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
+
#: acf.php:405
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
+
#: acf.php:406 includes/admin/views/field-group-fields.php:41
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Neues Feld"
|
109 |
|
110 |
# @ acf
|
111 |
+
#: acf.php:407
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
+
#: acf.php:408
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
+
#: acf.php:409
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
+
#: acf.php:410
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
+
#: acf.php:449 includes/admin/admin-field-group.php:390
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inaktiv"
|
134 |
|
135 |
+
#: acf.php:454
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
182 |
msgstr "Position"
|
183 |
|
184 |
#: includes/admin/admin-field-group.php:184
|
185 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:295
|
186 |
msgid "Settings"
|
187 |
msgstr "Einstellungen"
|
188 |
|
207 |
msgstr "Es ist ein Titel für die Feld-Gruppe erforderlich"
|
208 |
|
209 |
# @ acf
|
210 |
+
#: includes/admin/admin-field-group.php:273
|
211 |
+
#: includes/api/api-field-group.php:751
|
212 |
msgid "copy"
|
213 |
msgstr "kopieren"
|
214 |
|
218 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
219 |
#: includes/admin/views/field-group-locations.php:29
|
220 |
#: includes/admin/views/html-location-group.php:3
|
221 |
+
#: includes/api/api-helpers.php:3981
|
222 |
msgid "or"
|
223 |
msgstr "oder"
|
224 |
|
358 |
#: includes/admin/admin-field-groups.php:607
|
359 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
360 |
msgstr ""
|
361 |
+
"WordPress durch leistungsfähige, professionelle und zugleich intuitive "
|
362 |
+
"Felder erweitern."
|
363 |
|
364 |
# @ acf
|
365 |
+
#: includes/admin/admin-field-groups.php:609
|
366 |
+
#: includes/admin/settings-info.php:76
|
367 |
#: pro/admin/views/html-settings-updates.php:107
|
368 |
msgid "Changelog"
|
369 |
msgstr "Versionshinweise"
|
400 |
msgstr "Danke für das Vertrauen in <a href=\"%s\">ACF</a>."
|
401 |
|
402 |
# @ acf
|
403 |
+
#: includes/admin/admin-field-groups.php:667
|
404 |
msgid "Duplicate this item"
|
405 |
msgstr "Dieses Element duplizieren"
|
406 |
|
407 |
# @ acf
|
408 |
+
#: includes/admin/admin-field-groups.php:667
|
409 |
+
#: includes/admin/admin-field-groups.php:683
|
410 |
#: includes/admin/views/field-group-field.php:49
|
411 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
412 |
msgid "Duplicate"
|
413 |
msgstr "Duplizieren"
|
414 |
|
415 |
# @ acf
|
416 |
+
#: includes/admin/admin-field-groups.php:700
|
417 |
#: includes/fields/class-acf-field-google-map.php:112
|
418 |
#: includes/fields/class-acf-field-relationship.php:656
|
419 |
msgid "Search"
|
420 |
msgstr "Suchen"
|
421 |
|
422 |
# @ acf
|
423 |
+
#: includes/admin/admin-field-groups.php:759
|
424 |
#, php-format
|
425 |
msgid "Select %s"
|
426 |
msgstr "%s auswählen"
|
427 |
|
428 |
# @ acf
|
429 |
+
#: includes/admin/admin-field-groups.php:767
|
430 |
msgid "Synchronise field group"
|
431 |
msgstr "Synchronisiere Feld-Gruppe"
|
432 |
|
433 |
# @ acf
|
434 |
+
#: includes/admin/admin-field-groups.php:767
|
435 |
+
#: includes/admin/admin-field-groups.php:797
|
436 |
msgid "Sync"
|
437 |
msgstr "Synchronisieren"
|
438 |
|
439 |
+
#: includes/admin/admin-field-groups.php:779
|
440 |
msgid "Apply"
|
441 |
msgstr "Anwenden"
|
442 |
|
443 |
# @ acf
|
444 |
+
#: includes/admin/admin-field-groups.php:797
|
445 |
msgid "Bulk Actions"
|
446 |
msgstr "Massenverarbeitung"
|
447 |
|
448 |
+
#: includes/admin/admin-tools.php:116
|
449 |
+
#: includes/admin/views/html-admin-tools.php:21
|
450 |
+
msgid "Tools"
|
451 |
+
msgstr "Werkzeuge"
|
452 |
+
|
453 |
# @ acf
|
454 |
+
#: includes/admin/admin.php:113
|
455 |
+
#: includes/admin/views/field-group-options.php:118
|
456 |
msgid "Custom Fields"
|
457 |
msgstr "Eigene Felder"
|
458 |
|
497 |
msgid "What's New"
|
498 |
msgstr "Was gibt es Neues"
|
499 |
|
500 |
+
# @ acf
|
501 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:33
|
502 |
+
msgid "Export Field Groups"
|
503 |
+
msgstr "Feld-Gruppen exportieren"
|
504 |
+
|
505 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:38
|
506 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:342
|
507 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:371
|
508 |
+
msgid "Generate PHP"
|
509 |
+
msgstr "PHP erstellen"
|
510 |
|
511 |
# @ acf
|
512 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:97
|
513 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:135
|
514 |
msgid "No field groups selected"
|
515 |
msgstr "Keine Feld-Gruppe ausgewählt"
|
516 |
|
517 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:174
|
518 |
+
#, php-format
|
519 |
+
msgid "Exported 1 field group."
|
520 |
+
msgid_plural "Exported %s field groups."
|
521 |
+
msgstr[0] "Eine Feld-Gruppe wurde exportiert."
|
522 |
+
msgstr[1] "%s Feld-Gruppen wurden exportiert."
|
523 |
+
|
524 |
+
# @ acf
|
525 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:241
|
526 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:269
|
527 |
+
msgid "Select Field Groups"
|
528 |
+
msgstr "Felder-Gruppen auswählen"
|
529 |
+
|
530 |
+
# @ acf
|
531 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:336
|
532 |
+
msgid ""
|
533 |
+
"Select the field groups you would like to export and then select your export "
|
534 |
+
"method. Use the download button to export to a .json file which you can then "
|
535 |
+
"import to another ACF installation. Use the generate button to export to PHP "
|
536 |
+
"code which you can place in your theme."
|
537 |
+
msgstr ""
|
538 |
+
"Entscheiden Sie zuerst welche Felder-Gruppen Sie exportieren möchten und "
|
539 |
+
"wählen im Anschluss das Format in das exportiert werden soll. Klicken Sie "
|
540 |
+
"den \"JSON-Datei exportieren\"-Button, um eine JSON-Datei zu erhalten, "
|
541 |
+
"welche Sie dann in einer anderen ACF-Installation importieren können. Wählen "
|
542 |
+
"Sie den \"Erstelle PHP-Code\"-Button, um PHP-Code zu erhalten, den Sie im "
|
543 |
+
"Anschluss in der functions.php Ihres Themes einfügen können."
|
544 |
+
|
545 |
# @ acf
|
546 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:341
|
547 |
+
msgid "Export File"
|
548 |
+
msgstr "Datei exportieren"
|
549 |
+
|
550 |
+
# @ acf
|
551 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:414
|
552 |
+
msgid ""
|
553 |
+
"The following code can be used to register a local version of the selected "
|
554 |
+
"field group(s). A local field group can provide many benefits such as faster "
|
555 |
+
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
556 |
+
"the following code to your theme's functions.php file or include it within "
|
557 |
+
"an external file."
|
558 |
+
msgstr ""
|
559 |
+
"Der nachfolgende Code kann dazu verwendet werden eine lokale Version der "
|
560 |
+
"ausgewählten Feld-Gruppe(n) zu registrieren. Eine lokale Feld-Gruppe bietet "
|
561 |
+
"viele Vorteile; schnellere Ladezeiten, Versionskontrolle sowie dynamische "
|
562 |
+
"Felder und Einstellungen. Kopieren Sie einfach folgenden Code und füge ihn "
|
563 |
+
"in die functions.php oder eine externe Datei in Ihrem Theme ein."
|
564 |
+
|
565 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:446
|
566 |
+
msgid "Copy to clipboard"
|
567 |
+
msgstr "In die Zwischenablage kopieren"
|
568 |
+
|
569 |
+
# @ acf
|
570 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:26
|
571 |
+
msgid "Import Field Groups"
|
572 |
+
msgstr "Feld-Gruppen importieren"
|
573 |
+
|
574 |
+
# @ acf
|
575 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:61
|
576 |
+
msgid ""
|
577 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
578 |
+
"you click the import button below, ACF will import the field groups."
|
579 |
+
msgstr ""
|
580 |
+
"Wählen Sie die Advanced Custom Fields JSON-Datei aus, welche Sie importieren "
|
581 |
+
"möchten. Nach dem Klicken des Importieren-Buttons wird ACF die Felder-"
|
582 |
+
"Gruppen hinzufügen."
|
583 |
+
|
584 |
+
# @ acf
|
585 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:66
|
586 |
+
#: includes/fields/class-acf-field-file.php:35
|
587 |
+
msgid "Select File"
|
588 |
+
msgstr "Datei auswählen"
|
589 |
+
|
590 |
+
# @ acf
|
591 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:76
|
592 |
+
msgid "Import File"
|
593 |
+
msgstr "Datei importieren"
|
594 |
+
|
595 |
+
# @ acf
|
596 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:100
|
597 |
+
#: includes/fields/class-acf-field-file.php:159
|
598 |
msgid "No file selected"
|
599 |
msgstr "Keine Datei ausgewählt"
|
600 |
|
601 |
# @ acf
|
602 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:113
|
603 |
msgid "Error uploading file. Please try again"
|
604 |
msgstr "Fehler beim Upload der Datei. Bitte versuchen Sie es erneut"
|
605 |
|
606 |
# @ acf
|
607 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:122
|
608 |
msgid "Incorrect file type"
|
609 |
msgstr "Falscher Dateityp"
|
610 |
|
611 |
# @ acf
|
612 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:139
|
613 |
msgid "Import file empty"
|
614 |
msgstr "Die importierte Datei ist leer"
|
615 |
|
616 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:247
|
617 |
#, php-format
|
618 |
msgid "Imported 1 field group"
|
619 |
msgid_plural "Imported %s field groups"
|
669 |
|
670 |
# @ acf
|
671 |
#: includes/admin/views/field-group-field.php:48
|
672 |
+
#: includes/fields/class-acf-field-file.php:141
|
673 |
#: includes/fields/class-acf-field-image.php:122
|
674 |
#: includes/fields/class-acf-field-link.php:139
|
675 |
#: pro/fields/class-acf-field-gallery.php:342
|
698 |
|
699 |
# @ acf
|
700 |
#: includes/admin/views/field-group-field.php:51
|
701 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
702 |
msgid "Delete"
|
703 |
msgstr "Löschen"
|
704 |
|
713 |
msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt"
|
714 |
|
715 |
# @ acf
|
716 |
+
#: includes/admin/views/field-group-field.php:77
|
717 |
msgid "Field Name"
|
718 |
msgstr "Feld-Name"
|
719 |
|
720 |
# @ acf
|
721 |
+
#: includes/admin/views/field-group-field.php:78
|
722 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
723 |
msgstr ""
|
724 |
"Nur ein Wort ohne Leerzeichen; es sind nur Unterstriche und Bindestriche als "
|
725 |
"Sonderzeichen erlaubt"
|
726 |
|
727 |
# @ acf
|
728 |
+
#: includes/admin/views/field-group-field.php:87
|
729 |
msgid "Field Type"
|
730 |
msgstr "Feld-Typ"
|
731 |
|
732 |
# @ acf
|
733 |
+
#: includes/admin/views/field-group-field.php:98
|
|
|
734 |
msgid "Instructions"
|
735 |
msgstr "Anweisungen"
|
736 |
|
737 |
# @ acf
|
738 |
+
#: includes/admin/views/field-group-field.php:99
|
739 |
msgid "Instructions for authors. Shown when submitting data"
|
740 |
msgstr "Anweisungen für Autoren werden in der Bearbeitungs-Ansicht angezeigt"
|
741 |
|
742 |
# @ acf
|
743 |
+
#: includes/admin/views/field-group-field.php:108
|
744 |
msgid "Required?"
|
745 |
msgstr "Erforderlich?"
|
746 |
|
747 |
# @ acf
|
748 |
+
#: includes/admin/views/field-group-field.php:131
|
749 |
msgid "Wrapper Attributes"
|
750 |
msgstr "Wrapper-Attribute"
|
751 |
|
752 |
# @ acf
|
753 |
+
#: includes/admin/views/field-group-field.php:137
|
754 |
msgid "width"
|
755 |
msgstr "Breite"
|
756 |
|
757 |
# @ acf
|
758 |
+
#: includes/admin/views/field-group-field.php:152
|
759 |
msgid "class"
|
760 |
msgstr "Klasse"
|
761 |
|
762 |
# @ acf
|
763 |
+
#: includes/admin/views/field-group-field.php:165
|
764 |
msgid "id"
|
765 |
msgstr "ID"
|
766 |
|
767 |
# @ acf
|
768 |
+
#: includes/admin/views/field-group-field.php:177
|
769 |
msgid "Close Field"
|
770 |
msgstr "Feld schließen"
|
771 |
|
776 |
|
777 |
# @ acf
|
778 |
#: includes/admin/views/field-group-fields.php:5
|
779 |
+
#: includes/fields/class-acf-field-button-group.php:198
|
780 |
#: includes/fields/class-acf-field-checkbox.php:415
|
781 |
#: includes/fields/class-acf-field-radio.php:306
|
782 |
#: includes/fields/class-acf-field-select.php:432
|
783 |
+
#: pro/fields/class-acf-field-flexible-content.php:584
|
784 |
msgid "Label"
|
785 |
msgstr "Name"
|
786 |
|
787 |
# @ acf
|
788 |
#: includes/admin/views/field-group-fields.php:6
|
789 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
790 |
+
#: pro/fields/class-acf-field-flexible-content.php:597
|
791 |
msgid "Name"
|
792 |
msgstr "Feld-Name"
|
793 |
|
803 |
# @ acf
|
804 |
#: includes/admin/views/field-group-fields.php:14
|
805 |
msgid ""
|
806 |
+
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
807 |
+
"first field."
|
808 |
msgstr ""
|
809 |
+
"Es sind noch keine Felder angelegt. Klicken Sie den <strong>+ Feld "
|
810 |
+
"hinzufügen-Button</strong> und erstellen Sie Ihr erstes Feld."
|
811 |
|
812 |
# @ acf
|
813 |
#: includes/admin/views/field-group-fields.php:31
|
822 |
# @ acf
|
823 |
#: includes/admin/views/field-group-locations.php:10
|
824 |
msgid ""
|
825 |
+
"Create a set of rules to determine which edit screens will use these "
|
826 |
+
"advanced custom fields"
|
827 |
msgstr ""
|
828 |
"Erstelle ein Regelwerk das festlegt welche Bearbeitungs-Ansichten diese Feld-"
|
829 |
"Gruppe nutzen dürfen"
|
870 |
|
871 |
# @ acf
|
872 |
#: includes/admin/views/field-group-options.php:62
|
873 |
+
#: includes/fields/class-acf-field-tab.php:106
|
874 |
msgid "Top aligned"
|
875 |
msgstr "Über dem Feld"
|
876 |
|
877 |
# @ acf
|
878 |
#: includes/admin/views/field-group-options.php:63
|
879 |
+
#: includes/fields/class-acf-field-tab.php:107
|
880 |
+
msgid "Left aligned"
|
881 |
msgstr "Links neben dem Feld"
|
882 |
|
883 |
# @ acf
|
916 |
# @ acf
|
917 |
#: includes/admin/views/field-group-options.php:108
|
918 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen."
|
919 |
+
msgstr ""
|
920 |
+
"<strong>Ausgewählte</strong> Elemente werden <strong>versteckt</strong>."
|
921 |
|
922 |
# @ acf
|
923 |
#: includes/admin/views/field-group-options.php:108
|
925 |
"If multiple field groups appear on an edit screen, the first field group's "
|
926 |
"options will be used (the one with the lowest order number)"
|
927 |
msgstr ""
|
928 |
+
"Sind für einen Bearbeiten-Dialog mehrere Felder-Gruppen definiert, werden "
|
929 |
+
"die Optionen der ersten Felder-Gruppe angewendet (die mit der niedrigsten "
|
930 |
+
"Nummer für die Reihenfolge)."
|
931 |
|
932 |
# @ acf
|
933 |
#: includes/admin/views/field-group-options.php:115
|
1010 |
msgstr "Websites upgraden"
|
1011 |
|
1012 |
# @ acf
|
1013 |
+
#: includes/admin/views/install-network.php:9
|
1014 |
+
#: includes/admin/views/install.php:3
|
1015 |
msgid "Advanced Custom Fields Database Upgrade"
|
1016 |
msgstr "Advanced Custom Fields Datenbank-Upgrade"
|
1017 |
|
1018 |
#: includes/admin/views/install-network.php:11
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
+
"The following sites require a DB upgrade. Check the ones you want to update "
|
1022 |
+
"and then click %s."
|
1023 |
msgstr ""
|
1024 |
"Folgende Websites erfordern ein Upgrade der Datenbank. Markieren Sie die "
|
1025 |
"gewünschten Seiten und klicken Sie dann %s."
|
1044 |
# @ acf
|
1045 |
#: includes/admin/views/install-network.php:63
|
1046 |
#, php-format
|
1047 |
+
msgid ""
|
1048 |
+
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
1049 |
msgstr ""
|
1050 |
+
"Upgrade der Datenbank fertiggestellt. <a href=\"%s\">Zum Netzwerk Dashboard</"
|
1051 |
+
"a>"
|
1052 |
|
1053 |
# @ acf
|
1054 |
#: includes/admin/views/install-network.php:102
|
1055 |
#: includes/admin/views/install-notice.php:42
|
1056 |
msgid ""
|
1057 |
+
"It is strongly recommended that you backup your database before proceeding. "
|
1058 |
+
"Are you sure you wish to run the updater now?"
|
1059 |
msgstr ""
|
1060 |
"Es wird dringend empfohlen, dass Sie ihre Datenbank sichern, bevor Sie "
|
1061 |
"fortfahren. Sind sie sicher, dass Sie jetzt das Upgrade durchführen wollen?"
|
1110 |
# @ acf
|
1111 |
#: includes/admin/views/install-notice.php:28
|
1112 |
msgid ""
|
1113 |
+
"Before you start using the new awesome features, please update your database "
|
1114 |
+
"to the newest version."
|
1115 |
msgstr ""
|
1116 |
"Bevor Sie die großartigen neuen Funktionen nutzen können ist ein Upgrade der "
|
1117 |
"Datenbank notwendig."
|
1134 |
#, php-format
|
1135 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
1136 |
msgstr ""
|
1137 |
+
"Datenbank-Upgrade abgeschlossen. <a href=\"%s\">Schauen Sie nach was es "
|
1138 |
+
"Neues gibt</a>"
|
1139 |
|
1140 |
# @ acf
|
1141 |
#: includes/admin/views/settings-addons.php:17
|
1156 |
#: includes/admin/views/settings-info.php:4
|
1157 |
#, php-format
|
1158 |
msgid ""
|
1159 |
+
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
1160 |
+
"hope you like it."
|
1161 |
msgstr ""
|
1162 |
+
"Vielen Dank fürs Aktualisieren! ACF %s ist größer und besser als je zuvor. "
|
1163 |
+
"Wir hoffen es wird ihnen gefallen."
|
1164 |
|
1165 |
# @ acf
|
1166 |
#: includes/admin/views/settings-info.php:17
|
1167 |
msgid "A smoother custom field experience"
|
1168 |
+
msgstr ""
|
1169 |
+
"Eine neue Dimension der reibungslosen Nutzung benutzerdefinierter Felder"
|
1170 |
|
1171 |
# @ acf
|
1172 |
#: includes/admin/views/settings-info.php:22
|
1177 |
#: includes/admin/views/settings-info.php:23
|
1178 |
msgid ""
|
1179 |
"Including the popular Select2 library has improved both usability and speed "
|
1180 |
+
"across a number of field types including post object, page link, taxonomy "
|
1181 |
+
"and select."
|
1182 |
msgstr ""
|
1183 |
"Durch die Einführung der beliebten Select2 Bibliothek wurde sowohl die "
|
1184 |
"Benutzerfreundlichkeit als auch die Geschwindigkeit einiger Feldtypen wie "
|
1193 |
# @ acf
|
1194 |
#: includes/admin/views/settings-info.php:28
|
1195 |
msgid ""
|
1196 |
+
"Many fields have undergone a visual refresh to make ACF look better than "
|
1197 |
+
"ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
|
1198 |
+
"(new) fields!"
|
1199 |
msgstr ""
|
1200 |
"Viele Felder wurden visuell überarbeitet, damit ACF besser denn je aussieht! "
|
1201 |
"Die markantesten Änderungen erfuhren das Galerie-, Beziehungs- sowie das "
|
1209 |
# @ acf
|
1210 |
#: includes/admin/views/settings-info.php:33
|
1211 |
msgid ""
|
1212 |
+
"Redesigning the data architecture has allowed sub fields to live "
|
1213 |
+
"independently from their parents. This allows you to drag and drop fields in "
|
1214 |
+
"and out of parent fields!"
|
1215 |
msgstr ""
|
1216 |
+
"Die Neugestaltung der Datenarchitektur erlaubt es, dass Felder unabhängig "
|
1217 |
+
"von ihren übergeordneten Feldern existieren können. Dies ermöglicht, dass "
|
1218 |
+
"Felder per Drag-and-Drop, in und aus ihren übergeordneten Feldern verschoben "
|
1219 |
+
"werden können!"
|
1220 |
|
1221 |
# @ acf
|
1222 |
#: includes/admin/views/settings-info.php:39
|
1240 |
#: includes/admin/views/settings-info.php:46
|
1241 |
#, php-format
|
1242 |
msgid ""
|
1243 |
+
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
1244 |
+
"version of ACF</a>. With both personal and developer licenses available, "
|
1245 |
+
"premium functionality is more affordable and accessible than ever before!"
|
1246 |
msgstr ""
|
1247 |
+
"Alle vier, vormals separat erhältlichen, Premium-Add-ons wurden in der neuen "
|
1248 |
+
"<a href=\"%s\">Pro-Version von ACF</a> zusammengefasst. Besagte Premium-"
|
1249 |
+
"Funktionalität, erhältlich in einer Einzel- sowie einer Entwickler-Lizenz, "
|
1250 |
+
"ist somit erschwinglicher denn je!"
|
1251 |
|
1252 |
# @ acf
|
1253 |
#: includes/admin/views/settings-info.php:50
|
1280 |
#: includes/admin/views/settings-info.php:57
|
1281 |
#, php-format
|
1282 |
msgid ""
|
1283 |
+
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
1284 |
+
"and claim a free copy of ACF PRO!"
|
1285 |
msgstr ""
|
1286 |
+
"Wir haben den Aktualisierungsprozess so einfach wie möglich gehalten; <a "
|
1287 |
+
"href=\"%s\">melden Sie sich mit Ihrem Store-Account an</a> und fordern Sie "
|
1288 |
+
"ein Gratisexemplar von ACF PRO an!"
|
1289 |
|
1290 |
# @ acf
|
1291 |
#: includes/admin/views/settings-info.php:58
|
1292 |
#, php-format
|
1293 |
msgid ""
|
1294 |
+
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
1295 |
+
"but if you do have one, please contact our support team via the <a href=\"%s"
|
1296 |
+
"\">help desk</a>"
|
1297 |
msgstr ""
|
1298 |
"Um möglichen Fragen zu begegnen haben wir haben einen <a href=\"%s\">Upgrade-"
|
1299 |
+
"Leitfaden (Engl.)</a> erstellt. Sollten dennoch Fragen auftreten, "
|
1300 |
+
"kontaktieren Sie bitte unser <a href=\"%s\"> Support-Team </a>"
|
1301 |
|
1302 |
# @ acf
|
1303 |
#: includes/admin/views/settings-info.php:66
|
1335 |
# @ acf
|
1336 |
#: includes/admin/views/settings-info.php:82
|
1337 |
msgid "New auto export to JSON feature improves speed"
|
1338 |
+
msgstr ""
|
1339 |
+
"Ein neuer automatischer Export nach JSON verbessert die Geschwindigkeit"
|
1340 |
|
1341 |
# @ acf
|
1342 |
#: includes/admin/views/settings-info.php:88
|
1346 |
# @ acf
|
1347 |
#: includes/admin/views/settings-info.php:89
|
1348 |
msgid ""
|
1349 |
+
"New auto export to JSON feature allows field settings to be version "
|
1350 |
+
"controlled"
|
1351 |
msgstr ""
|
1352 |
"Die neue JSON Export Funktionalität erlaubt die Versionskontrolle von Feld-"
|
1353 |
"Einstellungen"
|
1387 |
# @ acf
|
1388 |
#: includes/admin/views/settings-info.php:111
|
1389 |
msgid "The gallery field has undergone a much needed facelift"
|
1390 |
+
msgstr ""
|
1391 |
+
"Das Galerie-Feld wurde einem längst überfälligen Face-Lifting unterzogen"
|
1392 |
|
1393 |
# @ acf
|
1394 |
#: includes/admin/views/settings-info.php:115
|
1423 |
#: includes/admin/views/settings-info.php:128
|
1424 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1425 |
msgstr ""
|
1426 |
+
"Die Formular-Validierung wird nun mit Hilfe von PHP + AJAX erledigt, "
|
1427 |
+
"anstelle nur JS zu verwenden"
|
1428 |
|
1429 |
# @ acf
|
1430 |
#: includes/admin/views/settings-info.php:132
|
1433 |
|
1434 |
# @ acf
|
1435 |
#: includes/admin/views/settings-info.php:133
|
1436 |
+
msgid ""
|
1437 |
+
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1438 |
msgstr ""
|
1439 |
+
"Neue Einstellungen innerhalb des Beziehungs-Feldes um nach Suche, Beitrags-"
|
1440 |
+
"Typ und oder Taxonomie filtern zu können"
|
1441 |
|
1442 |
# @ acf
|
1443 |
#: includes/admin/views/settings-info.php:139
|
1450 |
"New field group functionality allows you to move a field between groups & "
|
1451 |
"parents"
|
1452 |
msgstr ""
|
1453 |
+
"Die neue Feld-Gruppen-Funktionalität erlaubt es ein Feld zwischen Gruppen "
|
1454 |
+
"und übergeordneten Gruppen frei zu verschieben"
|
1455 |
|
1456 |
# @ acf
|
1457 |
#: includes/admin/views/settings-info.php:144
|
1463 |
#: includes/admin/views/settings-info.php:145
|
1464 |
msgid "New archives group in page_link field selection"
|
1465 |
msgstr ""
|
1466 |
+
"Im neuen Seitenlink-Feld werden alle Archiv-URL's der verfügbaren Custom "
|
1467 |
+
"Post Types in einer Options-Gruppe zusammengefasst"
|
1468 |
|
1469 |
# @ acf
|
1470 |
#: includes/admin/views/settings-info.php:149
|
1487 |
msgstr "Wir glauben Sie werden die Änderungen in %s lieben."
|
1488 |
|
1489 |
# @ acf
|
1490 |
+
#: includes/api/api-helpers.php:880
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1491 |
msgid "Thumbnail"
|
1492 |
msgstr "Miniaturbild"
|
1493 |
|
1494 |
# @ acf
|
1495 |
+
#: includes/api/api-helpers.php:881
|
1496 |
msgid "Medium"
|
1497 |
msgstr "Mittel"
|
1498 |
|
1499 |
# @ acf
|
1500 |
+
#: includes/api/api-helpers.php:882
|
1501 |
msgid "Large"
|
1502 |
msgstr "Groß"
|
1503 |
|
1504 |
# @ acf
|
1505 |
+
#: includes/api/api-helpers.php:931
|
1506 |
msgid "Full Size"
|
1507 |
msgstr "Volle Größe"
|
1508 |
|
1509 |
# @ acf
|
1510 |
+
#: includes/api/api-helpers.php:1272 includes/api/api-helpers.php:1845
|
1511 |
+
#: pro/fields/class-acf-field-clone.php:992
|
1512 |
msgid "(no title)"
|
1513 |
msgstr "(ohne Titel)"
|
1514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1515 |
# @ acf
|
1516 |
+
#: includes/api/api-helpers.php:3902
|
1517 |
#, php-format
|
1518 |
msgid "Image width must be at least %dpx."
|
1519 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1520 |
|
1521 |
# @ acf
|
1522 |
+
#: includes/api/api-helpers.php:3907
|
1523 |
#, php-format
|
1524 |
msgid "Image width must not exceed %dpx."
|
1525 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1526 |
|
1527 |
# @ acf
|
1528 |
+
#: includes/api/api-helpers.php:3923
|
1529 |
#, php-format
|
1530 |
msgid "Image height must be at least %dpx."
|
1531 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1532 |
|
1533 |
# @ acf
|
1534 |
+
#: includes/api/api-helpers.php:3928
|
1535 |
#, php-format
|
1536 |
msgid "Image height must not exceed %dpx."
|
1537 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1538 |
|
1539 |
# @ acf
|
1540 |
+
#: includes/api/api-helpers.php:3946
|
1541 |
#, php-format
|
1542 |
msgid "File size must be at least %s."
|
1543 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1544 |
|
1545 |
# @ acf
|
1546 |
+
#: includes/api/api-helpers.php:3951
|
1547 |
#, php-format
|
1548 |
msgid "File size must must not exceed %s."
|
1549 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1550 |
|
1551 |
# @ acf
|
1552 |
+
#: includes/api/api-helpers.php:3985
|
1553 |
#, php-format
|
1554 |
msgid "File type must be %s."
|
1555 |
msgstr "Der Dateityp muss %s sein."
|
1580 |
msgstr "jQuery"
|
1581 |
|
1582 |
# @ acf
|
1583 |
+
#: includes/fields.php:149
|
1584 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1585 |
+
#: includes/fields/class-acf-field-checkbox.php:384
|
1586 |
+
#: includes/fields/class-acf-field-group.php:474
|
1587 |
#: includes/fields/class-acf-field-radio.php:285
|
1588 |
+
#: pro/fields/class-acf-field-clone.php:839
|
1589 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
1590 |
+
#: pro/fields/class-acf-field-flexible-content.php:603
|
1591 |
#: pro/fields/class-acf-field-repeater.php:450
|
1592 |
msgid "Layout"
|
1593 |
msgstr "Layout"
|
1601 |
msgid "Unknown"
|
1602 |
msgstr "Unbekannte Feld-Gruppe"
|
1603 |
|
1604 |
+
#: includes/fields/class-acf-field-accordion.php:24
|
1605 |
+
msgid "Accordion"
|
1606 |
+
msgstr "Akkordeon"
|
|
|
|
|
1607 |
|
1608 |
+
#: includes/fields/class-acf-field-accordion.php:99
|
1609 |
+
msgid "Open"
|
1610 |
+
msgstr "Offen"
|
|
|
1611 |
|
1612 |
+
#: includes/fields/class-acf-field-accordion.php:100
|
1613 |
+
msgid "Display this accordion as open on page load."
|
1614 |
+
msgstr "Dieses Akkordeon beim Laden der Seite geöffnet anzeigen."
|
1615 |
+
|
1616 |
+
#: includes/fields/class-acf-field-accordion.php:109
|
1617 |
+
msgid "Multi-expand"
|
1618 |
+
msgstr "Gleichzeitig geöffnet"
|
1619 |
+
|
1620 |
+
#: includes/fields/class-acf-field-accordion.php:110
|
1621 |
+
msgid "Allow this accordion to open without closing others."
|
1622 |
+
msgstr "Erlaubt dieses Akkordeon zu öffnen ohne andere zu schließen."
|
1623 |
+
|
1624 |
+
#: includes/fields/class-acf-field-accordion.php:119
|
1625 |
+
#: includes/fields/class-acf-field-tab.php:114
|
1626 |
+
msgid "Endpoint"
|
1627 |
+
msgstr "Abschluss"
|
1628 |
+
|
1629 |
+
#: includes/fields/class-acf-field-accordion.php:120
|
1630 |
+
msgid ""
|
1631 |
+
"Define an endpoint for the previous accordion to stop. This accordion will "
|
1632 |
+
"not be visible."
|
1633 |
+
msgstr ""
|
1634 |
+
"Schließt das vorangegangene Akkordeon-Feld ab. Das abschließende Feld wird "
|
1635 |
+
"nicht sichtbar sein."
|
1636 |
+
|
1637 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
1638 |
+
msgid "Button Group"
|
1639 |
+
msgstr "Button-Gruppe"
|
1640 |
|
1641 |
# @ acf
|
1642 |
+
#: includes/fields/class-acf-field-button-group.php:149
|
1643 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1644 |
#: includes/fields/class-acf-field-radio.php:235
|
1645 |
#: includes/fields/class-acf-field-select.php:368
|
1647 |
msgstr "Auswahlmöglichkeiten"
|
1648 |
|
1649 |
# @ acf
|
1650 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1651 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1652 |
#: includes/fields/class-acf-field-radio.php:236
|
1653 |
#: includes/fields/class-acf-field-select.php:369
|
1655 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1656 |
|
1657 |
# @ acf
|
1658 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1659 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1660 |
#: includes/fields/class-acf-field-radio.php:236
|
1661 |
#: includes/fields/class-acf-field-select.php:369
|
1665 |
"Beschriftung definieren:"
|
1666 |
|
1667 |
# @ acf
|
1668 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1669 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1670 |
#: includes/fields/class-acf-field-radio.php:236
|
1671 |
#: includes/fields/class-acf-field-select.php:369
|
1672 |
msgid "red : Red"
|
1673 |
msgstr "rot : Rot"
|
1674 |
|
1675 |
+
# @ acf
|
1676 |
+
#: includes/fields/class-acf-field-button-group.php:158
|
1677 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
1678 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
1679 |
+
#: includes/fields/class-acf-field-radio.php:244
|
1680 |
+
#: includes/fields/class-acf-field-select.php:386
|
1681 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
1682 |
+
#: includes/fields/class-acf-field-user.php:408
|
1683 |
+
msgid "Allow Null?"
|
1684 |
+
msgstr "NULL-Werte zulassen?"
|
|
|
|
|
|
|
|
|
|
|
|
|
1685 |
|
1686 |
# @ acf
|
1687 |
+
#: includes/fields/class-acf-field-button-group.php:168
|
1688 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1689 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1690 |
+
#: includes/fields/class-acf-field-email.php:118
|
1691 |
+
#: includes/fields/class-acf-field-number.php:127
|
1692 |
#: includes/fields/class-acf-field-radio.php:276
|
1693 |
+
#: includes/fields/class-acf-field-range.php:148
|
1694 |
#: includes/fields/class-acf-field-select.php:377
|
1695 |
+
#: includes/fields/class-acf-field-text.php:119
|
1696 |
+
#: includes/fields/class-acf-field-textarea.php:102
|
1697 |
#: includes/fields/class-acf-field-true_false.php:135
|
1698 |
+
#: includes/fields/class-acf-field-url.php:100
|
1699 |
+
#: includes/fields/class-acf-field-wysiwyg.php:410
|
1700 |
msgid "Default Value"
|
1701 |
msgstr "Standardwert"
|
1702 |
|
1703 |
# @ acf
|
1704 |
+
#: includes/fields/class-acf-field-button-group.php:169
|
1705 |
+
#: includes/fields/class-acf-field-email.php:119
|
1706 |
+
#: includes/fields/class-acf-field-number.php:128
|
1707 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1708 |
+
#: includes/fields/class-acf-field-range.php:149
|
1709 |
+
#: includes/fields/class-acf-field-text.php:120
|
1710 |
+
#: includes/fields/class-acf-field-textarea.php:103
|
1711 |
+
#: includes/fields/class-acf-field-url.php:101
|
1712 |
+
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1713 |
+
msgid "Appears when creating a new post"
|
1714 |
+
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1715 |
|
1716 |
# @ acf
|
1717 |
+
#: includes/fields/class-acf-field-button-group.php:183
|
1718 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1719 |
#: includes/fields/class-acf-field-radio.php:292
|
1720 |
msgid "Horizontal"
|
1721 |
msgstr "Horizontal"
|
1722 |
|
1723 |
+
# @ acf
|
1724 |
+
#: includes/fields/class-acf-field-button-group.php:184
|
1725 |
+
#: includes/fields/class-acf-field-checkbox.php:390
|
1726 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1727 |
+
msgid "Vertical"
|
1728 |
+
msgstr "Vertikal"
|
|
|
|
|
1729 |
|
1730 |
# @ acf
|
1731 |
+
#: includes/fields/class-acf-field-button-group.php:191
|
1732 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1733 |
+
#: includes/fields/class-acf-field-file.php:204
|
1734 |
#: includes/fields/class-acf-field-image.php:188
|
1735 |
#: includes/fields/class-acf-field-link.php:166
|
1736 |
#: includes/fields/class-acf-field-radio.php:299
|
1739 |
msgstr "Rückgabewert"
|
1740 |
|
1741 |
# @ acf
|
1742 |
+
#: includes/fields/class-acf-field-button-group.php:192
|
1743 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1744 |
+
#: includes/fields/class-acf-field-file.php:205
|
1745 |
#: includes/fields/class-acf-field-image.php:189
|
1746 |
#: includes/fields/class-acf-field-link.php:167
|
1747 |
#: includes/fields/class-acf-field-radio.php:300
|
1748 |
msgid "Specify the returned value on front end"
|
1749 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1750 |
|
1751 |
+
#: includes/fields/class-acf-field-button-group.php:197
|
1752 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1753 |
#: includes/fields/class-acf-field-radio.php:305
|
1754 |
#: includes/fields/class-acf-field-select.php:431
|
1755 |
msgid "Value"
|
1756 |
msgstr "Wert"
|
1757 |
|
1758 |
+
#: includes/fields/class-acf-field-button-group.php:199
|
1759 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1760 |
#: includes/fields/class-acf-field-radio.php:307
|
1761 |
#: includes/fields/class-acf-field-select.php:433
|
1762 |
msgid "Both (Array)"
|
1763 |
msgstr "Beide (Array)"
|
1764 |
|
1765 |
+
# @ acf
|
1766 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1767 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1768 |
+
msgid "Checkbox"
|
1769 |
+
msgstr "Checkbox"
|
1770 |
+
|
1771 |
+
# @ acf
|
1772 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1773 |
+
msgid "Toggle All"
|
1774 |
+
msgstr "Alle auswählen"
|
1775 |
+
|
1776 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1777 |
+
msgid "Add new choice"
|
1778 |
+
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1779 |
+
|
1780 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1781 |
+
msgid "Allow Custom"
|
1782 |
+
msgstr "Benutzerdefinierte Werte erlauben"
|
1783 |
+
|
1784 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
1785 |
+
msgid "Allow 'custom' values to be added"
|
1786 |
+
msgstr "Erlaubt das Hinzufügen benutzerdefinierter Werte"
|
1787 |
+
|
1788 |
+
#: includes/fields/class-acf-field-checkbox.php:364
|
1789 |
+
msgid "Save Custom"
|
1790 |
+
msgstr "Benutzerdefinierte Werte abspeichern"
|
1791 |
+
|
1792 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1793 |
+
msgid "Save 'custom' values to the field's choices"
|
1794 |
+
msgstr ""
|
1795 |
+
"Speichern sie benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1796 |
+
|
1797 |
+
# @ acf
|
1798 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1799 |
+
#: includes/fields/class-acf-field-select.php:378
|
1800 |
+
msgid "Enter each default value on a new line"
|
1801 |
+
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
1802 |
+
|
1803 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1804 |
+
msgid "Toggle"
|
1805 |
+
msgstr "Auswählen"
|
1806 |
+
|
1807 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
1808 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
1809 |
+
msgstr ""
|
1810 |
+
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1811 |
+
|
1812 |
# @ acf
|
1813 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1814 |
msgid "Color Picker"
|
1884 |
#: includes/fields/class-acf-field-time_picker.php:117
|
1885 |
#: includes/fields/class-acf-field-time_picker.php:132
|
1886 |
msgid "Custom:"
|
1887 |
+
msgstr "Individuelles Format:"
|
1888 |
|
1889 |
#: includes/fields/class-acf-field-date_picker.php:226
|
1890 |
msgid "Save Format"
|
2002 |
msgstr "E-Mail"
|
2003 |
|
2004 |
# @ acf
|
2005 |
+
#: includes/fields/class-acf-field-email.php:127
|
2006 |
+
#: includes/fields/class-acf-field-number.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007 |
#: includes/fields/class-acf-field-password.php:71
|
2008 |
+
#: includes/fields/class-acf-field-text.php:128
|
2009 |
+
#: includes/fields/class-acf-field-textarea.php:111
|
2010 |
+
#: includes/fields/class-acf-field-url.php:109
|
2011 |
msgid "Placeholder Text"
|
2012 |
msgstr "Platzhalter-Text"
|
2013 |
|
2014 |
# @ acf
|
2015 |
+
#: includes/fields/class-acf-field-email.php:128
|
2016 |
+
#: includes/fields/class-acf-field-number.php:137
|
2017 |
#: includes/fields/class-acf-field-password.php:72
|
2018 |
+
#: includes/fields/class-acf-field-text.php:129
|
2019 |
+
#: includes/fields/class-acf-field-textarea.php:112
|
2020 |
+
#: includes/fields/class-acf-field-url.php:110
|
2021 |
msgid "Appears within the input"
|
2022 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
2023 |
|
2024 |
# @ acf
|
2025 |
+
#: includes/fields/class-acf-field-email.php:136
|
2026 |
+
#: includes/fields/class-acf-field-number.php:145
|
2027 |
#: includes/fields/class-acf-field-password.php:80
|
2028 |
+
#: includes/fields/class-acf-field-range.php:187
|
2029 |
+
#: includes/fields/class-acf-field-text.php:137
|
2030 |
msgid "Prepend"
|
2031 |
msgstr "Voranstellen"
|
2032 |
|
2033 |
# @ acf
|
2034 |
+
#: includes/fields/class-acf-field-email.php:137
|
2035 |
+
#: includes/fields/class-acf-field-number.php:146
|
2036 |
#: includes/fields/class-acf-field-password.php:81
|
2037 |
+
#: includes/fields/class-acf-field-range.php:188
|
2038 |
+
#: includes/fields/class-acf-field-text.php:138
|
2039 |
msgid "Appears before the input"
|
2040 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
2041 |
|
2042 |
# @ acf
|
2043 |
+
#: includes/fields/class-acf-field-email.php:145
|
2044 |
+
#: includes/fields/class-acf-field-number.php:154
|
2045 |
#: includes/fields/class-acf-field-password.php:89
|
2046 |
+
#: includes/fields/class-acf-field-range.php:196
|
2047 |
+
#: includes/fields/class-acf-field-text.php:146
|
2048 |
msgid "Append"
|
2049 |
msgstr "Anhängen"
|
2050 |
|
2051 |
# @ acf
|
2052 |
+
#: includes/fields/class-acf-field-email.php:146
|
2053 |
+
#: includes/fields/class-acf-field-number.php:155
|
2054 |
#: includes/fields/class-acf-field-password.php:90
|
2055 |
+
#: includes/fields/class-acf-field-range.php:197
|
2056 |
+
#: includes/fields/class-acf-field-text.php:147
|
2057 |
msgid "Appears after the input"
|
2058 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
2059 |
|
2079 |
msgid "Uploaded to this post"
|
2080 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2081 |
|
2082 |
+
#: includes/fields/class-acf-field-file.php:130
|
2083 |
msgid "File name"
|
2084 |
msgstr "Dateiname"
|
2085 |
|
2086 |
# @ acf
|
2087 |
+
#: includes/fields/class-acf-field-file.php:134
|
2088 |
+
#: includes/fields/class-acf-field-file.php:237
|
2089 |
+
#: includes/fields/class-acf-field-file.php:248
|
2090 |
#: includes/fields/class-acf-field-image.php:248
|
2091 |
#: includes/fields/class-acf-field-image.php:277
|
2092 |
#: pro/fields/class-acf-field-gallery.php:690
|
2095 |
msgstr "Dateigröße"
|
2096 |
|
2097 |
# @ acf
|
2098 |
+
#: includes/fields/class-acf-field-file.php:143
|
2099 |
#: includes/fields/class-acf-field-image.php:124
|
2100 |
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2101 |
#: pro/fields/class-acf-field-gallery.php:343
|
2104 |
msgstr "Entfernen"
|
2105 |
|
2106 |
# @ acf
|
2107 |
+
#: includes/fields/class-acf-field-file.php:159
|
2108 |
msgid "Add File"
|
2109 |
msgstr "Datei hinzufügen"
|
2110 |
|
2111 |
# @ acf
|
2112 |
+
#: includes/fields/class-acf-field-file.php:210
|
2113 |
msgid "File Array"
|
2114 |
msgstr "Datei-Array"
|
2115 |
|
2116 |
# @ acf
|
2117 |
+
#: includes/fields/class-acf-field-file.php:211
|
2118 |
msgid "File URL"
|
2119 |
msgstr "Datei-URL"
|
2120 |
|
2121 |
# @ acf
|
2122 |
+
#: includes/fields/class-acf-field-file.php:212
|
2123 |
msgid "File ID"
|
2124 |
msgstr "Datei-ID"
|
2125 |
|
2126 |
# @ acf
|
2127 |
+
#: includes/fields/class-acf-field-file.php:219
|
2128 |
#: includes/fields/class-acf-field-image.php:213
|
2129 |
#: pro/fields/class-acf-field-gallery.php:655
|
2130 |
msgid "Library"
|
2131 |
msgstr "Medienübersicht"
|
2132 |
|
2133 |
# @ acf
|
2134 |
+
#: includes/fields/class-acf-field-file.php:220
|
2135 |
#: includes/fields/class-acf-field-image.php:214
|
2136 |
#: pro/fields/class-acf-field-gallery.php:656
|
2137 |
msgid "Limit the media library choice"
|
2138 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2139 |
|
2140 |
# @ acf
|
2141 |
+
#: includes/fields/class-acf-field-file.php:225
|
2142 |
#: includes/fields/class-acf-field-image.php:219
|
2143 |
#: includes/locations/class-acf-location-attachment.php:101
|
2144 |
#: includes/locations/class-acf-location-comment.php:79
|
2152 |
msgstr "Alle"
|
2153 |
|
2154 |
# @ acf
|
2155 |
+
#: includes/fields/class-acf-field-file.php:226
|
2156 |
#: includes/fields/class-acf-field-image.php:220
|
2157 |
#: pro/fields/class-acf-field-gallery.php:662
|
2158 |
msgid "Uploaded to post"
|
2159 |
msgstr "Für den Beitrag hochgeladen"
|
2160 |
|
2161 |
# @ acf
|
2162 |
+
#: includes/fields/class-acf-field-file.php:233
|
2163 |
#: includes/fields/class-acf-field-image.php:227
|
2164 |
#: pro/fields/class-acf-field-gallery.php:669
|
2165 |
msgid "Minimum"
|
2166 |
msgstr "Minimum"
|
2167 |
|
2168 |
# @ acf
|
2169 |
+
#: includes/fields/class-acf-field-file.php:234
|
2170 |
+
#: includes/fields/class-acf-field-file.php:245
|
2171 |
msgid "Restrict which files can be uploaded"
|
2172 |
msgstr ""
|
2173 |
+
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2174 |
+
"erfüllen"
|
2175 |
|
2176 |
# @ acf
|
2177 |
+
#: includes/fields/class-acf-field-file.php:244
|
2178 |
#: includes/fields/class-acf-field-image.php:256
|
2179 |
#: pro/fields/class-acf-field-gallery.php:698
|
2180 |
msgid "Maximum"
|
2181 |
msgstr "Maximum"
|
2182 |
|
2183 |
# @ acf
|
2184 |
+
#: includes/fields/class-acf-field-file.php:255
|
2185 |
#: includes/fields/class-acf-field-image.php:285
|
2186 |
#: pro/fields/class-acf-field-gallery.php:727
|
2187 |
msgid "Allowed file types"
|
2188 |
msgstr "Erlaubte Datei-Formate"
|
2189 |
|
2190 |
# @ acf
|
2191 |
+
#: includes/fields/class-acf-field-file.php:256
|
2192 |
#: includes/fields/class-acf-field-image.php:286
|
2193 |
#: pro/fields/class-acf-field-gallery.php:728
|
2194 |
msgid "Comma separated list. Leave blank for all types"
|
2195 |
msgstr ""
|
2196 |
+
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2197 |
+
"erlaubt"
|
2198 |
|
2199 |
# @ acf
|
2200 |
#: includes/fields/class-acf-field-google-map.php:25
|
2267 |
#: includes/fields/class-acf-field-group.php:25
|
2268 |
msgid "Group"
|
2269 |
msgstr ""
|
2270 |
+
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
2271 |
+
"Feldes an)"
|
2272 |
|
2273 |
# @ acf
|
2274 |
+
#: includes/fields/class-acf-field-group.php:459
|
2275 |
#: pro/fields/class-acf-field-repeater.php:389
|
2276 |
msgid "Sub Fields"
|
2277 |
msgstr "Wiederholungsfelder"
|
2278 |
|
2279 |
+
#: includes/fields/class-acf-field-group.php:475
|
2280 |
+
#: pro/fields/class-acf-field-clone.php:840
|
2281 |
msgid "Specify the style used to render the selected fields"
|
2282 |
msgstr ""
|
2283 |
"Geben Sie den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2284 |
|
2285 |
# @ acf
|
2286 |
+
#: includes/fields/class-acf-field-group.php:480
|
2287 |
+
#: pro/fields/class-acf-field-clone.php:845
|
2288 |
+
#: pro/fields/class-acf-field-flexible-content.php:614
|
2289 |
#: pro/fields/class-acf-field-repeater.php:458
|
2290 |
msgid "Block"
|
2291 |
msgstr "Block"
|
2292 |
|
2293 |
# @ acf
|
2294 |
+
#: includes/fields/class-acf-field-group.php:481
|
2295 |
+
#: pro/fields/class-acf-field-clone.php:846
|
2296 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
2297 |
#: pro/fields/class-acf-field-repeater.php:457
|
2298 |
msgid "Table"
|
2299 |
msgstr "Tabelle"
|
2300 |
|
2301 |
# @ acf
|
2302 |
+
#: includes/fields/class-acf-field-group.php:482
|
2303 |
+
#: pro/fields/class-acf-field-clone.php:847
|
2304 |
+
#: pro/fields/class-acf-field-flexible-content.php:615
|
2305 |
#: pro/fields/class-acf-field-repeater.php:459
|
2306 |
msgid "Row"
|
2307 |
msgstr "Reihe"
|
2375 |
#: pro/fields/class-acf-field-gallery.php:699
|
2376 |
msgid "Restrict which images can be uploaded"
|
2377 |
msgstr ""
|
2378 |
+
"Erlaubt nur das Hochladen von Bildern die die angegebenen Eigenschaften "
|
2379 |
+
"erfüllen"
|
2380 |
|
2381 |
# @ acf
|
2382 |
#: includes/fields/class-acf-field-image.php:231
|
2390 |
# @ acf
|
2391 |
#: includes/fields/class-acf-field-link.php:25
|
2392 |
msgid "Link"
|
2393 |
+
msgstr "Link"
|
2394 |
|
2395 |
# @ acf
|
2396 |
#: includes/fields/class-acf-field-link.php:133
|
2397 |
msgid "Select Link"
|
2398 |
+
msgstr "Link auswählen"
|
2399 |
|
2400 |
#: includes/fields/class-acf-field-link.php:138
|
2401 |
msgid "Opens in a new window/tab"
|
2404 |
# @ acf
|
2405 |
#: includes/fields/class-acf-field-link.php:172
|
2406 |
msgid "Link Array"
|
2407 |
+
msgstr "Link-Array"
|
2408 |
|
2409 |
# @ acf
|
2410 |
#: includes/fields/class-acf-field-link.php:173
|
2411 |
msgid "Link URL"
|
2412 |
+
msgstr "Link-URL"
|
2413 |
|
2414 |
# @ acf
|
2415 |
#: includes/fields/class-acf-field-message.php:25
|
2420 |
|
2421 |
# @ acf
|
2422 |
#: includes/fields/class-acf-field-message.php:110
|
2423 |
+
#: includes/fields/class-acf-field-textarea.php:139
|
2424 |
msgid "New Lines"
|
2425 |
msgstr "Neue Zeilen"
|
2426 |
|
2427 |
# @ acf
|
2428 |
#: includes/fields/class-acf-field-message.php:111
|
2429 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
2430 |
msgid "Controls how new lines are rendered"
|
2431 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2432 |
|
2433 |
# @ acf
|
2434 |
#: includes/fields/class-acf-field-message.php:115
|
2435 |
+
#: includes/fields/class-acf-field-textarea.php:144
|
2436 |
msgid "Automatically add paragraphs"
|
2437 |
msgstr "Absätze automatisch hinzufügen"
|
2438 |
|
2439 |
# @ acf
|
2440 |
#: includes/fields/class-acf-field-message.php:116
|
2441 |
+
#: includes/fields/class-acf-field-textarea.php:145
|
2442 |
msgid "Automatically add <br>"
|
2443 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2444 |
|
2445 |
# @ acf
|
2446 |
#: includes/fields/class-acf-field-message.php:117
|
2447 |
+
#: includes/fields/class-acf-field-textarea.php:146
|
2448 |
msgid "No Formatting"
|
2449 |
msgstr "Keine Formatierung"
|
2450 |
|
2457 |
#: includes/fields/class-acf-field-message.php:125
|
2458 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2459 |
msgstr ""
|
2460 |
+
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2461 |
+
"interpretiert"
|
2462 |
|
2463 |
# @ acf
|
2464 |
#: includes/fields/class-acf-field-number.php:25
|
2466 |
msgstr "Numerisch"
|
2467 |
|
2468 |
# @ acf
|
2469 |
+
#: includes/fields/class-acf-field-number.php:163
|
2470 |
+
#: includes/fields/class-acf-field-range.php:157
|
2471 |
msgid "Minimum Value"
|
2472 |
msgstr "Mindestwert"
|
2473 |
|
2474 |
# @ acf
|
2475 |
+
#: includes/fields/class-acf-field-number.php:172
|
2476 |
+
#: includes/fields/class-acf-field-range.php:167
|
2477 |
msgid "Maximum Value"
|
2478 |
msgstr "Maximalwert"
|
2479 |
|
2480 |
# @ acf
|
2481 |
+
#: includes/fields/class-acf-field-number.php:181
|
2482 |
+
#: includes/fields/class-acf-field-range.php:177
|
2483 |
msgid "Step Size"
|
2484 |
msgstr "Schrittweite"
|
2485 |
|
2486 |
# @ acf
|
2487 |
+
#: includes/fields/class-acf-field-number.php:219
|
2488 |
msgid "Value must be a number"
|
2489 |
msgstr "Wert muss eine Zahl sein"
|
2490 |
|
2491 |
# @ acf
|
2492 |
+
#: includes/fields/class-acf-field-number.php:237
|
2493 |
#, php-format
|
2494 |
msgid "Value must be equal to or higher than %d"
|
2495 |
msgstr "Wert muss größer oder gleich %d sein"
|
2496 |
|
2497 |
# @ acf
|
2498 |
+
#: includes/fields/class-acf-field-number.php:245
|
2499 |
#, php-format
|
2500 |
msgid "Value must be equal to or lower than %d"
|
2501 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2531 |
msgid "Archives"
|
2532 |
msgstr "Archive"
|
2533 |
|
2534 |
+
#: includes/fields/class-acf-field-page_link.php:269
|
2535 |
+
#: includes/fields/class-acf-field-post_object.php:268
|
2536 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
2537 |
+
msgid "Parent"
|
2538 |
+
msgstr "Übergeordnet"
|
2539 |
+
|
2540 |
# @ acf
|
2541 |
#: includes/fields/class-acf-field-page_link.php:485
|
2542 |
#: includes/fields/class-acf-field-post_object.php:384
|
2565 |
msgid "All taxonomies"
|
2566 |
msgstr "Alle Taxonomien"
|
2567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2568 |
#: includes/fields/class-acf-field-page_link.php:523
|
2569 |
msgid "Allow Archives URLs"
|
2570 |
msgstr "Archiv-URL's zulassen"
|
2723 |
msgctxt "Select2 JS matches_1"
|
2724 |
msgid "One result is available, press enter to select it."
|
2725 |
msgstr ""
|
2726 |
+
"Es ist ein Ergebnis verfügbar, drücken Sie die Eingabetaste um es "
|
2727 |
+
"auszuwählen."
|
2728 |
|
2729 |
#: includes/fields/class-acf-field-select.php:39
|
2730 |
#, php-format
|
2731 |
msgctxt "Select2 JS matches_n"
|
2732 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2733 |
msgstr ""
|
2734 |
+
"Es sind %d Ergebnisse verfügbar, benutzen Sie die Pfeiltasten um nach oben "
|
2735 |
+
"und unten zu navigieren."
|
2736 |
|
2737 |
#: includes/fields/class-acf-field-select.php:40
|
2738 |
msgctxt "Select2 JS matches_0"
|
2801 |
# @ acf
|
2802 |
#: includes/fields/class-acf-field-select.php:416
|
2803 |
msgid "Use AJAX to lazy load choices?"
|
2804 |
+
msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu laden?"
|
2805 |
|
2806 |
#: includes/fields/class-acf-field-select.php:427
|
2807 |
msgid "Specify the value returned"
|
2817 |
msgstr "Tab"
|
2818 |
|
2819 |
# @ acf
|
2820 |
+
#: includes/fields/class-acf-field-tab.php:102
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2821 |
msgid "Placement"
|
2822 |
msgstr "Platzierung Tabs"
|
2823 |
|
2824 |
+
#: includes/fields/class-acf-field-tab.php:115
|
2825 |
+
msgid ""
|
2826 |
+
"Define an endpoint for the previous tabs to stop. This will start a new "
|
2827 |
+
"group of tabs."
|
2828 |
+
msgstr ""
|
2829 |
+
"Schließt die vorangegangene Gruppe an Tab-Feldern ab und beginnt eine neue "
|
2830 |
+
"Gruppe."
|
2831 |
|
2832 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
2833 |
#, php-format
|
2941 |
msgstr "Text einzeilig"
|
2942 |
|
2943 |
# @ acf
|
2944 |
+
#: includes/fields/class-acf-field-text.php:155
|
2945 |
+
#: includes/fields/class-acf-field-textarea.php:120
|
2946 |
msgid "Character Limit"
|
2947 |
msgstr "Zeichenbegrenzung"
|
2948 |
|
2949 |
# @ acf
|
2950 |
+
#: includes/fields/class-acf-field-text.php:156
|
2951 |
+
#: includes/fields/class-acf-field-textarea.php:121
|
2952 |
msgid "Leave blank for no limit"
|
2953 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2954 |
|
2958 |
msgstr "Text mehrzeilig"
|
2959 |
|
2960 |
# @ acf
|
2961 |
+
#: includes/fields/class-acf-field-textarea.php:129
|
2962 |
msgid "Rows"
|
2963 |
msgstr "Zeilenanzahl"
|
2964 |
|
2965 |
# @ acf
|
2966 |
+
#: includes/fields/class-acf-field-textarea.php:130
|
2967 |
msgid "Sets the textarea height"
|
2968 |
msgstr "Definiert die Höhe des Textfelds"
|
2969 |
|
3016 |
msgstr "URL"
|
3017 |
|
3018 |
# @ acf
|
3019 |
+
#: includes/fields/class-acf-field-url.php:151
|
3020 |
msgid "Value must be a valid URL"
|
3021 |
msgstr "Bitte eine gültige URL eingeben"
|
3022 |
|
3041 |
msgstr "WYSIWYG-Editor"
|
3042 |
|
3043 |
# @ acf
|
3044 |
+
#: includes/fields/class-acf-field-wysiwyg.php:359
|
3045 |
msgid "Visual"
|
3046 |
msgstr "Visuell"
|
3047 |
|
3048 |
# @ acf
|
3049 |
+
#: includes/fields/class-acf-field-wysiwyg.php:360
|
3050 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3051 |
msgid "Text"
|
3052 |
msgstr "Text"
|
3053 |
|
3054 |
+
#: includes/fields/class-acf-field-wysiwyg.php:366
|
3055 |
msgid "Click to initialize TinyMCE"
|
3056 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3057 |
|
3058 |
# @ acf
|
3059 |
+
#: includes/fields/class-acf-field-wysiwyg.php:419
|
3060 |
msgid "Tabs"
|
3061 |
msgstr "Tabs"
|
3062 |
|
3063 |
# @ acf
|
3064 |
+
#: includes/fields/class-acf-field-wysiwyg.php:424
|
3065 |
msgid "Visual & Text"
|
3066 |
msgstr "Visuell & Text"
|
3067 |
|
3068 |
# @ acf
|
3069 |
+
#: includes/fields/class-acf-field-wysiwyg.php:425
|
3070 |
msgid "Visual Only"
|
3071 |
msgstr "Nur Visuell"
|
3072 |
|
3073 |
# @ acf
|
3074 |
+
#: includes/fields/class-acf-field-wysiwyg.php:426
|
3075 |
msgid "Text Only"
|
3076 |
msgstr "Nur Text"
|
3077 |
|
3078 |
# @ acf
|
3079 |
+
#: includes/fields/class-acf-field-wysiwyg.php:433
|
3080 |
msgid "Toolbar"
|
3081 |
msgstr "Werkzeugleiste"
|
3082 |
|
3083 |
# @ acf
|
3084 |
+
#: includes/fields/class-acf-field-wysiwyg.php:443
|
3085 |
msgid "Show Media Upload Buttons?"
|
3086 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3087 |
|
3088 |
+
#: includes/fields/class-acf-field-wysiwyg.php:453
|
3089 |
msgid "Delay initialization?"
|
3090 |
msgstr "Initialisierung verzögern?"
|
3091 |
|
3092 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
3093 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3094 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3095 |
|
3104 |
msgstr "E-Mail bestätigen"
|
3105 |
|
3106 |
# @ acf
|
3107 |
+
#: includes/forms/form-front.php:103
|
3108 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
3109 |
msgid "Update"
|
3110 |
msgstr "Aktualisieren"
|
3111 |
|
3114 |
msgid "Post updated"
|
3115 |
msgstr "Beitrag aktualisiert"
|
3116 |
|
3117 |
+
#: includes/forms/form-front.php:230
|
3118 |
msgid "Spam Detected"
|
3119 |
msgstr "Spam entdeckt"
|
3120 |
|
3134 |
msgstr "Überprüfung erfolgreich"
|
3135 |
|
3136 |
# @ acf
|
3137 |
+
#: includes/input.php:262 includes/validation.php:285
|
3138 |
+
#: includes/validation.php:296
|
3139 |
msgid "Validation failed"
|
3140 |
msgstr "Überprüfung fehlgeschlagen"
|
3141 |
|
3157 |
# @ acf
|
3158 |
#: includes/input.php:266
|
3159 |
msgid "Are you sure?"
|
3160 |
+
msgstr "Wirklich entfernen?"
|
3161 |
|
3162 |
#: includes/input.php:270
|
3163 |
msgid "Cancel"
|
3375 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
3376 |
"Custom Field Group</a>"
|
3377 |
msgstr ""
|
3378 |
+
"Keine Feld-Gruppen für die Options-Seite gefunden. <a href=\"%s\">Erstelle "
|
3379 |
+
"eine Feld-Gruppe</a>"
|
3380 |
|
3381 |
# @ acf
|
3382 |
#: pro/admin/admin-settings-updates.php:78
|
3383 |
msgid "<b>Error</b>. Could not connect to update server"
|
3384 |
msgstr ""
|
3385 |
+
"<b>Fehler</b>. Es konnte keine Verbindung zum Update-Server hergestellt "
|
3386 |
+
"werden"
|
3387 |
|
3388 |
# @ acf
|
3389 |
#: pro/admin/admin-settings-updates.php:162
|
3409 |
#, php-format
|
3410 |
msgid ""
|
3411 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3412 |
+
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
3413 |
+
"a>."
|
3414 |
msgstr ""
|
3415 |
"Um die Update-Fähigkeit freizuschalten geben Sie bitte unten Ihren "
|
3416 |
+
"Lizenzschlüssel ein. Falls Sie keinen besitzen informieren Sie sich bitte "
|
3417 |
+
"hier hinsichtlich der <a href=\"%s\" target=\"_blank\">Preise und "
|
3418 |
+
"Einzelheiten</a>."
|
3419 |
|
3420 |
# @ acf
|
3421 |
#: pro/admin/views/html-settings-updates.php:29
|
3469 |
msgid "Clone"
|
3470 |
msgstr "Klon"
|
3471 |
|
3472 |
+
#: pro/fields/class-acf-field-clone.php:808
|
3473 |
msgid "Select one or more fields you wish to clone"
|
3474 |
msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten"
|
3475 |
|
3476 |
# @ acf
|
3477 |
+
#: pro/fields/class-acf-field-clone.php:825
|
3478 |
msgid "Display"
|
3479 |
msgstr "Anzeige"
|
3480 |
|
3481 |
+
#: pro/fields/class-acf-field-clone.php:826
|
3482 |
msgid "Specify the style used to render the clone field"
|
3483 |
msgstr "Geben Sie den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3484 |
|
3485 |
+
#: pro/fields/class-acf-field-clone.php:831
|
3486 |
msgid "Group (displays selected fields in a group within this field)"
|
3487 |
msgstr ""
|
3488 |
+
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
3489 |
+
"Feldes an)"
|
3490 |
|
3491 |
+
#: pro/fields/class-acf-field-clone.php:832
|
3492 |
msgid "Seamless (replaces this field with selected fields)"
|
3493 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3494 |
|
3495 |
+
#: pro/fields/class-acf-field-clone.php:853
|
3496 |
#, php-format
|
3497 |
msgid "Labels will be displayed as %s"
|
3498 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3499 |
|
3500 |
+
#: pro/fields/class-acf-field-clone.php:856
|
3501 |
msgid "Prefix Field Labels"
|
3502 |
msgstr "Präfix für Feld-Beschriftungen"
|
3503 |
|
3504 |
+
#: pro/fields/class-acf-field-clone.php:867
|
3505 |
#, php-format
|
3506 |
msgid "Values will be saved as %s"
|
3507 |
msgstr "Werte werden als %s gespeichert"
|
3508 |
|
3509 |
+
#: pro/fields/class-acf-field-clone.php:870
|
3510 |
msgid "Prefix Field Names"
|
3511 |
msgstr "Präfix für Feld-Namen"
|
3512 |
|
3513 |
+
#: pro/fields/class-acf-field-clone.php:988
|
3514 |
msgid "Unknown field"
|
3515 |
msgstr "Unbekanntes Feld"
|
3516 |
|
3517 |
+
#: pro/fields/class-acf-field-clone.php:1027
|
3518 |
msgid "Unknown field group"
|
3519 |
msgstr "Unbekannte Feld-Gruppe"
|
3520 |
|
3521 |
+
#: pro/fields/class-acf-field-clone.php:1031
|
3522 |
#, php-format
|
3523 |
msgid "All fields from %s field group"
|
3524 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
3602 |
msgstr "Zum Auswählen anklicken"
|
3603 |
|
3604 |
# @ acf
|
3605 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3606 |
msgid "Reorder Layout"
|
3607 |
msgstr "Layout sortieren"
|
3608 |
|
3609 |
# @ acf
|
3610 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3611 |
msgid "Reorder"
|
3612 |
msgstr "Sortieren"
|
3613 |
|
3614 |
# @ acf
|
3615 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3616 |
msgid "Delete Layout"
|
3617 |
msgstr "Layout löschen"
|
3618 |
|
3619 |
# @ acf
|
3620 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
3621 |
msgid "Duplicate Layout"
|
3622 |
msgstr "Layout duplizieren"
|
3623 |
|
3624 |
# @ acf
|
3625 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
3626 |
msgid "Add New Layout"
|
3627 |
msgstr "Neues Layout hinzufügen"
|
3628 |
|
3629 |
# @ acf
|
3630 |
+
#: pro/fields/class-acf-field-flexible-content.php:630
|
3631 |
msgid "Min"
|
3632 |
msgstr "Min"
|
3633 |
|
3634 |
# @ acf
|
3635 |
+
#: pro/fields/class-acf-field-flexible-content.php:643
|
3636 |
msgid "Max"
|
3637 |
msgstr "Max"
|
3638 |
|
3639 |
# @ acf
|
3640 |
+
#: pro/fields/class-acf-field-flexible-content.php:670
|
3641 |
#: pro/fields/class-acf-field-repeater.php:466
|
3642 |
msgid "Button Label"
|
3643 |
msgstr "Button-Beschriftung"
|
3644 |
|
3645 |
# @ acf
|
3646 |
+
#: pro/fields/class-acf-field-flexible-content.php:679
|
3647 |
msgid "Minimum Layouts"
|
3648 |
msgstr "Minimum Layouts"
|
3649 |
|
3650 |
# @ acf
|
3651 |
+
#: pro/fields/class-acf-field-flexible-content.php:688
|
3652 |
msgid "Maximum Layouts"
|
3653 |
msgstr "Maximum Layouts"
|
3654 |
|
3794 |
#: pro/updates.php:97
|
3795 |
#, php-format
|
3796 |
msgid ""
|
3797 |
+
"To enable updates, please enter your license key on the <a href=\"%s"
|
3798 |
+
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
3799 |
+
"\">details & pricing</a>."
|
3800 |
msgstr ""
|
3801 |
"Um die Update-Fähigkeit freizuschalten geben Sie bitte Ihren Lizenzschlüssel "
|
3802 |
"auf der <a href=\"%s\">Aktualisierungen</a> Seite ein. Falls Sie keinen "
|
3803 |
+
"besitzen informieren Sie sich bitte hier hinsichtlich der <a href=\"%s\" "
|
3804 |
+
"target=\"_blank\">Preise und Einzelheiten</a>."
|
3805 |
|
3806 |
#. Plugin URI of the plugin/theme
|
3807 |
msgid "https://www.advancedcustomfields.com/"
|
3816 |
msgid "http://www.elliotcondon.com/"
|
3817 |
msgstr "http://www.elliotcondon.com/"
|
3818 |
|
3819 |
+
# @ acf
|
3820 |
+
#~ msgid "Export Field Groups to PHP"
|
3821 |
+
#~ msgstr "Exportieren der Feld-Gruppen nach PHP"
|
3822 |
+
|
3823 |
+
# @ acf
|
3824 |
+
#~ msgid "Download export file"
|
3825 |
+
#~ msgstr "JSON-Datei exportieren"
|
3826 |
+
|
3827 |
+
# @ acf
|
3828 |
+
#~ msgid "Generate export code"
|
3829 |
+
#~ msgstr "Erstelle PHP-Code"
|
3830 |
+
|
3831 |
+
# @ acf
|
3832 |
+
#~ msgid "Import"
|
3833 |
+
#~ msgstr "Importieren"
|
3834 |
+
|
3835 |
+
# @ acf
|
3836 |
+
#~ msgid ""
|
3837 |
+
#~ "The tab field will display incorrectly when added to a Table style "
|
3838 |
+
#~ "repeater field or flexible content field layout"
|
3839 |
+
#~ msgstr ""
|
3840 |
+
#~ "Ein Tab-Feld wird nicht korrekt dargestellt, wenn es zu einem "
|
3841 |
+
#~ "Wiederholung- oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden "
|
3842 |
+
#~ "ist"
|
3843 |
+
|
3844 |
+
# @ acf
|
3845 |
+
#~ msgid ""
|
3846 |
+
#~ "Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
3847 |
+
#~ "together."
|
3848 |
+
#~ msgstr ""
|
3849 |
+
#~ "Mit \"Tab Feldern\" können Felder für eine bessere Struktur im Editor in "
|
3850 |
+
#~ "Tabs zusammengefasst werden."
|
3851 |
+
|
3852 |
+
# @ acf
|
3853 |
+
#~ msgid ""
|
3854 |
+
#~ "All fields following this \"tab field\" (or until another \"tab field\" "
|
3855 |
+
#~ "is defined) will be grouped together using this field's label as the tab "
|
3856 |
+
#~ "heading."
|
3857 |
+
#~ msgstr ""
|
3858 |
+
#~ "Alle Felder, die auf dieses \"Tab Feld\" folgen (oder bis ein weiteres "
|
3859 |
+
#~ "\"Tab Feld\" definiert ist), werden in einem Tab mit dem Namen dieses "
|
3860 |
+
#~ "Felds zusammengefasst."
|
3861 |
+
|
3862 |
# @ acf
|
3863 |
#~ msgid "Getting Started"
|
3864 |
#~ msgstr "Erste Schritte"
|
3890 |
|
3891 |
#~ msgid "Term meta upgrade not possible (termmeta table does not exist)"
|
3892 |
#~ msgstr ""
|
3893 |
+
#~ "Term Meta-Aktualisierung war nicht möglich (die termmeta-Tabelle "
|
3894 |
+
#~ "existiert nicht)"
|
3895 |
|
3896 |
# @ acf
|
3897 |
#~ msgid "Error"
|
3906 |
#~ "Error validating ACF PRO license URL (website does not match). Please re-"
|
3907 |
#~ "activate your license"
|
3908 |
#~ msgstr ""
|
3909 |
+
#~ "Fehler bei der Überprüfung der ACF PRO Lizenz URL (Webseiten stimmen "
|
3910 |
+
#~ "nicht überein). Bitte reaktivieren sie ihre Lizenz"
|
3911 |
|
3912 |
#~ msgid "Disabled"
|
3913 |
#~ msgstr "Deaktiviert"
|
3940 |
#~ "Error validating license URL (website does not match). Please re-activate "
|
3941 |
#~ "your license"
|
3942 |
#~ msgstr ""
|
3943 |
+
#~ "Fehler bei der Überprüfung der Lizenz-URL (Webseite stimmt nicht "
|
3944 |
+
#~ "überein). Bitte reaktivieren Sie ihre Lizenz"
|
3945 |
|
3946 |
# @ acf
|
3947 |
#~ msgid "<b>Success</b>. Import tool added %s field groups: %s"
|
3949 |
|
3950 |
# @ acf
|
3951 |
#~ msgid ""
|
3952 |
+
#~ "<b>Warning</b>. Import tool detected %s field groups already exist and "
|
3953 |
+
#~ "have been ignored: %s"
|
3954 |
#~ msgstr ""
|
3955 |
+
#~ "<b>Warnung</b>. Der Import hat %s Feld-Gruppen erkannt, die schon "
|
3956 |
+
#~ "vorhanden sind und diese ignoriert: %s"
|
3957 |
|
3958 |
# @ acf
|
3959 |
#~ msgid "Upgrade ACF"
|
3965 |
|
3966 |
# @ acf
|
3967 |
#~ msgid ""
|
3968 |
+
#~ "The following sites require a DB upgrade. Check the ones you want to "
|
3969 |
+
#~ "update and then click “Upgrade Database”."
|
3970 |
#~ msgstr ""
|
3971 |
+
#~ "Die folgenden Seiten erfordern eine Datenbank- Aktualisierung. Markieren "
|
3972 |
+
#~ "Sie die gewünschten Seiten und klicken \\\"Aktualisiere Datenbank\\\"."
|
3973 |
|
3974 |
# @ acf
|
3975 |
#~ msgid "Select"
|
3978 |
# @ acf
|
3979 |
#~ msgid "<b>Connection Error</b>. Sorry, please try again"
|
3980 |
#~ msgstr ""
|
3981 |
+
#~ "<b>Verbindungsfehler</b>. Entschuldigung, versuchen Sie es bitte später "
|
3982 |
+
#~ "noch einmal"
|
3983 |
|
3984 |
# @ acf
|
3985 |
#~ msgid "Done"
|
4030 |
|
4031 |
# @ acf
|
4032 |
#~ msgid ""
|
4033 |
+
#~ "To unlock updates, please enter your license key below. If you don't have "
|
4034 |
+
#~ "a licence key, please see"
|
4035 |
#~ msgstr ""
|
4036 |
#~ "Um die Aktualisierungs-Fähigkeit freizuschalten, tragen Sie bitte Ihren "
|
4037 |
#~ "Lizenzschlüssel im darunterliegenden Feld ein. Sollten Sie noch keinen "
|
4044 |
# @ acf
|
4045 |
#~ msgid ""
|
4046 |
#~ "To enable updates, please enter your license key on the <a href=\"%s"
|
4047 |
+
#~ "\">Updates</a> page. If you don't have a licence key, please see <a href="
|
4048 |
+
#~ "\"%s\">details & pricing</a>"
|
4049 |
#~ msgstr ""
|
4050 |
#~ "Um die Aktualisierungen freizuschalten, tragen Sie bitte Ihren "
|
4051 |
#~ "Lizenzschlüssel auf der <a href=\"%s\">Aktualisierungen</a>-Seite ein. "
|
4052 |
+
#~ "Sollten Sie noch keinen Lizenzschlüssel besitzen, informieren Sie sich "
|
4053 |
+
#~ "bitte hier über die <a href=\"%s\">Details und Preise</a>"
|
4054 |
|
4055 |
# @ acf
|
4056 |
#~ msgid "Advanced Custom Fields Pro"
|
4080 |
#~ msgstr "Synchronisierung verfügbar"
|
4081 |
|
4082 |
# @ acf
|
4083 |
+
#~ msgid ""
|
4084 |
+
#~ "Please note that all text will first be passed through the wp function "
|
4085 |
#~ msgstr ""
|
4086 |
#~ "Bitte beachten Sie, dass der gesamte Text zuerst durch eine WordPress "
|
4087 |
#~ "Funktion gefiltert wird. Siehe: "
|
lang/acf-es_ES.mo
CHANGED
Binary file
|
lang/acf-es_ES.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:35+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
9 |
"Language: es_ES\n"
|
@@ -113,7 +113,7 @@ msgid "Inactive"
|
|
113 |
msgstr "Inactivo"
|
114 |
|
115 |
#: acf.php:440
|
116 |
-
#,
|
117 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
118 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
119 |
msgstr[0] "Activo <span class=\"count\">(%s)</span>"
|
@@ -314,7 +314,7 @@ msgstr "Changelog"
|
|
314 |
#: includes/admin/admin-field-groups.php:614
|
315 |
#, php-format
|
316 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
317 |
-
msgstr ""
|
318 |
|
319 |
#: includes/admin/admin-field-groups.php:617
|
320 |
msgid "Resources"
|
@@ -322,27 +322,24 @@ msgstr "Recursos"
|
|
322 |
|
323 |
#: includes/admin/admin-field-groups.php:619
|
324 |
msgid "Website"
|
325 |
-
msgstr ""
|
326 |
|
327 |
#: includes/admin/admin-field-groups.php:620
|
328 |
-
#, fuzzy
|
329 |
msgid "Documentation"
|
330 |
-
msgstr "
|
331 |
|
332 |
#: includes/admin/admin-field-groups.php:621
|
333 |
-
#, fuzzy
|
334 |
msgid "Support"
|
335 |
-
msgstr "
|
336 |
|
337 |
#: includes/admin/admin-field-groups.php:623
|
338 |
-
#, fuzzy
|
339 |
msgid "Pro"
|
340 |
-
msgstr "
|
341 |
|
342 |
#: includes/admin/admin-field-groups.php:628
|
343 |
-
#,
|
344 |
msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
345 |
-
msgstr "Gracias por
|
346 |
|
347 |
#: includes/admin/admin-field-groups.php:668
|
348 |
msgid "Duplicate this item"
|
@@ -377,10 +374,9 @@ msgstr "Sincronizar"
|
|
377 |
|
378 |
#: includes/admin/admin-field-groups.php:780
|
379 |
msgid "Apply"
|
380 |
-
msgstr ""
|
381 |
|
382 |
#: includes/admin/admin-field-groups.php:798
|
383 |
-
#, fuzzy
|
384 |
msgid "Bulk Actions"
|
385 |
msgstr "Acciones en lote"
|
386 |
|
@@ -400,7 +396,7 @@ msgstr "Revisar sitios y actualizar"
|
|
400 |
|
401 |
#: includes/admin/install.php:187
|
402 |
msgid "Error validating request"
|
403 |
-
msgstr ""
|
404 |
|
405 |
#: includes/admin/install.php:210 includes/admin/views/install.php:105
|
406 |
msgid "No updates available."
|
@@ -451,11 +447,11 @@ msgid "Import file empty"
|
|
451 |
msgstr "Archivo de imporación vacío"
|
452 |
|
453 |
#: includes/admin/settings-tools.php:331
|
454 |
-
#,
|
455 |
msgid "Imported 1 field group"
|
456 |
msgid_plural "Imported %s field groups"
|
457 |
-
msgstr[0] "Importar
|
458 |
-
msgstr[1] "Importar
|
459 |
|
460 |
#: includes/admin/views/field-group-field-conditional-logic.php:28
|
461 |
msgid "Conditional Logic"
|
@@ -599,7 +595,7 @@ msgstr "Nombre"
|
|
599 |
|
600 |
#: includes/admin/views/field-group-fields.php:7
|
601 |
msgid "Key"
|
602 |
-
msgstr ""
|
603 |
|
604 |
#: includes/admin/views/field-group-fields.php:8
|
605 |
msgid "Type"
|
@@ -668,7 +664,7 @@ msgstr "Alineada arriba"
|
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:63
|
670 |
#: includes/fields/class-acf-field-tab.php:117
|
671 |
-
msgid "Left
|
672 |
msgstr "Alineada a la izquierda"
|
673 |
|
674 |
#: includes/admin/views/field-group-options.php:70
|
@@ -776,9 +772,8 @@ msgid "Show this field group if"
|
|
776 |
msgstr "Mostrar este grupo de campos si"
|
777 |
|
778 |
#: includes/admin/views/install-network.php:4
|
779 |
-
#, fuzzy
|
780 |
msgid "Upgrade Sites"
|
781 |
-
msgstr "
|
782 |
|
783 |
#: includes/admin/views/install-network.php:9
|
784 |
#: includes/admin/views/install.php:3
|
@@ -786,13 +781,13 @@ msgid "Advanced Custom Fields Database Upgrade"
|
|
786 |
msgstr "Actualización de Base de Datos de Advanced Custom Fields"
|
787 |
|
788 |
#: includes/admin/views/install-network.php:11
|
789 |
-
#,
|
790 |
msgid ""
|
791 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
792 |
"and then click %s."
|
793 |
msgstr ""
|
794 |
-
"Los siguientes sitios requieren una actualización de base de datos.
|
795 |
-
"los que
|
796 |
|
797 |
#: includes/admin/views/install-network.php:20
|
798 |
#: includes/admin/views/install-network.php:28
|
@@ -878,17 +873,19 @@ msgid ""
|
|
878 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
879 |
"latest version."
|
880 |
msgstr ""
|
|
|
|
|
881 |
|
882 |
#: includes/admin/views/install.php:7
|
883 |
msgid "Reading upgrade tasks..."
|
884 |
msgstr "Leyendo tareas de actualización..."
|
885 |
|
886 |
#: includes/admin/views/install.php:11
|
887 |
-
#,
|
888 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
889 |
msgstr ""
|
890 |
-
"Actualización de base de datos
|
891 |
-
"
|
892 |
|
893 |
#: includes/admin/views/settings-addons.php:17
|
894 |
msgid "Download & Install"
|
@@ -1271,9 +1268,8 @@ msgstr "(sin título)"
|
|
1271 |
#: includes/fields/class-acf-field-page_link.php:284
|
1272 |
#: includes/fields/class-acf-field-post_object.php:283
|
1273 |
#: includes/fields/class-acf-field-taxonomy.php:992
|
1274 |
-
#, fuzzy
|
1275 |
msgid "Parent"
|
1276 |
-
msgstr "
|
1277 |
|
1278 |
#: includes/api/api-helpers.php:3891
|
1279 |
#, php-format
|
@@ -1346,7 +1342,7 @@ msgstr "Tipo de campo inexistente"
|
|
1346 |
|
1347 |
#: includes/fields.php:305
|
1348 |
msgid "Unknown"
|
1349 |
-
msgstr ""
|
1350 |
|
1351 |
#: includes/fields/class-acf-field-checkbox.php:36
|
1352 |
#: includes/fields/class-acf-field-taxonomy.php:786
|
@@ -1358,9 +1354,8 @@ msgid "Toggle All"
|
|
1358 |
msgstr "Invertir Todos"
|
1359 |
|
1360 |
#: includes/fields/class-acf-field-checkbox.php:207
|
1361 |
-
#, fuzzy
|
1362 |
msgid "Add new choice"
|
1363 |
-
msgstr "Agregar
|
1364 |
|
1365 |
#: includes/fields/class-acf-field-checkbox.php:246
|
1366 |
#: includes/fields/class-acf-field-radio.php:250
|
@@ -1388,23 +1383,20 @@ msgid "red : Red"
|
|
1388 |
msgstr "rojo : Rojo"
|
1389 |
|
1390 |
#: includes/fields/class-acf-field-checkbox.php:255
|
1391 |
-
#, fuzzy
|
1392 |
msgid "Allow Custom"
|
1393 |
-
msgstr "Permitir
|
1394 |
|
1395 |
#: includes/fields/class-acf-field-checkbox.php:260
|
1396 |
msgid "Allow 'custom' values to be added"
|
1397 |
-
msgstr ""
|
1398 |
|
1399 |
#: includes/fields/class-acf-field-checkbox.php:266
|
1400 |
-
#, fuzzy
|
1401 |
msgid "Save Custom"
|
1402 |
-
msgstr "
|
1403 |
|
1404 |
#: includes/fields/class-acf-field-checkbox.php:271
|
1405 |
-
#, fuzzy
|
1406 |
msgid "Save 'custom' values to the field's choices"
|
1407 |
-
msgstr "Guardar
|
1408 |
|
1409 |
#: includes/fields/class-acf-field-checkbox.php:277
|
1410 |
#: includes/fields/class-acf-field-color_picker.php:146
|
@@ -1463,15 +1455,14 @@ msgstr "Especifica el valor retornado en el front end"
|
|
1463 |
#: includes/fields/class-acf-field-checkbox.php:316
|
1464 |
#: includes/fields/class-acf-field-radio.php:320
|
1465 |
#: includes/fields/class-acf-field-select.php:529
|
1466 |
-
#, fuzzy
|
1467 |
msgid "Value"
|
1468 |
-
msgstr "
|
1469 |
|
1470 |
#: includes/fields/class-acf-field-checkbox.php:318
|
1471 |
#: includes/fields/class-acf-field-radio.php:322
|
1472 |
#: includes/fields/class-acf-field-select.php:531
|
1473 |
msgid "Both (Array)"
|
1474 |
-
msgstr ""
|
1475 |
|
1476 |
#: includes/fields/class-acf-field-color_picker.php:36
|
1477 |
msgid "Color Picker"
|
@@ -1490,22 +1481,19 @@ msgid "Select Color"
|
|
1490 |
msgstr "Selecciona Color"
|
1491 |
|
1492 |
#: includes/fields/class-acf-field-color_picker.php:86
|
1493 |
-
#, fuzzy
|
1494 |
msgid "Current Color"
|
1495 |
-
msgstr "
|
1496 |
|
1497 |
#: includes/fields/class-acf-field-date_picker.php:36
|
1498 |
msgid "Date Picker"
|
1499 |
msgstr "Selector de Fecha"
|
1500 |
|
1501 |
#: includes/fields/class-acf-field-date_picker.php:44
|
1502 |
-
#, fuzzy
|
1503 |
msgctxt "Date Picker JS closeText"
|
1504 |
msgid "Done"
|
1505 |
msgstr "Hecho"
|
1506 |
|
1507 |
#: includes/fields/class-acf-field-date_picker.php:45
|
1508 |
-
#, fuzzy
|
1509 |
msgctxt "Date Picker JS currentText"
|
1510 |
msgid "Today"
|
1511 |
msgstr "Hoy"
|
@@ -1513,17 +1501,17 @@ msgstr "Hoy"
|
|
1513 |
#: includes/fields/class-acf-field-date_picker.php:46
|
1514 |
msgctxt "Date Picker JS nextText"
|
1515 |
msgid "Next"
|
1516 |
-
msgstr ""
|
1517 |
|
1518 |
#: includes/fields/class-acf-field-date_picker.php:47
|
1519 |
msgctxt "Date Picker JS prevText"
|
1520 |
msgid "Prev"
|
1521 |
-
msgstr ""
|
1522 |
|
1523 |
#: includes/fields/class-acf-field-date_picker.php:48
|
1524 |
msgctxt "Date Picker JS weekHeader"
|
1525 |
msgid "Wk"
|
1526 |
-
msgstr ""
|
1527 |
|
1528 |
#: includes/fields/class-acf-field-date_picker.php:223
|
1529 |
#: includes/fields/class-acf-field-date_time_picker.php:197
|
@@ -1543,19 +1531,16 @@ msgstr "El formato mostrado cuando se edita un post"
|
|
1543 |
#: includes/fields/class-acf-field-date_time_picker.php:224
|
1544 |
#: includes/fields/class-acf-field-time_picker.php:135
|
1545 |
#: includes/fields/class-acf-field-time_picker.php:150
|
1546 |
-
#, fuzzy
|
1547 |
msgid "Custom:"
|
1548 |
-
msgstr "
|
1549 |
|
1550 |
#: includes/fields/class-acf-field-date_picker.php:242
|
1551 |
-
#, fuzzy
|
1552 |
msgid "Save Format"
|
1553 |
-
msgstr "
|
1554 |
|
1555 |
#: includes/fields/class-acf-field-date_picker.php:243
|
1556 |
-
#, fuzzy
|
1557 |
msgid "The format used when saving a value"
|
1558 |
-
msgstr "El formato
|
1559 |
|
1560 |
#: includes/fields/class-acf-field-date_picker.php:253
|
1561 |
#: includes/fields/class-acf-field-date_time_picker.php:214
|
@@ -1578,88 +1563,83 @@ msgid "Week Starts On"
|
|
1578 |
msgstr "La semana comenza en "
|
1579 |
|
1580 |
#: includes/fields/class-acf-field-date_time_picker.php:36
|
1581 |
-
#, fuzzy
|
1582 |
msgid "Date Time Picker"
|
1583 |
-
msgstr "Selector de
|
1584 |
|
1585 |
#: includes/fields/class-acf-field-date_time_picker.php:44
|
1586 |
-
#, fuzzy
|
1587 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1588 |
msgid "Choose Time"
|
1589 |
-
msgstr "
|
1590 |
|
1591 |
#: includes/fields/class-acf-field-date_time_picker.php:45
|
1592 |
msgctxt "Date Time Picker JS timeText"
|
1593 |
msgid "Time"
|
1594 |
-
msgstr ""
|
1595 |
|
1596 |
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1597 |
msgctxt "Date Time Picker JS hourText"
|
1598 |
msgid "Hour"
|
1599 |
-
msgstr ""
|
1600 |
|
1601 |
#: includes/fields/class-acf-field-date_time_picker.php:47
|
1602 |
msgctxt "Date Time Picker JS minuteText"
|
1603 |
msgid "Minute"
|
1604 |
-
msgstr ""
|
1605 |
|
1606 |
#: includes/fields/class-acf-field-date_time_picker.php:48
|
1607 |
msgctxt "Date Time Picker JS secondText"
|
1608 |
msgid "Second"
|
1609 |
-
msgstr ""
|
1610 |
|
1611 |
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1612 |
msgctxt "Date Time Picker JS millisecText"
|
1613 |
msgid "Millisecond"
|
1614 |
-
msgstr ""
|
1615 |
|
1616 |
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1617 |
msgctxt "Date Time Picker JS microsecText"
|
1618 |
msgid "Microsecond"
|
1619 |
-
msgstr ""
|
1620 |
|
1621 |
#: includes/fields/class-acf-field-date_time_picker.php:51
|
1622 |
msgctxt "Date Time Picker JS timezoneText"
|
1623 |
msgid "Time Zone"
|
1624 |
-
msgstr ""
|
1625 |
|
1626 |
#: includes/fields/class-acf-field-date_time_picker.php:52
|
1627 |
-
#, fuzzy
|
1628 |
msgctxt "Date Time Picker JS currentText"
|
1629 |
msgid "Now"
|
1630 |
-
msgstr "
|
1631 |
|
1632 |
#: includes/fields/class-acf-field-date_time_picker.php:53
|
1633 |
-
#, fuzzy
|
1634 |
msgctxt "Date Time Picker JS closeText"
|
1635 |
msgid "Done"
|
1636 |
msgstr "Hecho"
|
1637 |
|
1638 |
#: includes/fields/class-acf-field-date_time_picker.php:54
|
1639 |
-
#, fuzzy
|
1640 |
msgctxt "Date Time Picker JS selectText"
|
1641 |
msgid "Select"
|
1642 |
-
msgstr "
|
1643 |
|
1644 |
#: includes/fields/class-acf-field-date_time_picker.php:56
|
1645 |
msgctxt "Date Time Picker JS amText"
|
1646 |
msgid "AM"
|
1647 |
-
msgstr ""
|
1648 |
|
1649 |
#: includes/fields/class-acf-field-date_time_picker.php:57
|
1650 |
msgctxt "Date Time Picker JS amTextShort"
|
1651 |
msgid "A"
|
1652 |
-
msgstr ""
|
1653 |
|
1654 |
#: includes/fields/class-acf-field-date_time_picker.php:60
|
1655 |
msgctxt "Date Time Picker JS pmText"
|
1656 |
msgid "PM"
|
1657 |
-
msgstr ""
|
1658 |
|
1659 |
#: includes/fields/class-acf-field-date_time_picker.php:61
|
1660 |
msgctxt "Date Time Picker JS pmTextShort"
|
1661 |
msgid "P"
|
1662 |
-
msgstr ""
|
1663 |
|
1664 |
#: includes/fields/class-acf-field-email.php:36
|
1665 |
msgid "Email"
|
@@ -1740,9 +1720,8 @@ msgid "Uploaded to this post"
|
|
1740 |
msgstr "Subidos a este post"
|
1741 |
|
1742 |
#: includes/fields/class-acf-field-file.php:145
|
1743 |
-
#, fuzzy
|
1744 |
msgid "File name"
|
1745 |
-
msgstr "Nombre
|
1746 |
|
1747 |
#: includes/fields/class-acf-field-file.php:149
|
1748 |
#: includes/fields/class-acf-field-file.php:252
|
@@ -1886,9 +1865,8 @@ msgid "Customise the map height"
|
|
1886 |
msgstr "Personalizar altura de mapa"
|
1887 |
|
1888 |
#: includes/fields/class-acf-field-group.php:36
|
1889 |
-
#, fuzzy
|
1890 |
msgid "Group"
|
1891 |
-
msgstr "
|
1892 |
|
1893 |
#: includes/fields/class-acf-field-group.php:469
|
1894 |
#: pro/fields/class-acf-field-repeater.php:453
|
@@ -1899,6 +1877,7 @@ msgstr "Sub Campos"
|
|
1899 |
#: pro/fields/class-acf-field-clone.php:890
|
1900 |
msgid "Specify the style used to render the selected fields"
|
1901 |
msgstr ""
|
|
|
1902 |
|
1903 |
#: includes/fields/class-acf-field-group.php:491
|
1904 |
#: pro/fields/class-acf-field-clone.php:895
|
@@ -1994,28 +1973,24 @@ msgid "Width"
|
|
1994 |
msgstr "Ancho"
|
1995 |
|
1996 |
#: includes/fields/class-acf-field-link.php:36
|
1997 |
-
#, fuzzy
|
1998 |
msgid "Link"
|
1999 |
-
msgstr "
|
2000 |
|
2001 |
#: includes/fields/class-acf-field-link.php:146
|
2002 |
-
#, fuzzy
|
2003 |
msgid "Select Link"
|
2004 |
-
msgstr "
|
2005 |
|
2006 |
#: includes/fields/class-acf-field-link.php:151
|
2007 |
msgid "Opens in a new window/tab"
|
2008 |
-
msgstr ""
|
2009 |
|
2010 |
#: includes/fields/class-acf-field-link.php:186
|
2011 |
-
#, fuzzy
|
2012 |
msgid "Link Array"
|
2013 |
-
msgstr "
|
2014 |
|
2015 |
#: includes/fields/class-acf-field-link.php:187
|
2016 |
-
#, fuzzy
|
2017 |
msgid "Link URL"
|
2018 |
-
msgstr "URL
|
2019 |
|
2020 |
#: includes/fields/class-acf-field-message.php:36
|
2021 |
#: includes/fields/class-acf-field-message.php:115
|
@@ -2149,7 +2124,7 @@ msgstr "Permitir Vacío?"
|
|
2149 |
|
2150 |
#: includes/fields/class-acf-field-page_link.php:538
|
2151 |
msgid "Allow Archives URLs"
|
2152 |
-
msgstr ""
|
2153 |
|
2154 |
#: includes/fields/class-acf-field-page_link.php:548
|
2155 |
#: includes/fields/class-acf-field-post_object.php:437
|
@@ -2266,83 +2241,80 @@ msgstr[1] "%s requiere al menos %s selecciones"
|
|
2266 |
|
2267 |
#: includes/fields/class-acf-field-select.php:36
|
2268 |
#: includes/fields/class-acf-field-taxonomy.php:791
|
2269 |
-
#, fuzzy
|
2270 |
msgctxt "noun"
|
2271 |
msgid "Select"
|
2272 |
-
msgstr "
|
2273 |
|
2274 |
#: includes/fields/class-acf-field-select.php:49
|
2275 |
msgctxt "Select2 JS matches_1"
|
2276 |
msgid "One result is available, press enter to select it."
|
2277 |
-
msgstr ""
|
2278 |
|
2279 |
#: includes/fields/class-acf-field-select.php:50
|
2280 |
#, php-format
|
2281 |
msgctxt "Select2 JS matches_n"
|
2282 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2283 |
msgstr ""
|
|
|
|
|
2284 |
|
2285 |
#: includes/fields/class-acf-field-select.php:51
|
2286 |
-
#, fuzzy
|
2287 |
msgctxt "Select2 JS matches_0"
|
2288 |
msgid "No matches found"
|
2289 |
-
msgstr "No se encontraron
|
2290 |
|
2291 |
#: includes/fields/class-acf-field-select.php:52
|
2292 |
msgctxt "Select2 JS input_too_short_1"
|
2293 |
msgid "Please enter 1 or more characters"
|
2294 |
-
msgstr ""
|
2295 |
|
2296 |
#: includes/fields/class-acf-field-select.php:53
|
2297 |
#, php-format
|
2298 |
msgctxt "Select2 JS input_too_short_n"
|
2299 |
msgid "Please enter %d or more characters"
|
2300 |
-
msgstr ""
|
2301 |
|
2302 |
#: includes/fields/class-acf-field-select.php:54
|
2303 |
msgctxt "Select2 JS input_too_long_1"
|
2304 |
msgid "Please delete 1 character"
|
2305 |
-
msgstr ""
|
2306 |
|
2307 |
#: includes/fields/class-acf-field-select.php:55
|
2308 |
#, php-format
|
2309 |
msgctxt "Select2 JS input_too_long_n"
|
2310 |
msgid "Please delete %d characters"
|
2311 |
-
msgstr ""
|
2312 |
|
2313 |
#: includes/fields/class-acf-field-select.php:56
|
2314 |
msgctxt "Select2 JS selection_too_long_1"
|
2315 |
msgid "You can only select 1 item"
|
2316 |
-
msgstr ""
|
2317 |
|
2318 |
#: includes/fields/class-acf-field-select.php:57
|
2319 |
#, php-format
|
2320 |
msgctxt "Select2 JS selection_too_long_n"
|
2321 |
msgid "You can only select %d items"
|
2322 |
-
msgstr ""
|
2323 |
|
2324 |
#: includes/fields/class-acf-field-select.php:58
|
2325 |
msgctxt "Select2 JS load_more"
|
2326 |
msgid "Loading more results…"
|
2327 |
-
msgstr ""
|
2328 |
|
2329 |
#: includes/fields/class-acf-field-select.php:59
|
2330 |
-
#, fuzzy
|
2331 |
msgctxt "Select2 JS searching"
|
2332 |
msgid "Searching…"
|
2333 |
-
msgstr "
|
2334 |
|
2335 |
#: includes/fields/class-acf-field-select.php:60
|
2336 |
-
#, fuzzy
|
2337 |
msgctxt "Select2 JS load_fail"
|
2338 |
msgid "Loading failed"
|
2339 |
-
msgstr "
|
2340 |
|
2341 |
#: includes/fields/class-acf-field-select.php:270 includes/media.php:54
|
2342 |
-
#, fuzzy
|
2343 |
msgctxt "verb"
|
2344 |
msgid "Select"
|
2345 |
-
msgstr "
|
2346 |
|
2347 |
#: includes/fields/class-acf-field-select.php:504
|
2348 |
#: includes/fields/class-acf-field-true_false.php:159
|
@@ -2354,13 +2326,12 @@ msgid "Use AJAX to lazy load choices?"
|
|
2354 |
msgstr "Usar AJAX para hacer lazy load de las opciones?"
|
2355 |
|
2356 |
#: includes/fields/class-acf-field-select.php:525
|
2357 |
-
#, fuzzy
|
2358 |
msgid "Specify the value returned"
|
2359 |
-
msgstr "
|
2360 |
|
2361 |
#: includes/fields/class-acf-field-separator.php:36
|
2362 |
msgid "Separator"
|
2363 |
-
msgstr ""
|
2364 |
|
2365 |
#: includes/fields/class-acf-field-tab.php:36
|
2366 |
msgid "Tab"
|
@@ -2523,9 +2494,8 @@ msgid "Sets the textarea height"
|
|
2523 |
msgstr "Setea el alto del área de texto"
|
2524 |
|
2525 |
#: includes/fields/class-acf-field-time_picker.php:36
|
2526 |
-
#, fuzzy
|
2527 |
msgid "Time Picker"
|
2528 |
-
msgstr "Selector de
|
2529 |
|
2530 |
#: includes/fields/class-acf-field-true_false.php:36
|
2531 |
msgid "True / False"
|
@@ -2539,25 +2509,23 @@ msgstr "Sí"
|
|
2539 |
|
2540 |
#: includes/fields/class-acf-field-true_false.php:142
|
2541 |
msgid "Displays text alongside the checkbox"
|
2542 |
-
msgstr ""
|
2543 |
|
2544 |
#: includes/fields/class-acf-field-true_false.php:170
|
2545 |
-
#, fuzzy
|
2546 |
msgid "On Text"
|
2547 |
-
msgstr "
|
2548 |
|
2549 |
#: includes/fields/class-acf-field-true_false.php:171
|
2550 |
msgid "Text shown when active"
|
2551 |
-
msgstr ""
|
2552 |
|
2553 |
#: includes/fields/class-acf-field-true_false.php:180
|
2554 |
-
#, fuzzy
|
2555 |
msgid "Off Text"
|
2556 |
-
msgstr "
|
2557 |
|
2558 |
#: includes/fields/class-acf-field-true_false.php:181
|
2559 |
msgid "Text shown when inactive"
|
2560 |
-
msgstr ""
|
2561 |
|
2562 |
#: includes/fields/class-acf-field-url.php:36
|
2563 |
msgid "Url"
|
@@ -2594,7 +2562,7 @@ msgstr "Texto"
|
|
2594 |
|
2595 |
#: includes/fields/class-acf-field-wysiwyg.php:392
|
2596 |
msgid "Click to initialize TinyMCE"
|
2597 |
-
msgstr ""
|
2598 |
|
2599 |
#: includes/fields/class-acf-field-wysiwyg.php:445
|
2600 |
msgid "Tabs"
|
@@ -2622,11 +2590,11 @@ msgstr "¿Mostrar el botón Media Upload?"
|
|
2622 |
|
2623 |
#: includes/fields/class-acf-field-wysiwyg.php:479
|
2624 |
msgid "Delay initialization?"
|
2625 |
-
msgstr ""
|
2626 |
|
2627 |
#: includes/fields/class-acf-field-wysiwyg.php:480
|
2628 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2629 |
-
msgstr ""
|
2630 |
|
2631 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2632 |
#: pro/admin/admin-options-page.php:304
|
@@ -2634,9 +2602,8 @@ msgid "Edit field group"
|
|
2634 |
msgstr "Editar grupo de campos"
|
2635 |
|
2636 |
#: includes/forms/form-front.php:55
|
2637 |
-
#, fuzzy
|
2638 |
msgid "Validate Email"
|
2639 |
-
msgstr "
|
2640 |
|
2641 |
#: includes/forms/form-front.php:103
|
2642 |
#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81
|
@@ -2649,7 +2616,7 @@ msgstr "Post actualizado"
|
|
2649 |
|
2650 |
#: includes/forms/form-front.php:229
|
2651 |
msgid "Spam Detected"
|
2652 |
-
msgstr ""
|
2653 |
|
2654 |
#: includes/input.php:258
|
2655 |
msgid "Expand Details"
|
@@ -2683,7 +2650,7 @@ msgstr "Restringido"
|
|
2683 |
|
2684 |
#: includes/input.php:268
|
2685 |
msgid "Cancel"
|
2686 |
-
msgstr ""
|
2687 |
|
2688 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
2689 |
msgid "Post"
|
@@ -2704,7 +2671,7 @@ msgstr "Adjunto"
|
|
2704 |
#: includes/locations/class-acf-location-attachment.php:113
|
2705 |
#, php-format
|
2706 |
msgid "All %s formats"
|
2707 |
-
msgstr ""
|
2708 |
|
2709 |
#: includes/locations/class-acf-location-comment.php:27
|
2710 |
msgid "Comment"
|
@@ -2736,20 +2703,19 @@ msgstr "Viendo back end"
|
|
2736 |
|
2737 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2738 |
msgid "Menu Item"
|
2739 |
-
msgstr ""
|
2740 |
|
2741 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2742 |
msgid "Menu"
|
2743 |
-
msgstr ""
|
2744 |
|
2745 |
#: includes/locations/class-acf-location-nav-menu.php:113
|
2746 |
-
#, fuzzy
|
2747 |
msgid "Menu Locations"
|
2748 |
-
msgstr "
|
2749 |
|
2750 |
#: includes/locations/class-acf-location-nav-menu.php:123
|
2751 |
msgid "Menus"
|
2752 |
-
msgstr ""
|
2753 |
|
2754 |
#: includes/locations/class-acf-location-page-parent.php:27
|
2755 |
msgid "Page Parent"
|
@@ -2805,9 +2771,8 @@ msgid "Post Taxonomy"
|
|
2805 |
msgstr "Taxonomía de Post"
|
2806 |
|
2807 |
#: includes/locations/class-acf-location-post-template.php:29
|
2808 |
-
#, fuzzy
|
2809 |
msgid "Post Template"
|
2810 |
-
msgstr "Plantilla de
|
2811 |
|
2812 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
2813 |
msgid "Taxonomy Term"
|
@@ -2834,13 +2799,11 @@ msgid "Widget"
|
|
2834 |
msgstr "Widget"
|
2835 |
|
2836 |
#: includes/media.php:55
|
2837 |
-
#, fuzzy
|
2838 |
msgctxt "verb"
|
2839 |
msgid "Edit"
|
2840 |
msgstr "Editar"
|
2841 |
|
2842 |
#: includes/media.php:56
|
2843 |
-
#, fuzzy
|
2844 |
msgctxt "verb"
|
2845 |
msgid "Update"
|
2846 |
msgstr "Actualizar"
|
@@ -2887,20 +2850,19 @@ msgid "Activate License"
|
|
2887 |
msgstr "Activar Licencia"
|
2888 |
|
2889 |
#: pro/admin/views/html-settings-updates.php:21
|
2890 |
-
#, fuzzy
|
2891 |
msgid "License Information"
|
2892 |
-
msgstr "Información de
|
2893 |
|
2894 |
#: pro/admin/views/html-settings-updates.php:24
|
2895 |
-
#,
|
2896 |
msgid ""
|
2897 |
"To unlock updates, please enter your license key below. If you don't have a "
|
2898 |
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
2899 |
"a>."
|
2900 |
msgstr ""
|
2901 |
-
"Para
|
2902 |
-
"
|
2903 |
-
"
|
2904 |
|
2905 |
#: pro/admin/views/html-settings-updates.php:33
|
2906 |
msgid "License Key"
|
@@ -2941,11 +2903,11 @@ msgstr "Notificación de Actualización"
|
|
2941 |
#: pro/fields/class-acf-field-clone.php:36
|
2942 |
msgctxt "noun"
|
2943 |
msgid "Clone"
|
2944 |
-
msgstr ""
|
2945 |
|
2946 |
#: pro/fields/class-acf-field-clone.php:858
|
2947 |
msgid "Select one or more fields you wish to clone"
|
2948 |
-
msgstr ""
|
2949 |
|
2950 |
#: pro/fields/class-acf-field-clone.php:875
|
2951 |
msgid "Display"
|
@@ -2953,50 +2915,47 @@ msgstr "Mostrar"
|
|
2953 |
|
2954 |
#: pro/fields/class-acf-field-clone.php:876
|
2955 |
msgid "Specify the style used to render the clone field"
|
2956 |
-
msgstr ""
|
2957 |
|
2958 |
#: pro/fields/class-acf-field-clone.php:881
|
2959 |
msgid "Group (displays selected fields in a group within this field)"
|
2960 |
msgstr ""
|
|
|
2961 |
|
2962 |
#: pro/fields/class-acf-field-clone.php:882
|
2963 |
msgid "Seamless (replaces this field with selected fields)"
|
2964 |
-
msgstr ""
|
2965 |
|
2966 |
#: pro/fields/class-acf-field-clone.php:903
|
2967 |
-
#,
|
2968 |
msgid "Labels will be displayed as %s"
|
2969 |
-
msgstr "
|
2970 |
|
2971 |
#: pro/fields/class-acf-field-clone.php:906
|
2972 |
-
#, fuzzy
|
2973 |
msgid "Prefix Field Labels"
|
2974 |
-
msgstr "
|
2975 |
|
2976 |
#: pro/fields/class-acf-field-clone.php:917
|
2977 |
#, php-format
|
2978 |
msgid "Values will be saved as %s"
|
2979 |
-
msgstr ""
|
2980 |
|
2981 |
#: pro/fields/class-acf-field-clone.php:920
|
2982 |
-
#, fuzzy
|
2983 |
msgid "Prefix Field Names"
|
2984 |
-
msgstr "
|
2985 |
|
2986 |
#: pro/fields/class-acf-field-clone.php:1038
|
2987 |
-
#, fuzzy
|
2988 |
msgid "Unknown field"
|
2989 |
-
msgstr "
|
2990 |
|
2991 |
#: pro/fields/class-acf-field-clone.php:1077
|
2992 |
-
#, fuzzy
|
2993 |
msgid "Unknown field group"
|
2994 |
-
msgstr "
|
2995 |
|
2996 |
#: pro/fields/class-acf-field-clone.php:1081
|
2997 |
#, php-format
|
2998 |
msgid "All fields from %s field group"
|
2999 |
-
msgstr ""
|
3000 |
|
3001 |
#: pro/fields/class-acf-field-flexible-content.php:42
|
3002 |
#: pro/fields/class-acf-field-repeater.php:230
|
@@ -3060,7 +3019,7 @@ msgstr "Remover esquema"
|
|
3060 |
#: pro/fields/class-acf-field-flexible-content.php:425
|
3061 |
#: pro/fields/class-acf-field-repeater.php:360
|
3062 |
msgid "Click to toggle"
|
3063 |
-
msgstr ""
|
3064 |
|
3065 |
#: pro/fields/class-acf-field-flexible-content.php:571
|
3066 |
msgid "Reorder Layout"
|
@@ -3116,14 +3075,12 @@ msgid "Length"
|
|
3116 |
msgstr "Longitud"
|
3117 |
|
3118 |
#: pro/fields/class-acf-field-gallery.php:379
|
3119 |
-
#, fuzzy
|
3120 |
msgid "Caption"
|
3121 |
-
msgstr "
|
3122 |
|
3123 |
#: pro/fields/class-acf-field-gallery.php:388
|
3124 |
-
#, fuzzy
|
3125 |
msgid "Alt Text"
|
3126 |
-
msgstr "Texto"
|
3127 |
|
3128 |
#: pro/fields/class-acf-field-gallery.php:559
|
3129 |
msgid "Add to gallery"
|
@@ -3163,20 +3120,19 @@ msgstr "Selección Máxima"
|
|
3163 |
|
3164 |
#: pro/fields/class-acf-field-gallery.php:657
|
3165 |
msgid "Insert"
|
3166 |
-
msgstr ""
|
3167 |
|
3168 |
#: pro/fields/class-acf-field-gallery.php:658
|
3169 |
msgid "Specify where new attachments are added"
|
3170 |
-
msgstr ""
|
3171 |
|
3172 |
#: pro/fields/class-acf-field-gallery.php:662
|
3173 |
-
#, fuzzy
|
3174 |
msgid "Append to the end"
|
3175 |
-
msgstr "
|
3176 |
|
3177 |
#: pro/fields/class-acf-field-gallery.php:663
|
3178 |
msgid "Prepend to the beginning"
|
3179 |
-
msgstr ""
|
3180 |
|
3181 |
#: pro/fields/class-acf-field-repeater.php:47
|
3182 |
msgid "Minimum rows reached ({min} rows)"
|
@@ -3195,13 +3151,12 @@ msgid "Remove row"
|
|
3195 |
msgstr "Remover fila"
|
3196 |
|
3197 |
#: pro/fields/class-acf-field-repeater.php:483
|
3198 |
-
#, fuzzy
|
3199 |
msgid "Collapsed"
|
3200 |
-
msgstr "
|
3201 |
|
3202 |
#: pro/fields/class-acf-field-repeater.php:484
|
3203 |
msgid "Select a sub field to show when row is collapsed"
|
3204 |
-
msgstr ""
|
3205 |
|
3206 |
#: pro/fields/class-acf-field-repeater.php:494
|
3207 |
msgid "Minimum Rows"
|
@@ -3224,25 +3179,23 @@ msgid "Options Updated"
|
|
3224 |
msgstr "Opciones Actualizadas"
|
3225 |
|
3226 |
#: pro/updates.php:97
|
3227 |
-
#,
|
3228 |
msgid ""
|
3229 |
"To enable updates, please enter your license key on the <a href=\"%s"
|
3230 |
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
3231 |
"\">details & pricing</a>."
|
3232 |
msgstr ""
|
3233 |
-
"Para habilitar actualizaciones, por favor
|
3234 |
-
"
|
3235 |
-
"licencia, por favor
|
3236 |
|
3237 |
#. Plugin URI of the plugin/theme
|
3238 |
-
#, fuzzy
|
3239 |
msgid "https://www.advancedcustomfields.com/"
|
3240 |
-
msgstr "
|
3241 |
|
3242 |
#. Author of the plugin/theme
|
3243 |
-
#, fuzzy
|
3244 |
msgid "Elliot Condon"
|
3245 |
-
msgstr "
|
3246 |
|
3247 |
#. Author URI of the plugin/theme
|
3248 |
msgid "http://www.elliotcondon.com/"
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:35+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Héctor Garrofé <info@hectorgarrofe.com>\n"
|
9 |
"Language: es_ES\n"
|
113 |
msgstr "Inactivo"
|
114 |
|
115 |
#: acf.php:440
|
116 |
+
#, php-format
|
117 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
118 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
119 |
msgstr[0] "Activo <span class=\"count\">(%s)</span>"
|
314 |
#: includes/admin/admin-field-groups.php:614
|
315 |
#, php-format
|
316 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
317 |
+
msgstr "Ver las novedades de la <a href=\"% s \">versión %s</a>."
|
318 |
|
319 |
#: includes/admin/admin-field-groups.php:617
|
320 |
msgid "Resources"
|
322 |
|
323 |
#: includes/admin/admin-field-groups.php:619
|
324 |
msgid "Website"
|
325 |
+
msgstr "Sitio web"
|
326 |
|
327 |
#: includes/admin/admin-field-groups.php:620
|
|
|
328 |
msgid "Documentation"
|
329 |
+
msgstr "Documentación"
|
330 |
|
331 |
#: includes/admin/admin-field-groups.php:621
|
|
|
332 |
msgid "Support"
|
333 |
+
msgstr "Soporte"
|
334 |
|
335 |
#: includes/admin/admin-field-groups.php:623
|
|
|
336 |
msgid "Pro"
|
337 |
+
msgstr "Pro"
|
338 |
|
339 |
#: includes/admin/admin-field-groups.php:628
|
340 |
+
#, php-format
|
341 |
msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
342 |
+
msgstr "Gracias por crear con <a href=\" %s \">ACF</a>."
|
343 |
|
344 |
#: includes/admin/admin-field-groups.php:668
|
345 |
msgid "Duplicate this item"
|
374 |
|
375 |
#: includes/admin/admin-field-groups.php:780
|
376 |
msgid "Apply"
|
377 |
+
msgstr "Aplicar"
|
378 |
|
379 |
#: includes/admin/admin-field-groups.php:798
|
|
|
380 |
msgid "Bulk Actions"
|
381 |
msgstr "Acciones en lote"
|
382 |
|
396 |
|
397 |
#: includes/admin/install.php:187
|
398 |
msgid "Error validating request"
|
399 |
+
msgstr "¡Error al validar la solicitud!"
|
400 |
|
401 |
#: includes/admin/install.php:210 includes/admin/views/install.php:105
|
402 |
msgid "No updates available."
|
447 |
msgstr "Archivo de imporación vacío"
|
448 |
|
449 |
#: includes/admin/settings-tools.php:331
|
450 |
+
#, php-format
|
451 |
msgid "Imported 1 field group"
|
452 |
msgid_plural "Imported %s field groups"
|
453 |
+
msgstr[0] "Importar un grupo de campos"
|
454 |
+
msgstr[1] "Importar %s grupos de campos"
|
455 |
|
456 |
#: includes/admin/views/field-group-field-conditional-logic.php:28
|
457 |
msgid "Conditional Logic"
|
595 |
|
596 |
#: includes/admin/views/field-group-fields.php:7
|
597 |
msgid "Key"
|
598 |
+
msgstr "Clave"
|
599 |
|
600 |
#: includes/admin/views/field-group-fields.php:8
|
601 |
msgid "Type"
|
664 |
|
665 |
#: includes/admin/views/field-group-options.php:63
|
666 |
#: includes/fields/class-acf-field-tab.php:117
|
667 |
+
msgid "Left aligned"
|
668 |
msgstr "Alineada a la izquierda"
|
669 |
|
670 |
#: includes/admin/views/field-group-options.php:70
|
772 |
msgstr "Mostrar este grupo de campos si"
|
773 |
|
774 |
#: includes/admin/views/install-network.php:4
|
|
|
775 |
msgid "Upgrade Sites"
|
776 |
+
msgstr "Mejorar los sitios"
|
777 |
|
778 |
#: includes/admin/views/install-network.php:9
|
779 |
#: includes/admin/views/install.php:3
|
781 |
msgstr "Actualización de Base de Datos de Advanced Custom Fields"
|
782 |
|
783 |
#: includes/admin/views/install-network.php:11
|
784 |
+
#, php-format
|
785 |
msgid ""
|
786 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
787 |
"and then click %s."
|
788 |
msgstr ""
|
789 |
+
"Los siguientes sitios requieren una actualización de la base de datos. Marca "
|
790 |
+
"los que desea actualizar y haga clic en %s."
|
791 |
|
792 |
#: includes/admin/views/install-network.php:20
|
793 |
#: includes/admin/views/install-network.php:28
|
873 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
874 |
"latest version."
|
875 |
msgstr ""
|
876 |
+
"También asegúrate de que todas las extensiones premium (%s) se hayan "
|
877 |
+
"actualizado a la última versión."
|
878 |
|
879 |
#: includes/admin/views/install.php:7
|
880 |
msgid "Reading upgrade tasks..."
|
881 |
msgstr "Leyendo tareas de actualización..."
|
882 |
|
883 |
#: includes/admin/views/install.php:11
|
884 |
+
#, php-format
|
885 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
886 |
msgstr ""
|
887 |
+
"Actualización de la base de datos completada. <a href=\"%s \">Vea las "
|
888 |
+
"novedades</a>"
|
889 |
|
890 |
#: includes/admin/views/settings-addons.php:17
|
891 |
msgid "Download & Install"
|
1268 |
#: includes/fields/class-acf-field-page_link.php:284
|
1269 |
#: includes/fields/class-acf-field-post_object.php:283
|
1270 |
#: includes/fields/class-acf-field-taxonomy.php:992
|
|
|
1271 |
msgid "Parent"
|
1272 |
+
msgstr "Superior"
|
1273 |
|
1274 |
#: includes/api/api-helpers.php:3891
|
1275 |
#, php-format
|
1342 |
|
1343 |
#: includes/fields.php:305
|
1344 |
msgid "Unknown"
|
1345 |
+
msgstr "Desconocido"
|
1346 |
|
1347 |
#: includes/fields/class-acf-field-checkbox.php:36
|
1348 |
#: includes/fields/class-acf-field-taxonomy.php:786
|
1354 |
msgstr "Invertir Todos"
|
1355 |
|
1356 |
#: includes/fields/class-acf-field-checkbox.php:207
|
|
|
1357 |
msgid "Add new choice"
|
1358 |
+
msgstr "Agregar nueva opción"
|
1359 |
|
1360 |
#: includes/fields/class-acf-field-checkbox.php:246
|
1361 |
#: includes/fields/class-acf-field-radio.php:250
|
1383 |
msgstr "rojo : Rojo"
|
1384 |
|
1385 |
#: includes/fields/class-acf-field-checkbox.php:255
|
|
|
1386 |
msgid "Allow Custom"
|
1387 |
+
msgstr "Permitir personalización"
|
1388 |
|
1389 |
#: includes/fields/class-acf-field-checkbox.php:260
|
1390 |
msgid "Allow 'custom' values to be added"
|
1391 |
+
msgstr "Permite añadir valores personalizados"
|
1392 |
|
1393 |
#: includes/fields/class-acf-field-checkbox.php:266
|
|
|
1394 |
msgid "Save Custom"
|
1395 |
+
msgstr "Guardar personalización"
|
1396 |
|
1397 |
#: includes/fields/class-acf-field-checkbox.php:271
|
|
|
1398 |
msgid "Save 'custom' values to the field's choices"
|
1399 |
+
msgstr "Guardar los valores \"personalizados\" a las opciones del campo"
|
1400 |
|
1401 |
#: includes/fields/class-acf-field-checkbox.php:277
|
1402 |
#: includes/fields/class-acf-field-color_picker.php:146
|
1455 |
#: includes/fields/class-acf-field-checkbox.php:316
|
1456 |
#: includes/fields/class-acf-field-radio.php:320
|
1457 |
#: includes/fields/class-acf-field-select.php:529
|
|
|
1458 |
msgid "Value"
|
1459 |
+
msgstr "Valor"
|
1460 |
|
1461 |
#: includes/fields/class-acf-field-checkbox.php:318
|
1462 |
#: includes/fields/class-acf-field-radio.php:322
|
1463 |
#: includes/fields/class-acf-field-select.php:531
|
1464 |
msgid "Both (Array)"
|
1465 |
+
msgstr "Ambos (Array)"
|
1466 |
|
1467 |
#: includes/fields/class-acf-field-color_picker.php:36
|
1468 |
msgid "Color Picker"
|
1481 |
msgstr "Selecciona Color"
|
1482 |
|
1483 |
#: includes/fields/class-acf-field-color_picker.php:86
|
|
|
1484 |
msgid "Current Color"
|
1485 |
+
msgstr "Color actual"
|
1486 |
|
1487 |
#: includes/fields/class-acf-field-date_picker.php:36
|
1488 |
msgid "Date Picker"
|
1489 |
msgstr "Selector de Fecha"
|
1490 |
|
1491 |
#: includes/fields/class-acf-field-date_picker.php:44
|
|
|
1492 |
msgctxt "Date Picker JS closeText"
|
1493 |
msgid "Done"
|
1494 |
msgstr "Hecho"
|
1495 |
|
1496 |
#: includes/fields/class-acf-field-date_picker.php:45
|
|
|
1497 |
msgctxt "Date Picker JS currentText"
|
1498 |
msgid "Today"
|
1499 |
msgstr "Hoy"
|
1501 |
#: includes/fields/class-acf-field-date_picker.php:46
|
1502 |
msgctxt "Date Picker JS nextText"
|
1503 |
msgid "Next"
|
1504 |
+
msgstr "Siguiente"
|
1505 |
|
1506 |
#: includes/fields/class-acf-field-date_picker.php:47
|
1507 |
msgctxt "Date Picker JS prevText"
|
1508 |
msgid "Prev"
|
1509 |
+
msgstr "Anterior"
|
1510 |
|
1511 |
#: includes/fields/class-acf-field-date_picker.php:48
|
1512 |
msgctxt "Date Picker JS weekHeader"
|
1513 |
msgid "Wk"
|
1514 |
+
msgstr "Se"
|
1515 |
|
1516 |
#: includes/fields/class-acf-field-date_picker.php:223
|
1517 |
#: includes/fields/class-acf-field-date_time_picker.php:197
|
1531 |
#: includes/fields/class-acf-field-date_time_picker.php:224
|
1532 |
#: includes/fields/class-acf-field-time_picker.php:135
|
1533 |
#: includes/fields/class-acf-field-time_picker.php:150
|
|
|
1534 |
msgid "Custom:"
|
1535 |
+
msgstr "Personalizado:"
|
1536 |
|
1537 |
#: includes/fields/class-acf-field-date_picker.php:242
|
|
|
1538 |
msgid "Save Format"
|
1539 |
+
msgstr "Guardar formato"
|
1540 |
|
1541 |
#: includes/fields/class-acf-field-date_picker.php:243
|
|
|
1542 |
msgid "The format used when saving a value"
|
1543 |
+
msgstr "El formato utilizado cuando se guarda un valor"
|
1544 |
|
1545 |
#: includes/fields/class-acf-field-date_picker.php:253
|
1546 |
#: includes/fields/class-acf-field-date_time_picker.php:214
|
1563 |
msgstr "La semana comenza en "
|
1564 |
|
1565 |
#: includes/fields/class-acf-field-date_time_picker.php:36
|
|
|
1566 |
msgid "Date Time Picker"
|
1567 |
+
msgstr "Selector de fecha y hora"
|
1568 |
|
1569 |
#: includes/fields/class-acf-field-date_time_picker.php:44
|
|
|
1570 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1571 |
msgid "Choose Time"
|
1572 |
+
msgstr "Elegir tiempo"
|
1573 |
|
1574 |
#: includes/fields/class-acf-field-date_time_picker.php:45
|
1575 |
msgctxt "Date Time Picker JS timeText"
|
1576 |
msgid "Time"
|
1577 |
+
msgstr "Tiempo"
|
1578 |
|
1579 |
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1580 |
msgctxt "Date Time Picker JS hourText"
|
1581 |
msgid "Hour"
|
1582 |
+
msgstr "Hora"
|
1583 |
|
1584 |
#: includes/fields/class-acf-field-date_time_picker.php:47
|
1585 |
msgctxt "Date Time Picker JS minuteText"
|
1586 |
msgid "Minute"
|
1587 |
+
msgstr "minuto"
|
1588 |
|
1589 |
#: includes/fields/class-acf-field-date_time_picker.php:48
|
1590 |
msgctxt "Date Time Picker JS secondText"
|
1591 |
msgid "Second"
|
1592 |
+
msgstr "Segundo"
|
1593 |
|
1594 |
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1595 |
msgctxt "Date Time Picker JS millisecText"
|
1596 |
msgid "Millisecond"
|
1597 |
+
msgstr "Milisegundo"
|
1598 |
|
1599 |
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1600 |
msgctxt "Date Time Picker JS microsecText"
|
1601 |
msgid "Microsecond"
|
1602 |
+
msgstr "Microsegundo"
|
1603 |
|
1604 |
#: includes/fields/class-acf-field-date_time_picker.php:51
|
1605 |
msgctxt "Date Time Picker JS timezoneText"
|
1606 |
msgid "Time Zone"
|
1607 |
+
msgstr "Zona horaria"
|
1608 |
|
1609 |
#: includes/fields/class-acf-field-date_time_picker.php:52
|
|
|
1610 |
msgctxt "Date Time Picker JS currentText"
|
1611 |
msgid "Now"
|
1612 |
+
msgstr "Ahora"
|
1613 |
|
1614 |
#: includes/fields/class-acf-field-date_time_picker.php:53
|
|
|
1615 |
msgctxt "Date Time Picker JS closeText"
|
1616 |
msgid "Done"
|
1617 |
msgstr "Hecho"
|
1618 |
|
1619 |
#: includes/fields/class-acf-field-date_time_picker.php:54
|
|
|
1620 |
msgctxt "Date Time Picker JS selectText"
|
1621 |
msgid "Select"
|
1622 |
+
msgstr "Elige"
|
1623 |
|
1624 |
#: includes/fields/class-acf-field-date_time_picker.php:56
|
1625 |
msgctxt "Date Time Picker JS amText"
|
1626 |
msgid "AM"
|
1627 |
+
msgstr "AM"
|
1628 |
|
1629 |
#: includes/fields/class-acf-field-date_time_picker.php:57
|
1630 |
msgctxt "Date Time Picker JS amTextShort"
|
1631 |
msgid "A"
|
1632 |
+
msgstr "A"
|
1633 |
|
1634 |
#: includes/fields/class-acf-field-date_time_picker.php:60
|
1635 |
msgctxt "Date Time Picker JS pmText"
|
1636 |
msgid "PM"
|
1637 |
+
msgstr "PM"
|
1638 |
|
1639 |
#: includes/fields/class-acf-field-date_time_picker.php:61
|
1640 |
msgctxt "Date Time Picker JS pmTextShort"
|
1641 |
msgid "P"
|
1642 |
+
msgstr "P"
|
1643 |
|
1644 |
#: includes/fields/class-acf-field-email.php:36
|
1645 |
msgid "Email"
|
1720 |
msgstr "Subidos a este post"
|
1721 |
|
1722 |
#: includes/fields/class-acf-field-file.php:145
|
|
|
1723 |
msgid "File name"
|
1724 |
+
msgstr "Nombre del archivo"
|
1725 |
|
1726 |
#: includes/fields/class-acf-field-file.php:149
|
1727 |
#: includes/fields/class-acf-field-file.php:252
|
1865 |
msgstr "Personalizar altura de mapa"
|
1866 |
|
1867 |
#: includes/fields/class-acf-field-group.php:36
|
|
|
1868 |
msgid "Group"
|
1869 |
+
msgstr "Grupo"
|
1870 |
|
1871 |
#: includes/fields/class-acf-field-group.php:469
|
1872 |
#: pro/fields/class-acf-field-repeater.php:453
|
1877 |
#: pro/fields/class-acf-field-clone.php:890
|
1878 |
msgid "Specify the style used to render the selected fields"
|
1879 |
msgstr ""
|
1880 |
+
"Especifique el estilo utilizado para representar los campos seleccionados"
|
1881 |
|
1882 |
#: includes/fields/class-acf-field-group.php:491
|
1883 |
#: pro/fields/class-acf-field-clone.php:895
|
1973 |
msgstr "Ancho"
|
1974 |
|
1975 |
#: includes/fields/class-acf-field-link.php:36
|
|
|
1976 |
msgid "Link"
|
1977 |
+
msgstr "Enlace"
|
1978 |
|
1979 |
#: includes/fields/class-acf-field-link.php:146
|
|
|
1980 |
msgid "Select Link"
|
1981 |
+
msgstr "Elige el enlace"
|
1982 |
|
1983 |
#: includes/fields/class-acf-field-link.php:151
|
1984 |
msgid "Opens in a new window/tab"
|
1985 |
+
msgstr "Abrir en una nueva ventana/pestaña"
|
1986 |
|
1987 |
#: includes/fields/class-acf-field-link.php:186
|
|
|
1988 |
msgid "Link Array"
|
1989 |
+
msgstr "Matriz de enlace"
|
1990 |
|
1991 |
#: includes/fields/class-acf-field-link.php:187
|
|
|
1992 |
msgid "Link URL"
|
1993 |
+
msgstr "URL del enlace"
|
1994 |
|
1995 |
#: includes/fields/class-acf-field-message.php:36
|
1996 |
#: includes/fields/class-acf-field-message.php:115
|
2124 |
|
2125 |
#: includes/fields/class-acf-field-page_link.php:538
|
2126 |
msgid "Allow Archives URLs"
|
2127 |
+
msgstr "Permitir las URLs de los archivos"
|
2128 |
|
2129 |
#: includes/fields/class-acf-field-page_link.php:548
|
2130 |
#: includes/fields/class-acf-field-post_object.php:437
|
2241 |
|
2242 |
#: includes/fields/class-acf-field-select.php:36
|
2243 |
#: includes/fields/class-acf-field-taxonomy.php:791
|
|
|
2244 |
msgctxt "noun"
|
2245 |
msgid "Select"
|
2246 |
+
msgstr "Elige"
|
2247 |
|
2248 |
#: includes/fields/class-acf-field-select.php:49
|
2249 |
msgctxt "Select2 JS matches_1"
|
2250 |
msgid "One result is available, press enter to select it."
|
2251 |
+
msgstr "Hay un resultado disponible, pulse Enter para seleccionarlo."
|
2252 |
|
2253 |
#: includes/fields/class-acf-field-select.php:50
|
2254 |
#, php-format
|
2255 |
msgctxt "Select2 JS matches_n"
|
2256 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2257 |
msgstr ""
|
2258 |
+
"%d resultados disponibles, utilice las flechas arriba y abajo para navegar "
|
2259 |
+
"por los resultados."
|
2260 |
|
2261 |
#: includes/fields/class-acf-field-select.php:51
|
|
|
2262 |
msgctxt "Select2 JS matches_0"
|
2263 |
msgid "No matches found"
|
2264 |
+
msgstr "No se encontraron coincidencias"
|
2265 |
|
2266 |
#: includes/fields/class-acf-field-select.php:52
|
2267 |
msgctxt "Select2 JS input_too_short_1"
|
2268 |
msgid "Please enter 1 or more characters"
|
2269 |
+
msgstr "Por favor, introduce 1 o más caracteres"
|
2270 |
|
2271 |
#: includes/fields/class-acf-field-select.php:53
|
2272 |
#, php-format
|
2273 |
msgctxt "Select2 JS input_too_short_n"
|
2274 |
msgid "Please enter %d or more characters"
|
2275 |
+
msgstr "Por favor escribe %d o más caracteres"
|
2276 |
|
2277 |
#: includes/fields/class-acf-field-select.php:54
|
2278 |
msgctxt "Select2 JS input_too_long_1"
|
2279 |
msgid "Please delete 1 character"
|
2280 |
+
msgstr "Por favor, borra 1 carácter"
|
2281 |
|
2282 |
#: includes/fields/class-acf-field-select.php:55
|
2283 |
#, php-format
|
2284 |
msgctxt "Select2 JS input_too_long_n"
|
2285 |
msgid "Please delete %d characters"
|
2286 |
+
msgstr "Por favor, elimina %d caracteres"
|
2287 |
|
2288 |
#: includes/fields/class-acf-field-select.php:56
|
2289 |
msgctxt "Select2 JS selection_too_long_1"
|
2290 |
msgid "You can only select 1 item"
|
2291 |
+
msgstr "Sólo puede seleccionar 1 elemento"
|
2292 |
|
2293 |
#: includes/fields/class-acf-field-select.php:57
|
2294 |
#, php-format
|
2295 |
msgctxt "Select2 JS selection_too_long_n"
|
2296 |
msgid "You can only select %d items"
|
2297 |
+
msgstr "Sólo puede seleccionar %d elementos"
|
2298 |
|
2299 |
#: includes/fields/class-acf-field-select.php:58
|
2300 |
msgctxt "Select2 JS load_more"
|
2301 |
msgid "Loading more results…"
|
2302 |
+
msgstr "Cargando más resultados…"
|
2303 |
|
2304 |
#: includes/fields/class-acf-field-select.php:59
|
|
|
2305 |
msgctxt "Select2 JS searching"
|
2306 |
msgid "Searching…"
|
2307 |
+
msgstr "Buscando…"
|
2308 |
|
2309 |
#: includes/fields/class-acf-field-select.php:60
|
|
|
2310 |
msgctxt "Select2 JS load_fail"
|
2311 |
msgid "Loading failed"
|
2312 |
+
msgstr "Error al cargar"
|
2313 |
|
2314 |
#: includes/fields/class-acf-field-select.php:270 includes/media.php:54
|
|
|
2315 |
msgctxt "verb"
|
2316 |
msgid "Select"
|
2317 |
+
msgstr "Elige"
|
2318 |
|
2319 |
#: includes/fields/class-acf-field-select.php:504
|
2320 |
#: includes/fields/class-acf-field-true_false.php:159
|
2326 |
msgstr "Usar AJAX para hacer lazy load de las opciones?"
|
2327 |
|
2328 |
#: includes/fields/class-acf-field-select.php:525
|
|
|
2329 |
msgid "Specify the value returned"
|
2330 |
+
msgstr "Especifique el valor devuelto"
|
2331 |
|
2332 |
#: includes/fields/class-acf-field-separator.php:36
|
2333 |
msgid "Separator"
|
2334 |
+
msgstr "Separador"
|
2335 |
|
2336 |
#: includes/fields/class-acf-field-tab.php:36
|
2337 |
msgid "Tab"
|
2494 |
msgstr "Setea el alto del área de texto"
|
2495 |
|
2496 |
#: includes/fields/class-acf-field-time_picker.php:36
|
|
|
2497 |
msgid "Time Picker"
|
2498 |
+
msgstr "Selector de hora"
|
2499 |
|
2500 |
#: includes/fields/class-acf-field-true_false.php:36
|
2501 |
msgid "True / False"
|
2509 |
|
2510 |
#: includes/fields/class-acf-field-true_false.php:142
|
2511 |
msgid "Displays text alongside the checkbox"
|
2512 |
+
msgstr "Muestra el texto junto a la casilla de verificación"
|
2513 |
|
2514 |
#: includes/fields/class-acf-field-true_false.php:170
|
|
|
2515 |
msgid "On Text"
|
2516 |
+
msgstr "Sobre texto"
|
2517 |
|
2518 |
#: includes/fields/class-acf-field-true_false.php:171
|
2519 |
msgid "Text shown when active"
|
2520 |
+
msgstr "Texto mostrado cuando está activo"
|
2521 |
|
2522 |
#: includes/fields/class-acf-field-true_false.php:180
|
|
|
2523 |
msgid "Off Text"
|
2524 |
+
msgstr "Sin texto"
|
2525 |
|
2526 |
#: includes/fields/class-acf-field-true_false.php:181
|
2527 |
msgid "Text shown when inactive"
|
2528 |
+
msgstr "Texto mostrado cuando está inactivo"
|
2529 |
|
2530 |
#: includes/fields/class-acf-field-url.php:36
|
2531 |
msgid "Url"
|
2562 |
|
2563 |
#: includes/fields/class-acf-field-wysiwyg.php:392
|
2564 |
msgid "Click to initialize TinyMCE"
|
2565 |
+
msgstr "Haz clic para iniciar TinyMCE"
|
2566 |
|
2567 |
#: includes/fields/class-acf-field-wysiwyg.php:445
|
2568 |
msgid "Tabs"
|
2590 |
|
2591 |
#: includes/fields/class-acf-field-wysiwyg.php:479
|
2592 |
msgid "Delay initialization?"
|
2593 |
+
msgstr "¿Inicialización retrasada?"
|
2594 |
|
2595 |
#: includes/fields/class-acf-field-wysiwyg.php:480
|
2596 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2597 |
+
msgstr "TinyMCE no se iniciará hasta que se haga clic en el campo"
|
2598 |
|
2599 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2600 |
#: pro/admin/admin-options-page.php:304
|
2602 |
msgstr "Editar grupo de campos"
|
2603 |
|
2604 |
#: includes/forms/form-front.php:55
|
|
|
2605 |
msgid "Validate Email"
|
2606 |
+
msgstr "Validar correo electrónico"
|
2607 |
|
2608 |
#: includes/forms/form-front.php:103
|
2609 |
#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81
|
2616 |
|
2617 |
#: includes/forms/form-front.php:229
|
2618 |
msgid "Spam Detected"
|
2619 |
+
msgstr "Spam detectado"
|
2620 |
|
2621 |
#: includes/input.php:258
|
2622 |
msgid "Expand Details"
|
2650 |
|
2651 |
#: includes/input.php:268
|
2652 |
msgid "Cancel"
|
2653 |
+
msgstr "Cancelar"
|
2654 |
|
2655 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
2656 |
msgid "Post"
|
2671 |
#: includes/locations/class-acf-location-attachment.php:113
|
2672 |
#, php-format
|
2673 |
msgid "All %s formats"
|
2674 |
+
msgstr "%s formatos"
|
2675 |
|
2676 |
#: includes/locations/class-acf-location-comment.php:27
|
2677 |
msgid "Comment"
|
2703 |
|
2704 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2705 |
msgid "Menu Item"
|
2706 |
+
msgstr "Elemento del menú"
|
2707 |
|
2708 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2709 |
msgid "Menu"
|
2710 |
+
msgstr "Menú"
|
2711 |
|
2712 |
#: includes/locations/class-acf-location-nav-menu.php:113
|
|
|
2713 |
msgid "Menu Locations"
|
2714 |
+
msgstr "Localizaciones de menú"
|
2715 |
|
2716 |
#: includes/locations/class-acf-location-nav-menu.php:123
|
2717 |
msgid "Menus"
|
2718 |
+
msgstr "Menús"
|
2719 |
|
2720 |
#: includes/locations/class-acf-location-page-parent.php:27
|
2721 |
msgid "Page Parent"
|
2771 |
msgstr "Taxonomía de Post"
|
2772 |
|
2773 |
#: includes/locations/class-acf-location-post-template.php:29
|
|
|
2774 |
msgid "Post Template"
|
2775 |
+
msgstr "Plantilla de entrada:"
|
2776 |
|
2777 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
2778 |
msgid "Taxonomy Term"
|
2799 |
msgstr "Widget"
|
2800 |
|
2801 |
#: includes/media.php:55
|
|
|
2802 |
msgctxt "verb"
|
2803 |
msgid "Edit"
|
2804 |
msgstr "Editar"
|
2805 |
|
2806 |
#: includes/media.php:56
|
|
|
2807 |
msgctxt "verb"
|
2808 |
msgid "Update"
|
2809 |
msgstr "Actualizar"
|
2850 |
msgstr "Activar Licencia"
|
2851 |
|
2852 |
#: pro/admin/views/html-settings-updates.php:21
|
|
|
2853 |
msgid "License Information"
|
2854 |
+
msgstr "Información de la licencia"
|
2855 |
|
2856 |
#: pro/admin/views/html-settings-updates.php:24
|
2857 |
+
#, php-format
|
2858 |
msgid ""
|
2859 |
"To unlock updates, please enter your license key below. If you don't have a "
|
2860 |
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
2861 |
"a>."
|
2862 |
msgstr ""
|
2863 |
+
"Para desbloquear las actualizaciones, por favor a continuación introduce tu "
|
2864 |
+
"clave de licencia. Si no tienes una clave de licencia, consulta <a href=\"%s"
|
2865 |
+
"\" target=\"_blank\">detalles y precios</a>."
|
2866 |
|
2867 |
#: pro/admin/views/html-settings-updates.php:33
|
2868 |
msgid "License Key"
|
2903 |
#: pro/fields/class-acf-field-clone.php:36
|
2904 |
msgctxt "noun"
|
2905 |
msgid "Clone"
|
2906 |
+
msgstr "Clonar"
|
2907 |
|
2908 |
#: pro/fields/class-acf-field-clone.php:858
|
2909 |
msgid "Select one or more fields you wish to clone"
|
2910 |
+
msgstr "Elige uno o más campos que quieras clonar"
|
2911 |
|
2912 |
#: pro/fields/class-acf-field-clone.php:875
|
2913 |
msgid "Display"
|
2915 |
|
2916 |
#: pro/fields/class-acf-field-clone.php:876
|
2917 |
msgid "Specify the style used to render the clone field"
|
2918 |
+
msgstr "Especifique el estilo utilizado para procesar el campo de clonación"
|
2919 |
|
2920 |
#: pro/fields/class-acf-field-clone.php:881
|
2921 |
msgid "Group (displays selected fields in a group within this field)"
|
2922 |
msgstr ""
|
2923 |
+
"Grupo (muestra los campos seleccionados en un grupo dentro de este campo)"
|
2924 |
|
2925 |
#: pro/fields/class-acf-field-clone.php:882
|
2926 |
msgid "Seamless (replaces this field with selected fields)"
|
2927 |
+
msgstr "Transparente (reemplaza este campo con los campos seleccionados)"
|
2928 |
|
2929 |
#: pro/fields/class-acf-field-clone.php:903
|
2930 |
+
#, php-format
|
2931 |
msgid "Labels will be displayed as %s"
|
2932 |
+
msgstr "Las etiquetas se mostrarán como %s"
|
2933 |
|
2934 |
#: pro/fields/class-acf-field-clone.php:906
|
|
|
2935 |
msgid "Prefix Field Labels"
|
2936 |
+
msgstr "Etiquetas del prefijo de campo"
|
2937 |
|
2938 |
#: pro/fields/class-acf-field-clone.php:917
|
2939 |
#, php-format
|
2940 |
msgid "Values will be saved as %s"
|
2941 |
+
msgstr "Los valores se guardarán como %s"
|
2942 |
|
2943 |
#: pro/fields/class-acf-field-clone.php:920
|
|
|
2944 |
msgid "Prefix Field Names"
|
2945 |
+
msgstr "Nombres de prefijos de campos"
|
2946 |
|
2947 |
#: pro/fields/class-acf-field-clone.php:1038
|
|
|
2948 |
msgid "Unknown field"
|
2949 |
+
msgstr "Campo desconocido"
|
2950 |
|
2951 |
#: pro/fields/class-acf-field-clone.php:1077
|
|
|
2952 |
msgid "Unknown field group"
|
2953 |
+
msgstr "Grupo de campos desconocido"
|
2954 |
|
2955 |
#: pro/fields/class-acf-field-clone.php:1081
|
2956 |
#, php-format
|
2957 |
msgid "All fields from %s field group"
|
2958 |
+
msgstr "Todos los campos del grupo de campo %s"
|
2959 |
|
2960 |
#: pro/fields/class-acf-field-flexible-content.php:42
|
2961 |
#: pro/fields/class-acf-field-repeater.php:230
|
3019 |
#: pro/fields/class-acf-field-flexible-content.php:425
|
3020 |
#: pro/fields/class-acf-field-repeater.php:360
|
3021 |
msgid "Click to toggle"
|
3022 |
+
msgstr "Clic para mostrar"
|
3023 |
|
3024 |
#: pro/fields/class-acf-field-flexible-content.php:571
|
3025 |
msgid "Reorder Layout"
|
3075 |
msgstr "Longitud"
|
3076 |
|
3077 |
#: pro/fields/class-acf-field-gallery.php:379
|
|
|
3078 |
msgid "Caption"
|
3079 |
+
msgstr "Leyenda"
|
3080 |
|
3081 |
#: pro/fields/class-acf-field-gallery.php:388
|
|
|
3082 |
msgid "Alt Text"
|
3083 |
+
msgstr "Texto Alt"
|
3084 |
|
3085 |
#: pro/fields/class-acf-field-gallery.php:559
|
3086 |
msgid "Add to gallery"
|
3120 |
|
3121 |
#: pro/fields/class-acf-field-gallery.php:657
|
3122 |
msgid "Insert"
|
3123 |
+
msgstr "Insertar"
|
3124 |
|
3125 |
#: pro/fields/class-acf-field-gallery.php:658
|
3126 |
msgid "Specify where new attachments are added"
|
3127 |
+
msgstr "Especificar dónde se agregan nuevos adjuntos"
|
3128 |
|
3129 |
#: pro/fields/class-acf-field-gallery.php:662
|
|
|
3130 |
msgid "Append to the end"
|
3131 |
+
msgstr "Añadir al final"
|
3132 |
|
3133 |
#: pro/fields/class-acf-field-gallery.php:663
|
3134 |
msgid "Prepend to the beginning"
|
3135 |
+
msgstr "Adelantar hasta el principio"
|
3136 |
|
3137 |
#: pro/fields/class-acf-field-repeater.php:47
|
3138 |
msgid "Minimum rows reached ({min} rows)"
|
3151 |
msgstr "Remover fila"
|
3152 |
|
3153 |
#: pro/fields/class-acf-field-repeater.php:483
|
|
|
3154 |
msgid "Collapsed"
|
3155 |
+
msgstr "Colapsado"
|
3156 |
|
3157 |
#: pro/fields/class-acf-field-repeater.php:484
|
3158 |
msgid "Select a sub field to show when row is collapsed"
|
3159 |
+
msgstr "Elige un subcampo para indicar cuándo se colapsa la fila"
|
3160 |
|
3161 |
#: pro/fields/class-acf-field-repeater.php:494
|
3162 |
msgid "Minimum Rows"
|
3179 |
msgstr "Opciones Actualizadas"
|
3180 |
|
3181 |
#: pro/updates.php:97
|
3182 |
+
#, php-format
|
3183 |
msgid ""
|
3184 |
"To enable updates, please enter your license key on the <a href=\"%s"
|
3185 |
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
3186 |
"\">details & pricing</a>."
|
3187 |
msgstr ""
|
3188 |
+
"Para habilitar actualizaciones, por favor, introduzca su llave de licencia "
|
3189 |
+
"en la <a href=\"%s\">página de actualizaciones</a>. Si no tiene una llave de "
|
3190 |
+
"licencia, por favor, consulta <a href=\"%s\">detalles y precios</a>."
|
3191 |
|
3192 |
#. Plugin URI of the plugin/theme
|
|
|
3193 |
msgid "https://www.advancedcustomfields.com/"
|
3194 |
+
msgstr "https://www.advancedcustomfields.com/"
|
3195 |
|
3196 |
#. Author of the plugin/theme
|
|
|
3197 |
msgid "Elliot Condon"
|
3198 |
+
msgstr "Elliot Condon"
|
3199 |
|
3200 |
#. Author URI of the plugin/theme
|
3201 |
msgid "http://www.elliotcondon.com/"
|
lang/acf-fa_IR.mo
CHANGED
Binary file
|
lang/acf-fa_IR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Kamel Kimiaei Fard <Kamel.Kimiaei.Fard@gmail.com>\n"
|
9 |
"Language: fa\n"
|
@@ -11,11 +11,9 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
-
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
18 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
"X-Poedit-WPHeader: acf.php\n"
|
21 |
"X-Textdomain-Support: yes\n"
|
@@ -35,7 +33,7 @@ msgid "Field Group"
|
|
35 |
msgstr "گروه زمینه"
|
36 |
|
37 |
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
38 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
39 |
msgid "Add New"
|
40 |
msgstr "افزودن"
|
41 |
|
@@ -183,7 +181,7 @@ msgstr "کپی"
|
|
183 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
184 |
#: includes/admin/views/field-group-locations.php:29
|
185 |
#: includes/admin/views/html-location-group.php:3
|
186 |
-
#: includes/api/api-helpers.php:
|
187 |
msgid "or"
|
188 |
msgstr "یا"
|
189 |
|
@@ -343,7 +341,7 @@ msgstr "تکثیر این زمینه"
|
|
343 |
#: includes/admin/admin-field-groups.php:667
|
344 |
#: includes/admin/admin-field-groups.php:683
|
345 |
#: includes/admin/views/field-group-field.php:49
|
346 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
347 |
msgid "Duplicate"
|
348 |
msgstr "تکثیر"
|
349 |
|
@@ -446,33 +444,16 @@ msgid "Select Field Groups"
|
|
446 |
msgstr "انتخاب گروه های زمینه"
|
447 |
|
448 |
#: includes/admin/tools/class-acf-admin-tool-export.php:336
|
449 |
-
msgid ""
|
450 |
-
"
|
451 |
-
"method. Use the download button to export to a .json file which you can then "
|
452 |
-
"import to another ACF installation. Use the generate button to export to PHP "
|
453 |
-
"code which you can place in your theme."
|
454 |
-
msgstr ""
|
455 |
-
"گروه زمینه هایی که مایل به تهیه خروجی آنها هستید را انتخاب کنید و در ادامه "
|
456 |
-
"روش خروجی را نیز مشخص کنید. از دکمه دانلود برای خروجی فایل .json برای وارد "
|
457 |
-
"کردن در یک سایت دیگر که این افزونه نصب شده است استفاده کنید. از دکمه تولید "
|
458 |
-
"می توانید برای ساخت کد PHP برای قراردادن در قالب خود استفاده کنید."
|
459 |
|
460 |
#: includes/admin/tools/class-acf-admin-tool-export.php:341
|
461 |
msgid "Export File"
|
462 |
msgstr "خروجی فایل"
|
463 |
|
464 |
#: includes/admin/tools/class-acf-admin-tool-export.php:414
|
465 |
-
msgid ""
|
466 |
-
"
|
467 |
-
"field group(s). A local field group can provide many benefits such as faster "
|
468 |
-
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
469 |
-
"the following code to your theme's functions.php file or include it within "
|
470 |
-
"an external file."
|
471 |
-
msgstr ""
|
472 |
-
"این کد می تواند برای ثبت یک نسخه محلی (لوکال)از گروه زمینه های انتخاب شده "
|
473 |
-
"استفاده شود. یک نسخه محلی فواید زیادی دارد، مثلا سرعت لود بالاتر، کنترل نسخه "
|
474 |
-
"و پویاسازی زمینه ها و تنظیماتشان. به راحتی می توانید کد زیر را در فایل "
|
475 |
-
"function.php خود کپی کنید و یا از یک فایل دیگر انرا فراخوانی نمایید."
|
476 |
|
477 |
#: includes/admin/tools/class-acf-admin-tool-export.php:446
|
478 |
msgid "Copy to clipboard"
|
@@ -483,13 +464,8 @@ msgid "Import Field Groups"
|
|
483 |
msgstr "وارد کردن گروه های زمینه"
|
484 |
|
485 |
#: includes/admin/tools/class-acf-admin-tool-import.php:61
|
486 |
-
msgid ""
|
487 |
-
"
|
488 |
-
"you click the import button below, ACF will import the field groups."
|
489 |
-
msgstr ""
|
490 |
-
"فایل JSON ای که قبلا از این افزونه خروجی گرفته اید را انتخاب کنید تا وارد "
|
491 |
-
"شود. زمانی که دکمه وارد کردن را در زیر کلیک کنید، سیستم اقدام به ساخت گروه "
|
492 |
-
"های زمینه خواهد نمود"
|
493 |
|
494 |
#: includes/admin/tools/class-acf-admin-tool-import.php:66
|
495 |
#: includes/fields/class-acf-field-file.php:35
|
@@ -587,7 +563,7 @@ msgid "Delete field"
|
|
587 |
msgstr "حذف زمینه"
|
588 |
|
589 |
#: includes/admin/views/field-group-field.php:51
|
590 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
591 |
msgid "Delete"
|
592 |
msgstr "حذف"
|
593 |
|
@@ -652,13 +628,13 @@ msgstr "شماره ترتیب"
|
|
652 |
#: includes/fields/class-acf-field-checkbox.php:415
|
653 |
#: includes/fields/class-acf-field-radio.php:306
|
654 |
#: includes/fields/class-acf-field-select.php:432
|
655 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
656 |
msgid "Label"
|
657 |
msgstr "برچسب زمینه"
|
658 |
|
659 |
#: includes/admin/views/field-group-fields.php:6
|
660 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
661 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
662 |
msgid "Name"
|
663 |
msgstr "نام"
|
664 |
|
@@ -671,12 +647,8 @@ msgid "Type"
|
|
671 |
msgstr "نوع زمینه"
|
672 |
|
673 |
#: includes/admin/views/field-group-fields.php:14
|
674 |
-
msgid ""
|
675 |
-
"
|
676 |
-
"first field."
|
677 |
-
msgstr ""
|
678 |
-
"هیچ زمینه ای وجود ندارد. روی دکمه<strong>+ افزودن زمینه</strong> کلیک کنید "
|
679 |
-
"تا اولین زمینه خود را بسازید."
|
680 |
|
681 |
#: includes/admin/views/field-group-fields.php:31
|
682 |
msgid "+ Add Field"
|
@@ -687,12 +659,8 @@ msgid "Rules"
|
|
687 |
msgstr "قوانین"
|
688 |
|
689 |
#: includes/admin/views/field-group-locations.php:10
|
690 |
-
msgid ""
|
691 |
-
"
|
692 |
-
"advanced custom fields"
|
693 |
-
msgstr ""
|
694 |
-
"مجموعه ای از قوانین را بسازید تا مشخص کنید در کدام صفحه ویرایش ، این زمینه "
|
695 |
-
"های دلخواه سفارشی نمایش داده شوند."
|
696 |
|
697 |
#: includes/admin/views/field-group-options.php:23
|
698 |
msgid "Style"
|
@@ -731,11 +699,6 @@ msgstr "مکان برچسب"
|
|
731 |
msgid "Top aligned"
|
732 |
msgstr "سمت بالا"
|
733 |
|
734 |
-
#: includes/admin/views/field-group-options.php:63
|
735 |
-
#: includes/fields/class-acf-field-tab.php:107
|
736 |
-
msgid "Left Aligned"
|
737 |
-
msgstr "سمت چپ"
|
738 |
-
|
739 |
#: includes/admin/views/field-group-options.php:70
|
740 |
msgid "Instruction placement"
|
741 |
msgstr "مکان دستورالعمل ها"
|
@@ -769,12 +732,8 @@ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen."
|
|
769 |
msgstr "<b>انتخاب</b> آیتم ها برای <b>پنهان کردن</b> آن ها از صفحه ویرایش."
|
770 |
|
771 |
#: includes/admin/views/field-group-options.php:108
|
772 |
-
msgid ""
|
773 |
-
"
|
774 |
-
"options will be used (the one with the lowest order number)"
|
775 |
-
msgstr ""
|
776 |
-
"اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود،اولین تنظیمات گروه "
|
777 |
-
"زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
|
778 |
|
779 |
#: includes/admin/views/field-group-options.php:115
|
780 |
msgid "Permalink"
|
@@ -848,9 +807,7 @@ msgstr "بهروزرسانی پایگاه داده زمینه های دلخو
|
|
848 |
|
849 |
#: includes/admin/views/install-network.php:11
|
850 |
#, php-format
|
851 |
-
msgid ""
|
852 |
-
"The following sites require a DB upgrade. Check the ones you want to update "
|
853 |
-
"and then click %s."
|
854 |
msgstr "این سایت ها نیاز به به روز رسانی دارند برای انجام %s کلیک کنید."
|
855 |
|
856 |
#: includes/admin/views/install-network.php:20
|
@@ -869,19 +826,13 @@ msgstr "سایت به روز است"
|
|
869 |
|
870 |
#: includes/admin/views/install-network.php:63
|
871 |
#, php-format
|
872 |
-
msgid ""
|
873 |
-
"
|
874 |
-
msgstr ""
|
875 |
-
"به روزرسانی دیتابیس انجام شد. <a href=\"%s\">بازگشت به پیشخوان شبکه</a>"
|
876 |
|
877 |
#: includes/admin/views/install-network.php:102
|
878 |
#: includes/admin/views/install-notice.php:42
|
879 |
-
msgid ""
|
880 |
-
"
|
881 |
-
"Are you sure you wish to run the updater now?"
|
882 |
-
msgstr ""
|
883 |
-
"قویا توصیه می شود از بانک اطلاعاتی خود قبل از هر کاری پشتیبان تهیه کنید. آیا "
|
884 |
-
"مایلید به روز رسانی انجام شود؟"
|
885 |
|
886 |
#: includes/admin/views/install-network.php:158
|
887 |
msgid "Upgrade complete"
|
@@ -923,19 +874,13 @@ msgid "Thank you for updating to %s v%s!"
|
|
923 |
msgstr "از شما برای بروزرسانی به آخرین نسخه %s v%s ممنون هستیم!"
|
924 |
|
925 |
#: includes/admin/views/install-notice.php:28
|
926 |
-
msgid ""
|
927 |
-
"
|
928 |
-
"to the newest version."
|
929 |
-
msgstr ""
|
930 |
-
"قبل از اینکه از تمام امکانات شگفت انگیز جدید استفاده کنید لازم است بانک "
|
931 |
-
"اطلاعاتی را به روز کنید"
|
932 |
|
933 |
#: includes/admin/views/install-notice.php:31
|
934 |
#, php-format
|
935 |
-
msgid ""
|
936 |
-
"
|
937 |
-
"latest version."
|
938 |
-
msgstr ""
|
939 |
|
940 |
#: includes/admin/views/install.php:7
|
941 |
msgid "Reading upgrade tasks..."
|
@@ -944,7 +889,7 @@ msgstr "در حال خواندن مراحل به روزرسانی..."
|
|
944 |
#: includes/admin/views/install.php:11
|
945 |
#, php-format
|
946 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
947 |
-
msgstr ""
|
948 |
|
949 |
#: includes/admin/views/settings-addons.php:17
|
950 |
msgid "Download & Install"
|
@@ -960,12 +905,8 @@ msgstr "به افزونه زمینه های دلخواه پیشرفته خوش
|
|
960 |
|
961 |
#: includes/admin/views/settings-info.php:4
|
962 |
#, php-format
|
963 |
-
msgid ""
|
964 |
-
"
|
965 |
-
"hope you like it."
|
966 |
-
msgstr ""
|
967 |
-
"از اینکه به روزرسانی کردید متشکریم! افزونه زمینه دلخواه پیشرفته %s بزرگتر و "
|
968 |
-
"بهتر از قبل شده است. امیدواریم لذت ببرید."
|
969 |
|
970 |
#: includes/admin/views/settings-info.php:17
|
971 |
msgid "A smoother custom field experience"
|
@@ -976,42 +917,24 @@ msgid "Improved Usability"
|
|
976 |
msgstr "کاربری بهینه شده"
|
977 |
|
978 |
#: includes/admin/views/settings-info.php:23
|
979 |
-
msgid ""
|
980 |
-
"
|
981 |
-
"across a number of field types including post object, page link, taxonomy "
|
982 |
-
"and select."
|
983 |
-
msgstr ""
|
984 |
-
"استفاده از کتابخانه محبوب Select2 باعث سرعت در عملکرد و کاربری بهتر در انواع "
|
985 |
-
"زمینه هاشامل آبجکت نوشته، پیوند(لینک) صفحه ، طبقه بندی و زمینه های "
|
986 |
-
"انتخاب(Select) شده است"
|
987 |
|
988 |
#: includes/admin/views/settings-info.php:27
|
989 |
msgid "Improved Design"
|
990 |
msgstr "طراحی بهینه شده"
|
991 |
|
992 |
#: includes/admin/views/settings-info.php:28
|
993 |
-
msgid ""
|
994 |
-
"
|
995 |
-
"ever! Noticeable changes are seen on the gallery, relationship and oEmbed "
|
996 |
-
"(new) fields!"
|
997 |
-
msgstr ""
|
998 |
-
"بسیاری از زمینه ها از نظر ظاهری باز طراحی شدند تا این افزونه از قبل بهتر شده "
|
999 |
-
"باشد. تغییرات چشم گیر در گالری و ارتباط و زمینه جدید به نام oEmbed صورت "
|
1000 |
-
"گرفته است."
|
1001 |
|
1002 |
#: includes/admin/views/settings-info.php:32
|
1003 |
msgid "Improved Data"
|
1004 |
msgstr "داده ها بهینه شده اند"
|
1005 |
|
1006 |
#: includes/admin/views/settings-info.php:33
|
1007 |
-
msgid ""
|
1008 |
-
"
|
1009 |
-
"independently from their parents. This allows you to drag and drop fields in "
|
1010 |
-
"and out of parent fields!"
|
1011 |
-
msgstr ""
|
1012 |
-
"بازطراحی معماری داده ها این اجازه را به زمینه های زیرمجموعه داده است که بدون "
|
1013 |
-
"زمینه های والد باقی بمانند. این به شما کمک می کند که زمینه ها را از یک فیلد "
|
1014 |
-
"اصلی خارج یا به آن وارد نمایید !"
|
1015 |
|
1016 |
#: includes/admin/views/settings-info.php:39
|
1017 |
msgid "Goodbye Add-ons. Hello PRO"
|
@@ -1022,34 +945,21 @@ msgid "Introducing ACF PRO"
|
|
1022 |
msgstr "معرفی نسخه حرفه ای"
|
1023 |
|
1024 |
#: includes/admin/views/settings-info.php:45
|
1025 |
-
msgid ""
|
1026 |
-
"
|
1027 |
-
msgstr ""
|
1028 |
-
"ما در حال تغییر راه عملکردهای پولی افزونه به شیوه ای هیجان انگیز هستیم!"
|
1029 |
|
1030 |
#: includes/admin/views/settings-info.php:46
|
1031 |
#, php-format
|
1032 |
-
msgid ""
|
1033 |
-
"
|
1034 |
-
"version of ACF</a>. With both personal and developer licenses available, "
|
1035 |
-
"premium functionality is more affordable and accessible than ever before!"
|
1036 |
-
msgstr ""
|
1037 |
-
"هر چهار افزدونی پولی یکی شده و تحت عنوان <a href=\"%s\">نسخه حرفه ای (Pro) </"
|
1038 |
-
"a> از افزونه زمینه های دلخواه معرفی شده اند. دو نسخه شخصی و توسعه دهنده "
|
1039 |
-
"موجود است که در هر دو این امکانات بهتر و دسترس تر از قبل موجود است!"
|
1040 |
|
1041 |
#: includes/admin/views/settings-info.php:50
|
1042 |
msgid "Powerful Features"
|
1043 |
msgstr "امکانات قدرتمند"
|
1044 |
|
1045 |
#: includes/admin/views/settings-info.php:51
|
1046 |
-
msgid ""
|
1047 |
-
"
|
1048 |
-
"layouts, a beautiful gallery field and the ability to create extra admin "
|
1049 |
-
"options pages!"
|
1050 |
-
msgstr ""
|
1051 |
-
"نسخه حرفه دارای امکانات قدرتمندی نظیر داده های تکرارپذیر، محتوای منعطف، یک "
|
1052 |
-
"زمینه گالری زیبا و امکان ساخت صفحات تنظیمات می باشد !"
|
1053 |
|
1054 |
#: includes/admin/views/settings-info.php:52
|
1055 |
#, php-format
|
@@ -1062,22 +972,13 @@ msgstr "به روزرسانی آسان"
|
|
1062 |
|
1063 |
#: includes/admin/views/settings-info.php:57
|
1064 |
#, php-format
|
1065 |
-
msgid ""
|
1066 |
-
"
|
1067 |
-
"and claim a free copy of ACF PRO!"
|
1068 |
-
msgstr ""
|
1069 |
-
"برای به روزرسانی ساده <a href=\"%s\"> به بخش کاربری خود در فروشگاه وارد شوید "
|
1070 |
-
"</a> و یک نسخه از ویرایش حرفه ای را دانلود کنید!"
|
1071 |
|
1072 |
#: includes/admin/views/settings-info.php:58
|
1073 |
#, php-format
|
1074 |
-
msgid ""
|
1075 |
-
"
|
1076 |
-
"but if you do have one, please contact our support team via the <a href=\"%s"
|
1077 |
-
"\">help desk</a>"
|
1078 |
-
msgstr ""
|
1079 |
-
"همچنین یک <a href=\"%s\"> راهنمای به روزرسانی</a> برای پاسخ به سوالات نوشته "
|
1080 |
-
"ایم ولی اگر هنوز سوالی دارید از <a href=\"%s\">تیم پشتیبانی</a> بپرسید "
|
1081 |
|
1082 |
#: includes/admin/views/settings-info.php:66
|
1083 |
msgid "Under the Hood"
|
@@ -1089,8 +990,7 @@ msgstr "تنظیمات زمینه ها هوشمندتر شدند"
|
|
1089 |
|
1090 |
#: includes/admin/views/settings-info.php:72
|
1091 |
msgid "ACF now saves its field settings as individual post objects"
|
1092 |
-
msgstr ""
|
1093 |
-
"افزونه اکنون تنظیمات زمینه ها را به عنوان آبجکت ها مختلف نوشته ذخیره می کند"
|
1094 |
|
1095 |
#: includes/admin/views/settings-info.php:76
|
1096 |
msgid "More AJAX"
|
@@ -1113,9 +1013,7 @@ msgid "Better version control"
|
|
1113 |
msgstr "کنترل نسخه بهتر"
|
1114 |
|
1115 |
#: includes/admin/views/settings-info.php:89
|
1116 |
-
msgid ""
|
1117 |
-
"New auto export to JSON feature allows field settings to be version "
|
1118 |
-
"controlled"
|
1119 |
msgstr "اکنون با خروجی جدید JSON امکان کنترل نسخه بهتر را فراهم کردیم"
|
1120 |
|
1121 |
#: includes/admin/views/settings-info.php:93
|
@@ -1132,9 +1030,7 @@ msgstr "فرم های جدید"
|
|
1132 |
|
1133 |
#: includes/admin/views/settings-info.php:99
|
1134 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1135 |
-
msgstr ""
|
1136 |
-
"گزینه ها اکنون می توانند به نظرات، ابزارک ها و حتی فرم های مربوط به کاربران "
|
1137 |
-
"متصل شوند !"
|
1138 |
|
1139 |
#: includes/admin/views/settings-info.php:106
|
1140 |
msgid "A new field for embedding content has been added"
|
@@ -1153,9 +1049,7 @@ msgid "New Settings"
|
|
1153 |
msgstr "تنظیمات جدید"
|
1154 |
|
1155 |
#: includes/admin/views/settings-info.php:116
|
1156 |
-
msgid ""
|
1157 |
-
"Field group settings have been added for label placement and instruction "
|
1158 |
-
"placement"
|
1159 |
msgstr "تنظیماتی به گروه زمینه برای مکان برچسب ها و توضیحات اضافه شده است"
|
1160 |
|
1161 |
#: includes/admin/views/settings-info.php:122
|
@@ -1172,16 +1066,14 @@ msgstr "خطایابی بهتر"
|
|
1172 |
|
1173 |
#: includes/admin/views/settings-info.php:128
|
1174 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1175 |
-
msgstr ""
|
1176 |
-
"خطایابی فرم (validation) اکنون از طریق PHP + AJAX به جای JS انجام می شود"
|
1177 |
|
1178 |
#: includes/admin/views/settings-info.php:132
|
1179 |
msgid "Relationship Field"
|
1180 |
msgstr "زمینه ارتباط"
|
1181 |
|
1182 |
#: includes/admin/views/settings-info.php:133
|
1183 |
-
msgid ""
|
1184 |
-
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1185 |
msgstr "تنظیمات جدید برای زمینه ارتباط و فیلتر کردن اضافه شده است"
|
1186 |
|
1187 |
#: includes/admin/views/settings-info.php:139
|
@@ -1189,12 +1081,8 @@ msgid "Moving Fields"
|
|
1189 |
msgstr "جابجایی زمینه ها"
|
1190 |
|
1191 |
#: includes/admin/views/settings-info.php:140
|
1192 |
-
msgid ""
|
1193 |
-
"
|
1194 |
-
"parents"
|
1195 |
-
msgstr ""
|
1196 |
-
"عملکرد جدید گروه زمینه ها به شما امکان جابجایی زمینه ها بین گروه ها و بین "
|
1197 |
-
"گروه های والد را می دهد"
|
1198 |
|
1199 |
#: includes/admin/views/settings-info.php:144
|
1200 |
#: includes/fields/class-acf-field-page_link.php:25
|
@@ -1210,70 +1098,66 @@ msgid "Better Options Pages"
|
|
1210 |
msgstr "صفحه تنظیمات بهتر"
|
1211 |
|
1212 |
#: includes/admin/views/settings-info.php:150
|
1213 |
-
msgid ""
|
1214 |
-
"
|
1215 |
-
"pages"
|
1216 |
-
msgstr ""
|
1217 |
-
"تنظیمات جدید برای صفحه تنظیمات اجازه ساخت هر دو صفحه منوی والد و زیرمجموعه "
|
1218 |
-
"را می دهد"
|
1219 |
|
1220 |
#: includes/admin/views/settings-info.php:159
|
1221 |
#, php-format
|
1222 |
msgid "We think you'll love the changes in %s."
|
1223 |
msgstr "فکر می کنیم شما تغییرات در %s را دوست خواهید داشت"
|
1224 |
|
1225 |
-
#: includes/api/api-helpers.php:
|
1226 |
msgid "Thumbnail"
|
1227 |
msgstr "تصویر بندانگشتی"
|
1228 |
|
1229 |
-
#: includes/api/api-helpers.php:
|
1230 |
msgid "Medium"
|
1231 |
msgstr "متوسط"
|
1232 |
|
1233 |
-
#: includes/api/api-helpers.php:
|
1234 |
msgid "Large"
|
1235 |
msgstr "بزرگ"
|
1236 |
|
1237 |
-
#: includes/api/api-helpers.php:
|
1238 |
msgid "Full Size"
|
1239 |
msgstr "اندازه کامل"
|
1240 |
|
1241 |
-
#: includes/api/api-helpers.php:
|
1242 |
#: pro/fields/class-acf-field-clone.php:992
|
1243 |
msgid "(no title)"
|
1244 |
msgstr "(بدون عنوان)"
|
1245 |
|
1246 |
-
#: includes/api/api-helpers.php:
|
1247 |
#, php-format
|
1248 |
msgid "Image width must be at least %dpx."
|
1249 |
msgstr "عرض تصویر باید حداقل %d پیکسل باشد."
|
1250 |
|
1251 |
-
#: includes/api/api-helpers.php:
|
1252 |
#, php-format
|
1253 |
msgid "Image width must not exceed %dpx."
|
1254 |
msgstr "عرض تصویر نباید از %d پیکسل بیشتر باشد."
|
1255 |
|
1256 |
-
#: includes/api/api-helpers.php:
|
1257 |
#, php-format
|
1258 |
msgid "Image height must be at least %dpx."
|
1259 |
msgstr "ارتفاع فایل باید حداقل %d پیکسل باشد."
|
1260 |
|
1261 |
-
#: includes/api/api-helpers.php:
|
1262 |
#, php-format
|
1263 |
msgid "Image height must not exceed %dpx."
|
1264 |
msgstr "ارتفاع تصویر نباید از %d پیکسل بیشتر باشد."
|
1265 |
|
1266 |
-
#: includes/api/api-helpers.php:
|
1267 |
#, php-format
|
1268 |
msgid "File size must be at least %s."
|
1269 |
msgstr "حجم فایل باید حداقل %s باشد."
|
1270 |
|
1271 |
-
#: includes/api/api-helpers.php:
|
1272 |
#, php-format
|
1273 |
msgid "File size must must not exceed %s."
|
1274 |
msgstr "حجم فایل ها نباید از %s بیشتر باشد."
|
1275 |
|
1276 |
-
#: includes/api/api-helpers.php:
|
1277 |
#, php-format
|
1278 |
msgid "File type must be %s."
|
1279 |
msgstr "نوع فایل باید %s باشد"
|
@@ -1298,13 +1182,14 @@ msgstr "رابطه"
|
|
1298 |
msgid "jQuery"
|
1299 |
msgstr "جی کوئری"
|
1300 |
|
1301 |
-
#: includes/fields.php:149
|
|
|
1302 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1303 |
#: includes/fields/class-acf-field-group.php:474
|
1304 |
#: includes/fields/class-acf-field-radio.php:285
|
1305 |
#: pro/fields/class-acf-field-clone.php:839
|
1306 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1307 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1308 |
#: pro/fields/class-acf-field-repeater.php:450
|
1309 |
msgid "Layout"
|
1310 |
msgstr "چیدمان"
|
@@ -1334,8 +1219,8 @@ msgid "Multi-expand"
|
|
1334 |
msgstr "چند گسترش"
|
1335 |
|
1336 |
#: includes/fields/class-acf-field-accordion.php:110
|
1337 |
-
msgid "Allow this accordion to open without closing others.
|
1338 |
-
msgstr "
|
1339 |
|
1340 |
#: includes/fields/class-acf-field-accordion.php:119
|
1341 |
#: includes/fields/class-acf-field-tab.php:114
|
@@ -1343,10 +1228,8 @@ msgid "Endpoint"
|
|
1343 |
msgstr "نقطه پایانی"
|
1344 |
|
1345 |
#: includes/fields/class-acf-field-accordion.php:120
|
1346 |
-
msgid ""
|
1347 |
-
"
|
1348 |
-
"not be visible."
|
1349 |
-
msgstr ""
|
1350 |
|
1351 |
#: includes/fields/class-acf-field-button-group.php:24
|
1352 |
msgid "Button Group"
|
@@ -1507,7 +1390,7 @@ msgstr "اضافه کردن چک باکس اضافی برای انتخاب هم
|
|
1507 |
|
1508 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1509 |
msgid "Color Picker"
|
1510 |
-
msgstr "انتخاب رنگ"
|
1511 |
|
1512 |
#: includes/fields/class-acf-field-color_picker.php:68
|
1513 |
msgid "Clear"
|
@@ -1519,7 +1402,7 @@ msgstr "پیش فرض"
|
|
1519 |
|
1520 |
#: includes/fields/class-acf-field-color_picker.php:70
|
1521 |
msgid "Select Color"
|
1522 |
-
msgstr "انتخاب
|
1523 |
|
1524 |
#: includes/fields/class-acf-field-color_picker.php:71
|
1525 |
msgid "Current Color"
|
@@ -1605,7 +1488,7 @@ msgstr "اولین روز هفته"
|
|
1605 |
|
1606 |
#: includes/fields/class-acf-field-date_time_picker.php:25
|
1607 |
msgid "Date Time Picker"
|
1608 |
-
msgstr "انتخاب زمان"
|
1609 |
|
1610 |
#: includes/fields/class-acf-field-date_time_picker.php:33
|
1611 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
@@ -1923,21 +1806,21 @@ msgstr "استایل جهت نمایش فیلد انتخابی"
|
|
1923 |
|
1924 |
#: includes/fields/class-acf-field-group.php:480
|
1925 |
#: pro/fields/class-acf-field-clone.php:845
|
1926 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1927 |
#: pro/fields/class-acf-field-repeater.php:458
|
1928 |
msgid "Block"
|
1929 |
msgstr "بلوک"
|
1930 |
|
1931 |
#: includes/fields/class-acf-field-group.php:481
|
1932 |
#: pro/fields/class-acf-field-clone.php:846
|
1933 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1934 |
#: pro/fields/class-acf-field-repeater.php:457
|
1935 |
msgid "Table"
|
1936 |
msgstr "جدول"
|
1937 |
|
1938 |
#: includes/fields/class-acf-field-group.php:482
|
1939 |
#: pro/fields/class-acf-field-clone.php:847
|
1940 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1941 |
#: pro/fields/class-acf-field-repeater.php:459
|
1942 |
msgid "Row"
|
1943 |
msgstr "سطر"
|
@@ -2290,7 +2173,7 @@ msgstr "یک نتیجه موجود است برای انتخاب اینتر کن
|
|
2290 |
#, php-format
|
2291 |
msgctxt "Select2 JS matches_n"
|
2292 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2293 |
-
msgstr ""
|
2294 |
|
2295 |
#: includes/fields/class-acf-field-select.php:40
|
2296 |
msgctxt "Select2 JS matches_0"
|
@@ -2306,7 +2189,7 @@ msgstr "یک یا چند حرف وارد کنید"
|
|
2306 |
#, php-format
|
2307 |
msgctxt "Select2 JS input_too_short_n"
|
2308 |
msgid "Please enter %d or more characters"
|
2309 |
-
msgstr ""
|
2310 |
|
2311 |
#: includes/fields/class-acf-field-select.php:43
|
2312 |
msgctxt "Select2 JS input_too_long_1"
|
@@ -2317,7 +2200,7 @@ msgstr "یک حرف را حذف کنید"
|
|
2317 |
#, php-format
|
2318 |
msgctxt "Select2 JS input_too_long_n"
|
2319 |
msgid "Please delete %d characters"
|
2320 |
-
msgstr ""
|
2321 |
|
2322 |
#: includes/fields/class-acf-field-select.php:45
|
2323 |
msgctxt "Select2 JS selection_too_long_1"
|
@@ -2328,7 +2211,7 @@ msgstr "فقط می توانید یک آیتم را انتخاب کنید"
|
|
2328 |
#, php-format
|
2329 |
msgctxt "Select2 JS selection_too_long_n"
|
2330 |
msgid "You can only select %d items"
|
2331 |
-
msgstr ""
|
2332 |
|
2333 |
#: includes/fields/class-acf-field-select.php:47
|
2334 |
msgctxt "Select2 JS load_more"
|
@@ -2375,17 +2258,19 @@ msgstr "تب"
|
|
2375 |
msgid "Placement"
|
2376 |
msgstr "جانمایی"
|
2377 |
|
|
|
|
|
|
|
|
|
2378 |
#: includes/fields/class-acf-field-tab.php:115
|
2379 |
-
msgid ""
|
2380 |
-
"
|
2381 |
-
"group of tabs."
|
2382 |
-
msgstr ""
|
2383 |
|
2384 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
2385 |
#, php-format
|
2386 |
msgctxt "No terms"
|
2387 |
msgid "No %s"
|
2388 |
-
msgstr ""
|
2389 |
|
2390 |
#: includes/fields/class-acf-field-taxonomy.php:732
|
2391 |
msgid "None"
|
@@ -2571,7 +2456,7 @@ msgstr "متن"
|
|
2571 |
|
2572 |
#: includes/fields/class-acf-field-wysiwyg.php:366
|
2573 |
msgid "Click to initialize TinyMCE"
|
2574 |
-
msgstr ""
|
2575 |
|
2576 |
#: includes/fields/class-acf-field-wysiwyg.php:419
|
2577 |
msgid "Tabs"
|
@@ -2603,7 +2488,7 @@ msgstr "نمایش با تاخیر؟"
|
|
2603 |
|
2604 |
#: includes/fields/class-acf-field-wysiwyg.php:454
|
2605 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2606 |
-
msgstr ""
|
2607 |
|
2608 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2609 |
#: pro/admin/admin-options-page.php:308
|
@@ -2614,8 +2499,8 @@ msgstr "ویرایش گروه زمینه"
|
|
2614 |
msgid "Validate Email"
|
2615 |
msgstr "اعتبار سنجی ایمیل"
|
2616 |
|
2617 |
-
#: includes/forms/form-front.php:103
|
2618 |
-
#: pro/options-page.php:81
|
2619 |
msgid "Update"
|
2620 |
msgstr "بروزرسانی"
|
2621 |
|
@@ -2684,7 +2569,7 @@ msgstr "پیوست"
|
|
2684 |
#: includes/locations/class-acf-location-attachment.php:109
|
2685 |
#, php-format
|
2686 |
msgid "All %s formats"
|
2687 |
-
msgstr ""
|
2688 |
|
2689 |
#: includes/locations/class-acf-location-comment.php:27
|
2690 |
msgid "Comment"
|
@@ -2837,12 +2722,8 @@ msgstr "انتشار"
|
|
2837 |
|
2838 |
#: pro/admin/admin-options-page.php:206
|
2839 |
#, php-format
|
2840 |
-
msgid ""
|
2841 |
-
"
|
2842 |
-
"Custom Field Group</a>"
|
2843 |
-
msgstr ""
|
2844 |
-
"هیچ گروه زمینه دلخواهی برای این صفحه تنظیمات یافت نشد. <a href=\"%s\">ساخت "
|
2845 |
-
"گروه زمینه دلخواه</a>"
|
2846 |
|
2847 |
#: pro/admin/admin-settings-updates.php:78
|
2848 |
msgid "<b>Error</b>. Could not connect to update server"
|
@@ -2867,13 +2748,8 @@ msgstr "اطلاعات لایسنس"
|
|
2867 |
|
2868 |
#: pro/admin/views/html-settings-updates.php:20
|
2869 |
#, php-format
|
2870 |
-
msgid ""
|
2871 |
-
"
|
2872 |
-
"licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</"
|
2873 |
-
"a>."
|
2874 |
-
msgstr ""
|
2875 |
-
"برای به روزرسانی لطفا کد لایسنس را وارد کنید. <a href=\"%s\" target=\"_blank"
|
2876 |
-
"\">قیمت ها</a>."
|
2877 |
|
2878 |
#: pro/admin/views/html-settings-updates.php:29
|
2879 |
msgid "License Key"
|
@@ -3031,44 +2907,44 @@ msgstr "حذف طرح"
|
|
3031 |
msgid "Click to toggle"
|
3032 |
msgstr "کلیک برای انتخاب"
|
3033 |
|
3034 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3035 |
msgid "Reorder Layout"
|
3036 |
msgstr "ترتیب بندی طرح ها"
|
3037 |
|
3038 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3039 |
msgid "Reorder"
|
3040 |
msgstr "مرتب سازی"
|
3041 |
|
3042 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3043 |
msgid "Delete Layout"
|
3044 |
msgstr "حذف طرح"
|
3045 |
|
3046 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3047 |
msgid "Duplicate Layout"
|
3048 |
msgstr "تکثیر طرح"
|
3049 |
|
3050 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3051 |
msgid "Add New Layout"
|
3052 |
msgstr "افزودن طرح جدید"
|
3053 |
|
3054 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3055 |
msgid "Min"
|
3056 |
msgstr "حداقل"
|
3057 |
|
3058 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3059 |
msgid "Max"
|
3060 |
msgstr "حداکثر"
|
3061 |
|
3062 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3063 |
#: pro/fields/class-acf-field-repeater.php:466
|
3064 |
msgid "Button Label"
|
3065 |
msgstr "متن دکمه"
|
3066 |
|
3067 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3068 |
msgid "Minimum Layouts"
|
3069 |
msgstr "حداقل تعداد طرح ها"
|
3070 |
|
3071 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3072 |
msgid "Maximum Layouts"
|
3073 |
msgstr "حداکثر تعداد طرح ها"
|
3074 |
|
@@ -3190,13 +3066,8 @@ msgstr "تنظیمات به روز شدند"
|
|
3190 |
|
3191 |
#: pro/updates.php:97
|
3192 |
#, php-format
|
3193 |
-
msgid ""
|
3194 |
-
"
|
3195 |
-
"\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s"
|
3196 |
-
"\">details & pricing</a>."
|
3197 |
-
msgstr ""
|
3198 |
-
"برای به روزرسانی لطفا کد لایسنس را وارد کنید. <a href=\"%s\">بروزرسانی</a>. "
|
3199 |
-
"<a href=\"%s\">قیمت ها</a>"
|
3200 |
|
3201 |
#. Plugin URI of the plugin/theme
|
3202 |
msgid "https://www.advancedcustomfields.com/"
|
@@ -3210,34 +3081,23 @@ msgstr "Elliot Condon"
|
|
3210 |
msgid "http://www.elliotcondon.com/"
|
3211 |
msgstr "http://www.elliotcondon.com/"
|
3212 |
|
3213 |
-
#~ msgid ""
|
3214 |
-
#~ "
|
3215 |
-
|
3216 |
-
#~
|
3217 |
-
#~ "زمینه تب در زمانی که در آن زمینه تکرارشونده و یا زمینه محتوای انعطاف پذیر "
|
3218 |
-
|
3219 |
-
|
3220 |
-
#~
|
3221 |
-
|
3222 |
-
#~ "together."
|
3223 |
-
#~ msgstr ""
|
3224 |
-
#~ "از (زمینه تب) برای سازماندهی بهتر صفحه ویرایش با گروه بندی زمینه ها زیر "
|
3225 |
-
#~ "تب ها استفاده کنید. "
|
3226 |
-
|
3227 |
-
#~ msgid ""
|
3228 |
-
#~ "All fields following this \"tab field\" (or until another \"tab field\" "
|
3229 |
-
#~ "is defined) will be grouped together using this field's label as the tab "
|
3230 |
-
#~ "heading."
|
3231 |
-
#~ msgstr ""
|
3232 |
-
#~ "همه زمینه های زیر این \" زمینه تب \" (یا تا زمینه تب بعدی) با هم گروه "
|
3233 |
-
#~ "بندی می شوند و برچسب زمینه در تب به نمایش در خواهد آمد"
|
3234 |
|
3235 |
#~ msgid "End-point"
|
3236 |
#~ msgstr "نقطه پایانی"
|
3237 |
|
3238 |
#~ msgid "Use this field as an end-point and start a new group of tabs"
|
3239 |
-
#~ msgstr ""
|
3240 |
-
#~ "استفاده از این زمینه به عنوان نقطه پایانی و شروع یک گروه جدید از تب ها"
|
3241 |
|
3242 |
#~ msgid "Disabled"
|
3243 |
#~ msgstr "غیرفعال"
|
@@ -3306,12 +3166,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3306 |
#~ msgid "<b>Success</b>. Import tool added %s field groups: %s"
|
3307 |
#~ msgstr "<b>انجام شد</b> ابزار وارد سازی %s زمینه را وارد کرد: %s"
|
3308 |
|
3309 |
-
#~ msgid ""
|
3310 |
-
#~ "<b>
|
3311 |
-
#~ "have been ignored: %s"
|
3312 |
-
#~ msgstr ""
|
3313 |
-
#~ "<b>اخطار</b> ابزار وارد سازی تشخصی داد که گروه زمینه %s اکنون موجود می "
|
3314 |
-
#~ "باشد و %s نادیده گرفته شد"
|
3315 |
|
3316 |
#~ msgid "Upgrade ACF"
|
3317 |
#~ msgstr "بروزرسانی "
|
@@ -3322,12 +3178,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3322 |
#~ msgid "Drag and drop to reorder"
|
3323 |
#~ msgstr "با گرفتن و کشیدن مرتب سازی کنید"
|
3324 |
|
3325 |
-
#~ msgid ""
|
3326 |
-
#~ "
|
3327 |
-
#~ "update and then click “Upgrade Database”."
|
3328 |
-
#~ msgstr ""
|
3329 |
-
#~ "سایتهای زیر نیاز به بهروزرسانی دیتابیس دارند. آنهایی که تمایل دارید را "
|
3330 |
-
#~ "انتخاب کنید و دکمه به روزرسانی را کلیک کنید."
|
3331 |
|
3332 |
#~ msgid "Upgrading data to"
|
3333 |
#~ msgstr "به روزرسانی داده ها به"
|
@@ -3371,27 +3223,16 @@ msgstr "http://www.elliotcondon.com/"
|
|
3371 |
#~ msgid "License"
|
3372 |
#~ msgstr "لایسنس"
|
3373 |
|
3374 |
-
#~ msgid ""
|
3375 |
-
#~ "
|
3376 |
-
#~ "a licence key, please see"
|
3377 |
-
#~ msgstr ""
|
3378 |
-
#~ "برای به روزرسانی لطفا لایسنس خود را وارد کنید. اگر لایسنس ندارید اینجا را "
|
3379 |
-
#~ "ببنید:"
|
3380 |
|
3381 |
#~ msgid "details & pricing"
|
3382 |
#~ msgstr "جزئیات و قیمت"
|
3383 |
|
3384 |
-
#~ msgid ""
|
3385 |
-
#~ "
|
3386 |
-
|
3387 |
-
#~ "
|
3388 |
-
#~ msgstr ""
|
3389 |
-
#~ "برای به روز رسانی لایسنس خود را در قسمت <a href=\"%s\">به روزرسانی ها</"
|
3390 |
-
#~ "a> وارد کنید. اگر لایسنس ندارید اینجا را ببینید: <a href=\"%s\">جزئیات ئ "
|
3391 |
-
#~ "قیمت</a>"
|
3392 |
-
|
3393 |
-
#~ msgid ""
|
3394 |
-
#~ "Please note that all text will first be passed through the wp function "
|
3395 |
#~ msgstr "دقت کنید که نکاک متن ها اول از تابع وردپرس عبور خواهند کرد"
|
3396 |
|
3397 |
#~ msgid "Warning"
|
@@ -3407,9 +3248,7 @@ msgstr "http://www.elliotcondon.com/"
|
|
3407 |
#~ msgstr "درون ریزی/برون بری"
|
3408 |
|
3409 |
#~ msgid "Field groups are created in order from lowest to highest"
|
3410 |
-
#~ msgstr ""
|
3411 |
-
#~ "گروه های زمینه به ترتیب از کوچکترین شماره تا بزرگترین شماره نمایش داده می "
|
3412 |
-
#~ "شوند"
|
3413 |
|
3414 |
#~ msgid "Upgrading data to "
|
3415 |
#~ msgstr "به روز رسانی داده ها به %s"
|
@@ -3438,16 +3277,10 @@ msgstr "http://www.elliotcondon.com/"
|
|
3438 |
#~ msgid "ACF PRO Required"
|
3439 |
#~ msgstr "نسخه حرفه ای لازم است"
|
3440 |
|
3441 |
-
#~ msgid ""
|
3442 |
-
#~ "
|
3443 |
-
#~ "makes use of premium add-ons (%s) which are no longer compatible with ACF."
|
3444 |
-
#~ msgstr ""
|
3445 |
-
#~ "مشکلی مشاهده شده است که نیاز به توجه شما دارد. این وب سایت مجاز به "
|
3446 |
-
#~ "استفاده از افزودنی های پولی (%s) می باشد که دیگر سازگار نیستند"
|
3447 |
|
3448 |
-
#~ msgid ""
|
3449 |
-
#~ "Don't panic, you can simply roll back the plugin and continue using ACF "
|
3450 |
-
#~ "as you know it!"
|
3451 |
#~ msgstr "مشکلی نیست. شما می توانید به نسخه ای که به آن عادت دارید برگردید!"
|
3452 |
|
3453 |
#~ msgid "Roll back to ACF v%s"
|
@@ -3473,11 +3306,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3473 |
#~ msgid "Load & Save Terms to Post"
|
3474 |
#~ msgstr "خواندن و ذخیره دسته(ترم)ها برای نوشته"
|
3475 |
|
3476 |
-
#~ msgid ""
|
3477 |
-
#~ "
|
3478 |
-
#~ msgstr ""
|
3479 |
-
#~ "مقدار بر اساس دسته(ترم) نوشته خوانده شود و دسته های نوشته را در هنگام "
|
3480 |
-
#~ "ذخیره به روز رسانی کند"
|
3481 |
|
3482 |
#~ msgid "Controls how HTML tags are rendered"
|
3483 |
#~ msgstr "کنترل چگونگی نمایش تگ های HTML"
|
@@ -3546,10 +3376,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3546 |
#~ msgid "No ACF groups selected"
|
3547 |
#~ msgstr "هیچ گروه زمینه دلخواه پیشرفته ای انتخاب نشده است."
|
3548 |
|
3549 |
-
#~ msgid ""
|
3550 |
-
#~ "
|
3551 |
-
#~ msgstr ""
|
3552 |
-
#~ "ایجاد بی نهایت سطر از داده های تکرار شونده به وسیله این زمینه چند منظوره!"
|
3553 |
|
3554 |
#~ msgid "Create image galleries in a simple and intuitive interface!"
|
3555 |
#~ msgstr "ایجاد گالری های تصاویر در یک رابط کاربری ساده و دیداری!"
|
@@ -3564,9 +3392,7 @@ msgstr "http://www.elliotcondon.com/"
|
|
3564 |
#~ msgstr "زمینه افزونه GravityForms"
|
3565 |
|
3566 |
#~ msgid "Creates a select field populated with Gravity Forms!"
|
3567 |
-
#~ msgstr ""
|
3568 |
-
#~ "زمینه جدید از نوع انتخاب می سازد که می توانید یکی از فرم های GravityForms "
|
3569 |
-
#~ "که ساخته اید را از آن انتخاب کنید"
|
3570 |
|
3571 |
#~ msgid "Date & Time Picker"
|
3572 |
#~ msgstr "تاریخ و زمان"
|
@@ -3586,19 +3412,11 @@ msgstr "http://www.elliotcondon.com/"
|
|
3586 |
#~ msgid "Advanced Custom Fields Add-Ons"
|
3587 |
#~ msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته"
|
3588 |
|
3589 |
-
#~ msgid ""
|
3590 |
-
#~ "
|
3591 |
-
#~ "Advanced Custom Fields plugin."
|
3592 |
-
#~ msgstr ""
|
3593 |
-
#~ "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته "
|
3594 |
-
#~ "قابل استفاده هستند."
|
3595 |
|
3596 |
-
#~ msgid ""
|
3597 |
-
#~ "
|
3598 |
-
#~ "included in your theme (does not receive updates)."
|
3599 |
-
#~ msgstr ""
|
3600 |
-
#~ "هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا "
|
3601 |
-
#~ "در پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
|
3602 |
|
3603 |
#~ msgid "Purchase & Install"
|
3604 |
#~ msgstr "خرید و نصب"
|
@@ -3612,25 +3430,14 @@ msgstr "http://www.elliotcondon.com/"
|
|
3612 |
#~ msgid "Export to PHP"
|
3613 |
#~ msgstr "برون بری به فرمت PHP"
|
3614 |
|
3615 |
-
#~ msgid ""
|
3616 |
-
#~ "
|
3617 |
-
|
3618 |
-
#~
|
3619 |
-
#~ "
|
3620 |
-
#~ "که با افزونه Wordpress Importer سازگار است."
|
3621 |
-
|
3622 |
-
#~ msgid ""
|
3623 |
-
#~ "Imported field groups <b>will</b> appear in the list of editable field "
|
3624 |
-
#~ "groups. This is useful for migrating fields groups between Wp websites."
|
3625 |
-
#~ msgstr ""
|
3626 |
-
#~ "گروه های زمینه درون ریزی شده در لیست گروه های زمینه قابل ویرایش نمایش "
|
3627 |
-
#~ "داده <b>خواهند شد</b>. این روش برای انتقال گروه های زمینه در بین سایت های "
|
3628 |
-
#~ "وردپرسی مفید است."
|
3629 |
|
3630 |
#~ msgid "Select field group(s) from the list and click \"Export XML\""
|
3631 |
-
#~ msgstr ""
|
3632 |
-
#~ "گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML)) "
|
3633 |
-
#~ "کلیک کنید"
|
3634 |
|
3635 |
#~ msgid "Save the .xml file when prompted"
|
3636 |
#~ msgstr "فایل .xml را وقتی آماده شد، ذخیره کنید"
|
@@ -3651,33 +3458,16 @@ msgstr "http://www.elliotcondon.com/"
|
|
3651 |
#~ msgstr "همین ! از وردپرس لذت ببرید"
|
3652 |
|
3653 |
#~ msgid "ACF will create the PHP code to include in your theme."
|
3654 |
-
#~ msgstr ""
|
3655 |
-
|
3656 |
-
#~ "
|
3657 |
-
|
3658 |
-
|
3659 |
-
#~ "
|
3660 |
-
#~ "
|
3661 |
-
#~ msgstr ""
|
3662 |
-
#~ "گروه های زمینه ساخته خواهند شد ولی قابل ویرایش <b>نخواهند بود</b>.یعنی در "
|
3663 |
-
#~ "لیست افزونه برای ویرایش دیده نمی شوند. این روش برای قرار دادن زمینه ها در "
|
3664 |
-
#~ "پوسته ها (برای مشتری) مفید است."
|
3665 |
-
|
3666 |
-
#~ msgid ""
|
3667 |
-
#~ "Please note that if you export and register field groups within the same "
|
3668 |
-
#~ "WP, you will see duplicate fields on your edit screens. To fix this, "
|
3669 |
-
#~ "please move the original field group to the trash or remove the code from "
|
3670 |
-
#~ "your functions.php file."
|
3671 |
-
#~ msgstr ""
|
3672 |
-
#~ "لطفا توجه کنید که اگر از هر دو روش ذکر شما در یک وردپرس به صورت هم زمان "
|
3673 |
-
#~ "استفاده کنید، در صفحه ویرایش مطالب، دو بار زمینه ها را خواهید دید. واضح "
|
3674 |
-
#~ "است که برای حل این مشکل یا باید زمینه ها را از افزونه حذف کنید یا کدهای "
|
3675 |
-
#~ "php را از پوسته و احتمالا functions.php حذف کنید."
|
3676 |
|
3677 |
#~ msgid "Select field group(s) from the list and click \"Create PHP\""
|
3678 |
-
#~ msgstr ""
|
3679 |
-
#~ "گروه های زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت "
|
3680 |
-
#~ "PHP)) کلیک کنید"
|
3681 |
|
3682 |
#~ msgid "Copy the PHP code generated"
|
3683 |
#~ msgstr "کدهای PHP تولید شده را کپی کنید"
|
@@ -3685,8 +3475,7 @@ msgstr "http://www.elliotcondon.com/"
|
|
3685 |
#~ msgid "Paste into your functions.php file"
|
3686 |
#~ msgstr "در فایل functions.php پوسته خود قرار دهید"
|
3687 |
|
3688 |
-
#~ msgid ""
|
3689 |
-
#~ "To activate any Add-ons, edit and use the code in the first few lines."
|
3690 |
#~ msgstr "برای فعالسازی افزودنی ها،چند سطر اول کدها را ویرایش و استفاده کنید"
|
3691 |
|
3692 |
#~ msgid "Notes"
|
@@ -3695,24 +3484,11 @@ msgstr "http://www.elliotcondon.com/"
|
|
3695 |
#~ msgid "Include in theme"
|
3696 |
#~ msgstr "قرار دادن در پوسته"
|
3697 |
|
3698 |
-
#~ msgid ""
|
3699 |
-
#~ "
|
3700 |
-
|
3701 |
-
#~ "your functions.php file:"
|
3702 |
-
#~ msgstr ""
|
3703 |
-
#~ "افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار "
|
3704 |
-
#~ "بگیرد. برای انجام این کار، افزونه را به کنار پوسته تان انتقال دهید و "
|
3705 |
-
#~ "کدهای زیر را به پرونده functions.php اضافه کنید:"
|
3706 |
-
|
3707 |
-
#~ msgid ""
|
3708 |
-
#~ "To remove all visual interfaces from the ACF plugin, you can use a "
|
3709 |
-
#~ "constant to enable lite mode. Add the following code to your functions."
|
3710 |
-
#~ "php file <b>before</b> the include_once code:"
|
3711 |
-
#~ msgstr ""
|
3712 |
-
#~ "برای حذف همه رابط های بصری از افزونه زمینه های دلخواه پیشرفته (دیده نشدن "
|
3713 |
-
#~ "افزونه)، می توانید از یک ثابت (کانستنت) برای فعال سازی حالت سبک (lite) "
|
3714 |
-
#~ "استفاده کنید. کد زیر را به پرونده functions.php خود <b>قبل از</b> تابع "
|
3715 |
-
#~ "include_once اضافه کنید:"
|
3716 |
|
3717 |
#~ msgid "Back to export"
|
3718 |
#~ msgstr "بازگشت به برون بری"
|
@@ -3723,14 +3499,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3723 |
#~ msgid "Activation codes have grown into plugins!"
|
3724 |
#~ msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!"
|
3725 |
|
3726 |
-
#~ msgid ""
|
3727 |
-
#~ "
|
3728 |
-
#~ "plugins. Although these plugins will not be hosted on the wordpress.org "
|
3729 |
-
#~ "repository, each Add-on will continue to receive updates in the usual way."
|
3730 |
-
#~ msgstr ""
|
3731 |
-
#~ "افزودنی ها الان با دریافت و نصب افزونه های جداگانه فعال می شوند. با اینکه "
|
3732 |
-
#~ "این افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد، هر افزودنی به صورت "
|
3733 |
-
#~ "معمول به روز رسانی را دریافت خواهد کرد."
|
3734 |
|
3735 |
#~ msgid "All previous Add-ons have been successfully installed"
|
3736 |
#~ msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند"
|
@@ -3741,12 +3511,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3741 |
#~ msgid "Download your activated Add-ons"
|
3742 |
#~ msgstr "افزودنی های فعال شده ی خود را دانلود کنید"
|
3743 |
|
3744 |
-
#~ msgid ""
|
3745 |
-
#~ "
|
3746 |
-
#~ "this change."
|
3747 |
-
#~ msgstr ""
|
3748 |
-
#~ "این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار "
|
3749 |
-
#~ "نخواهد گرفت"
|
3750 |
|
3751 |
#~ msgid "Easier Development"
|
3752 |
#~ msgstr "توسعه آسانتر"
|
@@ -3763,16 +3529,11 @@ msgstr "http://www.elliotcondon.com/"
|
|
3763 |
#~ msgid "Password Field"
|
3764 |
#~ msgstr "زمینه رمزعبور"
|
3765 |
|
3766 |
-
#~ msgid ""
|
3767 |
-
#~ "
|
3768 |
-
#~ "version 3 field types are not compatible with version 4."
|
3769 |
-
#~ msgstr ""
|
3770 |
-
#~ "ساخت نوع زمینه دلخواه برای خودتان هرگز به این آسانی نبوده! متأسفانه، "
|
3771 |
-
#~ "انواع زمینه های نسخه 3 با نسخه 4 سازگار نیستند."
|
3772 |
|
3773 |
#~ msgid "Migrating your field types is easy, please"
|
3774 |
-
#~ msgstr ""
|
3775 |
-
#~ "انتقال انواع زمینه ها آسان است. پس لطفا افزونه خود را بروزرسانی کنید."
|
3776 |
|
3777 |
#~ msgid "follow this tutorial"
|
3778 |
#~ msgstr "این آموزش را دنبال کنید"
|
@@ -3783,12 +3544,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3783 |
#~ msgid "Actions & Filters"
|
3784 |
#~ msgstr "اکشن ها و فیلترها"
|
3785 |
|
3786 |
-
#~ msgid ""
|
3787 |
-
#~ "
|
3788 |
-
#~ "ACF even easier! Please"
|
3789 |
-
#~ msgstr ""
|
3790 |
-
#~ "همه اکشن ها و فیلترها دارای تغییرات عمده ای شدند تا دلخواه سازی ACF از "
|
3791 |
-
#~ "قبل آسانتر شود"
|
3792 |
|
3793 |
#~ msgid "read this guide"
|
3794 |
#~ msgstr "لطفا راهنما را مطالعه فرمایید"
|
@@ -3808,25 +3565,14 @@ msgstr "http://www.elliotcondon.com/"
|
|
3808 |
#~ msgid "Database Changes"
|
3809 |
#~ msgstr "تغییرات پایگاه داده"
|
3810 |
|
3811 |
-
#~ msgid ""
|
3812 |
-
#~ "
|
3813 |
-
#~ "between versions 3 and 4. This means you can roll back to version 3 "
|
3814 |
-
#~ "without any issues."
|
3815 |
-
#~ msgstr ""
|
3816 |
-
#~ "<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. "
|
3817 |
-
#~ "این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 "
|
3818 |
-
#~ "برگردید."
|
3819 |
|
3820 |
#~ msgid "Potential Issues"
|
3821 |
#~ msgstr "مسائل بالقوه"
|
3822 |
|
3823 |
-
#~ msgid ""
|
3824 |
-
#~ "
|
3825 |
-
#~ "filters, your website may not operate correctly. It is important that you "
|
3826 |
-
#~ "read the full"
|
3827 |
-
#~ msgstr ""
|
3828 |
-
#~ "با توجه به تغییرات افزودنی ها، انواع زمینه ها و اکشن ها/فیلترها، ممکن است "
|
3829 |
-
#~ "سایت شما به درستی عمل نکند. پس لازم است راهنمای کامل "
|
3830 |
|
3831 |
#~ msgid "Migrating from v3 to v4"
|
3832 |
#~ msgstr "مهاجرت از نسخه 3 به نسخه 4 را مطالعه کنید"
|
@@ -3837,12 +3583,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3837 |
#~ msgid "Really Important!"
|
3838 |
#~ msgstr "واقعا مهم!"
|
3839 |
|
3840 |
-
#~ msgid ""
|
3841 |
-
#~ "
|
3842 |
-
#~ "please roll back to the latest"
|
3843 |
-
#~ msgstr ""
|
3844 |
-
#~ "اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین "
|
3845 |
-
#~ "تغییرات بروزرسانی کردید، لطفا به نسخه قبل برگردید "
|
3846 |
|
3847 |
#~ msgid "version 3"
|
3848 |
#~ msgstr "نسخه 3"
|
@@ -3853,13 +3595,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3853 |
#~ msgid "Thank You"
|
3854 |
#~ msgstr "از شما متشکرم"
|
3855 |
|
3856 |
-
#~ msgid ""
|
3857 |
-
#~ "
|
3858 |
-
#~ "version 4 beta and for all the support I have received."
|
3859 |
-
#~ msgstr ""
|
3860 |
-
#~ "یک <strong>تشکر بزرگ</strong> از شما و همه کسانی که در تست نسخه 4 بتا به "
|
3861 |
-
#~ "من کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز "
|
3862 |
-
#~ "از همه شما متشکرم."
|
3863 |
|
3864 |
#~ msgid "Without you all, this release would not have been possible!"
|
3865 |
#~ msgstr "بدون همه شما انتشار این نسخه امکان پذیر نبود!"
|
@@ -3873,25 +3610,16 @@ msgstr "http://www.elliotcondon.com/"
|
|
3873 |
#~ msgid "Overview"
|
3874 |
#~ msgstr "بازنگری"
|
3875 |
|
3876 |
-
#~ msgid ""
|
3877 |
-
#~ "
|
3878 |
-
|
3879 |
-
#~ "
|
3880 |
-
#~ msgstr ""
|
3881 |
-
#~ "پیش از این، قفل همه افزودنی ها از طریق یک کد فعالسازی (خریداری شده از "
|
3882 |
-
#~ "فروشگاه افزودنی ها) باز می شدند.اما در نسخه 4 همه آنها به صورت افزودنی "
|
3883 |
-
#~ "های جداگانه هستند و باید به صورت جدا دریافت، نصب و بروزرسانی شوند."
|
3884 |
-
|
3885 |
-
#~ msgid ""
|
3886 |
-
#~ "This page will assist you in downloading and installing each available "
|
3887 |
-
#~ "Add-on."
|
3888 |
#~ msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد."
|
3889 |
|
3890 |
#~ msgid "Available Add-ons"
|
3891 |
#~ msgstr "افزودنی های موجود"
|
3892 |
|
3893 |
-
#~ msgid ""
|
3894 |
-
#~ "The following Add-ons have been detected as activated on this website."
|
3895 |
#~ msgstr "افزودنی های زیر به صورت فعال در این سایت شناسایی شده اند"
|
3896 |
|
3897 |
#~ msgid "Installation"
|
@@ -3909,18 +3637,11 @@ msgstr "http://www.elliotcondon.com/"
|
|
3909 |
#~ msgid "Plugins > Add New > Upload"
|
3910 |
#~ msgstr "افزونه ها > افزودن > بارگذاری"
|
3911 |
|
3912 |
-
#~ msgid ""
|
3913 |
-
#~ "
|
3914 |
-
#~ msgstr ""
|
3915 |
-
#~ "از بارگذار برای انتخاب فایل استفاده کنید. افزودنی خود را (پرونده ZIP) "
|
3916 |
-
#~ "انتخاب و نصب نمایید"
|
3917 |
|
3918 |
-
#~ msgid ""
|
3919 |
-
#~ "
|
3920 |
-
#~ "Plugin' link"
|
3921 |
-
#~ msgstr ""
|
3922 |
-
#~ "هنگامی که یک افزونه دریافت و نصب شده است، روی لینک (( فعال کردن افزونه)) "
|
3923 |
-
#~ "کلیک کنید"
|
3924 |
|
3925 |
#~ msgid "The Add-on is now installed and activated!"
|
3926 |
#~ msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!"
|
@@ -3956,8 +3677,7 @@ msgstr "http://www.elliotcondon.com/"
|
|
3956 |
#~ msgstr "آبجکت تصویر"
|
3957 |
|
3958 |
#~ msgid "Text & HTML entered here will appear inline with the fields"
|
3959 |
-
#~ msgstr ""
|
3960 |
-
#~ "متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد شد"
|
3961 |
|
3962 |
#~ msgid "Enter your choices one per line"
|
3963 |
#~ msgstr "انتخاب ها را در هر خط وارد کنید"
|
@@ -3992,12 +3712,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
3992 |
#~ msgid "Save format"
|
3993 |
#~ msgstr "فرمت ذخیره"
|
3994 |
|
3995 |
-
#~ msgid ""
|
3996 |
-
#~ "
|
3997 |
-
#~ "via the API"
|
3998 |
-
#~ msgstr ""
|
3999 |
-
#~ "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API "
|
4000 |
-
#~ "قابل خواندن است"
|
4001 |
|
4002 |
#~ msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
4003 |
#~ msgstr "\"yymmdd\" بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر"
|
@@ -4008,12 +3724,8 @@ msgstr "http://www.elliotcondon.com/"
|
|
4008 |
#~ msgid "This format will be seen by the user when entering a value"
|
4009 |
#~ msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد"
|
4010 |
|
4011 |
-
#~ msgid ""
|
4012 |
-
#~ "\"dd/mm/yy\"
|
4013 |
-
#~ "about"
|
4014 |
-
#~ msgstr ""
|
4015 |
-
#~ "\"dd/mm/yy\" یا \"mm/dd/yy\" پر استفاده ترین قالب های نمایش تاریخ می "
|
4016 |
-
#~ "باشند. اطلاعات بیشتر"
|
4017 |
|
4018 |
#~ msgid "Field Order"
|
4019 |
#~ msgstr "ترتیب زمینه"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2018-01-24 14:29+0330\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Kamel Kimiaei Fard <Kamel.Kimiaei.Fard@gmail.com>\n"
|
9 |
"Language: fa\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
14 |
+
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
|
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Poedit-WPHeader: acf.php\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
33 |
msgstr "گروه زمینه"
|
34 |
|
35 |
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
36 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
37 |
msgid "Add New"
|
38 |
msgstr "افزودن"
|
39 |
|
181 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
182 |
#: includes/admin/views/field-group-locations.php:29
|
183 |
#: includes/admin/views/html-location-group.php:3
|
184 |
+
#: includes/api/api-helpers.php:4001
|
185 |
msgid "or"
|
186 |
msgstr "یا"
|
187 |
|
341 |
#: includes/admin/admin-field-groups.php:667
|
342 |
#: includes/admin/admin-field-groups.php:683
|
343 |
#: includes/admin/views/field-group-field.php:49
|
344 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
345 |
msgid "Duplicate"
|
346 |
msgstr "تکثیر"
|
347 |
|
444 |
msgstr "انتخاب گروه های زمینه"
|
445 |
|
446 |
#: includes/admin/tools/class-acf-admin-tool-export.php:336
|
447 |
+
msgid "Select the field groups you would like to export and then select your export method. Use the download button to export to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code which you can place in your theme."
|
448 |
+
msgstr "گروه زمینه هایی که مایل به تهیه خروجی آنها هستید را انتخاب کنید و در ادامه روش خروجی را نیز مشخص کنید. از دکمه دانلود برای خروجی فایل .json برای وارد کردن در یک سایت دیگر که این افزونه نصب شده است استفاده کنید. از دکمه تولید می توانید برای ساخت کد PHP برای قراردادن در قالب خود استفاده کنید."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
449 |
|
450 |
#: includes/admin/tools/class-acf-admin-tool-export.php:341
|
451 |
msgid "Export File"
|
452 |
msgstr "خروجی فایل"
|
453 |
|
454 |
#: includes/admin/tools/class-acf-admin-tool-export.php:414
|
455 |
+
msgid "The following code can be used to register a local version of the selected field group(s). A local field group can provide many benefits such as faster load times, version control & dynamic fields/settings. Simply copy and paste the following code to your theme's functions.php file or include it within an external file."
|
456 |
+
msgstr "این کد می تواند برای ثبت یک نسخه محلی (لوکال)از گروه زمینه های انتخاب شده استفاده شود. یک نسخه محلی فواید زیادی دارد، مثلا سرعت لود بالاتر، کنترل نسخه و پویاسازی زمینه ها و تنظیماتشان. به راحتی می توانید کد زیر را در فایل function.php خود کپی کنید و یا از یک فایل دیگر انرا فراخوانی نمایید."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
457 |
|
458 |
#: includes/admin/tools/class-acf-admin-tool-export.php:446
|
459 |
msgid "Copy to clipboard"
|
464 |
msgstr "وارد کردن گروه های زمینه"
|
465 |
|
466 |
#: includes/admin/tools/class-acf-admin-tool-import.php:61
|
467 |
+
msgid "Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will import the field groups."
|
468 |
+
msgstr "فایل JSON ای که قبلا از این افزونه خروجی گرفته اید را انتخاب کنید تا وارد شود. زمانی که دکمه وارد کردن را در زیر کلیک کنید، سیستم اقدام به ساخت گروه های زمینه خواهد نمود"
|
|
|
|
|
|
|
|
|
|
|
469 |
|
470 |
#: includes/admin/tools/class-acf-admin-tool-import.php:66
|
471 |
#: includes/fields/class-acf-field-file.php:35
|
563 |
msgstr "حذف زمینه"
|
564 |
|
565 |
#: includes/admin/views/field-group-field.php:51
|
566 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
567 |
msgid "Delete"
|
568 |
msgstr "حذف"
|
569 |
|
628 |
#: includes/fields/class-acf-field-checkbox.php:415
|
629 |
#: includes/fields/class-acf-field-radio.php:306
|
630 |
#: includes/fields/class-acf-field-select.php:432
|
631 |
+
#: pro/fields/class-acf-field-flexible-content.php:584
|
632 |
msgid "Label"
|
633 |
msgstr "برچسب زمینه"
|
634 |
|
635 |
#: includes/admin/views/field-group-fields.php:6
|
636 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
637 |
+
#: pro/fields/class-acf-field-flexible-content.php:597
|
638 |
msgid "Name"
|
639 |
msgstr "نام"
|
640 |
|
647 |
msgstr "نوع زمینه"
|
648 |
|
649 |
#: includes/admin/views/field-group-fields.php:14
|
650 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
651 |
+
msgstr "هیچ زمینه ای وجود ندارد. روی دکمه<strong>+ افزودن زمینه</strong> کلیک کنید تا اولین زمینه خود را بسازید."
|
|
|
|
|
|
|
|
|
652 |
|
653 |
#: includes/admin/views/field-group-fields.php:31
|
654 |
msgid "+ Add Field"
|
659 |
msgstr "قوانین"
|
660 |
|
661 |
#: includes/admin/views/field-group-locations.php:10
|
662 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
663 |
+
msgstr "مجموعه ای از قوانین را بسازید تا مشخص کنید در کدام صفحه ویرایش ، این زمینه های دلخواه سفارشی نمایش داده شوند."
|
|
|
|
|
|
|
|
|
664 |
|
665 |
#: includes/admin/views/field-group-options.php:23
|
666 |
msgid "Style"
|
699 |
msgid "Top aligned"
|
700 |
msgstr "سمت بالا"
|
701 |
|
|
|
|
|
|
|
|
|
|
|
702 |
#: includes/admin/views/field-group-options.php:70
|
703 |
msgid "Instruction placement"
|
704 |
msgstr "مکان دستورالعمل ها"
|
732 |
msgstr "<b>انتخاب</b> آیتم ها برای <b>پنهان کردن</b> آن ها از صفحه ویرایش."
|
733 |
|
734 |
#: includes/admin/views/field-group-options.php:108
|
735 |
+
msgid "If multiple field groups appear on an edit screen, the first field group's options will be used (the one with the lowest order number)"
|
736 |
+
msgstr "اگر چندین گروه زمینه در یک صفحه ویرایش نمایش داده شود،اولین تنظیمات گروه زمینه استفاده خواهد شد. (یکی با کمترین شماره)"
|
|
|
|
|
|
|
|
|
737 |
|
738 |
#: includes/admin/views/field-group-options.php:115
|
739 |
msgid "Permalink"
|
807 |
|
808 |
#: includes/admin/views/install-network.php:11
|
809 |
#, php-format
|
810 |
+
msgid "The following sites require a DB upgrade. Check the ones you want to update and then click %s."
|
|
|
|
|
811 |
msgstr "این سایت ها نیاز به به روز رسانی دارند برای انجام %s کلیک کنید."
|
812 |
|
813 |
#: includes/admin/views/install-network.php:20
|
826 |
|
827 |
#: includes/admin/views/install-network.php:63
|
828 |
#, php-format
|
829 |
+
msgid "Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
830 |
+
msgstr "به روزرسانی دیتابیس انجام شد. <a href=\"%s\">بازگشت به پیشخوان شبکه</a>"
|
|
|
|
|
831 |
|
832 |
#: includes/admin/views/install-network.php:102
|
833 |
#: includes/admin/views/install-notice.php:42
|
834 |
+
msgid "It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?"
|
835 |
+
msgstr "قویا توصیه می شود از بانک اطلاعاتی خود قبل از هر کاری پشتیبان تهیه کنید. آیا مایلید به روز رسانی انجام شود؟"
|
|
|
|
|
|
|
|
|
836 |
|
837 |
#: includes/admin/views/install-network.php:158
|
838 |
msgid "Upgrade complete"
|
874 |
msgstr "از شما برای بروزرسانی به آخرین نسخه %s v%s ممنون هستیم!"
|
875 |
|
876 |
#: includes/admin/views/install-notice.php:28
|
877 |
+
msgid "Before you start using the new awesome features, please update your database to the newest version."
|
878 |
+
msgstr "قبل از اینکه از تمام امکانات شگفت انگیز جدید استفاده کنید لازم است بانک اطلاعاتی را به روز کنید"
|
|
|
|
|
|
|
|
|
879 |
|
880 |
#: includes/admin/views/install-notice.php:31
|
881 |
#, php-format
|
882 |
+
msgid "Please also ensure any premium add-ons (%s) have first been updated to the latest version."
|
883 |
+
msgstr "لطفا اطمینان حاصل کنید که افزودنی های تجاري (%s) ابتدا به آخرین نسخه بروز شدهاند."
|
|
|
|
|
884 |
|
885 |
#: includes/admin/views/install.php:7
|
886 |
msgid "Reading upgrade tasks..."
|
889 |
#: includes/admin/views/install.php:11
|
890 |
#, php-format
|
891 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
892 |
+
msgstr "ارتقاء پایگاه داده کامل شد. <a href=\"%s\">تغییرات جدید را ببینید</a>"
|
893 |
|
894 |
#: includes/admin/views/settings-addons.php:17
|
895 |
msgid "Download & Install"
|
905 |
|
906 |
#: includes/admin/views/settings-info.php:4
|
907 |
#, php-format
|
908 |
+
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
909 |
+
msgstr "از اینکه به روزرسانی کردید متشکریم! افزونه زمینه دلخواه پیشرفته %s بزرگتر و بهتر از قبل شده است. امیدواریم لذت ببرید."
|
|
|
|
|
|
|
|
|
910 |
|
911 |
#: includes/admin/views/settings-info.php:17
|
912 |
msgid "A smoother custom field experience"
|
917 |
msgstr "کاربری بهینه شده"
|
918 |
|
919 |
#: includes/admin/views/settings-info.php:23
|
920 |
+
msgid "Including the popular Select2 library has improved both usability and speed across a number of field types including post object, page link, taxonomy and select."
|
921 |
+
msgstr "استفاده از کتابخانه محبوب Select2 باعث سرعت در عملکرد و کاربری بهتر در انواع زمینه هاشامل آبجکت نوشته، پیوند(لینک) صفحه ، طبقه بندی و زمینه های انتخاب(Select) شده است"
|
|
|
|
|
|
|
|
|
|
|
|
|
922 |
|
923 |
#: includes/admin/views/settings-info.php:27
|
924 |
msgid "Improved Design"
|
925 |
msgstr "طراحی بهینه شده"
|
926 |
|
927 |
#: includes/admin/views/settings-info.php:28
|
928 |
+
msgid "Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are seen on the gallery, relationship and oEmbed (new) fields!"
|
929 |
+
msgstr "بسیاری از زمینه ها از نظر ظاهری باز طراحی شدند تا این افزونه از قبل بهتر شده باشد. تغییرات چشم گیر در گالری و ارتباط و زمینه جدید به نام oEmbed صورت گرفته است."
|
|
|
|
|
|
|
|
|
|
|
|
|
930 |
|
931 |
#: includes/admin/views/settings-info.php:32
|
932 |
msgid "Improved Data"
|
933 |
msgstr "داده ها بهینه شده اند"
|
934 |
|
935 |
#: includes/admin/views/settings-info.php:33
|
936 |
+
msgid "Redesigning the data architecture has allowed sub fields to live independently from their parents. This allows you to drag and drop fields in and out of parent fields!"
|
937 |
+
msgstr "بازطراحی معماری داده ها این اجازه را به زمینه های زیرمجموعه داده است که بدون زمینه های والد باقی بمانند. این به شما کمک می کند که زمینه ها را از یک فیلد اصلی خارج یا به آن وارد نمایید !"
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
|
939 |
#: includes/admin/views/settings-info.php:39
|
940 |
msgid "Goodbye Add-ons. Hello PRO"
|
945 |
msgstr "معرفی نسخه حرفه ای"
|
946 |
|
947 |
#: includes/admin/views/settings-info.php:45
|
948 |
+
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
949 |
+
msgstr "ما در حال تغییر راه عملکردهای پولی افزونه به شیوه ای هیجان انگیز هستیم!"
|
|
|
|
|
950 |
|
951 |
#: includes/admin/views/settings-info.php:46
|
952 |
#, php-format
|
953 |
+
msgid "All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both personal and developer licenses available, premium functionality is more affordable and accessible than ever before!"
|
954 |
+
msgstr "هر چهار افزدونی پولی یکی شده و تحت عنوان <a href=\"%s\">نسخه حرفه ای (Pro) </a> از افزونه زمینه های دلخواه معرفی شده اند. دو نسخه شخصی و توسعه دهنده موجود است که در هر دو این امکانات بهتر و دسترس تر از قبل موجود است!"
|
|
|
|
|
|
|
|
|
|
|
|
|
955 |
|
956 |
#: includes/admin/views/settings-info.php:50
|
957 |
msgid "Powerful Features"
|
958 |
msgstr "امکانات قدرتمند"
|
959 |
|
960 |
#: includes/admin/views/settings-info.php:51
|
961 |
+
msgid "ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful gallery field and the ability to create extra admin options pages!"
|
962 |
+
msgstr "نسخه حرفه دارای امکانات قدرتمندی نظیر داده های تکرارپذیر، محتوای منعطف، یک زمینه گالری زیبا و امکان ساخت صفحات تنظیمات می باشد !"
|
|
|
|
|
|
|
|
|
|
|
963 |
|
964 |
#: includes/admin/views/settings-info.php:52
|
965 |
#, php-format
|
972 |
|
973 |
#: includes/admin/views/settings-info.php:57
|
974 |
#, php-format
|
975 |
+
msgid "To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of ACF PRO!"
|
976 |
+
msgstr "برای به روزرسانی ساده <a href=\"%s\"> به بخش کاربری خود در فروشگاه وارد شوید </a> و یک نسخه از ویرایش حرفه ای را دانلود کنید!"
|
|
|
|
|
|
|
|
|
977 |
|
978 |
#: includes/admin/views/settings-info.php:58
|
979 |
#, php-format
|
980 |
+
msgid "We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, please contact our support team via the <a href=\"%s\">help desk</a>"
|
981 |
+
msgstr "همچنین یک <a href=\"%s\"> راهنمای به روزرسانی</a> برای پاسخ به سوالات نوشته ایم ولی اگر هنوز سوالی دارید از <a href=\"%s\">تیم پشتیبانی</a> بپرسید "
|
|
|
|
|
|
|
|
|
|
|
982 |
|
983 |
#: includes/admin/views/settings-info.php:66
|
984 |
msgid "Under the Hood"
|
990 |
|
991 |
#: includes/admin/views/settings-info.php:72
|
992 |
msgid "ACF now saves its field settings as individual post objects"
|
993 |
+
msgstr "افزونه اکنون تنظیمات زمینه ها را به عنوان آبجکت ها مختلف نوشته ذخیره می کند"
|
|
|
994 |
|
995 |
#: includes/admin/views/settings-info.php:76
|
996 |
msgid "More AJAX"
|
1013 |
msgstr "کنترل نسخه بهتر"
|
1014 |
|
1015 |
#: includes/admin/views/settings-info.php:89
|
1016 |
+
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
|
|
|
|
1017 |
msgstr "اکنون با خروجی جدید JSON امکان کنترل نسخه بهتر را فراهم کردیم"
|
1018 |
|
1019 |
#: includes/admin/views/settings-info.php:93
|
1030 |
|
1031 |
#: includes/admin/views/settings-info.php:99
|
1032 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1033 |
+
msgstr "گزینه ها اکنون می توانند به نظرات، ابزارک ها و حتی فرم های مربوط به کاربران متصل شوند !"
|
|
|
|
|
1034 |
|
1035 |
#: includes/admin/views/settings-info.php:106
|
1036 |
msgid "A new field for embedding content has been added"
|
1049 |
msgstr "تنظیمات جدید"
|
1050 |
|
1051 |
#: includes/admin/views/settings-info.php:116
|
1052 |
+
msgid "Field group settings have been added for label placement and instruction placement"
|
|
|
|
|
1053 |
msgstr "تنظیماتی به گروه زمینه برای مکان برچسب ها و توضیحات اضافه شده است"
|
1054 |
|
1055 |
#: includes/admin/views/settings-info.php:122
|
1066 |
|
1067 |
#: includes/admin/views/settings-info.php:128
|
1068 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1069 |
+
msgstr "خطایابی فرم (validation) اکنون از طریق PHP + AJAX به جای JS انجام می شود"
|
|
|
1070 |
|
1071 |
#: includes/admin/views/settings-info.php:132
|
1072 |
msgid "Relationship Field"
|
1073 |
msgstr "زمینه ارتباط"
|
1074 |
|
1075 |
#: includes/admin/views/settings-info.php:133
|
1076 |
+
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
|
|
1077 |
msgstr "تنظیمات جدید برای زمینه ارتباط و فیلتر کردن اضافه شده است"
|
1078 |
|
1079 |
#: includes/admin/views/settings-info.php:139
|
1081 |
msgstr "جابجایی زمینه ها"
|
1082 |
|
1083 |
#: includes/admin/views/settings-info.php:140
|
1084 |
+
msgid "New field group functionality allows you to move a field between groups & parents"
|
1085 |
+
msgstr "عملکرد جدید گروه زمینه ها به شما امکان جابجایی زمینه ها بین گروه ها و بین گروه های والد را می دهد"
|
|
|
|
|
|
|
|
|
1086 |
|
1087 |
#: includes/admin/views/settings-info.php:144
|
1088 |
#: includes/fields/class-acf-field-page_link.php:25
|
1098 |
msgstr "صفحه تنظیمات بهتر"
|
1099 |
|
1100 |
#: includes/admin/views/settings-info.php:150
|
1101 |
+
msgid "New functions for options page allow creation of both parent and child menu pages"
|
1102 |
+
msgstr "تنظیمات جدید برای صفحه تنظیمات اجازه ساخت هر دو صفحه منوی والد و زیرمجموعه را می دهد"
|
|
|
|
|
|
|
|
|
1103 |
|
1104 |
#: includes/admin/views/settings-info.php:159
|
1105 |
#, php-format
|
1106 |
msgid "We think you'll love the changes in %s."
|
1107 |
msgstr "فکر می کنیم شما تغییرات در %s را دوست خواهید داشت"
|
1108 |
|
1109 |
+
#: includes/api/api-helpers.php:900
|
1110 |
msgid "Thumbnail"
|
1111 |
msgstr "تصویر بندانگشتی"
|
1112 |
|
1113 |
+
#: includes/api/api-helpers.php:901
|
1114 |
msgid "Medium"
|
1115 |
msgstr "متوسط"
|
1116 |
|
1117 |
+
#: includes/api/api-helpers.php:902
|
1118 |
msgid "Large"
|
1119 |
msgstr "بزرگ"
|
1120 |
|
1121 |
+
#: includes/api/api-helpers.php:951
|
1122 |
msgid "Full Size"
|
1123 |
msgstr "اندازه کامل"
|
1124 |
|
1125 |
+
#: includes/api/api-helpers.php:1292 includes/api/api-helpers.php:1865
|
1126 |
#: pro/fields/class-acf-field-clone.php:992
|
1127 |
msgid "(no title)"
|
1128 |
msgstr "(بدون عنوان)"
|
1129 |
|
1130 |
+
#: includes/api/api-helpers.php:3922
|
1131 |
#, php-format
|
1132 |
msgid "Image width must be at least %dpx."
|
1133 |
msgstr "عرض تصویر باید حداقل %d پیکسل باشد."
|
1134 |
|
1135 |
+
#: includes/api/api-helpers.php:3927
|
1136 |
#, php-format
|
1137 |
msgid "Image width must not exceed %dpx."
|
1138 |
msgstr "عرض تصویر نباید از %d پیکسل بیشتر باشد."
|
1139 |
|
1140 |
+
#: includes/api/api-helpers.php:3943
|
1141 |
#, php-format
|
1142 |
msgid "Image height must be at least %dpx."
|
1143 |
msgstr "ارتفاع فایل باید حداقل %d پیکسل باشد."
|
1144 |
|
1145 |
+
#: includes/api/api-helpers.php:3948
|
1146 |
#, php-format
|
1147 |
msgid "Image height must not exceed %dpx."
|
1148 |
msgstr "ارتفاع تصویر نباید از %d پیکسل بیشتر باشد."
|
1149 |
|
1150 |
+
#: includes/api/api-helpers.php:3966
|
1151 |
#, php-format
|
1152 |
msgid "File size must be at least %s."
|
1153 |
msgstr "حجم فایل باید حداقل %s باشد."
|
1154 |
|
1155 |
+
#: includes/api/api-helpers.php:3971
|
1156 |
#, php-format
|
1157 |
msgid "File size must must not exceed %s."
|
1158 |
msgstr "حجم فایل ها نباید از %s بیشتر باشد."
|
1159 |
|
1160 |
+
#: includes/api/api-helpers.php:4005
|
1161 |
#, php-format
|
1162 |
msgid "File type must be %s."
|
1163 |
msgstr "نوع فایل باید %s باشد"
|
1182 |
msgid "jQuery"
|
1183 |
msgstr "جی کوئری"
|
1184 |
|
1185 |
+
#: includes/fields.php:149
|
1186 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1187 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1188 |
#: includes/fields/class-acf-field-group.php:474
|
1189 |
#: includes/fields/class-acf-field-radio.php:285
|
1190 |
#: pro/fields/class-acf-field-clone.php:839
|
1191 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
1192 |
+
#: pro/fields/class-acf-field-flexible-content.php:603
|
1193 |
#: pro/fields/class-acf-field-repeater.php:450
|
1194 |
msgid "Layout"
|
1195 |
msgstr "چیدمان"
|
1219 |
msgstr "چند گسترش"
|
1220 |
|
1221 |
#: includes/fields/class-acf-field-accordion.php:110
|
1222 |
+
msgid "Allow this accordion to open without closing others."
|
1223 |
+
msgstr "اجازه دهید این آکوردئون بدون بستن دیگر آکاردئونها باز شود."
|
1224 |
|
1225 |
#: includes/fields/class-acf-field-accordion.php:119
|
1226 |
#: includes/fields/class-acf-field-tab.php:114
|
1228 |
msgstr "نقطه پایانی"
|
1229 |
|
1230 |
#: includes/fields/class-acf-field-accordion.php:120
|
1231 |
+
msgid "Define an endpoint for the previous accordion to stop. This accordion will not be visible."
|
1232 |
+
msgstr "یک نقطه پایانی برای توقف آکاردئون قبلی تعریف کنید. این آکاردئون مخفی خواهد بود."
|
|
|
|
|
1233 |
|
1234 |
#: includes/fields/class-acf-field-button-group.php:24
|
1235 |
msgid "Button Group"
|
1390 |
|
1391 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1392 |
msgid "Color Picker"
|
1393 |
+
msgstr "انتخاب کننده رنگ"
|
1394 |
|
1395 |
#: includes/fields/class-acf-field-color_picker.php:68
|
1396 |
msgid "Clear"
|
1402 |
|
1403 |
#: includes/fields/class-acf-field-color_picker.php:70
|
1404 |
msgid "Select Color"
|
1405 |
+
msgstr "رنگ را انتخاب کنید"
|
1406 |
|
1407 |
#: includes/fields/class-acf-field-color_picker.php:71
|
1408 |
msgid "Current Color"
|
1488 |
|
1489 |
#: includes/fields/class-acf-field-date_time_picker.php:25
|
1490 |
msgid "Date Time Picker"
|
1491 |
+
msgstr "انتخاب کننده زمان و تاریخ"
|
1492 |
|
1493 |
#: includes/fields/class-acf-field-date_time_picker.php:33
|
1494 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1806 |
|
1807 |
#: includes/fields/class-acf-field-group.php:480
|
1808 |
#: pro/fields/class-acf-field-clone.php:845
|
1809 |
+
#: pro/fields/class-acf-field-flexible-content.php:614
|
1810 |
#: pro/fields/class-acf-field-repeater.php:458
|
1811 |
msgid "Block"
|
1812 |
msgstr "بلوک"
|
1813 |
|
1814 |
#: includes/fields/class-acf-field-group.php:481
|
1815 |
#: pro/fields/class-acf-field-clone.php:846
|
1816 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
1817 |
#: pro/fields/class-acf-field-repeater.php:457
|
1818 |
msgid "Table"
|
1819 |
msgstr "جدول"
|
1820 |
|
1821 |
#: includes/fields/class-acf-field-group.php:482
|
1822 |
#: pro/fields/class-acf-field-clone.php:847
|
1823 |
+
#: pro/fields/class-acf-field-flexible-content.php:615
|
1824 |
#: pro/fields/class-acf-field-repeater.php:459
|
1825 |
msgid "Row"
|
1826 |
msgstr "سطر"
|
2173 |
#, php-format
|
2174 |
msgctxt "Select2 JS matches_n"
|
2175 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2176 |
+
msgstr "نتایج %d در دسترس است با استفاده از کلید بالا و پایین روی آنها حرکت کنید."
|
2177 |
|
2178 |
#: includes/fields/class-acf-field-select.php:40
|
2179 |
msgctxt "Select2 JS matches_0"
|
2189 |
#, php-format
|
2190 |
msgctxt "Select2 JS input_too_short_n"
|
2191 |
msgid "Please enter %d or more characters"
|
2192 |
+
msgstr "لطفا %d یا چند کاراکتر دیگر وارد کنید"
|
2193 |
|
2194 |
#: includes/fields/class-acf-field-select.php:43
|
2195 |
msgctxt "Select2 JS input_too_long_1"
|
2200 |
#, php-format
|
2201 |
msgctxt "Select2 JS input_too_long_n"
|
2202 |
msgid "Please delete %d characters"
|
2203 |
+
msgstr "لطفا %d کاراکتر را حذف کنید"
|
2204 |
|
2205 |
#: includes/fields/class-acf-field-select.php:45
|
2206 |
msgctxt "Select2 JS selection_too_long_1"
|
2211 |
#, php-format
|
2212 |
msgctxt "Select2 JS selection_too_long_n"
|
2213 |
msgid "You can only select %d items"
|
2214 |
+
msgstr "شما فقط می توانید %d مورد را انتخاب کنید"
|
2215 |
|
2216 |
#: includes/fields/class-acf-field-select.php:47
|
2217 |
msgctxt "Select2 JS load_more"
|
2258 |
msgid "Placement"
|
2259 |
msgstr "جانمایی"
|
2260 |
|
2261 |
+
#: includes/fields/class-acf-field-tab.php:107
|
2262 |
+
msgid "Left aligned"
|
2263 |
+
msgstr "سمت چپ"
|
2264 |
+
|
2265 |
#: includes/fields/class-acf-field-tab.php:115
|
2266 |
+
msgid "Define an endpoint for the previous tabs to stop. This will start a new group of tabs."
|
2267 |
+
msgstr "یک نقطه پایانی برای توقف زبانه قبلی تعریف کنید. این کار باعث میشود گروه جدیدی از زبانهها ایجاد شود."
|
|
|
|
|
2268 |
|
2269 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
2270 |
#, php-format
|
2271 |
msgctxt "No terms"
|
2272 |
msgid "No %s"
|
2273 |
+
msgstr "بدون %s"
|
2274 |
|
2275 |
#: includes/fields/class-acf-field-taxonomy.php:732
|
2276 |
msgid "None"
|
2456 |
|
2457 |
#: includes/fields/class-acf-field-wysiwyg.php:366
|
2458 |
msgid "Click to initialize TinyMCE"
|
2459 |
+
msgstr "برای اجرای TinyMCE کلیک کنید"
|
2460 |
|
2461 |
#: includes/fields/class-acf-field-wysiwyg.php:419
|
2462 |
msgid "Tabs"
|
2488 |
|
2489 |
#: includes/fields/class-acf-field-wysiwyg.php:454
|
2490 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2491 |
+
msgstr "تا زمانی که روی فیلد کلیک نشود TinyMCE اجرا نخواهد شد"
|
2492 |
|
2493 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2494 |
#: pro/admin/admin-options-page.php:308
|
2499 |
msgid "Validate Email"
|
2500 |
msgstr "اعتبار سنجی ایمیل"
|
2501 |
|
2502 |
+
#: includes/forms/form-front.php:103
|
2503 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2504 |
msgid "Update"
|
2505 |
msgstr "بروزرسانی"
|
2506 |
|
2569 |
#: includes/locations/class-acf-location-attachment.php:109
|
2570 |
#, php-format
|
2571 |
msgid "All %s formats"
|
2572 |
+
msgstr "همهی فرمتهای %s"
|
2573 |
|
2574 |
#: includes/locations/class-acf-location-comment.php:27
|
2575 |
msgid "Comment"
|
2722 |
|
2723 |
#: pro/admin/admin-options-page.php:206
|
2724 |
#, php-format
|
2725 |
+
msgid "No Custom Field Groups found for this options page. <a href=\"%s\">Create a Custom Field Group</a>"
|
2726 |
+
msgstr "هیچ گروه زمینه دلخواهی برای این صفحه تنظیمات یافت نشد. <a href=\"%s\">ساخت گروه زمینه دلخواه</a>"
|
|
|
|
|
|
|
|
|
2727 |
|
2728 |
#: pro/admin/admin-settings-updates.php:78
|
2729 |
msgid "<b>Error</b>. Could not connect to update server"
|
2748 |
|
2749 |
#: pro/admin/views/html-settings-updates.php:20
|
2750 |
#, php-format
|
2751 |
+
msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see <a href=\"%s\" target=\"_blank\">details & pricing</a>."
|
2752 |
+
msgstr "برای به روزرسانی لطفا کد لایسنس را وارد کنید. <a href=\"%s\" target=\"_blank\">قیمت ها</a>."
|
|
|
|
|
|
|
|
|
|
|
2753 |
|
2754 |
#: pro/admin/views/html-settings-updates.php:29
|
2755 |
msgid "License Key"
|
2907 |
msgid "Click to toggle"
|
2908 |
msgstr "کلیک برای انتخاب"
|
2909 |
|
2910 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
2911 |
msgid "Reorder Layout"
|
2912 |
msgstr "ترتیب بندی طرح ها"
|
2913 |
|
2914 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
2915 |
msgid "Reorder"
|
2916 |
msgstr "مرتب سازی"
|
2917 |
|
2918 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
2919 |
msgid "Delete Layout"
|
2920 |
msgstr "حذف طرح"
|
2921 |
|
2922 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
2923 |
msgid "Duplicate Layout"
|
2924 |
msgstr "تکثیر طرح"
|
2925 |
|
2926 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
2927 |
msgid "Add New Layout"
|
2928 |
msgstr "افزودن طرح جدید"
|
2929 |
|
2930 |
+
#: pro/fields/class-acf-field-flexible-content.php:630
|
2931 |
msgid "Min"
|
2932 |
msgstr "حداقل"
|
2933 |
|
2934 |
+
#: pro/fields/class-acf-field-flexible-content.php:643
|
2935 |
msgid "Max"
|
2936 |
msgstr "حداکثر"
|
2937 |
|
2938 |
+
#: pro/fields/class-acf-field-flexible-content.php:670
|
2939 |
#: pro/fields/class-acf-field-repeater.php:466
|
2940 |
msgid "Button Label"
|
2941 |
msgstr "متن دکمه"
|
2942 |
|
2943 |
+
#: pro/fields/class-acf-field-flexible-content.php:679
|
2944 |
msgid "Minimum Layouts"
|
2945 |
msgstr "حداقل تعداد طرح ها"
|
2946 |
|
2947 |
+
#: pro/fields/class-acf-field-flexible-content.php:688
|
2948 |
msgid "Maximum Layouts"
|
2949 |
msgstr "حداکثر تعداد طرح ها"
|
2950 |
|
3066 |
|
3067 |
#: pro/updates.php:97
|
3068 |
#, php-format
|
3069 |
+
msgid "To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s\">details & pricing</a>."
|
3070 |
+
msgstr "برای به روزرسانی لطفا کد لایسنس را وارد کنید. <a href=\"%s\">بروزرسانی</a>. <a href=\"%s\">قیمت ها</a>"
|
|
|
|
|
|
|
|
|
|
|
3071 |
|
3072 |
#. Plugin URI of the plugin/theme
|
3073 |
msgid "https://www.advancedcustomfields.com/"
|
3081 |
msgid "http://www.elliotcondon.com/"
|
3082 |
msgstr "http://www.elliotcondon.com/"
|
3083 |
|
3084 |
+
#~ msgid "Allow this accordion to open without closing others. "
|
3085 |
+
#~ msgstr "اجاره به آکاردئون برای باز شدن بدون بستن دیگران"
|
3086 |
+
|
3087 |
+
#~ msgid "The tab field will display incorrectly when added to a Table style repeater field or flexible content field layout"
|
3088 |
+
#~ msgstr "زمینه تب در زمانی که در آن زمینه تکرارشونده و یا زمینه محتوای انعطاف پذیر به کار ببرید درست نمایش داده نخواهد شد"
|
3089 |
+
|
3090 |
+
#~ msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
3091 |
+
#~ msgstr "از (زمینه تب) برای سازماندهی بهتر صفحه ویرایش با گروه بندی زمینه ها زیر تب ها استفاده کنید. "
|
3092 |
+
|
3093 |
+
#~ msgid "All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together using this field's label as the tab heading."
|
3094 |
+
#~ msgstr "همه زمینه های زیر این \" زمینه تب \" (یا تا زمینه تب بعدی) با هم گروه بندی می شوند و برچسب زمینه در تب به نمایش در خواهد آمد"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3095 |
|
3096 |
#~ msgid "End-point"
|
3097 |
#~ msgstr "نقطه پایانی"
|
3098 |
|
3099 |
#~ msgid "Use this field as an end-point and start a new group of tabs"
|
3100 |
+
#~ msgstr "استفاده از این زمینه به عنوان نقطه پایانی و شروع یک گروه جدید از تب ها"
|
|
|
3101 |
|
3102 |
#~ msgid "Disabled"
|
3103 |
#~ msgstr "غیرفعال"
|
3166 |
#~ msgid "<b>Success</b>. Import tool added %s field groups: %s"
|
3167 |
#~ msgstr "<b>انجام شد</b> ابزار وارد سازی %s زمینه را وارد کرد: %s"
|
3168 |
|
3169 |
+
#~ msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
3170 |
+
#~ msgstr "<b>اخطار</b> ابزار وارد سازی تشخصی داد که گروه زمینه %s اکنون موجود می باشد و %s نادیده گرفته شد"
|
|
|
|
|
|
|
|
|
3171 |
|
3172 |
#~ msgid "Upgrade ACF"
|
3173 |
#~ msgstr "بروزرسانی "
|
3178 |
#~ msgid "Drag and drop to reorder"
|
3179 |
#~ msgstr "با گرفتن و کشیدن مرتب سازی کنید"
|
3180 |
|
3181 |
+
#~ msgid "The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade Database”."
|
3182 |
+
#~ msgstr "سایتهای زیر نیاز به بهروزرسانی دیتابیس دارند. آنهایی که تمایل دارید را انتخاب کنید و دکمه به روزرسانی را کلیک کنید."
|
|
|
|
|
|
|
|
|
3183 |
|
3184 |
#~ msgid "Upgrading data to"
|
3185 |
#~ msgstr "به روزرسانی داده ها به"
|
3223 |
#~ msgid "License"
|
3224 |
#~ msgstr "لایسنس"
|
3225 |
|
3226 |
+
#~ msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
3227 |
+
#~ msgstr "برای به روزرسانی لطفا لایسنس خود را وارد کنید. اگر لایسنس ندارید اینجا را ببنید:"
|
|
|
|
|
|
|
|
|
3228 |
|
3229 |
#~ msgid "details & pricing"
|
3230 |
#~ msgstr "جزئیات و قیمت"
|
3231 |
|
3232 |
+
#~ msgid "To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
3233 |
+
#~ msgstr "برای به روز رسانی لایسنس خود را در قسمت <a href=\"%s\">به روزرسانی ها</a> وارد کنید. اگر لایسنس ندارید اینجا را ببینید: <a href=\"%s\">جزئیات ئ قیمت</a>"
|
3234 |
+
|
3235 |
+
#~ msgid "Please note that all text will first be passed through the wp function "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3236 |
#~ msgstr "دقت کنید که نکاک متن ها اول از تابع وردپرس عبور خواهند کرد"
|
3237 |
|
3238 |
#~ msgid "Warning"
|
3248 |
#~ msgstr "درون ریزی/برون بری"
|
3249 |
|
3250 |
#~ msgid "Field groups are created in order from lowest to highest"
|
3251 |
+
#~ msgstr "گروه های زمینه به ترتیب از کوچکترین شماره تا بزرگترین شماره نمایش داده می شوند"
|
|
|
|
|
3252 |
|
3253 |
#~ msgid "Upgrading data to "
|
3254 |
#~ msgstr "به روز رسانی داده ها به %s"
|
3277 |
#~ msgid "ACF PRO Required"
|
3278 |
#~ msgstr "نسخه حرفه ای لازم است"
|
3279 |
|
3280 |
+
#~ msgid "We have detected an issue which requires your attention: This website makes use of premium add-ons (%s) which are no longer compatible with ACF."
|
3281 |
+
#~ msgstr "مشکلی مشاهده شده است که نیاز به توجه شما دارد. این وب سایت مجاز به استفاده از افزودنی های پولی (%s) می باشد که دیگر سازگار نیستند"
|
|
|
|
|
|
|
|
|
3282 |
|
3283 |
+
#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!"
|
|
|
|
|
3284 |
#~ msgstr "مشکلی نیست. شما می توانید به نسخه ای که به آن عادت دارید برگردید!"
|
3285 |
|
3286 |
#~ msgid "Roll back to ACF v%s"
|
3306 |
#~ msgid "Load & Save Terms to Post"
|
3307 |
#~ msgstr "خواندن و ذخیره دسته(ترم)ها برای نوشته"
|
3308 |
|
3309 |
+
#~ msgid "Load value based on the post's terms and update the post's terms on save"
|
3310 |
+
#~ msgstr "مقدار بر اساس دسته(ترم) نوشته خوانده شود و دسته های نوشته را در هنگام ذخیره به روز رسانی کند"
|
|
|
|
|
|
|
3311 |
|
3312 |
#~ msgid "Controls how HTML tags are rendered"
|
3313 |
#~ msgstr "کنترل چگونگی نمایش تگ های HTML"
|
3376 |
#~ msgid "No ACF groups selected"
|
3377 |
#~ msgstr "هیچ گروه زمینه دلخواه پیشرفته ای انتخاب نشده است."
|
3378 |
|
3379 |
+
#~ msgid "Create infinite rows of repeatable data with this versatile interface!"
|
3380 |
+
#~ msgstr "ایجاد بی نهایت سطر از داده های تکرار شونده به وسیله این زمینه چند منظوره!"
|
|
|
|
|
3381 |
|
3382 |
#~ msgid "Create image galleries in a simple and intuitive interface!"
|
3383 |
#~ msgstr "ایجاد گالری های تصاویر در یک رابط کاربری ساده و دیداری!"
|
3392 |
#~ msgstr "زمینه افزونه GravityForms"
|
3393 |
|
3394 |
#~ msgid "Creates a select field populated with Gravity Forms!"
|
3395 |
+
#~ msgstr "زمینه جدید از نوع انتخاب می سازد که می توانید یکی از فرم های GravityForms که ساخته اید را از آن انتخاب کنید"
|
|
|
|
|
3396 |
|
3397 |
#~ msgid "Date & Time Picker"
|
3398 |
#~ msgstr "تاریخ و زمان"
|
3412 |
#~ msgid "Advanced Custom Fields Add-Ons"
|
3413 |
#~ msgstr "افزودنی های افزونه زمینه های دلخواه پیشرفته"
|
3414 |
|
3415 |
+
#~ msgid "The following Add-ons are available to increase the functionality of the Advanced Custom Fields plugin."
|
3416 |
+
#~ msgstr "افزودنی های زیر برای افزایش قابلیت های افزونه زمینه های دلخواه پیشرفته قابل استفاده هستند."
|
|
|
|
|
|
|
|
|
3417 |
|
3418 |
+
#~ msgid "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does not receive updates)."
|
3419 |
+
#~ msgstr "هر افزودنی می تواند به عنوان یک افزونه جدا ( قابل بروزرسانی) نصب شود و یا در پوسته شما (غیرقابل بروزرسانی) قرار گیرد."
|
|
|
|
|
|
|
|
|
3420 |
|
3421 |
#~ msgid "Purchase & Install"
|
3422 |
#~ msgstr "خرید و نصب"
|
3430 |
#~ msgid "Export to PHP"
|
3431 |
#~ msgstr "برون بری به فرمت PHP"
|
3432 |
|
3433 |
+
#~ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
3434 |
+
#~ msgstr "افزونه زمینه های دلخواه پیشرفته یک پرونده خروجی (.xml) را ایجاد خواهد کرد که با افزونه Wordpress Importer سازگار است."
|
3435 |
+
|
3436 |
+
#~ msgid "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for migrating fields groups between Wp websites."
|
3437 |
+
#~ msgstr "گروه های زمینه درون ریزی شده در لیست گروه های زمینه قابل ویرایش نمایش داده <b>خواهند شد</b>. این روش برای انتقال گروه های زمینه در بین سایت های وردپرسی مفید است."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3438 |
|
3439 |
#~ msgid "Select field group(s) from the list and click \"Export XML\""
|
3440 |
+
#~ msgstr "گروه زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت XML)) کلیک کنید"
|
|
|
|
|
3441 |
|
3442 |
#~ msgid "Save the .xml file when prompted"
|
3443 |
#~ msgstr "فایل .xml را وقتی آماده شد، ذخیره کنید"
|
3458 |
#~ msgstr "همین ! از وردپرس لذت ببرید"
|
3459 |
|
3460 |
#~ msgid "ACF will create the PHP code to include in your theme."
|
3461 |
+
#~ msgstr "افزونه زمینه های دلخواه پیشرفته کد های PHP برای اضافه کردن در پوسته در اختیاران قرار می دهد"
|
3462 |
+
|
3463 |
+
#~ msgid "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful for including fields in themes."
|
3464 |
+
#~ msgstr "گروه های زمینه ساخته خواهند شد ولی قابل ویرایش <b>نخواهند بود</b>.یعنی در لیست افزونه برای ویرایش دیده نمی شوند. این روش برای قرار دادن زمینه ها در پوسته ها (برای مشتری) مفید است."
|
3465 |
+
|
3466 |
+
#~ msgid "Please note that if you export and register field groups within the same WP, you will see duplicate fields on your edit screens. To fix this, please move the original field group to the trash or remove the code from your functions.php file."
|
3467 |
+
#~ msgstr "لطفا توجه کنید که اگر از هر دو روش ذکر شما در یک وردپرس به صورت هم زمان استفاده کنید، در صفحه ویرایش مطالب، دو بار زمینه ها را خواهید دید. واضح است که برای حل این مشکل یا باید زمینه ها را از افزونه حذف کنید یا کدهای php را از پوسته و احتمالا functions.php حذف کنید."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3468 |
|
3469 |
#~ msgid "Select field group(s) from the list and click \"Create PHP\""
|
3470 |
+
#~ msgstr "گروه های زمینه را از لیست انتخاب کنید و سپس روی دکمه ((برون بری به فرمت PHP)) کلیک کنید"
|
|
|
|
|
3471 |
|
3472 |
#~ msgid "Copy the PHP code generated"
|
3473 |
#~ msgstr "کدهای PHP تولید شده را کپی کنید"
|
3475 |
#~ msgid "Paste into your functions.php file"
|
3476 |
#~ msgstr "در فایل functions.php پوسته خود قرار دهید"
|
3477 |
|
3478 |
+
#~ msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
|
|
3479 |
#~ msgstr "برای فعالسازی افزودنی ها،چند سطر اول کدها را ویرایش و استفاده کنید"
|
3480 |
|
3481 |
#~ msgid "Notes"
|
3484 |
#~ msgid "Include in theme"
|
3485 |
#~ msgstr "قرار دادن در پوسته"
|
3486 |
|
3487 |
+
#~ msgid "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin inside your theme and add the following code to your functions.php file:"
|
3488 |
+
#~ msgstr "افزونه زمینه های دلخواه پیشرفته وردپرس می تواند در داخل یک پوسته قرار بگیرد. برای انجام این کار، افزونه را به کنار پوسته تان انتقال دهید و کدهای زیر را به پرونده functions.php اضافه کنید:"
|
3489 |
+
|
3490 |
+
#~ msgid "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add the following code to your functions.php file <b>before</b> the include_once code:"
|
3491 |
+
#~ msgstr "برای حذف همه رابط های بصری از افزونه زمینه های دلخواه پیشرفته (دیده نشدن افزونه)، می توانید از یک ثابت (کانستنت) برای فعال سازی حالت سبک (lite) استفاده کنید. کد زیر را به پرونده functions.php خود <b>قبل از</b> تابع include_once اضافه کنید:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3492 |
|
3493 |
#~ msgid "Back to export"
|
3494 |
#~ msgstr "بازگشت به برون بری"
|
3499 |
#~ msgid "Activation codes have grown into plugins!"
|
3500 |
#~ msgstr "کدهای فعالسازی در افزونه ها افزایش یافته اند!"
|
3501 |
|
3502 |
+
#~ msgid "Add-ons are now activated by downloading and installing individual plugins. Although these plugins will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in the usual way."
|
3503 |
+
#~ msgstr "افزودنی ها الان با دریافت و نصب افزونه های جداگانه فعال می شوند. با اینکه این افزونه ها در مخزن وردپرس پشتیبانی نخواهند شد، هر افزودنی به صورت معمول به روز رسانی را دریافت خواهد کرد."
|
|
|
|
|
|
|
|
|
|
|
|
|
3504 |
|
3505 |
#~ msgid "All previous Add-ons have been successfully installed"
|
3506 |
#~ msgstr "تمام افزونه های قبلی با موفقیت نصب شده اند"
|
3511 |
#~ msgid "Download your activated Add-ons"
|
3512 |
#~ msgstr "افزودنی های فعال شده ی خود را دانلود کنید"
|
3513 |
|
3514 |
+
#~ msgid "This website does not use premium Add-ons and will not be affected by this change."
|
3515 |
+
#~ msgstr "این سایت از افزودنی های ویژه استفاده نمی کند و تحت تأثیر این تغییر قرار نخواهد گرفت"
|
|
|
|
|
|
|
|
|
3516 |
|
3517 |
#~ msgid "Easier Development"
|
3518 |
#~ msgstr "توسعه آسانتر"
|
3529 |
#~ msgid "Password Field"
|
3530 |
#~ msgstr "زمینه رمزعبور"
|
3531 |
|
3532 |
+
#~ msgid "Creating your own field type has never been easier! Unfortunately, version 3 field types are not compatible with version 4."
|
3533 |
+
#~ msgstr "ساخت نوع زمینه دلخواه برای خودتان هرگز به این آسانی نبوده! متأسفانه، انواع زمینه های نسخه 3 با نسخه 4 سازگار نیستند."
|
|
|
|
|
|
|
|
|
3534 |
|
3535 |
#~ msgid "Migrating your field types is easy, please"
|
3536 |
+
#~ msgstr "انتقال انواع زمینه ها آسان است. پس لطفا افزونه خود را بروزرسانی کنید."
|
|
|
3537 |
|
3538 |
#~ msgid "follow this tutorial"
|
3539 |
#~ msgstr "این آموزش را دنبال کنید"
|
3544 |
#~ msgid "Actions & Filters"
|
3545 |
#~ msgstr "اکشن ها و فیلترها"
|
3546 |
|
3547 |
+
#~ msgid "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
|
3548 |
+
#~ msgstr "همه اکشن ها و فیلترها دارای تغییرات عمده ای شدند تا دلخواه سازی ACF از قبل آسانتر شود"
|
|
|
|
|
|
|
|
|
3549 |
|
3550 |
#~ msgid "read this guide"
|
3551 |
#~ msgstr "لطفا راهنما را مطالعه فرمایید"
|
3565 |
#~ msgid "Database Changes"
|
3566 |
#~ msgstr "تغییرات پایگاه داده"
|
3567 |
|
3568 |
+
#~ msgid "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This means you can roll back to version 3 without any issues."
|
3569 |
+
#~ msgstr "<strong>هیچ تغییری</strong> در پایگاه داده بین نسخه 3 و 4 ایجاد نشده است. این بدین معنی است که شما می توانید بدون هیچ گونه مسئله ای به نسخه 3 برگردید."
|
|
|
|
|
|
|
|
|
|
|
|
|
3570 |
|
3571 |
#~ msgid "Potential Issues"
|
3572 |
#~ msgstr "مسائل بالقوه"
|
3573 |
|
3574 |
+
#~ msgid "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not operate correctly. It is important that you read the full"
|
3575 |
+
#~ msgstr "با توجه به تغییرات افزودنی ها، انواع زمینه ها و اکشن ها/فیلترها، ممکن است سایت شما به درستی عمل نکند. پس لازم است راهنمای کامل "
|
|
|
|
|
|
|
|
|
|
|
3576 |
|
3577 |
#~ msgid "Migrating from v3 to v4"
|
3578 |
#~ msgstr "مهاجرت از نسخه 3 به نسخه 4 را مطالعه کنید"
|
3583 |
#~ msgid "Really Important!"
|
3584 |
#~ msgstr "واقعا مهم!"
|
3585 |
|
3586 |
+
#~ msgid "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
|
3587 |
+
#~ msgstr "اگر شما افزونه زمینه های دلخواه پیشرفته وردپرس را بدون آگاهی از آخرین تغییرات بروزرسانی کردید، لطفا به نسخه قبل برگردید "
|
|
|
|
|
|
|
|
|
3588 |
|
3589 |
#~ msgid "version 3"
|
3590 |
#~ msgstr "نسخه 3"
|
3595 |
#~ msgid "Thank You"
|
3596 |
#~ msgstr "از شما متشکرم"
|
3597 |
|
3598 |
+
#~ msgid "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the support I have received."
|
3599 |
+
#~ msgstr "یک <strong>تشکر بزرگ</strong> از شما و همه کسانی که در تست نسخه 4 بتا به من کمک کردند میکنم. برای تمام کمک ها و پشتیبانی هایی که دریافت کردم نیز از همه شما متشکرم."
|
|
|
|
|
|
|
|
|
|
|
3600 |
|
3601 |
#~ msgid "Without you all, this release would not have been possible!"
|
3602 |
#~ msgstr "بدون همه شما انتشار این نسخه امکان پذیر نبود!"
|
3610 |
#~ msgid "Overview"
|
3611 |
#~ msgstr "بازنگری"
|
3612 |
|
3613 |
+
#~ msgid "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed and updated."
|
3614 |
+
#~ msgstr "پیش از این، قفل همه افزودنی ها از طریق یک کد فعالسازی (خریداری شده از فروشگاه افزودنی ها) باز می شدند.اما در نسخه 4 همه آنها به صورت افزودنی های جداگانه هستند و باید به صورت جدا دریافت، نصب و بروزرسانی شوند."
|
3615 |
+
|
3616 |
+
#~ msgid "This page will assist you in downloading and installing each available Add-on."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3617 |
#~ msgstr "این برگه به شما در دریافت و نصب هر افزودنی موجود کمک خواهد کرد."
|
3618 |
|
3619 |
#~ msgid "Available Add-ons"
|
3620 |
#~ msgstr "افزودنی های موجود"
|
3621 |
|
3622 |
+
#~ msgid "The following Add-ons have been detected as activated on this website."
|
|
|
3623 |
#~ msgstr "افزودنی های زیر به صورت فعال در این سایت شناسایی شده اند"
|
3624 |
|
3625 |
#~ msgid "Installation"
|
3637 |
#~ msgid "Plugins > Add New > Upload"
|
3638 |
#~ msgstr "افزونه ها > افزودن > بارگذاری"
|
3639 |
|
3640 |
+
#~ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
3641 |
+
#~ msgstr "از بارگذار برای انتخاب فایل استفاده کنید. افزودنی خود را (پرونده ZIP) انتخاب و نصب نمایید"
|
|
|
|
|
|
|
3642 |
|
3643 |
+
#~ msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
|
3644 |
+
#~ msgstr "هنگامی که یک افزونه دریافت و نصب شده است، روی لینک (( فعال کردن افزونه)) کلیک کنید"
|
|
|
|
|
|
|
|
|
3645 |
|
3646 |
#~ msgid "The Add-on is now installed and activated!"
|
3647 |
#~ msgstr "افزودنی در حال حاضر نصب و فعال سازی شده است!"
|
3677 |
#~ msgstr "آبجکت تصویر"
|
3678 |
|
3679 |
#~ msgid "Text & HTML entered here will appear inline with the fields"
|
3680 |
+
#~ msgstr "متن و کد HTML وارد شده در اینجا در خط همراه با زمینه نمایش داده خواهد شد"
|
|
|
3681 |
|
3682 |
#~ msgid "Enter your choices one per line"
|
3683 |
#~ msgstr "انتخاب ها را در هر خط وارد کنید"
|
3712 |
#~ msgid "Save format"
|
3713 |
#~ msgstr "فرمت ذخیره"
|
3714 |
|
3715 |
+
#~ msgid "This format will determin the value saved to the database and returned via the API"
|
3716 |
+
#~ msgstr "این فرمت مقدار ذخیره شده در پایگاه داده را مشخص خواهد کرد و از طریق API قابل خواندن است"
|
|
|
|
|
|
|
|
|
3717 |
|
3718 |
#~ msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
3719 |
#~ msgstr "\"yymmdd\" بهترین و پر استفاده ترین فرمت ذخیره است. اطلاعات بیشتر"
|
3724 |
#~ msgid "This format will be seen by the user when entering a value"
|
3725 |
#~ msgstr "این فرمت توسط کاربر در هنگام وارد کردن یک مقدار دیده خواهد شد"
|
3726 |
|
3727 |
+
#~ msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more about"
|
3728 |
+
#~ msgstr "\"dd/mm/yy\" یا \"mm/dd/yy\" پر استفاده ترین قالب های نمایش تاریخ می باشند. اطلاعات بیشتر"
|
|
|
|
|
|
|
|
|
3729 |
|
3730 |
#~ msgid "Field Order"
|
3731 |
#~ msgstr "ترتیب زمینه"
|
lang/acf-fi.mo
CHANGED
Binary file
|
lang/acf-fi.po
CHANGED
@@ -3,14 +3,14 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-09-22 14:17+0300\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"Language: fi\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
@@ -662,7 +662,7 @@ msgstr "Tasaa ylös"
|
|
662 |
|
663 |
#: includes/admin/views/field-group-options.php:63
|
664 |
#: includes/fields/class-acf-field-tab.php:103
|
665 |
-
msgid "Left
|
666 |
msgstr "Tasaa vasemmalle"
|
667 |
|
668 |
#: includes/admin/views/field-group-options.php:70
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-09-22 14:17+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:05+1000\n"
|
7 |
+
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fi\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.1\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
662 |
|
663 |
#: includes/admin/views/field-group-options.php:63
|
664 |
#: includes/fields/class-acf-field-tab.php:103
|
665 |
+
msgid "Left aligned"
|
666 |
msgstr "Tasaa vasemmalle"
|
667 |
|
668 |
#: includes/admin/views/field-group-options.php:70
|
lang/acf-fr_FR.mo
CHANGED
Binary file
|
lang/acf-fr_FR.po
CHANGED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-09-30 10:02+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Dysign <maxime@dysign.fr>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -739,7 +739,7 @@ msgstr "Aligné en haut"
|
|
739 |
|
740 |
#: includes/admin/views/field-group-options.php:63
|
741 |
#: includes/fields/class-acf-field-tab.php:103
|
742 |
-
msgid "Left
|
743 |
msgstr "Aligné à gauche"
|
744 |
|
745 |
# @ acf
|
@@ -2809,8 +2809,8 @@ msgid "Validate Email"
|
|
2809 |
msgstr "Valider l’email"
|
2810 |
|
2811 |
# @ acf
|
2812 |
-
#: includes/forms/form-front.php:103
|
2813 |
-
#: pro/options-page.php:81
|
2814 |
msgid "Update"
|
2815 |
msgstr "Mise à jour"
|
2816 |
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-09-30 10:02+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
+
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Dysign <maxime@dysign.fr>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
+
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
739 |
|
740 |
#: includes/admin/views/field-group-options.php:63
|
741 |
#: includes/fields/class-acf-field-tab.php:103
|
742 |
+
msgid "Left aligned"
|
743 |
msgstr "Aligné à gauche"
|
744 |
|
745 |
# @ acf
|
2809 |
msgstr "Valider l’email"
|
2810 |
|
2811 |
# @ acf
|
2812 |
+
#: includes/forms/form-front.php:103
|
2813 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2814 |
msgid "Update"
|
2815 |
msgstr "Mise à jour"
|
2816 |
|
lang/acf-he_IL.mo
CHANGED
Binary file
|
lang/acf-he_IL.po
CHANGED
@@ -10,7 +10,7 @@ msgstr ""
|
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -660,7 +660,7 @@ msgstr "מיושר למעלה"
|
|
660 |
|
661 |
#: includes/admin/views/field-group-options.php:63
|
662 |
#: includes/fields/class-acf-field-tab.php:103
|
663 |
-
msgid "Left
|
664 |
msgstr "מיושר לשמאל"
|
665 |
|
666 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1282,7 +1282,8 @@ msgstr "יחסי"
|
|
1282 |
msgid "jQuery"
|
1283 |
msgstr "jQuery"
|
1284 |
|
1285 |
-
#: includes/fields.php:149
|
|
|
1286 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1287 |
#: includes/fields/class-acf-field-group.php:474
|
1288 |
#: includes/fields/class-acf-field-radio.php:285
|
@@ -2588,8 +2589,8 @@ msgstr ""
|
|
2588 |
msgid "Validate Email"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: includes/forms/form-front.php:103
|
2592 |
-
#: pro/options-page.php:81
|
2593 |
msgid "Update"
|
2594 |
msgstr "עדכון"
|
2595 |
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.1\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
16 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
660 |
|
661 |
#: includes/admin/views/field-group-options.php:63
|
662 |
#: includes/fields/class-acf-field-tab.php:103
|
663 |
+
msgid "Left aligned"
|
664 |
msgstr "מיושר לשמאל"
|
665 |
|
666 |
#: includes/admin/views/field-group-options.php:70
|
1282 |
msgid "jQuery"
|
1283 |
msgstr "jQuery"
|
1284 |
|
1285 |
+
#: includes/fields.php:149
|
1286 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1287 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1288 |
#: includes/fields/class-acf-field-group.php:474
|
1289 |
#: includes/fields/class-acf-field-radio.php:285
|
2589 |
msgid "Validate Email"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: includes/forms/form-front.php:103
|
2593 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2594 |
msgid "Update"
|
2595 |
msgstr "עדכון"
|
2596 |
|
lang/acf-hu_HU.mo
CHANGED
Binary file
|
lang/acf-hu_HU.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:26+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: hu_HU\n"
|
@@ -13,9 +13,8 @@ msgstr ""
|
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
-
"
|
18 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
"X-Poedit-WPHeader: acf.php\n"
|
21 |
"X-Textdomain-Support: yes\n"
|
@@ -34,8 +33,7 @@ msgstr ""
|
|
34 |
msgid "Field Group"
|
35 |
msgstr "Mezőcsoport"
|
36 |
|
37 |
-
#: acf.php:207 acf.php:239 admin/admin.php:62
|
38 |
-
#: pro/fields/flexible-content.php:517
|
39 |
msgid "Add New"
|
40 |
msgstr "Új hozzáadása"
|
41 |
|
@@ -67,8 +65,7 @@ msgstr "Nincsenek mezőcsoportok"
|
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr "Nem található mezőcsoport a lomtárban."
|
69 |
|
70 |
-
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213
|
71 |
-
#: admin/field-groups.php:519
|
72 |
msgid "Fields"
|
73 |
msgstr "Mezők"
|
74 |
|
@@ -84,8 +81,7 @@ msgstr "Mező hozzáadása"
|
|
84 |
msgid "Edit Field"
|
85 |
msgstr "Mező szerkesztése"
|
86 |
|
87 |
-
#: acf.php:242 admin/views/field-group-fields.php:18
|
88 |
-
#: admin/views/settings-info.php:111
|
89 |
msgid "New Field"
|
90 |
msgstr "Új mező"
|
91 |
|
@@ -169,10 +165,8 @@ msgstr "A mezőcsoport címét kötelező megadni"
|
|
169 |
msgid "copy"
|
170 |
msgstr "másolat"
|
171 |
|
172 |
-
#: admin/field-group.php:181
|
173 |
-
#: admin/views/field-group-field-conditional-logic.php:
|
174 |
-
#: admin/views/field-group-field-conditional-logic.php:162
|
175 |
-
#: admin/views/field-group-locations.php:23
|
176 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
177 |
msgid "or"
|
178 |
msgstr "vagy"
|
@@ -261,9 +255,8 @@ msgstr ""
|
|
261 |
msgid "Super Admin"
|
262 |
msgstr "Szuper admin"
|
263 |
|
264 |
-
#: admin/field-group.php:818 admin/field-group.php:826
|
265 |
-
#: admin/field-group.php:
|
266 |
-
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
267 |
#: fields/image.php:226 pro/fields/gallery.php:653
|
268 |
msgid "All"
|
269 |
msgstr "Összes"
|
@@ -337,8 +330,8 @@ msgstr ""
|
|
337 |
msgid "Title"
|
338 |
msgstr "Cím"
|
339 |
|
340 |
-
#: admin/field-groups.php:517 admin/views/field-group-options.php:98
|
341 |
-
#: admin/views/update-network.php:
|
342 |
msgid "Description"
|
343 |
msgstr ""
|
344 |
|
@@ -346,8 +339,7 @@ msgstr ""
|
|
346 |
msgid "Status"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin/field-groups.php:616 admin/settings-info.php:76
|
350 |
-
#: pro/admin/views/settings-updates.php:111
|
351 |
msgid "Changelog"
|
352 |
msgstr "Változások (changelog)"
|
353 |
|
@@ -367,8 +359,7 @@ msgstr "Források"
|
|
367 |
msgid "Getting Started"
|
368 |
msgstr "Kezdjük el"
|
369 |
|
370 |
-
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73
|
371 |
-
#: pro/admin/views/settings-updates.php:17
|
372 |
msgid "Updates"
|
373 |
msgstr "Frissítések"
|
374 |
|
@@ -404,8 +395,8 @@ msgstr "Szerző"
|
|
404 |
msgid "Duplicate this item"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/field-groups.php:673 admin/field-groups.php:685
|
408 |
-
#:
|
409 |
msgid "Duplicate"
|
410 |
msgstr "Duplikálás"
|
411 |
|
@@ -438,8 +429,7 @@ msgstr "Információ"
|
|
438 |
msgid "What's New"
|
439 |
msgstr "Újdonságok"
|
440 |
|
441 |
-
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9
|
442 |
-
#: admin/views/settings-tools.php:31
|
443 |
msgid "Tools"
|
444 |
msgstr ""
|
445 |
|
@@ -470,12 +460,10 @@ msgstr "<b>Sikeres</b>. Az importáló eszköz %s mezőcsoportot adott hozzá: %
|
|
470 |
|
471 |
#: admin/settings-tools.php:332
|
472 |
#, php-format
|
473 |
-
msgid ""
|
474 |
-
"<b>Warning</b>. Import tool detected %s field groups already exist and have "
|
475 |
-
"been ignored: %s"
|
476 |
msgstr ""
|
477 |
-
"<b>Figyelmeztetés</b>. Az importáló eszköz észlelte, hogy %s mezőcsoport már "
|
478 |
-
"
|
479 |
|
480 |
#: admin/update.php:113
|
481 |
msgid "Upgrade ACF"
|
@@ -497,25 +485,20 @@ msgstr ""
|
|
497 |
msgid "Conditional Logic"
|
498 |
msgstr "Logikai feltételek"
|
499 |
|
500 |
-
#: admin/views/field-group-field-conditional-logic.php:40
|
501 |
-
#:
|
502 |
-
#: fields/
|
503 |
-
#: fields/
|
504 |
-
#: fields/
|
505 |
-
#: fields/
|
506 |
-
#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
507 |
-
#: fields/user.php:471 fields/wysiwyg.php:384
|
508 |
-
#: pro/admin/views/settings-updates.php:93
|
509 |
msgid "Yes"
|
510 |
msgstr "Igen"
|
511 |
|
512 |
-
#: admin/views/field-group-field-conditional-logic.php:41
|
513 |
-
#:
|
514 |
-
#: fields/
|
515 |
-
#: fields/
|
516 |
-
#: fields/
|
517 |
-
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771
|
518 |
-
#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
519 |
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
520 |
#: pro/admin/views/settings-updates.php:103
|
521 |
msgid "No"
|
@@ -525,23 +508,19 @@ msgstr "Nem"
|
|
525 |
msgid "Show this field if"
|
526 |
msgstr "Mező megjelenítése, ha"
|
527 |
|
528 |
-
#: admin/views/field-group-field-conditional-logic.php:111
|
529 |
-
#: admin/views/field-group-locations.php:88
|
530 |
msgid "is equal to"
|
531 |
msgstr "egyenlő"
|
532 |
|
533 |
-
#: admin/views/field-group-field-conditional-logic.php:112
|
534 |
-
#: admin/views/field-group-locations.php:89
|
535 |
msgid "is not equal to"
|
536 |
msgstr "nem egyenlő"
|
537 |
|
538 |
-
#: admin/views/field-group-field-conditional-logic.php:149
|
539 |
-
#: admin/views/field-group-locations.php:118
|
540 |
msgid "and"
|
541 |
msgstr "és"
|
542 |
|
543 |
-
#: admin/views/field-group-field-conditional-logic.php:164
|
544 |
-
#: admin/views/field-group-locations.php:133
|
545 |
msgid "Add rule group"
|
546 |
msgstr "Szabálycsoport hozzáadása"
|
547 |
|
@@ -573,8 +552,7 @@ msgstr "Mező törlése"
|
|
573 |
msgid "Delete"
|
574 |
msgstr "Törlés"
|
575 |
|
576 |
-
#: admin/views/field-group-field.php:68 fields/oembed.php:212
|
577 |
-
#: fields/taxonomy.php:886
|
578 |
msgid "Error"
|
579 |
msgstr "Hiba"
|
580 |
|
@@ -600,9 +578,7 @@ msgstr "Mezőnév"
|
|
600 |
|
601 |
#: admin/views/field-group-field.php:94
|
602 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
603 |
-
msgstr ""
|
604 |
-
"Egyetlen szó, szóközök és ékezetek nélkül, alulvonás és kötőjel használata "
|
605 |
-
"megengedett"
|
606 |
|
607 |
#: admin/views/field-group-field.php:105
|
608 |
msgid "Field Type"
|
@@ -657,12 +633,9 @@ msgid "Type"
|
|
657 |
msgstr "Típus"
|
658 |
|
659 |
#: admin/views/field-group-fields.php:44
|
660 |
-
msgid ""
|
661 |
-
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
662 |
-
"first field."
|
663 |
msgstr ""
|
664 |
-
"Nincsenek mezők. Kattintsunk a <strong>+Mező hozzáadása</strong> gombra az "
|
665 |
-
"első mező létrehozásához."
|
666 |
|
667 |
#: admin/views/field-group-fields.php:51
|
668 |
msgid "Drag and drop to reorder"
|
@@ -677,19 +650,14 @@ msgid "Rules"
|
|
677 |
msgstr "Szabályok"
|
678 |
|
679 |
#: admin/views/field-group-locations.php:6
|
680 |
-
msgid ""
|
681 |
-
"
|
682 |
-
"advanced custom fields"
|
683 |
-
msgstr ""
|
684 |
-
"Hozzunk létre szabályokat, hogy melyik szerkesztőképernyők használják a "
|
685 |
-
"mezőcsoportot"
|
686 |
|
687 |
#: admin/views/field-group-locations.php:21
|
688 |
msgid "Show this field group if"
|
689 |
msgstr "Mezőcsoport megjelenítése, ha"
|
690 |
|
691 |
-
#: admin/views/field-group-locations.php:41
|
692 |
-
#: admin/views/field-group-locations.php:47
|
693 |
msgid "Post"
|
694 |
msgstr "Bejegyzés"
|
695 |
|
@@ -713,8 +681,7 @@ msgstr "Bejegyzés-kategória"
|
|
713 |
msgid "Post Taxonomy"
|
714 |
msgstr "Bejegyzés-osztályozás (taxonómia)"
|
715 |
|
716 |
-
#: admin/views/field-group-locations.php:49
|
717 |
-
#: admin/views/field-group-locations.php:53
|
718 |
msgid "Page"
|
719 |
msgstr "Oldal"
|
720 |
|
@@ -807,7 +774,7 @@ msgid "Top aligned"
|
|
807 |
msgstr "Fent"
|
808 |
|
809 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
810 |
-
msgid "Left
|
811 |
msgstr "Balra"
|
812 |
|
813 |
#: admin/views/field-group-options.php:72
|
@@ -844,8 +811,8 @@ msgstr ""
|
|
844 |
|
845 |
#: admin/views/field-group-options.php:110
|
846 |
msgid ""
|
847 |
-
"If multiple field groups appear on an edit screen, the first field group's "
|
848 |
-
"
|
849 |
msgstr ""
|
850 |
|
851 |
#: admin/views/field-group-options.php:117
|
@@ -918,12 +885,8 @@ msgstr "Üdvözlet! Itt az Advanced Custom Fields"
|
|
918 |
|
919 |
#: admin/views/settings-info.php:10
|
920 |
#, php-format
|
921 |
-
msgid ""
|
922 |
-
"
|
923 |
-
"hope you like it."
|
924 |
-
msgstr ""
|
925 |
-
"Köszönjük a frissítést! Az ACF %s nagyobb és jobb, mint valaha. Reméljük, "
|
926 |
-
"tetszeni fog!"
|
927 |
|
928 |
#: admin/views/settings-info.php:23
|
929 |
msgid "A smoother custom field experience"
|
@@ -935,13 +898,11 @@ msgstr "Továbbfejlesztett használhatóság"
|
|
935 |
|
936 |
#: admin/views/settings-info.php:29
|
937 |
msgid ""
|
938 |
-
"Including the popular Select2 library has improved both usability and speed "
|
939 |
-
"
|
940 |
-
"and select."
|
941 |
msgstr ""
|
942 |
-
"A népszerű Select2 könyvtár bevonása számos mezőtípusnál (például bejegyzés "
|
943 |
-
"
|
944 |
-
"használhatóságot és a sebességet."
|
945 |
|
946 |
#: admin/views/settings-info.php:33
|
947 |
msgid "Improved Design"
|
@@ -949,13 +910,11 @@ msgstr "Továbbfejlesztett megjelenés"
|
|
949 |
|
950 |
#: admin/views/settings-info.php:34
|
951 |
msgid ""
|
952 |
-
"Many fields have undergone a visual refresh to make ACF look better than "
|
953 |
-
"
|
954 |
-
"(new) fields!"
|
955 |
msgstr ""
|
956 |
-
"Számos mező vizuálisan megújult, hogy az ACF jobban nézzen ki, mint valaha. "
|
957 |
-
"
|
958 |
-
"esetében."
|
959 |
|
960 |
#: admin/views/settings-info.php:38
|
961 |
msgid "Improved Data"
|
@@ -963,13 +922,11 @@ msgstr "Továbbfejlesztett adatszerkezet"
|
|
963 |
|
964 |
#: admin/views/settings-info.php:39
|
965 |
msgid ""
|
966 |
-
"Redesigning the data architecture has allowed sub fields to live "
|
967 |
-
"
|
968 |
-
"and out of parent fields!"
|
969 |
msgstr ""
|
970 |
-
"Az adatszerkezet újratervezésének köszönhetően az almezők függetlenek lettek "
|
971 |
-
"
|
972 |
-
"más mezőkbe, vagy azokon kívülre helyezzük át."
|
973 |
|
974 |
#: admin/views/settings-info.php:45
|
975 |
msgid "Goodbye Add-ons. Hello PRO"
|
@@ -980,20 +937,19 @@ msgid "Introducing ACF PRO"
|
|
980 |
msgstr "Az ACF PRO bemutatása"
|
981 |
|
982 |
#: admin/views/settings-info.php:51
|
983 |
-
msgid ""
|
984 |
-
"We're changing the way premium functionality is delivered in an exciting way!"
|
985 |
msgstr ""
|
986 |
|
987 |
#: admin/views/settings-info.php:52
|
988 |
#, php-format
|
989 |
msgid ""
|
990 |
-
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
991 |
-
"
|
992 |
-
"
|
993 |
msgstr ""
|
994 |
-
"Az új <a href=\"%s\">ACF PRO változat</a> tartalmazza mind a négy korábbi "
|
995 |
-
"
|
996 |
-
"
|
997 |
|
998 |
#: admin/views/settings-info.php:56
|
999 |
msgid "Powerful Features"
|
@@ -1001,13 +957,11 @@ msgstr "Hatékony szolgáltatások"
|
|
1001 |
|
1002 |
#: admin/views/settings-info.php:57
|
1003 |
msgid ""
|
1004 |
-
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
1005 |
-
"
|
1006 |
-
"options pages!"
|
1007 |
msgstr ""
|
1008 |
-
"Az ACF PRO változat olyan fantasztikus szolgáltatásokat kínál, mint "
|
1009 |
-
"
|
1010 |
-
"segítségével egyéni beállítás-oldalak is létrehozhatók!"
|
1011 |
|
1012 |
#: admin/views/settings-info.php:58
|
1013 |
#, php-format
|
@@ -1021,22 +975,21 @@ msgstr "Egyszerű frissítés"
|
|
1021 |
#: admin/views/settings-info.php:63
|
1022 |
#, php-format
|
1023 |
msgid ""
|
1024 |
-
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
1025 |
-
"
|
1026 |
msgstr ""
|
1027 |
-
"A még könnyebb frissítés érdekében csak <a href=\"%s\">jelenkezzünk be a "
|
1028 |
-
"
|
1029 |
|
1030 |
#: admin/views/settings-info.php:64
|
1031 |
#, php-format
|
1032 |
msgid ""
|
1033 |
-
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
1034 |
-
"
|
1035 |
-
"\">help desk</a>"
|
1036 |
msgstr ""
|
1037 |
-
"A felmerülő kérdések megválaszolására egy <a href=\"%s\">frissítési "
|
1038 |
-
"
|
1039 |
-
"
|
1040 |
|
1041 |
#: admin/views/settings-info.php:72
|
1042 |
msgid "Under the Hood"
|
@@ -1056,9 +1009,7 @@ msgstr "Több AJAX"
|
|
1056 |
|
1057 |
#: admin/views/settings-info.php:83
|
1058 |
msgid "More fields use AJAX powered search to speed up page loading"
|
1059 |
-
msgstr ""
|
1060 |
-
"Több mező használ AJAX-alapú keresést az oldal gyorsabb betöltésének "
|
1061 |
-
"érdekében."
|
1062 |
|
1063 |
#: admin/views/settings-info.php:87
|
1064 |
msgid "Local JSON"
|
@@ -1073,12 +1024,8 @@ msgid "Better version control"
|
|
1073 |
msgstr "Jobb verziókezelés"
|
1074 |
|
1075 |
#: admin/views/settings-info.php:95
|
1076 |
-
msgid ""
|
1077 |
-
"
|
1078 |
-
"controlled"
|
1079 |
-
msgstr ""
|
1080 |
-
"Az új JSON autoexport szolgáltatás lehetővé teszi a mezőbeállítások "
|
1081 |
-
"verziókezelését."
|
1082 |
|
1083 |
#: admin/views/settings-info.php:99
|
1084 |
msgid "Swapped XML for JSON"
|
@@ -1086,9 +1033,7 @@ msgstr "XML helyett JSON"
|
|
1086 |
|
1087 |
#: admin/views/settings-info.php:100
|
1088 |
msgid "Import / Export now uses JSON in favour of XML"
|
1089 |
-
msgstr ""
|
1090 |
-
"Az importálás és exportálás JSON formátumban történik a korábbi XML megoldás "
|
1091 |
-
"helyett."
|
1092 |
|
1093 |
#: admin/views/settings-info.php:104
|
1094 |
msgid "New Forms"
|
@@ -1096,9 +1041,7 @@ msgstr "Új űrlapok"
|
|
1096 |
|
1097 |
#: admin/views/settings-info.php:105
|
1098 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1099 |
-
msgstr ""
|
1100 |
-
"A mezők már hozzászólásokhoz, widgetekhez és felhasználói adatlapokhoz is "
|
1101 |
-
"hozzárendelhetők."
|
1102 |
|
1103 |
#: admin/views/settings-info.php:112
|
1104 |
msgid "A new field for embedding content has been added"
|
@@ -1117,12 +1060,8 @@ msgid "New Settings"
|
|
1117 |
msgstr "Új beállítások"
|
1118 |
|
1119 |
#: admin/views/settings-info.php:122
|
1120 |
-
msgid ""
|
1121 |
-
"
|
1122 |
-
"placement"
|
1123 |
-
msgstr ""
|
1124 |
-
"A mezőcsoport beállításai kiegészültek a mezőfeliratok és útmutatók "
|
1125 |
-
"elhelyezési lehetőségeivel."
|
1126 |
|
1127 |
#: admin/views/settings-info.php:128
|
1128 |
msgid "Better Front End Forms"
|
@@ -1131,8 +1070,7 @@ msgstr "Jobb felhasználó oldali űrlapok"
|
|
1131 |
#: admin/views/settings-info.php:129
|
1132 |
msgid "acf_form() can now create a new post on submission"
|
1133 |
msgstr ""
|
1134 |
-
"Az acf_form() már képes új bejegyzést létrehozni egy felhasználó oldali "
|
1135 |
-
"(front end) űrlap elküldésekor."
|
1136 |
|
1137 |
#: admin/views/settings-info.php:133
|
1138 |
msgid "Better Validation"
|
@@ -1140,32 +1078,24 @@ msgstr "Jobb ellenőrzés és érvényesítés"
|
|
1140 |
|
1141 |
#: admin/views/settings-info.php:134
|
1142 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1143 |
-
msgstr ""
|
1144 |
-
"Az űrlapok érvényesítése már nem kizárólag JS által, hanem PHP + AJAX "
|
1145 |
-
"megoldással történik."
|
1146 |
|
1147 |
#: admin/views/settings-info.php:138
|
1148 |
msgid "Relationship Field"
|
1149 |
msgstr "Kapcsolat mezőtípus"
|
1150 |
|
1151 |
#: admin/views/settings-info.php:139
|
1152 |
-
msgid ""
|
1153 |
-
"
|
1154 |
-
msgstr ""
|
1155 |
-
"Új mezőbeállítás szűrők számára (keresés, bejegyzéstípus, osztályozás) a "
|
1156 |
-
"kapcsolat mezőtípusnál."
|
1157 |
|
1158 |
#: admin/views/settings-info.php:145
|
1159 |
msgid "Moving Fields"
|
1160 |
msgstr "Mezők áthelyezése"
|
1161 |
|
1162 |
#: admin/views/settings-info.php:146
|
1163 |
-
msgid ""
|
1164 |
-
"New field group functionality allows you to move a field between groups & "
|
1165 |
-
"parents"
|
1166 |
msgstr ""
|
1167 |
-
"A mezőcsoportok új szolgáltatásaival az egyes mezők csoportok és szülőmezők "
|
1168 |
-
"között is mozgathatók."
|
1169 |
|
1170 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1171 |
msgid "Page Link"
|
@@ -1173,21 +1103,16 @@ msgstr "Oldalhivatkozás"
|
|
1173 |
|
1174 |
#: admin/views/settings-info.php:151
|
1175 |
msgid "New archives group in page_link field selection"
|
1176 |
-
msgstr ""
|
1177 |
-
"Új 'Archívumok' csoport az oldalhivatkozás mezőtípus választási "
|
1178 |
-
"lehetőségeinél."
|
1179 |
|
1180 |
#: admin/views/settings-info.php:155
|
1181 |
msgid "Better Options Pages"
|
1182 |
msgstr "Jobb beállítás oldalak"
|
1183 |
|
1184 |
#: admin/views/settings-info.php:156
|
1185 |
-
msgid ""
|
1186 |
-
"New functions for options page allow creation of both parent and child menu "
|
1187 |
-
"pages"
|
1188 |
msgstr ""
|
1189 |
-
"A beállítás oldalakhoz kapcsolódó új funkciók segítségével szülő- és "
|
1190 |
-
"gyermekoldalak is létrehozhatók."
|
1191 |
|
1192 |
#: admin/views/settings-info.php:165
|
1193 |
#, php-format
|
@@ -1201,17 +1126,15 @@ msgstr "Mezőcsoport exportálása PHP kódba"
|
|
1201 |
#: admin/views/settings-tools-export.php:17
|
1202 |
#, fuzzy
|
1203 |
msgid ""
|
1204 |
-
"The following code can be used to register a local version of the selected "
|
1205 |
-
"field group
|
1206 |
-
"
|
1207 |
-
"
|
1208 |
-
|
1209 |
-
|
1210 |
-
"
|
1211 |
-
"
|
1212 |
-
"
|
1213 |
-
"lehetősége. Alkalmazásához egyszerűen másoljuk be a kódot a sablonhoz "
|
1214 |
-
"tartozó functions.php fájlba."
|
1215 |
|
1216 |
#: admin/views/settings-tools.php:5
|
1217 |
msgid "Select Field Groups"
|
@@ -1223,15 +1146,13 @@ msgstr "Mezőcsoportok exportálása"
|
|
1223 |
|
1224 |
#: admin/views/settings-tools.php:38
|
1225 |
msgid ""
|
1226 |
-
"Select the field groups you would like to export and then select your export "
|
1227 |
-
"
|
1228 |
-
"
|
1229 |
-
"code which you can place in your theme."
|
1230 |
msgstr ""
|
1231 |
-
"Válasszuk ki az exportálni kívánt mezőcsoportokat, majd az exportálás "
|
1232 |
-
"
|
1233 |
-
"
|
1234 |
-
"létre, amelyet beilleszthetünk a sablonunkba."
|
1235 |
|
1236 |
#: admin/views/settings-tools.php:50
|
1237 |
msgid "Download export file"
|
@@ -1247,12 +1168,11 @@ msgstr "Mezőcsoportok importálása"
|
|
1247 |
|
1248 |
#: admin/views/settings-tools.php:67
|
1249 |
msgid ""
|
1250 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
1251 |
-
"
|
1252 |
msgstr ""
|
1253 |
-
"Válasszuk ki az importálni kívánt Advanced Custom Fields JSON fájlt. A "
|
1254 |
-
"
|
1255 |
-
"mezőcsoportokat."
|
1256 |
|
1257 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1258 |
msgid "Select File"
|
@@ -1268,8 +1188,8 @@ msgstr ""
|
|
1268 |
|
1269 |
#: admin/views/update-network.php:10
|
1270 |
msgid ""
|
1271 |
-
"The following sites require a DB upgrade. Check the ones you want to update "
|
1272 |
-
"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
@@ -1291,11 +1211,11 @@ msgstr ""
|
|
1291 |
|
1292 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1293 |
msgid ""
|
1294 |
-
"It is strongly recommended that you backup your database before proceeding. "
|
1295 |
-
"
|
1296 |
msgstr ""
|
1297 |
-
"A folytatás előtt ajánlatos biztonsági mentést készíteni az adatbázisról. "
|
1298 |
-
"
|
1299 |
|
1300 |
#: admin/views/update-network.php:157
|
1301 |
msgid "Upgrade complete"
|
@@ -1317,11 +1237,10 @@ msgstr "Köszönjük a frissítést az %s %s verzióra!"
|
|
1317 |
|
1318 |
#: admin/views/update-notice.php:25
|
1319 |
msgid ""
|
1320 |
-
"Before you start using the new awesome features, please update your database "
|
1321 |
-
"to the newest version."
|
1322 |
msgstr ""
|
1323 |
-
"Mielőtt használni kezdenénk az elképesztő új szolgáltatásokat, frissítsük az "
|
1324 |
-
"
|
1325 |
|
1326 |
#: admin/views/update.php:12
|
1327 |
msgid "Reading upgrade tasks..."
|
@@ -1425,8 +1344,8 @@ msgstr "Relációs"
|
|
1425 |
msgid "jQuery"
|
1426 |
msgstr "jQuery"
|
1427 |
|
1428 |
-
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
1429 |
-
#: pro/fields/
|
1430 |
msgid "Layout"
|
1431 |
msgstr "Tartalom elrendezés"
|
1432 |
|
@@ -1482,18 +1401,15 @@ msgstr "Minden választási lehetőséget új sorba kell írni"
|
|
1482 |
|
1483 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389
|
1484 |
msgid "For more control, you may specify both a value and label like this:"
|
1485 |
-
msgstr ""
|
1486 |
-
"A testreszabhatóság érdekében az érték és a felirat is meghatározható a "
|
1487 |
-
"következő módon:"
|
1488 |
|
1489 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389
|
1490 |
msgid "red : Red"
|
1491 |
msgstr "voros : Vörös"
|
1492 |
|
1493 |
-
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124
|
1494 |
-
#: fields/
|
1495 |
-
#: fields/
|
1496 |
-
#: fields/url.php:117 fields/wysiwyg.php:345
|
1497 |
msgid "Default Value"
|
1498 |
msgstr "Alapértelmezett érték"
|
1499 |
|
@@ -1573,39 +1489,34 @@ msgstr "Hét kezdőnapja"
|
|
1573 |
msgid "Email"
|
1574 |
msgstr "Email (email)"
|
1575 |
|
1576 |
-
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
1577 |
-
#: fields/
|
1578 |
-
#: fields/wysiwyg.php:346
|
1579 |
msgid "Appears when creating a new post"
|
1580 |
msgstr "Új bejegyzés létrehozásánál"
|
1581 |
|
1582 |
-
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
1583 |
-
#: fields/
|
1584 |
msgid "Placeholder Text"
|
1585 |
msgstr "Helyőrző szöveg"
|
1586 |
|
1587 |
-
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
1588 |
-
#: fields/
|
1589 |
msgid "Appears within the input"
|
1590 |
msgstr "Beviteli mezőben jelenik meg"
|
1591 |
|
1592 |
-
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
1593 |
-
#: fields/text.php:166
|
1594 |
msgid "Prepend"
|
1595 |
msgstr "Előtag"
|
1596 |
|
1597 |
-
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
1598 |
-
#: fields/text.php:167
|
1599 |
msgid "Appears before the input"
|
1600 |
msgstr "Beviteli mező előtt jelenik meg"
|
1601 |
|
1602 |
-
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
1603 |
-
#: fields/text.php:175
|
1604 |
msgid "Append"
|
1605 |
msgstr "Utótag"
|
1606 |
|
1607 |
-
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
1608 |
-
#: fields/text.php:176
|
1609 |
msgid "Appears after the input"
|
1610 |
msgstr "Beviteli mező után jelenik meg"
|
1611 |
|
@@ -1647,8 +1558,7 @@ msgstr "Visszaadott érték"
|
|
1647 |
|
1648 |
#: fields/file.php:215 fields/image.php:196
|
1649 |
msgid "Specify the returned value on front end"
|
1650 |
-
msgstr ""
|
1651 |
-
"Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét"
|
1652 |
|
1653 |
#: fields/file.php:220
|
1654 |
msgid "File Array"
|
@@ -1682,8 +1592,8 @@ msgstr ""
|
|
1682 |
msgid "Restrict which files can be uploaded"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
1686 |
-
#:
|
1687 |
msgid "File size"
|
1688 |
msgstr ""
|
1689 |
|
@@ -1739,8 +1649,8 @@ msgstr "Nagyítás"
|
|
1739 |
msgid "Set the initial zoom level"
|
1740 |
msgstr "Kezdeti nagyítási szint"
|
1741 |
|
1742 |
-
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279
|
1743 |
-
#:
|
1744 |
msgid "Height"
|
1745 |
msgstr "Magasság"
|
1746 |
|
@@ -1800,13 +1710,12 @@ msgstr "Előnézeti méret"
|
|
1800 |
msgid "Shown when entering data"
|
1801 |
msgstr "Adatok bevitelénél jelenik meg"
|
1802 |
|
1803 |
-
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662
|
1804 |
-
#: pro/fields/gallery.php:695
|
1805 |
msgid "Restrict which images can be uploaded"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251
|
1809 |
-
#: pro/fields/gallery.php:
|
1810 |
msgid "Width"
|
1811 |
msgstr ""
|
1812 |
|
@@ -1876,33 +1785,28 @@ msgstr "Beágyazási méret"
|
|
1876 |
msgid "Archives"
|
1877 |
msgstr "Archívumok"
|
1878 |
|
1879 |
-
#: fields/page_link.php:535 fields/post_object.php:401
|
1880 |
-
#: fields/relationship.php:690
|
1881 |
msgid "Filter by Post Type"
|
1882 |
msgstr "Szűrés bejegyzéstípusra"
|
1883 |
|
1884 |
-
#: fields/page_link.php:543 fields/post_object.php:409
|
1885 |
-
#: fields/relationship.php:698
|
1886 |
msgid "All post types"
|
1887 |
msgstr "Minden bejegyzéstípus"
|
1888 |
|
1889 |
-
#: fields/page_link.php:549 fields/post_object.php:415
|
1890 |
-
#: fields/relationship.php:704
|
1891 |
msgid "Filter by Taxonomy"
|
1892 |
msgstr "Szűrés osztályozásra"
|
1893 |
|
1894 |
-
#: fields/page_link.php:557 fields/post_object.php:423
|
1895 |
-
#: fields/relationship.php:712
|
1896 |
msgid "All taxonomies"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406
|
1900 |
-
#: fields/
|
1901 |
msgid "Allow Null?"
|
1902 |
msgstr "Üres mező engedélyezése"
|
1903 |
|
1904 |
-
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420
|
1905 |
-
#: fields/user.php:466
|
1906 |
msgid "Select multiple values?"
|
1907 |
msgstr "Többszörös választás"
|
1908 |
|
@@ -1910,8 +1814,7 @@ msgstr "Többszörös választás"
|
|
1910 |
msgid "Password"
|
1911 |
msgstr "Jelszó (password)"
|
1912 |
|
1913 |
-
#: fields/post_object.php:36 fields/post_object.php:462
|
1914 |
-
#: fields/relationship.php:769
|
1915 |
msgid "Post Object"
|
1916 |
msgstr "Bejegyzés objektum (post object)"
|
1917 |
|
@@ -2021,28 +1924,23 @@ msgstr "Figyelmeztetés"
|
|
2021 |
|
2022 |
#: fields/tab.php:133
|
2023 |
msgid ""
|
2024 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
2025 |
-
"field
|
2026 |
msgstr ""
|
2027 |
-
"Táblázat stílusú ismétlő csoportmezőhöz vagy rugalmas tartalomhoz rendelve a "
|
2028 |
-
"
|
2029 |
|
2030 |
#: fields/tab.php:146
|
2031 |
-
msgid ""
|
2032 |
-
|
2033 |
-
"together."
|
2034 |
-
msgstr ""
|
2035 |
-
"Használjunk lapokat a szerkesztőképernyők tartalmának rendezéséhez és a "
|
2036 |
-
"mezők csoportosításához."
|
2037 |
|
2038 |
#: fields/tab.php:148
|
2039 |
msgid ""
|
2040 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2041 |
-
"
|
2042 |
-
"heading."
|
2043 |
msgstr ""
|
2044 |
-
"A lap típusú mezőt követő összes mező egy csoportba kerül (egy újabb lap "
|
2045 |
-
"
|
2046 |
|
2047 |
#: fields/tab.php:155
|
2048 |
msgid "Placement"
|
@@ -2312,11 +2210,10 @@ msgstr "Licenc"
|
|
2312 |
|
2313 |
#: pro/admin/views/settings-updates.php:24
|
2314 |
msgid ""
|
2315 |
-
"To unlock updates, please enter your license key below. If you don't have a "
|
2316 |
-
"licence key, please see"
|
2317 |
msgstr ""
|
2318 |
-
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot az alábbi beviteli "
|
2319 |
-
"
|
2320 |
|
2321 |
#: pro/admin/views/settings-updates.php:24
|
2322 |
msgid "details & pricing"
|
@@ -2365,13 +2262,11 @@ msgstr "Beállítások"
|
|
2365 |
#: pro/core/updates.php:186
|
2366 |
#, php-format
|
2367 |
msgid ""
|
2368 |
-
"To enable updates, please enter your license key on the <a href=\"%s"
|
2369 |
-
"
|
2370 |
-
"\">details & pricing</a>"
|
2371 |
msgstr ""
|
2372 |
-
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a <a href=\"%s"
|
2373 |
-
"
|
2374 |
-
"át a licencek <a href=\"%s\">részleteit és árait</a>."
|
2375 |
|
2376 |
#: pro/fields/flexible-content.php:36
|
2377 |
msgid "Flexible Content"
|
@@ -2409,8 +2304,7 @@ msgstr "Ennél a mezőnél legfeljebb {max} {identifier} adható hozzá."
|
|
2409 |
# Revision suggested
|
2410 |
#: pro/fields/flexible-content.php:50
|
2411 |
msgid "This field requires at least {min} {label} {identifier}"
|
2412 |
-
msgstr ""
|
2413 |
-
"Ennél a mezőnél legalább {min} {label} {identifier} hozzáadása szükséges"
|
2414 |
|
2415 |
# Revision suggested
|
2416 |
#: pro/fields/flexible-content.php:51
|
@@ -2567,8 +2461,7 @@ msgstr "Ismétlő csoportmező (repeater)"
|
|
2567 |
|
2568 |
#: pro/fields/repeater.php:46
|
2569 |
msgid "Minimum rows reached ({min} rows)"
|
2570 |
-
msgstr ""
|
2571 |
-
"Nem érjük el a sorok minimális számát (legalább {min} sort hozzá kell adni)"
|
2572 |
|
2573 |
#: pro/fields/repeater.php:47
|
2574 |
msgid "Maximum rows reached ({max} rows)"
|
@@ -2668,43 +2561,33 @@ msgstr ""
|
|
2668 |
#~ msgstr "Bejelentkezett felhasználó szerepköre"
|
2669 |
|
2670 |
#~ msgid "Field groups are created in order <br />from lowest to highest"
|
2671 |
-
#~ msgstr ""
|
2672 |
-
#~ "Az egyes mezőcsoportok az alacsonyabbtól a magasabb érték felé haladva "
|
2673 |
-
#~ "jönnek létre"
|
2674 |
|
2675 |
#~ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
2676 |
-
#~ msgstr ""
|
2677 |
-
#~ "<b>Válasszuk ki</b> a szerkesztőképernyőn <b>elrejteni</b> kívánt elemeket"
|
2678 |
|
2679 |
#~ msgid ""
|
2680 |
-
#~ "If multiple field groups appear on an edit screen, the first field "
|
2681 |
-
#~ "
|
2682 |
#~ msgstr ""
|
2683 |
-
#~ "Ha a szerkesztőképernyőn több mezőcsoport is megjelenik, úgy a legelső "
|
2684 |
-
#~ "
|
2685 |
|
2686 |
-
#~ msgid ""
|
2687 |
-
#~ "We're changing the way premium functionality is delivered in an exiting "
|
2688 |
-
#~ "way!"
|
2689 |
#~ msgstr "A prémium szolgáltatások immár egy izgalmas, új módon érhetők el! "
|
2690 |
|
2691 |
#~ msgid "ACF PRO Required"
|
2692 |
#~ msgstr "ACF PRO változat szükséges"
|
2693 |
|
2694 |
#~ msgid ""
|
2695 |
-
#~ "We have detected an issue which requires your attention: This website "
|
2696 |
-
#~ "
|
2697 |
#~ msgstr ""
|
2698 |
-
#~ "Egy figyelmet igénylő problémát észleltünk: A honlap olyan prémium "
|
2699 |
-
#~ "
|
2700 |
-
#~ "verzióval."
|
2701 |
|
2702 |
-
#~ msgid ""
|
2703 |
-
#~ "
|
2704 |
-
#~ "as you know it!"
|
2705 |
-
#~ msgstr ""
|
2706 |
-
#~ "Aggodalomra nincs ok, könnyedén visszatérhetünk a bővítmény korábbi, már "
|
2707 |
-
#~ "ismert verziójához!"
|
2708 |
|
2709 |
#~ msgid "Roll back to ACF v%s"
|
2710 |
#~ msgstr "Visszatérés az ACF %s verzióhoz"
|
@@ -2735,11 +2618,9 @@ msgstr ""
|
|
2735 |
#~ msgid "Load & Save Terms to Post"
|
2736 |
#~ msgstr "Kifejezések a bejegyzéshez kapcsolva (betöltés és mentés)"
|
2737 |
|
2738 |
-
#~ msgid ""
|
2739 |
-
#~ "Load value based on the post's terms and update the post's terms on save"
|
2740 |
#~ msgstr ""
|
2741 |
-
#~ "Az érték betöltése a bejegyzéshez rendelt kifejezések alapján és a "
|
2742 |
-
#~ "kifejezések frissítése mentéskor"
|
2743 |
|
2744 |
#~ msgid "Column Width"
|
2745 |
#~ msgstr "Oszlopszélesség"
|
@@ -2807,8 +2688,7 @@ msgstr ""
|
|
2807 |
|
2808 |
#, fuzzy
|
2809 |
#~ msgid "Effects value on front end"
|
2810 |
-
#~ msgstr ""
|
2811 |
-
#~ "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét"
|
2812 |
|
2813 |
#, fuzzy
|
2814 |
#~ msgid "No images selected"
|
@@ -2823,16 +2703,13 @@ msgstr ""
|
|
2823 |
#~ msgstr "Kép nincs kiválasztva"
|
2824 |
|
2825 |
#~ msgid ""
|
2826 |
-
#~ "Fully customise WordPress edit screens with powerful fields. Boasting a "
|
2827 |
-
#~ "
|
2828 |
-
#~ "
|
2829 |
-
#~ "
|
2830 |
-
#~ "picker, color picker, repeater, flexible content, gallery and more!"
|
2831 |
#~ msgstr ""
|
2832 |
-
#~ "A WordPress teljes körű testreszabása egyéni mezők segítségével. A "
|
2833 |
-
#~ "
|
2834 |
-
#~ "
|
2835 |
-
#~ "
|
2836 |
-
#~ "
|
2837 |
-
#~ "színválasztó, ismétlő csoportmező, rugalmas tartalom, galéria és még több "
|
2838 |
-
#~ "más."
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:26+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: hu_HU\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"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;"
|
17 |
+
"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-WPHeader: acf.php\n"
|
20 |
"X-Textdomain-Support: yes\n"
|
33 |
msgid "Field Group"
|
34 |
msgstr "Mezőcsoport"
|
35 |
|
36 |
+
#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517
|
|
|
37 |
msgid "Add New"
|
38 |
msgstr "Új hozzáadása"
|
39 |
|
65 |
msgid "No Field Groups found in Trash"
|
66 |
msgstr "Nem található mezőcsoport a lomtárban."
|
67 |
|
68 |
+
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519
|
|
|
69 |
msgid "Fields"
|
70 |
msgstr "Mezők"
|
71 |
|
81 |
msgid "Edit Field"
|
82 |
msgstr "Mező szerkesztése"
|
83 |
|
84 |
+
#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
|
|
85 |
msgid "New Field"
|
86 |
msgstr "Új mező"
|
87 |
|
165 |
msgid "copy"
|
166 |
msgstr "másolat"
|
167 |
|
168 |
+
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67
|
169 |
+
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23
|
|
|
|
|
170 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
171 |
msgid "or"
|
172 |
msgstr "vagy"
|
255 |
msgid "Super Admin"
|
256 |
msgstr "Szuper admin"
|
257 |
|
258 |
+
#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840
|
259 |
+
#: admin/field-group.php:847 admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
|
|
260 |
#: fields/image.php:226 pro/fields/gallery.php:653
|
261 |
msgid "All"
|
262 |
msgstr "Összes"
|
330 |
msgid "Title"
|
331 |
msgstr "Cím"
|
332 |
|
333 |
+
#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20
|
334 |
+
#: admin/views/update-network.php:28
|
335 |
msgid "Description"
|
336 |
msgstr ""
|
337 |
|
339 |
msgid "Status"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
|
|
343 |
msgid "Changelog"
|
344 |
msgstr "Változások (changelog)"
|
345 |
|
359 |
msgid "Getting Started"
|
360 |
msgstr "Kezdjük el"
|
361 |
|
362 |
+
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
|
|
363 |
msgid "Updates"
|
364 |
msgstr "Frissítések"
|
365 |
|
395 |
msgid "Duplicate this item"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58
|
399 |
+
#: pro/fields/flexible-content.php:516
|
400 |
msgid "Duplicate"
|
401 |
msgstr "Duplikálás"
|
402 |
|
429 |
msgid "What's New"
|
430 |
msgstr "Újdonságok"
|
431 |
|
432 |
+
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31
|
|
|
433 |
msgid "Tools"
|
434 |
msgstr ""
|
435 |
|
460 |
|
461 |
#: admin/settings-tools.php:332
|
462 |
#, php-format
|
463 |
+
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
|
|
|
|
464 |
msgstr ""
|
465 |
+
"<b>Figyelmeztetés</b>. Az importáló eszköz észlelte, hogy %s mezőcsoport már létezik, így ezeket "
|
466 |
+
"figyelmen kívül hagyta: %s"
|
467 |
|
468 |
#: admin/update.php:113
|
469 |
msgid "Upgrade ACF"
|
485 |
msgid "Conditional Logic"
|
486 |
msgstr "Logikai feltételek"
|
487 |
|
488 |
+
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137
|
489 |
+
#: fields/checkbox.php:246 fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582
|
490 |
+
#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 fields/select.php:425
|
491 |
+
#: fields/select.php:439 fields/select.php:453 fields/tab.php:172 fields/taxonomy.php:770
|
492 |
+
#: fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
493 |
+
#: fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93
|
|
|
|
|
|
|
494 |
msgid "Yes"
|
495 |
msgstr "Igen"
|
496 |
|
497 |
+
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138
|
498 |
+
#: fields/checkbox.php:247 fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583
|
499 |
+
#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 fields/select.php:426
|
500 |
+
#: fields/select.php:440 fields/select.php:454 fields/tab.php:173 fields/taxonomy.php:685
|
501 |
+
#: fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
|
|
|
|
502 |
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
503 |
#: pro/admin/views/settings-updates.php:103
|
504 |
msgid "No"
|
508 |
msgid "Show this field if"
|
509 |
msgstr "Mező megjelenítése, ha"
|
510 |
|
511 |
+
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88
|
|
|
512 |
msgid "is equal to"
|
513 |
msgstr "egyenlő"
|
514 |
|
515 |
+
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89
|
|
|
516 |
msgid "is not equal to"
|
517 |
msgstr "nem egyenlő"
|
518 |
|
519 |
+
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118
|
|
|
520 |
msgid "and"
|
521 |
msgstr "és"
|
522 |
|
523 |
+
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133
|
|
|
524 |
msgid "Add rule group"
|
525 |
msgstr "Szabálycsoport hozzáadása"
|
526 |
|
552 |
msgid "Delete"
|
553 |
msgstr "Törlés"
|
554 |
|
555 |
+
#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886
|
|
|
556 |
msgid "Error"
|
557 |
msgstr "Hiba"
|
558 |
|
578 |
|
579 |
#: admin/views/field-group-field.php:94
|
580 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
581 |
+
msgstr "Egyetlen szó, szóközök és ékezetek nélkül, alulvonás és kötőjel használata megengedett"
|
|
|
|
|
582 |
|
583 |
#: admin/views/field-group-field.php:105
|
584 |
msgid "Field Type"
|
633 |
msgstr "Típus"
|
634 |
|
635 |
#: admin/views/field-group-fields.php:44
|
636 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
|
|
|
|
637 |
msgstr ""
|
638 |
+
"Nincsenek mezők. Kattintsunk a <strong>+Mező hozzáadása</strong> gombra az első mező létrehozásához."
|
|
|
639 |
|
640 |
#: admin/views/field-group-fields.php:51
|
641 |
msgid "Drag and drop to reorder"
|
650 |
msgstr "Szabályok"
|
651 |
|
652 |
#: admin/views/field-group-locations.php:6
|
653 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
654 |
+
msgstr "Hozzunk létre szabályokat, hogy melyik szerkesztőképernyők használják a mezőcsoportot"
|
|
|
|
|
|
|
|
|
655 |
|
656 |
#: admin/views/field-group-locations.php:21
|
657 |
msgid "Show this field group if"
|
658 |
msgstr "Mezőcsoport megjelenítése, ha"
|
659 |
|
660 |
+
#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47
|
|
|
661 |
msgid "Post"
|
662 |
msgstr "Bejegyzés"
|
663 |
|
681 |
msgid "Post Taxonomy"
|
682 |
msgstr "Bejegyzés-osztályozás (taxonómia)"
|
683 |
|
684 |
+
#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53
|
|
|
685 |
msgid "Page"
|
686 |
msgstr "Oldal"
|
687 |
|
774 |
msgstr "Fent"
|
775 |
|
776 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
777 |
+
msgid "Left aligned"
|
778 |
msgstr "Balra"
|
779 |
|
780 |
#: admin/views/field-group-options.php:72
|
811 |
|
812 |
#: admin/views/field-group-options.php:110
|
813 |
msgid ""
|
814 |
+
"If multiple field groups appear on an edit screen, the first field group's options will be used (the "
|
815 |
+
"one with the lowest order number)"
|
816 |
msgstr ""
|
817 |
|
818 |
#: admin/views/field-group-options.php:117
|
885 |
|
886 |
#: admin/views/settings-info.php:10
|
887 |
#, php-format
|
888 |
+
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
889 |
+
msgstr "Köszönjük a frissítést! Az ACF %s nagyobb és jobb, mint valaha. Reméljük, tetszeni fog!"
|
|
|
|
|
|
|
|
|
890 |
|
891 |
#: admin/views/settings-info.php:23
|
892 |
msgid "A smoother custom field experience"
|
898 |
|
899 |
#: admin/views/settings-info.php:29
|
900 |
msgid ""
|
901 |
+
"Including the popular Select2 library has improved both usability and speed across a number of field "
|
902 |
+
"types including post object, page link, taxonomy and select."
|
|
|
903 |
msgstr ""
|
904 |
+
"A népszerű Select2 könyvtár bevonása számos mezőtípusnál (például bejegyzés objektumok, "
|
905 |
+
"oldalhivatkozások, osztályozások és kiválasztás) javítja a használhatóságot és a sebességet."
|
|
|
906 |
|
907 |
#: admin/views/settings-info.php:33
|
908 |
msgid "Improved Design"
|
910 |
|
911 |
#: admin/views/settings-info.php:34
|
912 |
msgid ""
|
913 |
+
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are "
|
914 |
+
"seen on the gallery, relationship and oEmbed (new) fields!"
|
|
|
915 |
msgstr ""
|
916 |
+
"Számos mező vizuálisan megújult, hogy az ACF jobban nézzen ki, mint valaha. Észrevehető változások "
|
917 |
+
"történtek a galéria, kapcsolat és oEmbed (új) mezők esetében."
|
|
|
918 |
|
919 |
#: admin/views/settings-info.php:38
|
920 |
msgid "Improved Data"
|
922 |
|
923 |
#: admin/views/settings-info.php:39
|
924 |
msgid ""
|
925 |
+
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This "
|
926 |
+
"allows you to drag and drop fields in and out of parent fields!"
|
|
|
927 |
msgstr ""
|
928 |
+
"Az adatszerkezet újratervezésének köszönhetően az almezők függetlenek lettek a szülőmezőktől. Mindez "
|
929 |
+
"lehetővé teszi, hogy a mezőket fogd-és-vidd módon más mezőkbe, vagy azokon kívülre helyezzük át."
|
|
|
930 |
|
931 |
#: admin/views/settings-info.php:45
|
932 |
msgid "Goodbye Add-ons. Hello PRO"
|
937 |
msgstr "Az ACF PRO bemutatása"
|
938 |
|
939 |
#: admin/views/settings-info.php:51
|
940 |
+
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
#: admin/views/settings-info.php:52
|
944 |
#, php-format
|
945 |
msgid ""
|
946 |
+
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both "
|
947 |
+
"personal and developer licenses available, premium functionality is more affordable and accessible than "
|
948 |
+
"ever before!"
|
949 |
msgstr ""
|
950 |
+
"Az új <a href=\"%s\">ACF PRO változat</a> tartalmazza mind a négy korábbi prémium kiegészítőt. A "
|
951 |
+
"személyes és fejlesztői licenceknek köszönhetően a prémium funkcionalitás így sokkal megfizethetőbb, "
|
952 |
+
"mint korábban."
|
953 |
|
954 |
#: admin/views/settings-info.php:56
|
955 |
msgid "Powerful Features"
|
957 |
|
958 |
#: admin/views/settings-info.php:57
|
959 |
msgid ""
|
960 |
+
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful "
|
961 |
+
"gallery field and the ability to create extra admin options pages!"
|
|
|
962 |
msgstr ""
|
963 |
+
"Az ACF PRO változat olyan fantasztikus szolgáltatásokat kínál, mint ismételhető adatok, rugalmas "
|
964 |
+
"tartalomelrendezések, gyönyörű galériamező, és segítségével egyéni beállítás-oldalak is létrehozhatók!"
|
|
|
965 |
|
966 |
#: admin/views/settings-info.php:58
|
967 |
#, php-format
|
975 |
#: admin/views/settings-info.php:63
|
976 |
#, php-format
|
977 |
msgid ""
|
978 |
+
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of "
|
979 |
+
"ACF PRO!"
|
980 |
msgstr ""
|
981 |
+
"A még könnyebb frissítés érdekében csak <a href=\"%s\">jelenkezzünk be a felhasználói fiókunkba</a> és "
|
982 |
+
"igényeljünk egy ingyenes ACF PRO változatot!"
|
983 |
|
984 |
#: admin/views/settings-info.php:64
|
985 |
#, php-format
|
986 |
msgid ""
|
987 |
+
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, "
|
988 |
+
"please contact our support team via the <a href=\"%s\">help desk</a>"
|
|
|
989 |
msgstr ""
|
990 |
+
"A felmerülő kérdések megválaszolására egy <a href=\"%s\">frissítési útmutató</a> is rendelkezésre áll. "
|
991 |
+
"Amennyiben az útmutató nem ad választ a kérdésre, vegyük fel a kapcsolatot a <a href=\"%s\">támogató "
|
992 |
+
"csapattal</a>."
|
993 |
|
994 |
#: admin/views/settings-info.php:72
|
995 |
msgid "Under the Hood"
|
1009 |
|
1010 |
#: admin/views/settings-info.php:83
|
1011 |
msgid "More fields use AJAX powered search to speed up page loading"
|
1012 |
+
msgstr "Több mező használ AJAX-alapú keresést az oldal gyorsabb betöltésének érdekében."
|
|
|
|
|
1013 |
|
1014 |
#: admin/views/settings-info.php:87
|
1015 |
msgid "Local JSON"
|
1024 |
msgstr "Jobb verziókezelés"
|
1025 |
|
1026 |
#: admin/views/settings-info.php:95
|
1027 |
+
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
1028 |
+
msgstr "Az új JSON autoexport szolgáltatás lehetővé teszi a mezőbeállítások verziókezelését."
|
|
|
|
|
|
|
|
|
1029 |
|
1030 |
#: admin/views/settings-info.php:99
|
1031 |
msgid "Swapped XML for JSON"
|
1033 |
|
1034 |
#: admin/views/settings-info.php:100
|
1035 |
msgid "Import / Export now uses JSON in favour of XML"
|
1036 |
+
msgstr "Az importálás és exportálás JSON formátumban történik a korábbi XML megoldás helyett."
|
|
|
|
|
1037 |
|
1038 |
#: admin/views/settings-info.php:104
|
1039 |
msgid "New Forms"
|
1041 |
|
1042 |
#: admin/views/settings-info.php:105
|
1043 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1044 |
+
msgstr "A mezők már hozzászólásokhoz, widgetekhez és felhasználói adatlapokhoz is hozzárendelhetők."
|
|
|
|
|
1045 |
|
1046 |
#: admin/views/settings-info.php:112
|
1047 |
msgid "A new field for embedding content has been added"
|
1060 |
msgstr "Új beállítások"
|
1061 |
|
1062 |
#: admin/views/settings-info.php:122
|
1063 |
+
msgid "Field group settings have been added for label placement and instruction placement"
|
1064 |
+
msgstr "A mezőcsoport beállításai kiegészültek a mezőfeliratok és útmutatók elhelyezési lehetőségeivel."
|
|
|
|
|
|
|
|
|
1065 |
|
1066 |
#: admin/views/settings-info.php:128
|
1067 |
msgid "Better Front End Forms"
|
1070 |
#: admin/views/settings-info.php:129
|
1071 |
msgid "acf_form() can now create a new post on submission"
|
1072 |
msgstr ""
|
1073 |
+
"Az acf_form() már képes új bejegyzést létrehozni egy felhasználó oldali (front end) űrlap elküldésekor."
|
|
|
1074 |
|
1075 |
#: admin/views/settings-info.php:133
|
1076 |
msgid "Better Validation"
|
1078 |
|
1079 |
#: admin/views/settings-info.php:134
|
1080 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1081 |
+
msgstr "Az űrlapok érvényesítése már nem kizárólag JS által, hanem PHP + AJAX megoldással történik."
|
|
|
|
|
1082 |
|
1083 |
#: admin/views/settings-info.php:138
|
1084 |
msgid "Relationship Field"
|
1085 |
msgstr "Kapcsolat mezőtípus"
|
1086 |
|
1087 |
#: admin/views/settings-info.php:139
|
1088 |
+
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1089 |
+
msgstr "Új mezőbeállítás szűrők számára (keresés, bejegyzéstípus, osztályozás) a kapcsolat mezőtípusnál."
|
|
|
|
|
|
|
1090 |
|
1091 |
#: admin/views/settings-info.php:145
|
1092 |
msgid "Moving Fields"
|
1093 |
msgstr "Mezők áthelyezése"
|
1094 |
|
1095 |
#: admin/views/settings-info.php:146
|
1096 |
+
msgid "New field group functionality allows you to move a field between groups & parents"
|
|
|
|
|
1097 |
msgstr ""
|
1098 |
+
"A mezőcsoportok új szolgáltatásaival az egyes mezők csoportok és szülőmezők között is mozgathatók."
|
|
|
1099 |
|
1100 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1101 |
msgid "Page Link"
|
1103 |
|
1104 |
#: admin/views/settings-info.php:151
|
1105 |
msgid "New archives group in page_link field selection"
|
1106 |
+
msgstr "Új 'Archívumok' csoport az oldalhivatkozás mezőtípus választási lehetőségeinél."
|
|
|
|
|
1107 |
|
1108 |
#: admin/views/settings-info.php:155
|
1109 |
msgid "Better Options Pages"
|
1110 |
msgstr "Jobb beállítás oldalak"
|
1111 |
|
1112 |
#: admin/views/settings-info.php:156
|
1113 |
+
msgid "New functions for options page allow creation of both parent and child menu pages"
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
+
"A beállítás oldalakhoz kapcsolódó új funkciók segítségével szülő- és gyermekoldalak is létrehozhatók."
|
|
|
1116 |
|
1117 |
#: admin/views/settings-info.php:165
|
1118 |
#, php-format
|
1126 |
#: admin/views/settings-tools-export.php:17
|
1127 |
#, fuzzy
|
1128 |
msgid ""
|
1129 |
+
"The following code can be used to register a local version of the selected field group(s). A local "
|
1130 |
+
"field group can provide many benefits such as faster load times, version control & dynamic fields/"
|
1131 |
+
"settings. Simply copy and paste the following code to your theme's functions.php file or include it "
|
1132 |
+
"within an external file."
|
1133 |
+
msgstr ""
|
1134 |
+
"A következő kód segítségével regisztrálható a kiválasztott mezőcsoportok helyi változata. A helyi "
|
1135 |
+
"mezőcsoportok számos előnnyel rendelkeznek: rövidebb betöltési idő, verziókezelés és dinamikus mezők/"
|
1136 |
+
"beállítások lehetősége. Alkalmazásához egyszerűen másoljuk be a kódot a sablonhoz tartozó functions.php "
|
1137 |
+
"fájlba."
|
|
|
|
|
1138 |
|
1139 |
#: admin/views/settings-tools.php:5
|
1140 |
msgid "Select Field Groups"
|
1146 |
|
1147 |
#: admin/views/settings-tools.php:38
|
1148 |
msgid ""
|
1149 |
+
"Select the field groups you would like to export and then select your export method. Use the download "
|
1150 |
+
"button to export to a .json file which you can then import to another ACF installation. Use the "
|
1151 |
+
"generate button to export to PHP code which you can place in your theme."
|
|
|
1152 |
msgstr ""
|
1153 |
+
"Válasszuk ki az exportálni kívánt mezőcsoportokat, majd az exportálás módszerét. A letöltés gombbal egy "
|
1154 |
+
"JSON fájl készíthető, amelyet egy másik ACF telepítésbe importálhatunk. A kódgenerálás gombbal PHP kód "
|
1155 |
+
"hozható létre, amelyet beilleszthetünk a sablonunkba."
|
|
|
1156 |
|
1157 |
#: admin/views/settings-tools.php:50
|
1158 |
msgid "Download export file"
|
1168 |
|
1169 |
#: admin/views/settings-tools.php:67
|
1170 |
msgid ""
|
1171 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button "
|
1172 |
+
"below, ACF will import the field groups."
|
1173 |
msgstr ""
|
1174 |
+
"Válasszuk ki az importálni kívánt Advanced Custom Fields JSON fájlt. A gombra kattintva az ACF "
|
1175 |
+
"bővítmény importálja a fájlban definiált mezőcsoportokat."
|
|
|
1176 |
|
1177 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1178 |
msgid "Select File"
|
1188 |
|
1189 |
#: admin/views/update-network.php:10
|
1190 |
msgid ""
|
1191 |
+
"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade "
|
1192 |
+
"Database”."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
1211 |
|
1212 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1213 |
msgid ""
|
1214 |
+
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to "
|
1215 |
+
"run the updater now?"
|
1216 |
msgstr ""
|
1217 |
+
"A folytatás előtt ajánlatos biztonsági mentést készíteni az adatbázisról. Biztosan futtatni akarjuk a "
|
1218 |
+
"frissítést?"
|
1219 |
|
1220 |
#: admin/views/update-network.php:157
|
1221 |
msgid "Upgrade complete"
|
1237 |
|
1238 |
#: admin/views/update-notice.php:25
|
1239 |
msgid ""
|
1240 |
+
"Before you start using the new awesome features, please update your database to the newest version."
|
|
|
1241 |
msgstr ""
|
1242 |
+
"Mielőtt használni kezdenénk az elképesztő új szolgáltatásokat, frissítsük az adatbázist a legújabb "
|
1243 |
+
"verzióra."
|
1244 |
|
1245 |
#: admin/views/update.php:12
|
1246 |
msgid "Reading upgrade tasks..."
|
1344 |
msgid "jQuery"
|
1345 |
msgstr "jQuery"
|
1346 |
|
1347 |
+
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512
|
1348 |
+
#: pro/fields/repeater.php:392
|
1349 |
msgid "Layout"
|
1350 |
msgstr "Tartalom elrendezés"
|
1351 |
|
1401 |
|
1402 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389
|
1403 |
msgid "For more control, you may specify both a value and label like this:"
|
1404 |
+
msgstr "A testreszabhatóság érdekében az érték és a felirat is meghatározható a következő módon:"
|
|
|
|
|
1405 |
|
1406 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:389
|
1407 |
msgid "red : Red"
|
1408 |
msgstr "voros : Vörös"
|
1409 |
|
1410 |
+
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150
|
1411 |
+
#: fields/radio.php:222 fields/select.php:397 fields/text.php:148 fields/textarea.php:145
|
1412 |
+
#: fields/true_false.php:115 fields/url.php:117 fields/wysiwyg.php:345
|
|
|
1413 |
msgid "Default Value"
|
1414 |
msgstr "Alapértelmezett érték"
|
1415 |
|
1489 |
msgid "Email"
|
1490 |
msgstr "Email (email)"
|
1491 |
|
1492 |
+
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149
|
1493 |
+
#: fields/textarea.php:146 fields/url.php:118 fields/wysiwyg.php:346
|
|
|
1494 |
msgid "Appears when creating a new post"
|
1495 |
msgstr "Új bejegyzés létrehozásánál"
|
1496 |
|
1497 |
+
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157
|
1498 |
+
#: fields/textarea.php:154 fields/url.php:126
|
1499 |
msgid "Placeholder Text"
|
1500 |
msgstr "Helyőrző szöveg"
|
1501 |
|
1502 |
+
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158
|
1503 |
+
#: fields/textarea.php:155 fields/url.php:127
|
1504 |
msgid "Appears within the input"
|
1505 |
msgstr "Beviteli mezőben jelenik meg"
|
1506 |
|
1507 |
+
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
|
|
1508 |
msgid "Prepend"
|
1509 |
msgstr "Előtag"
|
1510 |
|
1511 |
+
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
|
|
1512 |
msgid "Appears before the input"
|
1513 |
msgstr "Beviteli mező előtt jelenik meg"
|
1514 |
|
1515 |
+
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
|
|
1516 |
msgid "Append"
|
1517 |
msgstr "Utótag"
|
1518 |
|
1519 |
+
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
|
|
1520 |
msgid "Appears after the input"
|
1521 |
msgstr "Beviteli mező után jelenik meg"
|
1522 |
|
1558 |
|
1559 |
#: fields/file.php:215 fields/image.php:196
|
1560 |
msgid "Specify the returned value on front end"
|
1561 |
+
msgstr "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét"
|
|
|
1562 |
|
1563 |
#: fields/file.php:220
|
1564 |
msgid "File Array"
|
1592 |
msgid "Restrict which files can be uploaded"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290
|
1596 |
+
#: pro/fields/gallery.php:684 pro/fields/gallery.php:717
|
1597 |
msgid "File size"
|
1598 |
msgstr ""
|
1599 |
|
1649 |
msgid "Set the initial zoom level"
|
1650 |
msgstr "Kezdeti nagyítási szint"
|
1651 |
|
1652 |
+
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262
|
1653 |
+
#: pro/fields/gallery.php:673 pro/fields/gallery.php:706
|
1654 |
msgid "Height"
|
1655 |
msgstr "Magasság"
|
1656 |
|
1710 |
msgid "Shown when entering data"
|
1711 |
msgstr "Adatok bevitelénél jelenik meg"
|
1712 |
|
1713 |
+
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695
|
|
|
1714 |
msgid "Restrict which images can be uploaded"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665
|
1718 |
+
#: pro/fields/gallery.php:698
|
1719 |
msgid "Width"
|
1720 |
msgstr ""
|
1721 |
|
1785 |
msgid "Archives"
|
1786 |
msgstr "Archívumok"
|
1787 |
|
1788 |
+
#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690
|
|
|
1789 |
msgid "Filter by Post Type"
|
1790 |
msgstr "Szűrés bejegyzéstípusra"
|
1791 |
|
1792 |
+
#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698
|
|
|
1793 |
msgid "All post types"
|
1794 |
msgstr "Minden bejegyzéstípus"
|
1795 |
|
1796 |
+
#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704
|
|
|
1797 |
msgid "Filter by Taxonomy"
|
1798 |
msgstr "Szűrés osztályozásra"
|
1799 |
|
1800 |
+
#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712
|
|
|
1801 |
msgid "All taxonomies"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765
|
1805 |
+
#: fields/user.php:452
|
1806 |
msgid "Allow Null?"
|
1807 |
msgstr "Üres mező engedélyezése"
|
1808 |
|
1809 |
+
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466
|
|
|
1810 |
msgid "Select multiple values?"
|
1811 |
msgstr "Többszörös választás"
|
1812 |
|
1814 |
msgid "Password"
|
1815 |
msgstr "Jelszó (password)"
|
1816 |
|
1817 |
+
#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769
|
|
|
1818 |
msgid "Post Object"
|
1819 |
msgstr "Bejegyzés objektum (post object)"
|
1820 |
|
1924 |
|
1925 |
#: fields/tab.php:133
|
1926 |
msgid ""
|
1927 |
+
"The tab field will display incorrectly when added to a Table style repeater field or flexible content "
|
1928 |
+
"field layout"
|
1929 |
msgstr ""
|
1930 |
+
"Táblázat stílusú ismétlő csoportmezőhöz vagy rugalmas tartalomhoz rendelve a lapok helytelenül jelennek "
|
1931 |
+
"meg."
|
1932 |
|
1933 |
#: fields/tab.php:146
|
1934 |
+
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
1935 |
+
msgstr "Használjunk lapokat a szerkesztőképernyők tartalmának rendezéséhez és a mezők csoportosításához."
|
|
|
|
|
|
|
|
|
1936 |
|
1937 |
#: fields/tab.php:148
|
1938 |
msgid ""
|
1939 |
+
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped "
|
1940 |
+
"together using this field's label as the tab heading."
|
|
|
1941 |
msgstr ""
|
1942 |
+
"A lap típusú mezőt követő összes mező egy csoportba kerül (egy újabb lap beillesztéséig), a lap címsora "
|
1943 |
+
"pedig a mező felirata lesz."
|
1944 |
|
1945 |
#: fields/tab.php:155
|
1946 |
msgid "Placement"
|
2210 |
|
2211 |
#: pro/admin/views/settings-updates.php:24
|
2212 |
msgid ""
|
2213 |
+
"To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
|
|
2214 |
msgstr ""
|
2215 |
+
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot az alábbi beviteli mezőben. Ha még nem "
|
2216 |
+
"rendelkezünk licenckulccsal, tájékozódáshoz:"
|
2217 |
|
2218 |
#: pro/admin/views/settings-updates.php:24
|
2219 |
msgid "details & pricing"
|
2262 |
#: pro/core/updates.php:186
|
2263 |
#, php-format
|
2264 |
msgid ""
|
2265 |
+
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't "
|
2266 |
+
"have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
|
|
2267 |
msgstr ""
|
2268 |
+
"A frissítések engedélyezéséhez adjuk meg a licenckulcsot a <a href=\"%s\">Frissítések</a> oldalon. Ha "
|
2269 |
+
"még nem rendelkezünk licenckulcsal, tekintsük át a licencek <a href=\"%s\">részleteit és árait</a>."
|
|
|
2270 |
|
2271 |
#: pro/fields/flexible-content.php:36
|
2272 |
msgid "Flexible Content"
|
2304 |
# Revision suggested
|
2305 |
#: pro/fields/flexible-content.php:50
|
2306 |
msgid "This field requires at least {min} {label} {identifier}"
|
2307 |
+
msgstr "Ennél a mezőnél legalább {min} {label} {identifier} hozzáadása szükséges"
|
|
|
2308 |
|
2309 |
# Revision suggested
|
2310 |
#: pro/fields/flexible-content.php:51
|
2461 |
|
2462 |
#: pro/fields/repeater.php:46
|
2463 |
msgid "Minimum rows reached ({min} rows)"
|
2464 |
+
msgstr "Nem érjük el a sorok minimális számát (legalább {min} sort hozzá kell adni)"
|
|
|
2465 |
|
2466 |
#: pro/fields/repeater.php:47
|
2467 |
msgid "Maximum rows reached ({max} rows)"
|
2561 |
#~ msgstr "Bejelentkezett felhasználó szerepköre"
|
2562 |
|
2563 |
#~ msgid "Field groups are created in order <br />from lowest to highest"
|
2564 |
+
#~ msgstr "Az egyes mezőcsoportok az alacsonyabbtól a magasabb érték felé haladva jönnek létre"
|
|
|
|
|
2565 |
|
2566 |
#~ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
2567 |
+
#~ msgstr "<b>Válasszuk ki</b> a szerkesztőképernyőn <b>elrejteni</b> kívánt elemeket"
|
|
|
2568 |
|
2569 |
#~ msgid ""
|
2570 |
+
#~ "If multiple field groups appear on an edit screen, the first field group's options will be used. "
|
2571 |
+
#~ "(the one with the lowest order number)"
|
2572 |
#~ msgstr ""
|
2573 |
+
#~ "Ha a szerkesztőképernyőn több mezőcsoport is megjelenik, úgy a legelső csoport (legalacsonyabb "
|
2574 |
+
#~ "sorszám) beállításai érvényesülnek."
|
2575 |
|
2576 |
+
#~ msgid "We're changing the way premium functionality is delivered in an exiting way!"
|
|
|
|
|
2577 |
#~ msgstr "A prémium szolgáltatások immár egy izgalmas, új módon érhetők el! "
|
2578 |
|
2579 |
#~ msgid "ACF PRO Required"
|
2580 |
#~ msgstr "ACF PRO változat szükséges"
|
2581 |
|
2582 |
#~ msgid ""
|
2583 |
+
#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons "
|
2584 |
+
#~ "(%s) which are no longer compatible with ACF."
|
2585 |
#~ msgstr ""
|
2586 |
+
#~ "Egy figyelmet igénylő problémát észleltünk: A honlap olyan prémium kiegészítőket használ (%s), "
|
2587 |
+
#~ "amelyek már nem kompatibilisek az új ACF verzióval."
|
|
|
2588 |
|
2589 |
+
#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!"
|
2590 |
+
#~ msgstr "Aggodalomra nincs ok, könnyedén visszatérhetünk a bővítmény korábbi, már ismert verziójához!"
|
|
|
|
|
|
|
|
|
2591 |
|
2592 |
#~ msgid "Roll back to ACF v%s"
|
2593 |
#~ msgstr "Visszatérés az ACF %s verzióhoz"
|
2618 |
#~ msgid "Load & Save Terms to Post"
|
2619 |
#~ msgstr "Kifejezések a bejegyzéshez kapcsolva (betöltés és mentés)"
|
2620 |
|
2621 |
+
#~ msgid "Load value based on the post's terms and update the post's terms on save"
|
|
|
2622 |
#~ msgstr ""
|
2623 |
+
#~ "Az érték betöltése a bejegyzéshez rendelt kifejezések alapján és a kifejezések frissítése mentéskor"
|
|
|
2624 |
|
2625 |
#~ msgid "Column Width"
|
2626 |
#~ msgstr "Oszlopszélesség"
|
2688 |
|
2689 |
#, fuzzy
|
2690 |
#~ msgid "Effects value on front end"
|
2691 |
+
#~ msgstr "Határozzuk meg a mező felhasználói oldalon (front end) megjelenő értékét"
|
|
|
2692 |
|
2693 |
#, fuzzy
|
2694 |
#~ msgid "No images selected"
|
2703 |
#~ msgstr "Kép nincs kiválasztva"
|
2704 |
|
2705 |
#~ msgid ""
|
2706 |
+
#~ "Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a "
|
2707 |
+
#~ "powerful API, it’s a must have for any web developer working with WordPress. Field types include: "
|
2708 |
+
#~ "Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color "
|
2709 |
+
#~ "picker, repeater, flexible content, gallery and more!"
|
|
|
2710 |
#~ msgstr ""
|
2711 |
+
#~ "A WordPress teljes körű testreszabása egyéni mezők segítségével. A professzionális kezelőfelületet "
|
2712 |
+
#~ "és hatékony API-t kínáló bővítmény minden WordPress-fejlesztő számára nélkülözhetetlen eszköz. "
|
2713 |
+
#~ "Elérhető mezőtípusok: Wysiwyg, szöveg, szövegterület, kép, fájl, választó, jelölődoboz, "
|
2714 |
+
#~ "oldalhivatkozás, bejegyzés objektum, dátumválasztó, színválasztó, ismétlő csoportmező, rugalmas "
|
2715 |
+
#~ "tartalom, galéria és még több más."
|
|
|
|
lang/acf-id_ID.mo
CHANGED
Binary file
|
lang/acf-id_ID.po
CHANGED
@@ -3,15 +3,14 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2016-01-25 09:18-0800\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Generator: Poedit 1.8.1\n"
|
12 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
13 |
-
"
|
14 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Poedit-WPHeader: acf.php\n"
|
@@ -33,8 +32,7 @@ msgstr "Grup Bidang"
|
|
33 |
msgid "Field Group"
|
34 |
msgstr "Grup Bidang"
|
35 |
|
36 |
-
#: acf.php:268 acf.php:300 admin/admin.php:62
|
37 |
-
#: pro/fields/flexible-content.php:505
|
38 |
msgid "Add New"
|
39 |
msgstr "Tambah Baru"
|
40 |
|
@@ -66,8 +64,7 @@ msgstr "Tidak Ada Grup Bidang Ditemukan"
|
|
66 |
msgid "No Field Groups found in Trash"
|
67 |
msgstr "Tidak Ditemukan Grup Bidang di Tong Sampah"
|
68 |
|
69 |
-
#: acf.php:298 admin/field-group.php:182 admin/field-group.php:213
|
70 |
-
#: admin/field-groups.php:528
|
71 |
msgid "Fields"
|
72 |
msgstr "Bidang"
|
73 |
|
@@ -83,8 +80,7 @@ msgstr "Tambah bidang baru"
|
|
83 |
msgid "Edit Field"
|
84 |
msgstr "Edit Bidang"
|
85 |
|
86 |
-
#: acf.php:303 admin/views/field-group-fields.php:18
|
87 |
-
#: admin/views/settings-info.php:111
|
88 |
msgid "New Field"
|
89 |
msgstr "Bidang Baru"
|
90 |
|
@@ -104,8 +100,7 @@ msgstr "Tidak ada bidang yang ditemukan"
|
|
104 |
msgid "No Fields found in Trash"
|
105 |
msgstr "Tidak ada bidang yang ditemukan di tempat sampah"
|
106 |
|
107 |
-
#: acf.php:346 admin/field-group.php:283 admin/field-groups.php:586
|
108 |
-
#: admin/views/field-group-options.php:13
|
109 |
msgid "Disabled"
|
110 |
msgstr "Dimatikan"
|
111 |
|
@@ -167,10 +162,8 @@ msgstr "Judul grup bidang diperlukan"
|
|
167 |
msgid "copy"
|
168 |
msgstr "salin"
|
169 |
|
170 |
-
#: admin/field-group.php:181
|
171 |
-
#: admin/views/field-group-field-conditional-logic.php:
|
172 |
-
#: admin/views/field-group-field-conditional-logic.php:162
|
173 |
-
#: admin/views/field-group-locations.php:59
|
174 |
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3401
|
175 |
msgid "or"
|
176 |
msgstr "atau"
|
@@ -197,9 +190,7 @@ msgstr "Nol"
|
|
197 |
|
198 |
#: admin/field-group.php:188 core/input.php:128
|
199 |
msgid "The changes you made will be lost if you navigate away from this page"
|
200 |
-
msgstr ""
|
201 |
-
"Perubahan yang Anda buat akan hilang jika Anda menavigasi keluar dari laman "
|
202 |
-
"ini"
|
203 |
|
204 |
#: admin/field-group.php:189
|
205 |
msgid "The string \"field_\" may not be used at the start of a field name"
|
@@ -261,10 +252,9 @@ msgstr "Melihat back end"
|
|
261 |
msgid "Super Admin"
|
262 |
msgstr "Super Admin"
|
263 |
|
264 |
-
#: admin/field-group.php:826 admin/field-group.php:834
|
265 |
-
#: admin/field-group.php:
|
266 |
-
#:
|
267 |
-
#: fields/image.php:226 pro/fields/gallery.php:661
|
268 |
msgid "All"
|
269 |
msgstr "Semua"
|
270 |
|
@@ -333,8 +323,8 @@ msgstr "Sinkronisasi tersedia"
|
|
333 |
msgid "Title"
|
334 |
msgstr "Judul"
|
335 |
|
336 |
-
#: admin/field-groups.php:526 admin/views/field-group-options.php:93
|
337 |
-
#: admin/views/update-network.php:
|
338 |
msgid "Description"
|
339 |
msgstr "Deskripsi"
|
340 |
|
@@ -342,8 +332,7 @@ msgstr "Deskripsi"
|
|
342 |
msgid "Status"
|
343 |
msgstr "Status"
|
344 |
|
345 |
-
#: admin/field-groups.php:624 admin/settings-info.php:76
|
346 |
-
#: pro/admin/views/settings-updates.php:111
|
347 |
msgid "Changelog"
|
348 |
msgstr "Changelog"
|
349 |
|
@@ -363,8 +352,7 @@ msgstr "Sumber"
|
|
363 |
msgid "Getting Started"
|
364 |
msgstr "Perkenalan"
|
365 |
|
366 |
-
#: admin/field-groups.php:630 pro/admin/settings-updates.php:73
|
367 |
-
#: pro/admin/views/settings-updates.php:17
|
368 |
msgid "Updates"
|
369 |
msgstr "Mutakhir"
|
370 |
|
@@ -400,8 +388,8 @@ msgstr "Dibuat oleh"
|
|
400 |
msgid "Duplicate this item"
|
401 |
msgstr "Duplikat item ini"
|
402 |
|
403 |
-
#: admin/field-groups.php:684 admin/field-groups.php:700
|
404 |
-
#:
|
405 |
msgid "Duplicate"
|
406 |
msgstr "Duplikat"
|
407 |
|
@@ -434,8 +422,7 @@ msgstr "Info"
|
|
434 |
msgid "What's New"
|
435 |
msgstr "Apa yang Baru"
|
436 |
|
437 |
-
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:23
|
438 |
-
#: admin/views/settings-tools.php:31
|
439 |
msgid "Tools"
|
440 |
msgstr "Perkakas"
|
441 |
|
@@ -466,12 +453,8 @@ msgstr "<b>Sukses</b>. Impor alat ditambahkan %s grup bidang: %s"
|
|
466 |
|
467 |
#: admin/settings-tools.php:332
|
468 |
#, php-format
|
469 |
-
msgid ""
|
470 |
-
"<b>
|
471 |
-
"been ignored: %s"
|
472 |
-
msgstr ""
|
473 |
-
"<b>Peringatan</b>. Impor alat terdeteksi grup bidang %s sudah ada dan telah "
|
474 |
-
"diabaikan: %s"
|
475 |
|
476 |
#: admin/update.php:113
|
477 |
msgid "Upgrade ACF"
|
@@ -493,27 +476,21 @@ msgstr "Tingkatkan Database"
|
|
493 |
msgid "Conditional Logic"
|
494 |
msgstr "Logika Kondisional"
|
495 |
|
496 |
-
#: admin/views/field-group-field-conditional-logic.php:40
|
497 |
-
#:
|
498 |
-
#: fields/
|
499 |
-
#: fields/
|
500 |
-
#: fields/
|
501 |
-
#: fields/tab.php:161 fields/taxonomy.php:796 fields/taxonomy.php:810
|
502 |
-
#: fields/taxonomy.php:824 fields/taxonomy.php:838 fields/user.php:457
|
503 |
-
#: fields/user.php:471 fields/wysiwyg.php:407
|
504 |
#: pro/admin/views/settings-updates.php:93
|
505 |
msgid "Yes"
|
506 |
msgstr "Ya"
|
507 |
|
508 |
-
#: admin/views/field-group-field-conditional-logic.php:41
|
509 |
-
#:
|
510 |
-
#: fields/
|
511 |
-
#: fields/
|
512 |
-
#: fields/
|
513 |
-
#: fields/
|
514 |
-
#: fields/taxonomy.php:811 fields/taxonomy.php:825 fields/taxonomy.php:839
|
515 |
-
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:408
|
516 |
-
#: pro/admin/views/settings-updates.php:103
|
517 |
msgid "No"
|
518 |
msgstr "Tidak"
|
519 |
|
@@ -521,23 +498,19 @@ msgstr "Tidak"
|
|
521 |
msgid "Show this field if"
|
522 |
msgstr "Tampilkan bidang ini jika"
|
523 |
|
524 |
-
#: admin/views/field-group-field-conditional-logic.php:111
|
525 |
-
#: admin/views/field-group-locations.php:34
|
526 |
msgid "is equal to"
|
527 |
msgstr "sama dengan"
|
528 |
|
529 |
-
#: admin/views/field-group-field-conditional-logic.php:112
|
530 |
-
#: admin/views/field-group-locations.php:35
|
531 |
msgid "is not equal to"
|
532 |
msgstr "tidak sama dengan"
|
533 |
|
534 |
-
#: admin/views/field-group-field-conditional-logic.php:149
|
535 |
-
#: admin/views/field-group-locations.php:122
|
536 |
msgid "and"
|
537 |
msgstr "dan"
|
538 |
|
539 |
-
#: admin/views/field-group-field-conditional-logic.php:164
|
540 |
-
#: admin/views/field-group-locations.php:137
|
541 |
msgid "Add rule group"
|
542 |
msgstr "Tambahkan peraturan grup"
|
543 |
|
@@ -569,8 +542,7 @@ msgstr "Hapus bidang"
|
|
569 |
msgid "Delete"
|
570 |
msgstr "Hapus"
|
571 |
|
572 |
-
#: admin/views/field-group-field.php:69 fields/oembed.php:225
|
573 |
-
#: fields/taxonomy.php:912
|
574 |
msgid "Error"
|
575 |
msgstr "Error"
|
576 |
|
@@ -651,12 +623,8 @@ msgid "Type"
|
|
651 |
msgstr "Tipe"
|
652 |
|
653 |
#: admin/views/field-group-fields.php:44
|
654 |
-
msgid ""
|
655 |
-
"
|
656 |
-
"first field."
|
657 |
-
msgstr ""
|
658 |
-
"Tidak ada bidang. Klik tombol <strong>+ Tambah Bidang</strong> untuk membuat "
|
659 |
-
"bidang pertama Anda."
|
660 |
|
661 |
#: admin/views/field-group-fields.php:51
|
662 |
msgid "Drag and drop to reorder"
|
@@ -666,8 +634,7 @@ msgstr "Seret dan jatuhkan untuk mengatur ulang"
|
|
666 |
msgid "+ Add Field"
|
667 |
msgstr "+ Tambah Bidang"
|
668 |
|
669 |
-
#: admin/views/field-group-locations.php:5
|
670 |
-
#: admin/views/field-group-locations.php:11
|
671 |
msgid "Post"
|
672 |
msgstr "post"
|
673 |
|
@@ -691,8 +658,7 @@ msgstr "Kategori Post"
|
|
691 |
msgid "Post Taxonomy"
|
692 |
msgstr "Post Taksonomi"
|
693 |
|
694 |
-
#: admin/views/field-group-locations.php:13
|
695 |
-
#: admin/views/field-group-locations.php:17
|
696 |
msgid "Page"
|
697 |
msgstr "Laman"
|
698 |
|
@@ -753,12 +719,8 @@ msgid "Rules"
|
|
753 |
msgstr "Peraturan"
|
754 |
|
755 |
#: admin/views/field-group-locations.php:42
|
756 |
-
msgid ""
|
757 |
-
"
|
758 |
-
"advanced custom fields"
|
759 |
-
msgstr ""
|
760 |
-
"Buat pengaturan peraturan untuk menentukan layar edit yang akan menggunakan "
|
761 |
-
"advanced custom fields ini"
|
762 |
|
763 |
#: admin/views/field-group-locations.php:59
|
764 |
msgid "Show this field group if"
|
@@ -801,7 +763,7 @@ msgid "Top aligned"
|
|
801 |
msgstr "Selaras atas"
|
802 |
|
803 |
#: admin/views/field-group-options.php:60 fields/tab.php:149
|
804 |
-
msgid "Left
|
805 |
msgstr "Selaras kiri"
|
806 |
|
807 |
#: admin/views/field-group-options.php:67
|
@@ -822,8 +784,7 @@ msgstr "No. Urutan"
|
|
822 |
|
823 |
#: admin/views/field-group-options.php:83
|
824 |
msgid "Field groups with a lower order will appear first"
|
825 |
-
msgstr ""
|
826 |
-
"Bidang kelompok dengan urutan yang lebih rendah akan muncul pertama kali"
|
827 |
|
828 |
#: admin/views/field-group-options.php:94
|
829 |
msgid "Shown in field group list"
|
@@ -839,11 +800,11 @@ msgstr "<b>Pilih</b> item untuk <b>menyembunyikan</b> mereka dari layar edit."
|
|
839 |
|
840 |
#: admin/views/field-group-options.php:105
|
841 |
msgid ""
|
842 |
-
"If multiple field groups appear on an edit screen, the first field group's "
|
843 |
-
"
|
844 |
msgstr ""
|
845 |
-
"Jika beberapa kelompok bidang ditampilkan pada layar edit, pilihan bidang "
|
846 |
-
"
|
847 |
|
848 |
#: admin/views/field-group-options.php:112
|
849 |
msgid "Permalink"
|
@@ -915,12 +876,9 @@ msgstr "Selamat datang di Advanced Custom Fields"
|
|
915 |
|
916 |
#: admin/views/settings-info.php:10
|
917 |
#, php-format
|
918 |
-
msgid ""
|
919 |
-
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
920 |
-
"hope you like it."
|
921 |
msgstr ""
|
922 |
-
"Terima kasih sudah memperbario! ACF %s lebih besar dan lebih baik daripada "
|
923 |
-
"sebelumnya. Kami harap Anda menyukainya."
|
924 |
|
925 |
#: admin/views/settings-info.php:23
|
926 |
msgid "A smoother custom field experience"
|
@@ -932,13 +890,11 @@ msgstr "Peningkatan kegunaan"
|
|
932 |
|
933 |
#: admin/views/settings-info.php:29
|
934 |
msgid ""
|
935 |
-
"Including the popular Select2 library has improved both usability and speed "
|
936 |
-
"
|
937 |
-
"and select."
|
938 |
msgstr ""
|
939 |
-
"Termasuk Perpustakaan Select2 populer telah meningkatkan kegunaan dan "
|
940 |
-
"
|
941 |
-
"taksonomi, dan pilih."
|
942 |
|
943 |
#: admin/views/settings-info.php:33
|
944 |
msgid "Improved Design"
|
@@ -946,13 +902,11 @@ msgstr "Peningkatan Desain"
|
|
946 |
|
947 |
#: admin/views/settings-info.php:34
|
948 |
msgid ""
|
949 |
-
"Many fields have undergone a visual refresh to make ACF look better than "
|
950 |
-
"
|
951 |
-
"(new) fields!"
|
952 |
msgstr ""
|
953 |
-
"Berbagai bidang telah mengalami refresh visual untuk membuat ACF terlihat "
|
954 |
-
"
|
955 |
-
"hubungan dan oEmbed bidang (baru)!"
|
956 |
|
957 |
#: admin/views/settings-info.php:38
|
958 |
msgid "Improved Data"
|
@@ -960,13 +914,11 @@ msgstr "Peningkatan Data"
|
|
960 |
|
961 |
#: admin/views/settings-info.php:39
|
962 |
msgid ""
|
963 |
-
"Redesigning the data architecture has allowed sub fields to live "
|
964 |
-
"
|
965 |
-
"and out of parent fields!"
|
966 |
msgstr ""
|
967 |
-
"Mendesain ulang arsitektur data telah memungkinkan sub bidang untuk yang "
|
968 |
-
"
|
969 |
-
"bidang masuk dan keluar dari bidang parent!"
|
970 |
|
971 |
#: admin/views/settings-info.php:45
|
972 |
msgid "Goodbye Add-ons. Hello PRO"
|
@@ -977,20 +929,17 @@ msgid "Introducing ACF PRO"
|
|
977 |
msgstr "Memperkenalkan ACF PRO"
|
978 |
|
979 |
#: admin/views/settings-info.php:51
|
980 |
-
msgid ""
|
981 |
-
"We're changing the way premium functionality is delivered in an exciting way!"
|
982 |
msgstr "Kami mengubah cara fungsi premium yang disampaikan dalam cara menarik!"
|
983 |
|
984 |
#: admin/views/settings-info.php:52
|
985 |
#, php-format
|
986 |
msgid ""
|
987 |
-
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
988 |
-
"
|
989 |
-
"premium functionality is more affordable and accessible than ever before!"
|
990 |
msgstr ""
|
991 |
-
"Semua 4 add-on premium sudah dikombinasikan kedalam <a href=\"%s\">versi "
|
992 |
-
"
|
993 |
-
"premuim lebih terjangkan dan dapat diakses keseluruhan daripada sebelumnya!"
|
994 |
|
995 |
#: admin/views/settings-info.php:56
|
996 |
msgid "Powerful Features"
|
@@ -998,13 +947,11 @@ msgstr "Fitur kuat"
|
|
998 |
|
999 |
#: admin/views/settings-info.php:57
|
1000 |
msgid ""
|
1001 |
-
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
1002 |
-
"
|
1003 |
-
"options pages!"
|
1004 |
msgstr ""
|
1005 |
-
"ACF PRO memiliki fitur canggih seperti data yang berulang, layout konten "
|
1006 |
-
"
|
1007 |
-
"ekstra admin!"
|
1008 |
|
1009 |
#: admin/views/settings-info.php:58
|
1010 |
#, php-format
|
@@ -1017,23 +964,18 @@ msgstr "Upgrade Mudah"
|
|
1017 |
|
1018 |
#: admin/views/settings-info.php:63
|
1019 |
#, php-format
|
1020 |
-
msgid ""
|
1021 |
-
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
1022 |
-
"and claim a free copy of ACF PRO!"
|
1023 |
msgstr ""
|
1024 |
-
"Untuk membuat peningkatan yang mudah, <a href=\"%s\">masuk ke akun toko</a> "
|
1025 |
-
"dan klaim salinan gratis ACF PRO!"
|
1026 |
|
1027 |
#: admin/views/settings-info.php:64
|
1028 |
#, php-format
|
1029 |
msgid ""
|
1030 |
-
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
1031 |
-
"
|
1032 |
-
"\">help desk</a>"
|
1033 |
msgstr ""
|
1034 |
-
"Kami juga menulis <a href=\"%s\">panduan upgrade</a> untuk menjawab "
|
1035 |
-
"
|
1036 |
-
"via <a href=\"%s\">help desk</a>"
|
1037 |
|
1038 |
#: admin/views/settings-info.php:72
|
1039 |
msgid "Under the Hood"
|
@@ -1053,8 +995,7 @@ msgstr "Lebih banyak AJAX"
|
|
1053 |
|
1054 |
#: admin/views/settings-info.php:83
|
1055 |
msgid "More fields use AJAX powered search to speed up page loading"
|
1056 |
-
msgstr ""
|
1057 |
-
"Banyak bidang yang menggunakan pencarian AJAX untuk mempercepat loading laman"
|
1058 |
|
1059 |
#: admin/views/settings-info.php:87
|
1060 |
msgid "Local JSON"
|
@@ -1069,12 +1010,8 @@ msgid "Better version control"
|
|
1069 |
msgstr "Kontolr versi terbaik"
|
1070 |
|
1071 |
#: admin/views/settings-info.php:95
|
1072 |
-
msgid ""
|
1073 |
-
"
|
1074 |
-
"controlled"
|
1075 |
-
msgstr ""
|
1076 |
-
"Ekspor otomatis ke fitur JSON memungkinkan pengaturan bidang menjadi versi "
|
1077 |
-
"yang terkontrol"
|
1078 |
|
1079 |
#: admin/views/settings-info.php:99
|
1080 |
msgid "Swapped XML for JSON"
|
@@ -1090,9 +1027,7 @@ msgstr "Form Baru"
|
|
1090 |
|
1091 |
#: admin/views/settings-info.php:105
|
1092 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1093 |
-
msgstr ""
|
1094 |
-
"Bidang sekarang dapat dipetakan ke komentar, widget dan semua bentuk "
|
1095 |
-
"pengguna!"
|
1096 |
|
1097 |
#: admin/views/settings-info.php:112
|
1098 |
msgid "A new field for embedding content has been added"
|
@@ -1111,12 +1046,8 @@ msgid "New Settings"
|
|
1111 |
msgstr "Pengaturan baru"
|
1112 |
|
1113 |
#: admin/views/settings-info.php:122
|
1114 |
-
msgid ""
|
1115 |
-
"
|
1116 |
-
"placement"
|
1117 |
-
msgstr ""
|
1118 |
-
"Pengaturan grup bidang telah ditambahkan untuk penempatan label dan "
|
1119 |
-
"penempatan instruksi"
|
1120 |
|
1121 |
#: admin/views/settings-info.php:128
|
1122 |
msgid "Better Front End Forms"
|
@@ -1132,30 +1063,23 @@ msgstr "Validasi lebih baik"
|
|
1132 |
|
1133 |
#: admin/views/settings-info.php:134
|
1134 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1135 |
-
msgstr ""
|
1136 |
-
"Validasi form sekarang dilakukan melalui PHP + AJAX dalam hanya mendukung JS"
|
1137 |
|
1138 |
#: admin/views/settings-info.php:138
|
1139 |
msgid "Relationship Field"
|
1140 |
msgstr "Bidang hubungan"
|
1141 |
|
1142 |
#: admin/views/settings-info.php:139
|
1143 |
-
msgid ""
|
1144 |
-
"
|
1145 |
-
msgstr ""
|
1146 |
-
"Pengaturan bidang hubungan untuk 'Saringan' (Pencarian, Tipe Post, Taksonomi)"
|
1147 |
|
1148 |
#: admin/views/settings-info.php:145
|
1149 |
msgid "Moving Fields"
|
1150 |
msgstr "Memindahkan Bidang"
|
1151 |
|
1152 |
#: admin/views/settings-info.php:146
|
1153 |
-
msgid ""
|
1154 |
-
"
|
1155 |
-
"parents"
|
1156 |
-
msgstr ""
|
1157 |
-
"Fungsionalitas grup bidang memungkinkan Anda memindahkan bidang antara grup "
|
1158 |
-
"& parent"
|
1159 |
|
1160 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1161 |
msgid "Page Link"
|
@@ -1170,12 +1094,8 @@ msgid "Better Options Pages"
|
|
1170 |
msgstr "Opsi Laman Lebih Baik"
|
1171 |
|
1172 |
#: admin/views/settings-info.php:156
|
1173 |
-
msgid ""
|
1174 |
-
"
|
1175 |
-
"pages"
|
1176 |
-
msgstr ""
|
1177 |
-
"Fungsi baru untuk opsi laman memungkinkan pembuatan laman menu parent dan "
|
1178 |
-
"child"
|
1179 |
|
1180 |
#: admin/views/settings-info.php:165
|
1181 |
#, php-format
|
@@ -1188,17 +1108,13 @@ msgstr "Ekspor grup bidang ke PHP"
|
|
1188 |
|
1189 |
#: admin/views/settings-tools-export.php:31
|
1190 |
msgid ""
|
1191 |
-
"The following code can be used to register a local version of the selected "
|
1192 |
-
"
|
1193 |
-
"
|
1194 |
-
"the following code to your theme's functions.php file or include it within "
|
1195 |
-
"an external file."
|
1196 |
msgstr ""
|
1197 |
-
"Kode berikutini dapat digunakan untuk mendaftar versi lokal dari bidang yang "
|
1198 |
-
"
|
1199 |
-
"
|
1200 |
-
"tempel kode berikut ke tema Anda file function.php atau masukkan kedalam "
|
1201 |
-
"file eksternal."
|
1202 |
|
1203 |
#: admin/views/settings-tools.php:5
|
1204 |
msgid "Select Field Groups"
|
@@ -1210,15 +1126,13 @@ msgstr "Ekspor Grup Bidang"
|
|
1210 |
|
1211 |
#: admin/views/settings-tools.php:38
|
1212 |
msgid ""
|
1213 |
-
"Select the field groups you would like to export and then select your export "
|
1214 |
-
"
|
1215 |
-
"
|
1216 |
-
"code which you can place in your theme."
|
1217 |
msgstr ""
|
1218 |
-
"Pilih grup bidang yang Anda ingin ekspor dan pilih metode ekspor. Gunakan "
|
1219 |
-
"
|
1220 |
-
"
|
1221 |
-
"yang bisa Anda simpan di tema Anda."
|
1222 |
|
1223 |
#: admin/views/settings-tools.php:50
|
1224 |
msgid "Download export file"
|
@@ -1234,11 +1148,11 @@ msgstr "Impor grup bidang"
|
|
1234 |
|
1235 |
#: admin/views/settings-tools.php:67
|
1236 |
msgid ""
|
1237 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
1238 |
-
"
|
1239 |
msgstr ""
|
1240 |
-
"Pilih file JSON Advanced Custom Fields yang ingin Anda impor. Ketika Anda "
|
1241 |
-
"
|
1242 |
|
1243 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1244 |
msgid "Select File"
|
@@ -1254,11 +1168,9 @@ msgstr "Peningkatan Database Advanced Custom Fields"
|
|
1254 |
|
1255 |
#: admin/views/update-network.php:10
|
1256 |
msgid ""
|
1257 |
-
"The following sites require a DB upgrade. Check the ones you want to update "
|
1258 |
-
"and then click “Upgrade Database”."
|
1259 |
msgstr ""
|
1260 |
-
"Situs berikut memerlukan peningkatan DB. Pilih salah satu yang ingin Anda "
|
1261 |
-
"update dan klik \"Tingkatkan Database\"."
|
1262 |
|
1263 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
1264 |
msgid "Site"
|
@@ -1279,11 +1191,11 @@ msgstr "Upgrade database selesai. <a href=\"%s\">Kembali ke dasbor jaringan</a>"
|
|
1279 |
|
1280 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1281 |
msgid ""
|
1282 |
-
"It is strongly recommended that you backup your database before proceeding. "
|
1283 |
-
"
|
1284 |
msgstr ""
|
1285 |
-
"Ini sangan direkomendasikan Anda mencadangkan database Anda sebelum "
|
1286 |
-
"
|
1287 |
|
1288 |
#: admin/views/update-network.php:157
|
1289 |
msgid "Upgrade complete"
|
@@ -1303,12 +1215,8 @@ msgid "Thank you for updating to %s v%s!"
|
|
1303 |
msgstr "Terimakasih sudah meningkatkan ke %s v%s!"
|
1304 |
|
1305 |
#: admin/views/update-notice.php:25
|
1306 |
-
msgid ""
|
1307 |
-
"
|
1308 |
-
"to the newest version."
|
1309 |
-
msgstr ""
|
1310 |
-
"Sebelum Anda mula menggunakan fitur keren, silahkan tingkatkan database Anda "
|
1311 |
-
"ke versi terbaru."
|
1312 |
|
1313 |
#: admin/views/update.php:12
|
1314 |
msgid "Reading upgrade tasks..."
|
@@ -1410,9 +1318,8 @@ msgstr "Relasional"
|
|
1410 |
msgid "jQuery"
|
1411 |
msgstr "jQuery"
|
1412 |
|
1413 |
-
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
1414 |
-
#: pro/fields/flexible-content.php:
|
1415 |
-
#: pro/fields/repeater.php:467
|
1416 |
msgid "Layout"
|
1417 |
msgstr "Layout"
|
1418 |
|
@@ -1468,17 +1375,14 @@ msgstr "Masukkan setiap pilihan pada baris baru."
|
|
1468 |
|
1469 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:363
|
1470 |
msgid "For more control, you may specify both a value and label like this:"
|
1471 |
-
msgstr ""
|
1472 |
-
"Untuk kontrol lebih, Anda dapat menentukan keduanya antara nilai dan bidang "
|
1473 |
-
"seperti ini:"
|
1474 |
|
1475 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:363
|
1476 |
msgid "red : Red"
|
1477 |
msgstr "merah : Merah"
|
1478 |
|
1479 |
-
#: fields/checkbox.php:217 fields/color_picker.php:149 fields/email.php:124
|
1480 |
-
#: fields/
|
1481 |
-
#: fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
1482 |
#: fields/url.php:117 fields/wysiwyg.php:368
|
1483 |
msgid "Default Value"
|
1484 |
msgstr "Nilai Default"
|
@@ -1559,39 +1463,34 @@ msgstr "Minggu Dimulai Pada"
|
|
1559 |
msgid "Email"
|
1560 |
msgstr "Email"
|
1561 |
|
1562 |
-
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
1563 |
-
#: fields/
|
1564 |
-
#: fields/wysiwyg.php:369
|
1565 |
msgid "Appears when creating a new post"
|
1566 |
msgstr "Muncul ketika membuat sebuah post baru"
|
1567 |
|
1568 |
-
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
1569 |
-
#: fields/
|
1570 |
msgid "Placeholder Text"
|
1571 |
msgstr "Teks Placeholder"
|
1572 |
|
1573 |
-
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
1574 |
-
#: fields/
|
1575 |
msgid "Appears within the input"
|
1576 |
msgstr "Muncul didalam input"
|
1577 |
|
1578 |
-
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
1579 |
-
#: fields/text.php:166
|
1580 |
msgid "Prepend"
|
1581 |
msgstr "Tambahkan"
|
1582 |
|
1583 |
-
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
1584 |
-
#: fields/text.php:167
|
1585 |
msgid "Appears before the input"
|
1586 |
msgstr "Muncul sebelum input"
|
1587 |
|
1588 |
-
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
1589 |
-
#: fields/text.php:175
|
1590 |
msgid "Append"
|
1591 |
msgstr "Menambahkan"
|
1592 |
|
1593 |
-
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
1594 |
-
#: fields/text.php:176
|
1595 |
msgid "Appears after the input"
|
1596 |
msgstr "Muncul setelah input"
|
1597 |
|
@@ -1667,8 +1566,8 @@ msgstr "Minimum"
|
|
1667 |
msgid "Restrict which files can be uploaded"
|
1668 |
msgstr "Batasi file mana yang dapat diunggah"
|
1669 |
|
1670 |
-
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
1671 |
-
#:
|
1672 |
msgid "File size"
|
1673 |
msgstr "Ukuran File"
|
1674 |
|
@@ -1728,8 +1627,8 @@ msgstr "Zoom"
|
|
1728 |
msgid "Set the initial zoom level"
|
1729 |
msgstr "Mengatur tingkat awal zoom"
|
1730 |
|
1731 |
-
#: fields/google-map.php:203 fields/image.php:246 fields/image.php:279
|
1732 |
-
#:
|
1733 |
msgid "Height"
|
1734 |
msgstr "Tinggi"
|
1735 |
|
@@ -1789,13 +1688,12 @@ msgstr "Ukuran Tinjauan"
|
|
1789 |
msgid "Shown when entering data"
|
1790 |
msgstr "Tampilkan ketika memasukkan data"
|
1791 |
|
1792 |
-
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:670
|
1793 |
-
#: pro/fields/gallery.php:703
|
1794 |
msgid "Restrict which images can be uploaded"
|
1795 |
msgstr "Batasi gambar mana yang dapat diunggah"
|
1796 |
|
1797 |
-
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:264
|
1798 |
-
#: pro/fields/gallery.php:
|
1799 |
msgid "Width"
|
1800 |
msgstr "Lebar"
|
1801 |
|
@@ -1829,8 +1727,7 @@ msgstr "Keluar HTML"
|
|
1829 |
|
1830 |
#: fields/message.php:140
|
1831 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
1832 |
-
msgstr ""
|
1833 |
-
"Memungkinkan HTML markup untuk menampilkan teks terlihat sebagai render"
|
1834 |
|
1835 |
#: fields/number.php:36
|
1836 |
msgid "Number"
|
@@ -1882,33 +1779,28 @@ msgstr "Ukuran Embed (Semat)"
|
|
1882 |
msgid "Archives"
|
1883 |
msgstr "Arsip"
|
1884 |
|
1885 |
-
#: fields/page_link.php:520 fields/post_object.php:386
|
1886 |
-
#: fields/relationship.php:689
|
1887 |
msgid "Filter by Post Type"
|
1888 |
msgstr "Saring dengan jenis post"
|
1889 |
|
1890 |
-
#: fields/page_link.php:528 fields/post_object.php:394
|
1891 |
-
#: fields/relationship.php:697
|
1892 |
msgid "All post types"
|
1893 |
msgstr "Semua Tipe Post"
|
1894 |
|
1895 |
-
#: fields/page_link.php:534 fields/post_object.php:400
|
1896 |
-
#: fields/relationship.php:703
|
1897 |
msgid "Filter by Taxonomy"
|
1898 |
msgstr "Filter dengan Taksonomi"
|
1899 |
|
1900 |
-
#: fields/page_link.php:542 fields/post_object.php:408
|
1901 |
-
#: fields/relationship.php:711
|
1902 |
msgid "All taxonomies"
|
1903 |
msgstr "Semua Taksonomi"
|
1904 |
|
1905 |
-
#: fields/page_link.php:548 fields/post_object.php:414 fields/select.php:380
|
1906 |
-
#: fields/
|
1907 |
msgid "Allow Null?"
|
1908 |
msgstr "Izinkan Nol?"
|
1909 |
|
1910 |
-
#: fields/page_link.php:562 fields/post_object.php:428 fields/select.php:394
|
1911 |
-
#: fields/user.php:466
|
1912 |
msgid "Select multiple values?"
|
1913 |
msgstr "Pilih beberapa nilai?"
|
1914 |
|
@@ -1916,8 +1808,7 @@ msgstr "Pilih beberapa nilai?"
|
|
1916 |
msgid "Password"
|
1917 |
msgstr "Kata Sandi"
|
1918 |
|
1919 |
-
#: fields/post_object.php:36 fields/post_object.php:447
|
1920 |
-
#: fields/relationship.php:768
|
1921 |
msgid "Post Object"
|
1922 |
msgstr "Objek Post"
|
1923 |
|
@@ -2025,29 +1916,22 @@ msgstr "Tab"
|
|
2025 |
|
2026 |
#: fields/tab.php:128
|
2027 |
msgid ""
|
2028 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
2029 |
-
"field or flexible content field layout"
|
2030 |
msgstr ""
|
2031 |
-
"Bidang tab tidak akan tampil dengan baik ketika ditambahkan ke Gaya Tabel "
|
2032 |
-
"
|
2033 |
|
2034 |
#: fields/tab.php:129
|
2035 |
-
msgid ""
|
2036 |
-
"
|
2037 |
-
"together."
|
2038 |
-
msgstr ""
|
2039 |
-
"Gunakan \"Bidang Tab\" untuk mengatur layar edit Anda dengan menggabungkan "
|
2040 |
-
"bidang bersamaan."
|
2041 |
|
2042 |
#: fields/tab.php:130
|
2043 |
msgid ""
|
2044 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2045 |
-
"
|
2046 |
-
"heading."
|
2047 |
msgstr ""
|
2048 |
-
"Semua bidang mengikuti \"bidang tab\" (atau sampai \"bidang tab\" lainnya "
|
2049 |
-
"
|
2050 |
-
"sebagai judul tab."
|
2051 |
|
2052 |
#: fields/tab.php:144
|
2053 |
msgid "Placement"
|
@@ -2286,12 +2170,10 @@ msgid "License"
|
|
2286 |
msgstr "Lisensi"
|
2287 |
|
2288 |
#: pro/admin/views/settings-updates.php:24
|
2289 |
-
msgid ""
|
2290 |
-
"To unlock updates, please enter your license key below. If you don't have a "
|
2291 |
-
"licence key, please see"
|
2292 |
msgstr ""
|
2293 |
-
"Untuk membuka update, masukkan kunci lisensi Anda di bawah ini. Jika Anda "
|
2294 |
-
"
|
2295 |
|
2296 |
#: pro/admin/views/settings-updates.php:24
|
2297 |
msgid "details & pricing"
|
@@ -2340,13 +2222,11 @@ msgstr "Pengaturan"
|
|
2340 |
#: pro/core/updates.php:198
|
2341 |
#, php-format
|
2342 |
msgid ""
|
2343 |
-
"To enable updates, please enter your license key on the <a href=\"%s"
|
2344 |
-
"
|
2345 |
-
"\">details & pricing</a>"
|
2346 |
msgstr ""
|
2347 |
-
"Untuk mengaktifkan update, masukkan kunci lisensi Anda pada <a href=\"%s"
|
2348 |
-
"
|
2349 |
-
"lihat <a href=\"%s\">rincian & harga</a>"
|
2350 |
|
2351 |
#: pro/fields/flexible-content.php:36
|
2352 |
msgid "Flexible Content"
|
3 |
"Project-Id-Version: Advanced Custom Fields\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2016-01-25 09:18-0800\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Generator: Poedit 1.8.1\n"
|
12 |
+
"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__;"
|
13 |
+
"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
"X-Poedit-Basepath: ..\n"
|
16 |
"X-Poedit-WPHeader: acf.php\n"
|
32 |
msgid "Field Group"
|
33 |
msgstr "Grup Bidang"
|
34 |
|
35 |
+
#: acf.php:268 acf.php:300 admin/admin.php:62 pro/fields/flexible-content.php:505
|
|
|
36 |
msgid "Add New"
|
37 |
msgstr "Tambah Baru"
|
38 |
|
64 |
msgid "No Field Groups found in Trash"
|
65 |
msgstr "Tidak Ditemukan Grup Bidang di Tong Sampah"
|
66 |
|
67 |
+
#: acf.php:298 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:528
|
|
|
68 |
msgid "Fields"
|
69 |
msgstr "Bidang"
|
70 |
|
80 |
msgid "Edit Field"
|
81 |
msgstr "Edit Bidang"
|
82 |
|
83 |
+
#: acf.php:303 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
|
|
84 |
msgid "New Field"
|
85 |
msgstr "Bidang Baru"
|
86 |
|
100 |
msgid "No Fields found in Trash"
|
101 |
msgstr "Tidak ada bidang yang ditemukan di tempat sampah"
|
102 |
|
103 |
+
#: acf.php:346 admin/field-group.php:283 admin/field-groups.php:586 admin/views/field-group-options.php:13
|
|
|
104 |
msgid "Disabled"
|
105 |
msgstr "Dimatikan"
|
106 |
|
162 |
msgid "copy"
|
163 |
msgstr "salin"
|
164 |
|
165 |
+
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:62
|
166 |
+
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:59
|
|
|
|
|
167 |
#: admin/views/field-group-locations.php:135 api/api-helpers.php:3401
|
168 |
msgid "or"
|
169 |
msgstr "atau"
|
190 |
|
191 |
#: admin/field-group.php:188 core/input.php:128
|
192 |
msgid "The changes you made will be lost if you navigate away from this page"
|
193 |
+
msgstr "Perubahan yang Anda buat akan hilang jika Anda menavigasi keluar dari laman ini"
|
|
|
|
|
194 |
|
195 |
#: admin/field-group.php:189
|
196 |
msgid "The string \"field_\" may not be used at the start of a field name"
|
252 |
msgid "Super Admin"
|
253 |
msgstr "Super Admin"
|
254 |
|
255 |
+
#: admin/field-group.php:826 admin/field-group.php:834 admin/field-group.php:848 admin/field-group.php:855
|
256 |
+
#: admin/field-group.php:870 admin/field-group.php:880 fields/file.php:235 fields/image.php:226
|
257 |
+
#: pro/fields/gallery.php:661
|
|
|
258 |
msgid "All"
|
259 |
msgstr "Semua"
|
260 |
|
323 |
msgid "Title"
|
324 |
msgstr "Judul"
|
325 |
|
326 |
+
#: admin/field-groups.php:526 admin/views/field-group-options.php:93 admin/views/update-network.php:20
|
327 |
+
#: admin/views/update-network.php:28
|
328 |
msgid "Description"
|
329 |
msgstr "Deskripsi"
|
330 |
|
332 |
msgid "Status"
|
333 |
msgstr "Status"
|
334 |
|
335 |
+
#: admin/field-groups.php:624 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
|
|
336 |
msgid "Changelog"
|
337 |
msgstr "Changelog"
|
338 |
|
352 |
msgid "Getting Started"
|
353 |
msgstr "Perkenalan"
|
354 |
|
355 |
+
#: admin/field-groups.php:630 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
|
|
356 |
msgid "Updates"
|
357 |
msgstr "Mutakhir"
|
358 |
|
388 |
msgid "Duplicate this item"
|
389 |
msgstr "Duplikat item ini"
|
390 |
|
391 |
+
#: admin/field-groups.php:684 admin/field-groups.php:700 admin/views/field-group-field.php:59
|
392 |
+
#: pro/fields/flexible-content.php:504
|
393 |
msgid "Duplicate"
|
394 |
msgstr "Duplikat"
|
395 |
|
422 |
msgid "What's New"
|
423 |
msgstr "Apa yang Baru"
|
424 |
|
425 |
+
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:23 admin/views/settings-tools.php:31
|
|
|
426 |
msgid "Tools"
|
427 |
msgstr "Perkakas"
|
428 |
|
453 |
|
454 |
#: admin/settings-tools.php:332
|
455 |
#, php-format
|
456 |
+
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
457 |
+
msgstr "<b>Peringatan</b>. Impor alat terdeteksi grup bidang %s sudah ada dan telah diabaikan: %s"
|
|
|
|
|
|
|
|
|
458 |
|
459 |
#: admin/update.php:113
|
460 |
msgid "Upgrade ACF"
|
476 |
msgid "Conditional Logic"
|
477 |
msgstr "Logika Kondisional"
|
478 |
|
479 |
+
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:141
|
480 |
+
#: fields/checkbox.php:246 fields/message.php:144 fields/page_link.php:553 fields/page_link.php:567
|
481 |
+
#: fields/post_object.php:419 fields/post_object.php:433 fields/select.php:385 fields/select.php:399
|
482 |
+
#: fields/select.php:413 fields/select.php:427 fields/tab.php:161 fields/taxonomy.php:796 fields/taxonomy.php:810
|
483 |
+
#: fields/taxonomy.php:824 fields/taxonomy.php:838 fields/user.php:457 fields/user.php:471 fields/wysiwyg.php:407
|
|
|
|
|
|
|
484 |
#: pro/admin/views/settings-updates.php:93
|
485 |
msgid "Yes"
|
486 |
msgstr "Ya"
|
487 |
|
488 |
+
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:142
|
489 |
+
#: fields/checkbox.php:247 fields/message.php:145 fields/page_link.php:554 fields/page_link.php:568
|
490 |
+
#: fields/post_object.php:420 fields/post_object.php:434 fields/select.php:386 fields/select.php:400
|
491 |
+
#: fields/select.php:414 fields/select.php:428 fields/tab.php:162 fields/taxonomy.php:711 fields/taxonomy.php:797
|
492 |
+
#: fields/taxonomy.php:811 fields/taxonomy.php:825 fields/taxonomy.php:839 fields/user.php:458 fields/user.php:472
|
493 |
+
#: fields/wysiwyg.php:408 pro/admin/views/settings-updates.php:103
|
|
|
|
|
|
|
494 |
msgid "No"
|
495 |
msgstr "Tidak"
|
496 |
|
498 |
msgid "Show this field if"
|
499 |
msgstr "Tampilkan bidang ini jika"
|
500 |
|
501 |
+
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:34
|
|
|
502 |
msgid "is equal to"
|
503 |
msgstr "sama dengan"
|
504 |
|
505 |
+
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:35
|
|
|
506 |
msgid "is not equal to"
|
507 |
msgstr "tidak sama dengan"
|
508 |
|
509 |
+
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:122
|
|
|
510 |
msgid "and"
|
511 |
msgstr "dan"
|
512 |
|
513 |
+
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:137
|
|
|
514 |
msgid "Add rule group"
|
515 |
msgstr "Tambahkan peraturan grup"
|
516 |
|
542 |
msgid "Delete"
|
543 |
msgstr "Hapus"
|
544 |
|
545 |
+
#: admin/views/field-group-field.php:69 fields/oembed.php:225 fields/taxonomy.php:912
|
|
|
546 |
msgid "Error"
|
547 |
msgstr "Error"
|
548 |
|
623 |
msgstr "Tipe"
|
624 |
|
625 |
#: admin/views/field-group-fields.php:44
|
626 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
627 |
+
msgstr "Tidak ada bidang. Klik tombol <strong>+ Tambah Bidang</strong> untuk membuat bidang pertama Anda."
|
|
|
|
|
|
|
|
|
628 |
|
629 |
#: admin/views/field-group-fields.php:51
|
630 |
msgid "Drag and drop to reorder"
|
634 |
msgid "+ Add Field"
|
635 |
msgstr "+ Tambah Bidang"
|
636 |
|
637 |
+
#: admin/views/field-group-locations.php:5 admin/views/field-group-locations.php:11
|
|
|
638 |
msgid "Post"
|
639 |
msgstr "post"
|
640 |
|
658 |
msgid "Post Taxonomy"
|
659 |
msgstr "Post Taksonomi"
|
660 |
|
661 |
+
#: admin/views/field-group-locations.php:13 admin/views/field-group-locations.php:17
|
|
|
662 |
msgid "Page"
|
663 |
msgstr "Laman"
|
664 |
|
719 |
msgstr "Peraturan"
|
720 |
|
721 |
#: admin/views/field-group-locations.php:42
|
722 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
723 |
+
msgstr "Buat pengaturan peraturan untuk menentukan layar edit yang akan menggunakan advanced custom fields ini"
|
|
|
|
|
|
|
|
|
724 |
|
725 |
#: admin/views/field-group-locations.php:59
|
726 |
msgid "Show this field group if"
|
763 |
msgstr "Selaras atas"
|
764 |
|
765 |
#: admin/views/field-group-options.php:60 fields/tab.php:149
|
766 |
+
msgid "Left aligned"
|
767 |
msgstr "Selaras kiri"
|
768 |
|
769 |
#: admin/views/field-group-options.php:67
|
784 |
|
785 |
#: admin/views/field-group-options.php:83
|
786 |
msgid "Field groups with a lower order will appear first"
|
787 |
+
msgstr "Bidang kelompok dengan urutan yang lebih rendah akan muncul pertama kali"
|
|
|
788 |
|
789 |
#: admin/views/field-group-options.php:94
|
790 |
msgid "Shown in field group list"
|
800 |
|
801 |
#: admin/views/field-group-options.php:105
|
802 |
msgid ""
|
803 |
+
"If multiple field groups appear on an edit screen, the first field group's options will be used (the one with the "
|
804 |
+
"lowest order number)"
|
805 |
msgstr ""
|
806 |
+
"Jika beberapa kelompok bidang ditampilkan pada layar edit, pilihan bidang kelompok yang pertama akan digunakan "
|
807 |
+
"(pertama nomor urutan terendah)"
|
808 |
|
809 |
#: admin/views/field-group-options.php:112
|
810 |
msgid "Permalink"
|
876 |
|
877 |
#: admin/views/settings-info.php:10
|
878 |
#, php-format
|
879 |
+
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
|
|
|
|
880 |
msgstr ""
|
881 |
+
"Terima kasih sudah memperbario! ACF %s lebih besar dan lebih baik daripada sebelumnya. Kami harap Anda menyukainya."
|
|
|
882 |
|
883 |
#: admin/views/settings-info.php:23
|
884 |
msgid "A smoother custom field experience"
|
890 |
|
891 |
#: admin/views/settings-info.php:29
|
892 |
msgid ""
|
893 |
+
"Including the popular Select2 library has improved both usability and speed across a number of field types "
|
894 |
+
"including post object, page link, taxonomy and select."
|
|
|
895 |
msgstr ""
|
896 |
+
"Termasuk Perpustakaan Select2 populer telah meningkatkan kegunaan dan kecepatan di sejumlah bidang jenis termasuk "
|
897 |
+
"posting objek, link halaman, taksonomi, dan pilih."
|
|
|
898 |
|
899 |
#: admin/views/settings-info.php:33
|
900 |
msgid "Improved Design"
|
902 |
|
903 |
#: admin/views/settings-info.php:34
|
904 |
msgid ""
|
905 |
+
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are seen on the "
|
906 |
+
"gallery, relationship and oEmbed (new) fields!"
|
|
|
907 |
msgstr ""
|
908 |
+
"Berbagai bidang telah mengalami refresh visual untuk membuat ACF terlihat lebih baik daripada sebelumnya! "
|
909 |
+
"Perubahan nyata terlihat pada galeri, hubungan dan oEmbed bidang (baru)!"
|
|
|
910 |
|
911 |
#: admin/views/settings-info.php:38
|
912 |
msgid "Improved Data"
|
914 |
|
915 |
#: admin/views/settings-info.php:39
|
916 |
msgid ""
|
917 |
+
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This allows you "
|
918 |
+
"to drag and drop fields in and out of parent fields!"
|
|
|
919 |
msgstr ""
|
920 |
+
"Mendesain ulang arsitektur data telah memungkinkan sub bidang untuk yang mandiri dari parentnya. Hal ini "
|
921 |
+
"memungkinkan Anda untuk seret dan jatuhkan bidang masuk dan keluar dari bidang parent!"
|
|
|
922 |
|
923 |
#: admin/views/settings-info.php:45
|
924 |
msgid "Goodbye Add-ons. Hello PRO"
|
929 |
msgstr "Memperkenalkan ACF PRO"
|
930 |
|
931 |
#: admin/views/settings-info.php:51
|
932 |
+
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
|
|
933 |
msgstr "Kami mengubah cara fungsi premium yang disampaikan dalam cara menarik!"
|
934 |
|
935 |
#: admin/views/settings-info.php:52
|
936 |
#, php-format
|
937 |
msgid ""
|
938 |
+
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both personal and "
|
939 |
+
"developer licenses available, premium functionality is more affordable and accessible than ever before!"
|
|
|
940 |
msgstr ""
|
941 |
+
"Semua 4 add-on premium sudah dikombinasikan kedalam <a href=\"%s\">versi Pro ACF</a>. Dengan ketersediaan lisensi "
|
942 |
+
"personal dan pengembang, fungsi premuim lebih terjangkan dan dapat diakses keseluruhan daripada sebelumnya!"
|
|
|
943 |
|
944 |
#: admin/views/settings-info.php:56
|
945 |
msgid "Powerful Features"
|
947 |
|
948 |
#: admin/views/settings-info.php:57
|
949 |
msgid ""
|
950 |
+
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful gallery field "
|
951 |
+
"and the ability to create extra admin options pages!"
|
|
|
952 |
msgstr ""
|
953 |
+
"ACF PRO memiliki fitur canggih seperti data yang berulang, layout konten yang fleksibel, bidang galeri yang cantik "
|
954 |
+
"dan kemampuan membuat laman opsi ekstra admin!"
|
|
|
955 |
|
956 |
#: admin/views/settings-info.php:58
|
957 |
#, php-format
|
964 |
|
965 |
#: admin/views/settings-info.php:63
|
966 |
#, php-format
|
967 |
+
msgid "To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of ACF PRO!"
|
|
|
|
|
968 |
msgstr ""
|
969 |
+
"Untuk membuat peningkatan yang mudah, <a href=\"%s\">masuk ke akun toko</a> dan klaim salinan gratis ACF PRO!"
|
|
|
970 |
|
971 |
#: admin/views/settings-info.php:64
|
972 |
#, php-format
|
973 |
msgid ""
|
974 |
+
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, please contact "
|
975 |
+
"our support team via the <a href=\"%s\">help desk</a>"
|
|
|
976 |
msgstr ""
|
977 |
+
"Kami juga menulis <a href=\"%s\">panduan upgrade</a> untuk menjawab pertanyaan apapun, jika Anda sudah punya, "
|
978 |
+
"silahkan hubungi tim support kami via <a href=\"%s\">help desk</a>"
|
|
|
979 |
|
980 |
#: admin/views/settings-info.php:72
|
981 |
msgid "Under the Hood"
|
995 |
|
996 |
#: admin/views/settings-info.php:83
|
997 |
msgid "More fields use AJAX powered search to speed up page loading"
|
998 |
+
msgstr "Banyak bidang yang menggunakan pencarian AJAX untuk mempercepat loading laman"
|
|
|
999 |
|
1000 |
#: admin/views/settings-info.php:87
|
1001 |
msgid "Local JSON"
|
1010 |
msgstr "Kontolr versi terbaik"
|
1011 |
|
1012 |
#: admin/views/settings-info.php:95
|
1013 |
+
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
1014 |
+
msgstr "Ekspor otomatis ke fitur JSON memungkinkan pengaturan bidang menjadi versi yang terkontrol"
|
|
|
|
|
|
|
|
|
1015 |
|
1016 |
#: admin/views/settings-info.php:99
|
1017 |
msgid "Swapped XML for JSON"
|
1027 |
|
1028 |
#: admin/views/settings-info.php:105
|
1029 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1030 |
+
msgstr "Bidang sekarang dapat dipetakan ke komentar, widget dan semua bentuk pengguna!"
|
|
|
|
|
1031 |
|
1032 |
#: admin/views/settings-info.php:112
|
1033 |
msgid "A new field for embedding content has been added"
|
1046 |
msgstr "Pengaturan baru"
|
1047 |
|
1048 |
#: admin/views/settings-info.php:122
|
1049 |
+
msgid "Field group settings have been added for label placement and instruction placement"
|
1050 |
+
msgstr "Pengaturan grup bidang telah ditambahkan untuk penempatan label dan penempatan instruksi"
|
|
|
|
|
|
|
|
|
1051 |
|
1052 |
#: admin/views/settings-info.php:128
|
1053 |
msgid "Better Front End Forms"
|
1063 |
|
1064 |
#: admin/views/settings-info.php:134
|
1065 |
msgid "Form validation is now done via PHP + AJAX in favour of only JS"
|
1066 |
+
msgstr "Validasi form sekarang dilakukan melalui PHP + AJAX dalam hanya mendukung JS"
|
|
|
1067 |
|
1068 |
#: admin/views/settings-info.php:138
|
1069 |
msgid "Relationship Field"
|
1070 |
msgstr "Bidang hubungan"
|
1071 |
|
1072 |
#: admin/views/settings-info.php:139
|
1073 |
+
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1074 |
+
msgstr "Pengaturan bidang hubungan untuk 'Saringan' (Pencarian, Tipe Post, Taksonomi)"
|
|
|
|
|
1075 |
|
1076 |
#: admin/views/settings-info.php:145
|
1077 |
msgid "Moving Fields"
|
1078 |
msgstr "Memindahkan Bidang"
|
1079 |
|
1080 |
#: admin/views/settings-info.php:146
|
1081 |
+
msgid "New field group functionality allows you to move a field between groups & parents"
|
1082 |
+
msgstr "Fungsionalitas grup bidang memungkinkan Anda memindahkan bidang antara grup & parent"
|
|
|
|
|
|
|
|
|
1083 |
|
1084 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1085 |
msgid "Page Link"
|
1094 |
msgstr "Opsi Laman Lebih Baik"
|
1095 |
|
1096 |
#: admin/views/settings-info.php:156
|
1097 |
+
msgid "New functions for options page allow creation of both parent and child menu pages"
|
1098 |
+
msgstr "Fungsi baru untuk opsi laman memungkinkan pembuatan laman menu parent dan child"
|
|
|
|
|
|
|
|
|
1099 |
|
1100 |
#: admin/views/settings-info.php:165
|
1101 |
#, php-format
|
1108 |
|
1109 |
#: admin/views/settings-tools-export.php:31
|
1110 |
msgid ""
|
1111 |
+
"The following code can be used to register a local version of the selected field group(s). A local field group can "
|
1112 |
+
"provide many benefits such as faster load times, version control & dynamic fields/settings. Simply copy and paste "
|
1113 |
+
"the following code to your theme's functions.php file or include it within an external file."
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
+
"Kode berikutini dapat digunakan untuk mendaftar versi lokal dari bidang yang dipilih. Grup bidang lokal dapat "
|
1116 |
+
"memberikan banyak manfaat sepmacam waktu loading yang cepat, kontrol versi & pengaturan bidang dinamis. Salin dan "
|
1117 |
+
"tempel kode berikut ke tema Anda file function.php atau masukkan kedalam file eksternal."
|
|
|
|
|
1118 |
|
1119 |
#: admin/views/settings-tools.php:5
|
1120 |
msgid "Select Field Groups"
|
1126 |
|
1127 |
#: admin/views/settings-tools.php:38
|
1128 |
msgid ""
|
1129 |
+
"Select the field groups you would like to export and then select your export method. Use the download button to "
|
1130 |
+
"export to a .json file which you can then import to another ACF installation. Use the generate button to export to "
|
1131 |
+
"PHP code which you can place in your theme."
|
|
|
1132 |
msgstr ""
|
1133 |
+
"Pilih grup bidang yang Anda ingin ekspor dan pilih metode ekspor. Gunakan tombol unduh untuk ekspor ke file .json "
|
1134 |
+
"yang nantinya bisa Anda impor ke instalasi ACF yang lain. Gunakan tombol hasilkan untuk ekspor ke kode PHP yang "
|
1135 |
+
"bisa Anda simpan di tema Anda."
|
|
|
1136 |
|
1137 |
#: admin/views/settings-tools.php:50
|
1138 |
msgid "Download export file"
|
1148 |
|
1149 |
#: admin/views/settings-tools.php:67
|
1150 |
msgid ""
|
1151 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF "
|
1152 |
+
"will import the field groups."
|
1153 |
msgstr ""
|
1154 |
+
"Pilih file JSON Advanced Custom Fields yang ingin Anda impor. Ketika Anda mengklik tombol impor, ACF akan impor "
|
1155 |
+
"grup bidang."
|
1156 |
|
1157 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1158 |
msgid "Select File"
|
1168 |
|
1169 |
#: admin/views/update-network.php:10
|
1170 |
msgid ""
|
1171 |
+
"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade Database”."
|
|
|
1172 |
msgstr ""
|
1173 |
+
"Situs berikut memerlukan peningkatan DB. Pilih salah satu yang ingin Anda update dan klik \"Tingkatkan Database\"."
|
|
|
1174 |
|
1175 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
1176 |
msgid "Site"
|
1191 |
|
1192 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1193 |
msgid ""
|
1194 |
+
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the "
|
1195 |
+
"updater now?"
|
1196 |
msgstr ""
|
1197 |
+
"Ini sangan direkomendasikan Anda mencadangkan database Anda sebelum memproses. Apakah Anda yakin menjalankan "
|
1198 |
+
"peningkatan sekarang?"
|
1199 |
|
1200 |
#: admin/views/update-network.php:157
|
1201 |
msgid "Upgrade complete"
|
1215 |
msgstr "Terimakasih sudah meningkatkan ke %s v%s!"
|
1216 |
|
1217 |
#: admin/views/update-notice.php:25
|
1218 |
+
msgid "Before you start using the new awesome features, please update your database to the newest version."
|
1219 |
+
msgstr "Sebelum Anda mula menggunakan fitur keren, silahkan tingkatkan database Anda ke versi terbaru."
|
|
|
|
|
|
|
|
|
1220 |
|
1221 |
#: admin/views/update.php:12
|
1222 |
msgid "Reading upgrade tasks..."
|
1318 |
msgid "jQuery"
|
1319 |
msgstr "jQuery"
|
1320 |
|
1321 |
+
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:500
|
1322 |
+
#: pro/fields/flexible-content.php:549 pro/fields/repeater.php:467
|
|
|
1323 |
msgid "Layout"
|
1324 |
msgstr "Layout"
|
1325 |
|
1375 |
|
1376 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:363
|
1377 |
msgid "For more control, you may specify both a value and label like this:"
|
1378 |
+
msgstr "Untuk kontrol lebih, Anda dapat menentukan keduanya antara nilai dan bidang seperti ini:"
|
|
|
|
|
1379 |
|
1380 |
#: fields/checkbox.php:209 fields/radio.php:194 fields/select.php:363
|
1381 |
msgid "red : Red"
|
1382 |
msgstr "merah : Merah"
|
1383 |
|
1384 |
+
#: fields/checkbox.php:217 fields/color_picker.php:149 fields/email.php:124 fields/number.php:150
|
1385 |
+
#: fields/radio.php:222 fields/select.php:371 fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115
|
|
|
1386 |
#: fields/url.php:117 fields/wysiwyg.php:368
|
1387 |
msgid "Default Value"
|
1388 |
msgstr "Nilai Default"
|
1463 |
msgid "Email"
|
1464 |
msgstr "Email"
|
1465 |
|
1466 |
+
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 fields/textarea.php:146
|
1467 |
+
#: fields/url.php:118 fields/wysiwyg.php:369
|
|
|
1468 |
msgid "Appears when creating a new post"
|
1469 |
msgstr "Muncul ketika membuat sebuah post baru"
|
1470 |
|
1471 |
+
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 fields/textarea.php:154
|
1472 |
+
#: fields/url.php:126
|
1473 |
msgid "Placeholder Text"
|
1474 |
msgstr "Teks Placeholder"
|
1475 |
|
1476 |
+
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 fields/textarea.php:155
|
1477 |
+
#: fields/url.php:127
|
1478 |
msgid "Appears within the input"
|
1479 |
msgstr "Muncul didalam input"
|
1480 |
|
1481 |
+
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
|
|
1482 |
msgid "Prepend"
|
1483 |
msgstr "Tambahkan"
|
1484 |
|
1485 |
+
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
|
|
1486 |
msgid "Appears before the input"
|
1487 |
msgstr "Muncul sebelum input"
|
1488 |
|
1489 |
+
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
|
|
1490 |
msgid "Append"
|
1491 |
msgstr "Menambahkan"
|
1492 |
|
1493 |
+
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
|
|
1494 |
msgid "Appears after the input"
|
1495 |
msgstr "Muncul setelah input"
|
1496 |
|
1566 |
msgid "Restrict which files can be uploaded"
|
1567 |
msgstr "Batasi file mana yang dapat diunggah"
|
1568 |
|
1569 |
+
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 pro/fields/gallery.php:692
|
1570 |
+
#: pro/fields/gallery.php:725
|
1571 |
msgid "File size"
|
1572 |
msgstr "Ukuran File"
|
1573 |
|
1627 |
msgid "Set the initial zoom level"
|
1628 |
msgstr "Mengatur tingkat awal zoom"
|
1629 |
|
1630 |
+
#: fields/google-map.php:203 fields/image.php:246 fields/image.php:279 fields/oembed.php:275
|
1631 |
+
#: pro/fields/gallery.php:681 pro/fields/gallery.php:714
|
1632 |
msgid "Height"
|
1633 |
msgstr "Tinggi"
|
1634 |
|
1688 |
msgid "Shown when entering data"
|
1689 |
msgstr "Tampilkan ketika memasukkan data"
|
1690 |
|
1691 |
+
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:670 pro/fields/gallery.php:703
|
|
|
1692 |
msgid "Restrict which images can be uploaded"
|
1693 |
msgstr "Batasi gambar mana yang dapat diunggah"
|
1694 |
|
1695 |
+
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:264 pro/fields/gallery.php:673
|
1696 |
+
#: pro/fields/gallery.php:706
|
1697 |
msgid "Width"
|
1698 |
msgstr "Lebar"
|
1699 |
|
1727 |
|
1728 |
#: fields/message.php:140
|
1729 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
1730 |
+
msgstr "Memungkinkan HTML markup untuk menampilkan teks terlihat sebagai render"
|
|
|
1731 |
|
1732 |
#: fields/number.php:36
|
1733 |
msgid "Number"
|
1779 |
msgid "Archives"
|
1780 |
msgstr "Arsip"
|
1781 |
|
1782 |
+
#: fields/page_link.php:520 fields/post_object.php:386 fields/relationship.php:689
|
|
|
1783 |
msgid "Filter by Post Type"
|
1784 |
msgstr "Saring dengan jenis post"
|
1785 |
|
1786 |
+
#: fields/page_link.php:528 fields/post_object.php:394 fields/relationship.php:697
|
|
|
1787 |
msgid "All post types"
|
1788 |
msgstr "Semua Tipe Post"
|
1789 |
|
1790 |
+
#: fields/page_link.php:534 fields/post_object.php:400 fields/relationship.php:703
|
|
|
1791 |
msgid "Filter by Taxonomy"
|
1792 |
msgstr "Filter dengan Taksonomi"
|
1793 |
|
1794 |
+
#: fields/page_link.php:542 fields/post_object.php:408 fields/relationship.php:711
|
|
|
1795 |
msgid "All taxonomies"
|
1796 |
msgstr "Semua Taksonomi"
|
1797 |
|
1798 |
+
#: fields/page_link.php:548 fields/post_object.php:414 fields/select.php:380 fields/taxonomy.php:791
|
1799 |
+
#: fields/user.php:452
|
1800 |
msgid "Allow Null?"
|
1801 |
msgstr "Izinkan Nol?"
|
1802 |
|
1803 |
+
#: fields/page_link.php:562 fields/post_object.php:428 fields/select.php:394 fields/user.php:466
|
|
|
1804 |
msgid "Select multiple values?"
|
1805 |
msgstr "Pilih beberapa nilai?"
|
1806 |
|
1808 |
msgid "Password"
|
1809 |
msgstr "Kata Sandi"
|
1810 |
|
1811 |
+
#: fields/post_object.php:36 fields/post_object.php:447 fields/relationship.php:768
|
|
|
1812 |
msgid "Post Object"
|
1813 |
msgstr "Objek Post"
|
1814 |
|
1916 |
|
1917 |
#: fields/tab.php:128
|
1918 |
msgid ""
|
1919 |
+
"The tab field will display incorrectly when added to a Table style repeater field or flexible content field layout"
|
|
|
1920 |
msgstr ""
|
1921 |
+
"Bidang tab tidak akan tampil dengan baik ketika ditambahkan ke Gaya Tabel repeater atau layout bidang konten yang "
|
1922 |
+
"fleksibel"
|
1923 |
|
1924 |
#: fields/tab.php:129
|
1925 |
+
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
1926 |
+
msgstr "Gunakan \"Bidang Tab\" untuk mengatur layar edit Anda dengan menggabungkan bidang bersamaan."
|
|
|
|
|
|
|
|
|
1927 |
|
1928 |
#: fields/tab.php:130
|
1929 |
msgid ""
|
1930 |
+
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together using "
|
1931 |
+
"this field's label as the tab heading."
|
|
|
1932 |
msgstr ""
|
1933 |
+
"Semua bidang mengikuti \"bidang tab\" (atau sampai \"bidang tab\" lainnya ditemukan) akan dikelompokkan bersama-"
|
1934 |
+
"sama menggunakan label bidang ini sebagai judul tab."
|
|
|
1935 |
|
1936 |
#: fields/tab.php:144
|
1937 |
msgid "Placement"
|
2170 |
msgstr "Lisensi"
|
2171 |
|
2172 |
#: pro/admin/views/settings-updates.php:24
|
2173 |
+
msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
|
|
|
|
2174 |
msgstr ""
|
2175 |
+
"Untuk membuka update, masukkan kunci lisensi Anda di bawah ini. Jika Anda tidak memiliki kunci lisensi, silakan "
|
2176 |
+
"lihat"
|
2177 |
|
2178 |
#: pro/admin/views/settings-updates.php:24
|
2179 |
msgid "details & pricing"
|
2222 |
#: pro/core/updates.php:198
|
2223 |
#, php-format
|
2224 |
msgid ""
|
2225 |
+
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't have a "
|
2226 |
+
"licence key, please see <a href=\"%s\">details & pricing</a>"
|
|
|
2227 |
msgstr ""
|
2228 |
+
"Untuk mengaktifkan update, masukkan kunci lisensi Anda pada <a href=\"%s\">Laman</a> pembaruan. Jika Anda tidak "
|
2229 |
+
"memiliki kunci lisensi, silakan lihat <a href=\"%s\">rincian & harga</a>"
|
|
|
2230 |
|
2231 |
#: pro/fields/flexible-content.php:36
|
2232 |
msgid "Flexible Content"
|
lang/acf-it_IT.mo
CHANGED
Binary file
|
lang/acf-it_IT.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-11-22 09:29+0100\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: it_IT\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Loco-Target-Locale: it_IT\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
@@ -816,7 +816,7 @@ msgstr "Allineamento in alto"
|
|
816 |
|
817 |
#: includes/admin/views/field-group-options.php:63
|
818 |
#: includes/fields/class-acf-field-tab.php:103
|
819 |
-
msgid "Left
|
820 |
msgstr "Allineamento a sinistra"
|
821 |
|
822 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1433,7 +1433,8 @@ msgstr "Relazionale"
|
|
1433 |
msgid "jQuery"
|
1434 |
msgstr "jQuery"
|
1435 |
|
1436 |
-
#: includes/fields.php:149
|
|
|
1437 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1438 |
#: includes/fields/class-acf-field-group.php:474
|
1439 |
#: includes/fields/class-acf-field-radio.php:285
|
@@ -2750,8 +2751,8 @@ msgstr "Modifica Field Group"
|
|
2750 |
msgid "Validate Email"
|
2751 |
msgstr "Valida Email"
|
2752 |
|
2753 |
-
#: includes/forms/form-front.php:103
|
2754 |
-
#: pro/options-page.php:81
|
2755 |
msgid "Update"
|
2756 |
msgstr "Aggiorna"
|
2757 |
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-11-22 09:29+0100\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:07+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: it_IT\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Loco-Target-Locale: it_IT\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
816 |
|
817 |
#: includes/admin/views/field-group-options.php:63
|
818 |
#: includes/fields/class-acf-field-tab.php:103
|
819 |
+
msgid "Left aligned"
|
820 |
msgstr "Allineamento a sinistra"
|
821 |
|
822 |
#: includes/admin/views/field-group-options.php:70
|
1433 |
msgid "jQuery"
|
1434 |
msgstr "jQuery"
|
1435 |
|
1436 |
+
#: includes/fields.php:149
|
1437 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1438 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1439 |
#: includes/fields/class-acf-field-group.php:474
|
1440 |
#: includes/fields/class-acf-field-radio.php:285
|
2751 |
msgid "Validate Email"
|
2752 |
msgstr "Valida Email"
|
2753 |
|
2754 |
+
#: includes/forms/form-front.php:103
|
2755 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2756 |
msgid "Update"
|
2757 |
msgstr "Aggiorna"
|
2758 |
|
lang/acf-ja.mo
CHANGED
Binary file
|
lang/acf-ja.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:33+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: shogo kato <s_kato@crete.co.jp>\n"
|
9 |
"Language: ja_JP\n"
|
@@ -13,9 +13,8 @@ msgstr ""
|
|
13 |
"X-Generator: Poedit 1.8.1\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
-
"
|
18 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
"X-Poedit-WPHeader: acf.php\n"
|
21 |
"X-Textdomain-Support: yes\n"
|
@@ -34,8 +33,7 @@ msgstr "フィールドグループ"
|
|
34 |
msgid "Field Group"
|
35 |
msgstr "フィールドグループ"
|
36 |
|
37 |
-
#: acf.php:207 acf.php:239 admin/admin.php:62
|
38 |
-
#: pro/fields/flexible-content.php:517
|
39 |
msgid "Add New"
|
40 |
msgstr "新規追加"
|
41 |
|
@@ -67,8 +65,7 @@ msgstr "フィールドグループが見つかりませんでした"
|
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr "ゴミ箱の中にフィールドグループは見つかりませんでした"
|
69 |
|
70 |
-
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213
|
71 |
-
#: admin/field-groups.php:519
|
72 |
msgid "Fields"
|
73 |
msgstr "フィールド"
|
74 |
|
@@ -84,8 +81,7 @@ msgstr "新規フィールドを追加"
|
|
84 |
msgid "Edit Field"
|
85 |
msgstr "フィールドを編集"
|
86 |
|
87 |
-
#: acf.php:242 admin/views/field-group-fields.php:18
|
88 |
-
#: admin/views/settings-info.php:111
|
89 |
msgid "New Field"
|
90 |
msgstr "新規フィールド"
|
91 |
|
@@ -168,10 +164,8 @@ msgstr "フィールドグループのタイトルは必須です"
|
|
168 |
msgid "copy"
|
169 |
msgstr "複製"
|
170 |
|
171 |
-
#: admin/field-group.php:181
|
172 |
-
#: admin/views/field-group-field-conditional-logic.php:
|
173 |
-
#: admin/views/field-group-field-conditional-logic.php:162
|
174 |
-
#: admin/views/field-group-locations.php:23
|
175 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
176 |
msgid "or"
|
177 |
msgstr "または"
|
@@ -260,9 +254,8 @@ msgstr "バックエンドで表示"
|
|
260 |
msgid "Super Admin"
|
261 |
msgstr "ネットワーク管理者"
|
262 |
|
263 |
-
#: admin/field-group.php:818 admin/field-group.php:826
|
264 |
-
#: admin/field-group.php:
|
265 |
-
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
266 |
#: fields/image.php:226 pro/fields/gallery.php:653
|
267 |
msgid "All"
|
268 |
msgstr "全て"
|
@@ -332,8 +325,8 @@ msgstr "利用可能な同期"
|
|
332 |
msgid "Title"
|
333 |
msgstr "タイトル"
|
334 |
|
335 |
-
#: admin/field-groups.php:517 admin/views/field-group-options.php:98
|
336 |
-
#: admin/views/update-network.php:
|
337 |
msgid "Description"
|
338 |
msgstr ""
|
339 |
|
@@ -341,8 +334,7 @@ msgstr ""
|
|
341 |
msgid "Status"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin/field-groups.php:616 admin/settings-info.php:76
|
345 |
-
#: pro/admin/views/settings-updates.php:111
|
346 |
msgid "Changelog"
|
347 |
msgstr "更新履歴"
|
348 |
|
@@ -362,8 +354,7 @@ msgstr "リソース"
|
|
362 |
msgid "Getting Started"
|
363 |
msgstr "はじめに"
|
364 |
|
365 |
-
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73
|
366 |
-
#: pro/admin/views/settings-updates.php:17
|
367 |
msgid "Updates"
|
368 |
msgstr "アップデート"
|
369 |
|
@@ -399,8 +390,8 @@ msgstr "作成"
|
|
399 |
msgid "Duplicate this item"
|
400 |
msgstr "この項目を複製"
|
401 |
|
402 |
-
#: admin/field-groups.php:673 admin/field-groups.php:685
|
403 |
-
#:
|
404 |
msgid "Duplicate"
|
405 |
msgstr "複製"
|
406 |
|
@@ -433,8 +424,7 @@ msgstr "お知らせ"
|
|
433 |
msgid "What's New"
|
434 |
msgstr "新着情報"
|
435 |
|
436 |
-
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9
|
437 |
-
#: admin/views/settings-tools.php:31
|
438 |
msgid "Tools"
|
439 |
msgstr ""
|
440 |
|
@@ -461,17 +451,14 @@ msgstr "インポートファイルが空です"
|
|
461 |
#: admin/settings-tools.php:323
|
462 |
#, php-format
|
463 |
msgid "<b>Success</b>. Import tool added %s field groups: %s"
|
464 |
-
msgstr ""
|
465 |
-
"<b>成功</b> インポートツールは %s個 のフィールドグループを追加しました:%s"
|
466 |
|
467 |
#: admin/settings-tools.php:332
|
468 |
#, php-format
|
469 |
-
msgid ""
|
470 |
-
"<b>Warning</b>. Import tool detected %s field groups already exist and have "
|
471 |
-
"been ignored: %s"
|
472 |
msgstr ""
|
473 |
-
"<b>警告</b> インポートツールは %s個
|
474 |
-
"
|
475 |
|
476 |
#: admin/update.php:113
|
477 |
msgid "Upgrade ACF"
|
@@ -493,25 +480,20 @@ msgstr ""
|
|
493 |
msgid "Conditional Logic"
|
494 |
msgstr "条件判定"
|
495 |
|
496 |
-
#: admin/views/field-group-field-conditional-logic.php:40
|
497 |
-
#:
|
498 |
-
#: fields/
|
499 |
-
#: fields/
|
500 |
-
#: fields/
|
501 |
-
#: fields/
|
502 |
-
#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
503 |
-
#: fields/user.php:471 fields/wysiwyg.php:384
|
504 |
-
#: pro/admin/views/settings-updates.php:93
|
505 |
msgid "Yes"
|
506 |
msgstr "はい"
|
507 |
|
508 |
-
#: admin/views/field-group-field-conditional-logic.php:41
|
509 |
-
#:
|
510 |
-
#: fields/
|
511 |
-
#: fields/
|
512 |
-
#: fields/
|
513 |
-
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771
|
514 |
-
#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
515 |
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
516 |
#: pro/admin/views/settings-updates.php:103
|
517 |
msgid "No"
|
@@ -521,23 +503,19 @@ msgstr "いいえ"
|
|
521 |
msgid "Show this field if"
|
522 |
msgstr "このフィールドグループの表示条件"
|
523 |
|
524 |
-
#: admin/views/field-group-field-conditional-logic.php:111
|
525 |
-
#: admin/views/field-group-locations.php:88
|
526 |
msgid "is equal to"
|
527 |
msgstr "等しい"
|
528 |
|
529 |
-
#: admin/views/field-group-field-conditional-logic.php:112
|
530 |
-
#: admin/views/field-group-locations.php:89
|
531 |
msgid "is not equal to"
|
532 |
msgstr "等しくない"
|
533 |
|
534 |
-
#: admin/views/field-group-field-conditional-logic.php:149
|
535 |
-
#: admin/views/field-group-locations.php:118
|
536 |
msgid "and"
|
537 |
msgstr "and"
|
538 |
|
539 |
-
#: admin/views/field-group-field-conditional-logic.php:164
|
540 |
-
#: admin/views/field-group-locations.php:133
|
541 |
msgid "Add rule group"
|
542 |
msgstr "ルールを追加"
|
543 |
|
@@ -569,8 +547,7 @@ msgstr "フィールドを削除"
|
|
569 |
msgid "Delete"
|
570 |
msgstr "削除"
|
571 |
|
572 |
-
#: admin/views/field-group-field.php:68 fields/oembed.php:212
|
573 |
-
#: fields/taxonomy.php:886
|
574 |
msgid "Error"
|
575 |
msgstr "エラー"
|
576 |
|
@@ -651,12 +628,10 @@ msgid "Type"
|
|
651 |
msgstr "タイプ"
|
652 |
|
653 |
#: admin/views/field-group-fields.php:44
|
654 |
-
msgid ""
|
655 |
-
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
656 |
-
"first field."
|
657 |
msgstr ""
|
658 |
-
"フィールドはありません。<strong>+ 新規追加</strong
|
659 |
-
"
|
660 |
|
661 |
#: admin/views/field-group-fields.php:51
|
662 |
msgid "Drag and drop to reorder"
|
@@ -671,18 +646,14 @@ msgid "Rules"
|
|
671 |
msgstr "ルール"
|
672 |
|
673 |
#: admin/views/field-group-locations.php:6
|
674 |
-
msgid ""
|
675 |
-
|
676 |
-
"advanced custom fields"
|
677 |
-
msgstr ""
|
678 |
-
"どの編集画面でカスタムフィールドを表示するかを決定するルールを作成します。"
|
679 |
|
680 |
#: admin/views/field-group-locations.php:21
|
681 |
msgid "Show this field group if"
|
682 |
msgstr "このフィールドグループを表示する条件"
|
683 |
|
684 |
-
#: admin/views/field-group-locations.php:41
|
685 |
-
#: admin/views/field-group-locations.php:47
|
686 |
msgid "Post"
|
687 |
msgstr "投稿"
|
688 |
|
@@ -706,8 +677,7 @@ msgstr "投稿カテゴリー"
|
|
706 |
msgid "Post Taxonomy"
|
707 |
msgstr "投稿タクソノミー"
|
708 |
|
709 |
-
#: admin/views/field-group-locations.php:49
|
710 |
-
#: admin/views/field-group-locations.php:53
|
711 |
msgid "Page"
|
712 |
msgstr "ページ"
|
713 |
|
@@ -800,7 +770,7 @@ msgid "Top aligned"
|
|
800 |
msgstr "上揃え"
|
801 |
|
802 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
803 |
-
msgid "Left
|
804 |
msgstr "左揃え"
|
805 |
|
806 |
#: admin/views/field-group-options.php:72
|
@@ -837,8 +807,8 @@ msgstr "編集画面で<b>表示しない</b>アイテムを<b>選択</b>"
|
|
837 |
|
838 |
#: admin/views/field-group-options.php:110
|
839 |
msgid ""
|
840 |
-
"If multiple field groups appear on an edit screen, the first field group's "
|
841 |
-
"
|
842 |
msgstr ""
|
843 |
|
844 |
#: admin/views/field-group-options.php:117
|
@@ -911,12 +881,10 @@ msgstr "ようこそ Advanced Custom Fields"
|
|
911 |
|
912 |
#: admin/views/settings-info.php:10
|
913 |
#, php-format
|
914 |
-
msgid ""
|
915 |
-
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
916 |
-
"hope you like it."
|
917 |
msgstr ""
|
918 |
-
"アップグレードありがとうございます!ACF %s
|
919 |
-
"
|
920 |
|
921 |
#: admin/views/settings-info.php:23
|
922 |
msgid "A smoother custom field experience"
|
@@ -928,13 +896,11 @@ msgstr "改良されたユーザビリティ"
|
|
928 |
|
929 |
#: admin/views/settings-info.php:29
|
930 |
msgid ""
|
931 |
-
"Including the popular Select2 library has improved both usability and speed "
|
932 |
-
"
|
933 |
-
"and select."
|
934 |
msgstr ""
|
935 |
-
"内蔵した人気のSelect2
|
936 |
-
"
|
937 |
-
"改善しました。"
|
938 |
|
939 |
#: admin/views/settings-info.php:33
|
940 |
msgid "Improved Design"
|
@@ -942,13 +908,11 @@ msgstr "改良されたデザイン"
|
|
942 |
|
943 |
#: admin/views/settings-info.php:34
|
944 |
msgid ""
|
945 |
-
"Many fields have undergone a visual refresh to make ACF look better than "
|
946 |
-
"
|
947 |
-
"(new) fields!"
|
948 |
msgstr ""
|
949 |
-
"ACF
|
950 |
-
"
|
951 |
-
"でしょう!"
|
952 |
|
953 |
#: admin/views/settings-info.php:38
|
954 |
msgid "Improved Data"
|
@@ -956,13 +920,11 @@ msgstr "改良されたデータ"
|
|
956 |
|
957 |
#: admin/views/settings-info.php:39
|
958 |
msgid ""
|
959 |
-
"Redesigning the data architecture has allowed sub fields to live "
|
960 |
-
"
|
961 |
-
"and out of parent fields!"
|
962 |
msgstr ""
|
963 |
-
"
|
964 |
-
"
|
965 |
-
"ドドロップできるます。"
|
966 |
|
967 |
#: admin/views/settings-info.php:45
|
968 |
msgid "Goodbye Add-ons. Hello PRO"
|
@@ -973,20 +935,18 @@ msgid "Introducing ACF PRO"
|
|
973 |
msgstr "ACF PRO紹介"
|
974 |
|
975 |
#: admin/views/settings-info.php:51
|
976 |
-
msgid ""
|
977 |
-
"We're changing the way premium functionality is delivered in an exciting way!"
|
978 |
msgstr "我々はエキサイティングな方法で有料機能を提供することにしました!"
|
979 |
|
980 |
#: admin/views/settings-info.php:52
|
981 |
#, php-format
|
982 |
msgid ""
|
983 |
-
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
984 |
-
"
|
985 |
-
"
|
986 |
msgstr ""
|
987 |
-
"4つのアドオンを<a href=\"%s\">ACFのPROバージョン</a
|
988 |
-
"
|
989 |
-
"ます!"
|
990 |
|
991 |
#: admin/views/settings-info.php:56
|
992 |
msgid "Powerful Features"
|
@@ -994,13 +954,11 @@ msgstr "パワフルな機能"
|
|
994 |
|
995 |
#: admin/views/settings-info.php:57
|
996 |
msgid ""
|
997 |
-
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
998 |
-
"
|
999 |
-
"options pages!"
|
1000 |
msgstr ""
|
1001 |
-
"ACF PRO
|
1002 |
-
"
|
1003 |
-
"す!"
|
1004 |
|
1005 |
#: admin/views/settings-info.php:58
|
1006 |
#, php-format
|
@@ -1014,22 +972,20 @@ msgstr "簡単なアップグレード"
|
|
1014 |
#: admin/views/settings-info.php:63
|
1015 |
#, php-format
|
1016 |
msgid ""
|
1017 |
-
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> "
|
1018 |
-
"
|
1019 |
msgstr ""
|
1020 |
-
"簡単なアップグレードのために、<a href=\"%s\">ストアアカウントにログイン</a
|
1021 |
-
"
|
1022 |
|
1023 |
#: admin/views/settings-info.php:64
|
1024 |
#, php-format
|
1025 |
msgid ""
|
1026 |
-
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
1027 |
-
"
|
1028 |
-
"\">help desk</a>"
|
1029 |
msgstr ""
|
1030 |
-
"我々は多くの質問に応えるために<a href=\"%s\">アップグレードガイド</a
|
1031 |
-
"
|
1032 |
-
"チームに連絡をしてください。"
|
1033 |
|
1034 |
#: admin/views/settings-info.php:72
|
1035 |
msgid "Under the Hood"
|
@@ -1041,9 +997,7 @@ msgstr "よりスマートなフィールド設定"
|
|
1041 |
|
1042 |
#: admin/views/settings-info.php:78
|
1043 |
msgid "ACF now saves its field settings as individual post objects"
|
1044 |
-
msgstr ""
|
1045 |
-
"ACFはそれぞれのフィールドを独立した投稿オブジェクトとして保存するようになりま"
|
1046 |
-
"した。"
|
1047 |
|
1048 |
#: admin/views/settings-info.php:82
|
1049 |
msgid "More AJAX"
|
@@ -1051,9 +1005,7 @@ msgstr "いっそうAJAXに"
|
|
1051 |
|
1052 |
#: admin/views/settings-info.php:83
|
1053 |
msgid "More fields use AJAX powered search to speed up page loading"
|
1054 |
-
msgstr ""
|
1055 |
-
"ページの読み込み速度を高速化するために、より多くのフィールドがAJAXを利用する"
|
1056 |
-
"ようになりました。"
|
1057 |
|
1058 |
#: admin/views/settings-info.php:87
|
1059 |
msgid "Local JSON"
|
@@ -1068,12 +1020,8 @@ msgid "Better version control"
|
|
1068 |
msgstr "より良いバージョンコントロール"
|
1069 |
|
1070 |
#: admin/views/settings-info.php:95
|
1071 |
-
msgid ""
|
1072 |
-
"
|
1073 |
-
"controlled"
|
1074 |
-
msgstr ""
|
1075 |
-
"新しいJSON形式の自動エクスポート機能は、フィールド設定のバージョンコントロー"
|
1076 |
-
"ルを可能にします。"
|
1077 |
|
1078 |
#: admin/views/settings-info.php:99
|
1079 |
msgid "Swapped XML for JSON"
|
@@ -1089,8 +1037,7 @@ msgstr "新しいフォーム"
|
|
1089 |
|
1090 |
#: admin/views/settings-info.php:105
|
1091 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1092 |
-
msgstr ""
|
1093 |
-
"コメントとウィジェット、全てのユーザーのフォームにフィールドを追加できます。"
|
1094 |
|
1095 |
#: admin/views/settings-info.php:112
|
1096 |
msgid "A new field for embedding content has been added"
|
@@ -1109,11 +1056,8 @@ msgid "New Settings"
|
|
1109 |
msgstr "新しい設定"
|
1110 |
|
1111 |
#: admin/views/settings-info.php:122
|
1112 |
-
msgid ""
|
1113 |
-
|
1114 |
-
"placement"
|
1115 |
-
msgstr ""
|
1116 |
-
"フィールドグループの設定に「ラベルの配置」と「説明の配置」を追加しています。"
|
1117 |
|
1118 |
#: admin/views/settings-info.php:128
|
1119 |
msgid "Better Front End Forms"
|
@@ -1136,22 +1080,17 @@ msgid "Relationship Field"
|
|
1136 |
msgstr "関連フィールド"
|
1137 |
|
1138 |
#: admin/views/settings-info.php:139
|
1139 |
-
msgid ""
|
1140 |
-
|
1141 |
-
msgstr ""
|
1142 |
-
"関連フィールドの新しい設定「フィルター」(検索、投稿タイプ、タクソノミー)。"
|
1143 |
|
1144 |
#: admin/views/settings-info.php:145
|
1145 |
msgid "Moving Fields"
|
1146 |
msgstr "フィールド移動"
|
1147 |
|
1148 |
#: admin/views/settings-info.php:146
|
1149 |
-
msgid ""
|
1150 |
-
"New field group functionality allows you to move a field between groups & "
|
1151 |
-
"parents"
|
1152 |
msgstr ""
|
1153 |
-
"
|
1154 |
-
"を移動することができます。"
|
1155 |
|
1156 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1157 |
msgid "Page Link"
|
@@ -1166,12 +1105,8 @@ msgid "Better Options Pages"
|
|
1166 |
msgstr "より良いオプションページ"
|
1167 |
|
1168 |
#: admin/views/settings-info.php:156
|
1169 |
-
msgid ""
|
1170 |
-
|
1171 |
-
"pages"
|
1172 |
-
msgstr ""
|
1173 |
-
"オプションページの新しい機能として、親と子の両方のメニューページを作ることが"
|
1174 |
-
"できます。"
|
1175 |
|
1176 |
#: admin/views/settings-info.php:165
|
1177 |
#, php-format
|
@@ -1184,16 +1119,14 @@ msgstr "フィールドグループを PHP形式 でエクスポートする"
|
|
1184 |
|
1185 |
#: admin/views/settings-tools-export.php:17
|
1186 |
msgid ""
|
1187 |
-
"The following code can be used to register a local version of the selected "
|
1188 |
-
"field group
|
1189 |
-
"
|
1190 |
-
"
|
1191 |
-
"an external file."
|
1192 |
msgstr ""
|
1193 |
-
"
|
1194 |
-
"
|
1195 |
-
"
|
1196 |
-
"functions.phpや外部ファイルにコピー&ペーストしてください。"
|
1197 |
|
1198 |
#: admin/views/settings-tools.php:5
|
1199 |
msgid "Select Field Groups"
|
@@ -1205,15 +1138,13 @@ msgstr "フィールドグループをエクスポート"
|
|
1205 |
|
1206 |
#: admin/views/settings-tools.php:38
|
1207 |
msgid ""
|
1208 |
-
"Select the field groups you would like to export and then select your export "
|
1209 |
-
"
|
1210 |
-
"
|
1211 |
-
"code which you can place in your theme."
|
1212 |
msgstr ""
|
1213 |
-
"
|
1214 |
-
"
|
1215 |
-
"
|
1216 |
-
"ます。"
|
1217 |
|
1218 |
#: admin/views/settings-tools.php:50
|
1219 |
msgid "Download export file"
|
@@ -1229,11 +1160,11 @@ msgstr "フィールドグループをインポート"
|
|
1229 |
|
1230 |
#: admin/views/settings-tools.php:67
|
1231 |
msgid ""
|
1232 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
1233 |
-
"
|
1234 |
msgstr ""
|
1235 |
-
"インポートしたいACFのJSON
|
1236 |
-
"
|
1237 |
|
1238 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1239 |
msgid "Select File"
|
@@ -1249,8 +1180,8 @@ msgstr ""
|
|
1249 |
|
1250 |
#: admin/views/update-network.php:10
|
1251 |
msgid ""
|
1252 |
-
"The following sites require a DB upgrade. Check the ones you want to update "
|
1253 |
-
"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
@@ -1272,11 +1203,9 @@ msgstr ""
|
|
1272 |
|
1273 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1274 |
msgid ""
|
1275 |
-
"It is strongly recommended that you backup your database before proceeding. "
|
1276 |
-
"
|
1277 |
-
msgstr ""
|
1278 |
-
"処理前にデータベースのバックアップを強く推奨します。アップデーターを実行して"
|
1279 |
-
"もよろしいですか?"
|
1280 |
|
1281 |
#: admin/views/update-network.php:157
|
1282 |
msgid "Upgrade complete"
|
@@ -1297,11 +1226,8 @@ msgstr "%s v%sへのアップグレードありがとうございます"
|
|
1297 |
|
1298 |
#: admin/views/update-notice.php:25
|
1299 |
msgid ""
|
1300 |
-
"Before you start using the new awesome features, please update your database "
|
1301 |
-
|
1302 |
-
msgstr ""
|
1303 |
-
"素晴らしい新機能を利用する前にデータベースを最新バージョンに更新してくださ"
|
1304 |
-
"い。"
|
1305 |
|
1306 |
#: admin/views/update.php:12
|
1307 |
msgid "Reading upgrade tasks..."
|
@@ -1403,8 +1329,8 @@ msgstr "関連"
|
|
1403 |
msgid "jQuery"
|
1404 |
msgstr "jQuery"
|
1405 |
|
1406 |
-
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
1407 |
-
#: pro/fields/
|
1408 |
msgid "Layout"
|
1409 |
msgstr "レイアウト"
|
1410 |
|
@@ -1466,10 +1392,9 @@ msgstr "下記のように記述すると、値とラベルの両方を制御す
|
|
1466 |
msgid "red : Red"
|
1467 |
msgstr "red : 赤"
|
1468 |
|
1469 |
-
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124
|
1470 |
-
#: fields/
|
1471 |
-
#: fields/
|
1472 |
-
#: fields/url.php:117 fields/wysiwyg.php:345
|
1473 |
msgid "Default Value"
|
1474 |
msgstr "デフォルト値"
|
1475 |
|
@@ -1549,39 +1474,34 @@ msgstr "週の始まり"
|
|
1549 |
msgid "Email"
|
1550 |
msgstr "メール"
|
1551 |
|
1552 |
-
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
1553 |
-
#: fields/
|
1554 |
-
#: fields/wysiwyg.php:346
|
1555 |
msgid "Appears when creating a new post"
|
1556 |
msgstr "新規投稿を作成時に表示されます"
|
1557 |
|
1558 |
-
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
1559 |
-
#: fields/
|
1560 |
msgid "Placeholder Text"
|
1561 |
msgstr "プレースホルダーのテキスト"
|
1562 |
|
1563 |
-
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
1564 |
-
#: fields/
|
1565 |
msgid "Appears within the input"
|
1566 |
msgstr "入力欄に表示されます"
|
1567 |
|
1568 |
-
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
1569 |
-
#: fields/text.php:166
|
1570 |
msgid "Prepend"
|
1571 |
msgstr "先頭に追加"
|
1572 |
|
1573 |
-
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
1574 |
-
#: fields/text.php:167
|
1575 |
msgid "Appears before the input"
|
1576 |
msgstr "入力欄の先頭に表示されます"
|
1577 |
|
1578 |
-
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
1579 |
-
#: fields/text.php:175
|
1580 |
msgid "Append"
|
1581 |
msgstr "末尾に追加"
|
1582 |
|
1583 |
-
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
1584 |
-
#: fields/text.php:176
|
1585 |
msgid "Appears after the input"
|
1586 |
msgstr "入力欄の末尾に表示されます"
|
1587 |
|
@@ -1657,8 +1577,8 @@ msgstr "最小"
|
|
1657 |
msgid "Restrict which files can be uploaded"
|
1658 |
msgstr "アップロード可能なファイルを制限"
|
1659 |
|
1660 |
-
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
1661 |
-
#:
|
1662 |
msgid "File size"
|
1663 |
msgstr "ファイルサイズ"
|
1664 |
|
@@ -1714,8 +1634,8 @@ msgstr "ズーム"
|
|
1714 |
msgid "Set the initial zoom level"
|
1715 |
msgstr "マップ初期状態のズームレベル"
|
1716 |
|
1717 |
-
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279
|
1718 |
-
#:
|
1719 |
msgid "Height"
|
1720 |
msgstr "高さ"
|
1721 |
|
@@ -1775,13 +1695,12 @@ msgstr "プレビューサイズ"
|
|
1775 |
msgid "Shown when entering data"
|
1776 |
msgstr "投稿編集中に表示されます"
|
1777 |
|
1778 |
-
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662
|
1779 |
-
#: pro/fields/gallery.php:695
|
1780 |
msgid "Restrict which images can be uploaded"
|
1781 |
msgstr "アップロード可能な画像を制限"
|
1782 |
|
1783 |
-
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251
|
1784 |
-
#: pro/fields/gallery.php:
|
1785 |
msgid "Width"
|
1786 |
msgstr "幅"
|
1787 |
|
@@ -1851,33 +1770,28 @@ msgstr "埋め込みサイズ"
|
|
1851 |
msgid "Archives"
|
1852 |
msgstr "アーカイブ"
|
1853 |
|
1854 |
-
#: fields/page_link.php:535 fields/post_object.php:401
|
1855 |
-
#: fields/relationship.php:690
|
1856 |
msgid "Filter by Post Type"
|
1857 |
msgstr "投稿タイプで絞り込み"
|
1858 |
|
1859 |
-
#: fields/page_link.php:543 fields/post_object.php:409
|
1860 |
-
#: fields/relationship.php:698
|
1861 |
msgid "All post types"
|
1862 |
msgstr "全ての投稿タイプ"
|
1863 |
|
1864 |
-
#: fields/page_link.php:549 fields/post_object.php:415
|
1865 |
-
#: fields/relationship.php:704
|
1866 |
msgid "Filter by Taxonomy"
|
1867 |
msgstr "タクソノミーで絞り込み"
|
1868 |
|
1869 |
-
#: fields/page_link.php:557 fields/post_object.php:423
|
1870 |
-
#: fields/relationship.php:712
|
1871 |
msgid "All taxonomies"
|
1872 |
msgstr "全てのタクソノミー"
|
1873 |
|
1874 |
-
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406
|
1875 |
-
#: fields/
|
1876 |
msgid "Allow Null?"
|
1877 |
msgstr "空の値を許可するか?"
|
1878 |
|
1879 |
-
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420
|
1880 |
-
#: fields/user.php:466
|
1881 |
msgid "Select multiple values?"
|
1882 |
msgstr "複数の値を選択できるか?"
|
1883 |
|
@@ -1885,8 +1799,7 @@ msgstr "複数の値を選択できるか?"
|
|
1885 |
msgid "Password"
|
1886 |
msgstr "パスワード"
|
1887 |
|
1888 |
-
#: fields/post_object.php:36 fields/post_object.php:462
|
1889 |
-
#: fields/relationship.php:769
|
1890 |
msgid "Post Object"
|
1891 |
msgstr "投稿オブジェクト"
|
1892 |
|
@@ -1996,27 +1909,23 @@ msgstr "注意"
|
|
1996 |
|
1997 |
#: fields/tab.php:133
|
1998 |
msgid ""
|
1999 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
2000 |
-
"field
|
2001 |
msgstr ""
|
2002 |
-
"
|
2003 |
-
"
|
2004 |
|
2005 |
#: fields/tab.php:146
|
2006 |
-
msgid ""
|
2007 |
-
|
2008 |
-
"together."
|
2009 |
-
msgstr ""
|
2010 |
-
"\"タブ\" を使うとフィールドのグループ化によって編集画面をより整理できます。"
|
2011 |
|
2012 |
#: fields/tab.php:148
|
2013 |
msgid ""
|
2014 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2015 |
-
"
|
2016 |
-
"heading."
|
2017 |
msgstr ""
|
2018 |
-
"この\"タブ\" の後に続く(または別の \"タブ\"
|
2019 |
-
"
|
2020 |
|
2021 |
#: fields/tab.php:155
|
2022 |
msgid "Placement"
|
@@ -2249,7 +2158,9 @@ msgstr "オプションを更新しました"
|
|
2249 |
|
2250 |
#: pro/admin/options-page.php:304
|
2251 |
msgid "No Custom Field Groups found for this options page. <a href=\"%s\">Create a Custom Field Group</a>"
|
2252 |
-
msgstr "
|
|
|
|
|
2253 |
|
2254 |
#: pro/admin/settings-updates.php:137
|
2255 |
msgid "<b>Error</b>. Could not connect to update server"
|
@@ -2281,11 +2192,10 @@ msgstr "ライセンス"
|
|
2281 |
|
2282 |
#: pro/admin/views/settings-updates.php:24
|
2283 |
msgid ""
|
2284 |
-
"To unlock updates, please enter your license key below. If you don't have a "
|
2285 |
-
"licence key, please see"
|
2286 |
msgstr ""
|
2287 |
-
"
|
2288 |
-
"
|
2289 |
|
2290 |
#: pro/admin/views/settings-updates.php:24
|
2291 |
msgid "details & pricing"
|
@@ -2334,13 +2244,11 @@ msgstr "オプション"
|
|
2334 |
#: pro/core/updates.php:186
|
2335 |
#, php-format
|
2336 |
msgid ""
|
2337 |
-
"To enable updates, please enter your license key on the <a href=\"%s"
|
2338 |
-
"
|
2339 |
-
"\">details & pricing</a>"
|
2340 |
msgstr ""
|
2341 |
-
"アップデートを有効にするには、<a href=\"%s\">アップデート</a
|
2342 |
-
"
|
2343 |
-
"href=\"%s\">詳細と価格</a>参照してください。"
|
2344 |
|
2345 |
#: pro/fields/flexible-content.php:36
|
2346 |
msgid "Flexible Content"
|
@@ -2380,14 +2288,11 @@ msgstr "{label}は最大数に達しました({max} {identifier})"
|
|
2380 |
|
2381 |
#: pro/fields/flexible-content.php:52
|
2382 |
msgid "{available} {label} {identifier} available (max {max})"
|
2383 |
-
msgstr ""
|
2384 |
-
"あと{available}個 {identifier}には {label} を利用できます(最大 {max}個)"
|
2385 |
|
2386 |
#: pro/fields/flexible-content.php:53
|
2387 |
msgid "{required} {label} {identifier} required (min {min})"
|
2388 |
-
msgstr ""
|
2389 |
-
"あと{required}個 {identifier}には {label} を利用する必要があります(最小 "
|
2390 |
-
"{max}個)"
|
2391 |
|
2392 |
#: pro/fields/flexible-content.php:211
|
2393 |
#, php-format
|
@@ -2607,28 +2512,25 @@ msgstr ""
|
|
2607 |
#~ msgstr "フィールドグループは、順番が小さいほうから大きいほうへ作成されます"
|
2608 |
|
2609 |
#~ msgid ""
|
2610 |
-
#~ "If multiple field groups appear on an edit screen, the first field "
|
2611 |
-
#~ "
|
2612 |
#~ msgstr ""
|
2613 |
-
#~ "
|
2614 |
-
#~ "
|
2615 |
|
2616 |
#~ msgid "ACF PRO Required"
|
2617 |
#~ msgstr "ACF PROが必要です"
|
2618 |
|
2619 |
#~ msgid ""
|
2620 |
-
#~ "We have detected an issue which requires your attention: This website "
|
2621 |
-
#~ "
|
2622 |
#~ msgstr ""
|
2623 |
-
#~ "あなたに注意すべき問題があります:有料アドオン(%s
|
2624 |
-
#~ "
|
2625 |
|
2626 |
-
#~ msgid ""
|
2627 |
-
#~ "Don't panic, you can simply roll back the plugin and continue using ACF "
|
2628 |
-
#~ "as you know it!"
|
2629 |
#~ msgstr ""
|
2630 |
-
#~ "慌てないでください、プラグインをロールバックすることで今までどおりACF
|
2631 |
-
#~ "用し続けることができます!"
|
2632 |
|
2633 |
#~ msgid "Roll back to ACF v%s"
|
2634 |
#~ msgstr "ACF v%sにロールバックする"
|
@@ -2655,8 +2557,7 @@ msgstr ""
|
|
2655 |
#~ msgid "Load & Save Terms to Post"
|
2656 |
#~ msgstr "ターム情報の読込/保存"
|
2657 |
|
2658 |
-
#~ msgid ""
|
2659 |
-
#~ "Load value based on the post's terms and update the post's terms on save"
|
2660 |
#~ msgstr "投稿ターム情報を読み込み、保存時に反映させる"
|
2661 |
|
2662 |
#~ msgid "Top Level Page (parent of 0)"
|
@@ -2686,10 +2587,8 @@ msgstr ""
|
|
2686 |
#~ msgid "Repeater Field"
|
2687 |
#~ msgstr "繰り返しフィールド"
|
2688 |
|
2689 |
-
#~ msgid ""
|
2690 |
-
#~
|
2691 |
-
#~ msgstr ""
|
2692 |
-
#~ "繰り返し挿入可能なフォームを、すてきなインターフェースで作成します。"
|
2693 |
|
2694 |
#~ msgid "Gallery Field"
|
2695 |
#~ msgstr "ギャラリーフィールド"
|
@@ -2704,8 +2603,7 @@ msgstr ""
|
|
2704 |
#~ msgstr "柔軟コンテンツフィールド"
|
2705 |
|
2706 |
#~ msgid "Create unique designs with a flexible content layout manager!"
|
2707 |
-
#~ msgstr ""
|
2708 |
-
#~ "柔軟なコンテンツレイアウト管理により、すてきなデザインを作成します。"
|
2709 |
|
2710 |
#~ msgid "Gravity Forms Field"
|
2711 |
#~ msgstr "Gravity Forms フィールド"
|
@@ -2739,17 +2637,16 @@ msgstr ""
|
|
2739 |
#~ msgstr "Advanced Custom Fields"
|
2740 |
|
2741 |
#~ msgid ""
|
2742 |
-
#~ "The following Add-ons are available to increase the functionality of the "
|
2743 |
-
#~ "
|
2744 |
-
#~ msgstr ""
|
2745 |
-
#~ "Advanced Custom Fields プラグインに機能を追加するアドオンが利用できます。"
|
2746 |
|
2747 |
#~ msgid ""
|
2748 |
-
#~ "Each Add-on can be installed as a separate plugin (receives updates) or "
|
2749 |
-
#~ "
|
2750 |
#~ msgstr ""
|
2751 |
-
#~ "それぞれのアドオンは、個別のプラグインとしてインストールする(
|
2752 |
-
#~ "
|
2753 |
|
2754 |
#~ msgid "Purchase & Install"
|
2755 |
#~ msgstr "購入してインストールする"
|
@@ -2763,9 +2660,7 @@ msgstr ""
|
|
2763 |
|
2764 |
#, fuzzy
|
2765 |
#~ msgid "Select the field groups to be exported"
|
2766 |
-
#~ msgstr ""
|
2767 |
-
#~ "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリック"
|
2768 |
-
#~ "してください"
|
2769 |
|
2770 |
#, fuzzy
|
2771 |
#~ msgid "Export to XML"
|
@@ -2775,25 +2670,19 @@ msgstr ""
|
|
2775 |
#~ msgid "Export to PHP"
|
2776 |
#~ msgstr "フィールドグループを PHP 形式でエクスポートする"
|
2777 |
|
2778 |
-
#~ msgid ""
|
2779 |
-
#~ "ACF will create a .xml export file which is compatible with the native WP "
|
2780 |
-
#~ "import plugin."
|
2781 |
#~ msgstr ""
|
2782 |
-
#~ "ACF は .xml 形式のエクスポートファイルを作成します。WP
|
2783 |
-
#~ "インと互換性があります。"
|
2784 |
|
2785 |
#~ msgid ""
|
2786 |
-
#~ "Imported field groups <b>will</b> appear in the list of editable field "
|
2787 |
-
#~ "
|
2788 |
#~ msgstr ""
|
2789 |
-
#~ "
|
2790 |
-
#~ "
|
2791 |
-
#~ "す。"
|
2792 |
|
2793 |
#~ msgid "Select field group(s) from the list and click \"Export XML\""
|
2794 |
-
#~ msgstr ""
|
2795 |
-
#~ "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリック"
|
2796 |
-
#~ "してください"
|
2797 |
|
2798 |
#~ msgid "Save the .xml file when prompted"
|
2799 |
#~ msgstr "指示に従って .xml ファイルを保存してください"
|
@@ -2802,9 +2691,7 @@ msgstr ""
|
|
2802 |
#~ msgstr "ツール » インポートと進み、WordPress を選択してください"
|
2803 |
|
2804 |
#~ msgid "Install WP import plugin if prompted"
|
2805 |
-
#~ msgstr ""
|
2806 |
-
#~ "(インストールを促された場合は) WP インポートプラグインをインストールしてく"
|
2807 |
-
#~ "ださい"
|
2808 |
|
2809 |
#~ msgid "Upload and import your exported .xml file"
|
2810 |
#~ msgstr "エクスポートした .xml ファイルをアップロードし、インポートする"
|
@@ -2819,27 +2706,23 @@ msgstr ""
|
|
2819 |
#~ msgstr "ACF は、テーマに含める PHP コードを作成します"
|
2820 |
|
2821 |
#~ msgid ""
|
2822 |
-
#~ "Registered field groups <b>will not</b> appear in the list of editable "
|
2823 |
-
#~ "
|
2824 |
#~ msgstr ""
|
2825 |
-
#~ "登録したフィールドグループは、編集可能なフィールドグループの一覧に<b
|
2826 |
-
#~ "
|
2827 |
|
2828 |
#~ msgid ""
|
2829 |
-
#~ "Please note that if you export and register field groups within the same "
|
2830 |
-
#~ "
|
2831 |
-
#~ "
|
2832 |
-
#~ "your functions.php file."
|
2833 |
#~ msgstr ""
|
2834 |
-
#~ "同一の WP
|
2835 |
-
#~ "
|
2836 |
-
#~ "
|
2837 |
-
#~ "去してください。"
|
2838 |
|
2839 |
#~ msgid "Select field group(s) from the list and click \"Create PHP\""
|
2840 |
-
#~ msgstr ""
|
2841 |
-
#~ "一覧からフィールドグループを選択し、\"PHP 形式のデータを作成する\" をク"
|
2842 |
-
#~ "リックしてください。"
|
2843 |
|
2844 |
#~ msgid "Copy the PHP code generated"
|
2845 |
#~ msgstr "生成された PHP コードをコピーし、"
|
@@ -2847,10 +2730,8 @@ msgstr ""
|
|
2847 |
#~ msgid "Paste into your functions.php file"
|
2848 |
#~ msgstr "functions.php に貼り付けてください"
|
2849 |
|
2850 |
-
#~ msgid ""
|
2851 |
-
#~
|
2852 |
-
#~ msgstr ""
|
2853 |
-
#~ "アドオンを有効化するには、最初の何行かのコードを編集して使用してください"
|
2854 |
|
2855 |
#~ msgid "Notes"
|
2856 |
#~ msgstr "注意"
|
@@ -2859,21 +2740,19 @@ msgstr ""
|
|
2859 |
#~ msgstr "テーマに含める"
|
2860 |
|
2861 |
#~ msgid ""
|
2862 |
-
#~ "The Advanced Custom Fields plugin can be included within a theme. To do "
|
2863 |
-
#~ "
|
2864 |
-
#~ "your functions.php file:"
|
2865 |
#~ msgstr ""
|
2866 |
-
#~ "Advanced Custom Fields
|
2867 |
-
#~ "
|
2868 |
|
2869 |
#~ msgid ""
|
2870 |
-
#~ "To remove all visual interfaces from the ACF plugin, you can use a "
|
2871 |
-
#~ "
|
2872 |
-
#~ "php file <b>before</b> the include_once code:"
|
2873 |
#~ msgstr ""
|
2874 |
-
#~ "Advanced Custom Fields
|
2875 |
-
#~ "
|
2876 |
-
#~ "
|
2877 |
|
2878 |
#, fuzzy
|
2879 |
#~ msgid "Back to export"
|
@@ -2884,44 +2763,34 @@ msgstr ""
|
|
2884 |
#~ " * Install Add-ons\n"
|
2885 |
#~ " * \n"
|
2886 |
#~ " * The following code will include all 4 premium Add-Ons in your theme.\n"
|
2887 |
-
#~ " * Please do not attempt to include a file which does not exist. This "
|
2888 |
-
#~ "will produce an error.\n"
|
2889 |
#~ " * \n"
|
2890 |
#~ " * All fields must be included during the 'acf/register_fields' action.\n"
|
2891 |
-
#~ " * Other types of Add-ons (like the options page) can be included "
|
2892 |
-
#~ "outside of this action.\n"
|
2893 |
#~ " * \n"
|
2894 |
-
#~ " * The following code assumes you have a folder 'add-ons' inside your "
|
2895 |
-
#~ "theme.\n"
|
2896 |
#~ " *\n"
|
2897 |
#~ " * IMPORTANT\n"
|
2898 |
-
#~ " * Add-ons may be included in a premium theme as outlined in the terms "
|
2899 |
-
#~ "and conditions.\n"
|
2900 |
#~ " * However, they are NOT to be included in a premium / free plugin.\n"
|
2901 |
-
#~ " * For more information, please read http://www.advancedcustomfields.com/"
|
2902 |
-
#~ "terms-conditions/\n"
|
2903 |
#~ " */"
|
2904 |
#~ msgstr ""
|
2905 |
#~ "/**\n"
|
2906 |
#~ " * Install Add-ons\n"
|
2907 |
#~ " * \n"
|
2908 |
#~ " * The following code will include all 4 premium Add-Ons in your theme.\n"
|
2909 |
-
#~ " * Please do not attempt to include a file which does not exist. This "
|
2910 |
-
#~ "will produce an error.\n"
|
2911 |
#~ " * \n"
|
2912 |
#~ " * All fields must be included during the 'acf/register_fields' action.\n"
|
2913 |
-
#~ " * Other types of Add-ons (like the options page) can be included "
|
2914 |
-
#~ "outside of this action.\n"
|
2915 |
#~ " * \n"
|
2916 |
-
#~ " * The following code assumes you have a folder 'add-ons' inside your "
|
2917 |
-
#~ "theme.\n"
|
2918 |
#~ " *\n"
|
2919 |
#~ " * IMPORTANT\n"
|
2920 |
-
#~ " * Add-ons may be included in a premium theme as outlined in the terms "
|
2921 |
-
#~ "and conditions.\n"
|
2922 |
#~ " * However, they are NOT to be included in a premium / free plugin.\n"
|
2923 |
-
#~ " * For more information, please read http://www.advancedcustomfields.com/"
|
2924 |
-
#~ "terms-conditions/\n"
|
2925 |
#~ " */"
|
2926 |
|
2927 |
#, fuzzy
|
@@ -2929,20 +2798,19 @@ msgstr ""
|
|
2929 |
#~ "/**\n"
|
2930 |
#~ " * Register Field Groups\n"
|
2931 |
#~ " *\n"
|
2932 |
-
#~ " * The register_field_group function accepts 1 array which holds the "
|
2933 |
-
#~ "
|
2934 |
-
#~ " * You may edit the array as you see fit. However, this may result in "
|
2935 |
-
#~ "
|
2936 |
#~ " */"
|
2937 |
#~ msgstr ""
|
2938 |
#~ "/**\n"
|
2939 |
#~ " * フィールドグループを登録する\n"
|
2940 |
-
#~ " * register_field_group
|
2941 |
-
#~ "
|
2942 |
-
#~ " * 配列を好きなように編集することができます。しかし、配列が ACF
|
2943 |
-
#~ "
|
2944 |
-
#~ " * このコードは、functions.php
|
2945 |
-
#~ "す。\n"
|
2946 |
#~ " */"
|
2947 |
|
2948 |
#~ msgid "No field groups were selected"
|
@@ -2961,10 +2829,8 @@ msgstr ""
|
|
2961 |
#~ msgid "Thank you for updating to the latest version!"
|
2962 |
#~ msgstr "最新版への更新ありがとうございます。"
|
2963 |
|
2964 |
-
#~ msgid ""
|
2965 |
-
#~
|
2966 |
-
#~ msgstr ""
|
2967 |
-
#~ "は以前よりも洗練され、より良くなりました。気に入ってもらえると嬉しいです。"
|
2968 |
|
2969 |
#~ msgid "What’s New"
|
2970 |
#~ msgstr "更新情報"
|
@@ -2977,32 +2843,26 @@ msgstr ""
|
|
2977 |
#~ msgstr "アクティベーションコードから、プラグインに変更されました。"
|
2978 |
|
2979 |
#~ msgid ""
|
2980 |
-
#~ "Add-ons are now activated by downloading and installing individual "
|
2981 |
-
#~ "
|
2982 |
-
#~ "
|
2983 |
#~ msgstr ""
|
2984 |
-
#~ "アドオンは、個別のプラグインをダウンロードしてインストールしてください。"
|
2985 |
-
#~ "
|
2986 |
-
#~ "を行う事が出来ます。"
|
2987 |
|
2988 |
#~ msgid "All previous Add-ons have been successfully installed"
|
2989 |
#~ msgstr "今まで使用していたアドオンがインストールされました。"
|
2990 |
|
2991 |
#~ msgid "This website uses premium Add-ons which need to be downloaded"
|
2992 |
#~ msgstr ""
|
2993 |
-
#~ "
|
2994 |
-
#~ "ロードする必要があります。"
|
2995 |
|
2996 |
#, fuzzy
|
2997 |
#~ msgid "Download your activated Add-ons"
|
2998 |
#~ msgstr "アドオンを有効化する"
|
2999 |
|
3000 |
-
#~ msgid ""
|
3001 |
-
#~
|
3002 |
-
#~ "this change."
|
3003 |
-
#~ msgstr ""
|
3004 |
-
#~ "このウェブサイトではプレミアムアドオンを使用しておらず、この変更に影響され"
|
3005 |
-
#~ "ません。"
|
3006 |
|
3007 |
#~ msgid "Easier Development"
|
3008 |
#~ msgstr "開発を容易に"
|
@@ -3032,11 +2892,11 @@ msgstr ""
|
|
3032 |
#~ msgstr "カスタムフィールド"
|
3033 |
|
3034 |
#~ msgid ""
|
3035 |
-
#~ "Creating your own field type has never been easier! Unfortunately, "
|
3036 |
-
#~ "
|
3037 |
#~ msgstr ""
|
3038 |
-
#~ "独自のフィールドタイプが簡単に作成できます。残念ですが、バージョン 3
|
3039 |
-
#~ "
|
3040 |
|
3041 |
#~ msgid "Migrating your field types is easy, please"
|
3042 |
#~ msgstr "フィールドタイプをマイグレーションするのは簡単です。"
|
@@ -3051,11 +2911,8 @@ msgstr ""
|
|
3051 |
#~ msgstr "アクションとフィルター"
|
3052 |
|
3053 |
#~ msgid ""
|
3054 |
-
#~ "All actions & filters have received a major facelift to make customizing "
|
3055 |
-
#~
|
3056 |
-
#~ msgstr ""
|
3057 |
-
#~ "カスタマイズを簡単にするため、すべてのアクションとフィルターを改装しまし"
|
3058 |
-
#~ "た。"
|
3059 |
|
3060 |
#, fuzzy
|
3061 |
#~ msgid "read this guide"
|
@@ -3080,23 +2937,21 @@ msgstr ""
|
|
3080 |
#~ msgstr "データベース更新"
|
3081 |
|
3082 |
#~ msgid ""
|
3083 |
-
#~ "Absolutely <strong>no</strong> changes have been made to the database "
|
3084 |
-
#~ "
|
3085 |
-
#~ "without any issues."
|
3086 |
#~ msgstr ""
|
3087 |
-
#~ "バージョン 3 と 4
|
3088 |
-
#~ "
|
3089 |
|
3090 |
#~ msgid "Potential Issues"
|
3091 |
#~ msgstr "潜在的な問題"
|
3092 |
|
3093 |
#~ msgid ""
|
3094 |
-
#~ "Do to the sizable changes surounding Add-ons, field types and action/"
|
3095 |
-
#~ "
|
3096 |
-
#~ "read the full"
|
3097 |
#~ msgstr ""
|
3098 |
-
#~ "
|
3099 |
-
#~ "
|
3100 |
|
3101 |
#~ msgid "Migrating from v3 to v4"
|
3102 |
#~ msgstr "バージョン 3 から 4 への移行をごらんください。"
|
@@ -3108,8 +2963,7 @@ msgstr ""
|
|
3108 |
#~ msgstr "非常に重要"
|
3109 |
|
3110 |
#~ msgid ""
|
3111 |
-
#~ "If you updated the ACF plugin without prior knowledge of such changes, "
|
3112 |
-
#~ "please roll back to the latest"
|
3113 |
#~ msgstr "予備知識無しに更新してしまった場合は、"
|
3114 |
|
3115 |
#~ msgid "version 3"
|
@@ -3122,11 +2976,10 @@ msgstr ""
|
|
3122 |
#~ msgstr "ありがとうございます"
|
3123 |
|
3124 |
#~ msgid ""
|
3125 |
-
#~ "A <strong>BIG</strong> thank you to everyone who has helped test the "
|
3126 |
-
#~ "
|
3127 |
#~ msgstr ""
|
3128 |
-
#~ "バージョン 4
|
3129 |
-
#~ "さった皆さんに感謝します。"
|
3130 |
|
3131 |
#~ msgid "Without you all, this release would not have been possible!"
|
3132 |
#~ msgstr "皆さんの助けが無ければ、リリースすることはできなかったでしょう。"
|
@@ -3142,25 +2995,21 @@ msgstr ""
|
|
3142 |
#~ msgstr "概要"
|
3143 |
|
3144 |
#~ msgid ""
|
3145 |
-
#~ "Previously, all Add-ons were unlocked via an activation code (purchased "
|
3146 |
-
#~ "
|
3147 |
-
#~ "
|
3148 |
#~ msgstr ""
|
3149 |
-
#~ "
|
3150 |
-
#~ "
|
3151 |
-
#~ "ルする必要があります。"
|
3152 |
|
3153 |
-
#~ msgid ""
|
3154 |
-
#~ "This page will assist you in downloading and installing each available "
|
3155 |
-
#~ "Add-on."
|
3156 |
#~ msgstr "このページは、アドオンのダウンロードやインストールを手助けします。"
|
3157 |
|
3158 |
#, fuzzy
|
3159 |
#~ msgid "Available Add-ons"
|
3160 |
#~ msgstr "アドオンを有効化する"
|
3161 |
|
3162 |
-
#~ msgid ""
|
3163 |
-
#~ "The following Add-ons have been detected as activated on this website."
|
3164 |
#~ msgstr "以下のアドオンがこのウェブサイトで有効になっています。"
|
3165 |
|
3166 |
#~ msgid "Activation Code"
|
@@ -3182,13 +3031,10 @@ msgstr ""
|
|
3182 |
#~ msgid "Plugins > Add New > Upload"
|
3183 |
#~ msgstr "プラグイン > 新規追加 > アップロード"
|
3184 |
|
3185 |
-
#~ msgid ""
|
3186 |
-
#~ "Use the uploader to browse, select and install your Add-on (.zip file)"
|
3187 |
#~ msgstr "アドオンのファイルを選択してインストールする"
|
3188 |
|
3189 |
-
#~ msgid ""
|
3190 |
-
#~ "Once the plugin has been uploaded and installed, click the 'Activate "
|
3191 |
-
#~ "Plugin' link"
|
3192 |
#~ msgstr "アップロードできたら、有効化をクリックする"
|
3193 |
|
3194 |
#~ msgid "The Add-on is now installed and activated!"
|
@@ -3214,8 +3060,7 @@ msgstr ""
|
|
3214 |
#~ msgstr "フィールドオプション「タクソノミー」を変更"
|
3215 |
|
3216 |
#~ msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
3217 |
-
#~ msgstr ""
|
3218 |
-
#~ "ユーザーのカスタムフィールドを wp_options から wp_usermeta に変更する"
|
3219 |
|
3220 |
#~ msgid "blue : Blue"
|
3221 |
#~ msgstr "blue : 青"
|
@@ -3226,11 +3071,8 @@ msgstr ""
|
|
3226 |
#~ msgid "Save format"
|
3227 |
#~ msgstr "フォーマットを保存する"
|
3228 |
|
3229 |
-
#~ msgid ""
|
3230 |
-
#~ "
|
3231 |
-
#~ "via the API"
|
3232 |
-
#~ msgstr ""
|
3233 |
-
#~ "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します"
|
3234 |
|
3235 |
#~ msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
3236 |
#~ msgstr "最も良く用いられるフォーマットは \"yymmdd\" です。詳細は"
|
@@ -3241,9 +3083,7 @@ msgstr ""
|
|
3241 |
#~ msgid "This format will be seen by the user when entering a value"
|
3242 |
#~ msgstr "ユーザーが値を入力するときのフォーマット"
|
3243 |
|
3244 |
-
#~ msgid ""
|
3245 |
-
#~ "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more "
|
3246 |
-
#~ "about"
|
3247 |
#~ msgstr "よく使用されるのは、\"dd/mm/yy\" や \"mm/dd/yy\" です。詳細は"
|
3248 |
|
3249 |
#~ msgid "Dummy"
|
@@ -3319,8 +3159,8 @@ msgstr ""
|
|
3319 |
#~ msgstr "投稿タイプ"
|
3320 |
|
3321 |
#~ msgid ""
|
3322 |
-
#~ "All fields proceeding this \"tab field\" (or until another \"tab field\" "
|
3323 |
-
#~ "
|
3324 |
#~ msgstr "タブフィールドでフィールドを区切り、グループ化して表示します。"
|
3325 |
|
3326 |
#~ msgid "You can use multiple tabs to break up your fields into sections."
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:33+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: shogo kato <s_kato@crete.co.jp>\n"
|
9 |
"Language: ja_JP\n"
|
13 |
"X-Generator: Poedit 1.8.1\n"
|
14 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"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;"
|
17 |
+
"esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-WPHeader: acf.php\n"
|
20 |
"X-Textdomain-Support: yes\n"
|
33 |
msgid "Field Group"
|
34 |
msgstr "フィールドグループ"
|
35 |
|
36 |
+
#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517
|
|
|
37 |
msgid "Add New"
|
38 |
msgstr "新規追加"
|
39 |
|
65 |
msgid "No Field Groups found in Trash"
|
66 |
msgstr "ゴミ箱の中にフィールドグループは見つかりませんでした"
|
67 |
|
68 |
+
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519
|
|
|
69 |
msgid "Fields"
|
70 |
msgstr "フィールド"
|
71 |
|
81 |
msgid "Edit Field"
|
82 |
msgstr "フィールドを編集"
|
83 |
|
84 |
+
#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
|
|
85 |
msgid "New Field"
|
86 |
msgstr "新規フィールド"
|
87 |
|
164 |
msgid "copy"
|
165 |
msgstr "複製"
|
166 |
|
167 |
+
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67
|
168 |
+
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23
|
|
|
|
|
169 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
170 |
msgid "or"
|
171 |
msgstr "または"
|
254 |
msgid "Super Admin"
|
255 |
msgstr "ネットワーク管理者"
|
256 |
|
257 |
+
#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840
|
258 |
+
#: admin/field-group.php:847 admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
|
|
259 |
#: fields/image.php:226 pro/fields/gallery.php:653
|
260 |
msgid "All"
|
261 |
msgstr "全て"
|
325 |
msgid "Title"
|
326 |
msgstr "タイトル"
|
327 |
|
328 |
+
#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20
|
329 |
+
#: admin/views/update-network.php:28
|
330 |
msgid "Description"
|
331 |
msgstr ""
|
332 |
|
334 |
msgid "Status"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
|
|
338 |
msgid "Changelog"
|
339 |
msgstr "更新履歴"
|
340 |
|
354 |
msgid "Getting Started"
|
355 |
msgstr "はじめに"
|
356 |
|
357 |
+
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
|
|
358 |
msgid "Updates"
|
359 |
msgstr "アップデート"
|
360 |
|
390 |
msgid "Duplicate this item"
|
391 |
msgstr "この項目を複製"
|
392 |
|
393 |
+
#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58
|
394 |
+
#: pro/fields/flexible-content.php:516
|
395 |
msgid "Duplicate"
|
396 |
msgstr "複製"
|
397 |
|
424 |
msgid "What's New"
|
425 |
msgstr "新着情報"
|
426 |
|
427 |
+
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31
|
|
|
428 |
msgid "Tools"
|
429 |
msgstr ""
|
430 |
|
451 |
#: admin/settings-tools.php:323
|
452 |
#, php-format
|
453 |
msgid "<b>Success</b>. Import tool added %s field groups: %s"
|
454 |
+
msgstr "<b>成功</b> インポートツールは %s個 のフィールドグループを追加しました:%s"
|
|
|
455 |
|
456 |
#: admin/settings-tools.php:332
|
457 |
#, php-format
|
458 |
+
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
|
|
|
|
459 |
msgstr ""
|
460 |
+
"<b>警告</b> インポートツールは %s個 のフィールドグループが既に存在しているのを検出したため無視しました:"
|
461 |
+
"%s"
|
462 |
|
463 |
#: admin/update.php:113
|
464 |
msgid "Upgrade ACF"
|
480 |
msgid "Conditional Logic"
|
481 |
msgstr "条件判定"
|
482 |
|
483 |
+
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137
|
484 |
+
#: fields/checkbox.php:246 fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582
|
485 |
+
#: fields/post_object.php:434 fields/post_object.php:448 fields/select.php:411 fields/select.php:425
|
486 |
+
#: fields/select.php:439 fields/select.php:453 fields/tab.php:172 fields/taxonomy.php:770
|
487 |
+
#: fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
488 |
+
#: fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93
|
|
|
|
|
|
|
489 |
msgid "Yes"
|
490 |
msgstr "はい"
|
491 |
|
492 |
+
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138
|
493 |
+
#: fields/checkbox.php:247 fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583
|
494 |
+
#: fields/post_object.php:435 fields/post_object.php:449 fields/select.php:412 fields/select.php:426
|
495 |
+
#: fields/select.php:440 fields/select.php:454 fields/tab.php:173 fields/taxonomy.php:685
|
496 |
+
#: fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
|
|
|
|
497 |
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
498 |
#: pro/admin/views/settings-updates.php:103
|
499 |
msgid "No"
|
503 |
msgid "Show this field if"
|
504 |
msgstr "このフィールドグループの表示条件"
|
505 |
|
506 |
+
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88
|
|
|
507 |
msgid "is equal to"
|
508 |
msgstr "等しい"
|
509 |
|
510 |
+
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89
|
|
|
511 |
msgid "is not equal to"
|
512 |
msgstr "等しくない"
|
513 |
|
514 |
+
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118
|
|
|
515 |
msgid "and"
|
516 |
msgstr "and"
|
517 |
|
518 |
+
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133
|
|
|
519 |
msgid "Add rule group"
|
520 |
msgstr "ルールを追加"
|
521 |
|
547 |
msgid "Delete"
|
548 |
msgstr "削除"
|
549 |
|
550 |
+
#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886
|
|
|
551 |
msgid "Error"
|
552 |
msgstr "エラー"
|
553 |
|
628 |
msgstr "タイプ"
|
629 |
|
630 |
#: admin/views/field-group-fields.php:44
|
631 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
|
|
|
|
632 |
msgstr ""
|
633 |
+
"フィールドはありません。<strong>+ 新規追加</strong>ボタンをクリックして最初のフィールドを作成してくださ"
|
634 |
+
"い"
|
635 |
|
636 |
#: admin/views/field-group-fields.php:51
|
637 |
msgid "Drag and drop to reorder"
|
646 |
msgstr "ルール"
|
647 |
|
648 |
#: admin/views/field-group-locations.php:6
|
649 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
650 |
+
msgstr "どの編集画面でカスタムフィールドを表示するかを決定するルールを作成します。"
|
|
|
|
|
|
|
651 |
|
652 |
#: admin/views/field-group-locations.php:21
|
653 |
msgid "Show this field group if"
|
654 |
msgstr "このフィールドグループを表示する条件"
|
655 |
|
656 |
+
#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47
|
|
|
657 |
msgid "Post"
|
658 |
msgstr "投稿"
|
659 |
|
677 |
msgid "Post Taxonomy"
|
678 |
msgstr "投稿タクソノミー"
|
679 |
|
680 |
+
#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53
|
|
|
681 |
msgid "Page"
|
682 |
msgstr "ページ"
|
683 |
|
770 |
msgstr "上揃え"
|
771 |
|
772 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
773 |
+
msgid "Left aligned"
|
774 |
msgstr "左揃え"
|
775 |
|
776 |
#: admin/views/field-group-options.php:72
|
807 |
|
808 |
#: admin/views/field-group-options.php:110
|
809 |
msgid ""
|
810 |
+
"If multiple field groups appear on an edit screen, the first field group's options will be used (the "
|
811 |
+
"one with the lowest order number)"
|
812 |
msgstr ""
|
813 |
|
814 |
#: admin/views/field-group-options.php:117
|
881 |
|
882 |
#: admin/views/settings-info.php:10
|
883 |
#, php-format
|
884 |
+
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
|
|
|
|
885 |
msgstr ""
|
886 |
+
"アップグレードありがとうございます!ACF %s は規模、質ともに向上しています。気に入ってもらえたら幸いで"
|
887 |
+
"す。"
|
888 |
|
889 |
#: admin/views/settings-info.php:23
|
890 |
msgid "A smoother custom field experience"
|
896 |
|
897 |
#: admin/views/settings-info.php:29
|
898 |
msgid ""
|
899 |
+
"Including the popular Select2 library has improved both usability and speed across a number of field "
|
900 |
+
"types including post object, page link, taxonomy and select."
|
|
|
901 |
msgstr ""
|
902 |
+
"内蔵した人気のSelect2ライブラリによって、投稿オブジェクトやページリンク、タクソノミーなど多くのフィール"
|
903 |
+
"ドタイプにおける選択のユーザビリティと速度の両方を改善しました。"
|
|
|
904 |
|
905 |
#: admin/views/settings-info.php:33
|
906 |
msgid "Improved Design"
|
908 |
|
909 |
#: admin/views/settings-info.php:34
|
910 |
msgid ""
|
911 |
+
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are "
|
912 |
+
"seen on the gallery, relationship and oEmbed (new) fields!"
|
|
|
913 |
msgstr ""
|
914 |
+
"ACFがより良くなるよう、多くのフィールドのデザインを一新しました!目立った変化は、ギャラリーフィールドや"
|
915 |
+
"関連フィールド、(新しい)oEmbedフィールドでわかるでしょう!"
|
|
|
916 |
|
917 |
#: admin/views/settings-info.php:38
|
918 |
msgid "Improved Data"
|
920 |
|
921 |
#: admin/views/settings-info.php:39
|
922 |
msgid ""
|
923 |
+
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This "
|
924 |
+
"allows you to drag and drop fields in and out of parent fields!"
|
|
|
925 |
msgstr ""
|
926 |
+
"データ構造を再設計したことでサブフィールドは親フィールドから独立して存在できるようになりました。これに"
|
927 |
+
"よって親フィールドの内外にフィールドをドラッグアンドドロップできるます。"
|
|
|
928 |
|
929 |
#: admin/views/settings-info.php:45
|
930 |
msgid "Goodbye Add-ons. Hello PRO"
|
935 |
msgstr "ACF PRO紹介"
|
936 |
|
937 |
#: admin/views/settings-info.php:51
|
938 |
+
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
|
|
939 |
msgstr "我々はエキサイティングな方法で有料機能を提供することにしました!"
|
940 |
|
941 |
#: admin/views/settings-info.php:52
|
942 |
#, php-format
|
943 |
msgid ""
|
944 |
+
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both "
|
945 |
+
"personal and developer licenses available, premium functionality is more affordable and accessible than "
|
946 |
+
"ever before!"
|
947 |
msgstr ""
|
948 |
+
"4つのアドオンを<a href=\"%s\">ACFのPROバージョン</a>として組み合わせました。個人または開発者ライセンスに"
|
949 |
+
"よって、以前よりお手頃な価格で有料機能を利用できます!"
|
|
|
950 |
|
951 |
#: admin/views/settings-info.php:56
|
952 |
msgid "Powerful Features"
|
954 |
|
955 |
#: admin/views/settings-info.php:57
|
956 |
msgid ""
|
957 |
+
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful "
|
958 |
+
"gallery field and the ability to create extra admin options pages!"
|
|
|
959 |
msgstr ""
|
960 |
+
"ACF PROには、繰り返し可能なデータ、柔軟なコンテンツレイアウト、美しいギャラリーフィールド、オプション"
|
961 |
+
"ページを作成するなど、パワフルな機能が含まれています!"
|
|
|
962 |
|
963 |
#: admin/views/settings-info.php:58
|
964 |
#, php-format
|
972 |
#: admin/views/settings-info.php:63
|
973 |
#, php-format
|
974 |
msgid ""
|
975 |
+
"To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of "
|
976 |
+
"ACF PRO!"
|
977 |
msgstr ""
|
978 |
+
"簡単なアップグレードのために、<a href=\"%s\">ストアアカウントにログイン</a>してACF PROの無料コピーを申請"
|
979 |
+
"してください。"
|
980 |
|
981 |
#: admin/views/settings-info.php:64
|
982 |
#, php-format
|
983 |
msgid ""
|
984 |
+
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, "
|
985 |
+
"please contact our support team via the <a href=\"%s\">help desk</a>"
|
|
|
986 |
msgstr ""
|
987 |
+
"我々は多くの質問に応えるために<a href=\"%s\">アップグレードガイド</a>を用意していますが、もし質問がある"
|
988 |
+
"場合は<a href=\"%s\">ヘルプデスク</a>からサポートチームに連絡をしてください。"
|
|
|
989 |
|
990 |
#: admin/views/settings-info.php:72
|
991 |
msgid "Under the Hood"
|
997 |
|
998 |
#: admin/views/settings-info.php:78
|
999 |
msgid "ACF now saves its field settings as individual post objects"
|
1000 |
+
msgstr "ACFはそれぞれのフィールドを独立した投稿オブジェクトとして保存するようになりました。"
|
|
|
|
|
1001 |
|
1002 |
#: admin/views/settings-info.php:82
|
1003 |
msgid "More AJAX"
|
1005 |
|
1006 |
#: admin/views/settings-info.php:83
|
1007 |
msgid "More fields use AJAX powered search to speed up page loading"
|
1008 |
+
msgstr "ページの読み込み速度を高速化するために、より多くのフィールドがAJAXを利用するようになりました。"
|
|
|
|
|
1009 |
|
1010 |
#: admin/views/settings-info.php:87
|
1011 |
msgid "Local JSON"
|
1020 |
msgstr "より良いバージョンコントロール"
|
1021 |
|
1022 |
#: admin/views/settings-info.php:95
|
1023 |
+
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
1024 |
+
msgstr "新しいJSON形式の自動エクスポート機能は、フィールド設定のバージョンコントロールを可能にします。"
|
|
|
|
|
|
|
|
|
1025 |
|
1026 |
#: admin/views/settings-info.php:99
|
1027 |
msgid "Swapped XML for JSON"
|
1037 |
|
1038 |
#: admin/views/settings-info.php:105
|
1039 |
msgid "Fields can now be mapped to comments, widgets and all user forms!"
|
1040 |
+
msgstr "コメントとウィジェット、全てのユーザーのフォームにフィールドを追加できます。"
|
|
|
1041 |
|
1042 |
#: admin/views/settings-info.php:112
|
1043 |
msgid "A new field for embedding content has been added"
|
1056 |
msgstr "新しい設定"
|
1057 |
|
1058 |
#: admin/views/settings-info.php:122
|
1059 |
+
msgid "Field group settings have been added for label placement and instruction placement"
|
1060 |
+
msgstr "フィールドグループの設定に「ラベルの配置」と「説明の配置」を追加しています。"
|
|
|
|
|
|
|
1061 |
|
1062 |
#: admin/views/settings-info.php:128
|
1063 |
msgid "Better Front End Forms"
|
1080 |
msgstr "関連フィールド"
|
1081 |
|
1082 |
#: admin/views/settings-info.php:139
|
1083 |
+
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1084 |
+
msgstr "関連フィールドの新しい設定「フィルター」(検索、投稿タイプ、タクソノミー)。"
|
|
|
|
|
1085 |
|
1086 |
#: admin/views/settings-info.php:145
|
1087 |
msgid "Moving Fields"
|
1088 |
msgstr "フィールド移動"
|
1089 |
|
1090 |
#: admin/views/settings-info.php:146
|
1091 |
+
msgid "New field group functionality allows you to move a field between groups & parents"
|
|
|
|
|
1092 |
msgstr ""
|
1093 |
+
"新しいフィールドグループでは、フィールドが親フィールドやフィールドグループ間を移動することができます。"
|
|
|
1094 |
|
1095 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1096 |
msgid "Page Link"
|
1105 |
msgstr "より良いオプションページ"
|
1106 |
|
1107 |
#: admin/views/settings-info.php:156
|
1108 |
+
msgid "New functions for options page allow creation of both parent and child menu pages"
|
1109 |
+
msgstr "オプションページの新しい機能として、親と子の両方のメニューページを作ることができます。"
|
|
|
|
|
|
|
|
|
1110 |
|
1111 |
#: admin/views/settings-info.php:165
|
1112 |
#, php-format
|
1119 |
|
1120 |
#: admin/views/settings-tools-export.php:17
|
1121 |
msgid ""
|
1122 |
+
"The following code can be used to register a local version of the selected field group(s). A local "
|
1123 |
+
"field group can provide many benefits such as faster load times, version control & dynamic fields/"
|
1124 |
+
"settings. Simply copy and paste the following code to your theme's functions.php file or include it "
|
1125 |
+
"within an external file."
|
|
|
1126 |
msgstr ""
|
1127 |
+
"以下のコードは選択したフィールドグループのローカルバージョンとして登録に使えます。ローカルフィールドグ"
|
1128 |
+
"ループは読み込み時間の短縮やバージョンコントロール、動的なフィールド/設定など多くの利点があります。以下"
|
1129 |
+
"のコードをテーマのfunctions.phpや外部ファイルにコピー&ペーストしてください。"
|
|
|
1130 |
|
1131 |
#: admin/views/settings-tools.php:5
|
1132 |
msgid "Select Field Groups"
|
1138 |
|
1139 |
#: admin/views/settings-tools.php:38
|
1140 |
msgid ""
|
1141 |
+
"Select the field groups you would like to export and then select your export method. Use the download "
|
1142 |
+
"button to export to a .json file which you can then import to another ACF installation. Use the "
|
1143 |
+
"generate button to export to PHP code which you can place in your theme."
|
|
|
1144 |
msgstr ""
|
1145 |
+
"エクスポートしたいフィールドグループとエクスポート方法を選んでください。ダウンロードボタンでは別のACFを"
|
1146 |
+
"インストールした環境でインポートできるJSONファイルがエクスポートされます。生成ボタンではテーマ内で利用で"
|
1147 |
+
"きるPHPコードが生成されます。"
|
|
|
1148 |
|
1149 |
#: admin/views/settings-tools.php:50
|
1150 |
msgid "Download export file"
|
1160 |
|
1161 |
#: admin/views/settings-tools.php:67
|
1162 |
msgid ""
|
1163 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button "
|
1164 |
+
"below, ACF will import the field groups."
|
1165 |
msgstr ""
|
1166 |
+
"インポートしたいACFのJSONファイルを選択してください。下のインポートボタンをクリックすると、ACFはフィール"
|
1167 |
+
"ドグループをインポートします。"
|
1168 |
|
1169 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1170 |
msgid "Select File"
|
1180 |
|
1181 |
#: admin/views/update-network.php:10
|
1182 |
msgid ""
|
1183 |
+
"The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade "
|
1184 |
+
"Database”."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
1203 |
|
1204 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1205 |
msgid ""
|
1206 |
+
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to "
|
1207 |
+
"run the updater now?"
|
1208 |
+
msgstr "処理前にデータベースのバックアップを強く推奨します。アップデーターを実行してもよろしいですか?"
|
|
|
|
|
1209 |
|
1210 |
#: admin/views/update-network.php:157
|
1211 |
msgid "Upgrade complete"
|
1226 |
|
1227 |
#: admin/views/update-notice.php:25
|
1228 |
msgid ""
|
1229 |
+
"Before you start using the new awesome features, please update your database to the newest version."
|
1230 |
+
msgstr "素晴らしい新機能を利用する前にデータベースを最新バージョンに更新してください。"
|
|
|
|
|
|
|
1231 |
|
1232 |
#: admin/views/update.php:12
|
1233 |
msgid "Reading upgrade tasks..."
|
1329 |
msgid "jQuery"
|
1330 |
msgstr "jQuery"
|
1331 |
|
1332 |
+
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512
|
1333 |
+
#: pro/fields/repeater.php:392
|
1334 |
msgid "Layout"
|
1335 |
msgstr "レイアウト"
|
1336 |
|
1392 |
msgid "red : Red"
|
1393 |
msgstr "red : 赤"
|
1394 |
|
1395 |
+
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150
|
1396 |
+
#: fields/radio.php:222 fields/select.php:397 fields/text.php:148 fields/textarea.php:145
|
1397 |
+
#: fields/true_false.php:115 fields/url.php:117 fields/wysiwyg.php:345
|
|
|
1398 |
msgid "Default Value"
|
1399 |
msgstr "デフォルト値"
|
1400 |
|
1474 |
msgid "Email"
|
1475 |
msgstr "メール"
|
1476 |
|
1477 |
+
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149
|
1478 |
+
#: fields/textarea.php:146 fields/url.php:118 fields/wysiwyg.php:346
|
|
|
1479 |
msgid "Appears when creating a new post"
|
1480 |
msgstr "新規投稿を作成時に表示されます"
|
1481 |
|
1482 |
+
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157
|
1483 |
+
#: fields/textarea.php:154 fields/url.php:126
|
1484 |
msgid "Placeholder Text"
|
1485 |
msgstr "プレースホルダーのテキスト"
|
1486 |
|
1487 |
+
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158
|
1488 |
+
#: fields/textarea.php:155 fields/url.php:127
|
1489 |
msgid "Appears within the input"
|
1490 |
msgstr "入力欄に表示されます"
|
1491 |
|
1492 |
+
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
|
|
1493 |
msgid "Prepend"
|
1494 |
msgstr "先頭に追加"
|
1495 |
|
1496 |
+
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
|
|
1497 |
msgid "Appears before the input"
|
1498 |
msgstr "入力欄の先頭に表示されます"
|
1499 |
|
1500 |
+
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
|
|
1501 |
msgid "Append"
|
1502 |
msgstr "末尾に追加"
|
1503 |
|
1504 |
+
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
|
|
1505 |
msgid "Appears after the input"
|
1506 |
msgstr "入力欄の末尾に表示されます"
|
1507 |
|
1577 |
msgid "Restrict which files can be uploaded"
|
1578 |
msgstr "アップロード可能なファイルを制限"
|
1579 |
|
1580 |
+
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290
|
1581 |
+
#: pro/fields/gallery.php:684 pro/fields/gallery.php:717
|
1582 |
msgid "File size"
|
1583 |
msgstr "ファイルサイズ"
|
1584 |
|
1634 |
msgid "Set the initial zoom level"
|
1635 |
msgstr "マップ初期状態のズームレベル"
|
1636 |
|
1637 |
+
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262
|
1638 |
+
#: pro/fields/gallery.php:673 pro/fields/gallery.php:706
|
1639 |
msgid "Height"
|
1640 |
msgstr "高さ"
|
1641 |
|
1695 |
msgid "Shown when entering data"
|
1696 |
msgstr "投稿編集中に表示されます"
|
1697 |
|
1698 |
+
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695
|
|
|
1699 |
msgid "Restrict which images can be uploaded"
|
1700 |
msgstr "アップロード可能な画像を制限"
|
1701 |
|
1702 |
+
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665
|
1703 |
+
#: pro/fields/gallery.php:698
|
1704 |
msgid "Width"
|
1705 |
msgstr "幅"
|
1706 |
|
1770 |
msgid "Archives"
|
1771 |
msgstr "アーカイブ"
|
1772 |
|
1773 |
+
#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690
|
|
|
1774 |
msgid "Filter by Post Type"
|
1775 |
msgstr "投稿タイプで絞り込み"
|
1776 |
|
1777 |
+
#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698
|
|
|
1778 |
msgid "All post types"
|
1779 |
msgstr "全ての投稿タイプ"
|
1780 |
|
1781 |
+
#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704
|
|
|
1782 |
msgid "Filter by Taxonomy"
|
1783 |
msgstr "タクソノミーで絞り込み"
|
1784 |
|
1785 |
+
#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712
|
|
|
1786 |
msgid "All taxonomies"
|
1787 |
msgstr "全てのタクソノミー"
|
1788 |
|
1789 |
+
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765
|
1790 |
+
#: fields/user.php:452
|
1791 |
msgid "Allow Null?"
|
1792 |
msgstr "空の値を許可するか?"
|
1793 |
|
1794 |
+
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466
|
|
|
1795 |
msgid "Select multiple values?"
|
1796 |
msgstr "複数の値を選択できるか?"
|
1797 |
|
1799 |
msgid "Password"
|
1800 |
msgstr "パスワード"
|
1801 |
|
1802 |
+
#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769
|
|
|
1803 |
msgid "Post Object"
|
1804 |
msgstr "投稿オブジェクト"
|
1805 |
|
1909 |
|
1910 |
#: fields/tab.php:133
|
1911 |
msgid ""
|
1912 |
+
"The tab field will display incorrectly when added to a Table style repeater field or flexible content "
|
1913 |
+
"field layout"
|
1914 |
msgstr ""
|
1915 |
+
"このタブは、テーブルスタイルの繰り返しフィールドか柔軟コンテンツフィールドが追加された場合、正しく表示さ"
|
1916 |
+
"れません"
|
1917 |
|
1918 |
#: fields/tab.php:146
|
1919 |
+
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
1920 |
+
msgstr "\"タブ\" を使うとフィールドのグループ化によって編集画面をより整理できます。"
|
|
|
|
|
|
|
1921 |
|
1922 |
#: fields/tab.php:148
|
1923 |
msgid ""
|
1924 |
+
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped "
|
1925 |
+
"together using this field's label as the tab heading."
|
|
|
1926 |
msgstr ""
|
1927 |
+
"この\"タブ\" の後に続く(または別の \"タブ\" が定義されるまでの)全てのフィールドは、このフィールドのラ"
|
1928 |
+
"ベルがタブの見出しとなりグループ化されます。"
|
1929 |
|
1930 |
#: fields/tab.php:155
|
1931 |
msgid "Placement"
|
2158 |
|
2159 |
#: pro/admin/options-page.php:304
|
2160 |
msgid "No Custom Field Groups found for this options page. <a href=\"%s\">Create a Custom Field Group</a>"
|
2161 |
+
msgstr ""
|
2162 |
+
"このオプションページにカスタムフィールドグループがありません. <a href=\"%s\">カスタムフィールドグループ"
|
2163 |
+
"を作成</a>"
|
2164 |
|
2165 |
#: pro/admin/settings-updates.php:137
|
2166 |
msgid "<b>Error</b>. Could not connect to update server"
|
2192 |
|
2193 |
#: pro/admin/views/settings-updates.php:24
|
2194 |
msgid ""
|
2195 |
+
"To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
|
|
2196 |
msgstr ""
|
2197 |
+
"アップデートのロックを解除するには、以下にライセンスキーを入力してください。ライセンスキーを持っていない"
|
2198 |
+
"場合は、こちらを参照してください。"
|
2199 |
|
2200 |
#: pro/admin/views/settings-updates.php:24
|
2201 |
msgid "details & pricing"
|
2244 |
#: pro/core/updates.php:186
|
2245 |
#, php-format
|
2246 |
msgid ""
|
2247 |
+
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't "
|
2248 |
+
"have a licence key, please see <a href=\"%s\">details & pricing</a>"
|
|
|
2249 |
msgstr ""
|
2250 |
+
"アップデートを有効にするには、<a href=\"%s\">アップデート</a>ページにライセンスキーを入力してください。"
|
2251 |
+
"ライセンスキーを持っていない場合は、こちらを<a href=\"%s\">詳細と価格</a>参照してください。"
|
|
|
2252 |
|
2253 |
#: pro/fields/flexible-content.php:36
|
2254 |
msgid "Flexible Content"
|
2288 |
|
2289 |
#: pro/fields/flexible-content.php:52
|
2290 |
msgid "{available} {label} {identifier} available (max {max})"
|
2291 |
+
msgstr "あと{available}個 {identifier}には {label} を利用できます(最大 {max}個)"
|
|
|
2292 |
|
2293 |
#: pro/fields/flexible-content.php:53
|
2294 |
msgid "{required} {label} {identifier} required (min {min})"
|
2295 |
+
msgstr "あと{required}個 {identifier}には {label} を利用する必要があります(最小 {max}個)"
|
|
|
|
|
2296 |
|
2297 |
#: pro/fields/flexible-content.php:211
|
2298 |
#, php-format
|
2512 |
#~ msgstr "フィールドグループは、順番が小さいほうから大きいほうへ作成されます"
|
2513 |
|
2514 |
#~ msgid ""
|
2515 |
+
#~ "If multiple field groups appear on an edit screen, the first field group's options will be used. "
|
2516 |
+
#~ "(the one with the lowest order number)"
|
2517 |
#~ msgstr ""
|
2518 |
+
#~ "編集画面に複数のフィールドグループが表示される場合、最初の(=順番の最も小さい)フィールドグループのオ"
|
2519 |
+
#~ "プションが使用されます。"
|
2520 |
|
2521 |
#~ msgid "ACF PRO Required"
|
2522 |
#~ msgstr "ACF PROが必要です"
|
2523 |
|
2524 |
#~ msgid ""
|
2525 |
+
#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons "
|
2526 |
+
#~ "(%s) which are no longer compatible with ACF."
|
2527 |
#~ msgstr ""
|
2528 |
+
#~ "あなたに注意すべき問題があります:有料アドオン(%s)を利用したこのウェブサイトにACFはもはや対応してい"
|
2529 |
+
#~ "ません。"
|
2530 |
|
2531 |
+
#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!"
|
|
|
|
|
2532 |
#~ msgstr ""
|
2533 |
+
#~ "慌てないでください、プラグインをロールバックすることで今までどおりACFを使用し続けることができます!"
|
|
|
2534 |
|
2535 |
#~ msgid "Roll back to ACF v%s"
|
2536 |
#~ msgstr "ACF v%sにロールバックする"
|
2557 |
#~ msgid "Load & Save Terms to Post"
|
2558 |
#~ msgstr "ターム情報の読込/保存"
|
2559 |
|
2560 |
+
#~ msgid "Load value based on the post's terms and update the post's terms on save"
|
|
|
2561 |
#~ msgstr "投稿ターム情報を読み込み、保存時に反映させる"
|
2562 |
|
2563 |
#~ msgid "Top Level Page (parent of 0)"
|
2587 |
#~ msgid "Repeater Field"
|
2588 |
#~ msgstr "繰り返しフィールド"
|
2589 |
|
2590 |
+
#~ msgid "Create infinite rows of repeatable data with this versatile interface!"
|
2591 |
+
#~ msgstr "繰り返し挿入可能なフォームを、すてきなインターフェースで作成します。"
|
|
|
|
|
2592 |
|
2593 |
#~ msgid "Gallery Field"
|
2594 |
#~ msgstr "ギャラリーフィールド"
|
2603 |
#~ msgstr "柔軟コンテンツフィールド"
|
2604 |
|
2605 |
#~ msgid "Create unique designs with a flexible content layout manager!"
|
2606 |
+
#~ msgstr "柔軟なコンテンツレイアウト管理により、すてきなデザインを作成します。"
|
|
|
2607 |
|
2608 |
#~ msgid "Gravity Forms Field"
|
2609 |
#~ msgstr "Gravity Forms フィールド"
|
2637 |
#~ msgstr "Advanced Custom Fields"
|
2638 |
|
2639 |
#~ msgid ""
|
2640 |
+
#~ "The following Add-ons are available to increase the functionality of the Advanced Custom Fields "
|
2641 |
+
#~ "plugin."
|
2642 |
+
#~ msgstr "Advanced Custom Fields プラグインに機能を追加するアドオンが利用できます。"
|
|
|
2643 |
|
2644 |
#~ msgid ""
|
2645 |
+
#~ "Each Add-on can be installed as a separate plugin (receives updates) or included in your theme (does "
|
2646 |
+
#~ "not receive updates)."
|
2647 |
#~ msgstr ""
|
2648 |
+
#~ "それぞれのアドオンは、個別のプラグインとしてインストールする(管理画面で更新できる)か、テーマに含める"
|
2649 |
+
#~ "(管理画面で更新できない)かしてください。"
|
2650 |
|
2651 |
#~ msgid "Purchase & Install"
|
2652 |
#~ msgstr "購入してインストールする"
|
2660 |
|
2661 |
#, fuzzy
|
2662 |
#~ msgid "Select the field groups to be exported"
|
2663 |
+
#~ msgstr "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリックしてください"
|
|
|
|
|
2664 |
|
2665 |
#, fuzzy
|
2666 |
#~ msgid "Export to XML"
|
2670 |
#~ msgid "Export to PHP"
|
2671 |
#~ msgstr "フィールドグループを PHP 形式でエクスポートする"
|
2672 |
|
2673 |
+
#~ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
|
|
|
|
2674 |
#~ msgstr ""
|
2675 |
+
#~ "ACF は .xml 形式のエクスポートファイルを作成します。WP のインポートプラグインと互換性があります。"
|
|
|
2676 |
|
2677 |
#~ msgid ""
|
2678 |
+
#~ "Imported field groups <b>will</b> appear in the list of editable field groups. This is useful for "
|
2679 |
+
#~ "migrating fields groups between Wp websites."
|
2680 |
#~ msgstr ""
|
2681 |
+
#~ "インポートしたフィールドグループは、編集可能なフィールドグループの一覧に表示されます。WP ウェブサイト"
|
2682 |
+
#~ "間でフィールドグループを移行するのに役立ちます。"
|
|
|
2683 |
|
2684 |
#~ msgid "Select field group(s) from the list and click \"Export XML\""
|
2685 |
+
#~ msgstr "一覧からフィールドグループを選択し、\"XML をエクスポートする\" をクリックしてください"
|
|
|
|
|
2686 |
|
2687 |
#~ msgid "Save the .xml file when prompted"
|
2688 |
#~ msgstr "指示に従って .xml ファイルを保存してください"
|
2691 |
#~ msgstr "ツール » インポートと進み、WordPress を選択してください"
|
2692 |
|
2693 |
#~ msgid "Install WP import plugin if prompted"
|
2694 |
+
#~ msgstr "(インストールを促された場合は) WP インポートプラグインをインストールしてください"
|
|
|
|
|
2695 |
|
2696 |
#~ msgid "Upload and import your exported .xml file"
|
2697 |
#~ msgstr "エクスポートした .xml ファイルをアップロードし、インポートする"
|
2706 |
#~ msgstr "ACF は、テーマに含める PHP コードを作成します"
|
2707 |
|
2708 |
#~ msgid ""
|
2709 |
+
#~ "Registered field groups <b>will not</b> appear in the list of editable field groups. This is useful "
|
2710 |
+
#~ "for including fields in themes."
|
2711 |
#~ msgstr ""
|
2712 |
+
#~ "登録したフィールドグループは、編集可能なフィールドグループの一覧に<b>表示されません</b>。テーマに"
|
2713 |
+
#~ "フィールドを含めるときに役立ちます。"
|
2714 |
|
2715 |
#~ msgid ""
|
2716 |
+
#~ "Please note that if you export and register field groups within the same WP, you will see duplicate "
|
2717 |
+
#~ "fields on your edit screens. To fix this, please move the original field group to the trash or "
|
2718 |
+
#~ "remove the code from your functions.php file."
|
|
|
2719 |
#~ msgstr ""
|
2720 |
+
#~ "同一の WP でフィールドグループをエクスポートして登録する場合は、編集画面で重複フィールドになることに"
|
2721 |
+
#~ "注意してください。これを修正するには、元のフィールドグループをゴミ箱へ移動するか、functions.php ファ"
|
2722 |
+
#~ "イルからこのコードを除去してください。"
|
|
|
2723 |
|
2724 |
#~ msgid "Select field group(s) from the list and click \"Create PHP\""
|
2725 |
+
#~ msgstr "一覧からフィールドグループを選択し、\"PHP 形式のデータを作成する\" をクリックしてください。"
|
|
|
|
|
2726 |
|
2727 |
#~ msgid "Copy the PHP code generated"
|
2728 |
#~ msgstr "生成された PHP コードをコピーし、"
|
2730 |
#~ msgid "Paste into your functions.php file"
|
2731 |
#~ msgstr "functions.php に貼り付けてください"
|
2732 |
|
2733 |
+
#~ msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
2734 |
+
#~ msgstr "アドオンを有効化するには、最初の何行かのコードを編集して使用してください"
|
|
|
|
|
2735 |
|
2736 |
#~ msgid "Notes"
|
2737 |
#~ msgstr "注意"
|
2740 |
#~ msgstr "テーマに含める"
|
2741 |
|
2742 |
#~ msgid ""
|
2743 |
+
#~ "The Advanced Custom Fields plugin can be included within a theme. To do so, move the ACF plugin "
|
2744 |
+
#~ "inside your theme and add the following code to your functions.php file:"
|
|
|
2745 |
#~ msgstr ""
|
2746 |
+
#~ "Advanced Custom Fields プラグインは、テーマに含めることができます。プラグインをテーマ内に移動し、"
|
2747 |
+
#~ "functions.php に下記コードを追加してください。"
|
2748 |
|
2749 |
#~ msgid ""
|
2750 |
+
#~ "To remove all visual interfaces from the ACF plugin, you can use a constant to enable lite mode. Add "
|
2751 |
+
#~ "the following code to your functions.php file <b>before</b> the include_once code:"
|
|
|
2752 |
#~ msgstr ""
|
2753 |
+
#~ "Advanced Custom Fields プラグインのビジュアルインターフェースを取り除くには、定数を利用して「ライト"
|
2754 |
+
#~ "モード」を有効にすることができます。functions.php の include_once よりも<b>前</b>に下記のコードを追加"
|
2755 |
+
#~ "してください。"
|
2756 |
|
2757 |
#, fuzzy
|
2758 |
#~ msgid "Back to export"
|
2763 |
#~ " * Install Add-ons\n"
|
2764 |
#~ " * \n"
|
2765 |
#~ " * The following code will include all 4 premium Add-Ons in your theme.\n"
|
2766 |
+
#~ " * Please do not attempt to include a file which does not exist. This will produce an error.\n"
|
|
|
2767 |
#~ " * \n"
|
2768 |
#~ " * All fields must be included during the 'acf/register_fields' action.\n"
|
2769 |
+
#~ " * Other types of Add-ons (like the options page) can be included outside of this action.\n"
|
|
|
2770 |
#~ " * \n"
|
2771 |
+
#~ " * The following code assumes you have a folder 'add-ons' inside your theme.\n"
|
|
|
2772 |
#~ " *\n"
|
2773 |
#~ " * IMPORTANT\n"
|
2774 |
+
#~ " * Add-ons may be included in a premium theme as outlined in the terms and conditions.\n"
|
|
|
2775 |
#~ " * However, they are NOT to be included in a premium / free plugin.\n"
|
2776 |
+
#~ " * For more information, please read http://www.advancedcustomfields.com/terms-conditions/\n"
|
|
|
2777 |
#~ " */"
|
2778 |
#~ msgstr ""
|
2779 |
#~ "/**\n"
|
2780 |
#~ " * Install Add-ons\n"
|
2781 |
#~ " * \n"
|
2782 |
#~ " * The following code will include all 4 premium Add-Ons in your theme.\n"
|
2783 |
+
#~ " * Please do not attempt to include a file which does not exist. This will produce an error.\n"
|
|
|
2784 |
#~ " * \n"
|
2785 |
#~ " * All fields must be included during the 'acf/register_fields' action.\n"
|
2786 |
+
#~ " * Other types of Add-ons (like the options page) can be included outside of this action.\n"
|
|
|
2787 |
#~ " * \n"
|
2788 |
+
#~ " * The following code assumes you have a folder 'add-ons' inside your theme.\n"
|
|
|
2789 |
#~ " *\n"
|
2790 |
#~ " * IMPORTANT\n"
|
2791 |
+
#~ " * Add-ons may be included in a premium theme as outlined in the terms and conditions.\n"
|
|
|
2792 |
#~ " * However, they are NOT to be included in a premium / free plugin.\n"
|
2793 |
+
#~ " * For more information, please read http://www.advancedcustomfields.com/terms-conditions/\n"
|
|
|
2794 |
#~ " */"
|
2795 |
|
2796 |
#, fuzzy
|
2798 |
#~ "/**\n"
|
2799 |
#~ " * Register Field Groups\n"
|
2800 |
#~ " *\n"
|
2801 |
+
#~ " * The register_field_group function accepts 1 array which holds the relevant data to register a "
|
2802 |
+
#~ "field group\n"
|
2803 |
+
#~ " * You may edit the array as you see fit. However, this may result in errors if the array is not "
|
2804 |
+
#~ "compatible with ACF\n"
|
2805 |
#~ " */"
|
2806 |
#~ msgstr ""
|
2807 |
#~ "/**\n"
|
2808 |
#~ " * フィールドグループを登録する\n"
|
2809 |
+
#~ " * register_field_group 関数は、フィールドグループを登録するのに関係するデータを持っている一つの配列"
|
2810 |
+
#~ "を受け付けます。\n"
|
2811 |
+
#~ " * 配列を好きなように編集することができます。しかし、配列が ACF と互換性の無い場合、エラーになってし"
|
2812 |
+
#~ "まいます。\n"
|
2813 |
+
#~ " * このコードは、functions.php ファイルを読み込む度に実行する必要があります。\n"
|
|
|
2814 |
#~ " */"
|
2815 |
|
2816 |
#~ msgid "No field groups were selected"
|
2829 |
#~ msgid "Thank you for updating to the latest version!"
|
2830 |
#~ msgstr "最新版への更新ありがとうございます。"
|
2831 |
|
2832 |
+
#~ msgid "is more polished and enjoyable than ever before. We hope you like it."
|
2833 |
+
#~ msgstr "は以前よりも洗練され、より良くなりました。気に入ってもらえると嬉しいです。"
|
|
|
|
|
2834 |
|
2835 |
#~ msgid "What’s New"
|
2836 |
#~ msgstr "更新情報"
|
2843 |
#~ msgstr "アクティベーションコードから、プラグインに変更されました。"
|
2844 |
|
2845 |
#~ msgid ""
|
2846 |
+
#~ "Add-ons are now activated by downloading and installing individual plugins. Although these plugins "
|
2847 |
+
#~ "will not be hosted on the wordpress.org repository, each Add-on will continue to receive updates in "
|
2848 |
+
#~ "the usual way."
|
2849 |
#~ msgstr ""
|
2850 |
+
#~ "アドオンは、個別のプラグインをダウンロードしてインストールしてください。wordpress.org リポジトリには"
|
2851 |
+
#~ "ありませんが、管理画面でこれらのアドオンの更新を行う事が出来ます。"
|
|
|
2852 |
|
2853 |
#~ msgid "All previous Add-ons have been successfully installed"
|
2854 |
#~ msgstr "今まで使用していたアドオンがインストールされました。"
|
2855 |
|
2856 |
#~ msgid "This website uses premium Add-ons which need to be downloaded"
|
2857 |
#~ msgstr ""
|
2858 |
+
#~ "このウェブサイトではプレミアムアドオンが使用されており、アドオンをダウンロードする必要があります。"
|
|
|
2859 |
|
2860 |
#, fuzzy
|
2861 |
#~ msgid "Download your activated Add-ons"
|
2862 |
#~ msgstr "アドオンを有効化する"
|
2863 |
|
2864 |
+
#~ msgid "This website does not use premium Add-ons and will not be affected by this change."
|
2865 |
+
#~ msgstr "このウェブサイトではプレミアムアドオンを使用しておらず、この変更に影響されません。"
|
|
|
|
|
|
|
|
|
2866 |
|
2867 |
#~ msgid "Easier Development"
|
2868 |
#~ msgstr "開発を容易に"
|
2892 |
#~ msgstr "カスタムフィールド"
|
2893 |
|
2894 |
#~ msgid ""
|
2895 |
+
#~ "Creating your own field type has never been easier! Unfortunately, version 3 field types are not "
|
2896 |
+
#~ "compatible with version 4."
|
2897 |
#~ msgstr ""
|
2898 |
+
#~ "独自のフィールドタイプが簡単に作成できます。残念ですが、バージョン 3 とバージョン 4 には互換性があり"
|
2899 |
+
#~ "ません。"
|
2900 |
|
2901 |
#~ msgid "Migrating your field types is easy, please"
|
2902 |
#~ msgstr "フィールドタイプをマイグレーションするのは簡単です。"
|
2911 |
#~ msgstr "アクションとフィルター"
|
2912 |
|
2913 |
#~ msgid ""
|
2914 |
+
#~ "All actions & filters have received a major facelift to make customizing ACF even easier! Please"
|
2915 |
+
#~ msgstr "カスタマイズを簡単にするため、すべてのアクションとフィルターを改装しました。"
|
|
|
|
|
|
|
2916 |
|
2917 |
#, fuzzy
|
2918 |
#~ msgid "read this guide"
|
2937 |
#~ msgstr "データベース更新"
|
2938 |
|
2939 |
#~ msgid ""
|
2940 |
+
#~ "Absolutely <strong>no</strong> changes have been made to the database between versions 3 and 4. This "
|
2941 |
+
#~ "means you can roll back to version 3 without any issues."
|
|
|
2942 |
#~ msgstr ""
|
2943 |
+
#~ "バージョン 3 と 4 でデータベースの更新はありません。問題が発生した場合、バージョン 3 へのロールバック"
|
2944 |
+
#~ "を行うことができます。"
|
2945 |
|
2946 |
#~ msgid "Potential Issues"
|
2947 |
#~ msgstr "潜在的な問題"
|
2948 |
|
2949 |
#~ msgid ""
|
2950 |
+
#~ "Do to the sizable changes surounding Add-ons, field types and action/filters, your website may not "
|
2951 |
+
#~ "operate correctly. It is important that you read the full"
|
|
|
2952 |
#~ msgstr ""
|
2953 |
+
#~ "アドオン、フィールドタイプ、アクション/フィルターに関する変更のため、ウェブサイトが正常に動作しない"
|
2954 |
+
#~ "可能性があります。"
|
2955 |
|
2956 |
#~ msgid "Migrating from v3 to v4"
|
2957 |
#~ msgstr "バージョン 3 から 4 への移行をごらんください。"
|
2963 |
#~ msgstr "非常に重要"
|
2964 |
|
2965 |
#~ msgid ""
|
2966 |
+
#~ "If you updated the ACF plugin without prior knowledge of such changes, please roll back to the latest"
|
|
|
2967 |
#~ msgstr "予備知識無しに更新してしまった場合は、"
|
2968 |
|
2969 |
#~ msgid "version 3"
|
2976 |
#~ msgstr "ありがとうございます"
|
2977 |
|
2978 |
#~ msgid ""
|
2979 |
+
#~ "A <strong>BIG</strong> thank you to everyone who has helped test the version 4 beta and for all the "
|
2980 |
+
#~ "support I have received."
|
2981 |
#~ msgstr ""
|
2982 |
+
#~ "バージョン 4 ベータのテストに協力してくださった皆さん、サポートしてくださった皆さんに感謝します。"
|
|
|
2983 |
|
2984 |
#~ msgid "Without you all, this release would not have been possible!"
|
2985 |
#~ msgstr "皆さんの助けが無ければ、リリースすることはできなかったでしょう。"
|
2995 |
#~ msgstr "概要"
|
2996 |
|
2997 |
#~ msgid ""
|
2998 |
+
#~ "Previously, all Add-ons were unlocked via an activation code (purchased from the ACF Add-ons store). "
|
2999 |
+
#~ "New to v4, all Add-ons act as separate plugins which need to be individually downloaded, installed "
|
3000 |
+
#~ "and updated."
|
3001 |
#~ msgstr ""
|
3002 |
+
#~ "今までは、アドオンはアクティベーションコードでロック解除していました。バージョン 4 では、アドオンは個"
|
3003 |
+
#~ "別のプラグインとしてダウンロードしてインストールする必要があります。"
|
|
|
3004 |
|
3005 |
+
#~ msgid "This page will assist you in downloading and installing each available Add-on."
|
|
|
|
|
3006 |
#~ msgstr "このページは、アドオンのダウンロードやインストールを手助けします。"
|
3007 |
|
3008 |
#, fuzzy
|
3009 |
#~ msgid "Available Add-ons"
|
3010 |
#~ msgstr "アドオンを有効化する"
|
3011 |
|
3012 |
+
#~ msgid "The following Add-ons have been detected as activated on this website."
|
|
|
3013 |
#~ msgstr "以下のアドオンがこのウェブサイトで有効になっています。"
|
3014 |
|
3015 |
#~ msgid "Activation Code"
|
3031 |
#~ msgid "Plugins > Add New > Upload"
|
3032 |
#~ msgstr "プラグイン > 新規追加 > アップロード"
|
3033 |
|
3034 |
+
#~ msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
|
|
3035 |
#~ msgstr "アドオンのファイルを選択してインストールする"
|
3036 |
|
3037 |
+
#~ msgid "Once the plugin has been uploaded and installed, click the 'Activate Plugin' link"
|
|
|
|
|
3038 |
#~ msgstr "アップロードできたら、有効化をクリックする"
|
3039 |
|
3040 |
#~ msgid "The Add-on is now installed and activated!"
|
3060 |
#~ msgstr "フィールドオプション「タクソノミー」を変更"
|
3061 |
|
3062 |
#~ msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
3063 |
+
#~ msgstr "ユーザーのカスタムフィールドを wp_options から wp_usermeta に変更する"
|
|
|
3064 |
|
3065 |
#~ msgid "blue : Blue"
|
3066 |
#~ msgstr "blue : 青"
|
3071 |
#~ msgid "Save format"
|
3072 |
#~ msgstr "フォーマットを保存する"
|
3073 |
|
3074 |
+
#~ msgid "This format will determin the value saved to the database and returned via the API"
|
3075 |
+
#~ msgstr "このフォーマットは、値をデータベースに保存し、API で返す形式を決定します"
|
|
|
|
|
|
|
3076 |
|
3077 |
#~ msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
3078 |
#~ msgstr "最も良く用いられるフォーマットは \"yymmdd\" です。詳細は"
|
3083 |
#~ msgid "This format will be seen by the user when entering a value"
|
3084 |
#~ msgstr "ユーザーが値を入力するときのフォーマット"
|
3085 |
|
3086 |
+
#~ msgid "\"dd/mm/yy\" or \"mm/dd/yy\" are the most used Display Formats. Read more about"
|
|
|
|
|
3087 |
#~ msgstr "よく使用されるのは、\"dd/mm/yy\" や \"mm/dd/yy\" です。詳細は"
|
3088 |
|
3089 |
#~ msgid "Dummy"
|
3159 |
#~ msgstr "投稿タイプ"
|
3160 |
|
3161 |
#~ msgid ""
|
3162 |
+
#~ "All fields proceeding this \"tab field\" (or until another \"tab field\" is defined) will appear "
|
3163 |
+
#~ "grouped on the edit screen."
|
3164 |
#~ msgstr "タブフィールドでフィールドを区切り、グループ化して表示します。"
|
3165 |
|
3166 |
#~ msgid "You can use multiple tabs to break up your fields into sections."
|
lang/acf-nb_NO.mo
CHANGED
Binary file
|
lang/acf-nb_NO.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:33+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: nb_NO\n"
|
@@ -662,7 +662,7 @@ msgstr "Toppjustert"
|
|
662 |
|
663 |
#: includes/admin/views/field-group-options.php:63
|
664 |
#: includes/fields/class-acf-field-tab.php:117
|
665 |
-
msgid "Left
|
666 |
msgstr "Venstrejustert"
|
667 |
|
668 |
#: includes/admin/views/field-group-options.php:70
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:33+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: nb_NO\n"
|
662 |
|
663 |
#: includes/admin/views/field-group-options.php:63
|
664 |
#: includes/fields/class-acf-field-tab.php:117
|
665 |
+
msgid "Left aligned"
|
666 |
msgstr "Venstrejustert"
|
667 |
|
668 |
#: includes/admin/views/field-group-options.php:70
|
lang/acf-nl_NL.mo
CHANGED
Binary file
|
lang/acf-nl_NL.po
CHANGED
@@ -3,14 +3,14 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.6.6\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-11-22 15:53+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Derk Oosterveld <derk@derkoosterveld.nl>\n"
|
9 |
"Language: nl_NL\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
@@ -663,7 +663,7 @@ msgstr "Boven velden"
|
|
663 |
|
664 |
#: includes/admin/views/field-group-options.php:63
|
665 |
#: includes/fields/class-acf-field-tab.php:103
|
666 |
-
msgid "Left
|
667 |
msgstr "Links naast velden"
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1315,7 +1315,8 @@ msgstr "Relatie"
|
|
1315 |
msgid "jQuery"
|
1316 |
msgstr "jQuery"
|
1317 |
|
1318 |
-
#: includes/fields.php:149
|
|
|
1319 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1320 |
#: includes/fields/class-acf-field-group.php:474
|
1321 |
#: includes/fields/class-acf-field-radio.php:285
|
@@ -2627,8 +2628,8 @@ msgstr "Bewerk groep"
|
|
2627 |
msgid "Validate Email"
|
2628 |
msgstr "Valideer e-mail"
|
2629 |
|
2630 |
-
#: includes/forms/form-front.php:103
|
2631 |
-
#: pro/options-page.php:81
|
2632 |
msgid "Update"
|
2633 |
msgstr "Bijwerken"
|
2634 |
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.6.6\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-11-22 15:53+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Derk Oosterveld <derk@derkoosterveld.nl>\n"
|
9 |
"Language: nl_NL\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.1\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
663 |
|
664 |
#: includes/admin/views/field-group-options.php:63
|
665 |
#: includes/fields/class-acf-field-tab.php:103
|
666 |
+
msgid "Left aligned"
|
667 |
msgstr "Links naast velden"
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:70
|
1315 |
msgid "jQuery"
|
1316 |
msgstr "jQuery"
|
1317 |
|
1318 |
+
#: includes/fields.php:149
|
1319 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1320 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1321 |
#: includes/fields/class-acf-field-group.php:474
|
1322 |
#: includes/fields/class-acf-field-radio.php:285
|
2628 |
msgid "Validate Email"
|
2629 |
msgstr "Valideer e-mail"
|
2630 |
|
2631 |
+
#: includes/forms/form-front.php:103
|
2632 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2633 |
msgid "Update"
|
2634 |
msgstr "Bijwerken"
|
2635 |
|
lang/acf-pl_PL.mo
CHANGED
Binary file
|
lang/acf-pl_PL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:32+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
9 |
"Language: pl_PL\n"
|
@@ -674,7 +674,7 @@ msgstr "Wyrównanie do góry"
|
|
674 |
|
675 |
#: includes/admin/views/field-group-options.php:63
|
676 |
#: includes/fields/class-acf-field-tab.php:117
|
677 |
-
msgid "Left
|
678 |
msgstr "Wyrównanie do lewej"
|
679 |
|
680 |
#: includes/admin/views/field-group-options.php:70
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:32+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
9 |
"Language: pl_PL\n"
|
674 |
|
675 |
#: includes/admin/views/field-group-options.php:63
|
676 |
#: includes/fields/class-acf-field-tab.php:117
|
677 |
+
msgid "Left aligned"
|
678 |
msgstr "Wyrównanie do lewej"
|
679 |
|
680 |
#: includes/admin/views/field-group-options.php:70
|
lang/acf-pt_BR.mo
CHANGED
Binary file
|
lang/acf-pt_BR.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields PRO 5.4\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-11-22 09:03-0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Augusto Simão <augusto@ams.art.br>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -11,7 +11,7 @@ msgstr ""
|
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -745,7 +745,7 @@ msgstr "Alinhado ao Topo"
|
|
745 |
|
746 |
#: includes/admin/views/field-group-options.php:63
|
747 |
#: includes/fields/class-acf-field-tab.php:107
|
748 |
-
msgid "Left
|
749 |
msgstr "Alinhado à Esquerda"
|
750 |
|
751 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1333,7 +1333,8 @@ msgstr "Relacional"
|
|
1333 |
msgid "jQuery"
|
1334 |
msgstr "jQuery"
|
1335 |
|
1336 |
-
#: includes/fields.php:149
|
|
|
1337 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1338 |
#: includes/fields/class-acf-field-group.php:474
|
1339 |
#: includes/fields/class-acf-field-radio.php:285
|
@@ -2663,8 +2664,8 @@ msgstr "Editar Grupo de Campos"
|
|
2663 |
msgid "Validate Email"
|
2664 |
msgstr "Validar Email"
|
2665 |
|
2666 |
-
#: includes/forms/form-front.php:103
|
2667 |
-
#: pro/options-page.php:81
|
2668 |
msgid "Update"
|
2669 |
msgstr "Atualizar"
|
2670 |
|
3 |
"Project-Id-Version: Advanced Custom Fields PRO 5.4\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-11-22 09:03-0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Augusto Simão <augusto@ams.art.br>\n"
|
9 |
"Language: pt_BR\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
+
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
745 |
|
746 |
#: includes/admin/views/field-group-options.php:63
|
747 |
#: includes/fields/class-acf-field-tab.php:107
|
748 |
+
msgid "Left aligned"
|
749 |
msgstr "Alinhado à Esquerda"
|
750 |
|
751 |
#: includes/admin/views/field-group-options.php:70
|
1333 |
msgid "jQuery"
|
1334 |
msgstr "jQuery"
|
1335 |
|
1336 |
+
#: includes/fields.php:149
|
1337 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1338 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1339 |
#: includes/fields/class-acf-field-group.php:474
|
1340 |
#: includes/fields/class-acf-field-radio.php:285
|
2664 |
msgid "Validate Email"
|
2665 |
msgstr "Validar Email"
|
2666 |
|
2667 |
+
#: includes/forms/form-front.php:103
|
2668 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2669 |
msgid "Update"
|
2670 |
msgstr "Atualizar"
|
2671 |
|
lang/acf-pt_PT.mo
CHANGED
Binary file
|
lang/acf-pt_PT.po
CHANGED
@@ -4,16 +4,16 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields PRO\n"
|
6 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
-
"Last-Translator:
|
10 |
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language: pt_PT\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
@@ -37,7 +37,7 @@ msgid "Field Group"
|
|
37 |
msgstr "Grupo de campos"
|
38 |
|
39 |
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
40 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
41 |
msgid "Add New"
|
42 |
msgstr "Adicionar novo"
|
43 |
|
@@ -118,8 +118,8 @@ msgstr "Inactivo"
|
|
118 |
#, php-format
|
119 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
120 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
121 |
-
msgstr[0] "
|
122 |
-
msgstr[1] "
|
123 |
|
124 |
#: includes/admin/admin-field-group.php:68
|
125 |
#: includes/admin/admin-field-group.php:69
|
@@ -186,7 +186,7 @@ msgstr "cópia"
|
|
186 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
187 |
#: includes/admin/views/field-group-locations.php:29
|
188 |
#: includes/admin/views/html-location-group.php:3
|
189 |
-
#: includes/api/api-helpers.php:
|
190 |
msgid "or"
|
191 |
msgstr "ou"
|
192 |
|
@@ -353,7 +353,7 @@ msgstr "Duplicar este item"
|
|
353 |
#: includes/admin/admin-field-groups.php:667
|
354 |
#: includes/admin/admin-field-groups.php:683
|
355 |
#: includes/admin/views/field-group-field.php:49
|
356 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
357 |
msgid "Duplicate"
|
358 |
msgstr "Duplicar"
|
359 |
|
@@ -599,7 +599,7 @@ msgid "Delete field"
|
|
599 |
msgstr "Eliminar campo"
|
600 |
|
601 |
#: includes/admin/views/field-group-field.php:51
|
602 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
603 |
msgid "Delete"
|
604 |
msgstr "Eliminar"
|
605 |
|
@@ -666,13 +666,13 @@ msgstr "Ordem"
|
|
666 |
#: includes/fields/class-acf-field-checkbox.php:415
|
667 |
#: includes/fields/class-acf-field-radio.php:306
|
668 |
#: includes/fields/class-acf-field-select.php:432
|
669 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
670 |
msgid "Label"
|
671 |
msgstr "Legenda"
|
672 |
|
673 |
#: includes/admin/views/field-group-fields.php:6
|
674 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
675 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
676 |
msgid "Name"
|
677 |
msgstr "Nome"
|
678 |
|
@@ -747,7 +747,7 @@ msgstr "Alinhado acima"
|
|
747 |
|
748 |
#: includes/admin/views/field-group-options.php:63
|
749 |
#: includes/fields/class-acf-field-tab.php:107
|
750 |
-
msgid "Left
|
751 |
msgstr "Alinhado à esquerda"
|
752 |
|
753 |
#: includes/admin/views/field-group-options.php:70
|
@@ -979,7 +979,7 @@ msgstr "Instalado"
|
|
979 |
|
980 |
#: includes/admin/views/settings-info.php:3
|
981 |
msgid "Welcome to Advanced Custom Fields"
|
982 |
-
msgstr "Bem
|
983 |
|
984 |
#: includes/admin/views/settings-info.php:4
|
985 |
#, php-format
|
@@ -1216,7 +1216,7 @@ msgstr "Campo de relação"
|
|
1216 |
msgid ""
|
1217 |
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1218 |
msgstr ""
|
1219 |
-
"Nova definição 'Filtros' do campo Relação (
|
1220 |
"Taxonomia)."
|
1221 |
|
1222 |
#: includes/admin/views/settings-info.php:139
|
@@ -1257,58 +1257,58 @@ msgstr ""
|
|
1257 |
msgid "We think you'll love the changes in %s."
|
1258 |
msgstr "Pensamos que vai gostar das alterações na versão %s."
|
1259 |
|
1260 |
-
#: includes/api/api-helpers.php:
|
1261 |
msgid "Thumbnail"
|
1262 |
msgstr "Miniatura"
|
1263 |
|
1264 |
-
#: includes/api/api-helpers.php:
|
1265 |
msgid "Medium"
|
1266 |
msgstr "Média"
|
1267 |
|
1268 |
-
#: includes/api/api-helpers.php:
|
1269 |
msgid "Large"
|
1270 |
msgstr "Grande"
|
1271 |
|
1272 |
-
#: includes/api/api-helpers.php:
|
1273 |
msgid "Full Size"
|
1274 |
msgstr "Tamanho original"
|
1275 |
|
1276 |
-
#: includes/api/api-helpers.php:
|
1277 |
#: pro/fields/class-acf-field-clone.php:992
|
1278 |
msgid "(no title)"
|
1279 |
msgstr "(sem título)"
|
1280 |
|
1281 |
-
#: includes/api/api-helpers.php:
|
1282 |
#, php-format
|
1283 |
msgid "Image width must be at least %dpx."
|
1284 |
msgstr "A largura da imagem deve ser pelo menos de %dpx."
|
1285 |
|
1286 |
-
#: includes/api/api-helpers.php:
|
1287 |
#, php-format
|
1288 |
msgid "Image width must not exceed %dpx."
|
1289 |
msgstr "A largura da imagem não deve exceder os %dpx."
|
1290 |
|
1291 |
-
#: includes/api/api-helpers.php:
|
1292 |
#, php-format
|
1293 |
msgid "Image height must be at least %dpx."
|
1294 |
msgstr "A altura da imagem deve ser pelo menos de %dpx."
|
1295 |
|
1296 |
-
#: includes/api/api-helpers.php:
|
1297 |
#, php-format
|
1298 |
msgid "Image height must not exceed %dpx."
|
1299 |
msgstr "A altura da imagem não deve exceder os %dpx."
|
1300 |
|
1301 |
-
#: includes/api/api-helpers.php:
|
1302 |
#, php-format
|
1303 |
msgid "File size must be at least %s."
|
1304 |
msgstr "O tamanho do ficheiro deve ser pelo menos de %s."
|
1305 |
|
1306 |
-
#: includes/api/api-helpers.php:
|
1307 |
#, php-format
|
1308 |
msgid "File size must must not exceed %s."
|
1309 |
msgstr "O tamanho do ficheiro não deve exceder %s."
|
1310 |
|
1311 |
-
#: includes/api/api-helpers.php:
|
1312 |
#, php-format
|
1313 |
msgid "File type must be %s."
|
1314 |
msgstr "O tipo de ficheiro deve ser %s."
|
@@ -1333,13 +1333,14 @@ msgstr "Relacional"
|
|
1333 |
msgid "jQuery"
|
1334 |
msgstr "jQuery"
|
1335 |
|
1336 |
-
#: includes/fields.php:149
|
|
|
1337 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1338 |
#: includes/fields/class-acf-field-group.php:474
|
1339 |
#: includes/fields/class-acf-field-radio.php:285
|
1340 |
#: pro/fields/class-acf-field-clone.php:839
|
1341 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1342 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1343 |
#: pro/fields/class-acf-field-repeater.php:450
|
1344 |
msgid "Layout"
|
1345 |
msgstr "Layout"
|
@@ -1453,7 +1454,7 @@ msgstr "Valor por omissão"
|
|
1453 |
#: includes/fields/class-acf-field-url.php:101
|
1454 |
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1455 |
msgid "Appears when creating a new post"
|
1456 |
-
msgstr "
|
1457 |
|
1458 |
#: includes/fields/class-acf-field-button-group.php:183
|
1459 |
#: includes/fields/class-acf-field-checkbox.php:391
|
@@ -1740,7 +1741,7 @@ msgstr "Texto predefinido"
|
|
1740 |
#: includes/fields/class-acf-field-textarea.php:112
|
1741 |
#: includes/fields/class-acf-field-url.php:110
|
1742 |
msgid "Appears within the input"
|
1743 |
-
msgstr "
|
1744 |
|
1745 |
#: includes/fields/class-acf-field-email.php:136
|
1746 |
#: includes/fields/class-acf-field-number.php:145
|
@@ -1756,7 +1757,7 @@ msgstr "Preceder"
|
|
1756 |
#: includes/fields/class-acf-field-range.php:188
|
1757 |
#: includes/fields/class-acf-field-text.php:138
|
1758 |
msgid "Appears before the input"
|
1759 |
-
msgstr "
|
1760 |
|
1761 |
#: includes/fields/class-acf-field-email.php:145
|
1762 |
#: includes/fields/class-acf-field-number.php:154
|
@@ -1772,7 +1773,7 @@ msgstr "Suceder"
|
|
1772 |
#: includes/fields/class-acf-field-range.php:197
|
1773 |
#: includes/fields/class-acf-field-text.php:147
|
1774 |
msgid "Appears after the input"
|
1775 |
-
msgstr "
|
1776 |
|
1777 |
#: includes/fields/class-acf-field-file.php:25
|
1778 |
msgid "File"
|
@@ -1962,21 +1963,21 @@ msgstr "Especifica o estilo usado para mostrar os campos seleccionados."
|
|
1962 |
|
1963 |
#: includes/fields/class-acf-field-group.php:480
|
1964 |
#: pro/fields/class-acf-field-clone.php:845
|
1965 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1966 |
#: pro/fields/class-acf-field-repeater.php:458
|
1967 |
msgid "Block"
|
1968 |
msgstr "Bloco"
|
1969 |
|
1970 |
#: includes/fields/class-acf-field-group.php:481
|
1971 |
#: pro/fields/class-acf-field-clone.php:846
|
1972 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1973 |
#: pro/fields/class-acf-field-repeater.php:457
|
1974 |
msgid "Table"
|
1975 |
msgstr "Tabela"
|
1976 |
|
1977 |
#: includes/fields/class-acf-field-group.php:482
|
1978 |
#: pro/fields/class-acf-field-clone.php:847
|
1979 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1980 |
#: pro/fields/class-acf-field-repeater.php:459
|
1981 |
msgid "Row"
|
1982 |
msgstr "Linha"
|
@@ -2381,7 +2382,7 @@ msgstr "A carregar mais resultados…"
|
|
2381 |
#: includes/fields/class-acf-field-select.php:48
|
2382 |
msgctxt "Select2 JS searching"
|
2383 |
msgid "Searching…"
|
2384 |
-
msgstr "A
|
2385 |
|
2386 |
#: includes/fields/class-acf-field-select.php:49
|
2387 |
msgctxt "Select2 JS load_fail"
|
@@ -2527,7 +2528,7 @@ msgstr "Limite de caracteres"
|
|
2527 |
#: includes/fields/class-acf-field-text.php:156
|
2528 |
#: includes/fields/class-acf-field-textarea.php:121
|
2529 |
msgid "Leave blank for no limit"
|
2530 |
-
msgstr "Deixe em branco para
|
2531 |
|
2532 |
#: includes/fields/class-acf-field-textarea.php:25
|
2533 |
msgid "Text Area"
|
@@ -2659,8 +2660,8 @@ msgstr "Editar grupo de campos"
|
|
2659 |
msgid "Validate Email"
|
2660 |
msgstr "Validar email"
|
2661 |
|
2662 |
-
#: includes/forms/form-front.php:103
|
2663 |
-
#: pro/options-page.php:81
|
2664 |
msgid "Update"
|
2665 |
msgstr "Actualizar"
|
2666 |
|
@@ -3079,44 +3080,44 @@ msgstr "Remover layout"
|
|
3079 |
msgid "Click to toggle"
|
3080 |
msgstr "Clique para alternar"
|
3081 |
|
3082 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3083 |
msgid "Reorder Layout"
|
3084 |
msgstr "Reordenar layout"
|
3085 |
|
3086 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3087 |
msgid "Reorder"
|
3088 |
msgstr "Reordenar"
|
3089 |
|
3090 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3091 |
msgid "Delete Layout"
|
3092 |
msgstr "Eliminar layout"
|
3093 |
|
3094 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3095 |
msgid "Duplicate Layout"
|
3096 |
msgstr "Duplicar layout"
|
3097 |
|
3098 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3099 |
msgid "Add New Layout"
|
3100 |
msgstr "Adicionar novo layout"
|
3101 |
|
3102 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3103 |
msgid "Min"
|
3104 |
msgstr "Mín"
|
3105 |
|
3106 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3107 |
msgid "Max"
|
3108 |
msgstr "Máx"
|
3109 |
|
3110 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3111 |
#: pro/fields/class-acf-field-repeater.php:466
|
3112 |
msgid "Button Label"
|
3113 |
msgstr "Legenda do botão"
|
3114 |
|
3115 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3116 |
msgid "Minimum Layouts"
|
3117 |
msgstr "Mínimo de layouts"
|
3118 |
|
3119 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3120 |
msgid "Maximum Layouts"
|
3121 |
msgstr "Máximo de layouts"
|
3122 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields PRO\n"
|
6 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
7 |
+
"POT-Creation-Date: 2018-02-02 12:00+0000\n"
|
8 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
9 |
+
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
10 |
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language: pt_PT\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 1.8.1\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
37 |
msgstr "Grupo de campos"
|
38 |
|
39 |
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
40 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
41 |
msgid "Add New"
|
42 |
msgstr "Adicionar novo"
|
43 |
|
118 |
#, php-format
|
119 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
120 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
121 |
+
msgstr[0] "Inactivo <span class=\"count\">(%s)</span>"
|
122 |
+
msgstr[1] "Inactivos <span class=\"count\">(%s)</span>"
|
123 |
|
124 |
#: includes/admin/admin-field-group.php:68
|
125 |
#: includes/admin/admin-field-group.php:69
|
186 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
187 |
#: includes/admin/views/field-group-locations.php:29
|
188 |
#: includes/admin/views/html-location-group.php:3
|
189 |
+
#: includes/api/api-helpers.php:4001
|
190 |
msgid "or"
|
191 |
msgstr "ou"
|
192 |
|
353 |
#: includes/admin/admin-field-groups.php:667
|
354 |
#: includes/admin/admin-field-groups.php:683
|
355 |
#: includes/admin/views/field-group-field.php:49
|
356 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
357 |
msgid "Duplicate"
|
358 |
msgstr "Duplicar"
|
359 |
|
599 |
msgstr "Eliminar campo"
|
600 |
|
601 |
#: includes/admin/views/field-group-field.php:51
|
602 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
603 |
msgid "Delete"
|
604 |
msgstr "Eliminar"
|
605 |
|
666 |
#: includes/fields/class-acf-field-checkbox.php:415
|
667 |
#: includes/fields/class-acf-field-radio.php:306
|
668 |
#: includes/fields/class-acf-field-select.php:432
|
669 |
+
#: pro/fields/class-acf-field-flexible-content.php:584
|
670 |
msgid "Label"
|
671 |
msgstr "Legenda"
|
672 |
|
673 |
#: includes/admin/views/field-group-fields.php:6
|
674 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
675 |
+
#: pro/fields/class-acf-field-flexible-content.php:597
|
676 |
msgid "Name"
|
677 |
msgstr "Nome"
|
678 |
|
747 |
|
748 |
#: includes/admin/views/field-group-options.php:63
|
749 |
#: includes/fields/class-acf-field-tab.php:107
|
750 |
+
msgid "Left aligned"
|
751 |
msgstr "Alinhado à esquerda"
|
752 |
|
753 |
#: includes/admin/views/field-group-options.php:70
|
979 |
|
980 |
#: includes/admin/views/settings-info.php:3
|
981 |
msgid "Welcome to Advanced Custom Fields"
|
982 |
+
msgstr "Bem-vindo ao Advanced Custom Fields"
|
983 |
|
984 |
#: includes/admin/views/settings-info.php:4
|
985 |
#, php-format
|
1216 |
msgid ""
|
1217 |
"New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1218 |
msgstr ""
|
1219 |
+
"Nova definição 'Filtros' do campo Relação (Pesquisa, Tipo de conteúdo, "
|
1220 |
"Taxonomia)."
|
1221 |
|
1222 |
#: includes/admin/views/settings-info.php:139
|
1257 |
msgid "We think you'll love the changes in %s."
|
1258 |
msgstr "Pensamos que vai gostar das alterações na versão %s."
|
1259 |
|
1260 |
+
#: includes/api/api-helpers.php:900
|
1261 |
msgid "Thumbnail"
|
1262 |
msgstr "Miniatura"
|
1263 |
|
1264 |
+
#: includes/api/api-helpers.php:901
|
1265 |
msgid "Medium"
|
1266 |
msgstr "Média"
|
1267 |
|
1268 |
+
#: includes/api/api-helpers.php:902
|
1269 |
msgid "Large"
|
1270 |
msgstr "Grande"
|
1271 |
|
1272 |
+
#: includes/api/api-helpers.php:951
|
1273 |
msgid "Full Size"
|
1274 |
msgstr "Tamanho original"
|
1275 |
|
1276 |
+
#: includes/api/api-helpers.php:1292 includes/api/api-helpers.php:1865
|
1277 |
#: pro/fields/class-acf-field-clone.php:992
|
1278 |
msgid "(no title)"
|
1279 |
msgstr "(sem título)"
|
1280 |
|
1281 |
+
#: includes/api/api-helpers.php:3922
|
1282 |
#, php-format
|
1283 |
msgid "Image width must be at least %dpx."
|
1284 |
msgstr "A largura da imagem deve ser pelo menos de %dpx."
|
1285 |
|
1286 |
+
#: includes/api/api-helpers.php:3927
|
1287 |
#, php-format
|
1288 |
msgid "Image width must not exceed %dpx."
|
1289 |
msgstr "A largura da imagem não deve exceder os %dpx."
|
1290 |
|
1291 |
+
#: includes/api/api-helpers.php:3943
|
1292 |
#, php-format
|
1293 |
msgid "Image height must be at least %dpx."
|
1294 |
msgstr "A altura da imagem deve ser pelo menos de %dpx."
|
1295 |
|
1296 |
+
#: includes/api/api-helpers.php:3948
|
1297 |
#, php-format
|
1298 |
msgid "Image height must not exceed %dpx."
|
1299 |
msgstr "A altura da imagem não deve exceder os %dpx."
|
1300 |
|
1301 |
+
#: includes/api/api-helpers.php:3966
|
1302 |
#, php-format
|
1303 |
msgid "File size must be at least %s."
|
1304 |
msgstr "O tamanho do ficheiro deve ser pelo menos de %s."
|
1305 |
|
1306 |
+
#: includes/api/api-helpers.php:3971
|
1307 |
#, php-format
|
1308 |
msgid "File size must must not exceed %s."
|
1309 |
msgstr "O tamanho do ficheiro não deve exceder %s."
|
1310 |
|
1311 |
+
#: includes/api/api-helpers.php:4005
|
1312 |
#, php-format
|
1313 |
msgid "File type must be %s."
|
1314 |
msgstr "O tipo de ficheiro deve ser %s."
|
1333 |
msgid "jQuery"
|
1334 |
msgstr "jQuery"
|
1335 |
|
1336 |
+
#: includes/fields.php:149
|
1337 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1338 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1339 |
#: includes/fields/class-acf-field-group.php:474
|
1340 |
#: includes/fields/class-acf-field-radio.php:285
|
1341 |
#: pro/fields/class-acf-field-clone.php:839
|
1342 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
1343 |
+
#: pro/fields/class-acf-field-flexible-content.php:603
|
1344 |
#: pro/fields/class-acf-field-repeater.php:450
|
1345 |
msgid "Layout"
|
1346 |
msgstr "Layout"
|
1454 |
#: includes/fields/class-acf-field-url.php:101
|
1455 |
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1456 |
msgid "Appears when creating a new post"
|
1457 |
+
msgstr "Mostrado ao criar um novo conteúdo"
|
1458 |
|
1459 |
#: includes/fields/class-acf-field-button-group.php:183
|
1460 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1741 |
#: includes/fields/class-acf-field-textarea.php:112
|
1742 |
#: includes/fields/class-acf-field-url.php:110
|
1743 |
msgid "Appears within the input"
|
1744 |
+
msgstr "Mostrado dentro do campo"
|
1745 |
|
1746 |
#: includes/fields/class-acf-field-email.php:136
|
1747 |
#: includes/fields/class-acf-field-number.php:145
|
1757 |
#: includes/fields/class-acf-field-range.php:188
|
1758 |
#: includes/fields/class-acf-field-text.php:138
|
1759 |
msgid "Appears before the input"
|
1760 |
+
msgstr "Mostrado antes do campo"
|
1761 |
|
1762 |
#: includes/fields/class-acf-field-email.php:145
|
1763 |
#: includes/fields/class-acf-field-number.php:154
|
1773 |
#: includes/fields/class-acf-field-range.php:197
|
1774 |
#: includes/fields/class-acf-field-text.php:147
|
1775 |
msgid "Appears after the input"
|
1776 |
+
msgstr "Mostrado depois do campo"
|
1777 |
|
1778 |
#: includes/fields/class-acf-field-file.php:25
|
1779 |
msgid "File"
|
1963 |
|
1964 |
#: includes/fields/class-acf-field-group.php:480
|
1965 |
#: pro/fields/class-acf-field-clone.php:845
|
1966 |
+
#: pro/fields/class-acf-field-flexible-content.php:614
|
1967 |
#: pro/fields/class-acf-field-repeater.php:458
|
1968 |
msgid "Block"
|
1969 |
msgstr "Bloco"
|
1970 |
|
1971 |
#: includes/fields/class-acf-field-group.php:481
|
1972 |
#: pro/fields/class-acf-field-clone.php:846
|
1973 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
1974 |
#: pro/fields/class-acf-field-repeater.php:457
|
1975 |
msgid "Table"
|
1976 |
msgstr "Tabela"
|
1977 |
|
1978 |
#: includes/fields/class-acf-field-group.php:482
|
1979 |
#: pro/fields/class-acf-field-clone.php:847
|
1980 |
+
#: pro/fields/class-acf-field-flexible-content.php:615
|
1981 |
#: pro/fields/class-acf-field-repeater.php:459
|
1982 |
msgid "Row"
|
1983 |
msgstr "Linha"
|
2382 |
#: includes/fields/class-acf-field-select.php:48
|
2383 |
msgctxt "Select2 JS searching"
|
2384 |
msgid "Searching…"
|
2385 |
+
msgstr "A pesquisar…"
|
2386 |
|
2387 |
#: includes/fields/class-acf-field-select.php:49
|
2388 |
msgctxt "Select2 JS load_fail"
|
2528 |
#: includes/fields/class-acf-field-text.php:156
|
2529 |
#: includes/fields/class-acf-field-textarea.php:121
|
2530 |
msgid "Leave blank for no limit"
|
2531 |
+
msgstr "Deixe em branco para não limitar"
|
2532 |
|
2533 |
#: includes/fields/class-acf-field-textarea.php:25
|
2534 |
msgid "Text Area"
|
2660 |
msgid "Validate Email"
|
2661 |
msgstr "Validar email"
|
2662 |
|
2663 |
+
#: includes/forms/form-front.php:103
|
2664 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2665 |
msgid "Update"
|
2666 |
msgstr "Actualizar"
|
2667 |
|
3080 |
msgid "Click to toggle"
|
3081 |
msgstr "Clique para alternar"
|
3082 |
|
3083 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3084 |
msgid "Reorder Layout"
|
3085 |
msgstr "Reordenar layout"
|
3086 |
|
3087 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3088 |
msgid "Reorder"
|
3089 |
msgstr "Reordenar"
|
3090 |
|
3091 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3092 |
msgid "Delete Layout"
|
3093 |
msgstr "Eliminar layout"
|
3094 |
|
3095 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
3096 |
msgid "Duplicate Layout"
|
3097 |
msgstr "Duplicar layout"
|
3098 |
|
3099 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
3100 |
msgid "Add New Layout"
|
3101 |
msgstr "Adicionar novo layout"
|
3102 |
|
3103 |
+
#: pro/fields/class-acf-field-flexible-content.php:630
|
3104 |
msgid "Min"
|
3105 |
msgstr "Mín"
|
3106 |
|
3107 |
+
#: pro/fields/class-acf-field-flexible-content.php:643
|
3108 |
msgid "Max"
|
3109 |
msgstr "Máx"
|
3110 |
|
3111 |
+
#: pro/fields/class-acf-field-flexible-content.php:670
|
3112 |
#: pro/fields/class-acf-field-repeater.php:466
|
3113 |
msgid "Button Label"
|
3114 |
msgstr "Legenda do botão"
|
3115 |
|
3116 |
+
#: pro/fields/class-acf-field-flexible-content.php:679
|
3117 |
msgid "Minimum Layouts"
|
3118 |
msgstr "Mínimo de layouts"
|
3119 |
|
3120 |
+
#: pro/fields/class-acf-field-flexible-content.php:688
|
3121 |
msgid "Maximum Layouts"
|
3122 |
msgstr "Máximo de layouts"
|
3123 |
|
lang/acf-ro_RO.mo
CHANGED
Binary file
|
lang/acf-ro_RO.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-08-01 13:31+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: ro_RO\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
14 |
"2:1));\n"
|
15 |
-
"X-Generator: Poedit
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -668,7 +668,7 @@ msgstr "Aliniere Sus"
|
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:63
|
670 |
#: includes/fields/class-acf-field-tab.php:103
|
671 |
-
msgid "Left
|
672 |
msgstr "Aliniere Stanga"
|
673 |
|
674 |
#: includes/admin/views/field-group-options.php:70
|
@@ -2600,8 +2600,8 @@ msgstr "Editează Grupul de Câmpuri"
|
|
2600 |
msgid "Validate Email"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: includes/forms/form-front.php:103
|
2604 |
-
#: pro/options-page.php:81
|
2605 |
msgid "Update"
|
2606 |
msgstr "Actualizează"
|
2607 |
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-08-01 13:31+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language: ro_RO\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
14 |
"2:1));\n"
|
15 |
+
"X-Generator: Poedit 1.8.1\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:63
|
670 |
#: includes/fields/class-acf-field-tab.php:103
|
671 |
+
msgid "Left aligned"
|
672 |
msgstr "Aliniere Stanga"
|
673 |
|
674 |
#: includes/admin/views/field-group-options.php:70
|
2600 |
msgid "Validate Email"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: includes/forms/form-front.php:103
|
2604 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2605 |
msgid "Update"
|
2606 |
msgstr "Actualizează"
|
2607 |
|
lang/acf-ru_RU.mo
CHANGED
Binary file
|
lang/acf-ru_RU.po
CHANGED
@@ -3,14 +3,14 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-10-24 23:11+0300\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
15 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -669,7 +669,7 @@ msgstr "Вверху"
|
|
669 |
|
670 |
#: includes/admin/views/field-group-options.php:63
|
671 |
#: includes/fields/class-acf-field-tab.php:103
|
672 |
-
msgid "Left
|
673 |
msgstr "Слева"
|
674 |
|
675 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1322,7 +1322,8 @@ msgstr "Отношение"
|
|
1322 |
msgid "jQuery"
|
1323 |
msgstr "jQuery"
|
1324 |
|
1325 |
-
#: includes/fields.php:149
|
|
|
1326 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1327 |
#: includes/fields/class-acf-field-group.php:474
|
1328 |
#: includes/fields/class-acf-field-radio.php:285
|
@@ -2635,8 +2636,8 @@ msgstr "Редактировать группу полей"
|
|
2635 |
msgid "Validate Email"
|
2636 |
msgstr "Проверка Email"
|
2637 |
|
2638 |
-
#: includes/forms/form-front.php:103
|
2639 |
-
#: pro/options-page.php:81
|
2640 |
msgid "Update"
|
2641 |
msgstr "Обновить"
|
2642 |
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-10-24 23:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
+
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.1\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
15 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
669 |
|
670 |
#: includes/admin/views/field-group-options.php:63
|
671 |
#: includes/fields/class-acf-field-tab.php:103
|
672 |
+
msgid "Left aligned"
|
673 |
msgstr "Слева"
|
674 |
|
675 |
#: includes/admin/views/field-group-options.php:70
|
1322 |
msgid "jQuery"
|
1323 |
msgstr "jQuery"
|
1324 |
|
1325 |
+
#: includes/fields.php:149
|
1326 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1327 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1328 |
#: includes/fields/class-acf-field-group.php:474
|
1329 |
#: includes/fields/class-acf-field-radio.php:285
|
2636 |
msgid "Validate Email"
|
2637 |
msgstr "Проверка Email"
|
2638 |
|
2639 |
+
#: includes/forms/form-front.php:103
|
2640 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2641 |
msgid "Update"
|
2642 |
msgstr "Обновить"
|
2643 |
|
lang/acf-sk_SK.mo
CHANGED
Binary file
|
lang/acf-sk_SK.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:45+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: wp.sk <michal.vittek@wp.sk, ja@fajo.name>\n"
|
9 |
"Language: sk_SK\n"
|
@@ -13,9 +13,8 @@ msgstr ""
|
|
13 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
14 |
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
-
"
|
18 |
-
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
"X-Poedit-Basepath: ..\n"
|
20 |
"X-Poedit-WPHeader: acf.php\n"
|
21 |
"X-Textdomain-Support: yes\n"
|
@@ -34,8 +33,7 @@ msgstr "Skupiny polí"
|
|
34 |
msgid "Field Group"
|
35 |
msgstr "Skupina polí"
|
36 |
|
37 |
-
#: acf.php:207 acf.php:239 admin/admin.php:62
|
38 |
-
#: pro/fields/flexible-content.php:517
|
39 |
msgid "Add New"
|
40 |
msgstr "Pridať novú"
|
41 |
|
@@ -67,8 +65,7 @@ msgstr "Nenašla sa skupina polí "
|
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr "V koši sa nenašla skupina polí "
|
69 |
|
70 |
-
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213
|
71 |
-
#: admin/field-groups.php:519
|
72 |
msgid "Fields"
|
73 |
msgstr "Polia "
|
74 |
|
@@ -84,8 +81,7 @@ msgstr "Pridať nové pole"
|
|
84 |
msgid "Edit Field"
|
85 |
msgstr "Upraviť pole"
|
86 |
|
87 |
-
#: acf.php:242 admin/views/field-group-fields.php:18
|
88 |
-
#: admin/views/settings-info.php:111
|
89 |
msgid "New Field"
|
90 |
msgstr "Nové pole "
|
91 |
|
@@ -105,8 +101,7 @@ msgstr "Nenašli sa polia"
|
|
105 |
msgid "No Fields found in Trash"
|
106 |
msgstr "V koši sa nenašli polia"
|
107 |
|
108 |
-
#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583
|
109 |
-
#: admin/views/field-group-options.php:18
|
110 |
msgid "Disabled"
|
111 |
msgstr ""
|
112 |
|
@@ -170,10 +165,8 @@ msgstr "Nadpis skupiny poľa je povinný "
|
|
170 |
msgid "copy"
|
171 |
msgstr "kopírovať "
|
172 |
|
173 |
-
#: admin/field-group.php:181
|
174 |
-
#: admin/views/field-group-field-conditional-logic.php:
|
175 |
-
#: admin/views/field-group-field-conditional-logic.php:162
|
176 |
-
#: admin/views/field-group-locations.php:23
|
177 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
178 |
msgid "or"
|
179 |
msgstr "alebo"
|
@@ -262,10 +255,8 @@ msgstr "Zobrazenie administrácie"
|
|
262 |
msgid "Super Admin"
|
263 |
msgstr "Super Admin "
|
264 |
|
265 |
-
#: admin/field-group.php:818 admin/field-group.php:826
|
266 |
-
#: admin/field-group.php:
|
267 |
-
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235
|
268 |
-
#: fields/image.php:226 pro/fields/gallery.php:653
|
269 |
msgid "All"
|
270 |
msgstr "Všetky "
|
271 |
|
@@ -340,8 +331,8 @@ msgstr "Dostupná aktualizácia "
|
|
340 |
msgid "Title"
|
341 |
msgstr "Názov"
|
342 |
|
343 |
-
#: admin/field-groups.php:517 admin/views/field-group-options.php:98
|
344 |
-
#: admin/views/update-network.php:
|
345 |
msgid "Description"
|
346 |
msgstr ""
|
347 |
|
@@ -349,8 +340,7 @@ msgstr ""
|
|
349 |
msgid "Status"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin/field-groups.php:616 admin/settings-info.php:76
|
353 |
-
#: pro/admin/views/settings-updates.php:111
|
354 |
msgid "Changelog"
|
355 |
msgstr "Záznam zmien "
|
356 |
|
@@ -370,8 +360,7 @@ msgstr "Zdroje "
|
|
370 |
msgid "Getting Started"
|
371 |
msgstr "Začíname "
|
372 |
|
373 |
-
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73
|
374 |
-
#: pro/admin/views/settings-updates.php:17
|
375 |
msgid "Updates"
|
376 |
msgstr "Aktualizácie"
|
377 |
|
@@ -407,8 +396,8 @@ msgstr "Vytvoril "
|
|
407 |
msgid "Duplicate this item"
|
408 |
msgstr "Duplikovať toto pole "
|
409 |
|
410 |
-
#: admin/field-groups.php:673 admin/field-groups.php:685
|
411 |
-
#:
|
412 |
msgid "Duplicate"
|
413 |
msgstr "Duplikovať "
|
414 |
|
@@ -441,8 +430,7 @@ msgstr "Info"
|
|
441 |
msgid "What's New"
|
442 |
msgstr "Čo je nové "
|
443 |
|
444 |
-
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9
|
445 |
-
#: admin/views/settings-tools.php:31
|
446 |
msgid "Tools"
|
447 |
msgstr ""
|
448 |
|
@@ -473,12 +461,8 @@ msgstr "<b>Úspech</b>. Nástroj importu pridal %s skupiny polí: %s"
|
|
473 |
|
474 |
#: admin/settings-tools.php:332
|
475 |
#, php-format
|
476 |
-
msgid ""
|
477 |
-
"<b>
|
478 |
-
"been ignored: %s"
|
479 |
-
msgstr ""
|
480 |
-
"<b>Varovanie</b>. Nástroj importu zistil, že už exsituje %s polí skupín, "
|
481 |
-
"ktoré boli ignorované: %s"
|
482 |
|
483 |
#: admin/update.php:113
|
484 |
msgid "Upgrade ACF"
|
@@ -500,26 +484,19 @@ msgstr ""
|
|
500 |
msgid "Conditional Logic"
|
501 |
msgstr "Podmienená logika "
|
502 |
|
503 |
-
#: admin/views/field-group-field-conditional-logic.php:40
|
504 |
-
#:
|
505 |
-
#: fields/
|
506 |
-
#: fields/
|
507 |
-
#: fields/
|
508 |
-
#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784
|
509 |
-
#: fields/taxonomy.php:798 fields/taxonomy.php:812 fields/user.php:457
|
510 |
-
#: fields/user.php:471 fields/wysiwyg.php:384
|
511 |
-
#: pro/admin/views/settings-updates.php:93
|
512 |
msgid "Yes"
|
513 |
msgstr "Áno "
|
514 |
|
515 |
-
#: admin/views/field-group-field-conditional-logic.php:41
|
516 |
-
#:
|
517 |
-
#: fields/
|
518 |
-
#: fields/
|
519 |
-
#: fields/
|
520 |
-
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771
|
521 |
-
#: fields/taxonomy.php:785 fields/taxonomy.php:799 fields/taxonomy.php:813
|
522 |
-
#: fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
523 |
#: pro/admin/views/settings-updates.php:103
|
524 |
msgid "No"
|
525 |
msgstr "Nie"
|
@@ -528,23 +505,19 @@ msgstr "Nie"
|
|
528 |
msgid "Show this field if"
|
529 |
msgstr "Zobraziť toto pole ak"
|
530 |
|
531 |
-
#: admin/views/field-group-field-conditional-logic.php:111
|
532 |
-
#: admin/views/field-group-locations.php:88
|
533 |
msgid "is equal to"
|
534 |
msgstr "sa rovná "
|
535 |
|
536 |
-
#: admin/views/field-group-field-conditional-logic.php:112
|
537 |
-
#: admin/views/field-group-locations.php:89
|
538 |
msgid "is not equal to"
|
539 |
msgstr "sa nerovná"
|
540 |
|
541 |
-
#: admin/views/field-group-field-conditional-logic.php:149
|
542 |
-
#: admin/views/field-group-locations.php:118
|
543 |
msgid "and"
|
544 |
msgstr "a"
|
545 |
|
546 |
-
#: admin/views/field-group-field-conditional-logic.php:164
|
547 |
-
#: admin/views/field-group-locations.php:133
|
548 |
msgid "Add rule group"
|
549 |
msgstr "Pridať skupinu pravidiel "
|
550 |
|
@@ -576,8 +549,7 @@ msgstr "Vymazať pole"
|
|
576 |
msgid "Delete"
|
577 |
msgstr "Vymazať"
|
578 |
|
579 |
-
#: admin/views/field-group-field.php:68 fields/oembed.php:212
|
580 |
-
#: fields/taxonomy.php:886
|
581 |
msgid "Error"
|
582 |
msgstr "Chyba "
|
583 |
|
@@ -658,12 +630,8 @@ msgid "Type"
|
|
658 |
msgstr "Typ"
|
659 |
|
660 |
#: admin/views/field-group-fields.php:44
|
661 |
-
msgid ""
|
662 |
-
"
|
663 |
-
"first field."
|
664 |
-
msgstr ""
|
665 |
-
"Žiadne polia. Kliknite na tlačidlo <strong>+ Pridať pole</strong> pre "
|
666 |
-
"vytvorenie prvého poľa. "
|
667 |
|
668 |
#: admin/views/field-group-fields.php:51
|
669 |
msgid "Drag and drop to reorder"
|
@@ -678,19 +646,14 @@ msgid "Rules"
|
|
678 |
msgstr "Pravidlá "
|
679 |
|
680 |
#: admin/views/field-group-locations.php:6
|
681 |
-
msgid ""
|
682 |
-
"
|
683 |
-
"advanced custom fields"
|
684 |
-
msgstr ""
|
685 |
-
"Vytvorte súbor pravidiel určujúcich, ktoré obrazovky úprav budú používať "
|
686 |
-
"Vlastné polia"
|
687 |
|
688 |
#: admin/views/field-group-locations.php:21
|
689 |
msgid "Show this field group if"
|
690 |
msgstr "Zobraziť túto skupinu poľa ak "
|
691 |
|
692 |
-
#: admin/views/field-group-locations.php:41
|
693 |
-
#: admin/views/field-group-locations.php:47
|
694 |
msgid "Post"
|
695 |
msgstr "Príspevok "
|
696 |
|
@@ -714,8 +677,7 @@ msgstr "Kategória príspevku "
|
|
714 |
msgid "Post Taxonomy"
|
715 |
msgstr "Taxonómia príspevku "
|
716 |
|
717 |
-
#: admin/views/field-group-locations.php:49
|
718 |
-
#: admin/views/field-group-locations.php:53
|
719 |
msgid "Page"
|
720 |
msgstr "Stránka "
|
721 |
|
@@ -808,7 +770,7 @@ msgid "Top aligned"
|
|
808 |
msgstr "Zarovnané dohora"
|
809 |
|
810 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
811 |
-
msgid "Left
|
812 |
msgstr "Zarovnané vľavo"
|
813 |
|
814 |
#: admin/views/field-group-options.php:72
|
@@ -845,11 +807,11 @@ msgstr "<b>Vybrať</b> položky pre ich <b>skrytie</b> pred obrazovkou úprav."
|
|
845 |
|
846 |
#: admin/views/field-group-options.php:110
|
847 |
msgid ""
|
848 |
-
"If multiple field groups appear on an edit screen, the first field group's "
|
849 |
-
"
|
850 |
msgstr ""
|
851 |
-
"Ak viaceré skupiny polí sa zobrazia na obrazovke úprav, nastavenia prvej "
|
852 |
-
"
|
853 |
|
854 |
#: admin/views/field-group-options.php:117
|
855 |
msgid "Permalink"
|
@@ -921,12 +883,8 @@ msgstr "Víta vás Advanced Custom Fields "
|
|
921 |
|
922 |
#: admin/views/settings-info.php:10
|
923 |
#, php-format
|
924 |
-
msgid ""
|
925 |
-
"
|
926 |
-
"hope you like it."
|
927 |
-
msgstr ""
|
928 |
-
"Vďaka za zakutalizáciu! ACF %s je väčšie a lepšie než kedykoľvek predtým. "
|
929 |
-
"Dúfame, že sa vám páči."
|
930 |
|
931 |
#: admin/views/settings-info.php:23
|
932 |
msgid "A smoother custom field experience"
|
@@ -938,12 +896,11 @@ msgstr "Vylepšená použiteľnosť"
|
|
938 |
|
939 |
#: admin/views/settings-info.php:29
|
940 |
msgid ""
|
941 |
-
"Including the popular Select2 library has improved both usability and speed "
|
942 |
-
"
|
943 |
-
"and select."
|
944 |
msgstr ""
|
945 |
-
"Populárna knižnica Select2 obsahuje vylepšenú použiteľnosť a rýchlosť medzi "
|
946 |
-
"
|
947 |
|
948 |
#: admin/views/settings-info.php:33
|
949 |
msgid "Improved Design"
|
@@ -951,12 +908,11 @@ msgstr "Vylepšený dizajn"
|
|
951 |
|
952 |
#: admin/views/settings-info.php:34
|
953 |
msgid ""
|
954 |
-
"Many fields have undergone a visual refresh to make ACF look better than "
|
955 |
-
"
|
956 |
-
"(new) fields!"
|
957 |
msgstr ""
|
958 |
-
"Vela polí prebehlo grafickou úpravou. Teraz ACF vyzerá oveľa lepšie! Zmeny "
|
959 |
-
"
|
960 |
|
961 |
#: admin/views/settings-info.php:38
|
962 |
msgid "Improved Data"
|
@@ -964,12 +920,11 @@ msgstr "Vylepšené dáta"
|
|
964 |
|
965 |
#: admin/views/settings-info.php:39
|
966 |
msgid ""
|
967 |
-
"Redesigning the data architecture has allowed sub fields to live "
|
968 |
-
"
|
969 |
-
"and out of parent fields!"
|
970 |
msgstr ""
|
971 |
-
"Zmena dátovej architektúry priniesla nezávislosť odvodených polí od "
|
972 |
-
"nadradených
|
973 |
|
974 |
#: admin/views/settings-info.php:45
|
975 |
msgid "Goodbye Add-ons. Hello PRO"
|
@@ -980,21 +935,17 @@ msgid "Introducing ACF PRO"
|
|
980 |
msgstr "Pro verzia "
|
981 |
|
982 |
#: admin/views/settings-info.php:51
|
983 |
-
msgid ""
|
984 |
-
"
|
985 |
-
msgstr ""
|
986 |
-
"Prémiové funkcie modulu sme sa rozhodli poskytnúť vzrušujúcejším spôsobom!"
|
987 |
|
988 |
#: admin/views/settings-info.php:52
|
989 |
#, php-format
|
990 |
msgid ""
|
991 |
-
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro "
|
992 |
-
"
|
993 |
-
"premium functionality is more affordable and accessible than ever before!"
|
994 |
msgstr ""
|
995 |
-
"Všetky prémiové doplnky boli spojené do <a href=\"%s\">Pro verzie ACF</a>. "
|
996 |
-
"
|
997 |
-
"firemmných licencií!"
|
998 |
|
999 |
#: admin/views/settings-info.php:56
|
1000 |
msgid "Powerful Features"
|
@@ -1002,12 +953,10 @@ msgstr "Výkonné funkcie"
|
|
1002 |
|
1003 |
#: admin/views/settings-info.php:57
|
1004 |
msgid ""
|
1005 |
-
"ACF PRO contains powerful features such as repeatable data, flexible content "
|
1006 |
-
"
|
1007 |
-
"options pages!"
|
1008 |
msgstr ""
|
1009 |
-
"ACF PRO obsahuje opakovanie zadaných dát, flexibilné rozloženie obsahu, "
|
1010 |
-
"prekrásnu galériu a extra administračné stránky!"
|
1011 |
|
1012 |
#: admin/views/settings-info.php:58
|
1013 |
#, php-format
|
@@ -1020,23 +969,17 @@ msgstr "Ľahká aktualizácia"
|
|
1020 |
|
1021 |
#: admin/views/settings-info.php:63
|
1022 |
#, php-format
|
1023 |
-
msgid ""
|
1024 |
-
"
|
1025 |
-
"and claim a free copy of ACF PRO!"
|
1026 |
-
msgstr ""
|
1027 |
-
"Pre uľahčenie aktualizácie, <a href=\"%s\">prihláste sa do obchodu</a> a "
|
1028 |
-
"získajte zdarma ACF PRO!"
|
1029 |
|
1030 |
#: admin/views/settings-info.php:64
|
1031 |
#, php-format
|
1032 |
msgid ""
|
1033 |
-
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, "
|
1034 |
-
"
|
1035 |
-
"\">help desk</a>"
|
1036 |
msgstr ""
|
1037 |
-
"Napísali sme <a href=\"%s\">príručku k aktualizácii</a>. Zodpovedali sme "
|
1038 |
-
"
|
1039 |
-
"podporu</a>"
|
1040 |
|
1041 |
#: admin/views/settings-info.php:72
|
1042 |
msgid "Under the Hood"
|
@@ -1071,9 +1014,7 @@ msgid "Better version control"
|
|
1071 |
msgstr "Lepšia správa verzií"
|
1072 |
|
1073 |
#: admin/views/settings-info.php:95
|
1074 |
-
msgid ""
|
1075 |
-
"New auto export to JSON feature allows field settings to be version "
|
1076 |
-
"controlled"
|
1077 |
msgstr "Nový auto export JSON obsahuje kontrolu verzií povolených polí"
|
1078 |
|
1079 |
#: admin/views/settings-info.php:99
|
@@ -1109,12 +1050,8 @@ msgid "New Settings"
|
|
1109 |
msgstr "Nové nastavenia"
|
1110 |
|
1111 |
#: admin/views/settings-info.php:122
|
1112 |
-
msgid ""
|
1113 |
-
"
|
1114 |
-
"placement"
|
1115 |
-
msgstr ""
|
1116 |
-
"Boli pridané nastavenie skupiny pola pre umiestnenie oznčenia a umietsntenie "
|
1117 |
-
"inštrukcií"
|
1118 |
|
1119 |
#: admin/views/settings-info.php:128
|
1120 |
msgid "Better Front End Forms"
|
@@ -1137,22 +1074,16 @@ msgid "Relationship Field"
|
|
1137 |
msgstr "Vzťah polí"
|
1138 |
|
1139 |
#: admin/views/settings-info.php:139
|
1140 |
-
msgid ""
|
1141 |
-
"
|
1142 |
-
msgstr ""
|
1143 |
-
"Nový nastavenie vťahov pola 'FIltre' (vyhľadávanie, typ článku, taxonómia)"
|
1144 |
|
1145 |
#: admin/views/settings-info.php:145
|
1146 |
msgid "Moving Fields"
|
1147 |
msgstr "Hýbajúce polia"
|
1148 |
|
1149 |
#: admin/views/settings-info.php:146
|
1150 |
-
msgid ""
|
1151 |
-
"
|
1152 |
-
"parents"
|
1153 |
-
msgstr ""
|
1154 |
-
"Nová skupinová funkcionalita vám dovolí presúvať polia medzi skupinami a "
|
1155 |
-
"nadradenými poliami"
|
1156 |
|
1157 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1158 |
msgid "Page Link"
|
@@ -1167,12 +1098,8 @@ msgid "Better Options Pages"
|
|
1167 |
msgstr "Lepšie nastavenia stránok"
|
1168 |
|
1169 |
#: admin/views/settings-info.php:156
|
1170 |
-
msgid ""
|
1171 |
-
"
|
1172 |
-
"pages"
|
1173 |
-
msgstr ""
|
1174 |
-
"Nové funkcie nastavenia stránky vám dovolí vytvorenie vytvorenie menu "
|
1175 |
-
"nadradených aj odvodených stránok"
|
1176 |
|
1177 |
#: admin/views/settings-info.php:165
|
1178 |
#, php-format
|
@@ -1185,16 +1112,13 @@ msgstr "Export skupiny poľa do PHP "
|
|
1185 |
|
1186 |
#: admin/views/settings-tools-export.php:17
|
1187 |
msgid ""
|
1188 |
-
"The following code can be used to register a local version of the selected "
|
1189 |
-
"
|
1190 |
-
"
|
1191 |
-
"the following code to your theme's functions.php file or include it within "
|
1192 |
-
"an external file."
|
1193 |
msgstr ""
|
1194 |
-
"Nasledujúci kód môže byť použitý pre miestnu veru vybraných polí skupín. "
|
1195 |
-
"
|
1196 |
-
"
|
1197 |
-
"súboru funkcií vašej témy functions.php alebo ich zahrňte v externom súbore."
|
1198 |
|
1199 |
#: admin/views/settings-tools.php:5
|
1200 |
msgid "Select Field Groups"
|
@@ -1206,15 +1130,13 @@ msgstr "Export skupín polí "
|
|
1206 |
|
1207 |
#: admin/views/settings-tools.php:38
|
1208 |
msgid ""
|
1209 |
-
"Select the field groups you would like to export and then select your export "
|
1210 |
-
"
|
1211 |
-
"
|
1212 |
-
"code which you can place in your theme."
|
1213 |
msgstr ""
|
1214 |
-
"Vyberte skupiny polí, ktoré chcete exportovať. Vyberte vhodnú metódu "
|
1215 |
-
"
|
1216 |
-
"
|
1217 |
-
"ktorý použijete vo vašej téme."
|
1218 |
|
1219 |
#: admin/views/settings-tools.php:50
|
1220 |
msgid "Download export file"
|
@@ -1230,11 +1152,9 @@ msgstr "Importovať skupiny poľa"
|
|
1230 |
|
1231 |
#: admin/views/settings-tools.php:67
|
1232 |
msgid ""
|
1233 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
1234 |
-
"
|
1235 |
-
msgstr ""
|
1236 |
-
"Vyberte JSON súbor ACF na import. Po kliknutí na tlačidlo import sa nahrajú "
|
1237 |
-
"všetky skupiny polí ACF."
|
1238 |
|
1239 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1240 |
msgid "Select File"
|
@@ -1249,9 +1169,7 @@ msgid "Advanced Custom Fields Database Upgrade"
|
|
1249 |
msgstr ""
|
1250 |
|
1251 |
#: admin/views/update-network.php:10
|
1252 |
-
msgid ""
|
1253 |
-
"The following sites require a DB upgrade. Check the ones you want to update "
|
1254 |
-
"and then click “Upgrade Database”."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
@@ -1273,11 +1191,8 @@ msgstr ""
|
|
1273 |
|
1274 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1275 |
msgid ""
|
1276 |
-
"It is strongly recommended that you backup your database before proceeding. "
|
1277 |
-
"
|
1278 |
-
msgstr ""
|
1279 |
-
"Pred aktualizáciou odporúčame zálohovať databázu. Želáte si aktualizáciu "
|
1280 |
-
"spustiť teraz?"
|
1281 |
|
1282 |
#: admin/views/update-network.php:157
|
1283 |
msgid "Upgrade complete"
|
@@ -1297,12 +1212,8 @@ msgid "Thank you for updating to %s v%s!"
|
|
1297 |
msgstr "Vďaka za aktualizáciu %s v%s!"
|
1298 |
|
1299 |
#: admin/views/update-notice.php:25
|
1300 |
-
msgid ""
|
1301 |
-
"
|
1302 |
-
"to the newest version."
|
1303 |
-
msgstr ""
|
1304 |
-
"Než začnete používať nové funkcie, prosím najprv aktualizujte vašu databázu "
|
1305 |
-
"na najnovšiu verziu."
|
1306 |
|
1307 |
#: admin/views/update.php:12
|
1308 |
msgid "Reading upgrade tasks..."
|
@@ -1404,8 +1315,8 @@ msgstr "Relačný "
|
|
1404 |
msgid "jQuery"
|
1405 |
msgstr "jQuery "
|
1406 |
|
1407 |
-
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231
|
1408 |
-
#: pro/fields/
|
1409 |
msgid "Layout"
|
1410 |
msgstr "Rozmiestnenie"
|
1411 |
|
@@ -1467,10 +1378,9 @@ msgstr "Pre lepšiu kontrolu, môžete určiť hodnotu a popis takto:"
|
|
1467 |
msgid "red : Red"
|
1468 |
msgstr "červená : Červená "
|
1469 |
|
1470 |
-
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124
|
1471 |
-
#: fields/
|
1472 |
-
#: fields/
|
1473 |
-
#: fields/url.php:117 fields/wysiwyg.php:345
|
1474 |
msgid "Default Value"
|
1475 |
msgstr "Základná hodnota "
|
1476 |
|
@@ -1550,39 +1460,34 @@ msgstr "Týždeň začína "
|
|
1550 |
msgid "Email"
|
1551 |
msgstr "E-Mail "
|
1552 |
|
1553 |
-
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223
|
1554 |
-
#: fields/
|
1555 |
-
#: fields/wysiwyg.php:346
|
1556 |
msgid "Appears when creating a new post"
|
1557 |
msgstr "Zobrazí sa pri vytvorení nového príspevku "
|
1558 |
|
1559 |
-
#: fields/email.php:133 fields/number.php:159 fields/password.php:137
|
1560 |
-
#: fields/
|
1561 |
msgid "Placeholder Text"
|
1562 |
msgstr "Zástupný text "
|
1563 |
|
1564 |
-
#: fields/email.php:134 fields/number.php:160 fields/password.php:138
|
1565 |
-
#: fields/
|
1566 |
msgid "Appears within the input"
|
1567 |
msgstr "Zobrazí sa vo vstupe"
|
1568 |
|
1569 |
-
#: fields/email.php:142 fields/number.php:168 fields/password.php:146
|
1570 |
-
#: fields/text.php:166
|
1571 |
msgid "Prepend"
|
1572 |
msgstr "Predpona"
|
1573 |
|
1574 |
-
#: fields/email.php:143 fields/number.php:169 fields/password.php:147
|
1575 |
-
#: fields/text.php:167
|
1576 |
msgid "Appears before the input"
|
1577 |
msgstr "Zobrazí sa pred vstupom"
|
1578 |
|
1579 |
-
#: fields/email.php:151 fields/number.php:177 fields/password.php:155
|
1580 |
-
#: fields/text.php:175
|
1581 |
msgid "Append"
|
1582 |
msgstr "Prípona"
|
1583 |
|
1584 |
-
#: fields/email.php:152 fields/number.php:178 fields/password.php:156
|
1585 |
-
#: fields/text.php:176
|
1586 |
msgid "Appears after the input"
|
1587 |
msgstr "Zobrazí sa po vstupe"
|
1588 |
|
@@ -1658,8 +1563,8 @@ msgstr "Minimálny počet"
|
|
1658 |
msgid "Restrict which files can be uploaded"
|
1659 |
msgstr "Vymedzte, ktoré súbory je možné nahrať"
|
1660 |
|
1661 |
-
#: fields/file.php:247 fields/file.php:258 fields/image.php:257
|
1662 |
-
#:
|
1663 |
msgid "File size"
|
1664 |
msgstr "Veľkosť súboru "
|
1665 |
|
@@ -1715,8 +1620,8 @@ msgstr "Zoom"
|
|
1715 |
msgid "Set the initial zoom level"
|
1716 |
msgstr "Nastavte základnú úroveň priblíženia"
|
1717 |
|
1718 |
-
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279
|
1719 |
-
#:
|
1720 |
msgid "Height"
|
1721 |
msgstr "Výška "
|
1722 |
|
@@ -1776,13 +1681,11 @@ msgstr "Veľkosť náhľadu "
|
|
1776 |
msgid "Shown when entering data"
|
1777 |
msgstr "Zobrazené pri zadávaní dát "
|
1778 |
|
1779 |
-
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662
|
1780 |
-
#: pro/fields/gallery.php:695
|
1781 |
msgid "Restrict which images can be uploaded"
|
1782 |
msgstr "Určite, ktoré typy obrázkov môžu byť nahraté"
|
1783 |
|
1784 |
-
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251
|
1785 |
-
#: pro/fields/gallery.php:665 pro/fields/gallery.php:698
|
1786 |
msgid "Width"
|
1787 |
msgstr "Šírka"
|
1788 |
|
@@ -1800,9 +1703,7 @@ msgstr "Eskapovať HTML (€ za €)"
|
|
1800 |
|
1801 |
#: fields/message.php:113
|
1802 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
1803 |
-
msgstr ""
|
1804 |
-
"Povoliť zobrazenie HTML značiek vo forme viditeľného textu namiesto ich "
|
1805 |
-
"vykreslenia"
|
1806 |
|
1807 |
#: fields/number.php:36
|
1808 |
msgid "Number"
|
@@ -1854,33 +1755,27 @@ msgstr "Veľkosť vloženého obsahu"
|
|
1854 |
msgid "Archives"
|
1855 |
msgstr "Archívy "
|
1856 |
|
1857 |
-
#: fields/page_link.php:535 fields/post_object.php:401
|
1858 |
-
#: fields/relationship.php:690
|
1859 |
msgid "Filter by Post Type"
|
1860 |
msgstr "Filtrovať podľa typu príspevku "
|
1861 |
|
1862 |
-
#: fields/page_link.php:543 fields/post_object.php:409
|
1863 |
-
#: fields/relationship.php:698
|
1864 |
msgid "All post types"
|
1865 |
msgstr "Všetky typy príspevkov "
|
1866 |
|
1867 |
-
#: fields/page_link.php:549 fields/post_object.php:415
|
1868 |
-
#: fields/relationship.php:704
|
1869 |
msgid "Filter by Taxonomy"
|
1870 |
msgstr "Filter z taxonómie "
|
1871 |
|
1872 |
-
#: fields/page_link.php:557 fields/post_object.php:423
|
1873 |
-
#: fields/relationship.php:712
|
1874 |
msgid "All taxonomies"
|
1875 |
msgstr "Žiadny filter taxonómie "
|
1876 |
|
1877 |
-
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406
|
1878 |
-
#: fields/taxonomy.php:765 fields/user.php:452
|
1879 |
msgid "Allow Null?"
|
1880 |
msgstr "Povoliť nulovú hodnotu? "
|
1881 |
|
1882 |
-
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420
|
1883 |
-
#: fields/user.php:466
|
1884 |
msgid "Select multiple values?"
|
1885 |
msgstr "Vybrať viac hodnôt? "
|
1886 |
|
@@ -1888,8 +1783,7 @@ msgstr "Vybrať viac hodnôt? "
|
|
1888 |
msgid "Password"
|
1889 |
msgstr "Heslo "
|
1890 |
|
1891 |
-
#: fields/post_object.php:36 fields/post_object.php:462
|
1892 |
-
#: fields/relationship.php:769
|
1893 |
msgid "Post Object"
|
1894 |
msgstr "Objekt príspevku "
|
1895 |
|
@@ -1998,28 +1892,22 @@ msgid "Warning"
|
|
1998 |
msgstr "Varovanie"
|
1999 |
|
2000 |
#: fields/tab.php:133
|
2001 |
-
msgid ""
|
2002 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
2003 |
-
"field or flexible content field layout"
|
2004 |
msgstr ""
|
2005 |
-
"Pole záložky nebude správne zobrazené ak bude pridané do opakovacieho pola "
|
2006 |
-
"
|
2007 |
|
2008 |
#: fields/tab.php:146
|
2009 |
-
msgid ""
|
2010 |
-
|
2011 |
-
"together."
|
2012 |
-
msgstr ""
|
2013 |
-
"Pre lepšiu organizáciu na obrazovke úpravý polí použite \"Polia záložiek\"."
|
2014 |
|
2015 |
#: fields/tab.php:148
|
2016 |
msgid ""
|
2017 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2018 |
-
"
|
2019 |
-
"heading."
|
2020 |
msgstr ""
|
2021 |
-
"Všetky polia nasledujúce \"pole záložky\" (pokým nebude definované nové "
|
2022 |
-
"
|
2023 |
|
2024 |
#: fields/tab.php:155
|
2025 |
msgid "Placement"
|
@@ -2283,12 +2171,8 @@ msgid "License"
|
|
2283 |
msgstr "Licencia"
|
2284 |
|
2285 |
#: pro/admin/views/settings-updates.php:24
|
2286 |
-
msgid ""
|
2287 |
-
"
|
2288 |
-
"licence key, please see"
|
2289 |
-
msgstr ""
|
2290 |
-
"Pre odblokovanie aktualizácii, sem zadajte váš licenčný kľúč. Ak ešte "
|
2291 |
-
"licenčný kľúč nemáte, pozrite si"
|
2292 |
|
2293 |
#: pro/admin/views/settings-updates.php:24
|
2294 |
msgid "details & pricing"
|
@@ -2337,13 +2221,11 @@ msgstr "Nastavenia "
|
|
2337 |
#: pro/core/updates.php:186
|
2338 |
#, php-format
|
2339 |
msgid ""
|
2340 |
-
"To enable updates, please enter your license key on the <a href=\"%s"
|
2341 |
-
"
|
2342 |
-
"\">details & pricing</a>"
|
2343 |
msgstr ""
|
2344 |
-
"Aby ste zapli aktualizácie, musíte zadať licencčný kľúč na stránke <a href
|
2345 |
-
"
|
2346 |
-
"\">podrobnosti a ceny</a>."
|
2347 |
|
2348 |
#: pro/fields/flexible-content.php:36
|
2349 |
msgid "Flexible Content"
|
@@ -2606,24 +2488,19 @@ msgstr ""
|
|
2606 |
#~ msgstr "Import / Export"
|
2607 |
|
2608 |
#~ msgid "Field groups are created in order from lowest to highest"
|
2609 |
-
#~ msgstr ""
|
2610 |
-
#~ "Skupiny polí sú vytvorené v poradí <br /> od najnižšej po najvyššiu "
|
2611 |
|
2612 |
#~ msgid "ACF PRO Required"
|
2613 |
#~ msgstr "Musíte mať Pro verziu"
|
2614 |
|
2615 |
#~ msgid ""
|
2616 |
-
#~ "We have detected an issue which requires your attention: This website "
|
2617 |
-
#~ "
|
2618 |
#~ msgstr ""
|
2619 |
-
#~ "Zistili sme problém vyžadujúci vašu pozornosť. Táto stránka využíva "
|
2620 |
-
#~ "doplnky (%s), ktoré už nie sú komaptibilné s ACF."
|
2621 |
|
2622 |
-
#~ msgid ""
|
2623 |
-
#~ "
|
2624 |
-
#~ "as you know it!"
|
2625 |
-
#~ msgstr ""
|
2626 |
-
#~ "Nemusíte sa báť! Môžete sa vrátiť k používaniu predchádzajúcej verzii ACF!"
|
2627 |
|
2628 |
#~ msgid "Roll back to ACF v%s"
|
2629 |
#~ msgstr "Vrátiť sa k ACF v%s"
|
@@ -2652,11 +2529,8 @@ msgstr ""
|
|
2652 |
#~ msgid "Load & Save Terms to Post"
|
2653 |
#~ msgstr "Nahrať & uložiť podmienky k prispievaniu "
|
2654 |
|
2655 |
-
#~ msgid ""
|
2656 |
-
#~ "
|
2657 |
-
#~ msgstr ""
|
2658 |
-
#~ "Nahrať hodnoty založené na podmienkach prispievania, aktualizovať "
|
2659 |
-
#~ "akrutálne podmienky a uložiť "
|
2660 |
|
2661 |
#~ msgid "file"
|
2662 |
#~ msgstr "subor"
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:45+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:07+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: wp.sk <michal.vittek@wp.sk, ja@fajo.name>\n"
|
9 |
"Language: sk_SK\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
14 |
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"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__;"
|
17 |
+
"esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
|
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Poedit-WPHeader: acf.php\n"
|
20 |
"X-Textdomain-Support: yes\n"
|
33 |
msgid "Field Group"
|
34 |
msgstr "Skupina polí"
|
35 |
|
36 |
+
#: acf.php:207 acf.php:239 admin/admin.php:62 pro/fields/flexible-content.php:517
|
|
|
37 |
msgid "Add New"
|
38 |
msgstr "Pridať novú"
|
39 |
|
65 |
msgid "No Field Groups found in Trash"
|
66 |
msgstr "V koši sa nenašla skupina polí "
|
67 |
|
68 |
+
#: acf.php:237 admin/field-group.php:182 admin/field-group.php:213 admin/field-groups.php:519
|
|
|
69 |
msgid "Fields"
|
70 |
msgstr "Polia "
|
71 |
|
81 |
msgid "Edit Field"
|
82 |
msgstr "Upraviť pole"
|
83 |
|
84 |
+
#: acf.php:242 admin/views/field-group-fields.php:18 admin/views/settings-info.php:111
|
|
|
85 |
msgid "New Field"
|
86 |
msgstr "Nové pole "
|
87 |
|
101 |
msgid "No Fields found in Trash"
|
102 |
msgstr "V koši sa nenašli polia"
|
103 |
|
104 |
+
#: acf.php:268 admin/field-group.php:283 admin/field-groups.php:583 admin/views/field-group-options.php:18
|
|
|
105 |
msgid "Disabled"
|
106 |
msgstr ""
|
107 |
|
165 |
msgid "copy"
|
166 |
msgstr "kopírovať "
|
167 |
|
168 |
+
#: admin/field-group.php:181 admin/views/field-group-field-conditional-logic.php:67
|
169 |
+
#: admin/views/field-group-field-conditional-logic.php:162 admin/views/field-group-locations.php:23
|
|
|
|
|
170 |
#: admin/views/field-group-locations.php:131 api/api-helpers.php:3262
|
171 |
msgid "or"
|
172 |
msgstr "alebo"
|
255 |
msgid "Super Admin"
|
256 |
msgstr "Super Admin "
|
257 |
|
258 |
+
#: admin/field-group.php:818 admin/field-group.php:826 admin/field-group.php:840 admin/field-group.php:847
|
259 |
+
#: admin/field-group.php:862 admin/field-group.php:872 fields/file.php:235 fields/image.php:226 pro/fields/gallery.php:653
|
|
|
|
|
260 |
msgid "All"
|
261 |
msgstr "Všetky "
|
262 |
|
331 |
msgid "Title"
|
332 |
msgstr "Názov"
|
333 |
|
334 |
+
#: admin/field-groups.php:517 admin/views/field-group-options.php:98 admin/views/update-network.php:20
|
335 |
+
#: admin/views/update-network.php:28
|
336 |
msgid "Description"
|
337 |
msgstr ""
|
338 |
|
340 |
msgid "Status"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin/field-groups.php:616 admin/settings-info.php:76 pro/admin/views/settings-updates.php:111
|
|
|
344 |
msgid "Changelog"
|
345 |
msgstr "Záznam zmien "
|
346 |
|
360 |
msgid "Getting Started"
|
361 |
msgstr "Začíname "
|
362 |
|
363 |
+
#: admin/field-groups.php:622 pro/admin/settings-updates.php:73 pro/admin/views/settings-updates.php:17
|
|
|
364 |
msgid "Updates"
|
365 |
msgstr "Aktualizácie"
|
366 |
|
396 |
msgid "Duplicate this item"
|
397 |
msgstr "Duplikovať toto pole "
|
398 |
|
399 |
+
#: admin/field-groups.php:673 admin/field-groups.php:685 admin/views/field-group-field.php:58
|
400 |
+
#: pro/fields/flexible-content.php:516
|
401 |
msgid "Duplicate"
|
402 |
msgstr "Duplikovať "
|
403 |
|
430 |
msgid "What's New"
|
431 |
msgstr "Čo je nové "
|
432 |
|
433 |
+
#: admin/settings-tools.php:54 admin/views/settings-tools-export.php:9 admin/views/settings-tools.php:31
|
|
|
434 |
msgid "Tools"
|
435 |
msgstr ""
|
436 |
|
461 |
|
462 |
#: admin/settings-tools.php:332
|
463 |
#, php-format
|
464 |
+
msgid "<b>Warning</b>. Import tool detected %s field groups already exist and have been ignored: %s"
|
465 |
+
msgstr "<b>Varovanie</b>. Nástroj importu zistil, že už exsituje %s polí skupín, ktoré boli ignorované: %s"
|
|
|
|
|
|
|
|
|
466 |
|
467 |
#: admin/update.php:113
|
468 |
msgid "Upgrade ACF"
|
484 |
msgid "Conditional Logic"
|
485 |
msgstr "Podmienená logika "
|
486 |
|
487 |
+
#: admin/views/field-group-field-conditional-logic.php:40 admin/views/field-group-field.php:137 fields/checkbox.php:246
|
488 |
+
#: fields/message.php:117 fields/page_link.php:568 fields/page_link.php:582 fields/post_object.php:434
|
489 |
+
#: fields/post_object.php:448 fields/select.php:411 fields/select.php:425 fields/select.php:439 fields/select.php:453
|
490 |
+
#: fields/tab.php:172 fields/taxonomy.php:770 fields/taxonomy.php:784 fields/taxonomy.php:798 fields/taxonomy.php:812
|
491 |
+
#: fields/user.php:457 fields/user.php:471 fields/wysiwyg.php:384 pro/admin/views/settings-updates.php:93
|
|
|
|
|
|
|
|
|
492 |
msgid "Yes"
|
493 |
msgstr "Áno "
|
494 |
|
495 |
+
#: admin/views/field-group-field-conditional-logic.php:41 admin/views/field-group-field.php:138 fields/checkbox.php:247
|
496 |
+
#: fields/message.php:118 fields/page_link.php:569 fields/page_link.php:583 fields/post_object.php:435
|
497 |
+
#: fields/post_object.php:449 fields/select.php:412 fields/select.php:426 fields/select.php:440 fields/select.php:454
|
498 |
+
#: fields/tab.php:173 fields/taxonomy.php:685 fields/taxonomy.php:771 fields/taxonomy.php:785 fields/taxonomy.php:799
|
499 |
+
#: fields/taxonomy.php:813 fields/user.php:458 fields/user.php:472 fields/wysiwyg.php:385
|
|
|
|
|
|
|
500 |
#: pro/admin/views/settings-updates.php:103
|
501 |
msgid "No"
|
502 |
msgstr "Nie"
|
505 |
msgid "Show this field if"
|
506 |
msgstr "Zobraziť toto pole ak"
|
507 |
|
508 |
+
#: admin/views/field-group-field-conditional-logic.php:111 admin/views/field-group-locations.php:88
|
|
|
509 |
msgid "is equal to"
|
510 |
msgstr "sa rovná "
|
511 |
|
512 |
+
#: admin/views/field-group-field-conditional-logic.php:112 admin/views/field-group-locations.php:89
|
|
|
513 |
msgid "is not equal to"
|
514 |
msgstr "sa nerovná"
|
515 |
|
516 |
+
#: admin/views/field-group-field-conditional-logic.php:149 admin/views/field-group-locations.php:118
|
|
|
517 |
msgid "and"
|
518 |
msgstr "a"
|
519 |
|
520 |
+
#: admin/views/field-group-field-conditional-logic.php:164 admin/views/field-group-locations.php:133
|
|
|
521 |
msgid "Add rule group"
|
522 |
msgstr "Pridať skupinu pravidiel "
|
523 |
|
549 |
msgid "Delete"
|
550 |
msgstr "Vymazať"
|
551 |
|
552 |
+
#: admin/views/field-group-field.php:68 fields/oembed.php:212 fields/taxonomy.php:886
|
|
|
553 |
msgid "Error"
|
554 |
msgstr "Chyba "
|
555 |
|
630 |
msgstr "Typ"
|
631 |
|
632 |
#: admin/views/field-group-fields.php:44
|
633 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
634 |
+
msgstr "Žiadne polia. Kliknite na tlačidlo <strong>+ Pridať pole</strong> pre vytvorenie prvého poľa. "
|
|
|
|
|
|
|
|
|
635 |
|
636 |
#: admin/views/field-group-fields.php:51
|
637 |
msgid "Drag and drop to reorder"
|
646 |
msgstr "Pravidlá "
|
647 |
|
648 |
#: admin/views/field-group-locations.php:6
|
649 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
650 |
+
msgstr "Vytvorte súbor pravidiel určujúcich, ktoré obrazovky úprav budú používať Vlastné polia"
|
|
|
|
|
|
|
|
|
651 |
|
652 |
#: admin/views/field-group-locations.php:21
|
653 |
msgid "Show this field group if"
|
654 |
msgstr "Zobraziť túto skupinu poľa ak "
|
655 |
|
656 |
+
#: admin/views/field-group-locations.php:41 admin/views/field-group-locations.php:47
|
|
|
657 |
msgid "Post"
|
658 |
msgstr "Príspevok "
|
659 |
|
677 |
msgid "Post Taxonomy"
|
678 |
msgstr "Taxonómia príspevku "
|
679 |
|
680 |
+
#: admin/views/field-group-locations.php:49 admin/views/field-group-locations.php:53
|
|
|
681 |
msgid "Page"
|
682 |
msgstr "Stránka "
|
683 |
|
770 |
msgstr "Zarovnané dohora"
|
771 |
|
772 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
773 |
+
msgid "Left aligned"
|
774 |
msgstr "Zarovnané vľavo"
|
775 |
|
776 |
#: admin/views/field-group-options.php:72
|
807 |
|
808 |
#: admin/views/field-group-options.php:110
|
809 |
msgid ""
|
810 |
+
"If multiple field groups appear on an edit screen, the first field group's options will be used (the one with the lowest "
|
811 |
+
"order number)"
|
812 |
msgstr ""
|
813 |
+
"Ak viaceré skupiny polí sa zobrazia na obrazovke úprav, nastavenia prvej skupiny budú použité (tá s najnižším poradovým "
|
814 |
+
"číslom)"
|
815 |
|
816 |
#: admin/views/field-group-options.php:117
|
817 |
msgid "Permalink"
|
883 |
|
884 |
#: admin/views/settings-info.php:10
|
885 |
#, php-format
|
886 |
+
msgid "Thank you for updating! ACF %s is bigger and better than ever before. We hope you like it."
|
887 |
+
msgstr "Vďaka za zakutalizáciu! ACF %s je väčšie a lepšie než kedykoľvek predtým. Dúfame, že sa vám páči."
|
|
|
|
|
|
|
|
|
888 |
|
889 |
#: admin/views/settings-info.php:23
|
890 |
msgid "A smoother custom field experience"
|
896 |
|
897 |
#: admin/views/settings-info.php:29
|
898 |
msgid ""
|
899 |
+
"Including the popular Select2 library has improved both usability and speed across a number of field types including "
|
900 |
+
"post object, page link, taxonomy and select."
|
|
|
901 |
msgstr ""
|
902 |
+
"Populárna knižnica Select2 obsahuje vylepšenú použiteľnosť a rýchlosť medzi všetkými poliami vrátane objektov, odkazov "
|
903 |
+
"taxonómie a výberov."
|
904 |
|
905 |
#: admin/views/settings-info.php:33
|
906 |
msgid "Improved Design"
|
908 |
|
909 |
#: admin/views/settings-info.php:34
|
910 |
msgid ""
|
911 |
+
"Many fields have undergone a visual refresh to make ACF look better than ever! Noticeable changes are seen on the "
|
912 |
+
"gallery, relationship and oEmbed (new) fields!"
|
|
|
913 |
msgstr ""
|
914 |
+
"Vela polí prebehlo grafickou úpravou. Teraz ACF vyzerá oveľa lepšie! Zmeny uvidíte v galérii, vzťahoch a OEmbed "
|
915 |
+
"(vložených) poliach!"
|
916 |
|
917 |
#: admin/views/settings-info.php:38
|
918 |
msgid "Improved Data"
|
920 |
|
921 |
#: admin/views/settings-info.php:39
|
922 |
msgid ""
|
923 |
+
"Redesigning the data architecture has allowed sub fields to live independently from their parents. This allows you to "
|
924 |
+
"drag and drop fields in and out of parent fields!"
|
|
|
925 |
msgstr ""
|
926 |
+
"Zmena dátovej architektúry priniesla nezávislosť odvodených polí od nadradených. Toto vám dovoľuje prenášat polia mimo "
|
927 |
+
"nadradených polí!"
|
928 |
|
929 |
#: admin/views/settings-info.php:45
|
930 |
msgid "Goodbye Add-ons. Hello PRO"
|
935 |
msgstr "Pro verzia "
|
936 |
|
937 |
#: admin/views/settings-info.php:51
|
938 |
+
msgid "We're changing the way premium functionality is delivered in an exciting way!"
|
939 |
+
msgstr "Prémiové funkcie modulu sme sa rozhodli poskytnúť vzrušujúcejším spôsobom!"
|
|
|
|
|
940 |
|
941 |
#: admin/views/settings-info.php:52
|
942 |
#, php-format
|
943 |
msgid ""
|
944 |
+
"All 4 premium add-ons have been combined into a new <a href=\"%s\">Pro version of ACF</a>. With both personal and "
|
945 |
+
"developer licenses available, premium functionality is more affordable and accessible than ever before!"
|
|
|
946 |
msgstr ""
|
947 |
+
"Všetky prémiové doplnky boli spojené do <a href=\"%s\">Pro verzie ACF</a>. Prémiové funkcie sú dostupnejšie a "
|
948 |
+
"prístupnejšie aj pomocou personálnych a firemmných licencií!"
|
|
|
949 |
|
950 |
#: admin/views/settings-info.php:56
|
951 |
msgid "Powerful Features"
|
953 |
|
954 |
#: admin/views/settings-info.php:57
|
955 |
msgid ""
|
956 |
+
"ACF PRO contains powerful features such as repeatable data, flexible content layouts, a beautiful gallery field and the "
|
957 |
+
"ability to create extra admin options pages!"
|
|
|
958 |
msgstr ""
|
959 |
+
"ACF PRO obsahuje opakovanie zadaných dát, flexibilné rozloženie obsahu, prekrásnu galériu a extra administračné stránky!"
|
|
|
960 |
|
961 |
#: admin/views/settings-info.php:58
|
962 |
#, php-format
|
969 |
|
970 |
#: admin/views/settings-info.php:63
|
971 |
#, php-format
|
972 |
+
msgid "To help make upgrading easy, <a href=\"%s\">login to your store account</a> and claim a free copy of ACF PRO!"
|
973 |
+
msgstr "Pre uľahčenie aktualizácie, <a href=\"%s\">prihláste sa do obchodu</a> a získajte zdarma ACF PRO!"
|
|
|
|
|
|
|
|
|
974 |
|
975 |
#: admin/views/settings-info.php:64
|
976 |
#, php-format
|
977 |
msgid ""
|
978 |
+
"We also wrote an <a href=\"%s\">upgrade guide</a> to answer any questions, but if you do have one, please contact our "
|
979 |
+
"support team via the <a href=\"%s\">help desk</a>"
|
|
|
980 |
msgstr ""
|
981 |
+
"Napísali sme <a href=\"%s\">príručku k aktualizácii</a>. Zodpovedali sme väčšinu otázok, ak však máte nejaké ďaľšie "
|
982 |
+
"kontaktuje <a href=\"%s\">našu podporu</a>"
|
|
|
983 |
|
984 |
#: admin/views/settings-info.php:72
|
985 |
msgid "Under the Hood"
|
1014 |
msgstr "Lepšia správa verzií"
|
1015 |
|
1016 |
#: admin/views/settings-info.php:95
|
1017 |
+
msgid "New auto export to JSON feature allows field settings to be version controlled"
|
|
|
|
|
1018 |
msgstr "Nový auto export JSON obsahuje kontrolu verzií povolených polí"
|
1019 |
|
1020 |
#: admin/views/settings-info.php:99
|
1050 |
msgstr "Nové nastavenia"
|
1051 |
|
1052 |
#: admin/views/settings-info.php:122
|
1053 |
+
msgid "Field group settings have been added for label placement and instruction placement"
|
1054 |
+
msgstr "Boli pridané nastavenie skupiny pola pre umiestnenie oznčenia a umietsntenie inštrukcií"
|
|
|
|
|
|
|
|
|
1055 |
|
1056 |
#: admin/views/settings-info.php:128
|
1057 |
msgid "Better Front End Forms"
|
1074 |
msgstr "Vzťah polí"
|
1075 |
|
1076 |
#: admin/views/settings-info.php:139
|
1077 |
+
msgid "New Relationship field setting for 'Filters' (Search, Post Type, Taxonomy)"
|
1078 |
+
msgstr "Nový nastavenie vťahov pola 'FIltre' (vyhľadávanie, typ článku, taxonómia)"
|
|
|
|
|
1079 |
|
1080 |
#: admin/views/settings-info.php:145
|
1081 |
msgid "Moving Fields"
|
1082 |
msgstr "Hýbajúce polia"
|
1083 |
|
1084 |
#: admin/views/settings-info.php:146
|
1085 |
+
msgid "New field group functionality allows you to move a field between groups & parents"
|
1086 |
+
msgstr "Nová skupinová funkcionalita vám dovolí presúvať polia medzi skupinami a nadradenými poliami"
|
|
|
|
|
|
|
|
|
1087 |
|
1088 |
#: admin/views/settings-info.php:150 fields/page_link.php:36
|
1089 |
msgid "Page Link"
|
1098 |
msgstr "Lepšie nastavenia stránok"
|
1099 |
|
1100 |
#: admin/views/settings-info.php:156
|
1101 |
+
msgid "New functions for options page allow creation of both parent and child menu pages"
|
1102 |
+
msgstr "Nové funkcie nastavenia stránky vám dovolí vytvorenie vytvorenie menu nadradených aj odvodených stránok"
|
|
|
|
|
|
|
|
|
1103 |
|
1104 |
#: admin/views/settings-info.php:165
|
1105 |
#, php-format
|
1112 |
|
1113 |
#: admin/views/settings-tools-export.php:17
|
1114 |
msgid ""
|
1115 |
+
"The following code can be used to register a local version of the selected field group(s). A local field group can "
|
1116 |
+
"provide many benefits such as faster load times, version control & dynamic fields/settings. Simply copy and paste the "
|
1117 |
+
"following code to your theme's functions.php file or include it within an external file."
|
|
|
|
|
1118 |
msgstr ""
|
1119 |
+
"Nasledujúci kód môže byť použitý pre miestnu veru vybraných polí skupín. Lokálna skupina polí poskytuje rýchlejšie "
|
1120 |
+
"načítanie, lepšiu kontrolu verzií a dynamické polia a ich nastavenia. Jednoducho skopírujte nasledujúci kód do súboru "
|
1121 |
+
"funkcií vašej témy functions.php alebo ich zahrňte v externom súbore."
|
|
|
1122 |
|
1123 |
#: admin/views/settings-tools.php:5
|
1124 |
msgid "Select Field Groups"
|
1130 |
|
1131 |
#: admin/views/settings-tools.php:38
|
1132 |
msgid ""
|
1133 |
+
"Select the field groups you would like to export and then select your export method. Use the download button to export "
|
1134 |
+
"to a .json file which you can then import to another ACF installation. Use the generate button to export to PHP code "
|
1135 |
+
"which you can place in your theme."
|
|
|
1136 |
msgstr ""
|
1137 |
+
"Vyberte skupiny polí, ktoré chcete exportovať. Vyberte vhodnú metódu exportu. Tlačidlo Stiahnuť vám exportuje dáta do ."
|
1138 |
+
"json súboru. Tento súbor môžete použiť v inej ACF inštalácii. Tlačidlo Generovať vám vyvtorí PHP kód, ktorý použijete vo "
|
1139 |
+
"vašej téme."
|
|
|
1140 |
|
1141 |
#: admin/views/settings-tools.php:50
|
1142 |
msgid "Download export file"
|
1152 |
|
1153 |
#: admin/views/settings-tools.php:67
|
1154 |
msgid ""
|
1155 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When you click the import button below, ACF will "
|
1156 |
+
"import the field groups."
|
1157 |
+
msgstr "Vyberte JSON súbor ACF na import. Po kliknutí na tlačidlo import sa nahrajú všetky skupiny polí ACF."
|
|
|
|
|
1158 |
|
1159 |
#: admin/views/settings-tools.php:77 fields/file.php:46
|
1160 |
msgid "Select File"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
#: admin/views/update-network.php:10
|
1172 |
+
msgid "The following sites require a DB upgrade. Check the ones you want to update and then click “Upgrade Database”."
|
|
|
|
|
1173 |
msgstr ""
|
1174 |
|
1175 |
#: admin/views/update-network.php:19 admin/views/update-network.php:27
|
1191 |
|
1192 |
#: admin/views/update-network.php:101 admin/views/update-notice.php:35
|
1193 |
msgid ""
|
1194 |
+
"It is strongly recommended that you backup your database before proceeding. Are you sure you wish to run the updater now?"
|
1195 |
+
msgstr "Pred aktualizáciou odporúčame zálohovať databázu. Želáte si aktualizáciu spustiť teraz?"
|
|
|
|
|
|
|
1196 |
|
1197 |
#: admin/views/update-network.php:157
|
1198 |
msgid "Upgrade complete"
|
1212 |
msgstr "Vďaka za aktualizáciu %s v%s!"
|
1213 |
|
1214 |
#: admin/views/update-notice.php:25
|
1215 |
+
msgid "Before you start using the new awesome features, please update your database to the newest version."
|
1216 |
+
msgstr "Než začnete používať nové funkcie, prosím najprv aktualizujte vašu databázu na najnovšiu verziu."
|
|
|
|
|
|
|
|
|
1217 |
|
1218 |
#: admin/views/update.php:12
|
1219 |
msgid "Reading upgrade tasks..."
|
1315 |
msgid "jQuery"
|
1316 |
msgstr "jQuery "
|
1317 |
|
1318 |
+
#: core/field.php:136 fields/checkbox.php:226 fields/radio.php:231 pro/fields/flexible-content.php:512
|
1319 |
+
#: pro/fields/repeater.php:392
|
1320 |
msgid "Layout"
|
1321 |
msgstr "Rozmiestnenie"
|
1322 |
|
1378 |
msgid "red : Red"
|
1379 |
msgstr "červená : Červená "
|
1380 |
|
1381 |
+
#: fields/checkbox.php:217 fields/color_picker.php:158 fields/email.php:124 fields/number.php:150 fields/radio.php:222
|
1382 |
+
#: fields/select.php:397 fields/text.php:148 fields/textarea.php:145 fields/true_false.php:115 fields/url.php:117
|
1383 |
+
#: fields/wysiwyg.php:345
|
|
|
1384 |
msgid "Default Value"
|
1385 |
msgstr "Základná hodnota "
|
1386 |
|
1460 |
msgid "Email"
|
1461 |
msgstr "E-Mail "
|
1462 |
|
1463 |
+
#: fields/email.php:125 fields/number.php:151 fields/radio.php:223 fields/text.php:149 fields/textarea.php:146
|
1464 |
+
#: fields/url.php:118 fields/wysiwyg.php:346
|
|
|
1465 |
msgid "Appears when creating a new post"
|
1466 |
msgstr "Zobrazí sa pri vytvorení nového príspevku "
|
1467 |
|
1468 |
+
#: fields/email.php:133 fields/number.php:159 fields/password.php:137 fields/text.php:157 fields/textarea.php:154
|
1469 |
+
#: fields/url.php:126
|
1470 |
msgid "Placeholder Text"
|
1471 |
msgstr "Zástupný text "
|
1472 |
|
1473 |
+
#: fields/email.php:134 fields/number.php:160 fields/password.php:138 fields/text.php:158 fields/textarea.php:155
|
1474 |
+
#: fields/url.php:127
|
1475 |
msgid "Appears within the input"
|
1476 |
msgstr "Zobrazí sa vo vstupe"
|
1477 |
|
1478 |
+
#: fields/email.php:142 fields/number.php:168 fields/password.php:146 fields/text.php:166
|
|
|
1479 |
msgid "Prepend"
|
1480 |
msgstr "Predpona"
|
1481 |
|
1482 |
+
#: fields/email.php:143 fields/number.php:169 fields/password.php:147 fields/text.php:167
|
|
|
1483 |
msgid "Appears before the input"
|
1484 |
msgstr "Zobrazí sa pred vstupom"
|
1485 |
|
1486 |
+
#: fields/email.php:151 fields/number.php:177 fields/password.php:155 fields/text.php:175
|
|
|
1487 |
msgid "Append"
|
1488 |
msgstr "Prípona"
|
1489 |
|
1490 |
+
#: fields/email.php:152 fields/number.php:178 fields/password.php:156 fields/text.php:176
|
|
|
1491 |
msgid "Appears after the input"
|
1492 |
msgstr "Zobrazí sa po vstupe"
|
1493 |
|
1563 |
msgid "Restrict which files can be uploaded"
|
1564 |
msgstr "Vymedzte, ktoré súbory je možné nahrať"
|
1565 |
|
1566 |
+
#: fields/file.php:247 fields/file.php:258 fields/image.php:257 fields/image.php:290 pro/fields/gallery.php:684
|
1567 |
+
#: pro/fields/gallery.php:717
|
1568 |
msgid "File size"
|
1569 |
msgstr "Veľkosť súboru "
|
1570 |
|
1620 |
msgid "Set the initial zoom level"
|
1621 |
msgstr "Nastavte základnú úroveň priblíženia"
|
1622 |
|
1623 |
+
#: fields/google-map.php:208 fields/image.php:246 fields/image.php:279 fields/oembed.php:262 pro/fields/gallery.php:673
|
1624 |
+
#: pro/fields/gallery.php:706
|
1625 |
msgid "Height"
|
1626 |
msgstr "Výška "
|
1627 |
|
1681 |
msgid "Shown when entering data"
|
1682 |
msgstr "Zobrazené pri zadávaní dát "
|
1683 |
|
1684 |
+
#: fields/image.php:235 fields/image.php:268 pro/fields/gallery.php:662 pro/fields/gallery.php:695
|
|
|
1685 |
msgid "Restrict which images can be uploaded"
|
1686 |
msgstr "Určite, ktoré typy obrázkov môžu byť nahraté"
|
1687 |
|
1688 |
+
#: fields/image.php:238 fields/image.php:271 fields/oembed.php:251 pro/fields/gallery.php:665 pro/fields/gallery.php:698
|
|
|
1689 |
msgid "Width"
|
1690 |
msgstr "Šírka"
|
1691 |
|
1703 |
|
1704 |
#: fields/message.php:113
|
1705 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
1706 |
+
msgstr "Povoliť zobrazenie HTML značiek vo forme viditeľného textu namiesto ich vykreslenia"
|
|
|
|
|
1707 |
|
1708 |
#: fields/number.php:36
|
1709 |
msgid "Number"
|
1755 |
msgid "Archives"
|
1756 |
msgstr "Archívy "
|
1757 |
|
1758 |
+
#: fields/page_link.php:535 fields/post_object.php:401 fields/relationship.php:690
|
|
|
1759 |
msgid "Filter by Post Type"
|
1760 |
msgstr "Filtrovať podľa typu príspevku "
|
1761 |
|
1762 |
+
#: fields/page_link.php:543 fields/post_object.php:409 fields/relationship.php:698
|
|
|
1763 |
msgid "All post types"
|
1764 |
msgstr "Všetky typy príspevkov "
|
1765 |
|
1766 |
+
#: fields/page_link.php:549 fields/post_object.php:415 fields/relationship.php:704
|
|
|
1767 |
msgid "Filter by Taxonomy"
|
1768 |
msgstr "Filter z taxonómie "
|
1769 |
|
1770 |
+
#: fields/page_link.php:557 fields/post_object.php:423 fields/relationship.php:712
|
|
|
1771 |
msgid "All taxonomies"
|
1772 |
msgstr "Žiadny filter taxonómie "
|
1773 |
|
1774 |
+
#: fields/page_link.php:563 fields/post_object.php:429 fields/select.php:406 fields/taxonomy.php:765 fields/user.php:452
|
|
|
1775 |
msgid "Allow Null?"
|
1776 |
msgstr "Povoliť nulovú hodnotu? "
|
1777 |
|
1778 |
+
#: fields/page_link.php:577 fields/post_object.php:443 fields/select.php:420 fields/user.php:466
|
|
|
1779 |
msgid "Select multiple values?"
|
1780 |
msgstr "Vybrať viac hodnôt? "
|
1781 |
|
1783 |
msgid "Password"
|
1784 |
msgstr "Heslo "
|
1785 |
|
1786 |
+
#: fields/post_object.php:36 fields/post_object.php:462 fields/relationship.php:769
|
|
|
1787 |
msgid "Post Object"
|
1788 |
msgstr "Objekt príspevku "
|
1789 |
|
1892 |
msgstr "Varovanie"
|
1893 |
|
1894 |
#: fields/tab.php:133
|
1895 |
+
msgid "The tab field will display incorrectly when added to a Table style repeater field or flexible content field layout"
|
|
|
|
|
1896 |
msgstr ""
|
1897 |
+
"Pole záložky nebude správne zobrazené ak bude pridané do opakovacieho pola štýlu tabuľky alebo flexibilného rozloženia "
|
1898 |
+
"pola."
|
1899 |
|
1900 |
#: fields/tab.php:146
|
1901 |
+
msgid "Use \"Tab Fields\" to better organize your edit screen by grouping fields together."
|
1902 |
+
msgstr "Pre lepšiu organizáciu na obrazovke úpravý polí použite \"Polia záložiek\"."
|
|
|
|
|
|
|
1903 |
|
1904 |
#: fields/tab.php:148
|
1905 |
msgid ""
|
1906 |
+
"All fields following this \"tab field\" (or until another \"tab field\" is defined) will be grouped together using this "
|
1907 |
+
"field's label as the tab heading."
|
|
|
1908 |
msgstr ""
|
1909 |
+
"Všetky polia nasledujúce \"pole záložky\" (pokým nebude definované nové \"pole záložky\") budú zoskupené a pod jedným "
|
1910 |
+
"nadpisom a označením."
|
1911 |
|
1912 |
#: fields/tab.php:155
|
1913 |
msgid "Placement"
|
2171 |
msgstr "Licencia"
|
2172 |
|
2173 |
#: pro/admin/views/settings-updates.php:24
|
2174 |
+
msgid "To unlock updates, please enter your license key below. If you don't have a licence key, please see"
|
2175 |
+
msgstr "Pre odblokovanie aktualizácii, sem zadajte váš licenčný kľúč. Ak ešte licenčný kľúč nemáte, pozrite si"
|
|
|
|
|
|
|
|
|
2176 |
|
2177 |
#: pro/admin/views/settings-updates.php:24
|
2178 |
msgid "details & pricing"
|
2221 |
#: pro/core/updates.php:186
|
2222 |
#, php-format
|
2223 |
msgid ""
|
2224 |
+
"To enable updates, please enter your license key on the <a href=\"%s\">Updates</a> page. If you don't have a licence "
|
2225 |
+
"key, please see <a href=\"%s\">details & pricing</a>"
|
|
|
2226 |
msgstr ""
|
2227 |
+
"Aby ste zapli aktualizácie, musíte zadať licencčný kľúč na stránke <a href=\"%s\">aktualizácií</a>. Ak nemáte licenčný "
|
2228 |
+
"kľúč, porizte si <a href=\"%s\">podrobnosti a ceny</a>."
|
|
|
2229 |
|
2230 |
#: pro/fields/flexible-content.php:36
|
2231 |
msgid "Flexible Content"
|
2488 |
#~ msgstr "Import / Export"
|
2489 |
|
2490 |
#~ msgid "Field groups are created in order from lowest to highest"
|
2491 |
+
#~ msgstr "Skupiny polí sú vytvorené v poradí <br /> od najnižšej po najvyššiu "
|
|
|
2492 |
|
2493 |
#~ msgid "ACF PRO Required"
|
2494 |
#~ msgstr "Musíte mať Pro verziu"
|
2495 |
|
2496 |
#~ msgid ""
|
2497 |
+
#~ "We have detected an issue which requires your attention: This website makes use of premium add-ons (%s) which are no "
|
2498 |
+
#~ "longer compatible with ACF."
|
2499 |
#~ msgstr ""
|
2500 |
+
#~ "Zistili sme problém vyžadujúci vašu pozornosť. Táto stránka využíva doplnky (%s), ktoré už nie sú komaptibilné s ACF."
|
|
|
2501 |
|
2502 |
+
#~ msgid "Don't panic, you can simply roll back the plugin and continue using ACF as you know it!"
|
2503 |
+
#~ msgstr "Nemusíte sa báť! Môžete sa vrátiť k používaniu predchádzajúcej verzii ACF!"
|
|
|
|
|
|
|
2504 |
|
2505 |
#~ msgid "Roll back to ACF v%s"
|
2506 |
#~ msgstr "Vrátiť sa k ACF v%s"
|
2529 |
#~ msgid "Load & Save Terms to Post"
|
2530 |
#~ msgstr "Nahrať & uložiť podmienky k prispievaniu "
|
2531 |
|
2532 |
+
#~ msgid "Load value based on the post's terms and update the post's terms on save"
|
2533 |
+
#~ msgstr "Nahrať hodnoty založené na podmienkach prispievania, aktualizovať akrutálne podmienky a uložiť "
|
|
|
|
|
|
|
2534 |
|
2535 |
#~ msgid "file"
|
2536 |
#~ msgstr "subor"
|
lang/acf-sv_SE.mo
CHANGED
Binary file
|
lang/acf-sv_SE.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:28+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Swedish\n"
|
9 |
"Language: sv_SE\n"
|
@@ -665,7 +665,7 @@ msgstr "Toppjusterad"
|
|
665 |
|
666 |
#: includes/admin/views/field-group-options.php:63
|
667 |
#: includes/fields/class-acf-field-tab.php:117
|
668 |
-
msgid "Left
|
669 |
msgstr "Vänsterjusterad"
|
670 |
|
671 |
#: includes/admin/views/field-group-options.php:70
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-06-27 15:28+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Swedish\n"
|
9 |
"Language: sv_SE\n"
|
665 |
|
666 |
#: includes/admin/views/field-group-options.php:63
|
667 |
#: includes/fields/class-acf-field-tab.php:117
|
668 |
+
msgid "Left aligned"
|
669 |
msgstr "Vänsterjusterad"
|
670 |
|
671 |
#: includes/admin/views/field-group-options.php:70
|
lang/acf-tr_TR.mo
CHANGED
Binary file
|
lang/acf-tr_TR.po
CHANGED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.6.3\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Emre Erkan <emre@ada.agency>\n"
|
9 |
"Language: tr_TR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -663,7 +663,7 @@ msgstr "Üste hizalı"
|
|
663 |
|
664 |
#: includes/admin/views/field-group-options.php:63
|
665 |
#: includes/fields/class-acf-field-tab.php:103
|
666 |
-
msgid "Left
|
667 |
msgstr "Sola hizalı"
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1311,7 +1311,8 @@ msgstr "İlişkisel"
|
|
1311 |
msgid "jQuery"
|
1312 |
msgstr "jQuery"
|
1313 |
|
1314 |
-
#: includes/fields.php:149
|
|
|
1315 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1316 |
#: includes/fields/class-acf-field-group.php:474
|
1317 |
#: includes/fields/class-acf-field-radio.php:285
|
@@ -2621,8 +2622,8 @@ msgstr "Alan grubunu düzenle"
|
|
2621 |
msgid "Validate Email"
|
2622 |
msgstr "E-postayı doğrula"
|
2623 |
|
2624 |
-
#: includes/forms/form-front.php:103
|
2625 |
-
#: pro/options-page.php:81
|
2626 |
msgid "Update"
|
2627 |
msgstr "Güncelle"
|
2628 |
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.6.3\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
+
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Emre Erkan <emre@ada.agency>\n"
|
9 |
"Language: tr_TR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 1.8.1\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
663 |
|
664 |
#: includes/admin/views/field-group-options.php:63
|
665 |
#: includes/fields/class-acf-field-tab.php:103
|
666 |
+
msgid "Left aligned"
|
667 |
msgstr "Sola hizalı"
|
668 |
|
669 |
#: includes/admin/views/field-group-options.php:70
|
1311 |
msgid "jQuery"
|
1312 |
msgstr "jQuery"
|
1313 |
|
1314 |
+
#: includes/fields.php:149
|
1315 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1316 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1317 |
#: includes/fields/class-acf-field-group.php:474
|
1318 |
#: includes/fields/class-acf-field-radio.php:285
|
2622 |
msgid "Validate Email"
|
2623 |
msgstr "E-postayı doğrula"
|
2624 |
|
2625 |
+
#: includes/forms/form-front.php:103
|
2626 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2627 |
msgid "Update"
|
2628 |
msgstr "Güncelle"
|
2629 |
|
lang/acf-uk.mo
CHANGED
Binary file
|
lang/acf-uk.po
CHANGED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: skinik <info@skinik.name>\n"
|
9 |
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -12,7 +12,7 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
15 |
-
"X-Generator: Poedit
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -670,7 +670,7 @@ msgstr "Зверху"
|
|
670 |
|
671 |
#: includes/admin/views/field-group-options.php:63
|
672 |
#: includes/fields/class-acf-field-tab.php:103
|
673 |
-
msgid "Left
|
674 |
msgstr "Зліва"
|
675 |
|
676 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1274,7 +1274,8 @@ msgstr ""
|
|
1274 |
msgid "jQuery"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: includes/fields.php:149
|
|
|
1278 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1279 |
#: includes/fields/class-acf-field-group.php:474
|
1280 |
#: includes/fields/class-acf-field-radio.php:285
|
@@ -2609,8 +2610,8 @@ msgstr "Редагувати групу полів"
|
|
2609 |
msgid "Validate Email"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: includes/forms/form-front.php:103
|
2613 |
-
#: pro/options-page.php:81
|
2614 |
msgid "Update"
|
2615 |
msgstr "Оновити"
|
2616 |
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:06+1000\n"
|
7 |
+
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: skinik <info@skinik.name>\n"
|
9 |
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
14 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
15 |
+
"X-Generator: Poedit 1.8.1\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
670 |
|
671 |
#: includes/admin/views/field-group-options.php:63
|
672 |
#: includes/fields/class-acf-field-tab.php:103
|
673 |
+
msgid "Left aligned"
|
674 |
msgstr "Зліва"
|
675 |
|
676 |
#: includes/admin/views/field-group-options.php:70
|
1274 |
msgid "jQuery"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/fields.php:149
|
1278 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1279 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1280 |
#: includes/fields/class-acf-field-group.php:474
|
1281 |
#: includes/fields/class-acf-field-radio.php:285
|
2610 |
msgid "Validate Email"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: includes/forms/form-front.php:103
|
2614 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2615 |
msgid "Update"
|
2616 |
msgstr "Оновити"
|
2617 |
|
lang/acf-zh_CN.mo
CHANGED
Binary file
|
lang/acf-zh_CN.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:50+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Amos Lee <470266798@qq.com>\n"
|
9 |
"Language: zh_CN\n"
|
@@ -794,7 +794,7 @@ msgid "Top aligned"
|
|
794 |
msgstr "顶部对齐"
|
795 |
|
796 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
797 |
-
msgid "Left
|
798 |
msgstr "左对齐"
|
799 |
|
800 |
#: admin/views/field-group-options.php:72
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
"POT-Creation-Date: 2015-08-11 23:50+0200\n"
|
6 |
+
"PO-Revision-Date: 2018-02-06 10:07+1000\n"
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Amos Lee <470266798@qq.com>\n"
|
9 |
"Language: zh_CN\n"
|
794 |
msgstr "顶部对齐"
|
795 |
|
796 |
#: admin/views/field-group-options.php:65 fields/tab.php:160
|
797 |
+
msgid "Left aligned"
|
798 |
msgstr "左对齐"
|
799 |
|
800 |
#: admin/views/field-group-options.php:72
|
lang/acf.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Advanced Custom Fields\n"
|
5 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
8 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
@@ -35,7 +35,7 @@ msgid "Field Group"
|
|
35 |
msgstr ""
|
36 |
|
37 |
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
38 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
39 |
msgid "Add New"
|
40 |
msgstr ""
|
41 |
|
@@ -70,7 +70,7 @@ msgstr ""
|
|
70 |
#: acf.php:401 includes/admin/admin-field-group.php:182
|
71 |
#: includes/admin/admin-field-group.php:275
|
72 |
#: includes/admin/admin-field-groups.php:510
|
73 |
-
#: pro/fields/class-acf-field-clone.php:
|
74 |
msgid "Fields"
|
75 |
msgstr ""
|
76 |
|
@@ -154,6 +154,7 @@ msgid "Location"
|
|
154 |
msgstr ""
|
155 |
|
156 |
#: includes/admin/admin-field-group.php:184
|
|
|
157 |
msgid "Settings"
|
158 |
msgstr ""
|
159 |
|
@@ -183,7 +184,7 @@ msgstr ""
|
|
183 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
184 |
#: includes/admin/views/field-group-locations.php:29
|
185 |
#: includes/admin/views/html-location-group.php:3
|
186 |
-
#: includes/api/api-helpers.php:
|
187 |
msgid "or"
|
188 |
msgstr ""
|
189 |
|
@@ -339,45 +340,50 @@ msgstr ""
|
|
339 |
msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: includes/admin/admin-field-groups.php:
|
343 |
msgid "Duplicate this item"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/admin/admin-field-groups.php:
|
347 |
-
#: includes/admin/admin-field-groups.php:
|
348 |
#: includes/admin/views/field-group-field.php:49
|
349 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
350 |
msgid "Duplicate"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: includes/admin/admin-field-groups.php:
|
354 |
#: includes/fields/class-acf-field-google-map.php:112
|
355 |
#: includes/fields/class-acf-field-relationship.php:656
|
356 |
msgid "Search"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: includes/admin/admin-field-groups.php:
|
360 |
#, php-format
|
361 |
msgid "Select %s"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: includes/admin/admin-field-groups.php:
|
365 |
msgid "Synchronise field group"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: includes/admin/admin-field-groups.php:
|
369 |
-
#: includes/admin/admin-field-groups.php:
|
370 |
msgid "Sync"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: includes/admin/admin-field-groups.php:
|
374 |
msgid "Apply"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: includes/admin/admin-field-groups.php:
|
378 |
msgid "Bulk Actions"
|
379 |
msgstr ""
|
380 |
|
|
|
|
|
|
|
|
|
|
|
381 |
#: includes/admin/admin.php:113
|
382 |
#: includes/admin/views/field-group-options.php:118
|
383 |
msgid "Custom Fields"
|
@@ -417,34 +423,95 @@ msgstr ""
|
|
417 |
msgid "What's New"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: includes/admin/
|
421 |
-
|
422 |
-
#: includes/admin/views/settings-tools.php:31
|
423 |
-
msgid "Tools"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
427 |
msgid "No field groups selected"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: includes/admin/
|
431 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
msgid "No file selected"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/admin/
|
436 |
msgid "Error uploading file. Please try again"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/admin/
|
440 |
msgid "Incorrect file type"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/admin/
|
444 |
msgid "Import file empty"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/admin/
|
448 |
#, php-format
|
449 |
msgid "Imported 1 field group"
|
450 |
msgid_plural "Imported %s field groups"
|
@@ -491,7 +558,7 @@ msgid "Edit field"
|
|
491 |
msgstr ""
|
492 |
|
493 |
#: includes/admin/views/field-group-field.php:48
|
494 |
-
#: includes/fields/class-acf-field-file.php:
|
495 |
#: includes/fields/class-acf-field-image.php:122
|
496 |
#: includes/fields/class-acf-field-link.php:139
|
497 |
#: pro/fields/class-acf-field-gallery.php:342
|
@@ -515,60 +582,59 @@ msgid "Delete field"
|
|
515 |
msgstr ""
|
516 |
|
517 |
#: includes/admin/views/field-group-field.php:51
|
518 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
519 |
msgid "Delete"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: includes/admin/views/field-group-field.php:
|
523 |
msgid "Field Label"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: includes/admin/views/field-group-field.php:
|
527 |
msgid "This is the name which will appear on the EDIT page"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: includes/admin/views/field-group-field.php:
|
531 |
msgid "Field Name"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: includes/admin/views/field-group-field.php:
|
535 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: includes/admin/views/field-group-field.php:
|
539 |
msgid "Field Type"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: includes/admin/views/field-group-field.php:
|
543 |
-
#: includes/fields/class-acf-field-tab.php:88
|
544 |
msgid "Instructions"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/admin/views/field-group-field.php:
|
548 |
msgid "Instructions for authors. Shown when submitting data"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: includes/admin/views/field-group-field.php:
|
552 |
msgid "Required?"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/admin/views/field-group-field.php:
|
556 |
msgid "Wrapper Attributes"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/admin/views/field-group-field.php:
|
560 |
msgid "width"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/admin/views/field-group-field.php:
|
564 |
msgid "class"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/admin/views/field-group-field.php:
|
568 |
msgid "id"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/admin/views/field-group-field.php:
|
572 |
msgid "Close Field"
|
573 |
msgstr ""
|
574 |
|
@@ -581,13 +647,13 @@ msgstr ""
|
|
581 |
#: includes/fields/class-acf-field-checkbox.php:415
|
582 |
#: includes/fields/class-acf-field-radio.php:306
|
583 |
#: includes/fields/class-acf-field-select.php:432
|
584 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
585 |
msgid "Label"
|
586 |
msgstr ""
|
587 |
|
588 |
#: includes/admin/views/field-group-fields.php:6
|
589 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
590 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
591 |
msgid "Name"
|
592 |
msgstr ""
|
593 |
|
@@ -652,13 +718,13 @@ msgid "Label placement"
|
|
652 |
msgstr ""
|
653 |
|
654 |
#: includes/admin/views/field-group-options.php:62
|
655 |
-
#: includes/fields/class-acf-field-tab.php:
|
656 |
msgid "Top aligned"
|
657 |
msgstr ""
|
658 |
|
659 |
#: includes/admin/views/field-group-options.php:63
|
660 |
-
#: includes/fields/class-acf-field-tab.php:
|
661 |
-
msgid "Left
|
662 |
msgstr ""
|
663 |
|
664 |
#: includes/admin/views/field-group-options.php:70
|
@@ -1111,121 +1177,58 @@ msgstr ""
|
|
1111 |
msgid "We think you'll love the changes in %s."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/
|
1115 |
-
msgid "Export Field Groups to PHP"
|
1116 |
-
msgstr ""
|
1117 |
-
|
1118 |
-
#: includes/admin/views/settings-tools-export.php:27
|
1119 |
-
msgid ""
|
1120 |
-
"The following code can be used to register a local version of the selected "
|
1121 |
-
"field group(s). A local field group can provide many benefits such as faster "
|
1122 |
-
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
1123 |
-
"the following code to your theme's functions.php file or include it within "
|
1124 |
-
"an external file."
|
1125 |
-
msgstr ""
|
1126 |
-
|
1127 |
-
#: includes/admin/views/settings-tools.php:5
|
1128 |
-
msgid "Select Field Groups"
|
1129 |
-
msgstr ""
|
1130 |
-
|
1131 |
-
#: includes/admin/views/settings-tools.php:35
|
1132 |
-
msgid "Export Field Groups"
|
1133 |
-
msgstr ""
|
1134 |
-
|
1135 |
-
#: includes/admin/views/settings-tools.php:38
|
1136 |
-
msgid ""
|
1137 |
-
"Select the field groups you would like to export and then select your export "
|
1138 |
-
"method. Use the download button to export to a .json file which you can then "
|
1139 |
-
"import to another ACF installation. Use the generate button to export to PHP "
|
1140 |
-
"code which you can place in your theme."
|
1141 |
-
msgstr ""
|
1142 |
-
|
1143 |
-
#: includes/admin/views/settings-tools.php:50
|
1144 |
-
msgid "Download export file"
|
1145 |
-
msgstr ""
|
1146 |
-
|
1147 |
-
#: includes/admin/views/settings-tools.php:51
|
1148 |
-
msgid "Generate export code"
|
1149 |
-
msgstr ""
|
1150 |
-
|
1151 |
-
#: includes/admin/views/settings-tools.php:64
|
1152 |
-
msgid "Import Field Groups"
|
1153 |
-
msgstr ""
|
1154 |
-
|
1155 |
-
#: includes/admin/views/settings-tools.php:67
|
1156 |
-
msgid ""
|
1157 |
-
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
1158 |
-
"you click the import button below, ACF will import the field groups."
|
1159 |
-
msgstr ""
|
1160 |
-
|
1161 |
-
#: includes/admin/views/settings-tools.php:77
|
1162 |
-
#: includes/fields/class-acf-field-file.php:35
|
1163 |
-
msgid "Select File"
|
1164 |
-
msgstr ""
|
1165 |
-
|
1166 |
-
#: includes/admin/views/settings-tools.php:86
|
1167 |
-
msgid "Import"
|
1168 |
-
msgstr ""
|
1169 |
-
|
1170 |
-
#: includes/api/api-helpers.php:856
|
1171 |
msgid "Thumbnail"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/api/api-helpers.php:
|
1175 |
msgid "Medium"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/api/api-helpers.php:
|
1179 |
msgid "Large"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/api/api-helpers.php:
|
1183 |
msgid "Full Size"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: includes/api/api-helpers.php:
|
1187 |
-
#: pro/fields/class-acf-field-clone.php:
|
1188 |
msgid "(no title)"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/api/api-helpers.php:
|
1192 |
-
#: includes/fields/class-acf-field-page_link.php:269
|
1193 |
-
#: includes/fields/class-acf-field-post_object.php:268
|
1194 |
-
#: includes/fields/class-acf-field-taxonomy.php:986
|
1195 |
-
msgid "Parent"
|
1196 |
-
msgstr ""
|
1197 |
-
|
1198 |
-
#: includes/api/api-helpers.php:3885
|
1199 |
#, php-format
|
1200 |
msgid "Image width must be at least %dpx."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/api/api-helpers.php:
|
1204 |
#, php-format
|
1205 |
msgid "Image width must not exceed %dpx."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/api/api-helpers.php:
|
1209 |
#, php-format
|
1210 |
msgid "Image height must be at least %dpx."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: includes/api/api-helpers.php:
|
1214 |
#, php-format
|
1215 |
msgid "Image height must not exceed %dpx."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/api/api-helpers.php:
|
1219 |
#, php-format
|
1220 |
msgid "File size must be at least %s."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/api/api-helpers.php:
|
1224 |
#, php-format
|
1225 |
msgid "File size must must not exceed %s."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/api/api-helpers.php:
|
1229 |
#, php-format
|
1230 |
msgid "File type must be %s."
|
1231 |
msgstr ""
|
@@ -1255,9 +1258,9 @@ msgstr ""
|
|
1255 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1256 |
#: includes/fields/class-acf-field-group.php:474
|
1257 |
#: includes/fields/class-acf-field-radio.php:285
|
1258 |
-
#: pro/fields/class-acf-field-clone.php:
|
1259 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1260 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1261 |
#: pro/fields/class-acf-field-repeater.php:450
|
1262 |
msgid "Layout"
|
1263 |
msgstr ""
|
@@ -1270,6 +1273,37 @@ msgstr ""
|
|
1270 |
msgid "Unknown"
|
1271 |
msgstr ""
|
1272 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1273 |
#: includes/fields/class-acf-field-button-group.php:24
|
1274 |
msgid "Button Group"
|
1275 |
msgstr ""
|
@@ -1354,7 +1388,7 @@ msgstr ""
|
|
1354 |
|
1355 |
#: includes/fields/class-acf-field-button-group.php:191
|
1356 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1357 |
-
#: includes/fields/class-acf-field-file.php:
|
1358 |
#: includes/fields/class-acf-field-image.php:188
|
1359 |
#: includes/fields/class-acf-field-link.php:166
|
1360 |
#: includes/fields/class-acf-field-radio.php:299
|
@@ -1364,7 +1398,7 @@ msgstr ""
|
|
1364 |
|
1365 |
#: includes/fields/class-acf-field-button-group.php:192
|
1366 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1367 |
-
#: includes/fields/class-acf-field-file.php:
|
1368 |
#: includes/fields/class-acf-field-image.php:189
|
1369 |
#: includes/fields/class-acf-field-link.php:167
|
1370 |
#: includes/fields/class-acf-field-radio.php:300
|
@@ -1676,13 +1710,13 @@ msgstr ""
|
|
1676 |
msgid "Uploaded to this post"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: includes/fields/class-acf-field-file.php:
|
1680 |
msgid "File name"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: includes/fields/class-acf-field-file.php:
|
1684 |
-
#: includes/fields/class-acf-field-file.php:
|
1685 |
-
#: includes/fields/class-acf-field-file.php:
|
1686 |
#: includes/fields/class-acf-field-image.php:248
|
1687 |
#: includes/fields/class-acf-field-image.php:277
|
1688 |
#: pro/fields/class-acf-field-gallery.php:690
|
@@ -1690,7 +1724,7 @@ msgstr ""
|
|
1690 |
msgid "File size"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: includes/fields/class-acf-field-file.php:
|
1694 |
#: includes/fields/class-acf-field-image.php:124
|
1695 |
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
1696 |
#: pro/fields/class-acf-field-gallery.php:343
|
@@ -1698,35 +1732,35 @@ msgstr ""
|
|
1698 |
msgid "Remove"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: includes/fields/class-acf-field-file.php:
|
1702 |
msgid "Add File"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/fields/class-acf-field-file.php:
|
1706 |
msgid "File Array"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/fields/class-acf-field-file.php:
|
1710 |
msgid "File URL"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: includes/fields/class-acf-field-file.php:
|
1714 |
msgid "File ID"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: includes/fields/class-acf-field-file.php:
|
1718 |
#: includes/fields/class-acf-field-image.php:213
|
1719 |
#: pro/fields/class-acf-field-gallery.php:655
|
1720 |
msgid "Library"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: includes/fields/class-acf-field-file.php:
|
1724 |
#: includes/fields/class-acf-field-image.php:214
|
1725 |
#: pro/fields/class-acf-field-gallery.php:656
|
1726 |
msgid "Limit the media library choice"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: includes/fields/class-acf-field-file.php:
|
1730 |
#: includes/fields/class-acf-field-image.php:219
|
1731 |
#: includes/locations/class-acf-location-attachment.php:101
|
1732 |
#: includes/locations/class-acf-location-comment.php:79
|
@@ -1739,36 +1773,36 @@ msgstr ""
|
|
1739 |
msgid "All"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: includes/fields/class-acf-field-file.php:
|
1743 |
#: includes/fields/class-acf-field-image.php:220
|
1744 |
#: pro/fields/class-acf-field-gallery.php:662
|
1745 |
msgid "Uploaded to post"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: includes/fields/class-acf-field-file.php:
|
1749 |
#: includes/fields/class-acf-field-image.php:227
|
1750 |
#: pro/fields/class-acf-field-gallery.php:669
|
1751 |
msgid "Minimum"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: includes/fields/class-acf-field-file.php:
|
1755 |
-
#: includes/fields/class-acf-field-file.php:
|
1756 |
msgid "Restrict which files can be uploaded"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: includes/fields/class-acf-field-file.php:
|
1760 |
#: includes/fields/class-acf-field-image.php:256
|
1761 |
#: pro/fields/class-acf-field-gallery.php:698
|
1762 |
msgid "Maximum"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: includes/fields/class-acf-field-file.php:
|
1766 |
#: includes/fields/class-acf-field-image.php:285
|
1767 |
#: pro/fields/class-acf-field-gallery.php:727
|
1768 |
msgid "Allowed file types"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: includes/fields/class-acf-field-file.php:
|
1772 |
#: includes/fields/class-acf-field-image.php:286
|
1773 |
#: pro/fields/class-acf-field-gallery.php:728
|
1774 |
msgid "Comma separated list. Leave blank for all types"
|
@@ -1839,27 +1873,27 @@ msgid "Sub Fields"
|
|
1839 |
msgstr ""
|
1840 |
|
1841 |
#: includes/fields/class-acf-field-group.php:475
|
1842 |
-
#: pro/fields/class-acf-field-clone.php:
|
1843 |
msgid "Specify the style used to render the selected fields"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
#: includes/fields/class-acf-field-group.php:480
|
1847 |
-
#: pro/fields/class-acf-field-clone.php:
|
1848 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1849 |
#: pro/fields/class-acf-field-repeater.php:458
|
1850 |
msgid "Block"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
#: includes/fields/class-acf-field-group.php:481
|
1854 |
-
#: pro/fields/class-acf-field-clone.php:
|
1855 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1856 |
#: pro/fields/class-acf-field-repeater.php:457
|
1857 |
msgid "Table"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
#: includes/fields/class-acf-field-group.php:482
|
1861 |
-
#: pro/fields/class-acf-field-clone.php:
|
1862 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1863 |
#: pro/fields/class-acf-field-repeater.php:459
|
1864 |
msgid "Row"
|
1865 |
msgstr ""
|
@@ -2047,6 +2081,12 @@ msgstr ""
|
|
2047 |
msgid "Archives"
|
2048 |
msgstr ""
|
2049 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2050 |
#: includes/fields/class-acf-field-page_link.php:485
|
2051 |
#: includes/fields/class-acf-field-post_object.php:384
|
2052 |
#: includes/fields/class-acf-field-relationship.php:623
|
@@ -2288,35 +2328,14 @@ msgstr ""
|
|
2288 |
msgid "Tab"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: includes/fields/class-acf-field-tab.php:
|
2292 |
-
msgid ""
|
2293 |
-
"The tab field will display incorrectly when added to a Table style repeater "
|
2294 |
-
"field or flexible content field layout"
|
2295 |
-
msgstr ""
|
2296 |
-
|
2297 |
-
#: includes/fields/class-acf-field-tab.php:83
|
2298 |
-
msgid ""
|
2299 |
-
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2300 |
-
"together."
|
2301 |
-
msgstr ""
|
2302 |
-
|
2303 |
-
#: includes/fields/class-acf-field-tab.php:84
|
2304 |
-
msgid ""
|
2305 |
-
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2306 |
-
"defined) will be grouped together using this field's label as the tab "
|
2307 |
-
"heading."
|
2308 |
-
msgstr ""
|
2309 |
-
|
2310 |
-
#: includes/fields/class-acf-field-tab.php:98
|
2311 |
msgid "Placement"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: includes/fields/class-acf-field-tab.php:
|
2315 |
-
msgid "
|
2316 |
-
|
2317 |
-
|
2318 |
-
#: includes/fields/class-acf-field-tab.php:111
|
2319 |
-
msgid "Use this field as an end-point and start a new group of tabs"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
@@ -2561,7 +2580,7 @@ msgstr ""
|
|
2561 |
msgid "Post updated"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: includes/forms/form-front.php:
|
2565 |
msgid "Spam Detected"
|
2566 |
msgstr ""
|
2567 |
|
@@ -2850,53 +2869,53 @@ msgctxt "noun"
|
|
2850 |
msgid "Clone"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: pro/fields/class-acf-field-clone.php:
|
2854 |
msgid "Select one or more fields you wish to clone"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: pro/fields/class-acf-field-clone.php:
|
2858 |
msgid "Display"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: pro/fields/class-acf-field-clone.php:
|
2862 |
msgid "Specify the style used to render the clone field"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: pro/fields/class-acf-field-clone.php:
|
2866 |
msgid "Group (displays selected fields in a group within this field)"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: pro/fields/class-acf-field-clone.php:
|
2870 |
msgid "Seamless (replaces this field with selected fields)"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#: pro/fields/class-acf-field-clone.php:
|
2874 |
#, php-format
|
2875 |
msgid "Labels will be displayed as %s"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: pro/fields/class-acf-field-clone.php:
|
2879 |
msgid "Prefix Field Labels"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: pro/fields/class-acf-field-clone.php:
|
2883 |
#, php-format
|
2884 |
msgid "Values will be saved as %s"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: pro/fields/class-acf-field-clone.php:
|
2888 |
msgid "Prefix Field Names"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: pro/fields/class-acf-field-clone.php:
|
2892 |
msgid "Unknown field"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: pro/fields/class-acf-field-clone.php:
|
2896 |
msgid "Unknown field group"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: pro/fields/class-acf-field-clone.php:
|
2900 |
#, php-format
|
2901 |
msgid "All fields from %s field group"
|
2902 |
msgstr ""
|
@@ -2965,44 +2984,44 @@ msgstr ""
|
|
2965 |
msgid "Click to toggle"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2969 |
msgid "Reorder Layout"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2973 |
msgid "Reorder"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2977 |
msgid "Delete Layout"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2981 |
msgid "Duplicate Layout"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2985 |
msgid "Add New Layout"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2989 |
msgid "Min"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2993 |
msgid "Max"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2997 |
#: pro/fields/class-acf-field-repeater.php:466
|
2998 |
msgid "Button Label"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3002 |
msgid "Minimum Layouts"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3006 |
msgid "Maximum Layouts"
|
3007 |
msgstr ""
|
3008 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Advanced Custom Fields\n"
|
5 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
6 |
+
"POT-Creation-Date: 2018-02-06 10:08+1000\n"
|
7 |
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
8 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
35 |
msgstr ""
|
36 |
|
37 |
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
38 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
39 |
msgid "Add New"
|
40 |
msgstr ""
|
41 |
|
70 |
#: acf.php:401 includes/admin/admin-field-group.php:182
|
71 |
#: includes/admin/admin-field-group.php:275
|
72 |
#: includes/admin/admin-field-groups.php:510
|
73 |
+
#: pro/fields/class-acf-field-clone.php:811
|
74 |
msgid "Fields"
|
75 |
msgstr ""
|
76 |
|
154 |
msgstr ""
|
155 |
|
156 |
#: includes/admin/admin-field-group.php:184
|
157 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:295
|
158 |
msgid "Settings"
|
159 |
msgstr ""
|
160 |
|
184 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
185 |
#: includes/admin/views/field-group-locations.php:29
|
186 |
#: includes/admin/views/html-location-group.php:3
|
187 |
+
#: includes/api/api-helpers.php:4048
|
188 |
msgid "or"
|
189 |
msgstr ""
|
190 |
|
340 |
msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/admin/admin-field-groups.php:667
|
344 |
msgid "Duplicate this item"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/admin/admin-field-groups.php:667
|
348 |
+
#: includes/admin/admin-field-groups.php:683
|
349 |
#: includes/admin/views/field-group-field.php:49
|
350 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
351 |
msgid "Duplicate"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/admin/admin-field-groups.php:700
|
355 |
#: includes/fields/class-acf-field-google-map.php:112
|
356 |
#: includes/fields/class-acf-field-relationship.php:656
|
357 |
msgid "Search"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: includes/admin/admin-field-groups.php:759
|
361 |
#, php-format
|
362 |
msgid "Select %s"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/admin/admin-field-groups.php:767
|
366 |
msgid "Synchronise field group"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: includes/admin/admin-field-groups.php:767
|
370 |
+
#: includes/admin/admin-field-groups.php:797
|
371 |
msgid "Sync"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/admin/admin-field-groups.php:779
|
375 |
msgid "Apply"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: includes/admin/admin-field-groups.php:797
|
379 |
msgid "Bulk Actions"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: includes/admin/admin-tools.php:116
|
383 |
+
#: includes/admin/views/html-admin-tools.php:21
|
384 |
+
msgid "Tools"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
#: includes/admin/admin.php:113
|
388 |
#: includes/admin/views/field-group-options.php:118
|
389 |
msgid "Custom Fields"
|
423 |
msgid "What's New"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:33
|
427 |
+
msgid "Export Field Groups"
|
|
|
|
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:38
|
431 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:342
|
432 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:371
|
433 |
+
msgid "Generate PHP"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:97
|
437 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:135
|
438 |
msgid "No field groups selected"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:174
|
442 |
+
#, php-format
|
443 |
+
msgid "Exported 1 field group."
|
444 |
+
msgid_plural "Exported %s field groups."
|
445 |
+
msgstr[0] ""
|
446 |
+
msgstr[1] ""
|
447 |
+
|
448 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:241
|
449 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:269
|
450 |
+
msgid "Select Field Groups"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:336
|
454 |
+
msgid ""
|
455 |
+
"Select the field groups you would like to export and then select your export "
|
456 |
+
"method. Use the download button to export to a .json file which you can then "
|
457 |
+
"import to another ACF installation. Use the generate button to export to PHP "
|
458 |
+
"code which you can place in your theme."
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:341
|
462 |
+
msgid "Export File"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:414
|
466 |
+
msgid ""
|
467 |
+
"The following code can be used to register a local version of the selected "
|
468 |
+
"field group(s). A local field group can provide many benefits such as faster "
|
469 |
+
"load times, version control & dynamic fields/settings. Simply copy and paste "
|
470 |
+
"the following code to your theme's functions.php file or include it within "
|
471 |
+
"an external file."
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: includes/admin/tools/class-acf-admin-tool-export.php:446
|
475 |
+
msgid "Copy to clipboard"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:26
|
479 |
+
msgid "Import Field Groups"
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:61
|
483 |
+
msgid ""
|
484 |
+
"Select the Advanced Custom Fields JSON file you would like to import. When "
|
485 |
+
"you click the import button below, ACF will import the field groups."
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:66
|
489 |
+
#: includes/fields/class-acf-field-file.php:35
|
490 |
+
msgid "Select File"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:76
|
494 |
+
msgid "Import File"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:100
|
498 |
+
#: includes/fields/class-acf-field-file.php:159
|
499 |
msgid "No file selected"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:113
|
503 |
msgid "Error uploading file. Please try again"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:122
|
507 |
msgid "Incorrect file type"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:139
|
511 |
msgid "Import file empty"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/admin/tools/class-acf-admin-tool-import.php:247
|
515 |
#, php-format
|
516 |
msgid "Imported 1 field group"
|
517 |
msgid_plural "Imported %s field groups"
|
558 |
msgstr ""
|
559 |
|
560 |
#: includes/admin/views/field-group-field.php:48
|
561 |
+
#: includes/fields/class-acf-field-file.php:141
|
562 |
#: includes/fields/class-acf-field-image.php:122
|
563 |
#: includes/fields/class-acf-field-link.php:139
|
564 |
#: pro/fields/class-acf-field-gallery.php:342
|
582 |
msgstr ""
|
583 |
|
584 |
#: includes/admin/views/field-group-field.php:51
|
585 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
586 |
msgid "Delete"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: includes/admin/views/field-group-field.php:68
|
590 |
msgid "Field Label"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: includes/admin/views/field-group-field.php:69
|
594 |
msgid "This is the name which will appear on the EDIT page"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: includes/admin/views/field-group-field.php:78
|
598 |
msgid "Field Name"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: includes/admin/views/field-group-field.php:79
|
602 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: includes/admin/views/field-group-field.php:88
|
606 |
msgid "Field Type"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/admin/views/field-group-field.php:99
|
|
|
610 |
msgid "Instructions"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: includes/admin/views/field-group-field.php:100
|
614 |
msgid "Instructions for authors. Shown when submitting data"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: includes/admin/views/field-group-field.php:109
|
618 |
msgid "Required?"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: includes/admin/views/field-group-field.php:132
|
622 |
msgid "Wrapper Attributes"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: includes/admin/views/field-group-field.php:138
|
626 |
msgid "width"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: includes/admin/views/field-group-field.php:153
|
630 |
msgid "class"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: includes/admin/views/field-group-field.php:166
|
634 |
msgid "id"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: includes/admin/views/field-group-field.php:178
|
638 |
msgid "Close Field"
|
639 |
msgstr ""
|
640 |
|
647 |
#: includes/fields/class-acf-field-checkbox.php:415
|
648 |
#: includes/fields/class-acf-field-radio.php:306
|
649 |
#: includes/fields/class-acf-field-select.php:432
|
650 |
+
#: pro/fields/class-acf-field-flexible-content.php:584
|
651 |
msgid "Label"
|
652 |
msgstr ""
|
653 |
|
654 |
#: includes/admin/views/field-group-fields.php:6
|
655 |
#: includes/fields/class-acf-field-taxonomy.php:964
|
656 |
+
#: pro/fields/class-acf-field-flexible-content.php:597
|
657 |
msgid "Name"
|
658 |
msgstr ""
|
659 |
|
718 |
msgstr ""
|
719 |
|
720 |
#: includes/admin/views/field-group-options.php:62
|
721 |
+
#: includes/fields/class-acf-field-tab.php:106
|
722 |
msgid "Top aligned"
|
723 |
msgstr ""
|
724 |
|
725 |
#: includes/admin/views/field-group-options.php:63
|
726 |
+
#: includes/fields/class-acf-field-tab.php:107
|
727 |
+
msgid "Left aligned"
|
728 |
msgstr ""
|
729 |
|
730 |
#: includes/admin/views/field-group-options.php:70
|
1177 |
msgid "We think you'll love the changes in %s."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/api/api-helpers.php:947
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1181 |
msgid "Thumbnail"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/api/api-helpers.php:948
|
1185 |
msgid "Medium"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/api/api-helpers.php:949
|
1189 |
msgid "Large"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/api/api-helpers.php:998
|
1193 |
msgid "Full Size"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/api/api-helpers.php:1339 includes/api/api-helpers.php:1912
|
1197 |
+
#: pro/fields/class-acf-field-clone.php:996
|
1198 |
msgid "(no title)"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/api/api-helpers.php:3969
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1202 |
#, php-format
|
1203 |
msgid "Image width must be at least %dpx."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/api/api-helpers.php:3974
|
1207 |
#, php-format
|
1208 |
msgid "Image width must not exceed %dpx."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/api/api-helpers.php:3990
|
1212 |
#, php-format
|
1213 |
msgid "Image height must be at least %dpx."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/api/api-helpers.php:3995
|
1217 |
#, php-format
|
1218 |
msgid "Image height must not exceed %dpx."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/api/api-helpers.php:4013
|
1222 |
#, php-format
|
1223 |
msgid "File size must be at least %s."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: includes/api/api-helpers.php:4018
|
1227 |
#, php-format
|
1228 |
msgid "File size must must not exceed %s."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/api/api-helpers.php:4052
|
1232 |
#, php-format
|
1233 |
msgid "File type must be %s."
|
1234 |
msgstr ""
|
1258 |
#: includes/fields/class-acf-field-checkbox.php:384
|
1259 |
#: includes/fields/class-acf-field-group.php:474
|
1260 |
#: includes/fields/class-acf-field-radio.php:285
|
1261 |
+
#: pro/fields/class-acf-field-clone.php:843
|
1262 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
1263 |
+
#: pro/fields/class-acf-field-flexible-content.php:603
|
1264 |
#: pro/fields/class-acf-field-repeater.php:450
|
1265 |
msgid "Layout"
|
1266 |
msgstr ""
|
1273 |
msgid "Unknown"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/fields/class-acf-field-accordion.php:24
|
1277 |
+
msgid "Accordion"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: includes/fields/class-acf-field-accordion.php:99
|
1281 |
+
msgid "Open"
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: includes/fields/class-acf-field-accordion.php:100
|
1285 |
+
msgid "Display this accordion as open on page load."
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/fields/class-acf-field-accordion.php:109
|
1289 |
+
msgid "Multi-expand"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: includes/fields/class-acf-field-accordion.php:110
|
1293 |
+
msgid "Allow this accordion to open without closing others."
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: includes/fields/class-acf-field-accordion.php:119
|
1297 |
+
#: includes/fields/class-acf-field-tab.php:114
|
1298 |
+
msgid "Endpoint"
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: includes/fields/class-acf-field-accordion.php:120
|
1302 |
+
msgid ""
|
1303 |
+
"Define an endpoint for the previous accordion to stop. This accordion will "
|
1304 |
+
"not be visible."
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
#: includes/fields/class-acf-field-button-group.php:24
|
1308 |
msgid "Button Group"
|
1309 |
msgstr ""
|
1388 |
|
1389 |
#: includes/fields/class-acf-field-button-group.php:191
|
1390 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1391 |
+
#: includes/fields/class-acf-field-file.php:204
|
1392 |
#: includes/fields/class-acf-field-image.php:188
|
1393 |
#: includes/fields/class-acf-field-link.php:166
|
1394 |
#: includes/fields/class-acf-field-radio.php:299
|
1398 |
|
1399 |
#: includes/fields/class-acf-field-button-group.php:192
|
1400 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1401 |
+
#: includes/fields/class-acf-field-file.php:205
|
1402 |
#: includes/fields/class-acf-field-image.php:189
|
1403 |
#: includes/fields/class-acf-field-link.php:167
|
1404 |
#: includes/fields/class-acf-field-radio.php:300
|
1710 |
msgid "Uploaded to this post"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: includes/fields/class-acf-field-file.php:130
|
1714 |
msgid "File name"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/fields/class-acf-field-file.php:134
|
1718 |
+
#: includes/fields/class-acf-field-file.php:237
|
1719 |
+
#: includes/fields/class-acf-field-file.php:248
|
1720 |
#: includes/fields/class-acf-field-image.php:248
|
1721 |
#: includes/fields/class-acf-field-image.php:277
|
1722 |
#: pro/fields/class-acf-field-gallery.php:690
|
1724 |
msgid "File size"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: includes/fields/class-acf-field-file.php:143
|
1728 |
#: includes/fields/class-acf-field-image.php:124
|
1729 |
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
1730 |
#: pro/fields/class-acf-field-gallery.php:343
|
1732 |
msgid "Remove"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: includes/fields/class-acf-field-file.php:159
|
1736 |
msgid "Add File"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: includes/fields/class-acf-field-file.php:210
|
1740 |
msgid "File Array"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: includes/fields/class-acf-field-file.php:211
|
1744 |
msgid "File URL"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: includes/fields/class-acf-field-file.php:212
|
1748 |
msgid "File ID"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: includes/fields/class-acf-field-file.php:219
|
1752 |
#: includes/fields/class-acf-field-image.php:213
|
1753 |
#: pro/fields/class-acf-field-gallery.php:655
|
1754 |
msgid "Library"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: includes/fields/class-acf-field-file.php:220
|
1758 |
#: includes/fields/class-acf-field-image.php:214
|
1759 |
#: pro/fields/class-acf-field-gallery.php:656
|
1760 |
msgid "Limit the media library choice"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: includes/fields/class-acf-field-file.php:225
|
1764 |
#: includes/fields/class-acf-field-image.php:219
|
1765 |
#: includes/locations/class-acf-location-attachment.php:101
|
1766 |
#: includes/locations/class-acf-location-comment.php:79
|
1773 |
msgid "All"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
+
#: includes/fields/class-acf-field-file.php:226
|
1777 |
#: includes/fields/class-acf-field-image.php:220
|
1778 |
#: pro/fields/class-acf-field-gallery.php:662
|
1779 |
msgid "Uploaded to post"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: includes/fields/class-acf-field-file.php:233
|
1783 |
#: includes/fields/class-acf-field-image.php:227
|
1784 |
#: pro/fields/class-acf-field-gallery.php:669
|
1785 |
msgid "Minimum"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: includes/fields/class-acf-field-file.php:234
|
1789 |
+
#: includes/fields/class-acf-field-file.php:245
|
1790 |
msgid "Restrict which files can be uploaded"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: includes/fields/class-acf-field-file.php:244
|
1794 |
#: includes/fields/class-acf-field-image.php:256
|
1795 |
#: pro/fields/class-acf-field-gallery.php:698
|
1796 |
msgid "Maximum"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: includes/fields/class-acf-field-file.php:255
|
1800 |
#: includes/fields/class-acf-field-image.php:285
|
1801 |
#: pro/fields/class-acf-field-gallery.php:727
|
1802 |
msgid "Allowed file types"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
+
#: includes/fields/class-acf-field-file.php:256
|
1806 |
#: includes/fields/class-acf-field-image.php:286
|
1807 |
#: pro/fields/class-acf-field-gallery.php:728
|
1808 |
msgid "Comma separated list. Leave blank for all types"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
#: includes/fields/class-acf-field-group.php:475
|
1876 |
+
#: pro/fields/class-acf-field-clone.php:844
|
1877 |
msgid "Specify the style used to render the selected fields"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
#: includes/fields/class-acf-field-group.php:480
|
1881 |
+
#: pro/fields/class-acf-field-clone.php:849
|
1882 |
+
#: pro/fields/class-acf-field-flexible-content.php:614
|
1883 |
#: pro/fields/class-acf-field-repeater.php:458
|
1884 |
msgid "Block"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
#: includes/fields/class-acf-field-group.php:481
|
1888 |
+
#: pro/fields/class-acf-field-clone.php:850
|
1889 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
1890 |
#: pro/fields/class-acf-field-repeater.php:457
|
1891 |
msgid "Table"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
#: includes/fields/class-acf-field-group.php:482
|
1895 |
+
#: pro/fields/class-acf-field-clone.php:851
|
1896 |
+
#: pro/fields/class-acf-field-flexible-content.php:615
|
1897 |
#: pro/fields/class-acf-field-repeater.php:459
|
1898 |
msgid "Row"
|
1899 |
msgstr ""
|
2081 |
msgid "Archives"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: includes/fields/class-acf-field-page_link.php:269
|
2085 |
+
#: includes/fields/class-acf-field-post_object.php:268
|
2086 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
2087 |
+
msgid "Parent"
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
#: includes/fields/class-acf-field-page_link.php:485
|
2091 |
#: includes/fields/class-acf-field-post_object.php:384
|
2092 |
#: includes/fields/class-acf-field-relationship.php:623
|
2328 |
msgid "Tab"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: includes/fields/class-acf-field-tab.php:102
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2332 |
msgid "Placement"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: includes/fields/class-acf-field-tab.php:115
|
2336 |
+
msgid ""
|
2337 |
+
"Define an endpoint for the previous tabs to stop. This will start a new "
|
2338 |
+
"group of tabs."
|
|
|
|
|
2339 |
msgstr ""
|
2340 |
|
2341 |
#: includes/fields/class-acf-field-taxonomy.php:713
|
2580 |
msgid "Post updated"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: includes/forms/form-front.php:230
|
2584 |
msgid "Spam Detected"
|
2585 |
msgstr ""
|
2586 |
|
2869 |
msgid "Clone"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: pro/fields/class-acf-field-clone.php:812
|
2873 |
msgid "Select one or more fields you wish to clone"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: pro/fields/class-acf-field-clone.php:829
|
2877 |
msgid "Display"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: pro/fields/class-acf-field-clone.php:830
|
2881 |
msgid "Specify the style used to render the clone field"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: pro/fields/class-acf-field-clone.php:835
|
2885 |
msgid "Group (displays selected fields in a group within this field)"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: pro/fields/class-acf-field-clone.php:836
|
2889 |
msgid "Seamless (replaces this field with selected fields)"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: pro/fields/class-acf-field-clone.php:857
|
2893 |
#, php-format
|
2894 |
msgid "Labels will be displayed as %s"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: pro/fields/class-acf-field-clone.php:860
|
2898 |
msgid "Prefix Field Labels"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: pro/fields/class-acf-field-clone.php:871
|
2902 |
#, php-format
|
2903 |
msgid "Values will be saved as %s"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: pro/fields/class-acf-field-clone.php:874
|
2907 |
msgid "Prefix Field Names"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: pro/fields/class-acf-field-clone.php:992
|
2911 |
msgid "Unknown field"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: pro/fields/class-acf-field-clone.php:1031
|
2915 |
msgid "Unknown field group"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: pro/fields/class-acf-field-clone.php:1035
|
2919 |
#, php-format
|
2920 |
msgid "All fields from %s field group"
|
2921 |
msgstr ""
|
2984 |
msgid "Click to toggle"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
2988 |
msgid "Reorder Layout"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
2992 |
msgid "Reorder"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
2996 |
msgid "Delete Layout"
|
2997 |
msgstr ""
|
2998 |
|
2999 |
+
#: pro/fields/class-acf-field-flexible-content.php:558
|
3000 |
msgid "Duplicate Layout"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: pro/fields/class-acf-field-flexible-content.php:559
|
3004 |
msgid "Add New Layout"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
+
#: pro/fields/class-acf-field-flexible-content.php:630
|
3008 |
msgid "Min"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: pro/fields/class-acf-field-flexible-content.php:643
|
3012 |
msgid "Max"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: pro/fields/class-acf-field-flexible-content.php:670
|
3016 |
#: pro/fields/class-acf-field-repeater.php:466
|
3017 |
msgid "Button Label"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: pro/fields/class-acf-field-flexible-content.php:679
|
3021 |
msgid "Minimum Layouts"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: pro/fields/class-acf-field-flexible-content.php:688
|
3025 |
msgid "Maximum Layouts"
|
3026 |
msgstr ""
|
3027 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: elliotcondon
|
3 |
Tags: acf, advanced, custom, field, fields, form, repeater, content
|
4 |
Requires at least: 3.6.0
|
5 |
-
Tested up to: 4.9.
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
@@ -66,6 +66,19 @@ From your WordPress dashboard
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
= 5.6.6 =
|
70 |
* Accordion field: Added new field type
|
71 |
* Tab field: Added logic to remember active tabs
|
@@ -79,6 +92,8 @@ From your WordPress dashboard
|
|
79 |
* Language: Updated Dutch translation - thanks to Derk Oosterveld
|
80 |
* Language: Updated Portuguese translation - thanks to Pedro Mendonça
|
81 |
* Language: Updated Persian translation - thanks to Kamel Kimiaei
|
|
|
|
|
82 |
|
83 |
= 5.6.5 =
|
84 |
* API: Added new 'kses' setting to the `acf_form()` function
|
2 |
Contributors: elliotcondon
|
3 |
Tags: acf, advanced, custom, field, fields, form, repeater, content
|
4 |
Requires at least: 3.6.0
|
5 |
+
Tested up to: 4.9.9
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
= 5.6.8 =
|
70 |
+
* API: Fixed bug causing have_rows() to fail with PHP 7.2
|
71 |
+
* Core: Fixed bug causing "Add new term" form to hide after submit
|
72 |
+
* Core: Minor fixes and improvements
|
73 |
+
* Language: Updated German translation - thanks to Ralf Koller
|
74 |
+
* Language: Updated Portuguese translation - thanks to Pedro Mendonça
|
75 |
+
* Language: Updated Arabic translation - thanks to Karim Ramadan
|
76 |
+
* Language: Updated Spanish translation - thanks to Luis Rull Muñoz
|
77 |
+
* Language: Updated Persian translation - thanks to Majix
|
78 |
+
|
79 |
+
= 5.6.7 =
|
80 |
+
* Fixed an assortment of bugs found in 5.6.6
|
81 |
+
|
82 |
= 5.6.6 =
|
83 |
* Accordion field: Added new field type
|
84 |
* Tab field: Added logic to remember active tabs
|
92 |
* Language: Updated Dutch translation - thanks to Derk Oosterveld
|
93 |
* Language: Updated Portuguese translation - thanks to Pedro Mendonça
|
94 |
* Language: Updated Persian translation - thanks to Kamel Kimiaei
|
95 |
+
* Language: Updated Swiss German translation - thanks to Raphael Hüni
|
96 |
+
* Language: Updated Arabic translation - thanks to Karim Ramadan
|
97 |
|
98 |
= 5.6.5 =
|
99 |
* API: Added new 'kses' setting to the `acf_form()` function
|