Version Description
- Accordion field: Added new field type
- Tab field: Added logic to remember active tabs
- WYSIWYG field: Fixed JS error in quicktags initialization
- Core: Fixed issue preventing conditional logic for menu item fields
- Core: Fixed issue preventing JS initialization for newly added menu items.
- Core: Allow whitespace in input value (previously trimmed)
- Core: Minor fixes and improvements
- Language: Updated Italian translation - thanks to Davide Pant
- Language: Updated Brazilian Portuguese translation - thanks to Rafael Ribeiro
- Language: Updated Dutch translation - thanks to Derk Oosterveld
- Language: Updated Portuguese translation - thanks to Pedro Mendona
- Language: Updated Persian translation - thanks to Kamel Kimiaei
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 5.6.6 |
Comparing to | |
See all releases |
Code changes from version 5.6.7 to 5.6.6
- acf.php +2 -2
- assets/css/acf-input.css +147 -150
- assets/js/acf-input.js +48 -87
- assets/js/acf-input.min.js +3 -3
- includes/forms/form-widget.php +14 -19
- lang/acf-de_CH.mo +0 -0
- lang/acf-de_CH.po +740 -773
- readme.txt +0 -4
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
|
@@ -18,7 +18,7 @@ if( ! class_exists('acf') ) :
|
|
18 |
class acf {
|
19 |
|
20 |
/** @var string The plugin version number */
|
21 |
-
var $version = '5.6.
|
22 |
|
23 |
|
24 |
/** @var array The plugin settings array */
|
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.6
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
Copyright: Elliot Condon
|
18 |
class acf {
|
19 |
|
20 |
/** @var string The plugin version number */
|
21 |
+
var $version = '5.6.6';
|
22 |
|
23 |
|
24 |
/** @var array The plugin settings array */
|
assets/css/acf-input.css
CHANGED
@@ -25,8 +25,10 @@
|
|
25 |
position: relative;
|
26 |
}
|
27 |
.acf-field {
|
28 |
-
margin:
|
29 |
-
|
|
|
|
|
30 |
}
|
31 |
.acf-field p.description {
|
32 |
display: block;
|
@@ -62,56 +64,15 @@
|
|
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,6 +86,9 @@ html[dir="rtl"] .acf-field.-c0 {
|
|
125 |
content: "";
|
126 |
display: table;
|
127 |
}
|
|
|
|
|
|
|
128 |
.acf-fields.-border {
|
129 |
border: #dfdfdf solid 1px;
|
130 |
background: #fff;
|
@@ -133,10 +97,8 @@ html[dir="rtl"] .acf-field.-c0 {
|
|
133 |
position: relative;
|
134 |
margin: 0;
|
135 |
padding: 15px 12px;
|
136 |
-
border-
|
137 |
-
|
138 |
-
.acf-fields > .acf-field:first-child {
|
139 |
-
border-top-width: 0;
|
140 |
}
|
141 |
td.acf-fields {
|
142 |
padding: 0 !important;
|
@@ -151,6 +113,9 @@ td.acf-fields {
|
|
151 |
padding: 0;
|
152 |
margin: 15px 0;
|
153 |
}
|
|
|
|
|
|
|
154 |
.acf-fields.-clear > .acf-field[data-width] {
|
155 |
border: none !important;
|
156 |
}
|
@@ -187,12 +152,6 @@ td.acf-fields {
|
|
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,9 +302,67 @@ html[dir="rtl"] .acf-fields.-left > .acf-field > .acf-input {
|
|
343 |
.metabox-prefs label.acf-hidden {
|
344 |
display: none;
|
345 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
346 |
/*---------------------------------------------------------------------------------------------
|
347 |
*
|
348 |
-
*
|
349 |
*
|
350 |
*---------------------------------------------------------------------------------------------*/
|
351 |
.acf-field input[type="text"],
|
@@ -1256,7 +1273,9 @@ html[dir="rtl"] .acf-relationship .selection .values .acf-icon {
|
|
1256 |
}
|
1257 |
.acf-tab-wrap {
|
1258 |
clear: both;
|
1259 |
-
|
|
|
|
|
1260 |
}
|
1261 |
.acf-tab-group {
|
1262 |
border-bottom: #ccc solid 1px;
|
@@ -1296,13 +1315,14 @@ html[dir="rtl"] .acf-tab-group li {
|
|
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-
|
1306 |
border-top: #DFDFDF solid 1px;
|
1307 |
border-bottom: #DFDFDF solid 1px;
|
1308 |
}
|
@@ -1315,15 +1335,13 @@ html[dir="rtl"] .acf-tab-group li {
|
|
1315 |
.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
1316 |
background: #FFFFFF;
|
1317 |
}
|
1318 |
-
|
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:
|
1327 |
.acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
1328 |
padding-left: 10px;
|
1329 |
}
|
@@ -1338,60 +1356,16 @@ html[dir="rtl"] .acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
|
1338 |
padding-right: 10px;
|
1339 |
}
|
1340 |
}
|
1341 |
-
|
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:
|
1387 |
z-index: 1;
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
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,6 +1373,9 @@ html[dir="rtl"] .acf-tab-wrap.-left .acf-tab-group li.active a {
|
|
1399 |
position: relative;
|
1400 |
/* before */
|
1401 |
/* rtl */
|
|
|
|
|
|
|
1402 |
}
|
1403 |
.acf-fields.-sidebar:before {
|
1404 |
content: "";
|
@@ -1421,6 +1398,48 @@ html[dir="rtl"] .acf-fields.-sidebar:before {
|
|
1421 |
left: auto;
|
1422 |
right: 0;
|
1423 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1424 |
.acf-fields.-sidebar.-left {
|
1425 |
padding: 0 0 0 180px !important;
|
1426 |
/* rtl */
|
@@ -1433,17 +1452,17 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
1433 |
border-color: #dfdfdf;
|
1434 |
width: 180px;
|
1435 |
}
|
1436 |
-
.acf-fields.-sidebar.-left
|
1437 |
width: 180px;
|
1438 |
}
|
1439 |
-
.acf-fields.-sidebar.-left
|
1440 |
border-color: #e4e4e4;
|
1441 |
}
|
1442 |
-
.acf-fields.-sidebar.-left
|
1443 |
background: #F9F9F9;
|
1444 |
}
|
1445 |
-
.acf-fields.-sidebar
|
1446 |
-
border-top:
|
1447 |
}
|
1448 |
.acf-fields.-clear > .acf-tab-wrap {
|
1449 |
background: transparent;
|
@@ -1451,8 +1470,7 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
1451 |
.acf-fields.-clear > .acf-tab-wrap .acf-tab-group {
|
1452 |
margin-top: 0;
|
1453 |
border-top: none;
|
1454 |
-
padding
|
1455 |
-
padding-right: 0;
|
1456 |
}
|
1457 |
.acf-fields.-clear > .acf-tab-wrap .acf-tab-group li a {
|
1458 |
background: #e5e5e5;
|
@@ -1464,14 +1482,12 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
1464 |
background: #f1f1f1;
|
1465 |
}
|
1466 |
/* seamless */
|
1467 |
-
.acf-postbox.seamless
|
1468 |
-
|
1469 |
-
|
1470 |
-
.acf-postbox.seamless > .acf-fields.-sidebar:before {
|
1471 |
-
background: transparent;
|
1472 |
}
|
1473 |
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap {
|
1474 |
-
background:
|
1475 |
margin-bottom: 10px;
|
1476 |
padding-left: 12px;
|
1477 |
padding-right: 12px;
|
@@ -1488,31 +1504,21 @@ html[dir="rtl"] .acf-fields.-sidebar.-left {
|
|
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
|
1492 |
-
|
1493 |
-
|
1494 |
}
|
1495 |
-
.acf-postbox.seamless > .acf-fields
|
1496 |
margin-bottom: 0;
|
1497 |
}
|
1498 |
-
.acf-postbox.seamless > .acf-fields
|
1499 |
border-width: 1px 0 1px 1px !important;
|
1500 |
border-color: #cccccc;
|
1501 |
background: #e5e5e5;
|
1502 |
}
|
1503 |
-
.acf-postbox.seamless > .acf-fields
|
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,7 +1921,7 @@ html[dir="rtl"] .acf-range-wrap .acf-prepend {
|
|
1915 |
}
|
1916 |
/*---------------------------------------------------------------------------------------------
|
1917 |
*
|
1918 |
-
* acf-
|
1919 |
*
|
1920 |
*---------------------------------------------------------------------------------------------*/
|
1921 |
.acf-accordion {
|
@@ -1957,7 +1963,6 @@ html[dir="rtl"] .acf-range-wrap .acf-prepend {
|
|
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,10 +2016,6 @@ tr.acf-field.acf-accordion .acf-accordion-content {
|
|
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,9 +2070,6 @@ tr.acf-accordion + tr.acf-accordion {
|
|
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,7 +2109,6 @@ tr.acf-accordion + tr.acf-accordion {
|
|
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;
|
25 |
position: relative;
|
26 |
}
|
27 |
.acf-field {
|
28 |
+
margin: 0 0 20px;
|
29 |
+
/* label */
|
30 |
+
/* input */
|
31 |
+
/* error */
|
32 |
}
|
33 |
.acf-field p.description {
|
34 |
display: block;
|
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 |
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 |
position: relative;
|
98 |
margin: 0;
|
99 |
padding: 15px 12px;
|
100 |
+
border-bottom: #EEEEEE solid 1px;
|
101 |
+
clear: both;
|
|
|
|
|
102 |
}
|
103 |
td.acf-fields {
|
104 |
padding: 0 !important;
|
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 |
left: 0;
|
153 |
width: 20%;
|
154 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
.acf-fields.-left > .acf-field > .acf-label {
|
156 |
float: left;
|
157 |
width: 20%;
|
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 |
+
* Basic Field Styles
|
366 |
*
|
367 |
*---------------------------------------------------------------------------------------------*/
|
368 |
.acf-field input[type="text"],
|
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 |
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-top: -1px;
|
1326 |
border-top: #DFDFDF solid 1px;
|
1327 |
border-bottom: #DFDFDF solid 1px;
|
1328 |
}
|
1335 |
.acf-fields > .acf-tab-wrap .acf-tab-group li.active a {
|
1336 |
background: #FFFFFF;
|
1337 |
}
|
1338 |
+
/* inside acf-fields.-left */
|
|
|
|
|
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: 850px) {
|
1345 |
.acf-fields.-left > .acf-tab-wrap .acf-tab-group {
|
1346 |
padding-left: 10px;
|
1347 |
}
|
1356 |
padding-right: 10px;
|
1357 |
}
|
1358 |
}
|
1359 |
+
/* space between field and tabs */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1360 |
.acf-field + .acf-tab-wrap.-left:before {
|
1361 |
content: "";
|
1362 |
display: block;
|
1363 |
+
position: absolute;
|
1364 |
z-index: 1;
|
1365 |
+
background: #DFDFDF;
|
1366 |
+
left: 0;
|
1367 |
+
width: 100%;
|
1368 |
+
height: 1px;
|
|
|
|
|
|
|
1369 |
}
|
1370 |
/* sidebar */
|
1371 |
.acf-fields.-sidebar {
|
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 |
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 |
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-wrap.-left:first-child .acf-tab-group li:first-child a {
|
1465 |
+
border-top-width: 0;
|
1466 |
}
|
1467 |
.acf-fields.-clear > .acf-tab-wrap {
|
1468 |
background: transparent;
|
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 |
background: #f1f1f1;
|
1483 |
}
|
1484 |
/* seamless */
|
1485 |
+
.acf-postbox.seamless {
|
1486 |
+
/* standard */
|
1487 |
+
/* left label */
|
|
|
|
|
1488 |
}
|
1489 |
.acf-postbox.seamless > .acf-fields > .acf-tab-wrap {
|
1490 |
+
background: #f1f1f1;
|
1491 |
margin-bottom: 10px;
|
1492 |
padding-left: 12px;
|
1493 |
padding-right: 12px;
|
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 |
+
/* left label, top tab */
|
1509 |
+
/* left label, left tab */
|
1510 |
}
|
1511 |
+
.acf-postbox.seamless > .acf-fields.-left .acf-tab-wrap.-left .acf-tab-group {
|
1512 |
margin-bottom: 0;
|
1513 |
}
|
1514 |
+
.acf-postbox.seamless > .acf-fields.-left .acf-tab-wrap.-left .acf-tab-group li a {
|
1515 |
border-width: 1px 0 1px 1px !important;
|
1516 |
border-color: #cccccc;
|
1517 |
background: #e5e5e5;
|
1518 |
}
|
1519 |
+
.acf-postbox.seamless > .acf-fields.-left .acf-tab-wrap.-left .acf-tab-group li.active a {
|
|
|
|
|
|
|
|
|
1520 |
background: #f1f1f1;
|
1521 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1522 |
.compat-item .acf-tab-wrap td {
|
1523 |
display: block;
|
1524 |
}
|
1921 |
}
|
1922 |
/*---------------------------------------------------------------------------------------------
|
1923 |
*
|
1924 |
+
* acf-panel
|
1925 |
*
|
1926 |
*---------------------------------------------------------------------------------------------*/
|
1927 |
.acf-accordion {
|
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 |
padding: 0 12px 12px;
|
2017 |
}
|
2018 |
/* #addtag */
|
|
|
|
|
|
|
|
|
2019 |
#addtag > .acf-field.acf-accordion {
|
2020 |
padding-right: 0;
|
2021 |
margin-right: 5%;
|
2070 |
.media-modal .compat-attachment-fields .acf-field.acf-accordion > .acf-input {
|
2071 |
width: 100%;
|
2072 |
}
|
|
|
|
|
|
|
2073 |
/*---------------------------------------------------------------------------------------------
|
2074 |
*
|
2075 |
* Attachment Form (single page)
|
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;
|
assets/js/acf-input.js
CHANGED
@@ -3159,12 +3159,30 @@ var acf;
|
|
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,7 +3386,7 @@ var acf;
|
|
3368 |
|
3369 |
|
3370 |
// reset fields
|
3371 |
-
$fields.removeClass('-r0 -c0').css({'min-height': 0});
|
3372 |
|
3373 |
|
3374 |
// loop
|
@@ -3413,11 +3431,11 @@ var acf;
|
|
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 |
|
@@ -11641,14 +11659,6 @@ var acf;
|
|
11641 |
|
11642 |
var tabs = acf.model.extend({
|
11643 |
|
11644 |
-
$fields: [],
|
11645 |
-
|
11646 |
-
actions: {
|
11647 |
-
'prepare 15': 'initialize',
|
11648 |
-
'append 15': 'initialize',
|
11649 |
-
'refresh 15': 'refresh'
|
11650 |
-
},
|
11651 |
-
|
11652 |
events: {
|
11653 |
'click .acf-tab-button': '_click'
|
11654 |
},
|
@@ -11743,50 +11753,17 @@ var acf;
|
|
11743 |
|
11744 |
},
|
11745 |
|
11746 |
-
addTab: function( $field ){
|
11747 |
-
this.$fields.push( $field );
|
11748 |
-
},
|
11749 |
-
|
11750 |
-
initialize: function(){
|
11751 |
-
|
11752 |
-
// bail ealry if no fields
|
11753 |
-
if( !this.$fields.length ) return;
|
11754 |
-
|
11755 |
-
// loop
|
11756 |
-
for( var i = 0; i < this.$fields.length; i++) {
|
11757 |
-
this.createTab( this.$fields[ i ] );
|
11758 |
-
}
|
11759 |
-
|
11760 |
-
// reset
|
11761 |
-
this.$fields = [];
|
11762 |
-
|
11763 |
-
},
|
11764 |
-
|
11765 |
createTab: function( $field ){
|
11766 |
|
11767 |
-
// bail early if is cell
|
11768 |
-
if( $field.is('td') ) return false;
|
11769 |
-
|
11770 |
-
|
11771 |
// vars
|
11772 |
-
var $label = $field.children('.acf-label');
|
11773 |
-
var $input = $field.children('.acf-input');
|
11774 |
var $wrap = this.getWrap( $field );
|
11775 |
var $button = $field.find('.acf-tab-button');
|
11776 |
var settings = $button.data();
|
11777 |
-
var open = false;
|
11778 |
-
|
11779 |
-
|
11780 |
-
// remove
|
11781 |
-
$field.hide();
|
11782 |
-
$label.remove();
|
11783 |
-
$input.remove();
|
11784 |
|
11785 |
|
11786 |
// create wrap
|
11787 |
if( !$wrap.exists() || settings.endpoint ) {
|
11788 |
$wrap = this.createTabWrap( $field, settings );
|
11789 |
-
open = true;
|
11790 |
}
|
11791 |
|
11792 |
|
@@ -11794,8 +11771,14 @@ var acf;
|
|
11794 |
var $tab = $('<li></li>').append( $button );
|
11795 |
|
11796 |
|
11797 |
-
//
|
11798 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
11799 |
$tab.addClass('active');
|
11800 |
this.open( $field );
|
11801 |
} else {
|
@@ -11811,17 +11794,6 @@ var acf;
|
|
11811 |
$wrap.find('ul').append( $tab );
|
11812 |
|
11813 |
|
11814 |
-
// toggle active tab
|
11815 |
-
// previous attempts to integrate with above 'open' variable were uncessefull
|
11816 |
-
// this separate toggle logic ensures the tab exists
|
11817 |
-
tabIndex++;
|
11818 |
-
var order = acf.getPreference('this.tabs') || [];
|
11819 |
-
var index = order[ groupIndex-1 ] || 0;
|
11820 |
-
if( index == tabIndex-1 && !open ) {
|
11821 |
-
this.toggle( $button );
|
11822 |
-
}
|
11823 |
-
|
11824 |
-
|
11825 |
// return
|
11826 |
return $tab;
|
11827 |
},
|
@@ -11859,34 +11831,6 @@ var acf;
|
|
11859 |
// return
|
11860 |
return $wrap;
|
11861 |
|
11862 |
-
},
|
11863 |
-
|
11864 |
-
refresh: function( $el ){
|
11865 |
-
|
11866 |
-
// loop
|
11867 |
-
$('.acf-tab-wrap', $el).each(function(){
|
11868 |
-
|
11869 |
-
// vars
|
11870 |
-
var $wrap = $(this);
|
11871 |
-
|
11872 |
-
|
11873 |
-
// fix left aligned min-height
|
11874 |
-
if( $wrap.hasClass('-left') ) {
|
11875 |
-
|
11876 |
-
// vars
|
11877 |
-
var $parent = $wrap.parent();
|
11878 |
-
var attribute = $parent.is('td') ? 'height' : 'min-height';
|
11879 |
-
|
11880 |
-
// find height (minus 1 for border-bottom)
|
11881 |
-
var height = $wrap.position().top + $wrap.children('ul').outerHeight(true) - 1;
|
11882 |
-
|
11883 |
-
// add css
|
11884 |
-
$parent.css(attribute, height);
|
11885 |
-
|
11886 |
-
}
|
11887 |
-
|
11888 |
-
});
|
11889 |
-
|
11890 |
}
|
11891 |
|
11892 |
});
|
@@ -11924,8 +11868,24 @@ var acf;
|
|
11924 |
|
11925 |
initialize: function(){
|
11926 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11927 |
// add tab
|
11928 |
-
tabs.
|
|
|
|
|
|
|
|
|
|
|
|
|
11929 |
|
11930 |
},
|
11931 |
|
@@ -11941,6 +11901,7 @@ var acf;
|
|
11941 |
var $tab = tabs.getTab( $wrap, key );
|
11942 |
var $li = $tab.parent();
|
11943 |
|
|
|
11944 |
// bail early if $group does not exist (clone field)
|
11945 |
if( !$wrap.exists() ) return;
|
11946 |
|
@@ -11957,7 +11918,7 @@ var acf;
|
|
11957 |
|
11958 |
// select other tab if active
|
11959 |
if( $li.hasClass('active') ) {
|
11960 |
-
$wrap.find('
|
11961 |
}
|
11962 |
|
11963 |
},
|
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 |
|
3387 |
|
3388 |
// reset fields
|
3389 |
+
$fields.removeClass('acf-r0 acf-c0').css({'min-height': 0});
|
3390 |
|
3391 |
|
3392 |
// loop
|
3431 |
// add classes
|
3432 |
if( this_top == 0 ) {
|
3433 |
|
3434 |
+
$el.addClass('acf-r0');
|
3435 |
|
3436 |
} else if( cell == 0 ) {
|
3437 |
|
3438 |
+
$el.addClass('acf-c0');
|
3439 |
|
3440 |
}
|
3441 |
|
11659 |
|
11660 |
var tabs = acf.model.extend({
|
11661 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11662 |
events: {
|
11663 |
'click .acf-tab-button': '_click'
|
11664 |
},
|
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 |
var $tab = $('<li></li>').append( $button );
|
11772 |
|
11773 |
|
11774 |
+
// index
|
11775 |
+
tabIndex++;
|
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 |
$wrap.find('ul').append( $tab );
|
11795 |
|
11796 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11797 |
// return
|
11798 |
return $tab;
|
11799 |
},
|
11831 |
// return
|
11832 |
return $wrap;
|
11833 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11834 |
}
|
11835 |
|
11836 |
});
|
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 |
+
var $tab = tabs.createTab( $field );
|
11883 |
+
|
11884 |
+
|
11885 |
+
// remove
|
11886 |
+
$field.hide();
|
11887 |
+
$label.remove();
|
11888 |
+
$input.remove();
|
11889 |
|
11890 |
},
|
11891 |
|
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 |
|
11919 |
// select other tab if active
|
11920 |
if( $li.hasClass('active') ) {
|
11921 |
+
$wrap.find('a:visible').first().trigger('click');
|
11922 |
}
|
11923 |
|
11924 |
},
|
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({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_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),$("body > #ui-datepicker-div").exists()&&$("body > #ui-datepicker-div").wrap('<div class="acf-ui-datepicker" />'))},destroy:function(e){}}),
|
2 |
-
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={formatMatches:function(e){return 1===e?l10n.matches_1:l10n.matches_n.replace("%d",e)},formatNoMatches:function(){return l10n.matches_0},
|
3 |
-
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);
|
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);
|
includes/forms/form-widget.php
CHANGED
@@ -261,25 +261,20 @@ 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 |
-
// return
|
280 |
-
return $fields;
|
281 |
-
|
282 |
-
});
|
283 |
|
284 |
|
285 |
$('#widgets-right').on('click', '.widget-control-save', function( e ){
|
261 |
<script type="text/javascript">
|
262 |
(function($) {
|
263 |
|
264 |
+
acf.add_filter('get_fields', function( $fields ){
|
265 |
+
|
266 |
+
// widgets
|
267 |
+
$fields = $fields.not('#available-widgets .acf-field');
|
268 |
+
|
269 |
+
|
270 |
+
// customizer
|
271 |
+
$fields = $fields.not('.widget-tpl .acf-field');
|
272 |
+
|
273 |
+
|
274 |
+
// return
|
275 |
+
return $fields;
|
276 |
+
|
277 |
+
});
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
|
280 |
$('#widgets-right').on('click', '.widget-control-save', function( e ){
|
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: 2017-
|
7 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
8 |
"Language-Team: Raphael Hüni <rafhun@gmail.com>\n"
|
9 |
"Language: de_CH\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;"
|
@@ -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,8 +390,9 @@ msgid "Support"
|
|
390 |
msgstr "Hilfe"
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:623
|
|
|
393 |
msgid "Pro"
|
394 |
-
msgstr "
|
395 |
|
396 |
#: includes/admin/admin-field-groups.php:628
|
397 |
#, php-format
|
@@ -407,14 +408,14 @@ msgstr "Dieses Element duplizieren"
|
|
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:
|
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:
|
417 |
-
#: includes/fields/class-acf-field-relationship.php:
|
418 |
msgid "Search"
|
419 |
msgstr "Suchen"
|
420 |
|
@@ -437,10 +438,11 @@ msgstr "Synchronisieren"
|
|
437 |
|
438 |
#: includes/admin/admin-field-groups.php:780
|
439 |
msgid "Apply"
|
440 |
-
msgstr "
|
441 |
|
442 |
# @ acf
|
443 |
#: includes/admin/admin-field-groups.php:798
|
|
|
444 |
msgid "Bulk Actions"
|
445 |
msgstr "Massenverarbeitung"
|
446 |
|
@@ -504,14 +506,14 @@ msgstr "Keine Feld-Gruppe ausgewählt"
|
|
504 |
|
505 |
# @ acf
|
506 |
#: includes/admin/settings-tools.php:184
|
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/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,13 +544,13 @@ msgstr "Zeige dieses Feld, wenn"
|
|
542 |
|
543 |
# @ acf
|
544 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
545 |
-
#: includes/locations.php:
|
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:
|
552 |
msgid "is not equal to"
|
553 |
msgstr "ist ungleich"
|
554 |
|
@@ -566,8 +568,8 @@ msgstr "Regel-Gruppe hinzufügen"
|
|
566 |
|
567 |
# @ acf
|
568 |
#: includes/admin/views/field-group-field.php:41
|
569 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
570 |
-
#: pro/fields/class-acf-field-repeater.php:
|
571 |
msgid "Drag to reorder"
|
572 |
msgstr "Ziehen zum Sortieren"
|
573 |
|
@@ -579,10 +581,9 @@ msgstr "Feld bearbeiten"
|
|
579 |
|
580 |
# @ acf
|
581 |
#: includes/admin/views/field-group-field.php:48
|
582 |
-
#: includes/fields/class-acf-field-
|
583 |
-
#: includes/fields/class-acf-field-
|
584 |
-
#:
|
585 |
-
#: pro/fields/class-acf-field-gallery.php:342
|
586 |
msgid "Edit"
|
587 |
msgstr "Bearbeiten"
|
588 |
|
@@ -608,7 +609,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 +624,60 @@ 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:
|
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 schliessen"
|
682 |
|
@@ -687,24 +688,23 @@ msgstr "Reihenfolge"
|
|
687 |
|
688 |
# @ acf
|
689 |
#: includes/admin/views/field-group-fields.php:5
|
690 |
-
#: includes/fields/class-acf-field-
|
691 |
-
#: includes/fields/class-acf-field-
|
692 |
-
#: includes/fields/class-acf-field-
|
693 |
-
#:
|
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:
|
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,13 +781,13 @@ 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 Aligned"
|
792 |
msgstr "Links neben dem Feld"
|
793 |
|
@@ -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,8 +1034,6 @@ msgid ""
|
|
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,7 +1129,7 @@ msgstr ""
|
|
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,7 +1206,7 @@ msgstr ""
|
|
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,7 +1364,7 @@ msgstr ""
|
|
1366 |
|
1367 |
# @ acf
|
1368 |
#: includes/admin/views/settings-info.php:144
|
1369 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1370 |
msgid "Page Link"
|
1371 |
msgstr "Seiten-Link"
|
1372 |
|
@@ -1469,7 +1467,7 @@ msgstr ""
|
|
1469 |
|
1470 |
# @ acf
|
1471 |
#: includes/admin/views/settings-tools.php:77
|
1472 |
-
#: includes/fields/class-acf-field-file.php:
|
1473 |
msgid "Select File"
|
1474 |
msgstr "Datei auswählen"
|
1475 |
|
@@ -1499,56 +1497,56 @@ msgid "Full Size"
|
|
1499 |
msgstr "Volle Grösse"
|
1500 |
|
1501 |
# @ acf
|
1502 |
-
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:
|
1503 |
-
#: pro/fields/class-acf-field-clone.php:
|
1504 |
msgid "(no title)"
|
1505 |
msgstr "(ohne Titel)"
|
1506 |
|
1507 |
-
#: includes/api/api-helpers.php:
|
1508 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1509 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1510 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1511 |
msgid "Parent"
|
1512 |
msgstr "Eltern"
|
1513 |
|
1514 |
# @ acf
|
1515 |
-
#: includes/api/api-helpers.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1552 |
#, php-format
|
1553 |
msgid "File type must be %s."
|
1554 |
msgstr "Der Dateityp muss %s sein."
|
@@ -1579,1197 +1577,1174 @@ msgid "jQuery"
|
|
1579 |
msgstr "jQuery"
|
1580 |
|
1581 |
# @ acf
|
1582 |
-
#: includes/fields.php:149 includes/fields/class-acf-field-
|
1583 |
-
#: includes/fields/class-acf-field-
|
1584 |
-
#: includes/fields/class-acf-field-
|
1585 |
-
#:
|
1586 |
-
#: pro/fields/class-acf-field-
|
1587 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1588 |
-
#: pro/fields/class-acf-field-
|
1589 |
-
#: pro/fields/class-acf-field-repeater.php:450
|
1590 |
msgid "Layout"
|
1591 |
msgstr "Layout"
|
1592 |
|
1593 |
# @ acf
|
1594 |
-
#: includes/fields.php:
|
1595 |
msgid "Field type does not exist"
|
1596 |
msgstr "Feld-Typ existiert nicht"
|
1597 |
|
1598 |
-
#: includes/fields.php:
|
|
|
1599 |
msgid "Unknown"
|
1600 |
-
msgstr "
|
1601 |
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1605 |
|
1606 |
# @ acf
|
1607 |
-
#: includes/fields/class-acf-field-
|
1608 |
-
#: includes/fields/class-acf-field-
|
1609 |
-
#: includes/fields/class-acf-field-
|
1610 |
-
#: includes/fields/class-acf-field-select.php:368
|
1611 |
msgid "Choices"
|
1612 |
msgstr "Auswahlmöglichkeiten"
|
1613 |
|
1614 |
# @ acf
|
1615 |
-
#: includes/fields/class-acf-field-
|
1616 |
-
#: includes/fields/class-acf-field-
|
1617 |
-
#: includes/fields/class-acf-field-
|
1618 |
-
#: includes/fields/class-acf-field-select.php:369
|
1619 |
msgid "Enter each choice on a new line."
|
1620 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1621 |
|
1622 |
# @ acf
|
1623 |
-
#: includes/fields/class-acf-field-
|
1624 |
-
#: includes/fields/class-acf-field-
|
1625 |
-
#: includes/fields/class-acf-field-
|
1626 |
-
#: includes/fields/class-acf-field-select.php:369
|
1627 |
msgid "For more control, you may specify both a value and label like this:"
|
1628 |
msgstr ""
|
1629 |
"Für eine bessere Darstellung, kannst Du auch einen Wert und dazu dessen "
|
1630 |
"Beschriftung definieren:"
|
1631 |
|
1632 |
# @ acf
|
1633 |
-
#: includes/fields/class-acf-field-
|
1634 |
-
#: includes/fields/class-acf-field-
|
1635 |
-
#: includes/fields/class-acf-field-
|
1636 |
-
#: includes/fields/class-acf-field-select.php:369
|
1637 |
msgid "red : Red"
|
1638 |
msgstr "rot : Rot"
|
1639 |
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
#: includes/fields/class-acf-field-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1650 |
|
1651 |
# @ acf
|
1652 |
-
#: includes/fields/class-acf-field-
|
1653 |
-
#: includes/fields/class-acf-field-
|
1654 |
-
#: includes/fields/class-acf-field-
|
1655 |
-
#: includes/fields/class-acf-field-
|
1656 |
-
#: includes/fields/class-acf-field-
|
1657 |
-
#: includes/fields/class-acf-field-
|
1658 |
-
#: includes/fields/class-acf-field-
|
1659 |
-
#: includes/fields/class-acf-field-
|
1660 |
-
#: includes/fields/class-acf-field-
|
1661 |
-
#: includes/fields/class-acf-field-
|
1662 |
-
#: includes/fields/class-acf-field-
|
1663 |
-
#: includes/fields/class-acf-field-url.php:100
|
1664 |
-
#: includes/fields/class-acf-field-wysiwyg.php:410
|
1665 |
msgid "Default Value"
|
1666 |
msgstr "Standardwert"
|
1667 |
|
1668 |
# @ acf
|
1669 |
-
#: includes/fields/class-acf-field-
|
1670 |
-
#: includes/fields/class-acf-field-
|
1671 |
-
|
1672 |
-
|
1673 |
-
#: includes/fields/class-acf-field-range.php:149
|
1674 |
-
#: includes/fields/class-acf-field-text.php:120
|
1675 |
-
#: includes/fields/class-acf-field-textarea.php:103
|
1676 |
-
#: includes/fields/class-acf-field-url.php:101
|
1677 |
-
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1678 |
-
msgid "Appears when creating a new post"
|
1679 |
-
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1680 |
|
1681 |
# @ acf
|
1682 |
-
#: includes/fields/class-acf-field-
|
1683 |
-
#: includes/fields/class-acf-field-
|
1684 |
-
|
|
|
|
|
|
|
|
|
|
|
1685 |
msgid "Horizontal"
|
1686 |
msgstr "Horizontal"
|
1687 |
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
|
|
|
|
1694 |
|
1695 |
# @ acf
|
1696 |
-
#: includes/fields/class-acf-field-
|
1697 |
-
#: includes/fields/class-acf-field-
|
1698 |
-
#: includes/fields/class-acf-field-
|
1699 |
-
#: includes/fields/class-acf-field-
|
1700 |
-
#: includes/fields/class-acf-field-
|
1701 |
-
#: includes/fields/class-acf-field-
|
1702 |
-
#: includes/fields/class-acf-field-taxonomy.php:833
|
1703 |
msgid "Return Value"
|
1704 |
msgstr "Rückgabewert"
|
1705 |
|
1706 |
# @ acf
|
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 |
-
#: includes/fields/class-acf-field-
|
1712 |
-
#: includes/fields/class-acf-field-radio.php:300
|
1713 |
msgid "Specify the returned value on front end"
|
1714 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1715 |
|
1716 |
-
#: includes/fields/class-acf-field-
|
1717 |
-
#: includes/fields/class-acf-field-
|
1718 |
-
#: includes/fields/class-acf-field-
|
1719 |
-
#: includes/fields/class-acf-field-select.php:431
|
1720 |
msgid "Value"
|
1721 |
msgstr "Wert"
|
1722 |
|
1723 |
-
#: includes/fields/class-acf-field-
|
1724 |
-
#: includes/fields/class-acf-field-
|
1725 |
-
#: includes/fields/class-acf-field-
|
1726 |
-
#: includes/fields/class-acf-field-select.php:433
|
1727 |
msgid "Both (Array)"
|
1728 |
msgstr "Beide (Array)"
|
1729 |
|
1730 |
# @ acf
|
1731 |
-
#: includes/fields/class-acf-field-
|
1732 |
-
#: includes/fields/class-acf-field-taxonomy.php:780
|
1733 |
-
msgid "Checkbox"
|
1734 |
-
msgstr "Checkbox"
|
1735 |
-
|
1736 |
-
# @ acf
|
1737 |
-
#: includes/fields/class-acf-field-checkbox.php:154
|
1738 |
-
msgid "Toggle All"
|
1739 |
-
msgstr "Alle auswählen"
|
1740 |
-
|
1741 |
-
#: includes/fields/class-acf-field-checkbox.php:221
|
1742 |
-
msgid "Add new choice"
|
1743 |
-
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1744 |
-
|
1745 |
-
#: includes/fields/class-acf-field-checkbox.php:353
|
1746 |
-
msgid "Allow Custom"
|
1747 |
-
msgstr "Erlaube benutzerdefinierte Felder"
|
1748 |
-
|
1749 |
-
#: includes/fields/class-acf-field-checkbox.php:358
|
1750 |
-
msgid "Allow 'custom' values to be added"
|
1751 |
-
msgstr "Erlaube das Hinzufügen benutzerdefinierter Werte"
|
1752 |
-
|
1753 |
-
#: includes/fields/class-acf-field-checkbox.php:364
|
1754 |
-
msgid "Save Custom"
|
1755 |
-
msgstr "Benutzerdefinierte Werte sichern"
|
1756 |
-
|
1757 |
-
#: includes/fields/class-acf-field-checkbox.php:369
|
1758 |
-
msgid "Save 'custom' values to the field's choices"
|
1759 |
-
msgstr ""
|
1760 |
-
"Sichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1761 |
-
|
1762 |
-
# @ acf
|
1763 |
-
#: includes/fields/class-acf-field-checkbox.php:376
|
1764 |
-
#: includes/fields/class-acf-field-select.php:378
|
1765 |
-
msgid "Enter each default value on a new line"
|
1766 |
-
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
1767 |
-
|
1768 |
-
#: includes/fields/class-acf-field-checkbox.php:398
|
1769 |
-
msgid "Toggle"
|
1770 |
-
msgstr "Auswählen"
|
1771 |
-
|
1772 |
-
#: includes/fields/class-acf-field-checkbox.php:399
|
1773 |
-
msgid "Prepend an extra checkbox to toggle all choices"
|
1774 |
-
msgstr ""
|
1775 |
-
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1776 |
-
|
1777 |
-
# @ acf
|
1778 |
-
#: includes/fields/class-acf-field-color_picker.php:25
|
1779 |
msgid "Color Picker"
|
1780 |
msgstr "Farbe"
|
1781 |
|
1782 |
# @ acf
|
1783 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1784 |
msgid "Clear"
|
1785 |
msgstr "Leeren"
|
1786 |
|
1787 |
# @ acf
|
1788 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1789 |
msgid "Default"
|
1790 |
msgstr "Standard"
|
1791 |
|
1792 |
# @ acf
|
1793 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1794 |
msgid "Select Color"
|
1795 |
msgstr "Farbe auswählen"
|
1796 |
|
1797 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1798 |
msgid "Current Color"
|
1799 |
msgstr "Aktuelle Farbe"
|
1800 |
|
1801 |
# @ acf
|
1802 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1803 |
msgid "Date Picker"
|
1804 |
msgstr "Datum"
|
1805 |
|
1806 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1807 |
msgctxt "Date Picker JS closeText"
|
1808 |
msgid "Done"
|
1809 |
msgstr "Schliessen"
|
1810 |
|
1811 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1812 |
msgctxt "Date Picker JS currentText"
|
1813 |
msgid "Today"
|
1814 |
msgstr "Heute"
|
1815 |
|
1816 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1817 |
msgctxt "Date Picker JS nextText"
|
1818 |
msgid "Next"
|
1819 |
msgstr "Weiter"
|
1820 |
|
1821 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1822 |
msgctxt "Date Picker JS prevText"
|
1823 |
msgid "Prev"
|
1824 |
msgstr "Zurück"
|
1825 |
|
1826 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1827 |
msgctxt "Date Picker JS weekHeader"
|
1828 |
msgid "Wk"
|
1829 |
msgstr "KW"
|
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 "Display Format"
|
1836 |
msgstr "Darstellungs-Format"
|
1837 |
|
1838 |
# @ acf
|
1839 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1840 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1841 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1842 |
msgid "The format displayed when editing a post"
|
1843 |
msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
1844 |
|
1845 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1846 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1847 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1848 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1849 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1850 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
|
|
1851 |
msgid "Custom:"
|
1852 |
-
msgstr "
|
1853 |
|
1854 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1855 |
msgid "Save Format"
|
1856 |
msgstr "Format sichern"
|
1857 |
|
1858 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1859 |
msgid "The format used when saving a value"
|
1860 |
msgstr "Das verwendete Format, wenn der Wert gesichert wird"
|
1861 |
|
1862 |
# @ acf
|
1863 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1864 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1865 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1866 |
-
#: includes/fields/class-acf-field-relationship.php:
|
1867 |
-
#: includes/fields/class-acf-field-select.php:
|
1868 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1869 |
msgid "Return Format"
|
1870 |
msgstr "Rückgabewert"
|
1871 |
|
1872 |
# @ acf
|
1873 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1874 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1875 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1876 |
msgid "The format returned via template functions"
|
1877 |
msgstr "Das Datums-Format für die Ausgabe in den Template-Funktionen"
|
1878 |
|
1879 |
# @ acf
|
1880 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1881 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1882 |
msgid "Week Starts On"
|
1883 |
msgstr "Die Woche beginnt am"
|
1884 |
|
1885 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1886 |
msgid "Date Time Picker"
|
1887 |
msgstr "Datum/Uhrzeit"
|
1888 |
|
1889 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1890 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1891 |
msgid "Choose Time"
|
1892 |
msgstr "Zeit setzen"
|
1893 |
|
1894 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1895 |
msgctxt "Date Time Picker JS timeText"
|
1896 |
msgid "Time"
|
1897 |
msgstr "Zeit"
|
1898 |
|
1899 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1900 |
msgctxt "Date Time Picker JS hourText"
|
1901 |
msgid "Hour"
|
1902 |
msgstr "Stunde"
|
1903 |
|
1904 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1905 |
msgctxt "Date Time Picker JS minuteText"
|
1906 |
msgid "Minute"
|
1907 |
msgstr "Minute"
|
1908 |
|
1909 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1910 |
msgctxt "Date Time Picker JS secondText"
|
1911 |
msgid "Second"
|
1912 |
msgstr "Sekunde"
|
1913 |
|
1914 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1915 |
msgctxt "Date Time Picker JS millisecText"
|
1916 |
msgid "Millisecond"
|
1917 |
msgstr "Millisekunde"
|
1918 |
|
1919 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1920 |
msgctxt "Date Time Picker JS microsecText"
|
1921 |
msgid "Microsecond"
|
1922 |
msgstr "Mikrosekunde"
|
1923 |
|
1924 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1925 |
msgctxt "Date Time Picker JS timezoneText"
|
1926 |
msgid "Time Zone"
|
1927 |
msgstr "Zeitzone"
|
1928 |
|
1929 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1930 |
msgctxt "Date Time Picker JS currentText"
|
1931 |
msgid "Now"
|
1932 |
msgstr "Jetzt"
|
1933 |
|
1934 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1935 |
msgctxt "Date Time Picker JS closeText"
|
1936 |
msgid "Done"
|
1937 |
msgstr "Schliessen"
|
1938 |
|
1939 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1940 |
msgctxt "Date Time Picker JS selectText"
|
1941 |
msgid "Select"
|
1942 |
msgstr "Auswählen"
|
1943 |
|
1944 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1945 |
msgctxt "Date Time Picker JS amText"
|
1946 |
msgid "AM"
|
1947 |
msgstr "AM"
|
1948 |
|
1949 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1950 |
msgctxt "Date Time Picker JS amTextShort"
|
1951 |
msgid "A"
|
1952 |
msgstr "A"
|
1953 |
|
1954 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1955 |
msgctxt "Date Time Picker JS pmText"
|
1956 |
msgid "PM"
|
1957 |
msgstr "PM"
|
1958 |
|
1959 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1960 |
msgctxt "Date Time Picker JS pmTextShort"
|
1961 |
msgid "P"
|
1962 |
msgstr "P"
|
1963 |
|
1964 |
# @ acf
|
1965 |
-
#: includes/fields/class-acf-field-email.php:
|
1966 |
msgid "Email"
|
1967 |
msgstr "E-Mail"
|
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-
|
1973 |
-
#: includes/fields/class-acf-field-text.php:
|
1974 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1975 |
-
#: includes/fields/class-acf-field-url.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1976 |
msgid "Placeholder Text"
|
1977 |
msgstr "Platzhalter-Text"
|
1978 |
|
1979 |
# @ acf
|
1980 |
-
#: includes/fields/class-acf-field-email.php:
|
1981 |
-
#: includes/fields/class-acf-field-number.php:
|
1982 |
-
#: includes/fields/class-acf-field-password.php:
|
1983 |
-
#: includes/fields/class-acf-field-text.php:
|
1984 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1985 |
-
#: includes/fields/class-acf-field-url.php:
|
1986 |
msgid "Appears within the input"
|
1987 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1988 |
|
1989 |
# @ acf
|
1990 |
-
#: includes/fields/class-acf-field-email.php:
|
1991 |
-
#: includes/fields/class-acf-field-number.php:
|
1992 |
-
#: includes/fields/class-acf-field-password.php:
|
1993 |
-
#: includes/fields/class-acf-field-
|
1994 |
-
#: includes/fields/class-acf-field-text.php:137
|
1995 |
msgid "Prepend"
|
1996 |
msgstr "Voranstellen"
|
1997 |
|
1998 |
# @ acf
|
1999 |
-
#: includes/fields/class-acf-field-email.php:
|
2000 |
-
#: includes/fields/class-acf-field-number.php:
|
2001 |
-
#: includes/fields/class-acf-field-password.php:
|
2002 |
-
#: includes/fields/class-acf-field-
|
2003 |
-
#: includes/fields/class-acf-field-text.php:138
|
2004 |
msgid "Appears before the input"
|
2005 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
2006 |
|
2007 |
# @ acf
|
2008 |
-
#: includes/fields/class-acf-field-email.php:
|
2009 |
-
#: includes/fields/class-acf-field-number.php:
|
2010 |
-
#: includes/fields/class-acf-field-password.php:
|
2011 |
-
#: includes/fields/class-acf-field-
|
2012 |
-
#: includes/fields/class-acf-field-text.php:146
|
2013 |
msgid "Append"
|
2014 |
msgstr "Anhängen"
|
2015 |
|
2016 |
# @ acf
|
2017 |
-
#: includes/fields/class-acf-field-email.php:
|
2018 |
-
#: includes/fields/class-acf-field-number.php:
|
2019 |
-
#: includes/fields/class-acf-field-password.php:
|
2020 |
-
#: includes/fields/class-acf-field-
|
2021 |
-
#: includes/fields/class-acf-field-text.php:147
|
2022 |
msgid "Appears after the input"
|
2023 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
2024 |
|
2025 |
# @ acf
|
2026 |
-
#: includes/fields/class-acf-field-file.php:
|
2027 |
msgid "File"
|
2028 |
msgstr "Datei"
|
2029 |
|
2030 |
# @ acf
|
2031 |
-
#: includes/fields/class-acf-field-file.php:
|
2032 |
msgid "Edit File"
|
2033 |
msgstr "Datei bearbeiten"
|
2034 |
|
2035 |
# @ acf
|
2036 |
-
#: includes/fields/class-acf-field-file.php:
|
2037 |
msgid "Update File"
|
2038 |
msgstr "Datei aktualisieren"
|
2039 |
|
2040 |
# @ acf
|
2041 |
-
#: includes/fields/class-acf-field-file.php:
|
2042 |
-
#: includes/fields/class-acf-field-image.php:
|
2043 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2044 |
msgid "Uploaded to this post"
|
2045 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2046 |
|
2047 |
-
#: includes/fields/class-acf-field-file.php:
|
2048 |
msgid "File name"
|
2049 |
msgstr "Dateiname"
|
2050 |
|
2051 |
# @ acf
|
2052 |
-
#: includes/fields/class-acf-field-file.php:
|
2053 |
-
#: includes/fields/class-acf-field-file.php:
|
2054 |
-
#: includes/fields/class-acf-field-file.php:
|
2055 |
-
#: includes/fields/class-acf-field-image.php:
|
2056 |
-
#: includes/fields/class-acf-field-image.php:
|
2057 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2058 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2059 |
msgid "File size"
|
2060 |
msgstr "Dateigrösse"
|
2061 |
|
2062 |
# @ acf
|
2063 |
-
#: includes/fields/class-acf-field-file.php:
|
2064 |
-
#: includes/fields/class-acf-field-image.php:124
|
2065 |
-
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2066 |
-
#: pro/fields/class-acf-field-gallery.php:343
|
2067 |
-
#: pro/fields/class-acf-field-gallery.php:531
|
2068 |
-
msgid "Remove"
|
2069 |
-
msgstr "Entfernen"
|
2070 |
-
|
2071 |
-
# @ acf
|
2072 |
-
#: includes/fields/class-acf-field-file.php:155
|
2073 |
msgid "Add File"
|
2074 |
msgstr "Datei hinzufügen"
|
2075 |
|
2076 |
# @ acf
|
2077 |
-
#: includes/fields/class-acf-field-file.php:
|
2078 |
msgid "File Array"
|
2079 |
msgstr "Datei-Array"
|
2080 |
|
2081 |
# @ acf
|
2082 |
-
#: includes/fields/class-acf-field-file.php:
|
2083 |
msgid "File URL"
|
2084 |
msgstr "Datei-URL"
|
2085 |
|
2086 |
# @ acf
|
2087 |
-
#: includes/fields/class-acf-field-file.php:
|
2088 |
msgid "File ID"
|
2089 |
msgstr "Datei-ID"
|
2090 |
|
2091 |
# @ acf
|
2092 |
-
#: includes/fields/class-acf-field-file.php:
|
2093 |
-
#: includes/fields/class-acf-field-image.php:
|
2094 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2095 |
msgid "Library"
|
2096 |
msgstr "Medienübersicht"
|
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 "Limit the media library choice"
|
2103 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2104 |
|
2105 |
# @ acf
|
2106 |
-
#: includes/fields/class-acf-field-file.php:
|
2107 |
-
#: includes/fields/class-acf-field-image.php:
|
2108 |
-
#: includes/locations/class-acf-location-attachment.php:
|
2109 |
-
#: includes/locations/class-acf-location-comment.php:
|
2110 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2111 |
-
#: includes/locations/class-acf-location-taxonomy.php:
|
2112 |
-
#: includes/locations/class-acf-location-user-form.php:
|
2113 |
-
#: includes/locations/class-acf-location-user-role.php:
|
2114 |
-
#: includes/locations/class-acf-location-widget.php:
|
2115 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2116 |
msgid "All"
|
2117 |
msgstr "Alle"
|
2118 |
|
2119 |
# @ acf
|
2120 |
-
#: includes/fields/class-acf-field-file.php:
|
2121 |
-
#: includes/fields/class-acf-field-image.php:
|
2122 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2123 |
msgid "Uploaded to post"
|
2124 |
msgstr "Für den Beitrag hochgeladen"
|
2125 |
|
2126 |
# @ acf
|
2127 |
-
#: includes/fields/class-acf-field-file.php:
|
2128 |
-
#: includes/fields/class-acf-field-image.php:
|
2129 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2130 |
msgid "Minimum"
|
2131 |
msgstr "Minimum"
|
2132 |
|
2133 |
# @ acf
|
2134 |
-
#: includes/fields/class-acf-field-file.php:
|
2135 |
-
#: includes/fields/class-acf-field-file.php:
|
2136 |
msgid "Restrict which files can be uploaded"
|
2137 |
msgstr ""
|
2138 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2139 |
"erfüllen"
|
2140 |
|
2141 |
# @ acf
|
2142 |
-
#: includes/fields/class-acf-field-file.php:
|
2143 |
-
#: includes/fields/class-acf-field-image.php:
|
2144 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2145 |
msgid "Maximum"
|
2146 |
msgstr "Maximum"
|
2147 |
|
2148 |
# @ acf
|
2149 |
-
#: includes/fields/class-acf-field-file.php:
|
2150 |
-
#: includes/fields/class-acf-field-image.php:
|
2151 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2152 |
msgid "Allowed file types"
|
2153 |
msgstr "Erlaubte Datei-Formate"
|
2154 |
|
2155 |
# @ acf
|
2156 |
-
#: includes/fields/class-acf-field-file.php:
|
2157 |
-
#: includes/fields/class-acf-field-image.php:
|
2158 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2159 |
msgid "Comma separated list. Leave blank for all types"
|
2160 |
msgstr ""
|
2161 |
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2162 |
"erlaubt"
|
2163 |
|
2164 |
# @ acf
|
2165 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2166 |
msgid "Google Map"
|
2167 |
msgstr "Google Maps"
|
2168 |
|
2169 |
# @ acf
|
2170 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2171 |
msgid "Locating"
|
2172 |
msgstr "Lokalisiere"
|
2173 |
|
2174 |
# @ acf
|
2175 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2176 |
msgid "Sorry, this browser does not support geolocation"
|
2177 |
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
2178 |
|
2179 |
# @ acf
|
2180 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2181 |
msgid "Clear location"
|
2182 |
msgstr "Position löschen"
|
2183 |
|
2184 |
# @ acf
|
2185 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2186 |
msgid "Find current location"
|
2187 |
msgstr "Aktuelle Position finden"
|
2188 |
|
2189 |
# @ acf
|
2190 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2191 |
msgid "Search for address..."
|
2192 |
msgstr "Nach der Adresse suchen..."
|
2193 |
|
2194 |
# @ acf
|
2195 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2196 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2197 |
msgid "Center"
|
2198 |
msgstr "Kartenmittelpunkt"
|
2199 |
|
2200 |
# @ acf
|
2201 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2202 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2203 |
msgid "Center the initial map"
|
2204 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2205 |
|
2206 |
# @ acf
|
2207 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2208 |
msgid "Zoom"
|
2209 |
msgstr "Zoom"
|
2210 |
|
2211 |
# @ acf
|
2212 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2213 |
msgid "Set the initial zoom level"
|
2214 |
msgstr "Legt die Zoomstufe der Karte fest"
|
2215 |
|
2216 |
# @ acf
|
2217 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2218 |
-
#: includes/fields/class-acf-field-image.php:
|
2219 |
-
#: includes/fields/class-acf-field-image.php:
|
2220 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2221 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2222 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2223 |
msgid "Height"
|
2224 |
msgstr "Höhe"
|
2225 |
|
2226 |
# @ acf
|
2227 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2228 |
msgid "Customise the map height"
|
2229 |
msgstr "Legt die Höhe der Karte fest"
|
2230 |
|
2231 |
# @ acf
|
2232 |
-
#: includes/fields/class-acf-field-group.php:
|
|
|
2233 |
msgid "Group"
|
2234 |
-
msgstr "
|
|
|
|
|
2235 |
|
2236 |
# @ acf
|
2237 |
-
#: includes/fields/class-acf-field-group.php:
|
2238 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2239 |
msgid "Sub Fields"
|
2240 |
msgstr "Wiederholungsfelder"
|
2241 |
|
2242 |
-
#: includes/fields/class-acf-field-group.php:
|
2243 |
-
#: pro/fields/class-acf-field-clone.php:
|
2244 |
msgid "Specify the style used to render the selected fields"
|
2245 |
msgstr "Gib an, wie die ausgewählten Felder angezeigt werden sollen"
|
2246 |
|
2247 |
# @ acf
|
2248 |
-
#: includes/fields/class-acf-field-group.php:
|
2249 |
-
#: pro/fields/class-acf-field-clone.php:
|
2250 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2251 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2252 |
msgid "Block"
|
2253 |
msgstr "Block"
|
2254 |
|
2255 |
# @ acf
|
2256 |
-
#: includes/fields/class-acf-field-group.php:
|
2257 |
-
#: pro/fields/class-acf-field-clone.php:
|
2258 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2259 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2260 |
msgid "Table"
|
2261 |
msgstr "Tabelle"
|
2262 |
|
2263 |
# @ acf
|
2264 |
-
#: includes/fields/class-acf-field-group.php:
|
2265 |
-
#: pro/fields/class-acf-field-clone.php:
|
2266 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2267 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2268 |
msgid "Row"
|
2269 |
msgstr "Reihe"
|
2270 |
|
2271 |
# @ acf
|
2272 |
-
#: includes/fields/class-acf-field-image.php:
|
2273 |
msgid "Image"
|
2274 |
msgstr "Bild"
|
2275 |
|
2276 |
# @ acf
|
2277 |
-
#: includes/fields/class-acf-field-image.php:
|
2278 |
msgid "Select Image"
|
2279 |
msgstr "Bild auswählen"
|
2280 |
|
2281 |
# @ acf
|
2282 |
-
#: includes/fields/class-acf-field-image.php:
|
2283 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2284 |
msgid "Edit Image"
|
2285 |
msgstr "Bild bearbeiten"
|
2286 |
|
2287 |
# @ acf
|
2288 |
-
#: includes/fields/class-acf-field-image.php:
|
2289 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2290 |
msgid "Update Image"
|
2291 |
msgstr "Bild aktualisieren"
|
2292 |
|
2293 |
# @ acf
|
2294 |
-
#: includes/fields/class-acf-field-image.php:
|
2295 |
msgid "All images"
|
2296 |
msgstr "Alle Bilder"
|
2297 |
|
2298 |
# @ acf
|
2299 |
-
#: includes/fields/class-acf-field-image.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2300 |
msgid "No image selected"
|
2301 |
msgstr "Kein Bild ausgewählt"
|
2302 |
|
2303 |
# @ acf
|
2304 |
-
#: includes/fields/class-acf-field-image.php:
|
2305 |
msgid "Add Image"
|
2306 |
msgstr "Bild hinzufügen"
|
2307 |
|
2308 |
# @ acf
|
2309 |
-
#: includes/fields/class-acf-field-image.php:
|
2310 |
msgid "Image Array"
|
2311 |
msgstr "Bild-Array"
|
2312 |
|
2313 |
# @ acf
|
2314 |
-
#: includes/fields/class-acf-field-image.php:
|
2315 |
msgid "Image URL"
|
2316 |
msgstr "Bild-URL"
|
2317 |
|
2318 |
# @ acf
|
2319 |
-
#: includes/fields/class-acf-field-image.php:
|
2320 |
msgid "Image ID"
|
2321 |
msgstr "Bild-ID"
|
2322 |
|
2323 |
# @ acf
|
2324 |
-
#: includes/fields/class-acf-field-image.php:
|
2325 |
msgid "Preview Size"
|
2326 |
msgstr "Masse der Vorschau"
|
2327 |
|
2328 |
# @ acf
|
2329 |
-
#: includes/fields/class-acf-field-image.php:
|
2330 |
msgid "Shown when entering data"
|
2331 |
msgstr "Legt fest welche Masse die Vorschau in der Bearbeitungs-Ansicht hat"
|
2332 |
|
2333 |
# @ acf
|
2334 |
-
#: includes/fields/class-acf-field-image.php:
|
2335 |
-
#: includes/fields/class-acf-field-image.php:
|
2336 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2337 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2338 |
msgid "Restrict which images can be uploaded"
|
2339 |
msgstr ""
|
2340 |
"Erlaubt nur das Hochladen von Bildern, die die angegebenen Eigenschaften "
|
2341 |
"erfüllen"
|
2342 |
|
2343 |
# @ acf
|
2344 |
-
#: includes/fields/class-acf-field-image.php:
|
2345 |
-
#: includes/fields/class-acf-field-image.php:
|
2346 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2347 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2348 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2349 |
msgid "Width"
|
2350 |
msgstr "Breite"
|
2351 |
|
2352 |
# @ acf
|
2353 |
-
#: includes/fields/class-acf-field-link.php:
|
|
|
2354 |
msgid "Link"
|
2355 |
-
msgstr "Link"
|
2356 |
|
2357 |
# @ acf
|
2358 |
-
#: includes/fields/class-acf-field-link.php:
|
|
|
2359 |
msgid "Select Link"
|
2360 |
-
msgstr "
|
2361 |
|
2362 |
-
#: includes/fields/class-acf-field-link.php:
|
2363 |
msgid "Opens in a new window/tab"
|
2364 |
-
msgstr "
|
2365 |
|
2366 |
# @ acf
|
2367 |
-
#: includes/fields/class-acf-field-link.php:
|
|
|
2368 |
msgid "Link Array"
|
2369 |
-
msgstr "
|
2370 |
|
2371 |
# @ acf
|
2372 |
-
#: includes/fields/class-acf-field-link.php:
|
|
|
2373 |
msgid "Link URL"
|
2374 |
-
msgstr "
|
2375 |
|
2376 |
# @ acf
|
2377 |
-
#: includes/fields/class-acf-field-message.php:
|
2378 |
-
#: includes/fields/class-acf-field-message.php:
|
2379 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2380 |
msgid "Message"
|
2381 |
msgstr "Nachricht"
|
2382 |
|
2383 |
# @ acf
|
2384 |
-
#: includes/fields/class-acf-field-message.php:
|
2385 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2386 |
msgid "New Lines"
|
2387 |
msgstr "Neue Zeilen"
|
2388 |
|
2389 |
# @ acf
|
2390 |
-
#: includes/fields/class-acf-field-message.php:
|
2391 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2392 |
msgid "Controls how new lines are rendered"
|
2393 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2394 |
|
2395 |
# @ acf
|
2396 |
-
#: includes/fields/class-acf-field-message.php:
|
2397 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2398 |
msgid "Automatically add paragraphs"
|
2399 |
msgstr "Absätze automatisch hinzufügen"
|
2400 |
|
2401 |
# @ acf
|
2402 |
-
#: includes/fields/class-acf-field-message.php:
|
2403 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2404 |
msgid "Automatically add <br>"
|
2405 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2406 |
|
2407 |
# @ acf
|
2408 |
-
#: includes/fields/class-acf-field-message.php:
|
2409 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2410 |
msgid "No Formatting"
|
2411 |
msgstr "Keine Formatierung"
|
2412 |
|
2413 |
# @ acf
|
2414 |
-
#: includes/fields/class-acf-field-message.php:
|
2415 |
msgid "Escape HTML"
|
2416 |
msgstr "HTML enkodieren"
|
2417 |
|
2418 |
# @ acf
|
2419 |
-
#: includes/fields/class-acf-field-message.php:
|
2420 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2421 |
msgstr ""
|
2422 |
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2423 |
"interpretiert"
|
2424 |
|
2425 |
# @ acf
|
2426 |
-
#: includes/fields/class-acf-field-number.php:
|
2427 |
msgid "Number"
|
2428 |
msgstr "Numerisch"
|
2429 |
|
2430 |
# @ acf
|
2431 |
-
#: includes/fields/class-acf-field-number.php:
|
2432 |
-
#: includes/fields/class-acf-field-range.php:157
|
2433 |
msgid "Minimum Value"
|
2434 |
msgstr "Mindestwert"
|
2435 |
|
2436 |
# @ acf
|
2437 |
-
#: includes/fields/class-acf-field-number.php:
|
2438 |
-
#: includes/fields/class-acf-field-range.php:167
|
2439 |
msgid "Maximum Value"
|
2440 |
msgstr "Maximalwert"
|
2441 |
|
2442 |
# @ acf
|
2443 |
-
#: includes/fields/class-acf-field-number.php:
|
2444 |
-
#: includes/fields/class-acf-field-range.php:177
|
2445 |
msgid "Step Size"
|
2446 |
msgstr "Schrittweite"
|
2447 |
|
2448 |
# @ acf
|
2449 |
-
#: includes/fields/class-acf-field-number.php:
|
2450 |
msgid "Value must be a number"
|
2451 |
msgstr "Wert muss eine Zahl sein"
|
2452 |
|
2453 |
# @ acf
|
2454 |
-
#: includes/fields/class-acf-field-number.php:
|
2455 |
#, php-format
|
2456 |
msgid "Value must be equal to or higher than %d"
|
2457 |
msgstr "Wert muss grösser oder gleich %d sein"
|
2458 |
|
2459 |
# @ acf
|
2460 |
-
#: includes/fields/class-acf-field-number.php:
|
2461 |
#, php-format
|
2462 |
msgid "Value must be equal to or lower than %d"
|
2463 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2464 |
|
2465 |
# @ acf
|
2466 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2467 |
msgid "oEmbed"
|
2468 |
msgstr "oEmbed"
|
2469 |
|
2470 |
# @ acf
|
2471 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2472 |
msgid "Enter URL"
|
2473 |
msgstr "URL eingeben"
|
2474 |
|
2475 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2476 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2477 |
msgid "Error."
|
2478 |
msgstr "Fehler."
|
2479 |
|
2480 |
# @ acf
|
2481 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2482 |
msgid "No embed found for the given URL."
|
2483 |
msgstr "Keine Inhalte für die eingegebene URL gefunden."
|
2484 |
|
2485 |
# @ acf
|
2486 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2487 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2488 |
msgid "Embed Size"
|
2489 |
msgstr "Masse"
|
2490 |
|
2491 |
# @ acf
|
2492 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2493 |
msgid "Archives"
|
2494 |
msgstr "Archive"
|
2495 |
|
2496 |
# @ acf
|
2497 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2498 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2499 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2500 |
msgid "Filter by Post Type"
|
2501 |
msgstr "Nach Post Types filtern"
|
2502 |
|
2503 |
# @ acf
|
2504 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2505 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2506 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2507 |
msgid "All post types"
|
2508 |
msgstr "Alle verfügbaren Post Types"
|
2509 |
|
2510 |
# @ acf
|
2511 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2512 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2513 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2514 |
msgid "Filter by Taxonomy"
|
2515 |
msgstr "Nach Taxonomien filtern"
|
2516 |
|
2517 |
# @ acf
|
2518 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2519 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2520 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2521 |
msgid "All taxonomies"
|
2522 |
msgstr "Alle Taxonomien"
|
2523 |
|
2524 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2525 |
msgid "Allow Archives URLs"
|
2526 |
msgstr "Archiv URLs erlauben"
|
2527 |
|
2528 |
# @ acf
|
2529 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2530 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2531 |
-
#: includes/fields/class-acf-field-select.php:
|
2532 |
-
#: includes/fields/class-acf-field-user.php:
|
2533 |
msgid "Select multiple values?"
|
2534 |
msgstr "Mehrere Werte auswählbar?"
|
2535 |
|
2536 |
# @ acf
|
2537 |
-
#: includes/fields/class-acf-field-password.php:
|
2538 |
msgid "Password"
|
2539 |
msgstr "Passwort"
|
2540 |
|
2541 |
# @ acf
|
2542 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2543 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2544 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2545 |
msgid "Post Object"
|
2546 |
msgstr "Beitrags-Objekt"
|
2547 |
|
2548 |
# @ acf
|
2549 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2550 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2551 |
msgid "Post ID"
|
2552 |
msgstr "Beitrags-ID"
|
2553 |
|
2554 |
# @ acf
|
2555 |
-
#: includes/fields/class-acf-field-radio.php:
|
2556 |
msgid "Radio Button"
|
2557 |
msgstr "Radio-Button"
|
2558 |
|
2559 |
# @ acf
|
2560 |
-
#: includes/fields/class-acf-field-radio.php:
|
2561 |
msgid "Other"
|
2562 |
msgstr "Sonstige"
|
2563 |
|
2564 |
# @ acf
|
2565 |
-
#: includes/fields/class-acf-field-radio.php:
|
2566 |
msgid "Add 'other' choice to allow for custom values"
|
2567 |
msgstr ""
|
2568 |
"Fügt die Option 'Sonstige' hinzu, welche erlaubt, benutzerdefinierte Werte "
|
2569 |
"hinzuzufügen"
|
2570 |
|
2571 |
# @ acf
|
2572 |
-
#: includes/fields/class-acf-field-radio.php:
|
2573 |
msgid "Save Other"
|
2574 |
msgstr "'Sonstige' speichern"
|
2575 |
|
2576 |
# @ acf
|
2577 |
-
#: includes/fields/class-acf-field-radio.php:
|
2578 |
msgid "Save 'other' values to the field's choices"
|
2579 |
msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu"
|
2580 |
|
2581 |
-
#: includes/fields/class-acf-field-range.php:25
|
2582 |
-
msgid "Range"
|
2583 |
-
msgstr "Range"
|
2584 |
-
|
2585 |
# @ acf
|
2586 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2587 |
msgid "Relationship"
|
2588 |
msgstr "Beziehung"
|
2589 |
|
2590 |
# @ acf
|
2591 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2592 |
msgid "Minimum values reached ( {min} values )"
|
2593 |
msgstr "Minimum der Einträge mit ({min} Einträge) erreicht"
|
2594 |
|
2595 |
# @ acf
|
2596 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2597 |
msgid "Maximum values reached ( {max} values )"
|
2598 |
msgstr "Maximum der Einträge mit ({max} Einträge) erreicht"
|
2599 |
|
2600 |
# @ acf
|
2601 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2602 |
msgid "Loading"
|
2603 |
msgstr "Lade"
|
2604 |
|
2605 |
# @ acf
|
2606 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2607 |
msgid "No matches found"
|
2608 |
msgstr "Keine Übereinstimmung gefunden"
|
2609 |
|
2610 |
# @ acf
|
2611 |
-
#: includes/fields/class-acf-field-relationship.php:
|
|
|
|
|
|
|
|
|
|
|
2612 |
msgid "Select post type"
|
2613 |
msgstr "Beitrag-Typ auswählen"
|
2614 |
|
2615 |
# @ acf
|
2616 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2617 |
msgid "Select taxonomy"
|
2618 |
msgstr "Taxonomie auswählen"
|
2619 |
|
2620 |
# @ acf
|
2621 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2622 |
-
msgid "Search..."
|
2623 |
-
msgstr "Suchen..."
|
2624 |
-
|
2625 |
-
# @ acf
|
2626 |
-
#: includes/fields/class-acf-field-relationship.php:651
|
2627 |
msgid "Filters"
|
2628 |
msgstr "Filter"
|
2629 |
|
2630 |
# @ acf
|
2631 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2632 |
#: includes/locations/class-acf-location-post-type.php:27
|
2633 |
msgid "Post Type"
|
2634 |
msgstr "Beitrags-Typ"
|
2635 |
|
2636 |
# @ acf
|
2637 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2638 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2639 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2640 |
msgid "Taxonomy"
|
2641 |
msgstr "Taxonomie"
|
2642 |
|
2643 |
# @ acf
|
2644 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2645 |
msgid "Elements"
|
2646 |
msgstr "Elemente"
|
2647 |
|
2648 |
# @ acf
|
2649 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2650 |
msgid "Selected elements will be displayed in each result"
|
2651 |
msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt"
|
2652 |
|
2653 |
# @ acf
|
2654 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2655 |
msgid "Minimum posts"
|
2656 |
msgstr "Min. Anzahl der Beiträge"
|
2657 |
|
2658 |
# @ acf
|
2659 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2660 |
msgid "Maximum posts"
|
2661 |
msgstr "Max. Anzahl der Beiträge"
|
2662 |
|
2663 |
# @ acf
|
2664 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2665 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2666 |
#, php-format
|
2667 |
msgid "%s requires at least %s selection"
|
2668 |
msgid_plural "%s requires at least %s selections"
|
2669 |
msgstr[0] "%s benötigt mindestens %s Selektion"
|
2670 |
msgstr[1] "%s benötigt mindestens %s Selektionen"
|
2671 |
|
2672 |
-
#: includes/fields/class-acf-field-select.php:
|
2673 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2674 |
msgctxt "noun"
|
2675 |
msgid "Select"
|
2676 |
msgstr "Auswahlmenü"
|
2677 |
|
2678 |
-
#: includes/fields/class-acf-field-select.php:
|
2679 |
msgctxt "Select2 JS matches_1"
|
2680 |
msgid "One result is available, press enter to select it."
|
2681 |
msgstr "Ein Resultat gefunden, mit Enter auswählen."
|
2682 |
|
2683 |
-
#: includes/fields/class-acf-field-select.php:
|
2684 |
#, php-format
|
2685 |
msgctxt "Select2 JS matches_n"
|
2686 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2687 |
msgstr "%d Resultate gefunden, benutze die Pfeiltasten um zu navigieren."
|
2688 |
|
2689 |
-
#: includes/fields/class-acf-field-select.php:
|
2690 |
msgctxt "Select2 JS matches_0"
|
2691 |
msgid "No matches found"
|
2692 |
msgstr "Keine Übereinstimmungen gefunden"
|
2693 |
|
2694 |
-
#: includes/fields/class-acf-field-select.php:
|
2695 |
msgctxt "Select2 JS input_too_short_1"
|
2696 |
msgid "Please enter 1 or more characters"
|
2697 |
msgstr "Bitte eins oder mehrere Zeichen eingeben"
|
2698 |
|
2699 |
-
#: includes/fields/class-acf-field-select.php:
|
2700 |
#, php-format
|
2701 |
msgctxt "Select2 JS input_too_short_n"
|
2702 |
msgid "Please enter %d or more characters"
|
2703 |
msgstr "Bitte %d mehr Zeichen eingeben"
|
2704 |
|
2705 |
-
#: includes/fields/class-acf-field-select.php:
|
2706 |
msgctxt "Select2 JS input_too_long_1"
|
2707 |
msgid "Please delete 1 character"
|
2708 |
msgstr "Bitte ein Zeichen löschen"
|
2709 |
|
2710 |
-
#: includes/fields/class-acf-field-select.php:
|
2711 |
#, php-format
|
2712 |
msgctxt "Select2 JS input_too_long_n"
|
2713 |
msgid "Please delete %d characters"
|
2714 |
msgstr "Bitte %d Zeichen löschen"
|
2715 |
|
2716 |
-
#: includes/fields/class-acf-field-select.php:
|
2717 |
msgctxt "Select2 JS selection_too_long_1"
|
2718 |
msgid "You can only select 1 item"
|
2719 |
msgstr "Du kannst du ein Resultat wählen"
|
2720 |
|
2721 |
-
#: includes/fields/class-acf-field-select.php:
|
2722 |
#, php-format
|
2723 |
msgctxt "Select2 JS selection_too_long_n"
|
2724 |
msgid "You can only select %d items"
|
2725 |
msgstr "Du kannst nur %d Resultate auswählen"
|
2726 |
|
2727 |
-
#: includes/fields/class-acf-field-select.php:
|
2728 |
msgctxt "Select2 JS load_more"
|
2729 |
msgid "Loading more results…"
|
2730 |
msgstr "Lade weitere Resultate…"
|
2731 |
|
2732 |
-
#: includes/fields/class-acf-field-select.php:
|
2733 |
msgctxt "Select2 JS searching"
|
2734 |
msgid "Searching…"
|
2735 |
msgstr "Suche…"
|
2736 |
|
2737 |
-
#: includes/fields/class-acf-field-select.php:
|
2738 |
msgctxt "Select2 JS load_fail"
|
2739 |
msgid "Loading failed"
|
2740 |
msgstr "Fehler beim Laden"
|
2741 |
|
2742 |
-
#: includes/fields/class-acf-field-select.php:
|
2743 |
msgctxt "verb"
|
2744 |
msgid "Select"
|
2745 |
msgstr "Auswählen"
|
2746 |
|
2747 |
# @ acf
|
2748 |
-
#: includes/fields/class-acf-field-select.php:
|
2749 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2750 |
msgid "Stylised UI"
|
2751 |
msgstr "Modernes Auswahlfeld"
|
2752 |
|
2753 |
# @ acf
|
2754 |
-
#: includes/fields/class-acf-field-select.php:
|
2755 |
msgid "Use AJAX to lazy load choices?"
|
2756 |
-
msgstr "AJAX zum Laden der Einträge aktivieren
|
2757 |
|
2758 |
-
#: includes/fields/class-acf-field-select.php:
|
2759 |
msgid "Specify the value returned"
|
2760 |
msgstr "Rückgabewert festlegen"
|
2761 |
|
2762 |
-
#: includes/fields/class-acf-field-separator.php:
|
2763 |
msgid "Separator"
|
2764 |
-
msgstr "
|
2765 |
|
2766 |
# @ acf
|
2767 |
-
#: includes/fields/class-acf-field-tab.php:
|
2768 |
msgid "Tab"
|
2769 |
msgstr "Tab"
|
2770 |
|
2771 |
# @ acf
|
2772 |
-
#: includes/fields/class-acf-field-tab.php:
|
2773 |
msgid ""
|
2774 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2775 |
"field or flexible content field layout"
|
@@ -2778,7 +2753,7 @@ msgstr ""
|
|
2778 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2779 |
|
2780 |
# @ acf
|
2781 |
-
#: includes/fields/class-acf-field-tab.php:
|
2782 |
msgid ""
|
2783 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2784 |
"together."
|
@@ -2787,7 +2762,7 @@ msgstr ""
|
|
2787 |
"Tabs zusammengefasst werden."
|
2788 |
|
2789 |
# @ acf
|
2790 |
-
#: includes/fields/class-acf-field-tab.php:
|
2791 |
msgid ""
|
2792 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2793 |
"defined) will be grouped together using this field's label as the tab "
|
@@ -2798,285 +2773,280 @@ msgstr ""
|
|
2798 |
"zusammengefasst."
|
2799 |
|
2800 |
# @ acf
|
2801 |
-
#: includes/fields/class-acf-field-tab.php:
|
2802 |
msgid "Placement"
|
2803 |
msgstr "Platzierung Tabs"
|
2804 |
|
2805 |
-
#: includes/fields/class-acf-field-tab.php:
|
2806 |
msgid "End-point"
|
2807 |
msgstr "Abschluss"
|
2808 |
|
2809 |
-
#: includes/fields/class-acf-field-tab.php:
|
2810 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2811 |
msgstr "Benutze das Feld als einen Abschluss und starte eine Gruppe an Tabs"
|
2812 |
|
2813 |
-
|
2814 |
-
|
2815 |
-
|
2816 |
-
|
2817 |
-
|
|
|
|
|
2818 |
|
2819 |
# @ acf
|
2820 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2821 |
msgid "None"
|
2822 |
msgstr "Nur Text"
|
2823 |
|
2824 |
# @ acf
|
2825 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2826 |
msgid "Select the taxonomy to be displayed"
|
2827 |
msgstr "Wähle die Taxonomie, welche angezeigt werden soll"
|
2828 |
|
2829 |
# @ acf
|
2830 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2831 |
msgid "Appearance"
|
2832 |
msgstr "Anzeige"
|
2833 |
|
2834 |
# @ acf
|
2835 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2836 |
msgid "Select the appearance of this field"
|
2837 |
msgstr "Wähle das Aussehen für dieses Feld"
|
2838 |
|
2839 |
# @ acf
|
2840 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2841 |
msgid "Multiple Values"
|
2842 |
-
msgstr "Mehrere Werte"
|
2843 |
|
2844 |
# @ acf
|
2845 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2846 |
msgid "Multi Select"
|
2847 |
msgstr "Auswahlmenü"
|
2848 |
|
2849 |
# @ acf
|
2850 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2851 |
msgid "Single Value"
|
2852 |
msgstr "Einzelne Werte"
|
2853 |
|
2854 |
# @ acf
|
2855 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2856 |
msgid "Radio Buttons"
|
2857 |
msgstr "Radio Button"
|
2858 |
|
2859 |
# @ acf
|
2860 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2861 |
msgid "Create Terms"
|
2862 |
msgstr "Neue Einträge erlauben"
|
2863 |
|
2864 |
# @ acf
|
2865 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2866 |
msgid "Allow new terms to be created whilst editing"
|
2867 |
msgstr "Erlaube das Erstellen neuer Einträge beim Editieren"
|
2868 |
|
2869 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2870 |
msgid "Save Terms"
|
2871 |
msgstr "Einträge speichern"
|
2872 |
|
2873 |
# @ acf
|
2874 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2875 |
msgid "Connect selected terms to the post"
|
2876 |
msgstr "Speichert die ausgewählten Einträge auch im Beitrag"
|
2877 |
|
2878 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2879 |
msgid "Load Terms"
|
2880 |
msgstr "Einträge laden"
|
2881 |
|
2882 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2883 |
msgid "Load value from posts terms"
|
2884 |
msgstr "Den Wert von den Einträgen des Beitrags laden"
|
2885 |
|
2886 |
# @ acf
|
2887 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2888 |
msgid "Term Object"
|
2889 |
msgstr "Begriffs-Objekt"
|
2890 |
|
2891 |
# @ acf
|
2892 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2893 |
msgid "Term ID"
|
2894 |
msgstr "Begriffs-ID"
|
2895 |
|
2896 |
# @ acf
|
2897 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2898 |
#, php-format
|
2899 |
msgid "User unable to add new %s"
|
2900 |
msgstr "Der Benutzer kann keine neue %s hinzufügen"
|
2901 |
|
2902 |
# @ acf
|
2903 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2904 |
#, php-format
|
2905 |
msgid "%s already exists"
|
2906 |
msgstr "%s ist bereits vorhanden"
|
2907 |
|
2908 |
# @ acf
|
2909 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2910 |
#, php-format
|
2911 |
msgid "%s added"
|
2912 |
msgstr "%s hinzugefügt"
|
2913 |
|
2914 |
# @ acf
|
2915 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2916 |
msgid "Add"
|
2917 |
msgstr "Hinzufügen"
|
2918 |
|
2919 |
# @ acf
|
2920 |
-
#: includes/fields/class-acf-field-text.php:
|
2921 |
msgid "Text"
|
2922 |
msgstr "Text einzeilig"
|
2923 |
|
2924 |
# @ acf
|
2925 |
-
#: includes/fields/class-acf-field-text.php:
|
2926 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2927 |
msgid "Character Limit"
|
2928 |
msgstr "Zeichenbegrenzung"
|
2929 |
|
2930 |
# @ acf
|
2931 |
-
#: includes/fields/class-acf-field-text.php:
|
2932 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2933 |
msgid "Leave blank for no limit"
|
2934 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2935 |
|
2936 |
# @ acf
|
2937 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2938 |
msgid "Text Area"
|
2939 |
msgstr "Text mehrzeilig"
|
2940 |
|
2941 |
# @ acf
|
2942 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2943 |
msgid "Rows"
|
2944 |
msgstr "Zeilenanzahl"
|
2945 |
|
2946 |
# @ acf
|
2947 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2948 |
msgid "Sets the textarea height"
|
2949 |
msgstr "Definiert die Höhe des Textfelds"
|
2950 |
|
2951 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
2952 |
msgid "Time Picker"
|
2953 |
msgstr "Uhrzeit"
|
2954 |
|
2955 |
# @ acf
|
2956 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2957 |
msgid "True / False"
|
2958 |
msgstr "Ja/Nein"
|
2959 |
|
2960 |
# @ acf
|
2961 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2962 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2963 |
-
#: pro/admin/views/html-settings-updates.php:
|
2964 |
msgid "Yes"
|
2965 |
msgstr "Ja"
|
2966 |
|
2967 |
-
|
2968 |
-
#: includes/fields/class-acf-field-true_false.php:80
|
2969 |
-
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2970 |
-
#: pro/admin/views/html-settings-updates.php:99
|
2971 |
-
msgid "No"
|
2972 |
-
msgstr "Nein"
|
2973 |
-
|
2974 |
-
#: includes/fields/class-acf-field-true_false.php:127
|
2975 |
msgid "Displays text alongside the checkbox"
|
2976 |
msgstr "Zeigt Text neben der Checkbox"
|
2977 |
|
2978 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2979 |
msgid "On Text"
|
2980 |
msgstr "Wenn aktiv"
|
2981 |
|
2982 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2983 |
msgid "Text shown when active"
|
2984 |
msgstr "Angezeigter Text im aktiven Zustand"
|
2985 |
|
2986 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2987 |
msgid "Off Text"
|
2988 |
msgstr "Wenn inaktiv"
|
2989 |
|
2990 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2991 |
msgid "Text shown when inactive"
|
2992 |
msgstr "Angezeigter Text im inaktiven Zustand"
|
2993 |
|
2994 |
# @ acf
|
2995 |
-
#: includes/fields/class-acf-field-url.php:
|
2996 |
msgid "Url"
|
2997 |
msgstr "URL"
|
2998 |
|
2999 |
# @ acf
|
3000 |
-
#: includes/fields/class-acf-field-url.php:
|
3001 |
msgid "Value must be a valid URL"
|
3002 |
msgstr "Bitte eine gültige URL eingeben"
|
3003 |
|
3004 |
# @ acf
|
3005 |
-
#: includes/fields/class-acf-field-user.php:
|
3006 |
msgid "User"
|
3007 |
msgstr "Benutzer"
|
3008 |
|
3009 |
# @ acf
|
3010 |
-
#: includes/fields/class-acf-field-user.php:
|
3011 |
msgid "Filter by role"
|
3012 |
msgstr "Filtere nach Benutzerrollen"
|
3013 |
|
3014 |
# @ acf
|
3015 |
-
#: includes/fields/class-acf-field-user.php:
|
3016 |
msgid "All user roles"
|
3017 |
msgstr "Alle Benutzerrollen"
|
3018 |
|
3019 |
# @ acf
|
3020 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3021 |
msgid "Wysiwyg Editor"
|
3022 |
msgstr "WYSIWYG-Editor"
|
3023 |
|
3024 |
# @ acf
|
3025 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3026 |
msgid "Visual"
|
3027 |
msgstr "Visuell"
|
3028 |
|
3029 |
# @ acf
|
3030 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3031 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3032 |
msgid "Text"
|
3033 |
msgstr "Text"
|
3034 |
|
3035 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3036 |
msgid "Click to initialize TinyMCE"
|
3037 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3038 |
|
3039 |
# @ acf
|
3040 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3041 |
msgid "Tabs"
|
3042 |
msgstr "Tabs"
|
3043 |
|
3044 |
# @ acf
|
3045 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3046 |
msgid "Visual & Text"
|
3047 |
msgstr "Visuell & Text"
|
3048 |
|
3049 |
# @ acf
|
3050 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3051 |
msgid "Visual Only"
|
3052 |
msgstr "Nur Visuell"
|
3053 |
|
3054 |
# @ acf
|
3055 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3056 |
msgid "Text Only"
|
3057 |
msgstr "Nur Text"
|
3058 |
|
3059 |
# @ acf
|
3060 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3061 |
msgid "Toolbar"
|
3062 |
msgstr "Werkzeugleiste"
|
3063 |
|
3064 |
# @ acf
|
3065 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3066 |
msgid "Show Media Upload Buttons?"
|
3067 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3068 |
|
3069 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3070 |
msgid "Delay initialization?"
|
3071 |
msgstr "Initialisierung verzögern?"
|
3072 |
|
3073 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3074 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3075 |
-
msgstr "TinyMCE wird nicht initialisiert bis das Feld geklickt wird"
|
3076 |
|
3077 |
# @ acf
|
3078 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
3079 |
-
#: pro/admin/admin-options-page.php:
|
3080 |
msgid "Edit field group"
|
3081 |
msgstr "Feld-Gruppen bearbeiten"
|
3082 |
|
@@ -3085,8 +3055,8 @@ msgid "Validate Email"
|
|
3085 |
msgstr "E-Mail bestätigen"
|
3086 |
|
3087 |
# @ acf
|
3088 |
-
#: includes/forms/form-front.php:103
|
3089 |
-
#: pro/options-page.php:81
|
3090 |
msgid "Update"
|
3091 |
msgstr "Aktualisieren"
|
3092 |
|
@@ -3100,49 +3070,44 @@ msgid "Spam Detected"
|
|
3100 |
msgstr "Spam erkannt"
|
3101 |
|
3102 |
# @ acf
|
3103 |
-
#: includes/input.php:
|
3104 |
msgid "Expand Details"
|
3105 |
msgstr "Details einblenden"
|
3106 |
|
3107 |
# @ acf
|
3108 |
-
#: includes/input.php:
|
3109 |
msgid "Collapse Details"
|
3110 |
msgstr "Details ausblenden"
|
3111 |
|
3112 |
# @ acf
|
3113 |
-
#: includes/input.php:
|
3114 |
msgid "Validation successful"
|
3115 |
msgstr "Überprüfung erfolgreich"
|
3116 |
|
3117 |
# @ acf
|
3118 |
-
#: includes/input.php:
|
3119 |
#: includes/validation.php:296
|
3120 |
msgid "Validation failed"
|
3121 |
msgstr "Überprüfung fehlgeschlagen"
|
3122 |
|
3123 |
# @ acf
|
3124 |
-
#: includes/input.php:
|
3125 |
msgid "1 field requires attention"
|
3126 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3127 |
|
3128 |
# @ acf
|
3129 |
-
#: includes/input.php:
|
3130 |
#, php-format
|
3131 |
msgid "%d fields require attention"
|
3132 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3133 |
|
3134 |
-
#: includes/input.php:
|
3135 |
msgid "Restricted"
|
3136 |
msgstr "Eingeschränkt"
|
3137 |
|
3138 |
-
|
3139 |
-
#: includes/input.php:266
|
3140 |
-
msgid "Are you sure?"
|
3141 |
-
msgstr "Sind Sie sicher?"
|
3142 |
-
|
3143 |
-
#: includes/input.php:270
|
3144 |
msgid "Cancel"
|
3145 |
-
msgstr "
|
3146 |
|
3147 |
# @ acf
|
3148 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
@@ -3164,10 +3129,10 @@ msgstr "Formulare"
|
|
3164 |
msgid "Attachment"
|
3165 |
msgstr "Dateianhang"
|
3166 |
|
3167 |
-
#: includes/locations/class-acf-location-attachment.php:
|
3168 |
#, php-format
|
3169 |
msgid "All %s formats"
|
3170 |
-
msgstr "
|
3171 |
|
3172 |
# @ acf
|
3173 |
#: includes/locations/class-acf-location-comment.php:27
|
@@ -3180,7 +3145,7 @@ msgid "Current User Role"
|
|
3180 |
msgstr "Aktuelle Benutzer-Rolle"
|
3181 |
|
3182 |
# @ acf
|
3183 |
-
#: includes/locations/class-acf-location-current-user-role.php:
|
3184 |
msgid "Super Admin"
|
3185 |
msgstr "Super-Admin"
|
3186 |
|
@@ -3190,36 +3155,37 @@ msgid "Current User"
|
|
3190 |
msgstr "Aktueller Benutzer"
|
3191 |
|
3192 |
# @ acf
|
3193 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3194 |
msgid "Logged in"
|
3195 |
-
msgstr "
|
3196 |
|
3197 |
# @ acf
|
3198 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3199 |
msgid "Viewing front end"
|
3200 |
-
msgstr "
|
3201 |
|
3202 |
# @ acf
|
3203 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3204 |
msgid "Viewing back end"
|
3205 |
-
msgstr "
|
3206 |
|
3207 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
3208 |
msgid "Menu Item"
|
3209 |
-
msgstr "
|
3210 |
|
3211 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
3212 |
msgid "Menu"
|
3213 |
-
msgstr "
|
3214 |
|
3215 |
# @ acf
|
3216 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
|
|
3217 |
msgid "Menu Locations"
|
3218 |
-
msgstr "
|
3219 |
|
3220 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
3221 |
msgid "Menus"
|
3222 |
-
msgstr "
|
3223 |
|
3224 |
# @ acf
|
3225 |
#: includes/locations/class-acf-location-page-parent.php:27
|
@@ -3232,8 +3198,8 @@ msgid "Page Template"
|
|
3232 |
msgstr "Seiten-Template"
|
3233 |
|
3234 |
# @ acf
|
3235 |
-
#: includes/locations/class-acf-location-page-template.php:
|
3236 |
-
#: includes/locations/class-acf-location-post-template.php:
|
3237 |
msgid "Default Template"
|
3238 |
msgstr "Standard-Template"
|
3239 |
|
@@ -3243,27 +3209,27 @@ msgid "Page Type"
|
|
3243 |
msgstr "Seitentyp"
|
3244 |
|
3245 |
# @ acf
|
3246 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3247 |
msgid "Front Page"
|
3248 |
msgstr "Startseite"
|
3249 |
|
3250 |
# @ acf
|
3251 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3252 |
msgid "Posts Page"
|
3253 |
msgstr "Beitrags-Seite"
|
3254 |
|
3255 |
# @ acf
|
3256 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3257 |
msgid "Top Level Page (no parent)"
|
3258 |
msgstr "Seite ohne übergeordnete Seiten"
|
3259 |
|
3260 |
# @ acf
|
3261 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3262 |
msgid "Parent Page (has children)"
|
3263 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3264 |
|
3265 |
# @ acf
|
3266 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3267 |
msgid "Child Page (has parent)"
|
3268 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3269 |
|
@@ -3288,9 +3254,10 @@ msgid "Post Taxonomy"
|
|
3288 |
msgstr "Beitrags-Taxonomie"
|
3289 |
|
3290 |
# @ acf
|
3291 |
-
#: includes/locations/class-acf-location-post-template.php:
|
|
|
3292 |
msgid "Post Template"
|
3293 |
-
msgstr "
|
3294 |
|
3295 |
# @ acf
|
3296 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
@@ -3303,12 +3270,12 @@ msgid "User Form"
|
|
3303 |
msgstr "Benutzer-Formular"
|
3304 |
|
3305 |
# @ acf
|
3306 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3307 |
msgid "Add / Edit"
|
3308 |
msgstr "Hinzufügen / Bearbeiten"
|
3309 |
|
3310 |
# @ acf
|
3311 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3312 |
msgid "Register"
|
3313 |
msgstr "Registrieren"
|
3314 |
|
@@ -3345,12 +3312,12 @@ msgid "Advanced Custom Fields PRO"
|
|
3345 |
msgstr "Advanced Custom Fields PRO"
|
3346 |
|
3347 |
# @ acf
|
3348 |
-
#: pro/admin/admin-options-page.php:
|
3349 |
msgid "Publish"
|
3350 |
msgstr "Veröffentlichen"
|
3351 |
|
3352 |
# @ acf
|
3353 |
-
#: pro/admin/admin-options-page.php:
|
3354 |
#, php-format
|
3355 |
msgid ""
|
3356 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
@@ -3363,29 +3330,29 @@ msgstr ""
|
|
3363 |
#: pro/admin/admin-settings-updates.php:78
|
3364 |
msgid "<b>Error</b>. Could not connect to update server"
|
3365 |
msgstr ""
|
3366 |
-
"<b>Fehler</b>. Verbindung zum Update-Server konnte nicht hergestellt werden"
|
3367 |
|
3368 |
# @ acf
|
3369 |
#: pro/admin/admin-settings-updates.php:162
|
3370 |
-
#: pro/admin/views/html-settings-updates.php:
|
3371 |
msgid "Updates"
|
3372 |
msgstr "Aktualisierungen"
|
3373 |
|
3374 |
# @ acf
|
3375 |
-
#: pro/admin/views/html-settings-updates.php:
|
3376 |
msgid "Deactivate License"
|
3377 |
msgstr "Lizenz deaktivieren"
|
3378 |
|
3379 |
# @ acf
|
3380 |
-
#: pro/admin/views/html-settings-updates.php:
|
3381 |
msgid "Activate License"
|
3382 |
msgstr "Lizenz aktivieren"
|
3383 |
|
3384 |
-
#: pro/admin/views/html-settings-updates.php:
|
3385 |
msgid "License Information"
|
3386 |
msgstr "Lizenzinformationen"
|
3387 |
|
3388 |
-
#: pro/admin/views/html-settings-updates.php:
|
3389 |
#, php-format
|
3390 |
msgid ""
|
3391 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -3397,366 +3364,366 @@ msgstr ""
|
|
3397 |
"target=\"_blank\">Details & Preise</a>."
|
3398 |
|
3399 |
# @ acf
|
3400 |
-
#: pro/admin/views/html-settings-updates.php:
|
3401 |
msgid "License Key"
|
3402 |
msgstr "Lizenzschlüssel"
|
3403 |
|
3404 |
# @ acf
|
3405 |
-
#: pro/admin/views/html-settings-updates.php:
|
3406 |
msgid "Update Information"
|
3407 |
msgstr "Aktualisierungsinformationen"
|
3408 |
|
3409 |
# @ acf
|
3410 |
-
#: pro/admin/views/html-settings-updates.php:
|
3411 |
msgid "Current Version"
|
3412 |
msgstr "Installierte Version"
|
3413 |
|
3414 |
# @ acf
|
3415 |
-
#: pro/admin/views/html-settings-updates.php:
|
3416 |
msgid "Latest Version"
|
3417 |
msgstr "Aktuellste Version"
|
3418 |
|
3419 |
# @ acf
|
3420 |
-
#: pro/admin/views/html-settings-updates.php:
|
3421 |
msgid "Update Available"
|
3422 |
msgstr "Aktualisierung verfügbar"
|
3423 |
|
3424 |
# @ acf
|
3425 |
-
#: pro/admin/views/html-settings-updates.php:
|
3426 |
msgid "Update Plugin"
|
3427 |
msgstr "Plugin aktualisieren"
|
3428 |
|
3429 |
# @ acf
|
3430 |
-
#: pro/admin/views/html-settings-updates.php:
|
3431 |
msgid "Please enter your license key above to unlock updates"
|
3432 |
msgstr ""
|
3433 |
"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit "
|
3434 |
"freizuschalten"
|
3435 |
|
3436 |
# @ acf
|
3437 |
-
#: pro/admin/views/html-settings-updates.php:
|
3438 |
msgid "Check Again"
|
3439 |
msgstr "Erneut suchen"
|
3440 |
|
3441 |
# @ acf
|
3442 |
-
#: pro/admin/views/html-settings-updates.php:
|
3443 |
msgid "Upgrade Notice"
|
3444 |
msgstr "Aktualisierungs-Hinweis"
|
3445 |
|
3446 |
-
#: pro/fields/class-acf-field-clone.php:
|
3447 |
msgctxt "noun"
|
3448 |
msgid "Clone"
|
3449 |
msgstr "Klonen"
|
3450 |
|
3451 |
-
#: pro/fields/class-acf-field-clone.php:
|
3452 |
msgid "Select one or more fields you wish to clone"
|
3453 |
msgstr "Wähle eines oder mehrere Felder aus, das/die du klonen willst"
|
3454 |
|
3455 |
# @ acf
|
3456 |
-
#: pro/fields/class-acf-field-clone.php:
|
3457 |
msgid "Display"
|
3458 |
msgstr "Anzeige"
|
3459 |
|
3460 |
-
#: pro/fields/class-acf-field-clone.php:
|
3461 |
msgid "Specify the style used to render the clone field"
|
3462 |
msgstr "Gib an, wie die geklonten Felder ausgegeben werden sollen"
|
3463 |
|
3464 |
-
#: pro/fields/class-acf-field-clone.php:
|
3465 |
msgid "Group (displays selected fields in a group within this field)"
|
3466 |
msgstr ""
|
3467 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses Felds "
|
3468 |
"an)"
|
3469 |
|
3470 |
-
#: pro/fields/class-acf-field-clone.php:
|
3471 |
msgid "Seamless (replaces this field with selected fields)"
|
3472 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3473 |
|
3474 |
-
#: pro/fields/class-acf-field-clone.php:
|
3475 |
#, php-format
|
3476 |
msgid "Labels will be displayed as %s"
|
3477 |
msgstr "Bezeichnungen werden angezeigt als %s"
|
3478 |
|
3479 |
-
#: pro/fields/class-acf-field-clone.php:
|
3480 |
msgid "Prefix Field Labels"
|
3481 |
msgstr "Präfix für Feld Bezeichnungen"
|
3482 |
|
3483 |
-
#: pro/fields/class-acf-field-clone.php:
|
3484 |
#, php-format
|
3485 |
msgid "Values will be saved as %s"
|
3486 |
msgstr "Werte werden gespeichert als %s"
|
3487 |
|
3488 |
-
#: pro/fields/class-acf-field-clone.php:
|
3489 |
msgid "Prefix Field Names"
|
3490 |
msgstr "Präfix für Feld Namen"
|
3491 |
|
3492 |
-
#: pro/fields/class-acf-field-clone.php:
|
3493 |
msgid "Unknown field"
|
3494 |
msgstr "Unbekanntes Feld"
|
3495 |
|
3496 |
-
#: pro/fields/class-acf-field-clone.php:
|
3497 |
msgid "Unknown field group"
|
3498 |
msgstr "Unbekannte Feld-Gruppe"
|
3499 |
|
3500 |
-
#: pro/fields/class-acf-field-clone.php:
|
3501 |
#, php-format
|
3502 |
msgid "All fields from %s field group"
|
3503 |
msgstr "Alle Felder der %s Feld-Gruppe"
|
3504 |
|
3505 |
# @ acf
|
3506 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3507 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3508 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3509 |
msgid "Add Row"
|
3510 |
msgstr "Eintrag hinzufügen"
|
3511 |
|
3512 |
# @ acf
|
3513 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3514 |
msgid "layout"
|
3515 |
msgstr "Eintrag"
|
3516 |
|
3517 |
# @ acf
|
3518 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3519 |
msgid "layouts"
|
3520 |
msgstr "Einträge"
|
3521 |
|
3522 |
# @ acf
|
3523 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3524 |
msgid "remove {layout}?"
|
3525 |
msgstr "{layout} löschen?"
|
3526 |
|
3527 |
# @ acf
|
3528 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3529 |
msgid "This field requires at least {min} {identifier}"
|
3530 |
msgstr "Dieses Feld erfordert mindestens {min} {identifier}"
|
3531 |
|
3532 |
# @ acf
|
3533 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3534 |
msgid "This field has a limit of {max} {identifier}"
|
3535 |
msgstr "Diesem Feld dürfen maximal {max} {identifier} hinzugefügt werden."
|
3536 |
|
3537 |
# @ acf
|
3538 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3539 |
msgid "This field requires at least {min} {label} {identifier}"
|
3540 |
msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}"
|
3541 |
|
3542 |
# @ acf
|
3543 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3544 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3545 |
msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})"
|
3546 |
|
3547 |
# @ acf
|
3548 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3549 |
msgid "{available} {label} {identifier} available (max {max})"
|
3550 |
msgstr "{available} {label} {identifier} möglich (max {max})"
|
3551 |
|
3552 |
# @ acf
|
3553 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3554 |
msgid "{required} {label} {identifier} required (min {min})"
|
3555 |
msgstr "{required} {label} {identifier} erforderlich (min {min})"
|
3556 |
|
3557 |
# @ acf
|
3558 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3559 |
msgid "Flexible Content requires at least 1 layout"
|
3560 |
msgstr "Flexibler Inhalt benötigt mindestens ein Layout"
|
3561 |
|
3562 |
# @ acf
|
3563 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3564 |
#, php-format
|
3565 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3566 |
msgstr "Klicke \"%s\" zum Erstellen des Layouts"
|
3567 |
|
3568 |
# @ acf
|
3569 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3570 |
msgid "Add layout"
|
3571 |
msgstr "Layout hinzufügen"
|
3572 |
|
3573 |
# @ acf
|
3574 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3575 |
msgid "Remove layout"
|
3576 |
msgstr "Layout entfernen"
|
3577 |
|
3578 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3579 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3580 |
msgid "Click to toggle"
|
3581 |
msgstr "Zum Auswählen anklicken"
|
3582 |
|
3583 |
# @ acf
|
3584 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3585 |
msgid "Reorder Layout"
|
3586 |
msgstr "Layout sortieren"
|
3587 |
|
3588 |
# @ acf
|
3589 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3590 |
msgid "Reorder"
|
3591 |
msgstr "Sortieren"
|
3592 |
|
3593 |
# @ acf
|
3594 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3595 |
msgid "Delete Layout"
|
3596 |
msgstr "Layout löschen"
|
3597 |
|
3598 |
# @ acf
|
3599 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3600 |
msgid "Duplicate Layout"
|
3601 |
msgstr "Layout duplizieren"
|
3602 |
|
3603 |
# @ acf
|
3604 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3605 |
msgid "Add New Layout"
|
3606 |
msgstr "Neues Layout hinzufügen"
|
3607 |
|
3608 |
# @ acf
|
3609 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3610 |
msgid "Min"
|
3611 |
msgstr "Min"
|
3612 |
|
3613 |
# @ acf
|
3614 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3615 |
msgid "Max"
|
3616 |
msgstr "Max"
|
3617 |
|
3618 |
# @ acf
|
3619 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3620 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3621 |
msgid "Button Label"
|
3622 |
msgstr "Button-Beschriftung"
|
3623 |
|
3624 |
# @ acf
|
3625 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3626 |
msgid "Minimum Layouts"
|
3627 |
msgstr "Minimum Layouts"
|
3628 |
|
3629 |
# @ acf
|
3630 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3631 |
msgid "Maximum Layouts"
|
3632 |
msgstr "Maximum Layouts"
|
3633 |
|
3634 |
# @ acf
|
3635 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3636 |
msgid "Add Image to Gallery"
|
3637 |
msgstr "Bild zur Galerie hinzufügen"
|
3638 |
|
3639 |
# @ acf
|
3640 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3641 |
msgid "Maximum selection reached"
|
3642 |
msgstr "Maximale Auswahl erreicht"
|
3643 |
|
3644 |
# @ acf
|
3645 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3646 |
msgid "Length"
|
3647 |
msgstr "Länge"
|
3648 |
|
3649 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3650 |
msgid "Caption"
|
3651 |
msgstr "Beschriftung"
|
3652 |
|
3653 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3654 |
msgid "Alt Text"
|
3655 |
msgstr "Alt Text"
|
3656 |
|
3657 |
# @ acf
|
3658 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3659 |
msgid "Add to gallery"
|
3660 |
msgstr "Zur Galerie hinzufügen"
|
3661 |
|
3662 |
# @ acf
|
3663 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3664 |
msgid "Bulk actions"
|
3665 |
msgstr "Massenverarbeitung"
|
3666 |
|
3667 |
# @ acf
|
3668 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3669 |
msgid "Sort by date uploaded"
|
3670 |
msgstr "Sortiere nach Upload-Datum"
|
3671 |
|
3672 |
# @ acf
|
3673 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3674 |
msgid "Sort by date modified"
|
3675 |
msgstr "Sortiere nach Änderungs-Datum"
|
3676 |
|
3677 |
# @ acf
|
3678 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3679 |
msgid "Sort by title"
|
3680 |
msgstr "Sortiere nach Titel"
|
3681 |
|
3682 |
# @ acf
|
3683 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3684 |
msgid "Reverse current order"
|
3685 |
msgstr "Aktuelle Sortierung umkehren"
|
3686 |
|
3687 |
# @ acf
|
3688 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3689 |
msgid "Close"
|
3690 |
msgstr "Schliessen"
|
3691 |
|
3692 |
# @ acf
|
3693 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3694 |
msgid "Minimum Selection"
|
3695 |
msgstr "Minimale Auswahl"
|
3696 |
|
3697 |
# @ acf
|
3698 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3699 |
msgid "Maximum Selection"
|
3700 |
msgstr "Maximale Auswahl"
|
3701 |
|
3702 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3703 |
msgid "Insert"
|
3704 |
msgstr "Einfügen"
|
3705 |
|
3706 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3707 |
msgid "Specify where new attachments are added"
|
3708 |
msgstr "Gib an, wo neue Anhänge eingefügt werden sollen"
|
3709 |
|
3710 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3711 |
msgid "Append to the end"
|
3712 |
msgstr "Am Schluss anhängen"
|
3713 |
|
3714 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3715 |
msgid "Prepend to the beginning"
|
3716 |
msgstr "Vor Beginn einfügen"
|
3717 |
|
3718 |
# @ acf
|
3719 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3720 |
msgid "Minimum rows reached ({min} rows)"
|
3721 |
msgstr "Minimum der Einträge mit ({min} Reihen) erreicht"
|
3722 |
|
3723 |
# @ acf
|
3724 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3725 |
msgid "Maximum rows reached ({max} rows)"
|
3726 |
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
3727 |
|
3728 |
# @ acf
|
3729 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3730 |
msgid "Add row"
|
3731 |
msgstr "Eintrag hinzufügen"
|
3732 |
|
3733 |
# @ acf
|
3734 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3735 |
msgid "Remove row"
|
3736 |
msgstr "Eintrag löschen"
|
3737 |
|
3738 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3739 |
msgid "Collapsed"
|
3740 |
msgstr "Zugeklappt"
|
3741 |
|
3742 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3743 |
msgid "Select a sub field to show when row is collapsed"
|
3744 |
msgstr ""
|
3745 |
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
3746 |
-
"werden soll"
|
3747 |
|
3748 |
# @ acf
|
3749 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3750 |
msgid "Minimum Rows"
|
3751 |
msgstr "Minimum der Einträge"
|
3752 |
|
3753 |
# @ acf
|
3754 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3755 |
msgid "Maximum Rows"
|
3756 |
msgstr "Maximum der Einträge"
|
3757 |
|
3758 |
# @ acf
|
3759 |
-
#: pro/locations/class-acf-location-options-page.php:
|
3760 |
msgid "No options pages exist"
|
3761 |
msgstr "Keine Options-Seiten vorhanden"
|
3762 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Custom Fields Pro v5.5.10\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: 2017-06-27 15:36+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"
|
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;"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
# @ acf
|
26 |
+
#: acf.php:63
|
27 |
msgid "Advanced Custom Fields"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
+
#: acf.php:355 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
+
#: acf.php:356
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
+
#: acf.php:357 acf.php:389 includes/admin/admin.php:118
|
42 |
+
#: pro/fields/class-acf-field-flexible-content.php:574
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
+
#: acf.php:358
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
+
#: acf.php:359
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
+
#: acf.php:360
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
+
#: acf.php:361
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
+
#: acf.php:362
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
+
#: acf.php:363
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
+
#: acf.php:364
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
+
#: acf.php:387 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:857
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
+
#: acf.php:388
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
+
#: acf.php:390
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
+
#: acf.php:391
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
+
#: acf.php:392 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:393
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
+
#: acf.php:394
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
+
#: acf.php:395
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
+
#: acf.php:396
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
+
#: acf.php:435 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:440
|
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:732
|
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:3970
|
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:257
|
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:370
|
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:397
|
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:111
|
367 |
msgid "Changelog"
|
368 |
msgstr "Versionshinweise"
|
369 |
|
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 |
msgstr "Hilfe"
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:623
|
393 |
+
#, fuzzy
|
394 |
msgid "Pro"
|
395 |
+
msgstr "Macht's gut Add-ons… Hallo PRO!"
|
396 |
|
397 |
#: includes/admin/admin-field-groups.php:628
|
398 |
#, php-format
|
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:573
|
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:132
|
418 |
+
#: includes/fields/class-acf-field-relationship.php:737
|
419 |
msgid "Search"
|
420 |
msgstr "Suchen"
|
421 |
|
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 |
|
507 |
# @ acf
|
508 |
#: includes/admin/settings-tools.php:184
|
509 |
+
#: includes/fields/class-acf-field-file.php:174
|
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 |
|
545 |
# @ acf
|
546 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
547 |
+
#: includes/locations.php:243
|
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:244
|
554 |
msgid "is not equal to"
|
555 |
msgstr "ist ungleich"
|
556 |
|
568 |
|
569 |
# @ acf
|
570 |
#: includes/admin/views/field-group-field.php:41
|
571 |
+
#: pro/fields/class-acf-field-flexible-content.php:420
|
572 |
+
#: pro/fields/class-acf-field-repeater.php:358
|
573 |
msgid "Drag to reorder"
|
574 |
msgstr "Ziehen zum Sortieren"
|
575 |
|
581 |
|
582 |
# @ acf
|
583 |
#: includes/admin/views/field-group-field.php:48
|
584 |
+
#: includes/fields/class-acf-field-image.php:140
|
585 |
+
#: includes/fields/class-acf-field-link.php:152
|
586 |
+
#: pro/fields/class-acf-field-gallery.php:357
|
|
|
587 |
msgid "Edit"
|
588 |
msgstr "Bearbeiten"
|
589 |
|
609 |
|
610 |
# @ acf
|
611 |
#: includes/admin/views/field-group-field.php:51
|
612 |
+
#: pro/fields/class-acf-field-flexible-content.php:572
|
613 |
msgid "Delete"
|
614 |
msgstr "Löschen"
|
615 |
|
624 |
msgstr "Dieser Name wird in der Bearbeitungs-Ansicht eines Beitrags angezeigt"
|
625 |
|
626 |
# @ acf
|
627 |
+
#: includes/admin/views/field-group-field.php:78
|
628 |
msgid "Field Name"
|
629 |
msgstr "Feld-Name"
|
630 |
|
631 |
# @ acf
|
632 |
+
#: includes/admin/views/field-group-field.php:79
|
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:89
|
640 |
msgid "Field Type"
|
641 |
msgstr "Feld-Typ"
|
642 |
|
643 |
# @ acf
|
644 |
+
#: includes/admin/views/field-group-field.php:101
|
645 |
+
#: includes/fields/class-acf-field-tab.php:102
|
646 |
msgid "Instructions"
|
647 |
msgstr "Anweisungen"
|
648 |
|
649 |
# @ acf
|
650 |
+
#: includes/admin/views/field-group-field.php:102
|
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:111
|
656 |
msgid "Required?"
|
657 |
msgstr "Erforderlich?"
|
658 |
|
659 |
# @ acf
|
660 |
+
#: includes/admin/views/field-group-field.php:134
|
661 |
msgid "Wrapper Attributes"
|
662 |
msgstr "Wrapper-Attribute"
|
663 |
|
664 |
# @ acf
|
665 |
+
#: includes/admin/views/field-group-field.php:140
|
666 |
msgid "width"
|
667 |
msgstr "Breite"
|
668 |
|
669 |
# @ acf
|
670 |
+
#: includes/admin/views/field-group-field.php:155
|
671 |
msgid "class"
|
672 |
msgstr "Klasse"
|
673 |
|
674 |
# @ acf
|
675 |
+
#: includes/admin/views/field-group-field.php:168
|
676 |
msgid "id"
|
677 |
msgstr "ID"
|
678 |
|
679 |
# @ acf
|
680 |
+
#: includes/admin/views/field-group-field.php:180
|
681 |
msgid "Close Field"
|
682 |
msgstr "Feld schliessen"
|
683 |
|
688 |
|
689 |
# @ acf
|
690 |
#: includes/admin/views/field-group-fields.php:5
|
691 |
+
#: includes/fields/class-acf-field-checkbox.php:317
|
692 |
+
#: includes/fields/class-acf-field-radio.php:321
|
693 |
+
#: includes/fields/class-acf-field-select.php:530
|
694 |
+
#: pro/fields/class-acf-field-flexible-content.php:599
|
|
|
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:970
|
701 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
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 |
|
782 |
# @ acf
|
783 |
#: includes/admin/views/field-group-options.php:62
|
784 |
+
#: includes/fields/class-acf-field-tab.php:116
|
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:117
|
791 |
msgid "Left Aligned"
|
792 |
msgstr "Links neben dem Feld"
|
793 |
|
809 |
# @ acf
|
810 |
#: includes/admin/views/field-group-options.php:85
|
811 |
msgid "Order No."
|
812 |
+
msgstr "Reihenfolge"
|
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:751
|
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:36
|
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:36
|
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:36
|
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:13
|
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 |
|
1038 |
# @ acf
|
1039 |
#: includes/admin/views/install.php:7
|
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 |
"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 |
|
1365 |
# @ acf
|
1366 |
#: includes/admin/views/settings-info.php:144
|
1367 |
+
#: includes/fields/class-acf-field-page_link.php:36
|
1368 |
msgid "Page Link"
|
1369 |
msgstr "Seiten-Link"
|
1370 |
|
1467 |
|
1468 |
# @ acf
|
1469 |
#: includes/admin/views/settings-tools.php:77
|
1470 |
+
#: includes/fields/class-acf-field-file.php:46
|
1471 |
msgid "Select File"
|
1472 |
msgstr "Datei auswählen"
|
1473 |
|
1497 |
msgstr "Volle Grösse"
|
1498 |
|
1499 |
# @ acf
|
1500 |
+
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1837
|
1501 |
+
#: pro/fields/class-acf-field-clone.php:1042
|
1502 |
msgid "(no title)"
|
1503 |
msgstr "(ohne Titel)"
|
1504 |
|
1505 |
+
#: includes/api/api-helpers.php:1874
|
1506 |
+
#: includes/fields/class-acf-field-page_link.php:284
|
1507 |
+
#: includes/fields/class-acf-field-post_object.php:283
|
1508 |
+
#: includes/fields/class-acf-field-taxonomy.php:992
|
1509 |
msgid "Parent"
|
1510 |
msgstr "Eltern"
|
1511 |
|
1512 |
# @ acf
|
1513 |
+
#: includes/api/api-helpers.php:3891
|
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:3896
|
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:3912
|
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:3917
|
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:3935
|
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:3940
|
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:3974
|
1550 |
#, php-format
|
1551 |
msgid "File type must be %s."
|
1552 |
msgstr "Der Dateityp muss %s sein."
|
1577 |
msgstr "jQuery"
|
1578 |
|
1579 |
# @ acf
|
1580 |
+
#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:286
|
1581 |
+
#: includes/fields/class-acf-field-group.php:485
|
1582 |
+
#: includes/fields/class-acf-field-radio.php:300
|
1583 |
+
#: pro/fields/class-acf-field-clone.php:889
|
1584 |
+
#: pro/fields/class-acf-field-flexible-content.php:569
|
1585 |
+
#: pro/fields/class-acf-field-flexible-content.php:618
|
1586 |
+
#: pro/fields/class-acf-field-repeater.php:514
|
|
|
1587 |
msgid "Layout"
|
1588 |
msgstr "Layout"
|
1589 |
|
1590 |
# @ acf
|
1591 |
+
#: includes/fields.php:305
|
1592 |
msgid "Field type does not exist"
|
1593 |
msgstr "Feld-Typ existiert nicht"
|
1594 |
|
1595 |
+
#: includes/fields.php:305
|
1596 |
+
#, fuzzy
|
1597 |
msgid "Unknown"
|
1598 |
+
msgstr "Unbekannte Feld-Gruppe"
|
1599 |
|
1600 |
+
# @ acf
|
1601 |
+
#: includes/fields/class-acf-field-checkbox.php:36
|
1602 |
+
#: includes/fields/class-acf-field-taxonomy.php:786
|
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-checkbox.php:246
|
1617 |
+
#: includes/fields/class-acf-field-radio.php:250
|
1618 |
+
#: includes/fields/class-acf-field-select.php:466
|
|
|
1619 |
msgid "Choices"
|
1620 |
msgstr "Auswahlmöglichkeiten"
|
1621 |
|
1622 |
# @ acf
|
1623 |
+
#: includes/fields/class-acf-field-checkbox.php:247
|
1624 |
+
#: includes/fields/class-acf-field-radio.php:251
|
1625 |
+
#: includes/fields/class-acf-field-select.php:467
|
|
|
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-checkbox.php:247
|
1631 |
+
#: includes/fields/class-acf-field-radio.php:251
|
1632 |
+
#: includes/fields/class-acf-field-select.php:467
|
|
|
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-checkbox.php:247
|
1640 |
+
#: includes/fields/class-acf-field-radio.php:251
|
1641 |
+
#: includes/fields/class-acf-field-select.php:467
|
|
|
1642 |
msgid "red : Red"
|
1643 |
msgstr "rot : Rot"
|
1644 |
|
1645 |
+
#: includes/fields/class-acf-field-checkbox.php:255
|
1646 |
+
msgid "Allow Custom"
|
1647 |
+
msgstr "Erlaube benutzerdefinierte Felder"
|
1648 |
+
|
1649 |
+
#: includes/fields/class-acf-field-checkbox.php:260
|
1650 |
+
msgid "Allow 'custom' values to be added"
|
1651 |
+
msgstr "Erlaube das Hinzufügen benutzerdefinierter Werte"
|
1652 |
+
|
1653 |
+
#: includes/fields/class-acf-field-checkbox.php:266
|
1654 |
+
msgid "Save Custom"
|
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-checkbox.php:277
|
1664 |
+
#: includes/fields/class-acf-field-color_picker.php:146
|
1665 |
+
#: includes/fields/class-acf-field-email.php:133
|
1666 |
+
#: includes/fields/class-acf-field-number.php:145
|
1667 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1668 |
+
#: includes/fields/class-acf-field-select.php:475
|
1669 |
+
#: includes/fields/class-acf-field-text.php:142
|
1670 |
+
#: includes/fields/class-acf-field-textarea.php:139
|
1671 |
+
#: includes/fields/class-acf-field-true_false.php:150
|
1672 |
+
#: includes/fields/class-acf-field-url.php:114
|
1673 |
+
#: includes/fields/class-acf-field-wysiwyg.php:436
|
|
|
|
|
1674 |
msgid "Default Value"
|
1675 |
msgstr "Standardwert"
|
1676 |
|
1677 |
# @ acf
|
1678 |
+
#: includes/fields/class-acf-field-checkbox.php:278
|
1679 |
+
#: includes/fields/class-acf-field-select.php:476
|
1680 |
+
msgid "Enter each default value on a new line"
|
1681 |
+
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1682 |
|
1683 |
# @ acf
|
1684 |
+
#: includes/fields/class-acf-field-checkbox.php:292
|
1685 |
+
#: includes/fields/class-acf-field-radio.php:306
|
1686 |
+
msgid "Vertical"
|
1687 |
+
msgstr "Vertikal"
|
1688 |
+
|
1689 |
+
# @ acf
|
1690 |
+
#: includes/fields/class-acf-field-checkbox.php:293
|
1691 |
+
#: includes/fields/class-acf-field-radio.php:307
|
1692 |
msgid "Horizontal"
|
1693 |
msgstr "Horizontal"
|
1694 |
|
1695 |
+
#: includes/fields/class-acf-field-checkbox.php:300
|
1696 |
+
msgid "Toggle"
|
1697 |
+
msgstr "Auswählen"
|
1698 |
+
|
1699 |
+
#: includes/fields/class-acf-field-checkbox.php:301
|
1700 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
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-checkbox.php:310
|
1706 |
+
#: includes/fields/class-acf-field-file.php:219
|
1707 |
+
#: includes/fields/class-acf-field-image.php:206
|
1708 |
+
#: includes/fields/class-acf-field-link.php:180
|
1709 |
+
#: includes/fields/class-acf-field-radio.php:314
|
1710 |
+
#: includes/fields/class-acf-field-taxonomy.php:839
|
|
|
1711 |
msgid "Return Value"
|
1712 |
msgstr "Rückgabewert"
|
1713 |
|
1714 |
# @ acf
|
1715 |
+
#: includes/fields/class-acf-field-checkbox.php:311
|
1716 |
+
#: includes/fields/class-acf-field-file.php:220
|
1717 |
+
#: includes/fields/class-acf-field-image.php:207
|
1718 |
+
#: includes/fields/class-acf-field-link.php:181
|
1719 |
+
#: includes/fields/class-acf-field-radio.php:315
|
|
|
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-checkbox.php:316
|
1724 |
+
#: includes/fields/class-acf-field-radio.php:320
|
1725 |
+
#: includes/fields/class-acf-field-select.php:529
|
|
|
1726 |
msgid "Value"
|
1727 |
msgstr "Wert"
|
1728 |
|
1729 |
+
#: includes/fields/class-acf-field-checkbox.php:318
|
1730 |
+
#: includes/fields/class-acf-field-radio.php:322
|
1731 |
+
#: includes/fields/class-acf-field-select.php:531
|
|
|
1732 |
msgid "Both (Array)"
|
1733 |
msgstr "Beide (Array)"
|
1734 |
|
1735 |
# @ acf
|
1736 |
+
#: includes/fields/class-acf-field-color_picker.php:36
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1737 |
msgid "Color Picker"
|
1738 |
msgstr "Farbe"
|
1739 |
|
1740 |
# @ acf
|
1741 |
+
#: includes/fields/class-acf-field-color_picker.php:83
|
1742 |
msgid "Clear"
|
1743 |
msgstr "Leeren"
|
1744 |
|
1745 |
# @ acf
|
1746 |
+
#: includes/fields/class-acf-field-color_picker.php:84
|
1747 |
msgid "Default"
|
1748 |
msgstr "Standard"
|
1749 |
|
1750 |
# @ acf
|
1751 |
+
#: includes/fields/class-acf-field-color_picker.php:85
|
1752 |
msgid "Select Color"
|
1753 |
msgstr "Farbe auswählen"
|
1754 |
|
1755 |
+
#: includes/fields/class-acf-field-color_picker.php:86
|
1756 |
msgid "Current Color"
|
1757 |
msgstr "Aktuelle Farbe"
|
1758 |
|
1759 |
# @ acf
|
1760 |
+
#: includes/fields/class-acf-field-date_picker.php:36
|
1761 |
msgid "Date Picker"
|
1762 |
msgstr "Datum"
|
1763 |
|
1764 |
+
#: includes/fields/class-acf-field-date_picker.php:44
|
1765 |
msgctxt "Date Picker JS closeText"
|
1766 |
msgid "Done"
|
1767 |
msgstr "Schliessen"
|
1768 |
|
1769 |
+
#: includes/fields/class-acf-field-date_picker.php:45
|
1770 |
msgctxt "Date Picker JS currentText"
|
1771 |
msgid "Today"
|
1772 |
msgstr "Heute"
|
1773 |
|
1774 |
+
#: includes/fields/class-acf-field-date_picker.php:46
|
1775 |
msgctxt "Date Picker JS nextText"
|
1776 |
msgid "Next"
|
1777 |
msgstr "Weiter"
|
1778 |
|
1779 |
+
#: includes/fields/class-acf-field-date_picker.php:47
|
1780 |
msgctxt "Date Picker JS prevText"
|
1781 |
msgid "Prev"
|
1782 |
msgstr "Zurück"
|
1783 |
|
1784 |
+
#: includes/fields/class-acf-field-date_picker.php:48
|
1785 |
msgctxt "Date Picker JS weekHeader"
|
1786 |
msgid "Wk"
|
1787 |
msgstr "KW"
|
1788 |
|
1789 |
# @ acf
|
1790 |
+
#: includes/fields/class-acf-field-date_picker.php:223
|
1791 |
+
#: includes/fields/class-acf-field-date_time_picker.php:197
|
1792 |
+
#: includes/fields/class-acf-field-time_picker.php:127
|
1793 |
msgid "Display Format"
|
1794 |
msgstr "Darstellungs-Format"
|
1795 |
|
1796 |
# @ acf
|
1797 |
+
#: includes/fields/class-acf-field-date_picker.php:224
|
1798 |
+
#: includes/fields/class-acf-field-date_time_picker.php:198
|
1799 |
+
#: includes/fields/class-acf-field-time_picker.php:128
|
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:232
|
1804 |
+
#: includes/fields/class-acf-field-date_picker.php:263
|
1805 |
+
#: includes/fields/class-acf-field-date_time_picker.php:207
|
1806 |
+
#: includes/fields/class-acf-field-date_time_picker.php:224
|
1807 |
+
#: includes/fields/class-acf-field-time_picker.php:135
|
1808 |
+
#: includes/fields/class-acf-field-time_picker.php:150
|
1809 |
+
#, fuzzy
|
1810 |
msgid "Custom:"
|
1811 |
+
msgstr "Advanced Custom Fields"
|
1812 |
|
1813 |
+
#: includes/fields/class-acf-field-date_picker.php:242
|
1814 |
msgid "Save Format"
|
1815 |
msgstr "Format sichern"
|
1816 |
|
1817 |
+
#: includes/fields/class-acf-field-date_picker.php:243
|
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:253
|
1823 |
+
#: includes/fields/class-acf-field-date_time_picker.php:214
|
1824 |
+
#: includes/fields/class-acf-field-post_object.php:447
|
1825 |
+
#: includes/fields/class-acf-field-relationship.php:778
|
1826 |
+
#: includes/fields/class-acf-field-select.php:524
|
1827 |
+
#: includes/fields/class-acf-field-time_picker.php:142
|
1828 |
msgid "Return Format"
|
1829 |
msgstr "Rückgabewert"
|
1830 |
|
1831 |
# @ acf
|
1832 |
+
#: includes/fields/class-acf-field-date_picker.php:254
|
1833 |
+
#: includes/fields/class-acf-field-date_time_picker.php:215
|
1834 |
+
#: includes/fields/class-acf-field-time_picker.php:143
|
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:272
|
1840 |
+
#: includes/fields/class-acf-field-date_time_picker.php:231
|
1841 |
msgid "Week Starts On"
|
1842 |
msgstr "Die Woche beginnt am"
|
1843 |
|
1844 |
+
#: includes/fields/class-acf-field-date_time_picker.php:36
|
1845 |
msgid "Date Time Picker"
|
1846 |
msgstr "Datum/Uhrzeit"
|
1847 |
|
1848 |
+
#: includes/fields/class-acf-field-date_time_picker.php:44
|
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:45
|
1854 |
msgctxt "Date Time Picker JS timeText"
|
1855 |
msgid "Time"
|
1856 |
msgstr "Zeit"
|
1857 |
|
1858 |
+
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1859 |
msgctxt "Date Time Picker JS hourText"
|
1860 |
msgid "Hour"
|
1861 |
msgstr "Stunde"
|
1862 |
|
1863 |
+
#: includes/fields/class-acf-field-date_time_picker.php:47
|
1864 |
msgctxt "Date Time Picker JS minuteText"
|
1865 |
msgid "Minute"
|
1866 |
msgstr "Minute"
|
1867 |
|
1868 |
+
#: includes/fields/class-acf-field-date_time_picker.php:48
|
1869 |
msgctxt "Date Time Picker JS secondText"
|
1870 |
msgid "Second"
|
1871 |
msgstr "Sekunde"
|
1872 |
|
1873 |
+
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1874 |
msgctxt "Date Time Picker JS millisecText"
|
1875 |
msgid "Millisecond"
|
1876 |
msgstr "Millisekunde"
|
1877 |
|
1878 |
+
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1879 |
msgctxt "Date Time Picker JS microsecText"
|
1880 |
msgid "Microsecond"
|
1881 |
msgstr "Mikrosekunde"
|
1882 |
|
1883 |
+
#: includes/fields/class-acf-field-date_time_picker.php:51
|
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:52
|
1889 |
msgctxt "Date Time Picker JS currentText"
|
1890 |
msgid "Now"
|
1891 |
msgstr "Jetzt"
|
1892 |
|
1893 |
+
#: includes/fields/class-acf-field-date_time_picker.php:53
|
1894 |
msgctxt "Date Time Picker JS closeText"
|
1895 |
msgid "Done"
|
1896 |
msgstr "Schliessen"
|
1897 |
|
1898 |
+
#: includes/fields/class-acf-field-date_time_picker.php:54
|
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:56
|
1904 |
msgctxt "Date Time Picker JS amText"
|
1905 |
msgid "AM"
|
1906 |
msgstr "AM"
|
1907 |
|
1908 |
+
#: includes/fields/class-acf-field-date_time_picker.php:57
|
1909 |
msgctxt "Date Time Picker JS amTextShort"
|
1910 |
msgid "A"
|
1911 |
msgstr "A"
|
1912 |
|
1913 |
+
#: includes/fields/class-acf-field-date_time_picker.php:60
|
1914 |
msgctxt "Date Time Picker JS pmText"
|
1915 |
msgid "PM"
|
1916 |
msgstr "PM"
|
1917 |
|
1918 |
+
#: includes/fields/class-acf-field-date_time_picker.php:61
|
1919 |
msgctxt "Date Time Picker JS pmTextShort"
|
1920 |
msgid "P"
|
1921 |
msgstr "P"
|
1922 |
|
1923 |
# @ acf
|
1924 |
+
#: includes/fields/class-acf-field-email.php:36
|
1925 |
msgid "Email"
|
1926 |
msgstr "E-Mail"
|
1927 |
|
1928 |
# @ acf
|
1929 |
+
#: includes/fields/class-acf-field-email.php:134
|
1930 |
+
#: includes/fields/class-acf-field-number.php:146
|
1931 |
+
#: includes/fields/class-acf-field-radio.php:292
|
1932 |
+
#: includes/fields/class-acf-field-text.php:143
|
1933 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
1934 |
+
#: includes/fields/class-acf-field-url.php:115
|
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:143
|
1951 |
+
#: includes/fields/class-acf-field-number.php:155
|
1952 |
+
#: includes/fields/class-acf-field-password.php:135
|
1953 |
+
#: includes/fields/class-acf-field-text.php:152
|
1954 |
+
#: includes/fields/class-acf-field-textarea.php:149
|
1955 |
+
#: includes/fields/class-acf-field-url.php:124
|
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:151
|
1961 |
+
#: includes/fields/class-acf-field-number.php:163
|
1962 |
+
#: includes/fields/class-acf-field-password.php:143
|
1963 |
+
#: includes/fields/class-acf-field-text.php:160
|
|
|
1964 |
msgid "Prepend"
|
1965 |
msgstr "Voranstellen"
|
1966 |
|
1967 |
# @ acf
|
1968 |
+
#: includes/fields/class-acf-field-email.php:152
|
1969 |
+
#: includes/fields/class-acf-field-number.php:164
|
1970 |
+
#: includes/fields/class-acf-field-password.php:144
|
1971 |
+
#: includes/fields/class-acf-field-text.php:161
|
|
|
1972 |
msgid "Appears before the input"
|
1973 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1974 |
|
1975 |
# @ acf
|
1976 |
+
#: includes/fields/class-acf-field-email.php:160
|
1977 |
+
#: includes/fields/class-acf-field-number.php:172
|
1978 |
+
#: includes/fields/class-acf-field-password.php:152
|
1979 |
+
#: includes/fields/class-acf-field-text.php:169
|
|
|
1980 |
msgid "Append"
|
1981 |
msgstr "Anhängen"
|
1982 |
|
1983 |
# @ acf
|
1984 |
+
#: includes/fields/class-acf-field-email.php:161
|
1985 |
+
#: includes/fields/class-acf-field-number.php:173
|
1986 |
+
#: includes/fields/class-acf-field-password.php:153
|
1987 |
+
#: includes/fields/class-acf-field-text.php:170
|
|
|
1988 |
msgid "Appears after the input"
|
1989 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1990 |
|
1991 |
# @ acf
|
1992 |
+
#: includes/fields/class-acf-field-file.php:36
|
1993 |
msgid "File"
|
1994 |
msgstr "Datei"
|
1995 |
|
1996 |
# @ acf
|
1997 |
+
#: includes/fields/class-acf-field-file.php:47
|
1998 |
msgid "Edit File"
|
1999 |
msgstr "Datei bearbeiten"
|
2000 |
|
2001 |
# @ acf
|
2002 |
+
#: includes/fields/class-acf-field-file.php:48
|
2003 |
msgid "Update File"
|
2004 |
msgstr "Datei aktualisieren"
|
2005 |
|
2006 |
# @ acf
|
2007 |
+
#: includes/fields/class-acf-field-file.php:49
|
2008 |
+
#: includes/fields/class-acf-field-image.php:54 includes/media.php:57
|
2009 |
+
#: pro/fields/class-acf-field-gallery.php:55
|
2010 |
msgid "Uploaded to this post"
|
2011 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2012 |
|
2013 |
+
#: includes/fields/class-acf-field-file.php:145
|
2014 |
msgid "File name"
|
2015 |
msgstr "Dateiname"
|
2016 |
|
2017 |
# @ acf
|
2018 |
+
#: includes/fields/class-acf-field-file.php:149
|
2019 |
+
#: includes/fields/class-acf-field-file.php:252
|
2020 |
+
#: includes/fields/class-acf-field-file.php:263
|
2021 |
+
#: includes/fields/class-acf-field-image.php:266
|
2022 |
+
#: includes/fields/class-acf-field-image.php:295
|
2023 |
+
#: pro/fields/class-acf-field-gallery.php:705
|
2024 |
+
#: pro/fields/class-acf-field-gallery.php:734
|
2025 |
msgid "File size"
|
2026 |
msgstr "Dateigrösse"
|
2027 |
|
2028 |
# @ acf
|
2029 |
+
#: includes/fields/class-acf-field-file.php:174
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2030 |
msgid "Add File"
|
2031 |
msgstr "Datei hinzufügen"
|
2032 |
|
2033 |
# @ acf
|
2034 |
+
#: includes/fields/class-acf-field-file.php:225
|
2035 |
msgid "File Array"
|
2036 |
msgstr "Datei-Array"
|
2037 |
|
2038 |
# @ acf
|
2039 |
+
#: includes/fields/class-acf-field-file.php:226
|
2040 |
msgid "File URL"
|
2041 |
msgstr "Datei-URL"
|
2042 |
|
2043 |
# @ acf
|
2044 |
+
#: includes/fields/class-acf-field-file.php:227
|
2045 |
msgid "File ID"
|
2046 |
msgstr "Datei-ID"
|
2047 |
|
2048 |
# @ acf
|
2049 |
+
#: includes/fields/class-acf-field-file.php:234
|
2050 |
+
#: includes/fields/class-acf-field-image.php:231
|
2051 |
+
#: pro/fields/class-acf-field-gallery.php:670
|
2052 |
msgid "Library"
|
2053 |
msgstr "Medienübersicht"
|
2054 |
|
2055 |
# @ acf
|
2056 |
+
#: includes/fields/class-acf-field-file.php:235
|
2057 |
+
#: includes/fields/class-acf-field-image.php:232
|
2058 |
+
#: pro/fields/class-acf-field-gallery.php:671
|
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:240
|
2064 |
+
#: includes/fields/class-acf-field-image.php:237
|
2065 |
+
#: includes/locations/class-acf-location-attachment.php:105
|
2066 |
+
#: includes/locations/class-acf-location-comment.php:83
|
2067 |
+
#: includes/locations/class-acf-location-nav-menu.php:106
|
2068 |
+
#: includes/locations/class-acf-location-taxonomy.php:83
|
2069 |
+
#: includes/locations/class-acf-location-user-form.php:91
|
2070 |
+
#: includes/locations/class-acf-location-user-role.php:108
|
2071 |
+
#: includes/locations/class-acf-location-widget.php:87
|
2072 |
+
#: pro/fields/class-acf-field-gallery.php:676
|
2073 |
msgid "All"
|
2074 |
msgstr "Alle"
|
2075 |
|
2076 |
# @ acf
|
2077 |
+
#: includes/fields/class-acf-field-file.php:241
|
2078 |
+
#: includes/fields/class-acf-field-image.php:238
|
2079 |
+
#: pro/fields/class-acf-field-gallery.php:677
|
2080 |
msgid "Uploaded to post"
|
2081 |
msgstr "Für den Beitrag hochgeladen"
|
2082 |
|
2083 |
# @ acf
|
2084 |
+
#: includes/fields/class-acf-field-file.php:248
|
2085 |
+
#: includes/fields/class-acf-field-image.php:245
|
2086 |
+
#: pro/fields/class-acf-field-gallery.php:684
|
2087 |
msgid "Minimum"
|
2088 |
msgstr "Minimum"
|
2089 |
|
2090 |
# @ acf
|
2091 |
+
#: includes/fields/class-acf-field-file.php:249
|
2092 |
+
#: includes/fields/class-acf-field-file.php:260
|
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:259
|
2100 |
+
#: includes/fields/class-acf-field-image.php:274
|
2101 |
+
#: pro/fields/class-acf-field-gallery.php:713
|
2102 |
msgid "Maximum"
|
2103 |
msgstr "Maximum"
|
2104 |
|
2105 |
# @ acf
|
2106 |
+
#: includes/fields/class-acf-field-file.php:270
|
2107 |
+
#: includes/fields/class-acf-field-image.php:303
|
2108 |
+
#: pro/fields/class-acf-field-gallery.php:742
|
2109 |
msgid "Allowed file types"
|
2110 |
msgstr "Erlaubte Datei-Formate"
|
2111 |
|
2112 |
# @ acf
|
2113 |
+
#: includes/fields/class-acf-field-file.php:271
|
2114 |
+
#: includes/fields/class-acf-field-image.php:304
|
2115 |
+
#: pro/fields/class-acf-field-gallery.php:743
|
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:36
|
2123 |
msgid "Google Map"
|
2124 |
msgstr "Google Maps"
|
2125 |
|
2126 |
# @ acf
|
2127 |
+
#: includes/fields/class-acf-field-google-map.php:51
|
2128 |
msgid "Locating"
|
2129 |
msgstr "Lokalisiere"
|
2130 |
|
2131 |
# @ acf
|
2132 |
+
#: includes/fields/class-acf-field-google-map.php:52
|
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:133
|
2138 |
msgid "Clear location"
|
2139 |
msgstr "Position löschen"
|
2140 |
|
2141 |
# @ acf
|
2142 |
+
#: includes/fields/class-acf-field-google-map.php:134
|
2143 |
msgid "Find current location"
|
2144 |
msgstr "Aktuelle Position finden"
|
2145 |
|
2146 |
# @ acf
|
2147 |
+
#: includes/fields/class-acf-field-google-map.php:137
|
2148 |
msgid "Search for address..."
|
2149 |
msgstr "Nach der Adresse suchen..."
|
2150 |
|
2151 |
# @ acf
|
2152 |
+
#: includes/fields/class-acf-field-google-map.php:167
|
2153 |
+
#: includes/fields/class-acf-field-google-map.php:178
|
2154 |
msgid "Center"
|
2155 |
msgstr "Kartenmittelpunkt"
|
2156 |
|
2157 |
# @ acf
|
2158 |
+
#: includes/fields/class-acf-field-google-map.php:168
|
2159 |
+
#: includes/fields/class-acf-field-google-map.php:179
|
2160 |
msgid "Center the initial map"
|
2161 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2162 |
|
2163 |
# @ acf
|
2164 |
+
#: includes/fields/class-acf-field-google-map.php:190
|
2165 |
msgid "Zoom"
|
2166 |
msgstr "Zoom"
|
2167 |
|
2168 |
# @ acf
|
2169 |
+
#: includes/fields/class-acf-field-google-map.php:191
|
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:200
|
2175 |
+
#: includes/fields/class-acf-field-image.php:257
|
2176 |
+
#: includes/fields/class-acf-field-image.php:286
|
2177 |
+
#: includes/fields/class-acf-field-oembed.php:297
|
2178 |
+
#: pro/fields/class-acf-field-gallery.php:696
|
2179 |
+
#: pro/fields/class-acf-field-gallery.php:725
|
2180 |
msgid "Height"
|
2181 |
msgstr "Höhe"
|
2182 |
|
2183 |
# @ acf
|
2184 |
+
#: includes/fields/class-acf-field-google-map.php:201
|
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:36
|
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:469
|
2198 |
+
#: pro/fields/class-acf-field-repeater.php:453
|
2199 |
msgid "Sub Fields"
|
2200 |
msgstr "Wiederholungsfelder"
|
2201 |
|
2202 |
+
#: includes/fields/class-acf-field-group.php:486
|
2203 |
+
#: pro/fields/class-acf-field-clone.php:890
|
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:491
|
2209 |
+
#: pro/fields/class-acf-field-clone.php:895
|
2210 |
+
#: pro/fields/class-acf-field-flexible-content.php:629
|
2211 |
+
#: pro/fields/class-acf-field-repeater.php:522
|
2212 |
msgid "Block"
|
2213 |
msgstr "Block"
|
2214 |
|
2215 |
# @ acf
|
2216 |
+
#: includes/fields/class-acf-field-group.php:492
|
2217 |
+
#: pro/fields/class-acf-field-clone.php:896
|
2218 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
2219 |
+
#: pro/fields/class-acf-field-repeater.php:521
|
2220 |
msgid "Table"
|
2221 |
msgstr "Tabelle"
|
2222 |
|
2223 |
# @ acf
|
2224 |
+
#: includes/fields/class-acf-field-group.php:493
|
2225 |
+
#: pro/fields/class-acf-field-clone.php:897
|
2226 |
+
#: pro/fields/class-acf-field-flexible-content.php:630
|
2227 |
+
#: pro/fields/class-acf-field-repeater.php:523
|
2228 |
msgid "Row"
|
2229 |
msgstr "Reihe"
|
2230 |
|
2231 |
# @ acf
|
2232 |
+
#: includes/fields/class-acf-field-image.php:36
|
2233 |
msgid "Image"
|
2234 |
msgstr "Bild"
|
2235 |
|
2236 |
# @ acf
|
2237 |
+
#: includes/fields/class-acf-field-image.php:51
|
2238 |
msgid "Select Image"
|
2239 |
msgstr "Bild auswählen"
|
2240 |
|
2241 |
# @ acf
|
2242 |
+
#: includes/fields/class-acf-field-image.php:52
|
2243 |
+
#: pro/fields/class-acf-field-gallery.php:53
|
2244 |
msgid "Edit Image"
|
2245 |
msgstr "Bild bearbeiten"
|
2246 |
|
2247 |
# @ acf
|
2248 |
+
#: includes/fields/class-acf-field-image.php:53
|
2249 |
+
#: pro/fields/class-acf-field-gallery.php:54
|
2250 |
msgid "Update Image"
|
2251 |
msgstr "Bild aktualisieren"
|
2252 |
|
2253 |
# @ acf
|
2254 |
+
#: includes/fields/class-acf-field-image.php:55
|
2255 |
msgid "All images"
|
2256 |
msgstr "Alle Bilder"
|
2257 |
|
2258 |
# @ acf
|
2259 |
+
#: includes/fields/class-acf-field-image.php:142
|
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:158
|
2273 |
msgid "Add Image"
|
2274 |
msgstr "Bild hinzufügen"
|
2275 |
|
2276 |
# @ acf
|
2277 |
+
#: includes/fields/class-acf-field-image.php:212
|
2278 |
msgid "Image Array"
|
2279 |
msgstr "Bild-Array"
|
2280 |
|
2281 |
# @ acf
|
2282 |
+
#: includes/fields/class-acf-field-image.php:213
|
2283 |
msgid "Image URL"
|
2284 |
msgstr "Bild-URL"
|
2285 |
|
2286 |
# @ acf
|
2287 |
+
#: includes/fields/class-acf-field-image.php:214
|
2288 |
msgid "Image ID"
|
2289 |
msgstr "Bild-ID"
|
2290 |
|
2291 |
# @ acf
|
2292 |
+
#: includes/fields/class-acf-field-image.php:221
|
2293 |
msgid "Preview Size"
|
2294 |
msgstr "Masse der Vorschau"
|
2295 |
|
2296 |
# @ acf
|
2297 |
+
#: includes/fields/class-acf-field-image.php:222
|
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:246
|
2303 |
+
#: includes/fields/class-acf-field-image.php:275
|
2304 |
+
#: pro/fields/class-acf-field-gallery.php:685
|
2305 |
+
#: pro/fields/class-acf-field-gallery.php:714
|
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:249
|
2313 |
+
#: includes/fields/class-acf-field-image.php:278
|
2314 |
+
#: includes/fields/class-acf-field-oembed.php:286
|
2315 |
+
#: pro/fields/class-acf-field-gallery.php:688
|
2316 |
+
#: pro/fields/class-acf-field-gallery.php:717
|
2317 |
msgid "Width"
|
2318 |
msgstr "Breite"
|
2319 |
|
2320 |
# @ acf
|
2321 |
+
#: includes/fields/class-acf-field-link.php:36
|
2322 |
+
#, fuzzy
|
2323 |
msgid "Link"
|
2324 |
+
msgstr "Seiten-Link"
|
2325 |
|
2326 |
# @ acf
|
2327 |
+
#: includes/fields/class-acf-field-link.php:146
|
2328 |
+
#, fuzzy
|
2329 |
msgid "Select Link"
|
2330 |
+
msgstr "Datei auswählen"
|
2331 |
|
2332 |
+
#: includes/fields/class-acf-field-link.php:151
|
2333 |
msgid "Opens in a new window/tab"
|
2334 |
+
msgstr ""
|
2335 |
|
2336 |
# @ acf
|
2337 |
+
#: includes/fields/class-acf-field-link.php:186
|
2338 |
+
#, fuzzy
|
2339 |
msgid "Link Array"
|
2340 |
+
msgstr "Datei-Array"
|
2341 |
|
2342 |
# @ acf
|
2343 |
+
#: includes/fields/class-acf-field-link.php:187
|
2344 |
+
#, fuzzy
|
2345 |
msgid "Link URL"
|
2346 |
+
msgstr "Datei-URL"
|
2347 |
|
2348 |
# @ acf
|
2349 |
+
#: includes/fields/class-acf-field-message.php:36
|
2350 |
+
#: includes/fields/class-acf-field-message.php:115
|
2351 |
+
#: includes/fields/class-acf-field-true_false.php:141
|
2352 |
msgid "Message"
|
2353 |
msgstr "Nachricht"
|
2354 |
|
2355 |
# @ acf
|
2356 |
+
#: includes/fields/class-acf-field-message.php:124
|
2357 |
+
#: includes/fields/class-acf-field-textarea.php:176
|
2358 |
msgid "New Lines"
|
2359 |
msgstr "Neue Zeilen"
|
2360 |
|
2361 |
# @ acf
|
2362 |
+
#: includes/fields/class-acf-field-message.php:125
|
2363 |
+
#: includes/fields/class-acf-field-textarea.php:177
|
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:129
|
2369 |
+
#: includes/fields/class-acf-field-textarea.php:181
|
2370 |
msgid "Automatically add paragraphs"
|
2371 |
msgstr "Absätze automatisch hinzufügen"
|
2372 |
|
2373 |
# @ acf
|
2374 |
+
#: includes/fields/class-acf-field-message.php:130
|
2375 |
+
#: includes/fields/class-acf-field-textarea.php:182
|
2376 |
msgid "Automatically add <br>"
|
2377 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2378 |
|
2379 |
# @ acf
|
2380 |
+
#: includes/fields/class-acf-field-message.php:131
|
2381 |
+
#: includes/fields/class-acf-field-textarea.php:183
|
2382 |
msgid "No Formatting"
|
2383 |
msgstr "Keine Formatierung"
|
2384 |
|
2385 |
# @ acf
|
2386 |
+
#: includes/fields/class-acf-field-message.php:138
|
2387 |
msgid "Escape HTML"
|
2388 |
msgstr "HTML enkodieren"
|
2389 |
|
2390 |
# @ acf
|
2391 |
+
#: includes/fields/class-acf-field-message.php:139
|
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:36
|
2399 |
msgid "Number"
|
2400 |
msgstr "Numerisch"
|
2401 |
|
2402 |
# @ acf
|
2403 |
+
#: includes/fields/class-acf-field-number.php:181
|
|
|
2404 |
msgid "Minimum Value"
|
2405 |
msgstr "Mindestwert"
|
2406 |
|
2407 |
# @ acf
|
2408 |
+
#: includes/fields/class-acf-field-number.php:190
|
|
|
2409 |
msgid "Maximum Value"
|
2410 |
msgstr "Maximalwert"
|
2411 |
|
2412 |
# @ acf
|
2413 |
+
#: includes/fields/class-acf-field-number.php:199
|
|
|
2414 |
msgid "Step Size"
|
2415 |
msgstr "Schrittweite"
|
2416 |
|
2417 |
# @ acf
|
2418 |
+
#: includes/fields/class-acf-field-number.php:237
|
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:255
|
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:263
|
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:36
|
2436 |
msgid "oEmbed"
|
2437 |
msgstr "oEmbed"
|
2438 |
|
2439 |
# @ acf
|
2440 |
+
#: includes/fields/class-acf-field-oembed.php:237
|
2441 |
msgid "Enter URL"
|
2442 |
msgstr "URL eingeben"
|
2443 |
|
2444 |
+
#: includes/fields/class-acf-field-oembed.php:250
|
2445 |
+
#: includes/fields/class-acf-field-taxonomy.php:904
|
2446 |
msgid "Error."
|
2447 |
msgstr "Fehler."
|
2448 |
|
2449 |
# @ acf
|
2450 |
+
#: includes/fields/class-acf-field-oembed.php:250
|
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:283
|
2456 |
+
#: includes/fields/class-acf-field-oembed.php:294
|
2457 |
msgid "Embed Size"
|
2458 |
msgstr "Masse"
|
2459 |
|
2460 |
# @ acf
|
2461 |
+
#: includes/fields/class-acf-field-page_link.php:192
|
2462 |
msgid "Archives"
|
2463 |
msgstr "Archive"
|
2464 |
|
2465 |
# @ acf
|
2466 |
+
#: includes/fields/class-acf-field-page_link.php:500
|
2467 |
+
#: includes/fields/class-acf-field-post_object.php:399
|
2468 |
+
#: includes/fields/class-acf-field-relationship.php:704
|
2469 |
msgid "Filter by Post Type"
|
2470 |
msgstr "Nach Post Types filtern"
|
2471 |
|
2472 |
# @ acf
|
2473 |
+
#: includes/fields/class-acf-field-page_link.php:508
|
2474 |
+
#: includes/fields/class-acf-field-post_object.php:407
|
2475 |
+
#: includes/fields/class-acf-field-relationship.php:712
|
2476 |
msgid "All post types"
|
2477 |
msgstr "Alle verfügbaren Post Types"
|
2478 |
|
2479 |
# @ acf
|
2480 |
+
#: includes/fields/class-acf-field-page_link.php:514
|
2481 |
+
#: includes/fields/class-acf-field-post_object.php:413
|
2482 |
+
#: includes/fields/class-acf-field-relationship.php:718
|
2483 |
msgid "Filter by Taxonomy"
|
2484 |
msgstr "Nach Taxonomien filtern"
|
2485 |
|
2486 |
# @ acf
|
2487 |
+
#: includes/fields/class-acf-field-page_link.php:522
|
2488 |
+
#: includes/fields/class-acf-field-post_object.php:421
|
2489 |
+
#: includes/fields/class-acf-field-relationship.php:726
|
2490 |
msgid "All taxonomies"
|
2491 |
msgstr "Alle Taxonomien"
|
2492 |
|
2493 |
+
# @ acf
|
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:548
|
2509 |
+
#: includes/fields/class-acf-field-post_object.php:437
|
2510 |
+
#: includes/fields/class-acf-field-select.php:494
|
2511 |
+
#: includes/fields/class-acf-field-user.php:433
|
2512 |
msgid "Select multiple values?"
|
2513 |
msgstr "Mehrere Werte auswählbar?"
|
2514 |
|
2515 |
# @ acf
|
2516 |
+
#: includes/fields/class-acf-field-password.php:36
|
2517 |
msgid "Password"
|
2518 |
msgstr "Passwort"
|
2519 |
|
2520 |
# @ acf
|
2521 |
+
#: includes/fields/class-acf-field-post_object.php:36
|
2522 |
+
#: includes/fields/class-acf-field-post_object.php:452
|
2523 |
+
#: includes/fields/class-acf-field-relationship.php:783
|
2524 |
msgid "Post Object"
|
2525 |
msgstr "Beitrags-Objekt"
|
2526 |
|
2527 |
# @ acf
|
2528 |
+
#: includes/fields/class-acf-field-post_object.php:453
|
2529 |
+
#: includes/fields/class-acf-field-relationship.php:784
|
2530 |
msgid "Post ID"
|
2531 |
msgstr "Beitrags-ID"
|
2532 |
|
2533 |
# @ acf
|
2534 |
+
#: includes/fields/class-acf-field-radio.php:36
|
2535 |
msgid "Radio Button"
|
2536 |
msgstr "Radio-Button"
|
2537 |
|
2538 |
# @ acf
|
2539 |
+
#: includes/fields/class-acf-field-radio.php:269
|
2540 |
msgid "Other"
|
2541 |
msgstr "Sonstige"
|
2542 |
|
2543 |
# @ acf
|
2544 |
+
#: includes/fields/class-acf-field-radio.php:274
|
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:280
|
2552 |
msgid "Save Other"
|
2553 |
msgstr "'Sonstige' speichern"
|
2554 |
|
2555 |
# @ acf
|
2556 |
+
#: includes/fields/class-acf-field-radio.php:285
|
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:36
|
2562 |
msgid "Relationship"
|
2563 |
msgstr "Beziehung"
|
2564 |
|
2565 |
# @ acf
|
2566 |
+
#: includes/fields/class-acf-field-relationship.php:48
|
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:49
|
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:50
|
2577 |
msgid "Loading"
|
2578 |
msgstr "Lade"
|
2579 |
|
2580 |
# @ acf
|
2581 |
+
#: includes/fields/class-acf-field-relationship.php:51
|
2582 |
msgid "No matches found"
|
2583 |
msgstr "Keine Übereinstimmung gefunden"
|
2584 |
|
2585 |
# @ acf
|
2586 |
+
#: includes/fields/class-acf-field-relationship.php:585
|
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:607
|
2597 |
msgid "Select taxonomy"
|
2598 |
msgstr "Taxonomie auswählen"
|
2599 |
|
2600 |
# @ acf
|
2601 |
+
#: includes/fields/class-acf-field-relationship.php:732
|
|
|
|
|
|
|
|
|
|
|
2602 |
msgid "Filters"
|
2603 |
msgstr "Filter"
|
2604 |
|
2605 |
# @ acf
|
2606 |
+
#: includes/fields/class-acf-field-relationship.php:738
|
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:739
|
2613 |
+
#: includes/fields/class-acf-field-taxonomy.php:36
|
2614 |
+
#: includes/fields/class-acf-field-taxonomy.php:769
|
2615 |
msgid "Taxonomy"
|
2616 |
msgstr "Taxonomie"
|
2617 |
|
2618 |
# @ acf
|
2619 |
+
#: includes/fields/class-acf-field-relationship.php:746
|
2620 |
msgid "Elements"
|
2621 |
msgstr "Elemente"
|
2622 |
|
2623 |
# @ acf
|
2624 |
+
#: includes/fields/class-acf-field-relationship.php:747
|
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:758
|
2630 |
msgid "Minimum posts"
|
2631 |
msgstr "Min. Anzahl der Beiträge"
|
2632 |
|
2633 |
# @ acf
|
2634 |
+
#: includes/fields/class-acf-field-relationship.php:767
|
2635 |
msgid "Maximum posts"
|
2636 |
msgstr "Max. Anzahl der Beiträge"
|
2637 |
|
2638 |
# @ acf
|
2639 |
+
#: includes/fields/class-acf-field-relationship.php:871
|
2640 |
+
#: pro/fields/class-acf-field-gallery.php:815
|
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:36
|
2648 |
+
#: includes/fields/class-acf-field-taxonomy.php:791
|
2649 |
msgctxt "noun"
|
2650 |
msgid "Select"
|
2651 |
msgstr "Auswahlmenü"
|
2652 |
|
2653 |
+
#: includes/fields/class-acf-field-select.php:49
|
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:50
|
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:51
|
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:52
|
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:53
|
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:54
|
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:55
|
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:56
|
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:57
|
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:58
|
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:59
|
2708 |
msgctxt "Select2 JS searching"
|
2709 |
msgid "Searching…"
|
2710 |
msgstr "Suche…"
|
2711 |
|
2712 |
+
#: includes/fields/class-acf-field-select.php:60
|
2713 |
msgctxt "Select2 JS load_fail"
|
2714 |
msgid "Loading failed"
|
2715 |
msgstr "Fehler beim Laden"
|
2716 |
|
2717 |
+
#: includes/fields/class-acf-field-select.php:270 includes/media.php:54
|
2718 |
msgctxt "verb"
|
2719 |
msgid "Select"
|
2720 |
msgstr "Auswählen"
|
2721 |
|
2722 |
# @ acf
|
2723 |
+
#: includes/fields/class-acf-field-select.php:504
|
2724 |
+
#: includes/fields/class-acf-field-true_false.php:159
|
2725 |
msgid "Stylised UI"
|
2726 |
msgstr "Modernes Auswahlfeld"
|
2727 |
|
2728 |
# @ acf
|
2729 |
+
#: includes/fields/class-acf-field-select.php:514
|
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:525
|
2734 |
msgid "Specify the value returned"
|
2735 |
msgstr "Rückgabewert festlegen"
|
2736 |
|
2737 |
+
#: includes/fields/class-acf-field-separator.php:36
|
2738 |
msgid "Separator"
|
2739 |
+
msgstr ""
|
2740 |
|
2741 |
# @ acf
|
2742 |
+
#: includes/fields/class-acf-field-tab.php:36
|
2743 |
msgid "Tab"
|
2744 |
msgstr "Tab"
|
2745 |
|
2746 |
# @ acf
|
2747 |
+
#: includes/fields/class-acf-field-tab.php:96
|
2748 |
msgid ""
|
2749 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2750 |
"field or flexible content field layout"
|
2753 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2754 |
|
2755 |
# @ acf
|
2756 |
+
#: includes/fields/class-acf-field-tab.php:97
|
2757 |
msgid ""
|
2758 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2759 |
"together."
|
2762 |
"Tabs zusammengefasst werden."
|
2763 |
|
2764 |
# @ acf
|
2765 |
+
#: includes/fields/class-acf-field-tab.php:98
|
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 |
"zusammengefasst."
|
2774 |
|
2775 |
# @ acf
|
2776 |
+
#: includes/fields/class-acf-field-tab.php:112
|
2777 |
msgid "Placement"
|
2778 |
msgstr "Platzierung Tabs"
|
2779 |
|
2780 |
+
#: includes/fields/class-acf-field-tab.php:124
|
2781 |
msgid "End-point"
|
2782 |
msgstr "Abschluss"
|
2783 |
|
2784 |
+
#: includes/fields/class-acf-field-tab.php:125
|
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 |
+
# @ acf
|
2789 |
+
#: includes/fields/class-acf-field-taxonomy.php:719
|
2790 |
+
#: includes/fields/class-acf-field-true_false.php:95
|
2791 |
+
#: includes/fields/class-acf-field-true_false.php:184 includes/input.php:266
|
2792 |
+
#: pro/admin/views/html-settings-updates.php:103
|
2793 |
+
msgid "No"
|
2794 |
+
msgstr "Nein"
|
2795 |
|
2796 |
# @ acf
|
2797 |
+
#: includes/fields/class-acf-field-taxonomy.php:738
|
2798 |
msgid "None"
|
2799 |
msgstr "Nur Text"
|
2800 |
|
2801 |
# @ acf
|
2802 |
+
#: includes/fields/class-acf-field-taxonomy.php:770
|
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:779
|
2808 |
msgid "Appearance"
|
2809 |
msgstr "Anzeige"
|
2810 |
|
2811 |
# @ acf
|
2812 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
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:785
|
2818 |
msgid "Multiple Values"
|
2819 |
+
msgstr "Mehrere Werte auswählen?"
|
2820 |
|
2821 |
# @ acf
|
2822 |
+
#: includes/fields/class-acf-field-taxonomy.php:787
|
2823 |
msgid "Multi Select"
|
2824 |
msgstr "Auswahlmenü"
|
2825 |
|
2826 |
# @ acf
|
2827 |
+
#: includes/fields/class-acf-field-taxonomy.php:789
|
2828 |
msgid "Single Value"
|
2829 |
msgstr "Einzelne Werte"
|
2830 |
|
2831 |
# @ acf
|
2832 |
+
#: includes/fields/class-acf-field-taxonomy.php:790
|
2833 |
msgid "Radio Buttons"
|
2834 |
msgstr "Radio Button"
|
2835 |
|
2836 |
# @ acf
|
2837 |
+
#: includes/fields/class-acf-field-taxonomy.php:809
|
2838 |
msgid "Create Terms"
|
2839 |
msgstr "Neue Einträge erlauben"
|
2840 |
|
2841 |
# @ acf
|
2842 |
+
#: includes/fields/class-acf-field-taxonomy.php:810
|
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:819
|
2847 |
msgid "Save Terms"
|
2848 |
msgstr "Einträge speichern"
|
2849 |
|
2850 |
# @ acf
|
2851 |
+
#: includes/fields/class-acf-field-taxonomy.php:820
|
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:829
|
2856 |
msgid "Load Terms"
|
2857 |
msgstr "Einträge laden"
|
2858 |
|
2859 |
+
#: includes/fields/class-acf-field-taxonomy.php:830
|
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:844
|
2865 |
msgid "Term Object"
|
2866 |
msgstr "Begriffs-Objekt"
|
2867 |
|
2868 |
# @ acf
|
2869 |
+
#: includes/fields/class-acf-field-taxonomy.php:845
|
2870 |
msgid "Term ID"
|
2871 |
msgstr "Begriffs-ID"
|
2872 |
|
2873 |
# @ acf
|
2874 |
+
#: includes/fields/class-acf-field-taxonomy.php:904
|
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:917
|
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:958
|
2887 |
#, php-format
|
2888 |
msgid "%s added"
|
2889 |
msgstr "%s hinzugefügt"
|
2890 |
|
2891 |
# @ acf
|
2892 |
+
#: includes/fields/class-acf-field-taxonomy.php:1003
|
2893 |
msgid "Add"
|
2894 |
msgstr "Hinzufügen"
|
2895 |
|
2896 |
# @ acf
|
2897 |
+
#: includes/fields/class-acf-field-text.php:36
|
2898 |
msgid "Text"
|
2899 |
msgstr "Text einzeilig"
|
2900 |
|
2901 |
# @ acf
|
2902 |
+
#: includes/fields/class-acf-field-text.php:178
|
2903 |
+
#: includes/fields/class-acf-field-textarea.php:157
|
2904 |
msgid "Character Limit"
|
2905 |
msgstr "Zeichenbegrenzung"
|
2906 |
|
2907 |
# @ acf
|
2908 |
+
#: includes/fields/class-acf-field-text.php:179
|
2909 |
+
#: includes/fields/class-acf-field-textarea.php:158
|
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:36
|
2915 |
msgid "Text Area"
|
2916 |
msgstr "Text mehrzeilig"
|
2917 |
|
2918 |
# @ acf
|
2919 |
+
#: includes/fields/class-acf-field-textarea.php:166
|
2920 |
msgid "Rows"
|
2921 |
msgstr "Zeilenanzahl"
|
2922 |
|
2923 |
# @ acf
|
2924 |
+
#: includes/fields/class-acf-field-textarea.php:167
|
2925 |
msgid "Sets the textarea height"
|
2926 |
msgstr "Definiert die Höhe des Textfelds"
|
2927 |
|
2928 |
+
#: includes/fields/class-acf-field-time_picker.php:36
|
2929 |
msgid "Time Picker"
|
2930 |
msgstr "Uhrzeit"
|
2931 |
|
2932 |
# @ acf
|
2933 |
+
#: includes/fields/class-acf-field-true_false.php:36
|
2934 |
msgid "True / False"
|
2935 |
msgstr "Ja/Nein"
|
2936 |
|
2937 |
# @ acf
|
2938 |
+
#: includes/fields/class-acf-field-true_false.php:94
|
2939 |
+
#: includes/fields/class-acf-field-true_false.php:174 includes/input.php:265
|
2940 |
+
#: pro/admin/views/html-settings-updates.php:93
|
2941 |
msgid "Yes"
|
2942 |
msgstr "Ja"
|
2943 |
|
2944 |
+
#: includes/fields/class-acf-field-true_false.php:142
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2945 |
msgid "Displays text alongside the checkbox"
|
2946 |
msgstr "Zeigt Text neben der Checkbox"
|
2947 |
|
2948 |
+
#: includes/fields/class-acf-field-true_false.php:170
|
2949 |
msgid "On Text"
|
2950 |
msgstr "Wenn aktiv"
|
2951 |
|
2952 |
+
#: includes/fields/class-acf-field-true_false.php:171
|
2953 |
msgid "Text shown when active"
|
2954 |
msgstr "Angezeigter Text im aktiven Zustand"
|
2955 |
|
2956 |
+
#: includes/fields/class-acf-field-true_false.php:180
|
2957 |
msgid "Off Text"
|
2958 |
msgstr "Wenn inaktiv"
|
2959 |
|
2960 |
+
#: includes/fields/class-acf-field-true_false.php:181
|
2961 |
msgid "Text shown when inactive"
|
2962 |
msgstr "Angezeigter Text im inaktiven Zustand"
|
2963 |
|
2964 |
# @ acf
|
2965 |
+
#: includes/fields/class-acf-field-url.php:36
|
2966 |
msgid "Url"
|
2967 |
msgstr "URL"
|
2968 |
|
2969 |
# @ acf
|
2970 |
+
#: includes/fields/class-acf-field-url.php:165
|
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:36 includes/locations.php:95
|
2976 |
msgid "User"
|
2977 |
msgstr "Benutzer"
|
2978 |
|
2979 |
# @ acf
|
2980 |
+
#: includes/fields/class-acf-field-user.php:408
|
2981 |
msgid "Filter by role"
|
2982 |
msgstr "Filtere nach Benutzerrollen"
|
2983 |
|
2984 |
# @ acf
|
2985 |
+
#: includes/fields/class-acf-field-user.php:416
|
2986 |
msgid "All user roles"
|
2987 |
msgstr "Alle Benutzerrollen"
|
2988 |
|
2989 |
# @ acf
|
2990 |
+
#: includes/fields/class-acf-field-wysiwyg.php:36
|
2991 |
msgid "Wysiwyg Editor"
|
2992 |
msgstr "WYSIWYG-Editor"
|
2993 |
|
2994 |
# @ acf
|
2995 |
+
#: includes/fields/class-acf-field-wysiwyg.php:385
|
2996 |
msgid "Visual"
|
2997 |
msgstr "Visuell"
|
2998 |
|
2999 |
# @ acf
|
3000 |
+
#: includes/fields/class-acf-field-wysiwyg.php:386
|
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:392
|
3006 |
msgid "Click to initialize TinyMCE"
|
3007 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3008 |
|
3009 |
# @ acf
|
3010 |
+
#: includes/fields/class-acf-field-wysiwyg.php:445
|
3011 |
msgid "Tabs"
|
3012 |
msgstr "Tabs"
|
3013 |
|
3014 |
# @ acf
|
3015 |
+
#: includes/fields/class-acf-field-wysiwyg.php:450
|
3016 |
msgid "Visual & Text"
|
3017 |
msgstr "Visuell & Text"
|
3018 |
|
3019 |
# @ acf
|
3020 |
+
#: includes/fields/class-acf-field-wysiwyg.php:451
|
3021 |
msgid "Visual Only"
|
3022 |
msgstr "Nur Visuell"
|
3023 |
|
3024 |
# @ acf
|
3025 |
+
#: includes/fields/class-acf-field-wysiwyg.php:452
|
3026 |
msgid "Text Only"
|
3027 |
msgstr "Nur Text"
|
3028 |
|
3029 |
# @ acf
|
3030 |
+
#: includes/fields/class-acf-field-wysiwyg.php:459
|
3031 |
msgid "Toolbar"
|
3032 |
msgstr "Werkzeugleiste"
|
3033 |
|
3034 |
# @ acf
|
3035 |
+
#: includes/fields/class-acf-field-wysiwyg.php:469
|
3036 |
msgid "Show Media Upload Buttons?"
|
3037 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3038 |
|
3039 |
+
#: includes/fields/class-acf-field-wysiwyg.php:479
|
3040 |
msgid "Delay initialization?"
|
3041 |
msgstr "Initialisierung verzögern?"
|
3042 |
|
3043 |
+
#: includes/fields/class-acf-field-wysiwyg.php:480
|
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:304
|
3050 |
msgid "Edit field group"
|
3051 |
msgstr "Feld-Gruppen bearbeiten"
|
3052 |
|
3055 |
msgstr "E-Mail bestätigen"
|
3056 |
|
3057 |
# @ acf
|
3058 |
+
#: includes/forms/form-front.php:103
|
3059 |
+
#: pro/fields/class-acf-field-gallery.php:588 pro/options-page.php:81
|
3060 |
msgid "Update"
|
3061 |
msgstr "Aktualisieren"
|
3062 |
|
3070 |
msgstr "Spam erkannt"
|
3071 |
|
3072 |
# @ acf
|
3073 |
+
#: includes/input.php:258
|
3074 |
msgid "Expand Details"
|
3075 |
msgstr "Details einblenden"
|
3076 |
|
3077 |
# @ acf
|
3078 |
+
#: includes/input.php:259
|
3079 |
msgid "Collapse Details"
|
3080 |
msgstr "Details ausblenden"
|
3081 |
|
3082 |
# @ acf
|
3083 |
+
#: includes/input.php:260
|
3084 |
msgid "Validation successful"
|
3085 |
msgstr "Überprüfung erfolgreich"
|
3086 |
|
3087 |
# @ acf
|
3088 |
+
#: includes/input.php:261 includes/validation.php:285
|
3089 |
#: includes/validation.php:296
|
3090 |
msgid "Validation failed"
|
3091 |
msgstr "Überprüfung fehlgeschlagen"
|
3092 |
|
3093 |
# @ acf
|
3094 |
+
#: includes/input.php:262
|
3095 |
msgid "1 field requires attention"
|
3096 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3097 |
|
3098 |
# @ acf
|
3099 |
+
#: includes/input.php:263
|
3100 |
#, php-format
|
3101 |
msgid "%d fields require attention"
|
3102 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3103 |
|
3104 |
+
#: includes/input.php:264
|
3105 |
msgid "Restricted"
|
3106 |
msgstr "Eingeschränkt"
|
3107 |
|
3108 |
+
#: includes/input.php:268
|
|
|
|
|
|
|
|
|
|
|
3109 |
msgid "Cancel"
|
3110 |
+
msgstr ""
|
3111 |
|
3112 |
# @ acf
|
3113 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
3129 |
msgid "Attachment"
|
3130 |
msgstr "Dateianhang"
|
3131 |
|
3132 |
+
#: includes/locations/class-acf-location-attachment.php:113
|
3133 |
#, php-format
|
3134 |
msgid "All %s formats"
|
3135 |
+
msgstr ""
|
3136 |
|
3137 |
# @ acf
|
3138 |
#: includes/locations/class-acf-location-comment.php:27
|
3145 |
msgstr "Aktuelle Benutzer-Rolle"
|
3146 |
|
3147 |
# @ acf
|
3148 |
+
#: includes/locations/class-acf-location-current-user-role.php:114
|
3149 |
msgid "Super Admin"
|
3150 |
msgstr "Super-Admin"
|
3151 |
|
3155 |
msgstr "Aktueller Benutzer"
|
3156 |
|
3157 |
# @ acf
|
3158 |
+
#: includes/locations/class-acf-location-current-user.php:101
|
3159 |
msgid "Logged in"
|
3160 |
+
msgstr "ist angemeldet"
|
3161 |
|
3162 |
# @ acf
|
3163 |
+
#: includes/locations/class-acf-location-current-user.php:102
|
3164 |
msgid "Viewing front end"
|
3165 |
+
msgstr "ist im Front-End"
|
3166 |
|
3167 |
# @ acf
|
3168 |
+
#: includes/locations/class-acf-location-current-user.php:103
|
3169 |
msgid "Viewing back end"
|
3170 |
+
msgstr "ist im Back-End"
|
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:113
|
3182 |
+
#, fuzzy
|
3183 |
msgid "Menu Locations"
|
3184 |
+
msgstr "Position"
|
3185 |
|
3186 |
+
#: includes/locations/class-acf-location-nav-menu.php:123
|
3187 |
msgid "Menus"
|
3188 |
+
msgstr ""
|
3189 |
|
3190 |
# @ acf
|
3191 |
#: includes/locations/class-acf-location-page-parent.php:27
|
3198 |
msgstr "Seiten-Template"
|
3199 |
|
3200 |
# @ acf
|
3201 |
+
#: includes/locations/class-acf-location-page-template.php:102
|
3202 |
+
#: includes/locations/class-acf-location-post-template.php:156
|
3203 |
msgid "Default Template"
|
3204 |
msgstr "Standard-Template"
|
3205 |
|
3209 |
msgstr "Seitentyp"
|
3210 |
|
3211 |
# @ acf
|
3212 |
+
#: includes/locations/class-acf-location-page-type.php:149
|
3213 |
msgid "Front Page"
|
3214 |
msgstr "Startseite"
|
3215 |
|
3216 |
# @ acf
|
3217 |
+
#: includes/locations/class-acf-location-page-type.php:150
|
3218 |
msgid "Posts Page"
|
3219 |
msgstr "Beitrags-Seite"
|
3220 |
|
3221 |
# @ acf
|
3222 |
+
#: includes/locations/class-acf-location-page-type.php:151
|
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:152
|
3228 |
msgid "Parent Page (has children)"
|
3229 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3230 |
|
3231 |
# @ acf
|
3232 |
+
#: includes/locations/class-acf-location-page-type.php:153
|
3233 |
msgid "Child Page (has parent)"
|
3234 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3235 |
|
3254 |
msgstr "Beitrags-Taxonomie"
|
3255 |
|
3256 |
# @ acf
|
3257 |
+
#: includes/locations/class-acf-location-post-template.php:29
|
3258 |
+
#, fuzzy
|
3259 |
msgid "Post Template"
|
3260 |
+
msgstr "Seiten-Template"
|
3261 |
|
3262 |
# @ acf
|
3263 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
3270 |
msgstr "Benutzer-Formular"
|
3271 |
|
3272 |
# @ acf
|
3273 |
+
#: includes/locations/class-acf-location-user-form.php:92
|
3274 |
msgid "Add / Edit"
|
3275 |
msgstr "Hinzufügen / Bearbeiten"
|
3276 |
|
3277 |
# @ acf
|
3278 |
+
#: includes/locations/class-acf-location-user-form.php:93
|
3279 |
msgid "Register"
|
3280 |
msgstr "Registrieren"
|
3281 |
|
3312 |
msgstr "Advanced Custom Fields PRO"
|
3313 |
|
3314 |
# @ acf
|
3315 |
+
#: pro/admin/admin-options-page.php:196
|
3316 |
msgid "Publish"
|
3317 |
msgstr "Veröffentlichen"
|
3318 |
|
3319 |
# @ acf
|
3320 |
+
#: pro/admin/admin-options-page.php:202
|
3321 |
#, php-format
|
3322 |
msgid ""
|
3323 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
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:17
|
3338 |
msgid "Updates"
|
3339 |
msgstr "Aktualisierungen"
|
3340 |
|
3341 |
# @ acf
|
3342 |
+
#: pro/admin/views/html-settings-updates.php:11
|
3343 |
msgid "Deactivate License"
|
3344 |
msgstr "Lizenz deaktivieren"
|
3345 |
|
3346 |
# @ acf
|
3347 |
+
#: pro/admin/views/html-settings-updates.php:11
|
3348 |
msgid "Activate License"
|
3349 |
msgstr "Lizenz aktivieren"
|
3350 |
|
3351 |
+
#: pro/admin/views/html-settings-updates.php:21
|
3352 |
msgid "License Information"
|
3353 |
msgstr "Lizenzinformationen"
|
3354 |
|
3355 |
+
#: pro/admin/views/html-settings-updates.php:24
|
3356 |
#, php-format
|
3357 |
msgid ""
|
3358 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3364 |
"target=\"_blank\">Details & Preise</a>."
|
3365 |
|
3366 |
# @ acf
|
3367 |
+
#: pro/admin/views/html-settings-updates.php:33
|
3368 |
msgid "License Key"
|
3369 |
msgstr "Lizenzschlüssel"
|
3370 |
|
3371 |
# @ acf
|
3372 |
+
#: pro/admin/views/html-settings-updates.php:65
|
3373 |
msgid "Update Information"
|
3374 |
msgstr "Aktualisierungsinformationen"
|
3375 |
|
3376 |
# @ acf
|
3377 |
+
#: pro/admin/views/html-settings-updates.php:72
|
3378 |
msgid "Current Version"
|
3379 |
msgstr "Installierte Version"
|
3380 |
|
3381 |
# @ acf
|
3382 |
+
#: pro/admin/views/html-settings-updates.php:80
|
3383 |
msgid "Latest Version"
|
3384 |
msgstr "Aktuellste Version"
|
3385 |
|
3386 |
# @ acf
|
3387 |
+
#: pro/admin/views/html-settings-updates.php:88
|
3388 |
msgid "Update Available"
|
3389 |
msgstr "Aktualisierung verfügbar"
|
3390 |
|
3391 |
# @ acf
|
3392 |
+
#: pro/admin/views/html-settings-updates.php:96
|
3393 |
msgid "Update Plugin"
|
3394 |
msgstr "Plugin aktualisieren"
|
3395 |
|
3396 |
# @ acf
|
3397 |
+
#: pro/admin/views/html-settings-updates.php:98
|
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:104
|
3405 |
msgid "Check Again"
|
3406 |
msgstr "Erneut suchen"
|
3407 |
|
3408 |
# @ acf
|
3409 |
+
#: pro/admin/views/html-settings-updates.php:121
|
3410 |
msgid "Upgrade Notice"
|
3411 |
msgstr "Aktualisierungs-Hinweis"
|
3412 |
|
3413 |
+
#: pro/fields/class-acf-field-clone.php:36
|
3414 |
msgctxt "noun"
|
3415 |
msgid "Clone"
|
3416 |
msgstr "Klonen"
|
3417 |
|
3418 |
+
#: pro/fields/class-acf-field-clone.php:858
|
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:875
|
3424 |
msgid "Display"
|
3425 |
msgstr "Anzeige"
|
3426 |
|
3427 |
+
#: pro/fields/class-acf-field-clone.php:876
|
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:881
|
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:882
|
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:903
|
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:906
|
3447 |
msgid "Prefix Field Labels"
|
3448 |
msgstr "Präfix für Feld Bezeichnungen"
|
3449 |
|
3450 |
+
#: pro/fields/class-acf-field-clone.php:917
|
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:920
|
3456 |
msgid "Prefix Field Names"
|
3457 |
msgstr "Präfix für Feld Namen"
|
3458 |
|
3459 |
+
#: pro/fields/class-acf-field-clone.php:1038
|
3460 |
msgid "Unknown field"
|
3461 |
msgstr "Unbekanntes Feld"
|
3462 |
|
3463 |
+
#: pro/fields/class-acf-field-clone.php:1077
|
3464 |
msgid "Unknown field group"
|
3465 |
msgstr "Unbekannte Feld-Gruppe"
|
3466 |
|
3467 |
+
#: pro/fields/class-acf-field-clone.php:1081
|
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:42
|
3474 |
+
#: pro/fields/class-acf-field-repeater.php:230
|
3475 |
+
#: pro/fields/class-acf-field-repeater.php:534
|
3476 |
msgid "Add Row"
|
3477 |
msgstr "Eintrag hinzufügen"
|
3478 |
|
3479 |
# @ acf
|
3480 |
+
#: pro/fields/class-acf-field-flexible-content.php:45
|
3481 |
msgid "layout"
|
3482 |
msgstr "Eintrag"
|
3483 |
|
3484 |
# @ acf
|
3485 |
+
#: pro/fields/class-acf-field-flexible-content.php:46
|
3486 |
msgid "layouts"
|
3487 |
msgstr "Einträge"
|
3488 |
|
3489 |
# @ acf
|
3490 |
+
#: pro/fields/class-acf-field-flexible-content.php:47
|
3491 |
msgid "remove {layout}?"
|
3492 |
msgstr "{layout} löschen?"
|
3493 |
|
3494 |
# @ acf
|
3495 |
+
#: pro/fields/class-acf-field-flexible-content.php:48
|
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:49
|
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:50
|
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:51
|
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:52
|
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:53
|
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:54
|
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:288
|
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:423
|
3537 |
msgid "Add layout"
|
3538 |
msgstr "Layout hinzufügen"
|
3539 |
|
3540 |
# @ acf
|
3541 |
+
#: pro/fields/class-acf-field-flexible-content.php:424
|
3542 |
msgid "Remove layout"
|
3543 |
msgstr "Layout entfernen"
|
3544 |
|
3545 |
+
#: pro/fields/class-acf-field-flexible-content.php:425
|
3546 |
+
#: pro/fields/class-acf-field-repeater.php:360
|
3547 |
msgid "Click to toggle"
|
3548 |
msgstr "Zum Auswählen anklicken"
|
3549 |
|
3550 |
# @ acf
|
3551 |
+
#: pro/fields/class-acf-field-flexible-content.php:571
|
3552 |
msgid "Reorder Layout"
|
3553 |
msgstr "Layout sortieren"
|
3554 |
|
3555 |
# @ acf
|
3556 |
+
#: pro/fields/class-acf-field-flexible-content.php:571
|
3557 |
msgid "Reorder"
|
3558 |
msgstr "Sortieren"
|
3559 |
|
3560 |
# @ acf
|
3561 |
+
#: pro/fields/class-acf-field-flexible-content.php:572
|
3562 |
msgid "Delete Layout"
|
3563 |
msgstr "Layout löschen"
|
3564 |
|
3565 |
# @ acf
|
3566 |
+
#: pro/fields/class-acf-field-flexible-content.php:573
|
3567 |
msgid "Duplicate Layout"
|
3568 |
msgstr "Layout duplizieren"
|
3569 |
|
3570 |
# @ acf
|
3571 |
+
#: pro/fields/class-acf-field-flexible-content.php:574
|
3572 |
msgid "Add New Layout"
|
3573 |
msgstr "Neues Layout hinzufügen"
|
3574 |
|
3575 |
# @ acf
|
3576 |
+
#: pro/fields/class-acf-field-flexible-content.php:645
|
3577 |
msgid "Min"
|
3578 |
msgstr "Min"
|
3579 |
|
3580 |
# @ acf
|
3581 |
+
#: pro/fields/class-acf-field-flexible-content.php:658
|
3582 |
msgid "Max"
|
3583 |
msgstr "Max"
|
3584 |
|
3585 |
# @ acf
|
3586 |
+
#: pro/fields/class-acf-field-flexible-content.php:685
|
3587 |
+
#: pro/fields/class-acf-field-repeater.php:530
|
3588 |
msgid "Button Label"
|
3589 |
msgstr "Button-Beschriftung"
|
3590 |
|
3591 |
# @ acf
|
3592 |
+
#: pro/fields/class-acf-field-flexible-content.php:694
|
3593 |
msgid "Minimum Layouts"
|
3594 |
msgstr "Minimum Layouts"
|
3595 |
|
3596 |
# @ acf
|
3597 |
+
#: pro/fields/class-acf-field-flexible-content.php:703
|
3598 |
msgid "Maximum Layouts"
|
3599 |
msgstr "Maximum Layouts"
|
3600 |
|
3601 |
# @ acf
|
3602 |
+
#: pro/fields/class-acf-field-gallery.php:52
|
3603 |
msgid "Add Image to Gallery"
|
3604 |
msgstr "Bild zur Galerie hinzufügen"
|
3605 |
|
3606 |
# @ acf
|
3607 |
+
#: pro/fields/class-acf-field-gallery.php:56
|
3608 |
msgid "Maximum selection reached"
|
3609 |
msgstr "Maximale Auswahl erreicht"
|
3610 |
|
3611 |
# @ acf
|
3612 |
+
#: pro/fields/class-acf-field-gallery.php:336
|
3613 |
msgid "Length"
|
3614 |
msgstr "Länge"
|
3615 |
|
3616 |
+
#: pro/fields/class-acf-field-gallery.php:379
|
3617 |
msgid "Caption"
|
3618 |
msgstr "Beschriftung"
|
3619 |
|
3620 |
+
#: pro/fields/class-acf-field-gallery.php:388
|
3621 |
msgid "Alt Text"
|
3622 |
msgstr "Alt Text"
|
3623 |
|
3624 |
# @ acf
|
3625 |
+
#: pro/fields/class-acf-field-gallery.php:559
|
3626 |
msgid "Add to gallery"
|
3627 |
msgstr "Zur Galerie hinzufügen"
|
3628 |
|
3629 |
# @ acf
|
3630 |
+
#: pro/fields/class-acf-field-gallery.php:563
|
3631 |
msgid "Bulk actions"
|
3632 |
msgstr "Massenverarbeitung"
|
3633 |
|
3634 |
# @ acf
|
3635 |
+
#: pro/fields/class-acf-field-gallery.php:564
|
3636 |
msgid "Sort by date uploaded"
|
3637 |
msgstr "Sortiere nach Upload-Datum"
|
3638 |
|
3639 |
# @ acf
|
3640 |
+
#: pro/fields/class-acf-field-gallery.php:565
|
3641 |
msgid "Sort by date modified"
|
3642 |
msgstr "Sortiere nach Änderungs-Datum"
|
3643 |
|
3644 |
# @ acf
|
3645 |
+
#: pro/fields/class-acf-field-gallery.php:566
|
3646 |
msgid "Sort by title"
|
3647 |
msgstr "Sortiere nach Titel"
|
3648 |
|
3649 |
# @ acf
|
3650 |
+
#: pro/fields/class-acf-field-gallery.php:567
|
3651 |
msgid "Reverse current order"
|
3652 |
msgstr "Aktuelle Sortierung umkehren"
|
3653 |
|
3654 |
# @ acf
|
3655 |
+
#: pro/fields/class-acf-field-gallery.php:585
|
3656 |
msgid "Close"
|
3657 |
msgstr "Schliessen"
|
3658 |
|
3659 |
# @ acf
|
3660 |
+
#: pro/fields/class-acf-field-gallery.php:639
|
3661 |
msgid "Minimum Selection"
|
3662 |
msgstr "Minimale Auswahl"
|
3663 |
|
3664 |
# @ acf
|
3665 |
+
#: pro/fields/class-acf-field-gallery.php:648
|
3666 |
msgid "Maximum Selection"
|
3667 |
msgstr "Maximale Auswahl"
|
3668 |
|
3669 |
+
#: pro/fields/class-acf-field-gallery.php:657
|
3670 |
msgid "Insert"
|
3671 |
msgstr "Einfügen"
|
3672 |
|
3673 |
+
#: pro/fields/class-acf-field-gallery.php:658
|
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:662
|
3678 |
msgid "Append to the end"
|
3679 |
msgstr "Am Schluss anhängen"
|
3680 |
|
3681 |
+
#: pro/fields/class-acf-field-gallery.php:663
|
3682 |
msgid "Prepend to the beginning"
|
3683 |
msgstr "Vor Beginn einfügen"
|
3684 |
|
3685 |
# @ acf
|
3686 |
+
#: pro/fields/class-acf-field-repeater.php:47
|
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:48
|
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:405
|
3697 |
msgid "Add row"
|
3698 |
msgstr "Eintrag hinzufügen"
|
3699 |
|
3700 |
# @ acf
|
3701 |
+
#: pro/fields/class-acf-field-repeater.php:406
|
3702 |
msgid "Remove row"
|
3703 |
msgstr "Eintrag löschen"
|
3704 |
|
3705 |
+
#: pro/fields/class-acf-field-repeater.php:483
|
3706 |
msgid "Collapsed"
|
3707 |
msgstr "Zugeklappt"
|
3708 |
|
3709 |
+
#: pro/fields/class-acf-field-repeater.php:484
|
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:494
|
3717 |
msgid "Minimum Rows"
|
3718 |
msgstr "Minimum der Einträge"
|
3719 |
|
3720 |
# @ acf
|
3721 |
+
#: pro/fields/class-acf-field-repeater.php:504
|
3722 |
msgid "Maximum Rows"
|
3723 |
msgstr "Maximum der Einträge"
|
3724 |
|
3725 |
# @ acf
|
3726 |
+
#: pro/locations/class-acf-location-options-page.php:70
|
3727 |
msgid "No options pages exist"
|
3728 |
msgstr "Keine Options-Seiten vorhanden"
|
3729 |
|
readme.txt
CHANGED
@@ -66,9 +66,6 @@ From your WordPress dashboard
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
-
= 5.6.7 =
|
70 |
-
* Fixed an assortment of bugs found in 5.6.6
|
71 |
-
|
72 |
= 5.6.6 =
|
73 |
* Accordion field: Added new field type
|
74 |
* Tab field: Added logic to remember active tabs
|
@@ -82,7 +79,6 @@ From your WordPress dashboard
|
|
82 |
* Language: Updated Dutch translation - thanks to Derk Oosterveld
|
83 |
* Language: Updated Portuguese translation - thanks to Pedro Mendonça
|
84 |
* Language: Updated Persian translation - thanks to Kamel Kimiaei
|
85 |
-
* Language: Updated Swiss German translation - thanks to Raphael Hüni
|
86 |
|
87 |
= 5.6.5 =
|
88 |
* API: Added new 'kses' setting to the `acf_form()` function
|
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 |
* 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
|