Version Description
- Button Group field: Added new field type
- Range field: Added missing 'step' attribute to number input
- Range field: Added width to number input based on max setting
- Basic fields: Added missing 'required' attribute to inputs
- Basic fields: Removed empty attributes from inputs
- API: Fixed
get_fields()
bug ignoring fields starting with an underscore - Core: Minor fixes and improvements
- Language: Updated Portuguese translation - thanks to Pedro Mendona
- Language: Updated French translation - thanks to Maxime Bernard-Jacquet
- Language: Updated Finnish translation - thanks to Sauli Rajala
- Language: Updated German translation - thanks to Ralf Koller
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 5.6.3 |
Comparing to | |
See all releases |
Code changes from version 5.6.2 to 5.6.3
- acf.php +17 -11
- assets/_build/_compiler/acf-input.js +1 -0
- assets/_build/_compiler/acf-input.min.js +1 -0
- assets/_build/css/input.less +138 -11
- assets/_build/js/acf-button-group.js +58 -0
- assets/_build/js/acf-conditional-logic.js +1 -1
- assets/_build/js/acf-taxonomy.js +5 -1
- assets/_build/js/acf-validation.js +1 -1
- assets/_build/js/acf.js +34 -1
- assets/_build/js/field-group.js +57 -29
- assets/css/acf-input.css +106 -11
- assets/js/acf-field-group.js +57 -29
- assets/js/acf-field-group.min.js +1 -1
- assets/js/acf-input.js +101 -4
- assets/js/acf-input.min.js +3 -3
- includes/admin/admin-field-groups.php +1 -1
- includes/admin/views/field-group-field.php +0 -3
- includes/api/api-field.php +87 -44
- includes/api/api-helpers.php +1 -1
- includes/api/api-input.php +71 -1
- includes/api/api-template.php +1 -5
- includes/fields/class-acf-field-button-group.php +292 -0
- includes/fields/class-acf-field-color_picker.php +2 -2
- includes/fields/class-acf-field-email.php +7 -3
- includes/fields/class-acf-field-group.php +5 -8
- includes/fields/class-acf-field-message.php +1 -1
- includes/fields/class-acf-field-number.php +7 -3
- includes/fields/class-acf-field-range.php +11 -4
- includes/fields/class-acf-field-taxonomy.php +7 -2
- includes/fields/class-acf-field-text.php +7 -3
- includes/fields/class-acf-field-textarea.php +8 -4
- includes/fields/class-acf-field-true_false.php +2 -2
- includes/fields/class-acf-field-url.php +7 -3
- includes/fields/class-acf-field-wysiwyg.php +15 -26
- includes/updates.php +15 -13
- lang/acf-de_DE.mo +0 -0
- lang/acf-de_DE.po +723 -713
- lang/acf-de_DE_formal.mo +0 -0
- lang/acf-de_DE_formal.po +717 -707
- lang/acf-fi.mo +0 -0
- lang/acf-fi.po +767 -745
- lang/acf-fr_FR.mo +0 -0
- lang/acf-fr_FR.po +242 -233
- lang/acf-pt_PT.mo +0 -0
- lang/acf-pt_PT.po +396 -353
- lang/acf.pot +379 -339
- readme.txt +53 -80
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
|
@@ -17,8 +17,12 @@ if( ! class_exists('acf') ) :
|
|
17 |
|
18 |
class acf {
|
19 |
|
20 |
-
|
21 |
-
var $version = '5.6.
|
|
|
|
|
|
|
|
|
22 |
|
23 |
|
24 |
/*
|
@@ -173,10 +177,6 @@ class acf {
|
|
173 |
acf_include('pro/acf-pro.php');
|
174 |
|
175 |
|
176 |
-
// beta
|
177 |
-
acf_include('beta.php');
|
178 |
-
|
179 |
-
|
180 |
// actions
|
181 |
add_action('init', array($this, 'init'), 5);
|
182 |
add_action('init', array($this, 'register_post_types'), 5);
|
@@ -244,29 +244,35 @@ class acf {
|
|
244 |
acf_include('includes/fields/class-acf-field-text.php');
|
245 |
acf_include('includes/fields/class-acf-field-textarea.php');
|
246 |
acf_include('includes/fields/class-acf-field-number.php');
|
|
|
247 |
acf_include('includes/fields/class-acf-field-email.php');
|
248 |
acf_include('includes/fields/class-acf-field-url.php');
|
249 |
acf_include('includes/fields/class-acf-field-password.php');
|
250 |
-
|
251 |
-
acf_include('includes/fields/class-acf-field-oembed.php');
|
252 |
acf_include('includes/fields/class-acf-field-image.php');
|
253 |
-
acf_include('includes/fields/class-acf-field-link.php');
|
254 |
acf_include('includes/fields/class-acf-field-file.php');
|
|
|
|
|
|
|
255 |
acf_include('includes/fields/class-acf-field-select.php');
|
256 |
acf_include('includes/fields/class-acf-field-checkbox.php');
|
257 |
acf_include('includes/fields/class-acf-field-radio.php');
|
258 |
-
acf_include('includes/fields/class-acf-field-
|
259 |
acf_include('includes/fields/class-acf-field-true_false.php');
|
|
|
|
|
260 |
acf_include('includes/fields/class-acf-field-post_object.php');
|
261 |
acf_include('includes/fields/class-acf-field-page_link.php');
|
262 |
acf_include('includes/fields/class-acf-field-relationship.php');
|
263 |
acf_include('includes/fields/class-acf-field-taxonomy.php');
|
264 |
acf_include('includes/fields/class-acf-field-user.php');
|
|
|
265 |
acf_include('includes/fields/class-acf-field-google-map.php');
|
266 |
acf_include('includes/fields/class-acf-field-date_picker.php');
|
267 |
acf_include('includes/fields/class-acf-field-date_time_picker.php');
|
268 |
acf_include('includes/fields/class-acf-field-time_picker.php');
|
269 |
acf_include('includes/fields/class-acf-field-color_picker.php');
|
|
|
270 |
acf_include('includes/fields/class-acf-field-message.php');
|
271 |
//acf_include('includes/fields/class-acf-field-separator.php');
|
272 |
acf_include('includes/fields/class-acf-field-tab.php');
|
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.3
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
Copyright: Elliot Condon
|
17 |
|
18 |
class acf {
|
19 |
|
20 |
+
/** @var string The plugin version number */
|
21 |
+
var $version = '5.6.3';
|
22 |
+
|
23 |
+
|
24 |
+
/** @var array The plugin settings array */
|
25 |
+
var $settings = array();
|
26 |
|
27 |
|
28 |
/*
|
177 |
acf_include('pro/acf-pro.php');
|
178 |
|
179 |
|
|
|
|
|
|
|
|
|
180 |
// actions
|
181 |
add_action('init', array($this, 'init'), 5);
|
182 |
add_action('init', array($this, 'register_post_types'), 5);
|
244 |
acf_include('includes/fields/class-acf-field-text.php');
|
245 |
acf_include('includes/fields/class-acf-field-textarea.php');
|
246 |
acf_include('includes/fields/class-acf-field-number.php');
|
247 |
+
acf_include('includes/fields/class-acf-field-range.php');
|
248 |
acf_include('includes/fields/class-acf-field-email.php');
|
249 |
acf_include('includes/fields/class-acf-field-url.php');
|
250 |
acf_include('includes/fields/class-acf-field-password.php');
|
251 |
+
|
|
|
252 |
acf_include('includes/fields/class-acf-field-image.php');
|
|
|
253 |
acf_include('includes/fields/class-acf-field-file.php');
|
254 |
+
acf_include('includes/fields/class-acf-field-wysiwyg.php');
|
255 |
+
acf_include('includes/fields/class-acf-field-oembed.php');
|
256 |
+
|
257 |
acf_include('includes/fields/class-acf-field-select.php');
|
258 |
acf_include('includes/fields/class-acf-field-checkbox.php');
|
259 |
acf_include('includes/fields/class-acf-field-radio.php');
|
260 |
+
acf_include('includes/fields/class-acf-field-button-group.php');
|
261 |
acf_include('includes/fields/class-acf-field-true_false.php');
|
262 |
+
|
263 |
+
acf_include('includes/fields/class-acf-field-link.php');
|
264 |
acf_include('includes/fields/class-acf-field-post_object.php');
|
265 |
acf_include('includes/fields/class-acf-field-page_link.php');
|
266 |
acf_include('includes/fields/class-acf-field-relationship.php');
|
267 |
acf_include('includes/fields/class-acf-field-taxonomy.php');
|
268 |
acf_include('includes/fields/class-acf-field-user.php');
|
269 |
+
|
270 |
acf_include('includes/fields/class-acf-field-google-map.php');
|
271 |
acf_include('includes/fields/class-acf-field-date_picker.php');
|
272 |
acf_include('includes/fields/class-acf-field-date_time_picker.php');
|
273 |
acf_include('includes/fields/class-acf-field-time_picker.php');
|
274 |
acf_include('includes/fields/class-acf-field-color_picker.php');
|
275 |
+
|
276 |
acf_include('includes/fields/class-acf-field-message.php');
|
277 |
//acf_include('includes/fields/class-acf-field-separator.php');
|
278 |
acf_include('includes/fields/class-acf-field-tab.php');
|
assets/_build/_compiler/acf-input.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
// @codekit-prepend "../js/event-manager.js";
|
2 |
// @codekit-prepend "../js/acf.js";
|
3 |
// @codekit-prepend "../js/acf-ajax.js";
|
|
|
4 |
// @codekit-prepend "../js/acf-checkbox.js";
|
5 |
// @codekit-prepend "../js/acf-color-picker.js";
|
6 |
// @codekit-prepend "../js/acf-conditional-logic.js";
|
1 |
// @codekit-prepend "../js/event-manager.js";
|
2 |
// @codekit-prepend "../js/acf.js";
|
3 |
// @codekit-prepend "../js/acf-ajax.js";
|
4 |
+
// @codekit-prepend "../js/acf-button-group.js";
|
5 |
// @codekit-prepend "../js/acf-checkbox.js";
|
6 |
// @codekit-prepend "../js/acf-color-picker.js";
|
7 |
// @codekit-prepend "../js/acf-conditional-logic.js";
|
assets/_build/_compiler/acf-input.min.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
// @codekit-prepend "../js/event-manager.js";
|
2 |
// @codekit-prepend "../js/acf.js";
|
3 |
// @codekit-prepend "../js/acf-ajax.js";
|
|
|
4 |
// @codekit-prepend "../js/acf-checkbox.js";
|
5 |
// @codekit-prepend "../js/acf-color-picker.js";
|
6 |
// @codekit-prepend "../js/acf-conditional-logic.js";
|
1 |
// @codekit-prepend "../js/event-manager.js";
|
2 |
// @codekit-prepend "../js/acf.js";
|
3 |
// @codekit-prepend "../js/acf-ajax.js";
|
4 |
+
// @codekit-prepend "../js/acf-button-group.js";
|
5 |
// @codekit-prepend "../js/acf-checkbox.js";
|
6 |
// @codekit-prepend "../js/acf-color-picker.js";
|
7 |
// @codekit-prepend "../js/acf-conditional-logic.js";
|
assets/_build/css/input.less
CHANGED
@@ -579,6 +579,23 @@ html[dir="rtl"] input.acf-is-prepended.acf-is-appended {
|
|
579 |
border-radius: 0 !important;
|
580 |
}
|
581 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
582 |
/*---------------------------------------------------------------------------------------------
|
583 |
*
|
584 |
* Url
|
@@ -933,6 +950,10 @@ ul.acf-checkbox-list {
|
|
933 |
span {
|
934 |
float: none;
|
935 |
}
|
|
|
|
|
|
|
|
|
936 |
}
|
937 |
|
938 |
|
@@ -956,6 +977,91 @@ ul.acf-checkbox-list {
|
|
956 |
}
|
957 |
}
|
958 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
959 |
}
|
960 |
|
961 |
|
@@ -987,10 +1093,11 @@ ul.acf-checkbox-list {
|
|
987 |
border-radius: 5px;
|
988 |
cursor: pointer;
|
989 |
position: relative;
|
990 |
-
background: #
|
991 |
height: 30px;
|
992 |
vertical-align: middle;
|
993 |
-
box-shadow: inset 0 0 1px rgba(0,0,0,0.
|
|
|
994 |
|
995 |
-webkit-transition: background 0.25s ease;
|
996 |
-moz-transition: background 0.25s ease;
|
@@ -1024,9 +1131,9 @@ ul.acf-checkbox-list {
|
|
1024 |
|
1025 |
.acf-switch-slider {
|
1026 |
position: absolute;
|
1027 |
-
top:
|
1028 |
-
left:
|
1029 |
-
bottom:
|
1030 |
right: 50%;
|
1031 |
z-index: 1;
|
1032 |
background: #fff;
|
@@ -1037,24 +1144,33 @@ ul.acf-checkbox-list {
|
|
1037 |
-moz-transition: all 0.25s ease;
|
1038 |
-o-transition: all 0.25s ease;
|
1039 |
transition: all 0.25s ease;
|
|
|
|
|
1040 |
}
|
1041 |
|
1042 |
|
1043 |
/* hover */
|
1044 |
&:hover {
|
1045 |
-
|
|
|
|
|
1046 |
}
|
1047 |
|
1048 |
|
1049 |
/* active */
|
1050 |
&.-on {
|
1051 |
-
background:
|
|
|
1052 |
|
1053 |
.acf-switch-slider {
|
1054 |
left: 50%;
|
1055 |
-
right:
|
1056 |
-
|
1057 |
-
|
|
|
|
|
|
|
|
|
1058 |
}
|
1059 |
}
|
1060 |
|
@@ -1095,6 +1211,17 @@ ul.acf-checkbox-list {
|
|
1095 |
}
|
1096 |
|
1097 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1098 |
|
1099 |
/*--------------------------------------------------------------------------
|
1100 |
*
|
@@ -2344,7 +2471,7 @@ html[dir="rtl"] .pac-container .pac-item {
|
|
2344 |
|
2345 |
input[type="number"] {
|
2346 |
display: inline-block;
|
2347 |
-
width:
|
2348 |
margin-left: 10px;
|
2349 |
vertical-align: middle;
|
2350 |
}
|
579 |
border-radius: 0 !important;
|
580 |
}
|
581 |
|
582 |
+
|
583 |
+
/*---------------------------------------------------------------------------------------------
|
584 |
+
*
|
585 |
+
* Color Picker
|
586 |
+
*
|
587 |
+
*---------------------------------------------------------------------------------------------*/
|
588 |
+
|
589 |
+
.acf-color-picker {
|
590 |
+
|
591 |
+
.wp-picker-active {
|
592 |
+
position: relative;
|
593 |
+
z-index: 1;
|
594 |
+
}
|
595 |
+
|
596 |
+
}
|
597 |
+
|
598 |
+
|
599 |
/*---------------------------------------------------------------------------------------------
|
600 |
*
|
601 |
* Url
|
950 |
span {
|
951 |
float: none;
|
952 |
}
|
953 |
+
|
954 |
+
i {
|
955 |
+
vertical-align: middle;
|
956 |
+
}
|
957 |
}
|
958 |
|
959 |
|
977 |
}
|
978 |
}
|
979 |
|
980 |
+
|
981 |
+
|
982 |
+
|
983 |
+
}
|
984 |
+
|
985 |
+
|
986 |
+
/*---------------------------------------------------------------------------------------------
|
987 |
+
*
|
988 |
+
* Button Group
|
989 |
+
*
|
990 |
+
*---------------------------------------------------------------------------------------------*/
|
991 |
+
|
992 |
+
.acf-button-group {
|
993 |
+
display: inline-block;
|
994 |
+
|
995 |
+
label {
|
996 |
+
display: inline-block;
|
997 |
+
border: #ccc solid 1px;
|
998 |
+
position: relative;
|
999 |
+
z-index: 1;
|
1000 |
+
padding: 5px 10px;
|
1001 |
+
background: #fff;
|
1002 |
+
|
1003 |
+
&:hover {
|
1004 |
+
border-color: darken(#ccc, 20%);
|
1005 |
+
z-index: 2;
|
1006 |
+
}
|
1007 |
+
|
1008 |
+
&.selected {
|
1009 |
+
border-color: darken(#309cf3, 1%);
|
1010 |
+
background: #309cf3;
|
1011 |
+
color: #fff;
|
1012 |
+
z-index: 2;
|
1013 |
+
|
1014 |
+
&:hover {
|
1015 |
+
background: lighten(#309cf3, 5%);
|
1016 |
+
}
|
1017 |
+
}
|
1018 |
+
}
|
1019 |
+
|
1020 |
+
input {
|
1021 |
+
display: none;
|
1022 |
+
}
|
1023 |
+
|
1024 |
+
|
1025 |
+
/* default (horizontal) */
|
1026 |
+
& {
|
1027 |
+
padding-left: 1px;
|
1028 |
+
display: inline-flex;
|
1029 |
+
flex-direction: row;
|
1030 |
+
flex-wrap: nowrap;
|
1031 |
+
|
1032 |
+
label {
|
1033 |
+
margin: 0 0 0 -1px;
|
1034 |
+
flex: 1;
|
1035 |
+
text-align: center;
|
1036 |
+
white-space: nowrap;
|
1037 |
+
|
1038 |
+
// corners
|
1039 |
+
&:first-child { border-radius: 3px 0 0 3px; }
|
1040 |
+
&:last-child { border-radius: 0 3px 3px 0; }
|
1041 |
+
&:only-child { border-radius: 3px; }
|
1042 |
+
|
1043 |
+
}
|
1044 |
+
}
|
1045 |
+
|
1046 |
+
|
1047 |
+
/* vertical */
|
1048 |
+
&.-vertical {
|
1049 |
+
padding-left: 0;
|
1050 |
+
padding-top: 1px;
|
1051 |
+
flex-direction: column;
|
1052 |
+
|
1053 |
+
label {
|
1054 |
+
margin: -1px 0 0 0;
|
1055 |
+
|
1056 |
+
// corners
|
1057 |
+
&:first-child { border-radius: 3px 3px 0 0; }
|
1058 |
+
&:last-child { border-radius: 0 0 3px 3px; }
|
1059 |
+
&:only-child { border-radius: 3px; }
|
1060 |
+
|
1061 |
+
}
|
1062 |
+
}
|
1063 |
+
|
1064 |
+
|
1065 |
}
|
1066 |
|
1067 |
|
1093 |
border-radius: 5px;
|
1094 |
cursor: pointer;
|
1095 |
position: relative;
|
1096 |
+
background: #f8f8f8;
|
1097 |
height: 30px;
|
1098 |
vertical-align: middle;
|
1099 |
+
//box-shadow: inset 0 0 1px rgba(0,0,0,0.2);
|
1100 |
+
border: #ccc solid 1px;
|
1101 |
|
1102 |
-webkit-transition: background 0.25s ease;
|
1103 |
-moz-transition: background 0.25s ease;
|
1131 |
|
1132 |
.acf-switch-slider {
|
1133 |
position: absolute;
|
1134 |
+
top: 2px;
|
1135 |
+
left: 2px;
|
1136 |
+
bottom: 2px;
|
1137 |
right: 50%;
|
1138 |
z-index: 1;
|
1139 |
background: #fff;
|
1144 |
-moz-transition: all 0.25s ease;
|
1145 |
-o-transition: all 0.25s ease;
|
1146 |
transition: all 0.25s ease;
|
1147 |
+
|
1148 |
+
transition-property: left, right;
|
1149 |
}
|
1150 |
|
1151 |
|
1152 |
/* hover */
|
1153 |
&:hover {
|
1154 |
+
.acf-switch-slider{
|
1155 |
+
border-color: darken(#ccc, 10%);
|
1156 |
+
}
|
1157 |
}
|
1158 |
|
1159 |
|
1160 |
/* active */
|
1161 |
&.-on {
|
1162 |
+
background: #309cf3;
|
1163 |
+
border-color: darken(#309cf3, 1%);
|
1164 |
|
1165 |
.acf-switch-slider {
|
1166 |
left: 50%;
|
1167 |
+
right: 2px;
|
1168 |
+
border-color: darken(#309cf3, 10%);
|
1169 |
+
}
|
1170 |
+
|
1171 |
+
/* hover */
|
1172 |
+
&:hover {
|
1173 |
+
background: lighten(#309cf3, 5%);
|
1174 |
}
|
1175 |
}
|
1176 |
|
1211 |
}
|
1212 |
|
1213 |
|
1214 |
+
/* in media modal */
|
1215 |
+
.compat-item .acf-true-false {
|
1216 |
+
|
1217 |
+
.message {
|
1218 |
+
float: none;
|
1219 |
+
padding: 0;
|
1220 |
+
vertical-align: middle;
|
1221 |
+
}
|
1222 |
+
|
1223 |
+
}
|
1224 |
+
|
1225 |
|
1226 |
/*--------------------------------------------------------------------------
|
1227 |
*
|
2471 |
|
2472 |
input[type="number"] {
|
2473 |
display: inline-block;
|
2474 |
+
min-width: 3em;
|
2475 |
margin-left: 10px;
|
2476 |
vertical-align: middle;
|
2477 |
}
|
assets/_build/js/acf-button-group.js
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
(function($){
|
2 |
+
|
3 |
+
acf.fields.button_group = acf.field.extend({
|
4 |
+
|
5 |
+
type: 'button_group',
|
6 |
+
$div: null,
|
7 |
+
|
8 |
+
events: {
|
9 |
+
'click input[type="radio"]': 'click'
|
10 |
+
},
|
11 |
+
|
12 |
+
focus: function(){
|
13 |
+
|
14 |
+
// focus on $select
|
15 |
+
this.$div = this.$field.find('.acf-button-group');
|
16 |
+
|
17 |
+
|
18 |
+
// get options
|
19 |
+
this.o = acf.get_data(this.$div, {
|
20 |
+
allow_null: 0
|
21 |
+
});
|
22 |
+
|
23 |
+
},
|
24 |
+
|
25 |
+
click: function( e ){
|
26 |
+
|
27 |
+
// vars
|
28 |
+
var $radio = e.$el;
|
29 |
+
var $label = $radio.parent('label');
|
30 |
+
var selected = $label.hasClass('selected');
|
31 |
+
|
32 |
+
|
33 |
+
// remove previous selected
|
34 |
+
this.$div.find('.selected').removeClass('selected');
|
35 |
+
|
36 |
+
|
37 |
+
// add active class
|
38 |
+
$label.addClass('selected');
|
39 |
+
|
40 |
+
|
41 |
+
// allow null
|
42 |
+
if( this.o.allow_null && selected ) {
|
43 |
+
|
44 |
+
// unselect
|
45 |
+
e.$el.prop('checked', false);
|
46 |
+
$label.removeClass('selected');
|
47 |
+
|
48 |
+
|
49 |
+
// trigger change
|
50 |
+
e.$el.trigger('change');
|
51 |
+
|
52 |
+
}
|
53 |
+
|
54 |
+
}
|
55 |
+
|
56 |
+
});
|
57 |
+
|
58 |
+
})(jQuery);
|
assets/_build/js/acf-conditional-logic.js
CHANGED
@@ -453,7 +453,7 @@
|
|
453 |
|
454 |
|
455 |
// input with :checked
|
456 |
-
if( type == 'true_false' || type == 'checkbox' || type == 'radio' ) {
|
457 |
|
458 |
match = this.calculate_checkbox( rule, $trigger );
|
459 |
|
453 |
|
454 |
|
455 |
// input with :checked
|
456 |
+
if( type == 'true_false' || type == 'checkbox' || type == 'radio' || type == 'button_group' ) {
|
457 |
|
458 |
match = this.calculate_checkbox( rule, $trigger );
|
459 |
|
assets/_build/js/acf-taxonomy.js
CHANGED
@@ -22,7 +22,11 @@
|
|
22 |
|
23 |
|
24 |
// get options
|
25 |
-
this.o = acf.get_data(
|
|
|
|
|
|
|
|
|
26 |
|
27 |
|
28 |
// extra
|
22 |
|
23 |
|
24 |
// get options
|
25 |
+
this.o = acf.get_data(this.$el, {
|
26 |
+
save: '',
|
27 |
+
type: '',
|
28 |
+
taxonomy: ''
|
29 |
+
});
|
30 |
|
31 |
|
32 |
// extra
|
assets/_build/js/acf-validation.js
CHANGED
@@ -52,7 +52,7 @@
|
|
52 |
ready: function( $el ){
|
53 |
|
54 |
// reference
|
55 |
-
$el.find('.acf-field input').
|
56 |
|
57 |
// prvent defual
|
58 |
// fixes chrome bug where 'hidden-by-tab' field throws focus error
|
52 |
ready: function( $el ){
|
53 |
|
54 |
// reference
|
55 |
+
$el.find('.acf-field input').on('invalid', function( e ){
|
56 |
|
57 |
// prvent defual
|
58 |
// fixes chrome bug where 'hidden-by-tab' field throws focus error
|
assets/_build/js/acf.js
CHANGED
@@ -2034,6 +2034,39 @@ var acf;
|
|
2034 |
},
|
2035 |
|
2036 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2037 |
/*
|
2038 |
* render_select
|
2039 |
*
|
@@ -2090,7 +2123,7 @@ var acf;
|
|
2090 |
|
2091 |
|
2092 |
// append select
|
2093 |
-
$optgroup.append( '<option value="' + item.value + '">' + item.label + '</option>' );
|
2094 |
|
2095 |
|
2096 |
// selectedIndex
|
2034 |
},
|
2035 |
|
2036 |
|
2037 |
+
/**
|
2038 |
+
* esc_html
|
2039 |
+
*
|
2040 |
+
* This function will escape HTML characters for safe use
|
2041 |
+
*
|
2042 |
+
* @source https://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
|
2043 |
+
* @date 20/9/17
|
2044 |
+
* @since 5.6.3
|
2045 |
+
*
|
2046 |
+
* @param n/a
|
2047 |
+
* @return n/a
|
2048 |
+
*/
|
2049 |
+
|
2050 |
+
esc_html: function( string ){
|
2051 |
+
|
2052 |
+
var entityMap = {
|
2053 |
+
'&': '&',
|
2054 |
+
'<': '<',
|
2055 |
+
'>': '>',
|
2056 |
+
'"': '"',
|
2057 |
+
"'": ''',
|
2058 |
+
'/': '/',
|
2059 |
+
'`': '`',
|
2060 |
+
'=': '='
|
2061 |
+
};
|
2062 |
+
|
2063 |
+
return String(string).replace(/[&<>"'`=\/]/g, function (s) {
|
2064 |
+
return entityMap[s];
|
2065 |
+
});
|
2066 |
+
|
2067 |
+
},
|
2068 |
+
|
2069 |
+
|
2070 |
/*
|
2071 |
* render_select
|
2072 |
*
|
2123 |
|
2124 |
|
2125 |
// append select
|
2126 |
+
$optgroup.append( '<option value="' + item.value + '">' + acf.esc_html(item.label) + '</option>' );
|
2127 |
|
2128 |
|
2129 |
// selectedIndex
|
assets/_build/js/field-group.js
CHANGED
@@ -1652,17 +1652,17 @@
|
|
1652 |
|
1653 |
|
1654 |
// vars
|
1655 |
-
var key
|
1656 |
-
|
1657 |
-
|
1658 |
|
1659 |
|
1660 |
// choices
|
1661 |
var choices = [];
|
1662 |
|
1663 |
|
1664 |
-
// loop over
|
1665 |
-
$.each( $
|
1666 |
|
1667 |
// vars
|
1668 |
var group = (i == 0) ? acf._e('sibling_fields') : acf._e('parent_fields');
|
@@ -1679,7 +1679,7 @@
|
|
1679 |
|
1680 |
|
1681 |
// validate
|
1682 |
-
if( $.inArray(this_type, ['select', 'checkbox', 'true_false', 'radio']) === -1 ) {
|
1683 |
|
1684 |
return;
|
1685 |
|
@@ -1766,7 +1766,7 @@
|
|
1766 |
});
|
1767 |
|
1768 |
// select
|
1769 |
-
} else if( field_type == "select" || field_type == "checkbox" || field_type == "radio" ) {
|
1770 |
|
1771 |
// vars
|
1772 |
var lines = $field.find('.acf-field[data-name="choices"] textarea').val().split("\n");
|
@@ -2179,22 +2179,58 @@
|
|
2179 |
$field: null,
|
2180 |
$settings: null,
|
2181 |
|
2182 |
-
|
2183 |
|
2184 |
// vars
|
2185 |
-
var
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2187 |
|
2188 |
-
//
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2194 |
|
2195 |
|
2196 |
// add action
|
2197 |
-
acf.add_action(name, function( $field ){
|
2198 |
|
2199 |
// focus
|
2200 |
model.set('$field', $field);
|
@@ -2213,16 +2249,8 @@
|
|
2213 |
var model = this;
|
2214 |
|
2215 |
|
2216 |
-
// name
|
2217 |
-
// - open => open_field/type=x
|
2218 |
-
// - change_type => change_field_type/type=x
|
2219 |
-
var names = name.split('_');
|
2220 |
-
names.splice(1, 0, 'field');
|
2221 |
-
name = names.join('_') + '/type=' + model.type;
|
2222 |
-
|
2223 |
-
|
2224 |
// add action
|
2225 |
-
acf.add_filter(name, function( $field ){
|
2226 |
|
2227 |
// focus
|
2228 |
model.set('$field', $field);
|
@@ -2238,10 +2266,10 @@
|
|
2238 |
_add_event: function( name, callback ) {
|
2239 |
|
2240 |
// vars
|
2241 |
-
var model = this
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
|
2246 |
|
2247 |
// add event
|
1652 |
|
1653 |
|
1654 |
// vars
|
1655 |
+
var key = $field.attr('data-key');
|
1656 |
+
var $lists = $field.parents('.acf-field-list');
|
1657 |
+
var $tr = $field.find('.acf-field-setting-conditional_logic:last');
|
1658 |
|
1659 |
|
1660 |
// choices
|
1661 |
var choices = [];
|
1662 |
|
1663 |
|
1664 |
+
// loop over ancestor lists
|
1665 |
+
$.each( $lists, function( i ){
|
1666 |
|
1667 |
// vars
|
1668 |
var group = (i == 0) ? acf._e('sibling_fields') : acf._e('parent_fields');
|
1679 |
|
1680 |
|
1681 |
// validate
|
1682 |
+
if( $.inArray(this_type, ['select', 'checkbox', 'true_false', 'radio', 'button_group']) === -1 ) {
|
1683 |
|
1684 |
return;
|
1685 |
|
1766 |
});
|
1767 |
|
1768 |
// select
|
1769 |
+
} else if( field_type == "select" || field_type == "checkbox" || field_type == "radio" || field_type == "button_group" ) {
|
1770 |
|
1771 |
// vars
|
1772 |
var lines = $field.find('.acf-field[data-name="choices"] textarea').val().split("\n");
|
2179 |
$field: null,
|
2180 |
$settings: null,
|
2181 |
|
2182 |
+
tag: function( tag ) {
|
2183 |
|
2184 |
// vars
|
2185 |
+
var type = this.type;
|
2186 |
+
|
2187 |
+
|
2188 |
+
// explode, add 'field' and implode
|
2189 |
+
// - open => open_field
|
2190 |
+
// - change_type => change_field_type
|
2191 |
+
var tags = tag.split('_');
|
2192 |
+
tags.splice(1, 0, 'field');
|
2193 |
+
tag = tags.join('_');
|
2194 |
+
|
2195 |
+
|
2196 |
+
// add type
|
2197 |
+
if( type ) {
|
2198 |
+
tag += '/type=' + type;
|
2199 |
+
}
|
2200 |
+
|
2201 |
|
2202 |
+
// return
|
2203 |
+
return tag;
|
2204 |
+
|
2205 |
+
},
|
2206 |
+
|
2207 |
+
selector: function(){
|
2208 |
|
2209 |
+
// vars
|
2210 |
+
var selector = '.acf-field-object';
|
2211 |
+
var type = this.type;
|
2212 |
+
|
2213 |
+
|
2214 |
+
// add type
|
2215 |
+
if( type ) {
|
2216 |
+
selector += '-' + type;
|
2217 |
+
selector = acf.str_replace('_', '-', selector);
|
2218 |
+
}
|
2219 |
+
|
2220 |
+
|
2221 |
+
// return
|
2222 |
+
return selector;
|
2223 |
+
|
2224 |
+
},
|
2225 |
+
|
2226 |
+
_add_action: function( name, callback ) {
|
2227 |
+
|
2228 |
+
// vars
|
2229 |
+
var model = this;
|
2230 |
|
2231 |
|
2232 |
// add action
|
2233 |
+
acf.add_action( this.tag(name), function( $field ){
|
2234 |
|
2235 |
// focus
|
2236 |
model.set('$field', $field);
|
2249 |
var model = this;
|
2250 |
|
2251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2252 |
// add action
|
2253 |
+
acf.add_filter( this.tag(name), function( $field ){
|
2254 |
|
2255 |
// focus
|
2256 |
model.set('$field', $field);
|
2266 |
_add_event: function( name, callback ) {
|
2267 |
|
2268 |
// vars
|
2269 |
+
var model = this;
|
2270 |
+
var event = name.substr(0,name.indexOf(' '));
|
2271 |
+
var selector = name.substr(name.indexOf(' ')+1);
|
2272 |
+
var context = this.selector();
|
2273 |
|
2274 |
|
2275 |
// add event
|
assets/css/acf-input.css
CHANGED
@@ -466,6 +466,15 @@ html[dir="rtl"] input.acf-is-prepended.acf-is-appended {
|
|
466 |
}
|
467 |
/*---------------------------------------------------------------------------------------------
|
468 |
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
* Url
|
470 |
*
|
471 |
*---------------------------------------------------------------------------------------------*/
|
@@ -728,6 +737,10 @@ ul.acf-radio-list li span,
|
|
728 |
ul.acf-checkbox-list li span {
|
729 |
float: none;
|
730 |
}
|
|
|
|
|
|
|
|
|
731 |
ul.acf-radio-list.acf-hl li,
|
732 |
ul.acf-checkbox-list.acf-hl li {
|
733 |
margin-right: 20px;
|
@@ -742,6 +755,76 @@ html[dir="rtl"] ul.acf-checkbox-list input[type="radio"] {
|
|
742 |
}
|
743 |
/*---------------------------------------------------------------------------------------------
|
744 |
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
745 |
* Checkbox
|
746 |
*
|
747 |
*---------------------------------------------------------------------------------------------*/
|
@@ -758,10 +841,10 @@ html[dir="rtl"] ul.acf-checkbox-list input[type="radio"] {
|
|
758 |
border-radius: 5px;
|
759 |
cursor: pointer;
|
760 |
position: relative;
|
761 |
-
background: #
|
762 |
height: 30px;
|
763 |
vertical-align: middle;
|
764 |
-
|
765 |
-webkit-transition: background 0.25s ease;
|
766 |
-moz-transition: background 0.25s ease;
|
767 |
-o-transition: background 0.25s ease;
|
@@ -789,9 +872,9 @@ html[dir="rtl"] ul.acf-checkbox-list input[type="radio"] {
|
|
789 |
}
|
790 |
.acf-switch .acf-switch-slider {
|
791 |
position: absolute;
|
792 |
-
top:
|
793 |
-
left:
|
794 |
-
bottom:
|
795 |
right: 50%;
|
796 |
z-index: 1;
|
797 |
background: #fff;
|
@@ -801,17 +884,23 @@ html[dir="rtl"] ul.acf-checkbox-list input[type="radio"] {
|
|
801 |
-moz-transition: all 0.25s ease;
|
802 |
-o-transition: all 0.25s ease;
|
803 |
transition: all 0.25s ease;
|
|
|
804 |
}
|
805 |
-
.acf-switch:hover {
|
806 |
-
|
807 |
}
|
808 |
.acf-switch.-on {
|
809 |
-
background: #
|
|
|
|
|
810 |
}
|
811 |
.acf-switch.-on .acf-switch-slider {
|
812 |
left: 50%;
|
813 |
-
right:
|
814 |
-
border-color: #
|
|
|
|
|
|
|
815 |
}
|
816 |
.acf-switch.-focus .acf-switch-slider {
|
817 |
border-color: #5b9dd9;
|
@@ -830,6 +919,12 @@ html[dir="rtl"] ul.acf-checkbox-list input[type="radio"] {
|
|
830 |
position: absolute;
|
831 |
margin: 0;
|
832 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
/*--------------------------------------------------------------------------
|
834 |
*
|
835 |
* Google Map
|
@@ -1789,7 +1884,7 @@ html[dir="rtl"] .acf-file-uploader .file-info {
|
|
1789 |
}
|
1790 |
.acf-range-wrap input[type="number"] {
|
1791 |
display: inline-block;
|
1792 |
-
width:
|
1793 |
margin-left: 10px;
|
1794 |
vertical-align: middle;
|
1795 |
}
|
466 |
}
|
467 |
/*---------------------------------------------------------------------------------------------
|
468 |
*
|
469 |
+
* Color Picker
|
470 |
+
*
|
471 |
+
*---------------------------------------------------------------------------------------------*/
|
472 |
+
.acf-color-picker .wp-picker-active {
|
473 |
+
position: relative;
|
474 |
+
z-index: 1;
|
475 |
+
}
|
476 |
+
/*---------------------------------------------------------------------------------------------
|
477 |
+
*
|
478 |
* Url
|
479 |
*
|
480 |
*---------------------------------------------------------------------------------------------*/
|
737 |
ul.acf-checkbox-list li span {
|
738 |
float: none;
|
739 |
}
|
740 |
+
ul.acf-radio-list li i,
|
741 |
+
ul.acf-checkbox-list li i {
|
742 |
+
vertical-align: middle;
|
743 |
+
}
|
744 |
ul.acf-radio-list.acf-hl li,
|
745 |
ul.acf-checkbox-list.acf-hl li {
|
746 |
margin-right: 20px;
|
755 |
}
|
756 |
/*---------------------------------------------------------------------------------------------
|
757 |
*
|
758 |
+
* Button Group
|
759 |
+
*
|
760 |
+
*---------------------------------------------------------------------------------------------*/
|
761 |
+
.acf-button-group {
|
762 |
+
display: inline-block;
|
763 |
+
/* default (horizontal) */
|
764 |
+
padding-left: 1px;
|
765 |
+
display: inline-flex;
|
766 |
+
flex-direction: row;
|
767 |
+
flex-wrap: nowrap;
|
768 |
+
/* vertical */
|
769 |
+
}
|
770 |
+
.acf-button-group label {
|
771 |
+
display: inline-block;
|
772 |
+
border: #ccc solid 1px;
|
773 |
+
position: relative;
|
774 |
+
z-index: 1;
|
775 |
+
padding: 5px 10px;
|
776 |
+
background: #fff;
|
777 |
+
}
|
778 |
+
.acf-button-group label:hover {
|
779 |
+
border-color: #999999;
|
780 |
+
z-index: 2;
|
781 |
+
}
|
782 |
+
.acf-button-group label.selected {
|
783 |
+
border-color: #2b9af3;
|
784 |
+
background: #309cf3;
|
785 |
+
color: #fff;
|
786 |
+
z-index: 2;
|
787 |
+
}
|
788 |
+
.acf-button-group label.selected:hover {
|
789 |
+
background: #48a8f4;
|
790 |
+
}
|
791 |
+
.acf-button-group input {
|
792 |
+
display: none;
|
793 |
+
}
|
794 |
+
.acf-button-group label {
|
795 |
+
margin: 0 0 0 -1px;
|
796 |
+
flex: 1;
|
797 |
+
text-align: center;
|
798 |
+
white-space: nowrap;
|
799 |
+
}
|
800 |
+
.acf-button-group label:first-child {
|
801 |
+
border-radius: 3px 0 0 3px;
|
802 |
+
}
|
803 |
+
.acf-button-group label:last-child {
|
804 |
+
border-radius: 0 3px 3px 0;
|
805 |
+
}
|
806 |
+
.acf-button-group label:only-child {
|
807 |
+
border-radius: 3px;
|
808 |
+
}
|
809 |
+
.acf-button-group.-vertical {
|
810 |
+
padding-left: 0;
|
811 |
+
padding-top: 1px;
|
812 |
+
flex-direction: column;
|
813 |
+
}
|
814 |
+
.acf-button-group.-vertical label {
|
815 |
+
margin: -1px 0 0 0;
|
816 |
+
}
|
817 |
+
.acf-button-group.-vertical label:first-child {
|
818 |
+
border-radius: 3px 3px 0 0;
|
819 |
+
}
|
820 |
+
.acf-button-group.-vertical label:last-child {
|
821 |
+
border-radius: 0 0 3px 3px;
|
822 |
+
}
|
823 |
+
.acf-button-group.-vertical label:only-child {
|
824 |
+
border-radius: 3px;
|
825 |
+
}
|
826 |
+
/*---------------------------------------------------------------------------------------------
|
827 |
+
*
|
828 |
* Checkbox
|
829 |
*
|
830 |
*---------------------------------------------------------------------------------------------*/
|
841 |
border-radius: 5px;
|
842 |
cursor: pointer;
|
843 |
position: relative;
|
844 |
+
background: #f8f8f8;
|
845 |
height: 30px;
|
846 |
vertical-align: middle;
|
847 |
+
border: #ccc solid 1px;
|
848 |
-webkit-transition: background 0.25s ease;
|
849 |
-moz-transition: background 0.25s ease;
|
850 |
-o-transition: background 0.25s ease;
|
872 |
}
|
873 |
.acf-switch .acf-switch-slider {
|
874 |
position: absolute;
|
875 |
+
top: 2px;
|
876 |
+
left: 2px;
|
877 |
+
bottom: 2px;
|
878 |
right: 50%;
|
879 |
z-index: 1;
|
880 |
background: #fff;
|
884 |
-moz-transition: all 0.25s ease;
|
885 |
-o-transition: all 0.25s ease;
|
886 |
transition: all 0.25s ease;
|
887 |
+
transition-property: left, right;
|
888 |
}
|
889 |
+
.acf-switch:hover .acf-switch-slider {
|
890 |
+
border-color: #b3b3b3;
|
891 |
}
|
892 |
.acf-switch.-on {
|
893 |
+
background: #309cf3;
|
894 |
+
border-color: #2b9af3;
|
895 |
+
/* hover */
|
896 |
}
|
897 |
.acf-switch.-on .acf-switch-slider {
|
898 |
left: 50%;
|
899 |
+
right: 2px;
|
900 |
+
border-color: #0d84e3;
|
901 |
+
}
|
902 |
+
.acf-switch.-on:hover {
|
903 |
+
background: #48a8f4;
|
904 |
}
|
905 |
.acf-switch.-focus .acf-switch-slider {
|
906 |
border-color: #5b9dd9;
|
919 |
position: absolute;
|
920 |
margin: 0;
|
921 |
}
|
922 |
+
/* in media modal */
|
923 |
+
.compat-item .acf-true-false .message {
|
924 |
+
float: none;
|
925 |
+
padding: 0;
|
926 |
+
vertical-align: middle;
|
927 |
+
}
|
928 |
/*--------------------------------------------------------------------------
|
929 |
*
|
930 |
* Google Map
|
1884 |
}
|
1885 |
.acf-range-wrap input[type="number"] {
|
1886 |
display: inline-block;
|
1887 |
+
min-width: 3em;
|
1888 |
margin-left: 10px;
|
1889 |
vertical-align: middle;
|
1890 |
}
|
assets/js/acf-field-group.js
CHANGED
@@ -1652,17 +1652,17 @@
|
|
1652 |
|
1653 |
|
1654 |
// vars
|
1655 |
-
var key
|
1656 |
-
|
1657 |
-
|
1658 |
|
1659 |
|
1660 |
// choices
|
1661 |
var choices = [];
|
1662 |
|
1663 |
|
1664 |
-
// loop over
|
1665 |
-
$.each( $
|
1666 |
|
1667 |
// vars
|
1668 |
var group = (i == 0) ? acf._e('sibling_fields') : acf._e('parent_fields');
|
@@ -1679,7 +1679,7 @@
|
|
1679 |
|
1680 |
|
1681 |
// validate
|
1682 |
-
if( $.inArray(this_type, ['select', 'checkbox', 'true_false', 'radio']) === -1 ) {
|
1683 |
|
1684 |
return;
|
1685 |
|
@@ -1766,7 +1766,7 @@
|
|
1766 |
});
|
1767 |
|
1768 |
// select
|
1769 |
-
} else if( field_type == "select" || field_type == "checkbox" || field_type == "radio" ) {
|
1770 |
|
1771 |
// vars
|
1772 |
var lines = $field.find('.acf-field[data-name="choices"] textarea').val().split("\n");
|
@@ -2179,22 +2179,58 @@
|
|
2179 |
$field: null,
|
2180 |
$settings: null,
|
2181 |
|
2182 |
-
|
2183 |
|
2184 |
// vars
|
2185 |
-
var
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2187 |
|
2188 |
-
//
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2194 |
|
2195 |
|
2196 |
// add action
|
2197 |
-
acf.add_action(name, function( $field ){
|
2198 |
|
2199 |
// focus
|
2200 |
model.set('$field', $field);
|
@@ -2213,16 +2249,8 @@
|
|
2213 |
var model = this;
|
2214 |
|
2215 |
|
2216 |
-
// name
|
2217 |
-
// - open => open_field/type=x
|
2218 |
-
// - change_type => change_field_type/type=x
|
2219 |
-
var names = name.split('_');
|
2220 |
-
names.splice(1, 0, 'field');
|
2221 |
-
name = names.join('_') + '/type=' + model.type;
|
2222 |
-
|
2223 |
-
|
2224 |
// add action
|
2225 |
-
acf.add_filter(name, function( $field ){
|
2226 |
|
2227 |
// focus
|
2228 |
model.set('$field', $field);
|
@@ -2238,10 +2266,10 @@
|
|
2238 |
_add_event: function( name, callback ) {
|
2239 |
|
2240 |
// vars
|
2241 |
-
var model = this
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
|
2246 |
|
2247 |
// add event
|
1652 |
|
1653 |
|
1654 |
// vars
|
1655 |
+
var key = $field.attr('data-key');
|
1656 |
+
var $lists = $field.parents('.acf-field-list');
|
1657 |
+
var $tr = $field.find('.acf-field-setting-conditional_logic:last');
|
1658 |
|
1659 |
|
1660 |
// choices
|
1661 |
var choices = [];
|
1662 |
|
1663 |
|
1664 |
+
// loop over ancestor lists
|
1665 |
+
$.each( $lists, function( i ){
|
1666 |
|
1667 |
// vars
|
1668 |
var group = (i == 0) ? acf._e('sibling_fields') : acf._e('parent_fields');
|
1679 |
|
1680 |
|
1681 |
// validate
|
1682 |
+
if( $.inArray(this_type, ['select', 'checkbox', 'true_false', 'radio', 'button_group']) === -1 ) {
|
1683 |
|
1684 |
return;
|
1685 |
|
1766 |
});
|
1767 |
|
1768 |
// select
|
1769 |
+
} else if( field_type == "select" || field_type == "checkbox" || field_type == "radio" || field_type == "button_group" ) {
|
1770 |
|
1771 |
// vars
|
1772 |
var lines = $field.find('.acf-field[data-name="choices"] textarea').val().split("\n");
|
2179 |
$field: null,
|
2180 |
$settings: null,
|
2181 |
|
2182 |
+
tag: function( tag ) {
|
2183 |
|
2184 |
// vars
|
2185 |
+
var type = this.type;
|
2186 |
+
|
2187 |
+
|
2188 |
+
// explode, add 'field' and implode
|
2189 |
+
// - open => open_field
|
2190 |
+
// - change_type => change_field_type
|
2191 |
+
var tags = tag.split('_');
|
2192 |
+
tags.splice(1, 0, 'field');
|
2193 |
+
tag = tags.join('_');
|
2194 |
+
|
2195 |
+
|
2196 |
+
// add type
|
2197 |
+
if( type ) {
|
2198 |
+
tag += '/type=' + type;
|
2199 |
+
}
|
2200 |
+
|
2201 |
|
2202 |
+
// return
|
2203 |
+
return tag;
|
2204 |
+
|
2205 |
+
},
|
2206 |
+
|
2207 |
+
selector: function(){
|
2208 |
|
2209 |
+
// vars
|
2210 |
+
var selector = '.acf-field-object';
|
2211 |
+
var type = this.type;
|
2212 |
+
|
2213 |
+
|
2214 |
+
// add type
|
2215 |
+
if( type ) {
|
2216 |
+
selector += '-' + type;
|
2217 |
+
selector = acf.str_replace('_', '-', selector);
|
2218 |
+
}
|
2219 |
+
|
2220 |
+
|
2221 |
+
// return
|
2222 |
+
return selector;
|
2223 |
+
|
2224 |
+
},
|
2225 |
+
|
2226 |
+
_add_action: function( name, callback ) {
|
2227 |
+
|
2228 |
+
// vars
|
2229 |
+
var model = this;
|
2230 |
|
2231 |
|
2232 |
// add action
|
2233 |
+
acf.add_action( this.tag(name), function( $field ){
|
2234 |
|
2235 |
// focus
|
2236 |
model.set('$field', $field);
|
2249 |
var model = this;
|
2250 |
|
2251 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2252 |
// add action
|
2253 |
+
acf.add_filter( this.tag(name), function( $field ){
|
2254 |
|
2255 |
// focus
|
2256 |
model.set('$field', $field);
|
2266 |
_add_event: function( name, callback ) {
|
2267 |
|
2268 |
// vars
|
2269 |
+
var model = this;
|
2270 |
+
var event = name.substr(0,name.indexOf(' '));
|
2271 |
+
var selector = name.substr(name.indexOf(' ')+1);
|
2272 |
+
var context = this.selector();
|
2273 |
|
2274 |
|
2275 |
// add event
|
assets/js/acf-field-group.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function($){acf.field_group=acf.model.extend({$fields:null,$locations:null,$options:null,actions:{ready:"init"},events:{"submit #post":"submit",'click a[href="#"]':"preventDefault","click .submitdelete":"trash","mouseenter .acf-field-list":"sortable"},init:function(){this.$fields=$("#acf-field-group-fields"),this.$locations=$("#acf-field-group-locations"),this.$options=$("#acf-field-group-options"),acf.validation.active=0},sortable:function(e){if(!e.$el.hasClass("ui-sortable")){var t=this;e.$el.sortable({handle:".acf-sortable-handle",connectWith:".acf-field-list",update:function(e,i){var a=i.item;t.render_fields(),acf.do_action("sortstop",a)}})}},preventDefault:function(e){e.preventDefault()},get_selector:function(e){e=e||"";var t=".acf-field-object";return e&&(t+="-"+e,t=t.split("_").join("-")),t},render_fields:function(){var e=this;$(".acf-field-list").each(function(){var t=$(this).children(".acf-field-object");t.each(function(t){e.update_field_meta($(this),"menu_order",t),$(this).children(".handle").find(".acf-icon").html(t+1)}),t.exists()?$(this).children(".no-fields-message").hide():$(this).children(".no-fields-message").show()})},get_field_meta:function(e,t){var i=e.find("> .meta > .input-"+t);return!!i.exists()&&i.val()},update_field_meta:function(e,t,i){var a=e.find("> .meta > .input-"+t);if(!a.exists()){var d=e.find("> .meta > .input-ID").outerHTML();d=acf.str_replace("ID",t,d),a=$(d),a.val(i),e.children(".meta").append(a)}a.val()!=i&&(a.val(i),"save"!=t&&this.save_field(e,"meta"))},delete_field_meta:function(e,t){var i=e.find("> .meta > .input-"+t);i.exists()&&(i.remove(),this.save_field(e,"meta"))},save_field:function(e,t){t=t||"settings";var i=this.get_field_meta(e,"save");"settings"!=i&&i!=t&&(this.update_field_meta(e,"save",t),acf.do_action("save_field",e,t))},submit:function(e){var t=this,i=$("#titlewrap #title");i.val()||(e.preventDefault(),acf.validation.toggle(e.$el,"unlock"),alert(acf._e("title_is_required")),i.focus()),$(".acf-field-object").each(function(){var e=t.get_field_meta($(this),"save"),i=t.get_field_meta($(this),"ID"),a=$(this).hasClass("open");a&&t.close_field($(this)),"settings"==e||("meta"==e?$(this).children(".settings").find('[name^="acf_fields['+i+']"]').remove():$(this).find('[name^="acf_fields['+i+']"]').remove())})},trash:function(e){var t=confirm(acf._e("move_to_trash"));t||e.preventDefault()},render_field:function(e){var t=e.find(".field-label:first").val(),i=e.find(".field-name:first").val(),a=e.find(".field-type:first option:selected").text(),d=e.find(".field-required:first").prop("checked"),n=e.children(".handle");n.find(".li-field-label strong a").text(t),n.find(".li-field-label .acf-required").remove(),d&&n.find(".li-field-label strong").append('<span class="acf-required">*</span>'),n.find(".li-field-name").text(i),n.find(".li-field-type").text(a),acf.do_action("render_field_handle",e,n)},edit_field:function(e){e.hasClass("open")?this.close_field(e):this.open_field(e)},open_field:function(e){return!e.hasClass("open")&&(e.addClass("open"),acf.do_action("open_field",e),void e.children(".settings").animate({height:"toggle"},250))},close_field:function(e){return!!e.hasClass("open")&&(e.removeClass("open"),acf.do_action("close_field",e),void e.children(".settings").animate({height:"toggle"},250))},wipe_field:function(e){var t=e.attr("data-id"),i=e.attr("data-key"),a=acf.get_uniqid(),d="field_"+a;e.attr("data-id",a),e.attr("data-key",d),e.attr("data-orig",i),this.update_field_meta(e,"ID",""),this.update_field_meta(e,"key",d),e.find('[id*="'+t+'"]').each(function(){$(this).attr("id",$(this).attr("id").replace(t,a))}),e.find('[name*="'+t+'"]').each(function(){$(this).attr("name",$(this).attr("name").replace(t,a))}),e.find("> .handle .pre-field-key").text(d),e.find(".ui-sortable").removeClass("ui-sortable"),acf.do_action("wipe_field",e)},add_field:function(e){var t=$($("#tmpl-acf-field").html()),i=t.find(".field-label:first"),a=t.find(".field-name:first");this.wipe_field(t),e.append(t),i.val(""),a.val(""),setTimeout(function(){i.focus()},251),this.render_fields(),acf.do_action("append",t),this.edit_field(t),acf.do_action("add_field",t)},duplicate_field:function(e){acf.do_action("before_duplicate",e);var t=e.clone(),i=t.find(".field-label:first"),a=t.find(".field-name:first");acf.do_action("remove",t),this.wipe_field(t),acf.do_action("after_duplicate",e,t),e.after(t),acf.do_action("append",t),setTimeout(function(){i.focus()},251),this.render_fields(),e.hasClass("open")?this.close_field(e):this.open_field(t);var d=i.val(),n=a.val(),l=n.split("_").pop(),f=acf._e("copy");if(0===l.indexOf(f)){var c=1*l.replace(f,"");c=c?c+1:2,d=d.replace(l,f+c),n=n.replace(l,f+c)}else d+=" ("+f+")",n+="_"+f;return i.val(d),a.val(n),this.save_field(t),this.render_field(t),acf.do_action("duplicate_field",t),t},move_field:function(e){var t=this,i=acf.prepare_for_ajax({action:"acf/field_group/move_field",field_id:this.get_field_meta(e,"ID")}),a=!1;return i.field_id?"settings"==this.get_field_meta(e,"save")?a=!0:e.find(".acf-field-object").each(function(){return t.get_field_meta($(this),"ID")?void("settings"==t.get_field_meta($(this),"save")&&(a=!0)):(a=!0,!1)}):a=!0,a?void alert(acf._e("move_field_warning")):(acf.open_popup({title:acf._e("move_field"),loading:!0,height:145}),void $.ajax({url:acf.get("ajaxurl"),data:i,type:"post",dataType:"html",success:function(i){t.move_field_confirm(e,i)}}))},move_field_confirm:function(e,t){var i=this;acf.update_popup({content:t});var a=acf.prepare_for_ajax({action:"acf/field_group/move_field",field_id:this.get_field_meta(e,"ID"),field_group_id:0});$("#acf-move-field-form").on("submit",function(){return a.field_group_id=$(this).find("select").val(),$.ajax({url:acf.get("ajaxurl"),data:a,type:"post",dataType:"html",success:function(t){acf.update_popup({content:t}),i.remove_field(e)}}),!1})},delete_field:function(e,t){t=t||!0;var i=this.get_field_meta(e,"ID");if(i){var a=$("#_acf_delete_fields");a.val(a.val()+"|"+i)}acf.do_action("delete_field",e),t&&this.remove_field(e)},remove_field:function(e){var t=this,i=e.closest(".acf-field-list");e.css({height:e.height(),width:e.width(),position:"absolute"}),e.wrap('<div class="temp-field-wrap" style="height:'+e.height()+'px"></div>'),e.animate({opacity:0},250);var a=0,d=!1;i.children(".acf-field-object").length||(d=i.children(".no-fields-message"),a=d.outerHeight()),e.parent(".temp-field-wrap").animate({height:a},250,function(){d&&d.show(),acf.do_action("remove",$(this)),$(this).remove(),t.render_fields()})},change_field_type:function(e){var t=e.closest("tbody"),i=t.closest(".acf-field-object"),a=i.parent().closest(".acf-field-object"),d=i.attr("data-key"),n=i.attr("data-type"),l=e.val();i.removeClass("acf-field-object-"+acf.str_replace("_","-",n)),i.addClass("acf-field-object-"+acf.str_replace("_","-",l)),i.attr("data-type",l),i.data("type",l),i.data("xhr")&&i.data("xhr").abort();var f=t.children('.acf-field[data-setting="'+n+'"]'),c="";if(f.each(function(){c+=$(this).outerHTML()}),f.remove(),acf.update(d+"_settings_"+n,c),this.render_field(i),c=acf.get(d+"_settings_"+l))return t.children('.acf-field[data-name="conditional_logic"]').before(c),acf.update(d+"_settings_"+l,""),void acf.do_action("change_field_type",i);var r=$('<tr class="acf-field"><td class="acf-label"></td><td class="acf-input"><div class="acf-loading"></div></td></tr>');t.children('.acf-field[data-name="conditional_logic"]').before(r);var o={action:"acf/field_group/render_field_settings",nonce:acf.o.nonce,parent:acf.o.post_id,field_group:acf.o.post_id,prefix:e.attr("name").replace("[type]",""),type:l};a.exists()&&(o.parent=this.get_field_meta(a,"ID"));var s=$.ajax({url:acf.o.ajaxurl,data:o,type:"post",dataType:"html",success:function(e){if(e){var t=$(e);r.after(t),acf.do_action("append",t),acf.do_action("change_field_type",i)}},complete:function(){r.remove()}});i.data("xhr",s)},change_field_label:function(e){var t=e.find(".field-label:first"),i=e.find(".field-name:first"),a=e.attr("data-type");if(""==i.val()){var d=t.val();d=acf.str_sanitize(d),i.val(d).trigger("change")}this.render_field(e),acf.do_action("change_field_label",e)},change_field_name:function(e){var t=e.find(".field-name:first");"field_"===t.val().substr(0,6)&&(alert(acf._e("field_name_start")),setTimeout(function(){t.focus()},1)),acf.do_action("change_field_name",e)}}),acf.field_group.field=acf.model.extend({events:{"click .edit-field":"edit","click .duplicate-field":"duplicate","click .move-field":"move","click .delete-field":"delete","click .add-field":"add","change .field-type":"change_type","blur .field-label":"change_label","blur .field-name":"change_name","keyup .field-label":"render","keyup .field-name":"render","change .field-required":"render","change .acf-field-object input":"save","change .acf-field-object textarea":"save","change .acf-field-object select":"save"},event:function(e){return e.$field=e.$el.closest(".acf-field-object"),e},edit:function(e){acf.field_group.edit_field(e.$field)},duplicate:function(e){acf.field_group.duplicate_field(e.$field)},move:function(e){acf.field_group.move_field(e.$field)},delete:function(e){acf.field_group.delete_field(e.$field)},add:function(e){var t=e.$el.closest(".acf-field-list-wrap").children(".acf-field-list");acf.field_group.add_field(t)},change_type:function(e){acf.field_group.change_field_type(e.$el)},change_label:function(e){acf.field_group.change_field_label(e.$field)},change_name:function(e){acf.field_group.change_field_name(e.$field)},render:function(e){acf.field_group.render_field(e.$field)},save:function(e){acf.field_group.save_field(e.$field)}}),acf.field_group.conditional_logic=acf.model.extend({actions:{open_field:"render_field",change_field_label:"render_fields",change_field_type:"render_fields"},events:{"click .add-conditional-rule":"add_rule","click .add-conditional-group":"add_group","click .remove-conditional-rule":"remove_rule","change .conditional-toggle":"change_toggle","change .conditional-rule-param":"change_param"},render_fields:function(){var e=this;$(".acf-field-object.open").each(function(){e.render_field($(this))})},render_field:function(e){var t=this,i=e.attr("data-key"),a=e.parents(".acf-field-list"),d=e.find('.acf-field[data-name="conditional_logic"]:last'),n=[];$.each(a,function(e){var t=0==e?acf._e("sibling_fields"):acf._e("parent_fields");$(this).children(".acf-field-object").each(function(){var e=$(this),a=e.attr("data-key"),d=e.attr("data-type"),l=e.find(".field-label:first").val();$.inArray(d,["select","checkbox","true_false","radio"])!==-1&&a!=i&&n.push({value:a,label:l,group:t})})}),n.length||n.push({value:"",label:acf._e("no_fields")}),d.find(".rule").each(function(){t.render_rule($(this),n)})},render_rule:function(e,t){var i=e.find(".conditional-rule-param"),a=e.find(".conditional-rule-value");t&&acf.render_select(i,t);var d=$('.acf-field-object[data-key="'+i.val()+'"]'),n=d.attr("data-type"),l=[];if("true_false"==n)l.push({value:1,label:acf._e("checked")});else if("select"==n||"checkbox"==n||"radio"==n){var f=d.find('.acf-field[data-name="choices"] textarea').val().split("\n");$.each(f,function(e,t){t=t.split(":"),t[1]=t[1]||t[0],l.push({value:$.trim(t[0]),label:$.trim(t[1])})});var c=d.find('.acf-field[data-name="allow_null"]');c.exists()&&"1"==c.find("input:checked").val()&&l.unshift({value:"",label:acf._e("null")})}acf.render_select(a,l)},change_toggle:function(e){var t=e.$el,i=e.$el.prop("checked"),a=t.closest(".acf-input");i?(a.find(".rule-groups").show(),a.find(".rule-groups").find("[name]").prop("disabled",!1)):(a.find(".rule-groups").hide(),a.find(".rule-groups").find("[name]").prop("disabled",!0))},change_param:function(e){var t=e.$el.closest(".rule");this.render_rule(t)},add_rule:function(e){var t=e.$el.closest("tr");$tr2=acf.duplicate(t),$tr2.find("select:first").trigger("change")},remove_rule:function(e){var t=e.$el.closest("tr");t.find("select:first").trigger("change"),0==t.siblings("tr").length&&t.closest(".rule-group").remove(),t.remove()},add_group:function(e){var t=e.$el.closest(".rule-groups"),i=t.find(".rule-group:last");$group2=acf.duplicate(i),$group2.find("h4").text(acf._e("or")),$group2.find("tr:not(:first)").remove(),$group2.find("select:first").trigger("change")}}),acf.field_group.locations=acf.model.extend({events:{"click .add-location-rule":"add_rule","click .add-location-group":"add_group","click .remove-location-rule":"remove_rule","change .refresh-location-rule":"change_rule"},add_rule:function(e){var t=e.$el.closest("tr");$tr2=acf.duplicate(t)},remove_rule:function(e){var t=e.$el.closest("tr");t.find("select:first").trigger("change"),0==t.siblings("tr").length&&t.closest(".rule-group").remove(),t.remove()},add_group:function(e){var t=e.$el.closest(".rule-groups"),i=t.find(".rule-group:last");$group2=acf.duplicate(i),$group2.find("h4").text(acf._e("or")),$group2.find("tr:not(:first)").remove()},change_rule:function(e){var t=e.$el.closest("tr"),i=t.closest(".rule-group"),a=t.find("td.param select").attr("name").replace("[param]",""),d={action:"acf/field_group/render_location_rule",rule:acf.serialize(t,a)};d.rule.id=t.attr("data-id"),d.rule.group=i.attr("data-id"),$.ajax({url:acf.get("ajaxurl"),data:acf.prepare_for_ajax(d),type:"post",dataType:"html",success:function(e){e&&t.replaceWith(e)}})}}),acf.field_group.field_object=acf.model.extend({type:"",o:{},$field:null,$settings:null,_add_action:function(e,t){var i=this,a=e.split("_");a.splice(1,0,"field"),e=a.join("_")+"/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,a=e.split("_");a.splice(1,0,"field"),e=a.join("_")+"/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(" ")),d=e.substr(e.indexOf(" ")+1),n=acf.field_group.get_selector(i.type);$(document).on(a,n+" "+d,function(e){e.$el=$(this),e.$field=e.$el.closest(".acf-field-object"),i.set("$field",e.$field),i[t].apply(i,[e])})},_set_$field:function(){this.o=this.$field.data(),this.$settings=this.$field.find("> .settings > table > tbody"),this.focus()},focus:function(){},setting:function(e){return this.$settings.find("> .acf-field-setting-"+e)}}),acf.field_group.field_objects=acf.model.extend({actions:{save_field:"_save_field",open_field:"_open_field",close_field:"_close_field",wipe_field:"_wipe_field",add_field:"_add_field",duplicate_field:"_duplicate_field",delete_field:"_delete_field",change_field_type:"_change_field_type",change_field_label:"_change_field_label",change_field_name:"_change_field_name",render_field_settings:"_render_field_settings"},_save_field:function(e){acf.do_action("save_field/type="+e.data("type"),e)},_open_field:function(e){acf.do_action("open_field/type="+e.data("type"),e),acf.do_action("render_field_settings",e)},_close_field:function(e){acf.do_action("close_field/type="+e.data("type"),e)},_wipe_field:function(e){acf.do_action("wipe_field/type="+e.data("type"),e)},_add_field:function(e){acf.do_action("add_field/type="+e.data("type"),e)},_duplicate_field:function(e){acf.do_action("duplicate_field/type="+e.data("type"),e)},_delete_field:function(e){acf.do_action("delete_field/type="+e.data("type"),e)},_change_field_type:function(e){acf.do_action("change_field_type/type="+e.data("type"),e),acf.do_action("render_field_settings",e)},_change_field_label:function(e){acf.do_action("change_field_label/type="+e.data("type"),e)},_change_field_name:function(e){acf.do_action("change_field_name/type="+e.data("type"),e)},_render_field_settings:function(e){acf.do_action("render_field_settings/type="+e.data("type"),e)}}),acf.field_group.append=acf.model.extend({actions:{render_field_settings:"_render_field_settings"},render:function(e){var t=e.data("append");if($sibling=e.siblings('[data-name="'+t+'"]'),$sibling.exists()){var i=$sibling.children(".acf-input"),a=i.children(".acf-hl");a.exists()||(i.wrapInner('<ul class="acf-hl"><li></li></ul>'),a=i.children(".acf-hl"));var d=$("<li></li>").append(e.children(".acf-input").children());a.append(d),a.attr("data-cols",a.children().length),e.remove()}},_render_field_settings:function(e){var t=this;e.find(".acf-field[data-append]").each(function(){t.render($(this))})}});var e=acf.field_group.field_object.extend({type:"select",actions:{render_settings:"render"},events:{"change .acf-field-setting-ui input":"render"},render:function(e){this.setting('ui input[type="checkbox"]').prop("checked")?this.setting("ajax").show():(this.setting("ajax").hide(),this.setting('ajax input[type="checkbox"]').prop("checked",!1).trigger("change"))}}),t=acf.field_group.field_object.extend({type:"radio",actions:{render_settings:"render"},events:{"change .acf-field-setting-other_choice input":"render"},render:function(e){this.setting('other_choice input[type="checkbox"]').prop("checked")?this.setting("save_other_choice").show():(this.setting("save_other_choice").hide(),this.setting('save_other_choice input[type="checkbox"]').prop("checked",!1).trigger("change"))}}),i=acf.field_group.field_object.extend({type:"checkbox",actions:{render_settings:"render"},events:{"change .acf-field-setting-allow_custom input":"render"},render:function(e){this.setting('allow_custom input[type="checkbox"]').prop("checked")?this.setting("save_custom").show():(this.setting("save_custom").hide(),this.setting('save_custom input[type="checkbox"]').prop("checked",!1).trigger("change"))}}),a=acf.field_group.field_object.extend({type:"true_false",actions:{render_settings:"render"},events:{"change .acf-field-setting-ui input":"render"},render:function(e){this.setting('ui input[type="checkbox"]').prop("checked")?(this.setting("ui_on_text").show(),this.setting("ui_off_text").show()):(this.setting("ui_on_text").hide(),this.setting("ui_off_text").hide())}}),d=acf.field_group.field_object.extend({type:"date_picker",actions:{render_settings:"render"},events:{"change .acf-field-setting-display_format input":"render","change .acf-field-setting-return_format input":"render"},render:function(e){this.render_list(this.setting("display_format")),this.render_list(this.setting("return_format"))},render_list:function(e){var t=e.find("ul"),i=t.find('input[type="radio"]:checked'),a=t.find('input[type="text"]');"other"!=i.val()&&a.val(i.val())}}),n=d.extend({type:"date_time_picker"}),n=d.extend({type:"time_picker"}),l=acf.field_group.field_object.extend({type:"tab",actions:{render_settings:"render"},render:function(e){this.setting("name input").val("").trigger("change"),this.setting('required input[type="checkbox"]').prop("checked",!1).trigger("change")}}),f=l.extend({type:"message"});acf.field_group.screen=acf.model.extend({actions:{ready:"ready"},events:{"click #acf-field-key-hide":"toggle"},ready:function(){var e=$("#adv-settings"),t=e.find("#acf-append-show-on-screen");e.find(".metabox-prefs").append(t.html()),e.find(".metabox-prefs br").remove(),t.remove(),this.render()},toggle:function(e){var t=e.$el.prop("checked")?1:0;acf.update_user_setting("show_field_keys",t),this.render()},render:function(){var e=acf.serialize($("#adv-settings")),t=acf.field_group.$fields;e.show_field_keys?t.addClass("show-field-keys"):t.removeClass("show-field-keys")}}),acf.field_group.sub_fields=acf.model.extend({actions:{open_field:"update_field_parent",sortstop:"update_field_parent",duplicate_field:"duplicate_field",delete_field:"delete_field",change_field_type:"change_field_type"},fix_conditional_logic:function(e){var t={};e.each(function(){t[$(this).attr("data-orig")]=$(this).attr("data-key")}),e.find(".conditional-rule-param").each(function(){var e=$(this).val();e in t&&($(this).find('option[value="'+t[e]+'"]').exists()||$(this).append('<option value="'+t[e]+'">'+t[e]+"</option>"),$(this).val(t[e]))})},update_field_parent:function(e){if(e.hasClass("acf-field-object")){var t=e.parent().closest(".acf-field-object"),i=acf.get("post_id");t.exists()&&(i=acf.field_group.get_field_meta(t,"ID"),i||(i=acf.field_group.get_field_meta(t,"key"))),acf.field_group.update_field_meta(e,"parent",i),acf.do_action("update_field_parent",e,t)}},duplicate_field:function(e){var t=e.find(".acf-field-object");t.exists()&&(t.each(function(){var e=$(this).parent().closest(".acf-field-object"),t=acf.field_group.get_field_meta(e,"key");acf.field_group.wipe_field($(this)),acf.field_group.update_field_meta($(this),"parent",t),acf.field_group.save_field($(this))}),this.fix_conditional_logic(t))},delete_field:function(e){e.find(".acf-field-object").each(function(){acf.field_group.delete_field($(this),!1)})},change_field_type:function(e){e.find(".acf-field-object").each(function(){acf.field_group.delete_field($(this),!1)})}})}(jQuery);
|
1 |
+
!function($){acf.field_group=acf.model.extend({$fields:null,$locations:null,$options:null,actions:{ready:"init"},events:{"submit #post":"submit",'click a[href="#"]':"preventDefault","click .submitdelete":"trash","mouseenter .acf-field-list":"sortable"},init:function(){this.$fields=$("#acf-field-group-fields"),this.$locations=$("#acf-field-group-locations"),this.$options=$("#acf-field-group-options"),acf.validation.active=0},sortable:function(e){if(!e.$el.hasClass("ui-sortable")){var t=this;e.$el.sortable({handle:".acf-sortable-handle",connectWith:".acf-field-list",update:function(e,i){var a=i.item;t.render_fields(),acf.do_action("sortstop",a)}})}},preventDefault:function(e){e.preventDefault()},get_selector:function(e){e=e||"";var t=".acf-field-object";return e&&(t+="-"+e,t=t.split("_").join("-")),t},render_fields:function(){var e=this;$(".acf-field-list").each(function(){var t=$(this).children(".acf-field-object");t.each(function(t){e.update_field_meta($(this),"menu_order",t),$(this).children(".handle").find(".acf-icon").html(t+1)}),t.exists()?$(this).children(".no-fields-message").hide():$(this).children(".no-fields-message").show()})},get_field_meta:function(e,t){var i=e.find("> .meta > .input-"+t);return!!i.exists()&&i.val()},update_field_meta:function(e,t,i){var a=e.find("> .meta > .input-"+t);if(!a.exists()){var n=e.find("> .meta > .input-ID").outerHTML();n=acf.str_replace("ID",t,n),a=$(n),a.val(i),e.children(".meta").append(a)}a.val()!=i&&(a.val(i),"save"!=t&&this.save_field(e,"meta"))},delete_field_meta:function(e,t){var i=e.find("> .meta > .input-"+t);i.exists()&&(i.remove(),this.save_field(e,"meta"))},save_field:function(e,t){t=t||"settings";var i=this.get_field_meta(e,"save");"settings"!=i&&i!=t&&(this.update_field_meta(e,"save",t),acf.do_action("save_field",e,t))},submit:function(e){var t=this,i=$("#titlewrap #title");i.val()||(e.preventDefault(),acf.validation.toggle(e.$el,"unlock"),alert(acf._e("title_is_required")),i.focus()),$(".acf-field-object").each(function(){var e=t.get_field_meta($(this),"save"),i=t.get_field_meta($(this),"ID"),a=$(this).hasClass("open");a&&t.close_field($(this)),"settings"==e||("meta"==e?$(this).children(".settings").find('[name^="acf_fields['+i+']"]').remove():$(this).find('[name^="acf_fields['+i+']"]').remove())})},trash:function(e){var t=confirm(acf._e("move_to_trash"));t||e.preventDefault()},render_field:function(e){var t=e.find(".field-label:first").val(),i=e.find(".field-name:first").val(),a=e.find(".field-type:first option:selected").text(),n=e.find(".field-required:first").prop("checked"),d=e.children(".handle");d.find(".li-field-label strong a").text(t),d.find(".li-field-label .acf-required").remove(),n&&d.find(".li-field-label strong").append('<span class="acf-required">*</span>'),d.find(".li-field-name").text(i),d.find(".li-field-type").text(a),acf.do_action("render_field_handle",e,d)},edit_field:function(e){e.hasClass("open")?this.close_field(e):this.open_field(e)},open_field:function(e){return!e.hasClass("open")&&(e.addClass("open"),acf.do_action("open_field",e),void e.children(".settings").animate({height:"toggle"},250))},close_field:function(e){return!!e.hasClass("open")&&(e.removeClass("open"),acf.do_action("close_field",e),void e.children(".settings").animate({height:"toggle"},250))},wipe_field:function(e){var t=e.attr("data-id"),i=e.attr("data-key"),a=acf.get_uniqid(),n="field_"+a;e.attr("data-id",a),e.attr("data-key",n),e.attr("data-orig",i),this.update_field_meta(e,"ID",""),this.update_field_meta(e,"key",n),e.find('[id*="'+t+'"]').each(function(){$(this).attr("id",$(this).attr("id").replace(t,a))}),e.find('[name*="'+t+'"]').each(function(){$(this).attr("name",$(this).attr("name").replace(t,a))}),e.find("> .handle .pre-field-key").text(n),e.find(".ui-sortable").removeClass("ui-sortable"),acf.do_action("wipe_field",e)},add_field:function(e){var t=$($("#tmpl-acf-field").html()),i=t.find(".field-label:first"),a=t.find(".field-name:first");this.wipe_field(t),e.append(t),i.val(""),a.val(""),setTimeout(function(){i.focus()},251),this.render_fields(),acf.do_action("append",t),this.edit_field(t),acf.do_action("add_field",t)},duplicate_field:function(e){acf.do_action("before_duplicate",e);var t=e.clone(),i=t.find(".field-label:first"),a=t.find(".field-name:first");acf.do_action("remove",t),this.wipe_field(t),acf.do_action("after_duplicate",e,t),e.after(t),acf.do_action("append",t),setTimeout(function(){i.focus()},251),this.render_fields(),e.hasClass("open")?this.close_field(e):this.open_field(t);var n=i.val(),d=a.val(),l=d.split("_").pop(),f=acf._e("copy");if(0===l.indexOf(f)){var c=1*l.replace(f,"");c=c?c+1:2,n=n.replace(l,f+c),d=d.replace(l,f+c)}else n+=" ("+f+")",d+="_"+f;return i.val(n),a.val(d),this.save_field(t),this.render_field(t),acf.do_action("duplicate_field",t),t},move_field:function(e){var t=this,i=acf.prepare_for_ajax({action:"acf/field_group/move_field",field_id:this.get_field_meta(e,"ID")}),a=!1;return i.field_id?"settings"==this.get_field_meta(e,"save")?a=!0:e.find(".acf-field-object").each(function(){return t.get_field_meta($(this),"ID")?void("settings"==t.get_field_meta($(this),"save")&&(a=!0)):(a=!0,!1)}):a=!0,a?void alert(acf._e("move_field_warning")):(acf.open_popup({title:acf._e("move_field"),loading:!0,height:145}),void $.ajax({url:acf.get("ajaxurl"),data:i,type:"post",dataType:"html",success:function(i){t.move_field_confirm(e,i)}}))},move_field_confirm:function(e,t){var i=this;acf.update_popup({content:t});var a=acf.prepare_for_ajax({action:"acf/field_group/move_field",field_id:this.get_field_meta(e,"ID"),field_group_id:0});$("#acf-move-field-form").on("submit",function(){return a.field_group_id=$(this).find("select").val(),$.ajax({url:acf.get("ajaxurl"),data:a,type:"post",dataType:"html",success:function(t){acf.update_popup({content:t}),i.remove_field(e)}}),!1})},delete_field:function(e,t){t=t||!0;var i=this.get_field_meta(e,"ID");if(i){var a=$("#_acf_delete_fields");a.val(a.val()+"|"+i)}acf.do_action("delete_field",e),t&&this.remove_field(e)},remove_field:function(e){var t=this,i=e.closest(".acf-field-list");e.css({height:e.height(),width:e.width(),position:"absolute"}),e.wrap('<div class="temp-field-wrap" style="height:'+e.height()+'px"></div>'),e.animate({opacity:0},250);var a=0,n=!1;i.children(".acf-field-object").length||(n=i.children(".no-fields-message"),a=n.outerHeight()),e.parent(".temp-field-wrap").animate({height:a},250,function(){n&&n.show(),acf.do_action("remove",$(this)),$(this).remove(),t.render_fields()})},change_field_type:function(e){var t=e.closest("tbody"),i=t.closest(".acf-field-object"),a=i.parent().closest(".acf-field-object"),n=i.attr("data-key"),d=i.attr("data-type"),l=e.val();i.removeClass("acf-field-object-"+acf.str_replace("_","-",d)),i.addClass("acf-field-object-"+acf.str_replace("_","-",l)),i.attr("data-type",l),i.data("type",l),i.data("xhr")&&i.data("xhr").abort();var f=t.children('.acf-field[data-setting="'+d+'"]'),c="";if(f.each(function(){c+=$(this).outerHTML()}),f.remove(),acf.update(n+"_settings_"+d,c),this.render_field(i),c=acf.get(n+"_settings_"+l))return t.children('.acf-field[data-name="conditional_logic"]').before(c),acf.update(n+"_settings_"+l,""),void acf.do_action("change_field_type",i);var r=$('<tr class="acf-field"><td class="acf-label"></td><td class="acf-input"><div class="acf-loading"></div></td></tr>');t.children('.acf-field[data-name="conditional_logic"]').before(r);var o={action:"acf/field_group/render_field_settings",nonce:acf.o.nonce,parent:acf.o.post_id,field_group:acf.o.post_id,prefix:e.attr("name").replace("[type]",""),type:l};a.exists()&&(o.parent=this.get_field_meta(a,"ID"));var s=$.ajax({url:acf.o.ajaxurl,data:o,type:"post",dataType:"html",success:function(e){if(e){var t=$(e);r.after(t),acf.do_action("append",t),acf.do_action("change_field_type",i)}},complete:function(){r.remove()}});i.data("xhr",s)},change_field_label:function(e){var t=e.find(".field-label:first"),i=e.find(".field-name:first"),a=e.attr("data-type");if(""==i.val()){var n=t.val();n=acf.str_sanitize(n),i.val(n).trigger("change")}this.render_field(e),acf.do_action("change_field_label",e)},change_field_name:function(e){var t=e.find(".field-name:first");"field_"===t.val().substr(0,6)&&(alert(acf._e("field_name_start")),setTimeout(function(){t.focus()},1)),acf.do_action("change_field_name",e)}}),acf.field_group.field=acf.model.extend({events:{"click .edit-field":"edit","click .duplicate-field":"duplicate","click .move-field":"move","click .delete-field":"delete","click .add-field":"add","change .field-type":"change_type","blur .field-label":"change_label","blur .field-name":"change_name","keyup .field-label":"render","keyup .field-name":"render","change .field-required":"render","change .acf-field-object input":"save","change .acf-field-object textarea":"save","change .acf-field-object select":"save"},event:function(e){return e.$field=e.$el.closest(".acf-field-object"),e},edit:function(e){acf.field_group.edit_field(e.$field)},duplicate:function(e){acf.field_group.duplicate_field(e.$field)},move:function(e){acf.field_group.move_field(e.$field)},delete:function(e){acf.field_group.delete_field(e.$field)},add:function(e){var t=e.$el.closest(".acf-field-list-wrap").children(".acf-field-list");acf.field_group.add_field(t)},change_type:function(e){acf.field_group.change_field_type(e.$el)},change_label:function(e){acf.field_group.change_field_label(e.$field)},change_name:function(e){acf.field_group.change_field_name(e.$field)},render:function(e){acf.field_group.render_field(e.$field)},save:function(e){acf.field_group.save_field(e.$field)}}),acf.field_group.conditional_logic=acf.model.extend({actions:{open_field:"render_field",change_field_label:"render_fields",change_field_type:"render_fields"},events:{"click .add-conditional-rule":"add_rule","click .add-conditional-group":"add_group","click .remove-conditional-rule":"remove_rule","change .conditional-toggle":"change_toggle","change .conditional-rule-param":"change_param"},render_fields:function(){var e=this;$(".acf-field-object.open").each(function(){e.render_field($(this))})},render_field:function(e){var t=this,i=e.attr("data-key"),a=e.parents(".acf-field-list"),n=e.find(".acf-field-setting-conditional_logic:last"),d=[];$.each(a,function(e){var t=0==e?acf._e("sibling_fields"):acf._e("parent_fields");$(this).children(".acf-field-object").each(function(){var e=$(this),a=e.attr("data-key"),n=e.attr("data-type"),l=e.find(".field-label:first").val();$.inArray(n,["select","checkbox","true_false","radio","button_group"])!==-1&&a!=i&&d.push({value:a,label:l,group:t})})}),d.length||d.push({value:"",label:acf._e("no_fields")}),n.find(".rule").each(function(){t.render_rule($(this),d)})},render_rule:function(e,t){var i=e.find(".conditional-rule-param"),a=e.find(".conditional-rule-value");t&&acf.render_select(i,t);var n=$('.acf-field-object[data-key="'+i.val()+'"]'),d=n.attr("data-type"),l=[];if("true_false"==d)l.push({value:1,label:acf._e("checked")});else if("select"==d||"checkbox"==d||"radio"==d||"button_group"==d){var f=n.find('.acf-field[data-name="choices"] textarea').val().split("\n");$.each(f,function(e,t){t=t.split(":"),t[1]=t[1]||t[0],l.push({value:$.trim(t[0]),label:$.trim(t[1])})});var c=n.find('.acf-field[data-name="allow_null"]');c.exists()&&"1"==c.find("input:checked").val()&&l.unshift({value:"",label:acf._e("null")})}acf.render_select(a,l)},change_toggle:function(e){var t=e.$el,i=e.$el.prop("checked"),a=t.closest(".acf-input");i?(a.find(".rule-groups").show(),a.find(".rule-groups").find("[name]").prop("disabled",!1)):(a.find(".rule-groups").hide(),a.find(".rule-groups").find("[name]").prop("disabled",!0))},change_param:function(e){var t=e.$el.closest(".rule");this.render_rule(t)},add_rule:function(e){var t=e.$el.closest("tr");$tr2=acf.duplicate(t),$tr2.find("select:first").trigger("change")},remove_rule:function(e){var t=e.$el.closest("tr");t.find("select:first").trigger("change"),0==t.siblings("tr").length&&t.closest(".rule-group").remove(),t.remove()},add_group:function(e){var t=e.$el.closest(".rule-groups"),i=t.find(".rule-group:last");$group2=acf.duplicate(i),$group2.find("h4").text(acf._e("or")),$group2.find("tr:not(:first)").remove(),$group2.find("select:first").trigger("change")}}),acf.field_group.locations=acf.model.extend({events:{"click .add-location-rule":"add_rule","click .add-location-group":"add_group","click .remove-location-rule":"remove_rule","change .refresh-location-rule":"change_rule"},add_rule:function(e){var t=e.$el.closest("tr");$tr2=acf.duplicate(t)},remove_rule:function(e){var t=e.$el.closest("tr");t.find("select:first").trigger("change"),0==t.siblings("tr").length&&t.closest(".rule-group").remove(),t.remove()},add_group:function(e){var t=e.$el.closest(".rule-groups"),i=t.find(".rule-group:last");$group2=acf.duplicate(i),$group2.find("h4").text(acf._e("or")),$group2.find("tr:not(:first)").remove()},change_rule:function(e){var t=e.$el.closest("tr"),i=t.closest(".rule-group"),a=t.find("td.param select").attr("name").replace("[param]",""),n={action:"acf/field_group/render_location_rule",rule:acf.serialize(t,a)};n.rule.id=t.attr("data-id"),n.rule.group=i.attr("data-id"),$.ajax({url:acf.get("ajaxurl"),data:acf.prepare_for_ajax(n),type:"post",dataType:"html",success:function(e){e&&t.replaceWith(e)}})}}),acf.field_group.field_object=acf.model.extend({type:"",o:{},$field:null,$settings:null,tag:function(e){var t=this.type,i=e.split("_");return i.splice(1,0,"field"),e=i.join("_"),t&&(e+="/type="+t),e},selector:function(){var e=".acf-field-object",t=this.type;return t&&(e+="-"+t,e=acf.str_replace("_","-",e)),e},_add_action:function(e,t){var i=this;acf.add_action(this.tag(e),function(e){i.set("$field",e),i[t].apply(i,arguments)})},_add_filter:function(e,t){var i=this;acf.add_filter(this.tag(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),d=this.selector();$(document).on(a,d+" "+n,function(e){e.$el=$(this),e.$field=e.$el.closest(".acf-field-object"),i.set("$field",e.$field),i[t].apply(i,[e])})},_set_$field:function(){this.o=this.$field.data(),this.$settings=this.$field.find("> .settings > table > tbody"),this.focus()},focus:function(){},setting:function(e){return this.$settings.find("> .acf-field-setting-"+e)}}),acf.field_group.field_objects=acf.model.extend({actions:{save_field:"_save_field",open_field:"_open_field",close_field:"_close_field",wipe_field:"_wipe_field",add_field:"_add_field",duplicate_field:"_duplicate_field",delete_field:"_delete_field",change_field_type:"_change_field_type",change_field_label:"_change_field_label",change_field_name:"_change_field_name",render_field_settings:"_render_field_settings"},_save_field:function(e){acf.do_action("save_field/type="+e.data("type"),e)},_open_field:function(e){acf.do_action("open_field/type="+e.data("type"),e),acf.do_action("render_field_settings",e)},_close_field:function(e){acf.do_action("close_field/type="+e.data("type"),e)},_wipe_field:function(e){acf.do_action("wipe_field/type="+e.data("type"),e)},_add_field:function(e){acf.do_action("add_field/type="+e.data("type"),e)},_duplicate_field:function(e){acf.do_action("duplicate_field/type="+e.data("type"),e)},_delete_field:function(e){acf.do_action("delete_field/type="+e.data("type"),e)},_change_field_type:function(e){acf.do_action("change_field_type/type="+e.data("type"),e),acf.do_action("render_field_settings",e)},_change_field_label:function(e){acf.do_action("change_field_label/type="+e.data("type"),e)},_change_field_name:function(e){acf.do_action("change_field_name/type="+e.data("type"),e)},_render_field_settings:function(e){acf.do_action("render_field_settings/type="+e.data("type"),e)}}),acf.field_group.append=acf.model.extend({actions:{render_field_settings:"_render_field_settings"},render:function(e){var t=e.data("append");if($sibling=e.siblings('[data-name="'+t+'"]'),$sibling.exists()){var i=$sibling.children(".acf-input"),a=i.children(".acf-hl");a.exists()||(i.wrapInner('<ul class="acf-hl"><li></li></ul>'),a=i.children(".acf-hl"));var n=$("<li></li>").append(e.children(".acf-input").children());a.append(n),a.attr("data-cols",a.children().length),e.remove()}},_render_field_settings:function(e){var t=this;e.find(".acf-field[data-append]").each(function(){t.render($(this))})}});var e=acf.field_group.field_object.extend({type:"select",actions:{render_settings:"render"},events:{"change .acf-field-setting-ui input":"render"},render:function(e){this.setting('ui input[type="checkbox"]').prop("checked")?this.setting("ajax").show():(this.setting("ajax").hide(),this.setting('ajax input[type="checkbox"]').prop("checked",!1).trigger("change"))}}),t=acf.field_group.field_object.extend({type:"radio",actions:{render_settings:"render"},events:{"change .acf-field-setting-other_choice input":"render"},render:function(e){this.setting('other_choice input[type="checkbox"]').prop("checked")?this.setting("save_other_choice").show():(this.setting("save_other_choice").hide(),this.setting('save_other_choice input[type="checkbox"]').prop("checked",!1).trigger("change"))}}),i=acf.field_group.field_object.extend({type:"checkbox",actions:{render_settings:"render"},events:{"change .acf-field-setting-allow_custom input":"render"},render:function(e){this.setting('allow_custom input[type="checkbox"]').prop("checked")?this.setting("save_custom").show():(this.setting("save_custom").hide(),this.setting('save_custom input[type="checkbox"]').prop("checked",!1).trigger("change"))}}),a=acf.field_group.field_object.extend({type:"true_false",actions:{render_settings:"render"},events:{"change .acf-field-setting-ui input":"render"},render:function(e){this.setting('ui input[type="checkbox"]').prop("checked")?(this.setting("ui_on_text").show(),this.setting("ui_off_text").show()):(this.setting("ui_on_text").hide(),this.setting("ui_off_text").hide())}}),n=acf.field_group.field_object.extend({type:"date_picker",actions:{render_settings:"render"},events:{"change .acf-field-setting-display_format input":"render","change .acf-field-setting-return_format input":"render"},render:function(e){this.render_list(this.setting("display_format")),this.render_list(this.setting("return_format"))},render_list:function(e){var t=e.find("ul"),i=t.find('input[type="radio"]:checked'),a=t.find('input[type="text"]');"other"!=i.val()&&a.val(i.val())}}),d=n.extend({type:"date_time_picker"}),d=n.extend({type:"time_picker"}),l=acf.field_group.field_object.extend({type:"tab",actions:{render_settings:"render"},render:function(e){this.setting("name input").val("").trigger("change"),this.setting('required input[type="checkbox"]').prop("checked",!1).trigger("change")}}),f=l.extend({type:"message"});acf.field_group.screen=acf.model.extend({actions:{ready:"ready"},events:{"click #acf-field-key-hide":"toggle"},ready:function(){var e=$("#adv-settings"),t=e.find("#acf-append-show-on-screen");e.find(".metabox-prefs").append(t.html()),e.find(".metabox-prefs br").remove(),t.remove(),this.render()},toggle:function(e){var t=e.$el.prop("checked")?1:0;acf.update_user_setting("show_field_keys",t),this.render()},render:function(){var e=acf.serialize($("#adv-settings")),t=acf.field_group.$fields;e.show_field_keys?t.addClass("show-field-keys"):t.removeClass("show-field-keys")}}),acf.field_group.sub_fields=acf.model.extend({actions:{open_field:"update_field_parent",sortstop:"update_field_parent",duplicate_field:"duplicate_field",delete_field:"delete_field",change_field_type:"change_field_type"},fix_conditional_logic:function(e){var t={};e.each(function(){t[$(this).attr("data-orig")]=$(this).attr("data-key")}),e.find(".conditional-rule-param").each(function(){var e=$(this).val();e in t&&($(this).find('option[value="'+t[e]+'"]').exists()||$(this).append('<option value="'+t[e]+'">'+t[e]+"</option>"),$(this).val(t[e]))})},update_field_parent:function(e){if(e.hasClass("acf-field-object")){var t=e.parent().closest(".acf-field-object"),i=acf.get("post_id");t.exists()&&(i=acf.field_group.get_field_meta(t,"ID"),i||(i=acf.field_group.get_field_meta(t,"key"))),acf.field_group.update_field_meta(e,"parent",i),acf.do_action("update_field_parent",e,t)}},duplicate_field:function(e){var t=e.find(".acf-field-object");t.exists()&&(t.each(function(){var e=$(this).parent().closest(".acf-field-object"),t=acf.field_group.get_field_meta(e,"key");acf.field_group.wipe_field($(this)),acf.field_group.update_field_meta($(this),"parent",t),acf.field_group.save_field($(this))}),this.fix_conditional_logic(t))},delete_field:function(e){e.find(".acf-field-object").each(function(){acf.field_group.delete_field($(this),!1)})},change_field_type:function(e){e.find(".acf-field-object").each(function(){acf.field_group.delete_field($(this),!1)})}})}(jQuery);
|
assets/js/acf-input.js
CHANGED
@@ -2288,6 +2288,39 @@ var acf;
|
|
2288 |
},
|
2289 |
|
2290 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2291 |
/*
|
2292 |
* render_select
|
2293 |
*
|
@@ -2344,7 +2377,7 @@ var acf;
|
|
2344 |
|
2345 |
|
2346 |
// append select
|
2347 |
-
$optgroup.append( '<option value="' + item.value + '">' + item.label + '</option>' );
|
2348 |
|
2349 |
|
2350 |
// selectedIndex
|
@@ -4386,6 +4419,65 @@ var acf;
|
|
4386 |
|
4387 |
})(jQuery);
|
4388 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4389 |
(function($){
|
4390 |
|
4391 |
acf.fields.checkbox = acf.field.extend({
|
@@ -5023,7 +5115,7 @@ var acf;
|
|
5023 |
|
5024 |
|
5025 |
// input with :checked
|
5026 |
-
if( type == 'true_false' || type == 'checkbox' || type == 'radio' ) {
|
5027 |
|
5028 |
match = this.calculate_checkbox( rule, $trigger );
|
5029 |
|
@@ -11826,7 +11918,11 @@ var acf;
|
|
11826 |
|
11827 |
|
11828 |
// get options
|
11829 |
-
this.o = acf.get_data(
|
|
|
|
|
|
|
|
|
11830 |
|
11831 |
|
11832 |
// extra
|
@@ -12331,7 +12427,7 @@ var acf;
|
|
12331 |
ready: function( $el ){
|
12332 |
|
12333 |
// reference
|
12334 |
-
$el.find('.acf-field input').
|
12335 |
|
12336 |
// prvent defual
|
12337 |
// fixes chrome bug where 'hidden-by-tab' field throws focus error
|
@@ -13767,6 +13863,7 @@ var acf;
|
|
13767 |
// @codekit-prepend "../js/event-manager.js";
|
13768 |
// @codekit-prepend "../js/acf.js";
|
13769 |
// @codekit-prepend "../js/acf-ajax.js";
|
|
|
13770 |
// @codekit-prepend "../js/acf-checkbox.js";
|
13771 |
// @codekit-prepend "../js/acf-color-picker.js";
|
13772 |
// @codekit-prepend "../js/acf-conditional-logic.js";
|
2288 |
},
|
2289 |
|
2290 |
|
2291 |
+
/**
|
2292 |
+
* esc_html
|
2293 |
+
*
|
2294 |
+
* This function will escape HTML characters for safe use
|
2295 |
+
*
|
2296 |
+
* @source https://stackoverflow.com/questions/24816/escaping-html-strings-with-jquery
|
2297 |
+
* @date 20/9/17
|
2298 |
+
* @since 5.6.3
|
2299 |
+
*
|
2300 |
+
* @param n/a
|
2301 |
+
* @return n/a
|
2302 |
+
*/
|
2303 |
+
|
2304 |
+
esc_html: function( string ){
|
2305 |
+
|
2306 |
+
var entityMap = {
|
2307 |
+
'&': '&',
|
2308 |
+
'<': '<',
|
2309 |
+
'>': '>',
|
2310 |
+
'"': '"',
|
2311 |
+
"'": ''',
|
2312 |
+
'/': '/',
|
2313 |
+
'`': '`',
|
2314 |
+
'=': '='
|
2315 |
+
};
|
2316 |
+
|
2317 |
+
return String(string).replace(/[&<>"'`=\/]/g, function (s) {
|
2318 |
+
return entityMap[s];
|
2319 |
+
});
|
2320 |
+
|
2321 |
+
},
|
2322 |
+
|
2323 |
+
|
2324 |
/*
|
2325 |
* render_select
|
2326 |
*
|
2377 |
|
2378 |
|
2379 |
// append select
|
2380 |
+
$optgroup.append( '<option value="' + item.value + '">' + acf.esc_html(item.label) + '</option>' );
|
2381 |
|
2382 |
|
2383 |
// selectedIndex
|
4419 |
|
4420 |
})(jQuery);
|
4421 |
|
4422 |
+
(function($){
|
4423 |
+
|
4424 |
+
acf.fields.button_group = acf.field.extend({
|
4425 |
+
|
4426 |
+
type: 'button_group',
|
4427 |
+
$div: null,
|
4428 |
+
|
4429 |
+
events: {
|
4430 |
+
'click input[type="radio"]': 'click'
|
4431 |
+
},
|
4432 |
+
|
4433 |
+
focus: function(){
|
4434 |
+
|
4435 |
+
// focus on $select
|
4436 |
+
this.$div = this.$field.find('.acf-button-group');
|
4437 |
+
|
4438 |
+
|
4439 |
+
// get options
|
4440 |
+
this.o = acf.get_data(this.$div, {
|
4441 |
+
allow_null: 0
|
4442 |
+
});
|
4443 |
+
|
4444 |
+
},
|
4445 |
+
|
4446 |
+
click: function( e ){
|
4447 |
+
|
4448 |
+
// vars
|
4449 |
+
var $radio = e.$el;
|
4450 |
+
var $label = $radio.parent('label');
|
4451 |
+
var selected = $label.hasClass('selected');
|
4452 |
+
|
4453 |
+
|
4454 |
+
// remove previous selected
|
4455 |
+
this.$div.find('.selected').removeClass('selected');
|
4456 |
+
|
4457 |
+
|
4458 |
+
// add active class
|
4459 |
+
$label.addClass('selected');
|
4460 |
+
|
4461 |
+
|
4462 |
+
// allow null
|
4463 |
+
if( this.o.allow_null && selected ) {
|
4464 |
+
|
4465 |
+
// unselect
|
4466 |
+
e.$el.prop('checked', false);
|
4467 |
+
$label.removeClass('selected');
|
4468 |
+
|
4469 |
+
|
4470 |
+
// trigger change
|
4471 |
+
e.$el.trigger('change');
|
4472 |
+
|
4473 |
+
}
|
4474 |
+
|
4475 |
+
}
|
4476 |
+
|
4477 |
+
});
|
4478 |
+
|
4479 |
+
})(jQuery);
|
4480 |
+
|
4481 |
(function($){
|
4482 |
|
4483 |
acf.fields.checkbox = acf.field.extend({
|
5115 |
|
5116 |
|
5117 |
// input with :checked
|
5118 |
+
if( type == 'true_false' || type == 'checkbox' || type == 'radio' || type == 'button_group' ) {
|
5119 |
|
5120 |
match = this.calculate_checkbox( rule, $trigger );
|
5121 |
|
11918 |
|
11919 |
|
11920 |
// get options
|
11921 |
+
this.o = acf.get_data(this.$el, {
|
11922 |
+
save: '',
|
11923 |
+
type: '',
|
11924 |
+
taxonomy: ''
|
11925 |
+
});
|
11926 |
|
11927 |
|
11928 |
// extra
|
12427 |
ready: function( $el ){
|
12428 |
|
12429 |
// reference
|
12430 |
+
$el.find('.acf-field input').on('invalid', function( e ){
|
12431 |
|
12432 |
// prvent defual
|
12433 |
// fixes chrome bug where 'hidden-by-tab' field throws focus error
|
13863 |
// @codekit-prepend "../js/event-manager.js";
|
13864 |
// @codekit-prepend "../js/acf.js";
|
13865 |
// @codekit-prepend "../js/acf-ajax.js";
|
13866 |
+
// @codekit-prepend "../js/acf-button-group.js";
|
13867 |
// @codekit-prepend "../js/acf-checkbox.js";
|
13868 |
// @codekit-prepend "../js/acf-color-picker.js";
|
13869 |
// @codekit-prepend "../js/acf-conditional-logic.js";
|
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"undefined"!=typeof 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 t!==!1&&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){"undefined"==typeof 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(1+(t-e.length)).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),"undefined"==typeof 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")||[],a=i.indexOf(t);a<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){"undefined"==typeof i&&(i=null),keys=String(t).split(".");for(var a in keys){var t=keys[a];if("undefined"==typeof 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={nonce:acf.get("nonce"),post_id:acf.get("post_id")};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=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(),n=a+$(window).height();return i<=n&&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"undefined"!=typeof t[e]?t[e]:e};return e=e.replace(i,a),e=e.toLowerCase()},addslashes:function(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")},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+'">'+a.label+"</option>"),i==a.value&&e.prop("selectedIndex",t)})},duplicate:function(e){"undefined"!=typeof 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,"undefined"!=typeof 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:"refresh"},prepare:function(){this.active=1,this.refresh()},refresh:function(e){if(this.active){e=e||$("body");var t=this;this.render_tables(e),this.render_groups(e)}},render_tables:function(e){var t=this,i=e.find(".acf-table:visible");e.is("tr")&&(i=e.parent().parent()),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<a?(i.addClass("right"),s=target_l+target_w,n=target_t+target_h/2-tooltip_h/2):s+tooltip_w+a>$(window).width()?(i.addClass("left"),s=target_l-tooltip_w,n=target_t+target_h/2-tooltip_h/2):n-$(window).scrollTop()<a?(i.addClass("bottom"),n=target_t+target_h):i.addClass("top"),i.css({top:n,left:s}),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>')}}),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.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($){acf.conditional_logic=acf.model.extend({actions:{"prepare 20":"render","append 20":"render"},events:{"change .acf-field input":"change","change .acf-field textarea":"change","change .acf-field select":"change"},items:{},triggers:{},add:function(e,t){for(var i in t){var a=t[i];for(var n in a){var s=a[n],o=s.field,r=this.triggers[o]||{};r[e]=e,this.triggers[o]=r}}this.items[e]=t},render:function(e){e=e||!1;var t=acf.get_fields("",e,!0);this.render_fields(t),acf.do_action("refresh",e)},change:function(e){var t=e.$el,i=acf.get_field_wrap(t),a=i.data("key");if("undefined"==typeof this.triggers[a])return!1;$parent=i.parent();for(var n in this.triggers[a]){var s=this.triggers[a][n],o=acf.get_fields(s,$parent,!0);this.render_fields(o)}acf.do_action("refresh",$parent)},render_fields:function(e){var t=this;e.each(function(){t.render_field($(this))})},render_field:function(e){var t=e.data("key");if("undefined"==typeof this.items[t])return!1;for(var i=!1,a=this.items[t],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.get_trigger(e,l.field);if(!this.calculate(l,c,e)){o=!1;break}}if(o){i=!0;break}}i?this.show_field(e):this.hide_field(e)},show_field:function(e){var t=e.data("key");e.removeClass("hidden-by-conditional-logic"),acf.enable_form(e,"condition_"+t),acf.do_action("show_field",e,"conditional_logic")},hide_field:function(e){var t=e.data("key");e.addClass("hidden-by-conditional-logic"),acf.disable_form(e,"condition_"+t),acf.do_action("hide_field",e,"conditional_logic")},get_trigger:function(e,t){var i=acf.get_selector(t),a=e.siblings(i);if(!a.exists()){var n=acf.get_selector();e.parents(n).each(function(){if(a=$(this).siblings(i),a.exists())return!1})}return!!a.exists()&&a},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?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}})}(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&&"undefined"!=typeof $.datepicker&&(l10n.isRTL=t,$.datepicker.regional[e]=l10n,$.datepicker.setDefaults(l10n))},init:function(e,t){"undefined"!=typeof $.datepicker&&(t=t||{},e.datepicker(t),$("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&&"undefined"!=typeof $.timepicker&&(l10n.isRTL=t,$.timepicker.regional[e]=l10n,$.timepicker.setDefaults(l10n))},init:function(e,t){"undefined"!=typeof $.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"]'),
|
2 |
-
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(),!o)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,a=this.$search;a.val(this.$el.find(".input-address").val());var n=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],n),acf.isset(window,"google","maps","places","Autocomplete")){var s=new google.maps.places.Autocomplete(this.$search[0]);s.bindTo("bounds",this.map),google.maps.event.addListener(s,"place_changed",function(t){var i=this.getPlace();e.search(i)}),this.map.autocomplete=s}var o=acf.apply_filters("google_map_marker_args",{draggable:!0,raiseOnDrag:!0,map:this.map},this.$field);this.map.marker=new google.maps.Marker(o),this.map.$el=i,this.map.$field=t;var r=i.find(".input-lat").val(),l=i.find(".input-lng").val();r&&l&&this.update(r,l).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(){return!!this.is_ready()&&(google.maps.event.trigger(this.map,"resize"),void 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;return navigator.geolocation?(this.$el.addClass("-loading"),void navigator.geolocation.getCurrentPosition(function(e){t.$el.removeClass("-loading");var i=e.coords.latitude,a=e.coords.longitude;t.update(i,a).sync().center()})):(alert(acf._e("google_map","browser_support")),this)},_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){var t=this.$search.val();t?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(),!o)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"undefined"!=typeof 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"undefined"!=typeof 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(e.indexOf(t)!==-1){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();return t?void(t!=e&&this.search()):void this.clear()},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();return this.$el.removeClass("is-loading"),e&&e.html?(this.$el.removeClass("has-error").addClass("has-value"),this.$input.val(t),this.$title.html(t),void this.$embed.html(e.html)):void this.$el.removeClass("has-value").addClass("has-error")},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(){return $(this).text()==i?(a.append($(this).siblings("ul").html()),void $(this).parent().remove()):(i=$(this).text(),void(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"undefined"!=typeof this[i]&&"undefined"!=typeof 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),"undefined"!=typeof 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++,"undefined"!=typeof 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),"undefined"==typeof 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},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={
|
3 |
-
"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");return i.text()==e?(t.append(a.children()),void $(this).remove()):(e=i.text(),void(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(){var e=$($(this).data("data").element);e.detach().appendTo(t),s.trigger("change")})}}),t.on("select2:select",function(e){var i=$(e.params.data.element);i.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");return null!==t&&a.text()==t.text()?(e.append(i.children()),void $(this).remove()):(e=i,void(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(){return!(!this.$select.exists()||!this.o.ui)&&void acf.select2.init(this.$select,this.o,this.$field)},remove:function(){return!(!this.$select.exists()||!this.o.ui)&&void 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($){acf.fields.tab=acf.field.extend({type:"tab",$el:null,$wrap:null,actions:{prepare:"initialize",append:"initialize",hide:"hide",show:"show"},focus:function(){this.$el=this.$field.find(".acf-tab"),this.o=this.$el.data(),this.o.key=this.$field.data("key"),this.o.text=this.$el.html()},initialize:function(){this.$field.is("td")||e.add_tab(this.$field,this.o)},hide:function(e,t){if("conditional_logic"==t){var i=e.data("key"),a=e.prevAll(".acf-tab-wrap"),n=a.find('a[data-key="'+i+'"]'),s=n.parent();a.exists()&&(s.addClass("hidden-by-conditional-logic"),setTimeout(function(){e.nextUntil(".acf-field-tab",".acf-field").each(function(){$(this).hasClass("hidden-by-conditional-logic")||(acf.conditional_logic.hide_field($(this)),$(this).addClass("-hbcl-"+i))}),s.hasClass("active")&&a.find("li:not(.hidden-by-conditional-logic):first a").trigger("click")},0))}},show:function(e,t){if("conditional_logic"==t){var i=e.data("key"),a=e.prevAll(".acf-tab-wrap"),n=a.find('a[data-key="'+i+'"]'),s=n.parent();a.exists()&&(s.removeClass("hidden-by-conditional-logic"),setTimeout(function(){e.siblings(".acf-field.-hbcl-"+i).each(function(){acf.conditional_logic.show_field($(this)),$(this).removeClass("-hbcl-"+i)});var t=s.siblings(".active");t.exists()&&!t.hasClass("hidden-by-conditional-logic")||n.trigger("click")},0))}}});var e=acf.model.extend({actions:{"prepare 15":"render","append 15":"render","refresh 15":"render"},events:{"click .acf-tab-button":"_click"},render:function(e){$(".acf-tab-wrap",e).each(function(){var e=$(this),t=e.parent();if(e.find("li.active").exists()||e.find("li:not(.hidden-by-conditional-logic):first a").trigger("click"),t.hasClass("-sidebar")){var i=t.is("td")?"height":"min-height",a=e.position().top+e.children("ul").outerHeight(!0)-1;t.css(i,a)}})},add_group:function(e,t){var i=e.parent(),a="";return i.hasClass("acf-fields")&&"left"==t.placement?i.addClass("-sidebar"):t.placement="top",a=i.is("tbody")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="acf-hl acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap -'+t.placement+'"><ul class="acf-hl acf-tab-group"></ul></div>',$group=$(a),e.before($group),$group},add_tab:function(e,t){var i=e.siblings(".acf-tab-wrap").last();i.exists()?t.endpoint&&(i=this.add_group(e,t)):i=this.add_group(e,t);var a=$('<li><a class="acf-tab-button" href="#" data-key="'+t.key+'">'+t.text+"</a></li>");""===t.text&&a.hide(),i.find("ul").append(a),e.hasClass("hidden-by-conditional-logic")&&a.addClass("hidden-by-conditional-logic")},_click:function(e){e.preventDefault();var t=this,i=e.$el,a=i.closest(".acf-tab-wrap"),n=i.data("key"),s="";i.parent().addClass("active").siblings().removeClass("active"),a.nextUntil(".acf-tab-wrap",".acf-field").each(function(){var e=$(this);return("tab"!=e.data("type")||(s=e.data("key"),!e.hasClass("endpoint")))&&void(s===n?e.hasClass("hidden-by-tab")&&(e.removeClass("hidden-by-tab"),acf.do_action("show_field",$(this),"tab")):e.hasClass("hidden-by-tab")||(e.addClass("hidden-by-tab"),acf.do_action("hide_field",$(this),"tab")))}),acf.do_action("refresh",a.parent()),i.trigger("blur")}}),t=acf.model.extend({active:1,actions:{add_field_error:"add_field_error"},add_field_error:function(e){if(this.active&&e.hasClass("hidden-by-tab")){var t=this,i=e.prevAll(".acf-field-tab:first"),a=e.prevAll(".acf-tab-wrap:first");a.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("undefined"!=typeof $.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"),!e)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){var t=e.$el.prop("checked");t?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),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");return!!e.exists()&&void 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")}}})}(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(e.indexOf("://")!==-1);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){e.find(".acf-field input").filter('[type="number"], [type="email"], [type="url"]').on("invalid",function(e){e.preventDefault(),acf.validation.errors.push({input:$(this).attr("name"),message:e.target.validationMessage}),acf.validation.fetch($(this).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];$.inArray(n.input,a)===-1&&e.errors.push(n)}return this.errors=[],e},click_message:function(e){e.preventDefault(),acf.remove_el(e.$el.parent())},click_ignore:function(e){this.ignore=1,this.$trigger=e.$el},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");return t.exists()&&t.val()?(this.toggle(e.$el,"unlock"),!0):(e.preventDefault(),void 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||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;var i=null,a=0,n=acf._e("validation_failed");if(t.errors&&t.errors.length>0){for(var s in t.errors){var o=t.errors[s];if(o.input){var r=e.find('[name="'+o.input+'"]').first();if(r.exists()||(r=e.find('[name^="'+o.input+'"]').first()),r.exists()){a++;var l=acf.get_field_wrap(r);this.add_error(l,o.message),null===i&&(i=l)}}else n+=". "+o.message}1==a?n+=". "+acf._e("validation_failed_1"):a>1&&(n+=". "+acf._e("validation_failed_2").replace("%d",a))}var c=e.children(".acf-error-message");c.exists()||(c=$('<div class="acf-error-message"><p></p><a href="#" class="acf-icon -cancel small"></a></div>'),e.prepend(c)),c.children("p").html(n),null===i&&(i=c),setTimeout(function(){$("html, body").animate({scrollTop:i.offset().top-$(window).height()/2},500)},1)},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),acf.do_action("add_field_error",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)},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(){if("undefined"==typeof tinyMCEPreInit)return!1;var e={tinymce:tinyMCEPreInit.mceInit.acf_content,quicktags:tinyMCEPreInit.qtInit.acf_content};return e},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&&"undefined"!=typeof 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),acf.isset(tinymce,"ui","FloatPanel")&&(tinymce.ui.FloatPanel.zIndex=9e5),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=",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="",a.buttons&&(l=","+a.buttons+",");for(r in edButtons)edButtons[r]&&(o=edButtons[r].id,l&&c.indexOf(","+o+",")!==-1&&l.indexOf(","+o+",")===-1||edButtons[r].instance&&edButtons[r].instance!==instanceId||(n[o]=edButtons[r],edButtons[r].html&&(s+=edButtons[r].html(i+"_"))));l&&l.indexOf(",dfw,")!==-1&&(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&&(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"undefined"!=typeof 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 t!==!1&&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){"undefined"==typeof 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(1+(t-e.length)).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),"undefined"==typeof 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")||[],a=i.indexOf(t);a<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){"undefined"==typeof i&&(i=null),keys=String(t).split(".");for(var a in keys){var t=keys[a];if("undefined"==typeof 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={nonce:acf.get("nonce"),post_id:acf.get("post_id")};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=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(),n=a+$(window).height();return i<=n&&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"undefined"!=typeof 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){"undefined"!=typeof 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,"undefined"!=typeof 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:"refresh"},prepare:function(){this.active=1,this.refresh()},refresh:function(e){if(this.active){e=e||$("body");var t=this;this.render_tables(e),this.render_groups(e)}},render_tables:function(e){var t=this,i=e.find(".acf-table:visible");e.is("tr")&&(i=e.parent().parent()),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<a?(i.addClass("right"),s=target_l+target_w,n=target_t+target_h/2-tooltip_h/2):s+tooltip_w+a>$(window).width()?(i.addClass("left"),s=target_l-tooltip_w,n=target_t+target_h/2-tooltip_h/2):n-$(window).scrollTop()<a?(i.addClass("bottom"),n=target_t+target_h):i.addClass("top"),i.css({top:n,left:s}),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>')}}),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($){acf.conditional_logic=acf.model.extend({actions:{"prepare 20":"render","append 20":"render"},events:{"change .acf-field input":"change","change .acf-field textarea":"change","change .acf-field select":"change"},items:{},triggers:{},add:function(e,t){for(var i in t){var a=t[i];for(var n in a){var s=a[n],o=s.field,r=this.triggers[o]||{};r[e]=e,this.triggers[o]=r}}this.items[e]=t},render:function(e){e=e||!1;var t=acf.get_fields("",e,!0);this.render_fields(t),acf.do_action("refresh",e)},change:function(e){var t=e.$el,i=acf.get_field_wrap(t),a=i.data("key");if("undefined"==typeof this.triggers[a])return!1;$parent=i.parent();for(var n in this.triggers[a]){var s=this.triggers[a][n],o=acf.get_fields(s,$parent,!0);this.render_fields(o)}acf.do_action("refresh",$parent)},render_fields:function(e){var t=this;e.each(function(){t.render_field($(this))})},render_field:function(e){var t=e.data("key");if("undefined"==typeof this.items[t])return!1;for(var i=!1,a=this.items[t],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.get_trigger(e,l.field);if(!this.calculate(l,c,e)){o=!1;break}}if(o){i=!0;break}}i?this.show_field(e):this.hide_field(e)},show_field:function(e){var t=e.data("key");e.removeClass("hidden-by-conditional-logic"),acf.enable_form(e,"condition_"+t),acf.do_action("show_field",e,"conditional_logic")},hide_field:function(e){var t=e.data("key");e.addClass("hidden-by-conditional-logic"),acf.disable_form(e,"condition_"+t),acf.do_action("hide_field",e,"conditional_logic")},get_trigger:function(e,t){var i=acf.get_selector(t),a=e.siblings(i);if(!a.exists()){var n=acf.get_selector();e.parents(n).each(function(){if(a=$(this).siblings(i),a.exists())return!1})}return!!a.exists()&&a},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}})}(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&&"undefined"!=typeof $.datepicker&&(l10n.isRTL=t,$.datepicker.regional[e]=l10n,$.datepicker.setDefaults(l10n))},init:function(e,t){"undefined"!=typeof $.datepicker&&(t=t||{},e.datepicker(t),$("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");
|
2 |
+
l10n=acf._e("date_time_picker"),l10n&&"undefined"!=typeof $.timepicker&&(l10n.isRTL=t,$.timepicker.regional[e]=l10n,$.timepicker.setDefaults(l10n))},init:function(e,t){"undefined"!=typeof $.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(),!o)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,a=this.$search;a.val(this.$el.find(".input-address").val());var n=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],n),acf.isset(window,"google","maps","places","Autocomplete")){var s=new google.maps.places.Autocomplete(this.$search[0]);s.bindTo("bounds",this.map),google.maps.event.addListener(s,"place_changed",function(t){var i=this.getPlace();e.search(i)}),this.map.autocomplete=s}var o=acf.apply_filters("google_map_marker_args",{draggable:!0,raiseOnDrag:!0,map:this.map},this.$field);this.map.marker=new google.maps.Marker(o),this.map.$el=i,this.map.$field=t;var r=i.find(".input-lat").val(),l=i.find(".input-lng").val();r&&l&&this.update(r,l).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(){return!!this.is_ready()&&(google.maps.event.trigger(this.map,"resize"),void 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;return navigator.geolocation?(this.$el.addClass("-loading"),void navigator.geolocation.getCurrentPosition(function(e){t.$el.removeClass("-loading");var i=e.coords.latitude,a=e.coords.longitude;t.update(i,a).sync().center()})):(alert(acf._e("google_map","browser_support")),this)},_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){var t=this.$search.val();t?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(),!o)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"undefined"!=typeof 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"undefined"!=typeof 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(e.indexOf(t)!==-1){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();return t?void(t!=e&&this.search()):void this.clear()},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();return this.$el.removeClass("is-loading"),e&&e.html?(this.$el.removeClass("has-error").addClass("has-value"),this.$input.val(t),this.$title.html(t),void this.$embed.html(e.html)):void this.$el.removeClass("has-value").addClass("has-error")},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(){return $(this).text()==i?(a.append($(this).siblings("ul").html()),void $(this).parent().remove()):(i=$(this).text(),void(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"undefined"!=typeof this[i]&&"undefined"!=typeof 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),"undefined"!=typeof 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++,"undefined"!=typeof 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),"undefined"==typeof 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},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>"),
|
3 |
+
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");return i.text()==e?(t.append(a.children()),void $(this).remove()):(e=i.text(),void(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(){var e=$($(this).data("data").element);e.detach().appendTo(t),s.trigger("change")})}}),t.on("select2:select",function(e){var i=$(e.params.data.element);i.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");return null!==t&&a.text()==t.text()?(e.append(i.children()),void $(this).remove()):(e=i,void(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(){return!(!this.$select.exists()||!this.o.ui)&&void acf.select2.init(this.$select,this.o,this.$field)},remove:function(){return!(!this.$select.exists()||!this.o.ui)&&void 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($){acf.fields.tab=acf.field.extend({type:"tab",$el:null,$wrap:null,actions:{prepare:"initialize",append:"initialize",hide:"hide",show:"show"},focus:function(){this.$el=this.$field.find(".acf-tab"),this.o=this.$el.data(),this.o.key=this.$field.data("key"),this.o.text=this.$el.html()},initialize:function(){this.$field.is("td")||e.add_tab(this.$field,this.o)},hide:function(e,t){if("conditional_logic"==t){var i=e.data("key"),a=e.prevAll(".acf-tab-wrap"),n=a.find('a[data-key="'+i+'"]'),s=n.parent();a.exists()&&(s.addClass("hidden-by-conditional-logic"),setTimeout(function(){e.nextUntil(".acf-field-tab",".acf-field").each(function(){$(this).hasClass("hidden-by-conditional-logic")||(acf.conditional_logic.hide_field($(this)),$(this).addClass("-hbcl-"+i))}),s.hasClass("active")&&a.find("li:not(.hidden-by-conditional-logic):first a").trigger("click")},0))}},show:function(e,t){if("conditional_logic"==t){var i=e.data("key"),a=e.prevAll(".acf-tab-wrap"),n=a.find('a[data-key="'+i+'"]'),s=n.parent();a.exists()&&(s.removeClass("hidden-by-conditional-logic"),setTimeout(function(){e.siblings(".acf-field.-hbcl-"+i).each(function(){acf.conditional_logic.show_field($(this)),$(this).removeClass("-hbcl-"+i)});var t=s.siblings(".active");t.exists()&&!t.hasClass("hidden-by-conditional-logic")||n.trigger("click")},0))}}});var e=acf.model.extend({actions:{"prepare 15":"render","append 15":"render","refresh 15":"render"},events:{"click .acf-tab-button":"_click"},render:function(e){$(".acf-tab-wrap",e).each(function(){var e=$(this),t=e.parent();if(e.find("li.active").exists()||e.find("li:not(.hidden-by-conditional-logic):first a").trigger("click"),t.hasClass("-sidebar")){var i=t.is("td")?"height":"min-height",a=e.position().top+e.children("ul").outerHeight(!0)-1;t.css(i,a)}})},add_group:function(e,t){var i=e.parent(),a="";return i.hasClass("acf-fields")&&"left"==t.placement?i.addClass("-sidebar"):t.placement="top",a=i.is("tbody")?'<tr class="acf-tab-wrap"><td colspan="2"><ul class="acf-hl acf-tab-group"></ul></td></tr>':'<div class="acf-tab-wrap -'+t.placement+'"><ul class="acf-hl acf-tab-group"></ul></div>',$group=$(a),e.before($group),$group},add_tab:function(e,t){var i=e.siblings(".acf-tab-wrap").last();i.exists()?t.endpoint&&(i=this.add_group(e,t)):i=this.add_group(e,t);var a=$('<li><a class="acf-tab-button" href="#" data-key="'+t.key+'">'+t.text+"</a></li>");""===t.text&&a.hide(),i.find("ul").append(a),e.hasClass("hidden-by-conditional-logic")&&a.addClass("hidden-by-conditional-logic")},_click:function(e){e.preventDefault();var t=this,i=e.$el,a=i.closest(".acf-tab-wrap"),n=i.data("key"),s="";i.parent().addClass("active").siblings().removeClass("active"),a.nextUntil(".acf-tab-wrap",".acf-field").each(function(){var e=$(this);return("tab"!=e.data("type")||(s=e.data("key"),!e.hasClass("endpoint")))&&void(s===n?e.hasClass("hidden-by-tab")&&(e.removeClass("hidden-by-tab"),acf.do_action("show_field",$(this),"tab")):e.hasClass("hidden-by-tab")||(e.addClass("hidden-by-tab"),acf.do_action("hide_field",$(this),"tab")))}),acf.do_action("refresh",a.parent()),i.trigger("blur")}}),t=acf.model.extend({active:1,actions:{add_field_error:"add_field_error"},add_field_error:function(e){if(this.active&&e.hasClass("hidden-by-tab")){var t=this,i=e.prevAll(".acf-field-tab:first"),a=e.prevAll(".acf-tab-wrap:first");a.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("undefined"!=typeof $.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"),!e)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){var t=e.$el.prop("checked");t?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");return!!e.exists()&&void 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")}}})}(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(e.indexOf("://")!==-1);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){e.find(".acf-field input").on("invalid",function(e){e.preventDefault(),acf.validation.errors.push({input:$(this).attr("name"),message:e.target.validationMessage}),acf.validation.fetch($(this).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];$.inArray(n.input,a)===-1&&e.errors.push(n)}return this.errors=[],e},click_message:function(e){e.preventDefault(),acf.remove_el(e.$el.parent())},click_ignore:function(e){this.ignore=1,this.$trigger=e.$el},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");return t.exists()&&t.val()?(this.toggle(e.$el,"unlock"),!0):(e.preventDefault(),void 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||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;var i=null,a=0,n=acf._e("validation_failed");if(t.errors&&t.errors.length>0){for(var s in t.errors){var o=t.errors[s];if(o.input){var r=e.find('[name="'+o.input+'"]').first();if(r.exists()||(r=e.find('[name^="'+o.input+'"]').first()),r.exists()){a++;var l=acf.get_field_wrap(r);this.add_error(l,o.message),null===i&&(i=l)}}else n+=". "+o.message}1==a?n+=". "+acf._e("validation_failed_1"):a>1&&(n+=". "+acf._e("validation_failed_2").replace("%d",a))}var c=e.children(".acf-error-message");c.exists()||(c=$('<div class="acf-error-message"><p></p><a href="#" class="acf-icon -cancel small"></a></div>'),e.prepend(c)),c.children("p").html(n),null===i&&(i=c),setTimeout(function(){$("html, body").animate({scrollTop:i.offset().top-$(window).height()/2},500)},1)},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),acf.do_action("add_field_error",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)},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(){if("undefined"==typeof tinyMCEPreInit)return!1;var e={tinymce:tinyMCEPreInit.mceInit.acf_content,quicktags:tinyMCEPreInit.qtInit.acf_content};return e},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&&"undefined"!=typeof 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),acf.isset(tinymce,"ui","FloatPanel")&&(tinymce.ui.FloatPanel.zIndex=9e5),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=",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="",a.buttons&&(l=","+a.buttons+",");for(r in edButtons)edButtons[r]&&(o=edButtons[r].id,l&&c.indexOf(","+o+",")!==-1&&l.indexOf(","+o+",")===-1||edButtons[r].instance&&edButtons[r].instance!==instanceId||(n[o]=edButtons[r],edButtons[r].html&&(s+=edButtons[r].html(i+"_"))));l&&l.indexOf(",dfw,")!==-1&&(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&&(switchEditors.go(e,"tmce"),!0)}})}(jQuery);
|
includes/admin/admin-field-groups.php
CHANGED
@@ -604,7 +604,7 @@ class acf_admin_field_groups {
|
|
604 |
<div class="acf-box">
|
605 |
<div class="inner">
|
606 |
<h2><?php echo acf_get_setting('name'); ?></h2>
|
607 |
-
<p><?php _e('Customise WordPress with powerful, professional and intuitive fields.'); ?></p>
|
608 |
|
609 |
<h3><?php _e("Changelog",'acf'); ?></h3>
|
610 |
<p><?php
|
604 |
<div class="acf-box">
|
605 |
<div class="inner">
|
606 |
<h2><?php echo acf_get_setting('name'); ?></h2>
|
607 |
+
<p><?php _e('Customise WordPress with powerful, professional and intuitive fields.','acf'); ?></p>
|
608 |
|
609 |
<h3><?php _e("Changelog",'acf'); ?></h3>
|
610 |
<p><?php
|
includes/admin/views/field-group-field.php
CHANGED
@@ -68,7 +68,6 @@ $atts['class'] = str_replace('_', '-', $atts['class']);
|
|
68 |
'instructions' => __('This is the name which will appear on the EDIT page','acf'),
|
69 |
'name' => 'label',
|
70 |
'type' => 'text',
|
71 |
-
'required' => 1,
|
72 |
'class' => 'field-label'
|
73 |
), true);
|
74 |
|
@@ -79,7 +78,6 @@ $atts['class'] = str_replace('_', '-', $atts['class']);
|
|
79 |
'instructions' => __('Single word, no spaces. Underscores and dashes allowed','acf'),
|
80 |
'name' => 'name',
|
81 |
'type' => 'text',
|
82 |
-
'required' => 1,
|
83 |
'class' => 'field-name'
|
84 |
), true);
|
85 |
|
@@ -88,7 +86,6 @@ $atts['class'] = str_replace('_', '-', $atts['class']);
|
|
88 |
acf_render_field_setting($field, array(
|
89 |
'label' => __('Field Type','acf'),
|
90 |
'instructions' => '',
|
91 |
-
'required' => 1,
|
92 |
'type' => 'select',
|
93 |
'name' => 'type',
|
94 |
'choices' => acf_get_field_types(),
|
68 |
'instructions' => __('This is the name which will appear on the EDIT page','acf'),
|
69 |
'name' => 'label',
|
70 |
'type' => 'text',
|
|
|
71 |
'class' => 'field-label'
|
72 |
), true);
|
73 |
|
78 |
'instructions' => __('Single word, no spaces. Underscores and dashes allowed','acf'),
|
79 |
'name' => 'name',
|
80 |
'type' => 'text',
|
|
|
81 |
'class' => 'field-name'
|
82 |
), true);
|
83 |
|
86 |
acf_render_field_setting($field, array(
|
87 |
'label' => __('Field Type','acf'),
|
88 |
'instructions' => '',
|
|
|
89 |
'type' => 'select',
|
90 |
'name' => 'type',
|
91 |
'choices' => acf_get_field_types(),
|
includes/api/api-field.php
CHANGED
@@ -284,7 +284,10 @@ function acf_get_field_label( $field ) {
|
|
284 |
$label = $field['label'];
|
285 |
|
286 |
|
287 |
-
|
|
|
|
|
|
|
288 |
|
289 |
|
290 |
// filter for 3rd party customization
|
@@ -413,23 +416,21 @@ function acf_render_field_wrap( $field, $el = 'div', $instruction = 'label' ) {
|
|
413 |
if( !$field ) return;
|
414 |
|
415 |
|
416 |
-
//
|
417 |
-
$elements =
|
418 |
'div' => 'div',
|
419 |
'tr' => 'td',
|
420 |
'ul' => 'li',
|
421 |
'ol' => 'li',
|
422 |
'dl' => 'dt',
|
423 |
'td' => 'div' // special case for sub field!
|
424 |
-
)
|
425 |
-
|
426 |
|
427 |
-
// validate $el
|
428 |
-
if( !array_key_exists($el, $elements) ) {
|
429 |
-
|
430 |
-
$el = 'div';
|
431 |
|
432 |
-
|
|
|
|
|
|
|
433 |
|
434 |
|
435 |
// wrapper
|
@@ -446,9 +447,7 @@ function acf_render_field_wrap( $field, $el = 'div', $instruction = 'label' ) {
|
|
446 |
|
447 |
// add required
|
448 |
if( $field['required'] ) {
|
449 |
-
|
450 |
$wrapper['data-required'] = 1;
|
451 |
-
|
452 |
}
|
453 |
|
454 |
|
@@ -493,7 +492,7 @@ function acf_render_field_wrap( $field, $el = 'div', $instruction = 'label' ) {
|
|
493 |
|
494 |
if( $el == 'tr' || $el == 'td' ) {
|
495 |
|
496 |
-
|
497 |
|
498 |
} elseif( $width > 0 && $width < 100 ) {
|
499 |
|
@@ -504,43 +503,87 @@ function acf_render_field_wrap( $field, $el = 'div', $instruction = 'label' ) {
|
|
504 |
|
505 |
|
506 |
// remove empty attributes
|
507 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
508 |
|
509 |
-
|
510 |
-
|
511 |
-
unset($wrapper[$k]);
|
512 |
-
|
513 |
-
}
|
514 |
|
515 |
}
|
516 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
517 |
|
518 |
// vars
|
519 |
-
$
|
520 |
|
521 |
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
<
|
526 |
-
|
527 |
-
|
528 |
-
<?php endif; ?>
|
529 |
-
</<?php echo $elements[ $el ]; ?>>
|
530 |
-
<?php endif; ?>
|
531 |
-
<<?php echo $elements[ $el ]; ?> class="acf-input">
|
532 |
-
<?php acf_render_field( $field ); ?>
|
533 |
-
<?php if( $instruction == 'field' && $field['instructions'] ): ?>
|
534 |
-
<p class="description"><?php echo $field['instructions']; ?></p>
|
535 |
-
<?php endif; ?>
|
536 |
-
</<?php echo $elements[ $el ]; ?>>
|
537 |
-
<?php if( !empty($field['conditional_logic'])): ?>
|
538 |
-
<script type="text/javascript">
|
539 |
-
if(typeof acf !== 'undefined'){ acf.conditional_logic.add( '<?php echo $field['key']; ?>', <?php echo json_encode($field['conditional_logic']); ?>); }
|
540 |
-
</script>
|
541 |
-
<?php endif; ?>
|
542 |
-
</<?php echo $el; ?>>
|
543 |
-
<?php
|
544 |
|
545 |
}
|
546 |
|
@@ -1243,7 +1286,7 @@ function acf_update_field( $field = false, $specific = false ) {
|
|
1243 |
|
1244 |
|
1245 |
// allow fields to contain the same name
|
1246 |
-
add_filter( 'wp_unique_post_slug', 'acf_update_field_wp_unique_post_slug',
|
1247 |
|
1248 |
|
1249 |
// slash data
|
@@ -1691,7 +1734,7 @@ function acf_prepare_fields_for_import( $fields = false ) {
|
|
1691 |
|
1692 |
|
1693 |
// allow multiple fields to be returned ($field + $sub_fields)
|
1694 |
-
if(
|
1695 |
|
1696 |
// merge in $field (1 or more fields)
|
1697 |
array_splice($fields, $i, 1, $field);
|
284 |
$label = $field['label'];
|
285 |
|
286 |
|
287 |
+
// required
|
288 |
+
if( $field['required'] ) {
|
289 |
+
$label .= ' <span class="acf-required">*</span>';
|
290 |
+
}
|
291 |
|
292 |
|
293 |
// filter for 3rd party customization
|
416 |
if( !$field ) return;
|
417 |
|
418 |
|
419 |
+
// elements
|
420 |
+
$elements = array(
|
421 |
'div' => 'div',
|
422 |
'tr' => 'td',
|
423 |
'ul' => 'li',
|
424 |
'ol' => 'li',
|
425 |
'dl' => 'dt',
|
426 |
'td' => 'div' // special case for sub field!
|
427 |
+
);
|
|
|
428 |
|
|
|
|
|
|
|
|
|
429 |
|
430 |
+
// vars
|
431 |
+
$el = isset($elements[ $el ]) ? $el : 'div';
|
432 |
+
$el2 = $elements[ $el ];
|
433 |
+
$show_label = ($el !== 'td') ? true : false;
|
434 |
|
435 |
|
436 |
// wrapper
|
447 |
|
448 |
// add required
|
449 |
if( $field['required'] ) {
|
|
|
450 |
$wrapper['data-required'] = 1;
|
|
|
451 |
}
|
452 |
|
453 |
|
492 |
|
493 |
if( $el == 'tr' || $el == 'td' ) {
|
494 |
|
495 |
+
// do nothing
|
496 |
|
497 |
} elseif( $width > 0 && $width < 100 ) {
|
498 |
|
503 |
|
504 |
|
505 |
// remove empty attributes
|
506 |
+
$wrapper = array_filter($wrapper);
|
507 |
+
|
508 |
+
|
509 |
+
// html
|
510 |
+
?>
|
511 |
+
<<?php echo $el; ?> <?php acf_esc_attr_e($wrapper); ?>>
|
512 |
+
<?php if( $show_label ): ?>
|
513 |
+
<<?php echo $el2; ?> class="acf-label">
|
514 |
+
<?php acf_the_field_wrap_label( $field ); ?>
|
515 |
+
<?php if( $instruction == 'label' ) acf_the_field_wrap_instructions( $field ); ?>
|
516 |
+
</<?php echo $el2; ?>>
|
517 |
+
<?php endif; ?>
|
518 |
+
<<?php echo $el2; ?> class="acf-input">
|
519 |
+
<?php acf_render_field( $field ); ?>
|
520 |
+
<?php if( $instruction == 'field' ) acf_the_field_wrap_instructions( $field ); ?>
|
521 |
+
<?php if( !empty($field['conditional_logic']) ): ?>
|
522 |
+
<script type="text/javascript">
|
523 |
+
if( typeof acf !== 'undefined' ) {
|
524 |
+
acf.conditional_logic.add( '<?php echo esc_js($field['key']); ?>', <?php echo wp_json_encode( $field['conditional_logic'] ); ?> );
|
525 |
+
}
|
526 |
+
</script>
|
527 |
+
<?php endif; ?>
|
528 |
+
</<?php echo $el2; ?>>
|
529 |
+
</<?php echo $el; ?>>
|
530 |
+
<?php
|
531 |
+
|
532 |
+
}
|
533 |
+
|
534 |
+
|
535 |
+
/**
|
536 |
+
* acf_render_field_wrap_label
|
537 |
+
*
|
538 |
+
* This function will maybe output the field's label
|
539 |
+
*
|
540 |
+
* @date 19/9/17
|
541 |
+
* @since 5.6.3
|
542 |
+
*
|
543 |
+
* @param array $field
|
544 |
+
* @return n/a
|
545 |
+
*/
|
546 |
+
|
547 |
+
function acf_the_field_wrap_label( $field ) {
|
548 |
+
|
549 |
+
// vars
|
550 |
+
$label = acf_get_field_label( $field );
|
551 |
+
|
552 |
+
|
553 |
+
// check
|
554 |
+
if( $label ) {
|
555 |
|
556 |
+
echo '<label' . ($field['id'] ? ' for="' . esc_attr($field['id']) . '"' : '' ) . '>' . acf_esc_html($label) . '</label>';
|
|
|
|
|
|
|
|
|
557 |
|
558 |
}
|
559 |
|
560 |
+
}
|
561 |
+
|
562 |
+
|
563 |
+
/**
|
564 |
+
* acf_render_field_wrap_description
|
565 |
+
*
|
566 |
+
* This function will maybe output the field's instructions
|
567 |
+
*
|
568 |
+
* @date 19/9/17
|
569 |
+
* @since 5.6.3
|
570 |
+
*
|
571 |
+
* @param array $field
|
572 |
+
* @return n/a
|
573 |
+
*/
|
574 |
+
|
575 |
+
function acf_the_field_wrap_instructions( $field ) {
|
576 |
|
577 |
// vars
|
578 |
+
$instructions = $field['instructions'];
|
579 |
|
580 |
|
581 |
+
// check
|
582 |
+
if( $instructions ) {
|
583 |
+
|
584 |
+
echo '<p class="description">' . acf_esc_html($instructions) . '</p>';
|
585 |
+
|
586 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
587 |
|
588 |
}
|
589 |
|
1286 |
|
1287 |
|
1288 |
// allow fields to contain the same name
|
1289 |
+
add_filter( 'wp_unique_post_slug', 'acf_update_field_wp_unique_post_slug', 999, 6 );
|
1290 |
|
1291 |
|
1292 |
// slash data
|
1734 |
|
1735 |
|
1736 |
// allow multiple fields to be returned ($field + $sub_fields)
|
1737 |
+
if( !isset($field['key']) && isset($field[0]) ) {
|
1738 |
|
1739 |
// merge in $field (1 or more fields)
|
1740 |
array_splice($fields, $i, 1, $field);
|
includes/api/api-helpers.php
CHANGED
@@ -538,7 +538,7 @@ function acf_nonce_input( $nonce = '' ) {
|
|
538 |
function acf_extract_var( &$array, $key, $default = null ) {
|
539 |
|
540 |
// check if exists
|
541 |
-
if( is_array($array) &&
|
542 |
|
543 |
// store value
|
544 |
$v = $array[ $key ];
|
538 |
function acf_extract_var( &$array, $key, $default = null ) {
|
539 |
|
540 |
// check if exists
|
541 |
+
if( is_array($array) && isset($array[ $key ]) ) {
|
542 |
|
543 |
// store value
|
544 |
$v = $array[ $key ];
|
includes/api/api-input.php
CHANGED
@@ -30,6 +30,75 @@ function acf_esc_html( $string = '' ) {
|
|
30 |
}
|
31 |
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
/*
|
34 |
* acf_esc_atts
|
35 |
*
|
@@ -241,8 +310,9 @@ function acf_textarea_input( $atts = array() ) {
|
|
241 |
function acf_get_checkbox_input( $atts = array() ) {
|
242 |
|
243 |
$label = acf_extract_var( $atts, 'label', '' );
|
|
|
244 |
$atts['type'] = acf_maybe_get( $atts, 'type', 'checkbox' );
|
245 |
-
return '<label><input ' . acf_esc_attr( $atts ) . '/>' . acf_esc_html( $label ) . '</label>';
|
246 |
|
247 |
}
|
248 |
|
30 |
}
|
31 |
|
32 |
|
33 |
+
/**
|
34 |
+
* acf_clean_atts
|
35 |
+
*
|
36 |
+
* This function will remove empty attributes
|
37 |
+
*
|
38 |
+
* @date 3/10/17
|
39 |
+
* @since 5.6.3
|
40 |
+
*
|
41 |
+
* @param array $atts
|
42 |
+
* @return array
|
43 |
+
*/
|
44 |
+
|
45 |
+
function acf_clean_atts( $atts = array() ) {
|
46 |
+
|
47 |
+
// loop
|
48 |
+
foreach( $atts as $k => $v ) {
|
49 |
+
if( $v === '' ) unset( $atts[ $k ] );
|
50 |
+
}
|
51 |
+
|
52 |
+
|
53 |
+
// return
|
54 |
+
return $atts;
|
55 |
+
}
|
56 |
+
|
57 |
+
|
58 |
+
/**
|
59 |
+
* acf_get_atts
|
60 |
+
*
|
61 |
+
* This function will return an array of HTML attributes
|
62 |
+
*
|
63 |
+
* @date 2/10/17
|
64 |
+
* @since 5.6.3
|
65 |
+
*
|
66 |
+
* @param n/a
|
67 |
+
* @return n/a
|
68 |
+
*/
|
69 |
+
|
70 |
+
/*
|
71 |
+
function acf_get_atts( $array, $keys ) {
|
72 |
+
|
73 |
+
// vars
|
74 |
+
$atts = array();
|
75 |
+
|
76 |
+
|
77 |
+
// append attributes
|
78 |
+
foreach( $keys as $k ) {
|
79 |
+
if( isset($array[ $k ]) ) $atts[ $k ] = $array[ $k ];
|
80 |
+
}
|
81 |
+
|
82 |
+
|
83 |
+
// modify special attributes
|
84 |
+
foreach( array('readonly', 'disabled', 'required') as $k ) {
|
85 |
+
$atts[ $k ] = $atts[ $k ] ? $k : '';
|
86 |
+
}
|
87 |
+
|
88 |
+
|
89 |
+
// clean up blank attributes
|
90 |
+
foreach( $atts as $k => $v ) {
|
91 |
+
if( $v === '' ) unset( $atts[ $k ] );
|
92 |
+
}
|
93 |
+
|
94 |
+
|
95 |
+
// return
|
96 |
+
return $atts;
|
97 |
+
|
98 |
+
}
|
99 |
+
*/
|
100 |
+
|
101 |
+
|
102 |
/*
|
103 |
* acf_esc_atts
|
104 |
*
|
310 |
function acf_get_checkbox_input( $atts = array() ) {
|
311 |
|
312 |
$label = acf_extract_var( $atts, 'label', '' );
|
313 |
+
$checked = acf_maybe_get( $atts, 'checked', '' );
|
314 |
$atts['type'] = acf_maybe_get( $atts, 'type', 'checkbox' );
|
315 |
+
return '<label' . ($checked ? ' class="selected"' : '') . '><input ' . acf_esc_attr( $atts ) . '/>' . acf_esc_html( $label ) . '</label>';
|
316 |
|
317 |
}
|
318 |
|
includes/api/api-template.php
CHANGED
@@ -313,12 +313,8 @@ function get_field_objects( $post_id = false, $format_value = true, $load_value
|
|
313 |
// populate vars
|
314 |
foreach( $meta as $k => $v ) {
|
315 |
|
316 |
-
// Hopefuly improve efficiency: bail early if $k does start with an '_'
|
317 |
-
if( $k[0] === '_' ) continue;
|
318 |
-
|
319 |
-
|
320 |
// does a field key exist for this value?
|
321 |
-
if( !
|
322 |
|
323 |
|
324 |
// get field
|
313 |
// populate vars
|
314 |
foreach( $meta as $k => $v ) {
|
315 |
|
|
|
|
|
|
|
|
|
316 |
// does a field key exist for this value?
|
317 |
+
if( !isset($meta["_{$k}"]) ) continue;
|
318 |
|
319 |
|
320 |
// get field
|
includes/fields/class-acf-field-button-group.php
ADDED
@@ -0,0 +1,292 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if( ! class_exists('acf_field_button_group') ) :
|
4 |
+
|
5 |
+
class acf_field_button_group extends acf_field {
|
6 |
+
|
7 |
+
|
8 |
+
/**
|
9 |
+
* initialize()
|
10 |
+
*
|
11 |
+
* This function will setup the field type data
|
12 |
+
*
|
13 |
+
* @date 18/9/17
|
14 |
+
* @since 5.6.3
|
15 |
+
*
|
16 |
+
* @param n/a
|
17 |
+
* @return n/a
|
18 |
+
*/
|
19 |
+
|
20 |
+
function initialize() {
|
21 |
+
|
22 |
+
// vars
|
23 |
+
$this->name = 'button_group';
|
24 |
+
$this->label = __("Button Group",'acf');
|
25 |
+
$this->category = 'choice';
|
26 |
+
$this->defaults = array(
|
27 |
+
'choices' => array(),
|
28 |
+
'default_value' => '',
|
29 |
+
'allow_null' => 0,
|
30 |
+
'return_format' => 'value',
|
31 |
+
'layout' => 'horizontal',
|
32 |
+
);
|
33 |
+
|
34 |
+
}
|
35 |
+
|
36 |
+
|
37 |
+
/**
|
38 |
+
* render_field()
|
39 |
+
*
|
40 |
+
* Creates the field's input HTML
|
41 |
+
*
|
42 |
+
* @date 18/9/17
|
43 |
+
* @since 5.6.3
|
44 |
+
*
|
45 |
+
* @param array $field The field settings array
|
46 |
+
* @return n/a
|
47 |
+
*/
|
48 |
+
|
49 |
+
function render_field( $field ) {
|
50 |
+
|
51 |
+
// vars
|
52 |
+
$html = '';
|
53 |
+
$selected = null;
|
54 |
+
$buttons = array();
|
55 |
+
$value = esc_attr( $field['value'] );
|
56 |
+
|
57 |
+
|
58 |
+
// bail ealrly if no choices
|
59 |
+
if( empty($field['choices']) ) return;
|
60 |
+
|
61 |
+
|
62 |
+
// buttons
|
63 |
+
foreach( $field['choices'] as $_value => $_label ) {
|
64 |
+
|
65 |
+
// checked
|
66 |
+
$checked = ( $value === esc_attr($_value) );
|
67 |
+
if( $checked ) $selected = true;
|
68 |
+
|
69 |
+
|
70 |
+
// append
|
71 |
+
$buttons[] = array(
|
72 |
+
'name' => $field['name'],
|
73 |
+
'value' => $_value,
|
74 |
+
'label' => $_label,
|
75 |
+
'checked' => $checked
|
76 |
+
);
|
77 |
+
|
78 |
+
}
|
79 |
+
|
80 |
+
|
81 |
+
// maybe select initial value
|
82 |
+
if( !$field['allow_null'] && $selected === null ) {
|
83 |
+
$buttons[0]['checked'] = true;
|
84 |
+
}
|
85 |
+
|
86 |
+
|
87 |
+
// div
|
88 |
+
$div = array( 'class' => 'acf-button-group' );
|
89 |
+
|
90 |
+
if( $field['layout'] == 'vertical' ) { $div['class'] .= ' -vertical'; }
|
91 |
+
if( $field['class'] ) { $div['class'] .= ' ' . $field['class']; }
|
92 |
+
if( $field['allow_null'] ) { $div['data-allow_null'] = 1; }
|
93 |
+
|
94 |
+
|
95 |
+
// hdden input
|
96 |
+
$html .= acf_get_hidden_input( array('name' => $field['name']) );
|
97 |
+
|
98 |
+
|
99 |
+
// open
|
100 |
+
$html .= '<div ' . acf_esc_attr($div) . '>';
|
101 |
+
|
102 |
+
// loop
|
103 |
+
foreach( $buttons as $button ) {
|
104 |
+
|
105 |
+
// checked
|
106 |
+
if( $button['checked'] ) {
|
107 |
+
$button['checked'] = 'checked';
|
108 |
+
} else {
|
109 |
+
unset($button['checked']);
|
110 |
+
}
|
111 |
+
|
112 |
+
|
113 |
+
// append
|
114 |
+
$html .= acf_get_radio_input( $button );
|
115 |
+
|
116 |
+
}
|
117 |
+
|
118 |
+
|
119 |
+
// close
|
120 |
+
$html .= '</div>';
|
121 |
+
|
122 |
+
|
123 |
+
// return
|
124 |
+
echo $html;
|
125 |
+
|
126 |
+
}
|
127 |
+
|
128 |
+
|
129 |
+
/**
|
130 |
+
* render_field_settings()
|
131 |
+
*
|
132 |
+
* Creates the field's settings HTML
|
133 |
+
*
|
134 |
+
* @date 18/9/17
|
135 |
+
* @since 5.6.3
|
136 |
+
*
|
137 |
+
* @param array $field The field settings array
|
138 |
+
* @return n/a
|
139 |
+
*/
|
140 |
+
|
141 |
+
function render_field_settings( $field ) {
|
142 |
+
|
143 |
+
// encode choices (convert from array)
|
144 |
+
$field['choices'] = acf_encode_choices($field['choices']);
|
145 |
+
|
146 |
+
|
147 |
+
// choices
|
148 |
+
acf_render_field_setting( $field, array(
|
149 |
+
'label' => __('Choices','acf'),
|
150 |
+
'instructions' => __('Enter each choice on a new line.','acf') . '<br /><br />' . __('For more control, you may specify both a value and label like this:','acf'). '<br /><br />' . __('red : Red','acf'),
|
151 |
+
'type' => 'textarea',
|
152 |
+
'name' => 'choices',
|
153 |
+
));
|
154 |
+
|
155 |
+
|
156 |
+
// allow_null
|
157 |
+
acf_render_field_setting( $field, array(
|
158 |
+
'label' => __('Allow Null?','acf'),
|
159 |
+
'instructions' => '',
|
160 |
+
'name' => 'allow_null',
|
161 |
+
'type' => 'true_false',
|
162 |
+
'ui' => 1,
|
163 |
+
));
|
164 |
+
|
165 |
+
|
166 |
+
// default_value
|
167 |
+
acf_render_field_setting( $field, array(
|
168 |
+
'label' => __('Default Value','acf'),
|
169 |
+
'instructions' => __('Appears when creating a new post','acf'),
|
170 |
+
'type' => 'text',
|
171 |
+
'name' => 'default_value',
|
172 |
+
));
|
173 |
+
|
174 |
+
|
175 |
+
// layout
|
176 |
+
acf_render_field_setting( $field, array(
|
177 |
+
'label' => __('Layout','acf'),
|
178 |
+
'instructions' => '',
|
179 |
+
'type' => 'radio',
|
180 |
+
'name' => 'layout',
|
181 |
+
'layout' => 'horizontal',
|
182 |
+
'choices' => array(
|
183 |
+
'horizontal' => __("Horizontal",'acf'),
|
184 |
+
'vertical' => __("Vertical",'acf'),
|
185 |
+
)
|
186 |
+
));
|
187 |
+
|
188 |
+
|
189 |
+
// return_format
|
190 |
+
acf_render_field_setting( $field, array(
|
191 |
+
'label' => __('Return Value','acf'),
|
192 |
+
'instructions' => __('Specify the returned value on front end','acf'),
|
193 |
+
'type' => 'radio',
|
194 |
+
'name' => 'return_format',
|
195 |
+
'layout' => 'horizontal',
|
196 |
+
'choices' => array(
|
197 |
+
'value' => __('Value','acf'),
|
198 |
+
'label' => __('Label','acf'),
|
199 |
+
'array' => __('Both (Array)','acf')
|
200 |
+
)
|
201 |
+
));
|
202 |
+
|
203 |
+
}
|
204 |
+
|
205 |
+
|
206 |
+
/*
|
207 |
+
* update_field()
|
208 |
+
*
|
209 |
+
* This filter is appied to the $field before it is saved to the database
|
210 |
+
*
|
211 |
+
* @date 18/9/17
|
212 |
+
* @since 5.6.3
|
213 |
+
*
|
214 |
+
* @param array $field The field array holding all the field options
|
215 |
+
* @return $field
|
216 |
+
*/
|
217 |
+
|
218 |
+
function update_field( $field ) {
|
219 |
+
|
220 |
+
return acf_get_field_type('radio')->update_field( $field );
|
221 |
+
}
|
222 |
+
|
223 |
+
|
224 |
+
/*
|
225 |
+
* load_value()
|
226 |
+
*
|
227 |
+
* This filter is appied to the $value after it is loaded from the db
|
228 |
+
*
|
229 |
+
* @date 18/9/17
|
230 |
+
* @since 5.6.3
|
231 |
+
*
|
232 |
+
* @param mixed $value The value found in the database
|
233 |
+
* @param mixed $post_id The post ID from which the value was loaded from
|
234 |
+
* @param array $field The field array holding all the field options
|
235 |
+
* @return $value
|
236 |
+
*/
|
237 |
+
|
238 |
+
function load_value( $value, $post_id, $field ) {
|
239 |
+
|
240 |
+
return acf_get_field_type('radio')->load_value( $value, $post_id, $field );
|
241 |
+
|
242 |
+
}
|
243 |
+
|
244 |
+
|
245 |
+
/*
|
246 |
+
* translate_field
|
247 |
+
*
|
248 |
+
* This function will translate field settings
|
249 |
+
*
|
250 |
+
* @date 18/9/17
|
251 |
+
* @since 5.6.3
|
252 |
+
*
|
253 |
+
* @param array $field The field array holding all the field options
|
254 |
+
* @return $field
|
255 |
+
*/
|
256 |
+
|
257 |
+
function translate_field( $field ) {
|
258 |
+
|
259 |
+
return acf_get_field_type('radio')->translate_field( $field );
|
260 |
+
|
261 |
+
}
|
262 |
+
|
263 |
+
|
264 |
+
/*
|
265 |
+
* format_value()
|
266 |
+
*
|
267 |
+
* This filter is appied to the $value after it is loaded from the db and before it is returned to the template
|
268 |
+
*
|
269 |
+
* @date 18/9/17
|
270 |
+
* @since 5.6.3
|
271 |
+
*
|
272 |
+
* @param mixed $value The value found in the database
|
273 |
+
* @param mixed $post_id The post ID from which the value was loaded from
|
274 |
+
* @param array $field The field array holding all the field options
|
275 |
+
* @return $value
|
276 |
+
*/
|
277 |
+
|
278 |
+
function format_value( $value, $post_id, $field ) {
|
279 |
+
|
280 |
+
return acf_get_field_type('radio')->format_value( $value, $post_id, $field );
|
281 |
+
|
282 |
+
}
|
283 |
+
|
284 |
+
}
|
285 |
+
|
286 |
+
|
287 |
+
// initialize
|
288 |
+
acf_register_field_type( 'acf_field_button_group' );
|
289 |
+
|
290 |
+
endif; // class_exists check
|
291 |
+
|
292 |
+
?>
|
includes/fields/class-acf-field-color_picker.php
CHANGED
@@ -47,7 +47,7 @@ class acf_field_color_picker extends acf_field {
|
|
47 |
function input_admin_enqueue_scripts() {
|
48 |
|
49 |
// globals
|
50 |
-
global $wp_scripts
|
51 |
|
52 |
|
53 |
// register if not already (on front end)
|
@@ -103,7 +103,7 @@ class acf_field_color_picker extends acf_field {
|
|
103 |
|
104 |
// html
|
105 |
?>
|
106 |
-
<div class="acf-
|
107 |
<?php acf_hidden_input( $hidden_input ); ?>
|
108 |
<?php acf_text_input( $text_input ); ?>
|
109 |
</div>
|
47 |
function input_admin_enqueue_scripts() {
|
48 |
|
49 |
// globals
|
50 |
+
global $wp_scripts;
|
51 |
|
52 |
|
53 |
// register if not already (on front end)
|
103 |
|
104 |
// html
|
105 |
?>
|
106 |
+
<div class="acf-color-picker">
|
107 |
<?php acf_hidden_input( $hidden_input ); ?>
|
108 |
<?php acf_text_input( $text_input ); ?>
|
109 |
</div>
|
includes/fields/class-acf-field-email.php
CHANGED
@@ -50,7 +50,7 @@ class acf_field_email extends acf_field {
|
|
50 |
// vars
|
51 |
$atts = array();
|
52 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'pattern' );
|
53 |
-
$keys2 = array( 'readonly', 'disabled' );
|
54 |
$html = '';
|
55 |
|
56 |
|
@@ -72,18 +72,22 @@ class acf_field_email extends acf_field {
|
|
72 |
}
|
73 |
|
74 |
|
75 |
-
// atts
|
76 |
foreach( $keys as $k ) {
|
77 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
78 |
}
|
79 |
|
80 |
|
81 |
-
// atts2
|
82 |
foreach( $keys2 as $k ) {
|
83 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
84 |
}
|
85 |
|
86 |
|
|
|
|
|
|
|
|
|
87 |
// render
|
88 |
$html .= '<div class="acf-input-wrap">' . acf_get_text_input( $atts ) . '</div>';
|
89 |
|
50 |
// vars
|
51 |
$atts = array();
|
52 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'pattern' );
|
53 |
+
$keys2 = array( 'readonly', 'disabled', 'required' );
|
54 |
$html = '';
|
55 |
|
56 |
|
72 |
}
|
73 |
|
74 |
|
75 |
+
// atts (value="123")
|
76 |
foreach( $keys as $k ) {
|
77 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
78 |
}
|
79 |
|
80 |
|
81 |
+
// atts2 (disabled="disabled")
|
82 |
foreach( $keys2 as $k ) {
|
83 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
84 |
}
|
85 |
|
86 |
|
87 |
+
// remove empty atts
|
88 |
+
$atts = acf_clean_atts( $atts );
|
89 |
+
|
90 |
+
|
91 |
// render
|
92 |
$html .= '<div class="acf-input-wrap">' . acf_get_text_input( $atts ) . '</div>';
|
93 |
|
includes/fields/class-acf-field-group.php
CHANGED
@@ -342,11 +342,11 @@ class acf_field__group extends acf_field {
|
|
342 |
function render_field_block( $field ) {
|
343 |
|
344 |
// vars
|
345 |
-
$label_placement = $field['layout'] == 'block' ? 'top' : 'left';
|
346 |
|
347 |
|
348 |
// html
|
349 |
-
echo '<div class="acf-fields -'
|
350 |
|
351 |
foreach( $field['sub_fields'] as $sub_field ) {
|
352 |
|
@@ -407,10 +407,8 @@ class acf_field__group extends acf_field {
|
|
407 |
|
408 |
?>
|
409 |
<th <?php acf_esc_attr_e( $atts ); ?>>
|
410 |
-
<?php
|
411 |
-
<?php
|
412 |
-
<p class="description"><?php echo $sub_field['instructions']; ?></p>
|
413 |
-
<?php endif; ?>
|
414 |
</th>
|
415 |
<?php endforeach; ?>
|
416 |
</tr>
|
@@ -458,8 +456,7 @@ class acf_field__group extends acf_field {
|
|
458 |
|
459 |
?><tr class="acf-field acf-field-setting-sub_fields" data-setting="group" data-name="sub_fields">
|
460 |
<td class="acf-label">
|
461 |
-
<label><?php _e("Sub Fields",'acf'); ?></label>
|
462 |
-
<p class="description"></p>
|
463 |
</td>
|
464 |
<td class="acf-input">
|
465 |
<?php
|
342 |
function render_field_block( $field ) {
|
343 |
|
344 |
// vars
|
345 |
+
$label_placement = ($field['layout'] == 'block') ? 'top' : 'left';
|
346 |
|
347 |
|
348 |
// html
|
349 |
+
echo '<div class="acf-fields -' . $label_placement . ' -border">';
|
350 |
|
351 |
foreach( $field['sub_fields'] as $sub_field ) {
|
352 |
|
407 |
|
408 |
?>
|
409 |
<th <?php acf_esc_attr_e( $atts ); ?>>
|
410 |
+
<?php acf_the_field_wrap_label( $sub_field ); ?>
|
411 |
+
<?php acf_the_field_wrap_instructions( $sub_field ); ?>
|
|
|
|
|
412 |
</th>
|
413 |
<?php endforeach; ?>
|
414 |
</tr>
|
456 |
|
457 |
?><tr class="acf-field acf-field-setting-sub_fields" data-setting="group" data-name="sub_fields">
|
458 |
<td class="acf-label">
|
459 |
+
<label><?php _e("Sub Fields",'acf'); ?></label>
|
|
|
460 |
</td>
|
461 |
<td class="acf-input">
|
462 |
<?php
|
includes/fields/class-acf-field-message.php
CHANGED
@@ -76,7 +76,7 @@ class acf_field_message extends acf_field {
|
|
76 |
|
77 |
|
78 |
// return
|
79 |
-
echo $m;
|
80 |
|
81 |
}
|
82 |
|
76 |
|
77 |
|
78 |
// return
|
79 |
+
echo acf_esc_html( $m );
|
80 |
|
81 |
}
|
82 |
|
includes/fields/class-acf-field-number.php
CHANGED
@@ -53,7 +53,7 @@ class acf_field_number extends acf_field {
|
|
53 |
// vars
|
54 |
$atts = array();
|
55 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'min', 'max', 'step', 'placeholder', 'pattern' );
|
56 |
-
$keys2 = array( 'readonly', 'disabled' );
|
57 |
$html = '';
|
58 |
|
59 |
|
@@ -81,18 +81,22 @@ class acf_field_number extends acf_field {
|
|
81 |
}
|
82 |
|
83 |
|
84 |
-
// atts
|
85 |
foreach( $keys as $k ) {
|
86 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
87 |
}
|
88 |
|
89 |
|
90 |
-
// atts2
|
91 |
foreach( $keys2 as $k ) {
|
92 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
93 |
}
|
94 |
|
95 |
|
|
|
|
|
|
|
|
|
96 |
// render
|
97 |
$html .= '<div class="acf-input-wrap">' . acf_get_text_input( $atts ) . '</div>';
|
98 |
|
53 |
// vars
|
54 |
$atts = array();
|
55 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'min', 'max', 'step', 'placeholder', 'pattern' );
|
56 |
+
$keys2 = array( 'readonly', 'disabled', 'required' );
|
57 |
$html = '';
|
58 |
|
59 |
|
81 |
}
|
82 |
|
83 |
|
84 |
+
// atts (value="123")
|
85 |
foreach( $keys as $k ) {
|
86 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
87 |
}
|
88 |
|
89 |
|
90 |
+
// atts2 (disabled="disabled")
|
91 |
foreach( $keys2 as $k ) {
|
92 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
93 |
}
|
94 |
|
95 |
|
96 |
+
// remove empty atts
|
97 |
+
$atts = acf_clean_atts( $atts );
|
98 |
+
|
99 |
+
|
100 |
// render
|
101 |
$html .= '<div class="acf-input-wrap">' . acf_get_text_input( $atts ) . '</div>';
|
102 |
|
includes/fields/class-acf-field-range.php
CHANGED
@@ -52,7 +52,7 @@ class acf_field_range extends acf_field_number {
|
|
52 |
// vars
|
53 |
$atts = array();
|
54 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'min', 'max', 'step' );
|
55 |
-
$keys2 = array( 'readonly', 'disabled' );
|
56 |
$html = '';
|
57 |
|
58 |
|
@@ -71,18 +71,22 @@ class acf_field_range extends acf_field_number {
|
|
71 |
}
|
72 |
|
73 |
|
74 |
-
// atts
|
75 |
foreach( $keys as $k ) {
|
76 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
77 |
}
|
78 |
|
79 |
|
80 |
-
// atts2
|
81 |
foreach( $keys2 as $k ) {
|
82 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
83 |
}
|
84 |
|
85 |
|
|
|
|
|
|
|
|
|
86 |
// open
|
87 |
$html .= '<div class="acf-range-wrap">';
|
88 |
|
@@ -98,10 +102,13 @@ class acf_field_range extends acf_field_number {
|
|
98 |
|
99 |
|
100 |
// input
|
|
|
101 |
$html .= acf_get_text_input(array(
|
102 |
'type' => 'number',
|
103 |
'id' => $atts['id'] . '-alt',
|
104 |
-
'value' => $atts['value']
|
|
|
|
|
105 |
));
|
106 |
|
107 |
|
52 |
// vars
|
53 |
$atts = array();
|
54 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'min', 'max', 'step' );
|
55 |
+
$keys2 = array( 'readonly', 'disabled', 'required' );
|
56 |
$html = '';
|
57 |
|
58 |
|
71 |
}
|
72 |
|
73 |
|
74 |
+
// atts (value="123")
|
75 |
foreach( $keys as $k ) {
|
76 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
77 |
}
|
78 |
|
79 |
|
80 |
+
// atts2 (disabled="disabled")
|
81 |
foreach( $keys2 as $k ) {
|
82 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
83 |
}
|
84 |
|
85 |
|
86 |
+
// remove empty atts
|
87 |
+
$atts = acf_clean_atts( $atts );
|
88 |
+
|
89 |
+
|
90 |
// open
|
91 |
$html .= '<div class="acf-range-wrap">';
|
92 |
|
102 |
|
103 |
|
104 |
// input
|
105 |
+
$len = strlen( (string) $field['max'] );
|
106 |
$html .= acf_get_text_input(array(
|
107 |
'type' => 'number',
|
108 |
'id' => $atts['id'] . '-alt',
|
109 |
+
'value' => $atts['value'],
|
110 |
+
'step' => $atts['step'],
|
111 |
+
'style' => 'width: ' . (1.8 + $len*0.7) . 'em;'
|
112 |
));
|
113 |
|
114 |
|
includes/fields/class-acf-field-taxonomy.php
CHANGED
@@ -576,6 +576,11 @@ class acf_field_taxonomy extends acf_field {
|
|
576 |
// get taxonomy
|
577 |
$taxonomy = get_taxonomy( $field['taxonomy'] );
|
578 |
|
|
|
|
|
|
|
|
|
|
|
579 |
?>
|
580 |
<div <?php acf_esc_attr_e($div); ?>>
|
581 |
<?php if( $field['add_term'] && current_user_can( $taxonomy->cap->manage_terms) ): ?>
|
@@ -705,7 +710,7 @@ class acf_field_taxonomy extends acf_field {
|
|
705 |
// vars
|
706 |
$args = array(
|
707 |
'taxonomy' => $field['taxonomy'],
|
708 |
-
'show_option_none' =>
|
709 |
'hide_empty' => false,
|
710 |
'style' => 'none',
|
711 |
'walker' => new acf_taxonomy_field_walker( $field ),
|
@@ -724,7 +729,7 @@ class acf_field_taxonomy extends acf_field {
|
|
724 |
<?php if( $field['field_type'] == 'radio' && $field['allow_null'] ): ?>
|
725 |
<li>
|
726 |
<label class="selectit">
|
727 |
-
<input type="radio" name="<?php echo $field['name']; ?>" value="" /> <?php _e("None", 'acf'); ?>
|
728 |
</label>
|
729 |
</li>
|
730 |
<?php endif; ?>
|
576 |
// get taxonomy
|
577 |
$taxonomy = get_taxonomy( $field['taxonomy'] );
|
578 |
|
579 |
+
|
580 |
+
// bail early if taxonomy does not exist
|
581 |
+
if( !$taxonomy ) return;
|
582 |
+
|
583 |
+
|
584 |
?>
|
585 |
<div <?php acf_esc_attr_e($div); ?>>
|
586 |
<?php if( $field['add_term'] && current_user_can( $taxonomy->cap->manage_terms) ): ?>
|
710 |
// vars
|
711 |
$args = array(
|
712 |
'taxonomy' => $field['taxonomy'],
|
713 |
+
'show_option_none' => sprintf( _x('No %s', 'No terms', 'acf'), strtolower($taxonomy_obj->labels->name) ),
|
714 |
'hide_empty' => false,
|
715 |
'style' => 'none',
|
716 |
'walker' => new acf_taxonomy_field_walker( $field ),
|
729 |
<?php if( $field['field_type'] == 'radio' && $field['allow_null'] ): ?>
|
730 |
<li>
|
731 |
<label class="selectit">
|
732 |
+
<input type="radio" name="<?php echo esc_attr($field['name']); ?>" value="" /> <?php _e("None", 'acf'); ?>
|
733 |
</label>
|
734 |
</li>
|
735 |
<?php endif; ?>
|
includes/fields/class-acf-field-text.php
CHANGED
@@ -51,7 +51,7 @@ class acf_field_text extends acf_field {
|
|
51 |
// vars
|
52 |
$atts = array();
|
53 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'maxlength', 'pattern' );
|
54 |
-
$keys2 = array( 'readonly', 'disabled' );
|
55 |
$html = '';
|
56 |
|
57 |
|
@@ -73,18 +73,22 @@ class acf_field_text extends acf_field {
|
|
73 |
}
|
74 |
|
75 |
|
76 |
-
// atts
|
77 |
foreach( $keys as $k ) {
|
78 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
79 |
}
|
80 |
|
81 |
|
82 |
-
// atts2
|
83 |
foreach( $keys2 as $k ) {
|
84 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
85 |
}
|
86 |
|
87 |
|
|
|
|
|
|
|
|
|
88 |
// render
|
89 |
$html .= '<div class="acf-input-wrap">' . acf_get_text_input( $atts ) . '</div>';
|
90 |
|
51 |
// vars
|
52 |
$atts = array();
|
53 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'maxlength', 'pattern' );
|
54 |
+
$keys2 = array( 'readonly', 'disabled', 'required' );
|
55 |
$html = '';
|
56 |
|
57 |
|
73 |
}
|
74 |
|
75 |
|
76 |
+
// atts (value="123")
|
77 |
foreach( $keys as $k ) {
|
78 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
79 |
}
|
80 |
|
81 |
|
82 |
+
// atts2 (disabled="disabled")
|
83 |
foreach( $keys2 as $k ) {
|
84 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
85 |
}
|
86 |
|
87 |
|
88 |
+
// remove empty atts
|
89 |
+
$atts = acf_clean_atts( $atts );
|
90 |
+
|
91 |
+
|
92 |
// render
|
93 |
$html .= '<div class="acf-input-wrap">' . acf_get_text_input( $atts ) . '</div>';
|
94 |
|
includes/fields/class-acf-field-textarea.php
CHANGED
@@ -51,7 +51,7 @@ class acf_field_textarea extends acf_field {
|
|
51 |
// vars
|
52 |
$atts = array();
|
53 |
$keys = array( 'id', 'class', 'name', 'value', 'placeholder', 'rows', 'maxlength' );
|
54 |
-
$keys2 = array( 'readonly', 'disabled' );
|
55 |
|
56 |
|
57 |
// rows
|
@@ -60,20 +60,24 @@ class acf_field_textarea extends acf_field {
|
|
60 |
}
|
61 |
|
62 |
|
63 |
-
// atts
|
64 |
foreach( $keys as $k ) {
|
65 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
66 |
}
|
67 |
|
68 |
|
69 |
-
// atts2
|
70 |
foreach( $keys2 as $k ) {
|
71 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
72 |
}
|
73 |
|
74 |
|
|
|
|
|
|
|
|
|
75 |
// return
|
76 |
-
|
77 |
|
78 |
}
|
79 |
|
51 |
// vars
|
52 |
$atts = array();
|
53 |
$keys = array( 'id', 'class', 'name', 'value', 'placeholder', 'rows', 'maxlength' );
|
54 |
+
$keys2 = array( 'readonly', 'disabled', 'required' );
|
55 |
|
56 |
|
57 |
// rows
|
60 |
}
|
61 |
|
62 |
|
63 |
+
// atts (value="123")
|
64 |
foreach( $keys as $k ) {
|
65 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
66 |
}
|
67 |
|
68 |
|
69 |
+
// atts2 (disabled="disabled")
|
70 |
foreach( $keys2 as $k ) {
|
71 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
72 |
}
|
73 |
|
74 |
|
75 |
+
// remove empty atts
|
76 |
+
$atts = acf_clean_atts( $atts );
|
77 |
+
|
78 |
+
|
79 |
// return
|
80 |
+
acf_textarea_input( $atts );
|
81 |
|
82 |
}
|
83 |
|
includes/fields/class-acf-field-true_false.php
CHANGED
@@ -97,8 +97,8 @@ class acf_field_true_false extends acf_field {
|
|
97 |
<?php acf_hidden_input($hidden); ?>
|
98 |
<label>
|
99 |
<input <?php echo acf_esc_attr($input); ?>/>
|
100 |
-
<?php if( $switch ) echo $switch; ?>
|
101 |
-
<?php if( $field['message'] ): ?><span><?php echo $field['message']; ?></span><?php endif; ?>
|
102 |
</label>
|
103 |
</div>
|
104 |
<?php
|
97 |
<?php acf_hidden_input($hidden); ?>
|
98 |
<label>
|
99 |
<input <?php echo acf_esc_attr($input); ?>/>
|
100 |
+
<?php if( $switch ) echo acf_esc_html($switch); ?>
|
101 |
+
<?php if( $field['message'] ): ?><span class="message"><?php echo acf_esc_html($field['message']); ?></span><?php endif; ?>
|
102 |
</label>
|
103 |
</div>
|
104 |
<?php
|
includes/fields/class-acf-field-url.php
CHANGED
@@ -48,22 +48,26 @@ class acf_field_url extends acf_field {
|
|
48 |
// vars
|
49 |
$atts = array();
|
50 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'pattern' );
|
51 |
-
$keys2 = array( 'readonly', 'disabled' );
|
52 |
$html = '';
|
53 |
|
54 |
|
55 |
-
// atts
|
56 |
foreach( $keys as $k ) {
|
57 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
58 |
}
|
59 |
|
60 |
|
61 |
-
// atts2
|
62 |
foreach( $keys2 as $k ) {
|
63 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
64 |
}
|
65 |
|
66 |
|
|
|
|
|
|
|
|
|
67 |
// render
|
68 |
$html .= '<div class="acf-input-wrap acf-url">';
|
69 |
$html .= '<i class="acf-icon -globe -small"></i>' . acf_get_text_input( $atts ) ;
|
48 |
// vars
|
49 |
$atts = array();
|
50 |
$keys = array( 'type', 'id', 'class', 'name', 'value', 'placeholder', 'pattern' );
|
51 |
+
$keys2 = array( 'readonly', 'disabled', 'required' );
|
52 |
$html = '';
|
53 |
|
54 |
|
55 |
+
// atts (value="123")
|
56 |
foreach( $keys as $k ) {
|
57 |
if( isset($field[ $k ]) ) $atts[ $k ] = $field[ $k ];
|
58 |
}
|
59 |
|
60 |
|
61 |
+
// atts2 (disabled="disabled")
|
62 |
foreach( $keys2 as $k ) {
|
63 |
if( !empty($field[ $k ]) ) $atts[ $k ] = $k;
|
64 |
}
|
65 |
|
66 |
|
67 |
+
// remove empty atts
|
68 |
+
$atts = acf_clean_atts( $atts );
|
69 |
+
|
70 |
+
|
71 |
// render
|
72 |
$html .= '<div class="acf-input-wrap acf-url">';
|
73 |
$html .= '<i class="acf-icon -globe -small"></i>' . acf_get_text_input( $atts ) ;
|
includes/fields/class-acf-field-wysiwyg.php
CHANGED
@@ -54,10 +54,6 @@ class acf_field_wysiwyg extends acf_field {
|
|
54 |
|
55 |
function add_filters() {
|
56 |
|
57 |
-
// globals
|
58 |
-
global $wp_version;
|
59 |
-
|
60 |
-
|
61 |
// wp-includes/class-wp-embed.php
|
62 |
if( !empty($GLOBALS['wp_embed']) ) {
|
63 |
|
@@ -72,15 +68,11 @@ class acf_field_wysiwyg extends acf_field {
|
|
72 |
add_filter( 'acf_the_content', 'wptexturize' );
|
73 |
add_filter( 'acf_the_content', 'convert_smilies', 20 );
|
74 |
|
75 |
-
|
76 |
// Removed in 4.4
|
77 |
-
if(
|
78 |
-
|
79 |
add_filter( 'acf_the_content', 'convert_chars' );
|
80 |
-
|
81 |
}
|
82 |
|
83 |
-
|
84 |
add_filter( 'acf_the_content', 'wpautop' );
|
85 |
add_filter( 'acf_the_content', 'shortcode_unautop' );
|
86 |
|
@@ -91,12 +83,9 @@ class acf_field_wysiwyg extends acf_field {
|
|
91 |
|
92 |
// Added in 4.4
|
93 |
if( function_exists('wp_make_content_images_responsive') ) {
|
94 |
-
|
95 |
add_filter( 'acf_the_content', 'wp_make_content_images_responsive' );
|
96 |
-
|
97 |
}
|
98 |
|
99 |
-
|
100 |
add_filter( 'acf_the_content', 'do_shortcode', 11);
|
101 |
|
102 |
}
|
@@ -117,10 +106,6 @@ class acf_field_wysiwyg extends acf_field {
|
|
117 |
|
118 |
function get_toolbars() {
|
119 |
|
120 |
-
// global
|
121 |
-
global $wp_version;
|
122 |
-
|
123 |
-
|
124 |
// vars
|
125 |
$editor_id = 'acf_content';
|
126 |
|
@@ -236,7 +221,7 @@ class acf_field_wysiwyg extends acf_field {
|
|
236 |
|
237 |
?>
|
238 |
<script type="text/javascript">
|
239 |
-
if( acf ) acf.tinymce.toolbars = <?php echo
|
240 |
</script>
|
241 |
<?php
|
242 |
|
@@ -257,10 +242,6 @@ class acf_field_wysiwyg extends acf_field {
|
|
257 |
|
258 |
function render_field( $field ) {
|
259 |
|
260 |
-
// global
|
261 |
-
global $wp_version;
|
262 |
-
|
263 |
-
|
264 |
// enqueue
|
265 |
acf_enqueue_uploader();
|
266 |
|
@@ -320,7 +301,7 @@ class acf_field_wysiwyg extends acf_field {
|
|
320 |
|
321 |
|
322 |
// WP 4.3
|
323 |
-
if(
|
324 |
|
325 |
add_filter( 'acf_the_editor_content', 'format_for_editor', 10, 2 );
|
326 |
|
@@ -352,13 +333,21 @@ class acf_field_wysiwyg extends acf_field {
|
|
352 |
|
353 |
// delay
|
354 |
if( $field['delay'] ) {
|
355 |
-
|
356 |
$wrap['class'] .= ' delay';
|
357 |
-
|
358 |
}
|
359 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
360 |
?>
|
361 |
-
<div <?php
|
362 |
<div id="wp-<?php echo $id; ?>-editor-tools" class="wp-editor-tools hide-if-no-js">
|
363 |
<?php if( $field['media_upload'] ): ?>
|
364 |
<div id="wp-<?php echo $id; ?>-media-buttons" class="wp-media-buttons">
|
@@ -376,7 +365,7 @@ class acf_field_wysiwyg extends acf_field {
|
|
376 |
<?php if( $field['delay'] ): ?>
|
377 |
<div class="acf-editor-toolbar"><?php _e('Click to initialize TinyMCE', 'acf'); ?></div>
|
378 |
<?php endif; ?>
|
379 |
-
|
380 |
</div>
|
381 |
</div>
|
382 |
<?php
|
54 |
|
55 |
function add_filters() {
|
56 |
|
|
|
|
|
|
|
|
|
57 |
// wp-includes/class-wp-embed.php
|
58 |
if( !empty($GLOBALS['wp_embed']) ) {
|
59 |
|
68 |
add_filter( 'acf_the_content', 'wptexturize' );
|
69 |
add_filter( 'acf_the_content', 'convert_smilies', 20 );
|
70 |
|
|
|
71 |
// Removed in 4.4
|
72 |
+
if( acf_version_compare('wp', '<', '4.4') ) {
|
|
|
73 |
add_filter( 'acf_the_content', 'convert_chars' );
|
|
|
74 |
}
|
75 |
|
|
|
76 |
add_filter( 'acf_the_content', 'wpautop' );
|
77 |
add_filter( 'acf_the_content', 'shortcode_unautop' );
|
78 |
|
83 |
|
84 |
// Added in 4.4
|
85 |
if( function_exists('wp_make_content_images_responsive') ) {
|
|
|
86 |
add_filter( 'acf_the_content', 'wp_make_content_images_responsive' );
|
|
|
87 |
}
|
88 |
|
|
|
89 |
add_filter( 'acf_the_content', 'do_shortcode', 11);
|
90 |
|
91 |
}
|
106 |
|
107 |
function get_toolbars() {
|
108 |
|
|
|
|
|
|
|
|
|
109 |
// vars
|
110 |
$editor_id = 'acf_content';
|
111 |
|
221 |
|
222 |
?>
|
223 |
<script type="text/javascript">
|
224 |
+
if( acf ) acf.tinymce.toolbars = <?php echo wp_json_encode($json); ?>;
|
225 |
</script>
|
226 |
<?php
|
227 |
|
242 |
|
243 |
function render_field( $field ) {
|
244 |
|
|
|
|
|
|
|
|
|
245 |
// enqueue
|
246 |
acf_enqueue_uploader();
|
247 |
|
301 |
|
302 |
|
303 |
// WP 4.3
|
304 |
+
if( acf_version_compare('wp', '>=', '4.3') ) {
|
305 |
|
306 |
add_filter( 'acf_the_editor_content', 'format_for_editor', 10, 2 );
|
307 |
|
333 |
|
334 |
// delay
|
335 |
if( $field['delay'] ) {
|
|
|
336 |
$wrap['class'] .= ' delay';
|
|
|
337 |
}
|
338 |
|
339 |
+
|
340 |
+
// vars
|
341 |
+
$textarea = acf_get_textarea_input(array(
|
342 |
+
'id' => $id,
|
343 |
+
'class' => 'wp-editor-area',
|
344 |
+
'name' => $field['name'],
|
345 |
+
'style' => $height ? "height:{$height}px;" : '',
|
346 |
+
'value' => '%s'
|
347 |
+
));
|
348 |
+
|
349 |
?>
|
350 |
+
<div <?php acf_esc_attr_e($wrap); ?>>
|
351 |
<div id="wp-<?php echo $id; ?>-editor-tools" class="wp-editor-tools hide-if-no-js">
|
352 |
<?php if( $field['media_upload'] ): ?>
|
353 |
<div id="wp-<?php echo $id; ?>-media-buttons" class="wp-media-buttons">
|
365 |
<?php if( $field['delay'] ): ?>
|
366 |
<div class="acf-editor-toolbar"><?php _e('Click to initialize TinyMCE', 'acf'); ?></div>
|
367 |
<?php endif; ?>
|
368 |
+
<?php printf( $textarea, $field['value'] ); ?>
|
369 |
</div>
|
370 |
</div>
|
371 |
<?php
|
includes/updates.php
CHANGED
@@ -7,7 +7,7 @@ if( ! class_exists('acf_updates') ) :
|
|
7 |
class acf_updates {
|
8 |
|
9 |
// vars
|
10 |
-
var $version = '2.
|
11 |
$plugins = array(),
|
12 |
$updates = false,
|
13 |
$dev = 0;
|
@@ -105,7 +105,7 @@ class acf_updates {
|
|
105 |
* @return (mixed)
|
106 |
*/
|
107 |
|
108 |
-
function request( $query = 'index.php', $body =
|
109 |
|
110 |
// vars
|
111 |
$url = 'https://connect.advancedcustomfields.com/' . $query;
|
@@ -116,7 +116,7 @@ class acf_updates {
|
|
116 |
|
117 |
|
118 |
// log
|
119 |
-
//acf_log('acf connect: '. $url);
|
120 |
|
121 |
|
122 |
// post
|
@@ -261,17 +261,19 @@ class acf_updates {
|
|
261 |
if( !$this->updates ) {
|
262 |
|
263 |
// vars
|
264 |
-
$plugins = $this->plugins;
|
265 |
-
$wp = array(
|
266 |
-
'wp_name' => get_bloginfo('name'),
|
267 |
-
'wp_url' => home_url(),
|
268 |
-
'wp_version' => get_bloginfo('version'),
|
269 |
-
'wp_language' => get_bloginfo('language'),
|
270 |
-
'wp_timezone' => get_option('timezone_string'),
|
271 |
-
);
|
272 |
$post = array(
|
273 |
-
'plugins' => wp_json_encode($plugins),
|
274 |
-
'wp' => wp_json_encode(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
);
|
276 |
|
277 |
|
7 |
class acf_updates {
|
8 |
|
9 |
// vars
|
10 |
+
var $version = '2.2',
|
11 |
$plugins = array(),
|
12 |
$updates = false,
|
13 |
$dev = 0;
|
105 |
* @return (mixed)
|
106 |
*/
|
107 |
|
108 |
+
function request( $query = 'index.php', $body = null ) {
|
109 |
|
110 |
// vars
|
111 |
$url = 'https://connect.advancedcustomfields.com/' . $query;
|
116 |
|
117 |
|
118 |
// log
|
119 |
+
//acf_log('acf connect: '. $url, $body);
|
120 |
|
121 |
|
122 |
// post
|
261 |
if( !$this->updates ) {
|
262 |
|
263 |
// vars
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
$post = array(
|
265 |
+
'plugins' => wp_json_encode($this->plugins),
|
266 |
+
'wp' => wp_json_encode(array(
|
267 |
+
'wp_name' => get_bloginfo('name'),
|
268 |
+
'wp_url' => home_url(),
|
269 |
+
'wp_version' => get_bloginfo('version'),
|
270 |
+
'wp_language' => get_bloginfo('language'),
|
271 |
+
'wp_timezone' => get_option('timezone_string'),
|
272 |
+
)),
|
273 |
+
'acf' => wp_json_encode(array(
|
274 |
+
'acf_version' => get_option('acf_version'),
|
275 |
+
'acf_pro' => (defined('ACF_PRO') && ACF_PRO),
|
276 |
+
)),
|
277 |
);
|
278 |
|
279 |
|
lang/acf-de_DE.mo
CHANGED
Binary file
|
lang/acf-de_DE.po
CHANGED
@@ -1,17 +1,17 @@
|
|
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:
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -28,111 +28,111 @@ 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 |
|
@@ -355,23 +355,22 @@ msgstr "Status"
|
|
355 |
# @ acf
|
356 |
#. Description of the plugin/theme
|
357 |
#: includes/admin/admin-field-groups.php:607
|
358 |
-
#, fuzzy
|
359 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
360 |
msgstr ""
|
361 |
-
"
|
362 |
-
"Felder
|
363 |
|
364 |
# @ acf
|
365 |
#: includes/admin/admin-field-groups.php:609
|
366 |
#: includes/admin/settings-info.php:76
|
367 |
-
#: pro/admin/views/html-settings-updates.php:
|
368 |
msgid "Changelog"
|
369 |
msgstr "Versionshinweise"
|
370 |
|
371 |
#: includes/admin/admin-field-groups.php:614
|
372 |
#, php-format
|
373 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
374 |
-
msgstr "
|
375 |
|
376 |
# @ acf
|
377 |
#: includes/admin/admin-field-groups.php:617
|
@@ -379,11 +378,8 @@ msgid "Resources"
|
|
379 |
msgstr "Dokumentation (engl.)"
|
380 |
|
381 |
#: includes/admin/admin-field-groups.php:619
|
382 |
-
#, fuzzy
|
383 |
msgid "Website"
|
384 |
-
msgstr ""
|
385 |
-
"Diese Webseite nutzt Zusatz-Module mit Aktivierungs-Code, die nun "
|
386 |
-
"heruntergeladen werden müssen."
|
387 |
|
388 |
#: includes/admin/admin-field-groups.php:620
|
389 |
msgid "Documentation"
|
@@ -394,9 +390,8 @@ msgid "Support"
|
|
394 |
msgstr "Hilfe"
|
395 |
|
396 |
#: includes/admin/admin-field-groups.php:623
|
397 |
-
#, fuzzy
|
398 |
msgid "Pro"
|
399 |
-
msgstr "
|
400 |
|
401 |
#: includes/admin/admin-field-groups.php:628
|
402 |
#, php-format
|
@@ -412,14 +407,14 @@ msgstr "Dieses Element duplizieren"
|
|
412 |
#: includes/admin/admin-field-groups.php:668
|
413 |
#: includes/admin/admin-field-groups.php:684
|
414 |
#: includes/admin/views/field-group-field.php:49
|
415 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
416 |
msgid "Duplicate"
|
417 |
msgstr "Duplizieren"
|
418 |
|
419 |
# @ acf
|
420 |
#: includes/admin/admin-field-groups.php:701
|
421 |
-
#: includes/fields/class-acf-field-google-map.php:
|
422 |
-
#: includes/fields/class-acf-field-relationship.php:
|
423 |
msgid "Search"
|
424 |
msgstr "Suchen"
|
425 |
|
@@ -442,11 +437,10 @@ msgstr "Synchronisieren"
|
|
442 |
|
443 |
#: includes/admin/admin-field-groups.php:780
|
444 |
msgid "Apply"
|
445 |
-
msgstr ""
|
446 |
|
447 |
# @ acf
|
448 |
#: includes/admin/admin-field-groups.php:798
|
449 |
-
#, fuzzy
|
450 |
msgid "Bulk Actions"
|
451 |
msgstr "Massenverarbeitung"
|
452 |
|
@@ -460,12 +454,12 @@ msgstr "Eigene Felder"
|
|
460 |
#: includes/admin/install-network.php:88 includes/admin/install.php:70
|
461 |
#: includes/admin/install.php:121
|
462 |
msgid "Upgrade Database"
|
463 |
-
msgstr "
|
464 |
|
465 |
# @ acf
|
466 |
#: includes/admin/install-network.php:140
|
467 |
msgid "Review sites & upgrade"
|
468 |
-
msgstr "Übersicht
|
469 |
|
470 |
#: includes/admin/install.php:187
|
471 |
msgid "Error validating request"
|
@@ -510,14 +504,14 @@ msgstr "Keine Feld-Gruppe ausgewählt"
|
|
510 |
|
511 |
# @ acf
|
512 |
#: includes/admin/settings-tools.php:184
|
513 |
-
#: includes/fields/class-acf-field-file.php:
|
514 |
msgid "No file selected"
|
515 |
msgstr "Keine Datei ausgewählt"
|
516 |
|
517 |
# @ acf
|
518 |
#: includes/admin/settings-tools.php:197
|
519 |
msgid "Error uploading file. Please try again"
|
520 |
-
msgstr "Fehler beim Upload. Bitte erneut versuchen
|
521 |
|
522 |
# @ acf
|
523 |
#: includes/admin/settings-tools.php:206
|
@@ -548,13 +542,13 @@ msgstr "Zeige dieses Feld, wenn"
|
|
548 |
|
549 |
# @ acf
|
550 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
551 |
-
#: includes/locations.php:
|
552 |
msgid "is equal to"
|
553 |
msgstr "ist gleich"
|
554 |
|
555 |
# @ acf
|
556 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
557 |
-
#: includes/locations.php:
|
558 |
msgid "is not equal to"
|
559 |
msgstr "ist ungleich"
|
560 |
|
@@ -568,12 +562,12 @@ msgstr "und"
|
|
568 |
#: includes/admin/views/field-group-field-conditional-logic.php:156
|
569 |
#: includes/admin/views/field-group-locations.php:31
|
570 |
msgid "Add rule group"
|
571 |
-
msgstr "
|
572 |
|
573 |
# @ acf
|
574 |
#: includes/admin/views/field-group-field.php:41
|
575 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
576 |
-
#: pro/fields/class-acf-field-repeater.php:
|
577 |
msgid "Drag to reorder"
|
578 |
msgstr "Ziehen zum Sortieren"
|
579 |
|
@@ -585,9 +579,10 @@ msgstr "Feld bearbeiten"
|
|
585 |
|
586 |
# @ acf
|
587 |
#: includes/admin/views/field-group-field.php:48
|
588 |
-
#: includes/fields/class-acf-field-
|
589 |
-
#: includes/fields/class-acf-field-
|
590 |
-
#:
|
|
|
591 |
msgid "Edit"
|
592 |
msgstr "Bearbeiten"
|
593 |
|
@@ -613,7 +608,7 @@ msgstr "Feld löschen"
|
|
613 |
|
614 |
# @ acf
|
615 |
#: includes/admin/views/field-group-field.php:51
|
616 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
617 |
msgid "Delete"
|
618 |
msgstr "Löschen"
|
619 |
|
@@ -646,7 +641,7 @@ msgstr "Feld-Typ"
|
|
646 |
|
647 |
# @ acf
|
648 |
#: includes/admin/views/field-group-field.php:101
|
649 |
-
#: includes/fields/class-acf-field-tab.php:
|
650 |
msgid "Instructions"
|
651 |
msgstr "Anweisungen"
|
652 |
|
@@ -692,24 +687,23 @@ msgstr "Reihenfolge"
|
|
692 |
|
693 |
# @ acf
|
694 |
#: includes/admin/views/field-group-fields.php:5
|
695 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
696 |
-
#: includes/fields/class-acf-field-radio.php:
|
697 |
-
#: includes/fields/class-acf-field-select.php:
|
698 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
699 |
msgid "Label"
|
700 |
msgstr "Name"
|
701 |
|
702 |
# @ acf
|
703 |
#: includes/admin/views/field-group-fields.php:6
|
704 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
705 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
706 |
msgid "Name"
|
707 |
msgstr "Feld-Name"
|
708 |
|
709 |
#: includes/admin/views/field-group-fields.php:7
|
710 |
-
#, fuzzy
|
711 |
msgid "Key"
|
712 |
-
msgstr "
|
713 |
|
714 |
# @ acf
|
715 |
#: includes/admin/views/field-group-fields.php:8
|
@@ -786,13 +780,13 @@ msgstr "Platzierung Beschriftung"
|
|
786 |
|
787 |
# @ acf
|
788 |
#: includes/admin/views/field-group-options.php:62
|
789 |
-
#: includes/fields/class-acf-field-tab.php:
|
790 |
msgid "Top aligned"
|
791 |
msgstr "Über dem Feld"
|
792 |
|
793 |
# @ acf
|
794 |
#: includes/admin/views/field-group-options.php:63
|
795 |
-
#: includes/fields/class-acf-field-tab.php:
|
796 |
msgid "Left Aligned"
|
797 |
msgstr "Links neben dem Feld"
|
798 |
|
@@ -897,7 +891,7 @@ msgstr "Seiten-Attribute"
|
|
897 |
|
898 |
# @ acf
|
899 |
#: includes/admin/views/field-group-options.php:126
|
900 |
-
#: includes/fields/class-acf-field-relationship.php:
|
901 |
msgid "Featured Image"
|
902 |
msgstr "Beitragsbild"
|
903 |
|
@@ -923,13 +917,13 @@ msgstr "Zeige diese Felder, wenn"
|
|
923 |
|
924 |
#: includes/admin/views/install-network.php:4
|
925 |
msgid "Upgrade Sites"
|
926 |
-
msgstr "
|
927 |
|
928 |
# @ acf
|
929 |
#: includes/admin/views/install-network.php:9
|
930 |
#: includes/admin/views/install.php:3
|
931 |
msgid "Advanced Custom Fields Database Upgrade"
|
932 |
-
msgstr "Advanced Custom Fields Datenbank
|
933 |
|
934 |
#: includes/admin/views/install-network.php:11
|
935 |
#, php-format
|
@@ -937,25 +931,25 @@ msgid ""
|
|
937 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
938 |
"and then click %s."
|
939 |
msgstr ""
|
940 |
-
"Folgende
|
941 |
-
"
|
942 |
|
943 |
# @ acf
|
944 |
#: includes/admin/views/install-network.php:20
|
945 |
#: includes/admin/views/install-network.php:28
|
946 |
msgid "Site"
|
947 |
-
msgstr "
|
948 |
|
949 |
# @ acf
|
950 |
#: includes/admin/views/install-network.php:48
|
951 |
#, php-format
|
952 |
msgid "Site requires database upgrade from %s to %s"
|
953 |
-
msgstr "Die
|
954 |
|
955 |
# @ acf
|
956 |
#: includes/admin/views/install-network.php:50
|
957 |
msgid "Site is up to date"
|
958 |
-
msgstr "
|
959 |
|
960 |
# @ acf
|
961 |
#: includes/admin/views/install-network.php:63
|
@@ -963,8 +957,8 @@ msgstr "Seite ist aktuell"
|
|
963 |
msgid ""
|
964 |
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
965 |
msgstr ""
|
966 |
-
"Datenbank
|
967 |
-
"
|
968 |
|
969 |
# @ acf
|
970 |
#: includes/admin/views/install-network.php:102
|
@@ -973,50 +967,49 @@ msgid ""
|
|
973 |
"It is strongly recommended that you backup your database before proceeding. "
|
974 |
"Are you sure you wish to run the updater now?"
|
975 |
msgstr ""
|
976 |
-
"Es wird dringend
|
977 |
-
"fortfährst. Bist
|
978 |
-
"willst?"
|
979 |
|
980 |
# @ default
|
981 |
#: includes/admin/views/install-network.php:158
|
982 |
msgid "Upgrade complete"
|
983 |
-
msgstr "
|
984 |
|
985 |
# @ acf
|
986 |
#: includes/admin/views/install-network.php:162
|
987 |
#: includes/admin/views/install.php:9
|
988 |
#, php-format
|
989 |
msgid "Upgrading data to version %s"
|
990 |
-
msgstr "
|
991 |
|
992 |
# @ acf
|
993 |
#: includes/admin/views/install-notice.php:8
|
994 |
-
#: pro/fields/class-acf-field-repeater.php:
|
995 |
msgid "Repeater"
|
996 |
msgstr "Wiederholung"
|
997 |
|
998 |
# @ acf
|
999 |
#: includes/admin/views/install-notice.php:9
|
1000 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1001 |
msgid "Flexible Content"
|
1002 |
msgstr "Flexible Inhalte"
|
1003 |
|
1004 |
# @ acf
|
1005 |
#: includes/admin/views/install-notice.php:10
|
1006 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1007 |
msgid "Gallery"
|
1008 |
msgstr "Galerie"
|
1009 |
|
1010 |
# @ acf
|
1011 |
#: includes/admin/views/install-notice.php:11
|
1012 |
-
#: pro/locations/class-acf-location-options-page.php:
|
1013 |
msgid "Options Page"
|
1014 |
msgstr "Options-Seite"
|
1015 |
|
1016 |
# @ acf
|
1017 |
#: includes/admin/views/install-notice.php:26
|
1018 |
msgid "Database Upgrade Required"
|
1019 |
-
msgstr "Es ist
|
1020 |
|
1021 |
# @ acf
|
1022 |
#: includes/admin/views/install-notice.php:28
|
@@ -1030,8 +1023,8 @@ msgid ""
|
|
1030 |
"Before you start using the new awesome features, please update your database "
|
1031 |
"to the newest version."
|
1032 |
msgstr ""
|
1033 |
-
"Bevor
|
1034 |
-
"
|
1035 |
|
1036 |
#: includes/admin/views/install-notice.php:31
|
1037 |
#, php-format
|
@@ -1039,18 +1032,20 @@ msgid ""
|
|
1039 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
1040 |
"latest version."
|
1041 |
msgstr ""
|
|
|
|
|
1042 |
|
1043 |
# @ acf
|
1044 |
#: includes/admin/views/install.php:7
|
1045 |
msgid "Reading upgrade tasks..."
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
#: includes/admin/views/install.php:11
|
1049 |
#, php-format
|
1050 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
1051 |
msgstr ""
|
1052 |
-
"Datenbank-
|
1053 |
-
"
|
1054 |
|
1055 |
# @ acf
|
1056 |
#: includes/admin/views/settings-addons.php:17
|
@@ -1074,8 +1069,8 @@ msgid ""
|
|
1074 |
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
1075 |
"hope you like it."
|
1076 |
msgstr ""
|
1077 |
-
"
|
1078 |
-
"
|
1079 |
|
1080 |
# @ acf
|
1081 |
#: includes/admin/views/settings-info.php:17
|
@@ -1136,7 +1131,7 @@ msgstr ""
|
|
1136 |
# @ acf
|
1137 |
#: includes/admin/views/settings-info.php:39
|
1138 |
msgid "Goodbye Add-ons. Hello PRO"
|
1139 |
-
msgstr "Macht's gut Add-ons… Hallo PRO
|
1140 |
|
1141 |
# @ acf
|
1142 |
#: includes/admin/views/settings-info.php:44
|
@@ -1210,10 +1205,9 @@ msgid ""
|
|
1210 |
"but if you do have one, please contact our support team via the <a href=\"%s"
|
1211 |
"\">help desk</a>"
|
1212 |
msgstr ""
|
1213 |
-
"Um möglichen Fragen
|
1214 |
-
"
|
1215 |
-
"
|
1216 |
-
"Support-Team </a>."
|
1217 |
|
1218 |
# @ acf
|
1219 |
#: includes/admin/views/settings-info.php:66
|
@@ -1371,7 +1365,7 @@ msgstr ""
|
|
1371 |
|
1372 |
# @ acf
|
1373 |
#: includes/admin/views/settings-info.php:144
|
1374 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1375 |
msgid "Page Link"
|
1376 |
msgstr "Seiten-Link"
|
1377 |
|
@@ -1474,7 +1468,7 @@ msgstr ""
|
|
1474 |
|
1475 |
# @ acf
|
1476 |
#: includes/admin/views/settings-tools.php:77
|
1477 |
-
#: includes/fields/class-acf-field-file.php:
|
1478 |
msgid "Select File"
|
1479 |
msgstr "Datei auswählen"
|
1480 |
|
@@ -1504,56 +1498,56 @@ msgid "Full Size"
|
|
1504 |
msgstr "Volle Größe"
|
1505 |
|
1506 |
# @ acf
|
1507 |
-
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:
|
1508 |
-
#: pro/fields/class-acf-field-clone.php:
|
1509 |
msgid "(no title)"
|
1510 |
msgstr "(ohne Titel)"
|
1511 |
|
1512 |
-
#: includes/api/api-helpers.php:
|
1513 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1514 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1515 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1516 |
msgid "Parent"
|
1517 |
msgstr "Übergeordnet"
|
1518 |
|
1519 |
# @ acf
|
1520 |
-
#: includes/api/api-helpers.php:
|
1521 |
#, php-format
|
1522 |
msgid "Image width must be at least %dpx."
|
1523 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1524 |
|
1525 |
# @ acf
|
1526 |
-
#: includes/api/api-helpers.php:
|
1527 |
#, php-format
|
1528 |
msgid "Image width must not exceed %dpx."
|
1529 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1530 |
|
1531 |
# @ acf
|
1532 |
-
#: includes/api/api-helpers.php:
|
1533 |
#, php-format
|
1534 |
msgid "Image height must be at least %dpx."
|
1535 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1536 |
|
1537 |
# @ acf
|
1538 |
-
#: includes/api/api-helpers.php:
|
1539 |
#, php-format
|
1540 |
msgid "Image height must not exceed %dpx."
|
1541 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1542 |
|
1543 |
# @ acf
|
1544 |
-
#: includes/api/api-helpers.php:
|
1545 |
#, php-format
|
1546 |
msgid "File size must be at least %s."
|
1547 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1548 |
|
1549 |
# @ acf
|
1550 |
-
#: includes/api/api-helpers.php:
|
1551 |
#, php-format
|
1552 |
msgid "File size must must not exceed %s."
|
1553 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1554 |
|
1555 |
# @ acf
|
1556 |
-
#: includes/api/api-helpers.php:
|
1557 |
#, php-format
|
1558 |
msgid "File type must be %s."
|
1559 |
msgstr "Der Dateityp muss %s sein."
|
@@ -1584,1087 +1578,1094 @@ msgid "jQuery"
|
|
1584 |
msgstr "jQuery"
|
1585 |
|
1586 |
# @ acf
|
1587 |
-
#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:
|
1588 |
-
#: includes/fields/class-acf-field-group.php:
|
1589 |
-
#: includes/fields/class-acf-field-radio.php:
|
1590 |
-
#: pro/fields/class-acf-field-clone.php:
|
1591 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1592 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1593 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1594 |
msgid "Layout"
|
1595 |
msgstr "Layout"
|
1596 |
|
1597 |
# @ acf
|
1598 |
-
#: includes/fields.php:
|
1599 |
msgid "Field type does not exist"
|
1600 |
msgstr "Feld-Typ existiert nicht"
|
1601 |
|
1602 |
-
#: includes/fields.php:
|
1603 |
-
#, fuzzy
|
1604 |
msgid "Unknown"
|
1605 |
msgstr "Unbekannte Feld-Gruppe"
|
1606 |
|
1607 |
# @ acf
|
1608 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1609 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1610 |
msgid "Checkbox"
|
1611 |
msgstr "Checkbox"
|
1612 |
|
1613 |
# @ acf
|
1614 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1615 |
msgid "Toggle All"
|
1616 |
msgstr "Alle auswählen"
|
1617 |
|
1618 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1619 |
msgid "Add new choice"
|
1620 |
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1621 |
|
1622 |
# @ acf
|
1623 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1624 |
-
#: includes/fields/class-acf-field-radio.php:
|
1625 |
-
#: includes/fields/class-acf-field-select.php:
|
1626 |
msgid "Choices"
|
1627 |
msgstr "Auswahlmöglichkeiten"
|
1628 |
|
1629 |
# @ acf
|
1630 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1631 |
-
#: includes/fields/class-acf-field-radio.php:
|
1632 |
-
#: includes/fields/class-acf-field-select.php:
|
1633 |
msgid "Enter each choice on a new line."
|
1634 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1635 |
|
1636 |
# @ acf
|
1637 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1638 |
-
#: includes/fields/class-acf-field-radio.php:
|
1639 |
-
#: includes/fields/class-acf-field-select.php:
|
1640 |
msgid "For more control, you may specify both a value and label like this:"
|
1641 |
msgstr ""
|
1642 |
"Für eine bessere Darstellung, kannst Du auch einen Wert und dazu dessen "
|
1643 |
"Beschriftung definieren:"
|
1644 |
|
1645 |
# @ acf
|
1646 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1647 |
-
#: includes/fields/class-acf-field-radio.php:
|
1648 |
-
#: includes/fields/class-acf-field-select.php:
|
1649 |
msgid "red : Red"
|
1650 |
msgstr "rot : Rot"
|
1651 |
|
1652 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1653 |
msgid "Allow Custom"
|
1654 |
msgstr "Erlaube Benutzerdefinierte Werte"
|
1655 |
|
1656 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1657 |
msgid "Allow 'custom' values to be added"
|
1658 |
msgstr "Erlaube das Hinzufügen benutzerdefinierter Werte"
|
1659 |
|
1660 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1661 |
msgid "Save Custom"
|
1662 |
msgstr "Benutzerdefinierte Werte abspeichern"
|
1663 |
|
1664 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1665 |
msgid "Save 'custom' values to the field's choices"
|
1666 |
msgstr ""
|
1667 |
"Speichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1668 |
|
1669 |
# @ acf
|
1670 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1671 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1672 |
-
#: includes/fields/class-acf-field-email.php:
|
1673 |
-
#: includes/fields/class-acf-field-number.php:
|
1674 |
-
#: includes/fields/class-acf-field-radio.php:
|
1675 |
-
#: includes/fields/class-acf-field-
|
1676 |
-
#: includes/fields/class-acf-field-
|
1677 |
-
#: includes/fields/class-acf-field-
|
1678 |
-
#: includes/fields/class-acf-field-
|
1679 |
-
#: includes/fields/class-acf-field-
|
1680 |
-
#: includes/fields/class-acf-field-
|
|
|
1681 |
msgid "Default Value"
|
1682 |
msgstr "Standardwert"
|
1683 |
|
1684 |
# @ acf
|
1685 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1686 |
-
#: includes/fields/class-acf-field-select.php:
|
1687 |
msgid "Enter each default value on a new line"
|
1688 |
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
1689 |
|
1690 |
# @ acf
|
1691 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1692 |
-
#: includes/fields/class-acf-field-radio.php:
|
1693 |
msgid "Vertical"
|
1694 |
msgstr "Vertikal"
|
1695 |
|
1696 |
# @ acf
|
1697 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1698 |
-
#: includes/fields/class-acf-field-radio.php:
|
1699 |
msgid "Horizontal"
|
1700 |
msgstr "Horizontal"
|
1701 |
|
1702 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1703 |
msgid "Toggle"
|
1704 |
msgstr "Auswählen"
|
1705 |
|
1706 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1707 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1708 |
msgstr ""
|
1709 |
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1710 |
|
1711 |
# @ acf
|
1712 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1713 |
-
#: includes/fields/class-acf-field-file.php:
|
1714 |
-
#: includes/fields/class-acf-field-image.php:
|
1715 |
-
#: includes/fields/class-acf-field-link.php:
|
1716 |
-
#: includes/fields/class-acf-field-radio.php:
|
1717 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1718 |
msgid "Return Value"
|
1719 |
msgstr "Rückgabewert"
|
1720 |
|
1721 |
# @ acf
|
1722 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1723 |
-
#: includes/fields/class-acf-field-file.php:
|
1724 |
-
#: includes/fields/class-acf-field-image.php:
|
1725 |
-
#: includes/fields/class-acf-field-link.php:
|
1726 |
-
#: includes/fields/class-acf-field-radio.php:
|
1727 |
msgid "Specify the returned value on front end"
|
1728 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1729 |
|
1730 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1731 |
-
#: includes/fields/class-acf-field-radio.php:
|
1732 |
-
#: includes/fields/class-acf-field-select.php:
|
1733 |
msgid "Value"
|
1734 |
msgstr "Wert"
|
1735 |
|
1736 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1737 |
-
#: includes/fields/class-acf-field-radio.php:
|
1738 |
-
#: includes/fields/class-acf-field-select.php:
|
1739 |
msgid "Both (Array)"
|
1740 |
msgstr "Beide (Array)"
|
1741 |
|
1742 |
# @ acf
|
1743 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1744 |
msgid "Color Picker"
|
1745 |
msgstr "Farbe"
|
1746 |
|
1747 |
# @ acf
|
1748 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1749 |
msgid "Clear"
|
1750 |
msgstr "Leeren"
|
1751 |
|
1752 |
# @ acf
|
1753 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1754 |
msgid "Default"
|
1755 |
msgstr "Standard"
|
1756 |
|
1757 |
# @ acf
|
1758 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1759 |
msgid "Select Color"
|
1760 |
msgstr "Farbe auswählen"
|
1761 |
|
1762 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1763 |
msgid "Current Color"
|
1764 |
msgstr "Aktuelle Farbe"
|
1765 |
|
1766 |
# @ acf
|
1767 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1768 |
msgid "Date Picker"
|
1769 |
msgstr "Datum"
|
1770 |
|
1771 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1772 |
msgctxt "Date Picker JS closeText"
|
1773 |
msgid "Done"
|
1774 |
msgstr "Fertig"
|
1775 |
|
1776 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1777 |
msgctxt "Date Picker JS currentText"
|
1778 |
msgid "Today"
|
1779 |
msgstr "Heute"
|
1780 |
|
1781 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1782 |
msgctxt "Date Picker JS nextText"
|
1783 |
msgid "Next"
|
1784 |
msgstr "Nächstes"
|
1785 |
|
1786 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1787 |
msgctxt "Date Picker JS prevText"
|
1788 |
msgid "Prev"
|
1789 |
msgstr "Vorheriges"
|
1790 |
|
1791 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1792 |
msgctxt "Date Picker JS weekHeader"
|
1793 |
msgid "Wk"
|
1794 |
msgstr "Wo."
|
1795 |
|
1796 |
# @ acf
|
1797 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1798 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1799 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1800 |
msgid "Display Format"
|
1801 |
msgstr "Darstellungs-Format"
|
1802 |
|
1803 |
# @ acf
|
1804 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1805 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1806 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1807 |
msgid "The format displayed when editing a post"
|
1808 |
msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
1809 |
|
1810 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1811 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1812 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1813 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1814 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1815 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1816 |
-
#, fuzzy
|
1817 |
msgid "Custom:"
|
1818 |
-
msgstr "Erstelle eine Feld-Gruppe"
|
1819 |
|
1820 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1821 |
msgid "Save Format"
|
1822 |
msgstr "Format abspeichern"
|
1823 |
|
1824 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1825 |
msgid "The format used when saving a value"
|
1826 |
msgstr "Das Format das für das Speichern eines Wertes verwendet wird"
|
1827 |
|
1828 |
# @ acf
|
1829 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1830 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1831 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1832 |
-
#: includes/fields/class-acf-field-relationship.php:
|
1833 |
-
#: includes/fields/class-acf-field-select.php:
|
1834 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1835 |
msgid "Return Format"
|
1836 |
msgstr "Rückgabewert"
|
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 returned via template functions"
|
1843 |
msgstr "Das Datums-Format für die Ausgabe in den Template-Funktionen"
|
1844 |
|
1845 |
# @ acf
|
1846 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1847 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1848 |
msgid "Week Starts On"
|
1849 |
msgstr "Die Woche beginnt am"
|
1850 |
|
1851 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1852 |
msgid "Date Time Picker"
|
1853 |
msgstr "Datum und Uhrzeit auswählen"
|
1854 |
|
1855 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1856 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1857 |
msgid "Choose Time"
|
1858 |
msgstr "Zeit auswählen"
|
1859 |
|
1860 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1861 |
msgctxt "Date Time Picker JS timeText"
|
1862 |
msgid "Time"
|
1863 |
msgstr "Zeit"
|
1864 |
|
1865 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1866 |
msgctxt "Date Time Picker JS hourText"
|
1867 |
msgid "Hour"
|
1868 |
msgstr "Stunde"
|
1869 |
|
1870 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1871 |
msgctxt "Date Time Picker JS minuteText"
|
1872 |
msgid "Minute"
|
1873 |
msgstr "Minute"
|
1874 |
|
1875 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1876 |
msgctxt "Date Time Picker JS secondText"
|
1877 |
msgid "Second"
|
1878 |
msgstr "Sekunde"
|
1879 |
|
1880 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1881 |
msgctxt "Date Time Picker JS millisecText"
|
1882 |
msgid "Millisecond"
|
1883 |
msgstr "Millisekunde"
|
1884 |
|
1885 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1886 |
msgctxt "Date Time Picker JS microsecText"
|
1887 |
msgid "Microsecond"
|
1888 |
msgstr "Mikrosekunde"
|
1889 |
|
1890 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1891 |
msgctxt "Date Time Picker JS timezoneText"
|
1892 |
msgid "Time Zone"
|
1893 |
msgstr "Zeitzone"
|
1894 |
|
1895 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1896 |
msgctxt "Date Time Picker JS currentText"
|
1897 |
msgid "Now"
|
1898 |
msgstr "Jetzt"
|
1899 |
|
1900 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1901 |
msgctxt "Date Time Picker JS closeText"
|
1902 |
msgid "Done"
|
1903 |
msgstr "Fertig"
|
1904 |
|
1905 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1906 |
msgctxt "Date Time Picker JS selectText"
|
1907 |
msgid "Select"
|
1908 |
msgstr "Auswählen"
|
1909 |
|
1910 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1911 |
msgctxt "Date Time Picker JS amText"
|
1912 |
msgid "AM"
|
1913 |
msgstr "vorm."
|
1914 |
|
1915 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1916 |
msgctxt "Date Time Picker JS amTextShort"
|
1917 |
msgid "A"
|
1918 |
msgstr "vorm."
|
1919 |
|
1920 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1921 |
msgctxt "Date Time Picker JS pmText"
|
1922 |
msgid "PM"
|
1923 |
msgstr "nachm."
|
1924 |
|
1925 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1926 |
msgctxt "Date Time Picker JS pmTextShort"
|
1927 |
msgid "P"
|
1928 |
msgstr "nachm."
|
1929 |
|
1930 |
# @ acf
|
1931 |
-
#: includes/fields/class-acf-field-email.php:
|
1932 |
msgid "Email"
|
1933 |
msgstr "E-Mail"
|
1934 |
|
1935 |
# @ acf
|
1936 |
-
#: includes/fields/class-acf-field-email.php:
|
1937 |
-
#: includes/fields/class-acf-field-number.php:
|
1938 |
-
#: includes/fields/class-acf-field-radio.php:
|
1939 |
-
#: includes/fields/class-acf-field-
|
1940 |
-
#: includes/fields/class-acf-field-
|
1941 |
-
#: includes/fields/class-acf-field-
|
1942 |
-
#: includes/fields/class-acf-field-
|
|
|
1943 |
msgid "Appears when creating a new post"
|
1944 |
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1945 |
|
1946 |
# @ acf
|
1947 |
-
#: includes/fields/class-acf-field-email.php:
|
1948 |
-
#: includes/fields/class-acf-field-number.php:
|
1949 |
-
#: includes/fields/class-acf-field-password.php:
|
1950 |
-
#: includes/fields/class-acf-field-text.php:
|
1951 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1952 |
-
#: includes/fields/class-acf-field-url.php:
|
1953 |
msgid "Placeholder Text"
|
1954 |
msgstr "Platzhalter-Text"
|
1955 |
|
1956 |
# @ acf
|
1957 |
-
#: includes/fields/class-acf-field-email.php:
|
1958 |
-
#: includes/fields/class-acf-field-number.php:
|
1959 |
-
#: includes/fields/class-acf-field-password.php:
|
1960 |
-
#: includes/fields/class-acf-field-text.php:
|
1961 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1962 |
-
#: includes/fields/class-acf-field-url.php:
|
1963 |
msgid "Appears within the input"
|
1964 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1965 |
|
1966 |
# @ acf
|
1967 |
-
#: includes/fields/class-acf-field-email.php:
|
1968 |
-
#: includes/fields/class-acf-field-number.php:
|
1969 |
-
#: includes/fields/class-acf-field-password.php:
|
1970 |
-
#: includes/fields/class-acf-field-
|
|
|
1971 |
msgid "Prepend"
|
1972 |
msgstr "Voranstellen"
|
1973 |
|
1974 |
# @ acf
|
1975 |
-
#: includes/fields/class-acf-field-email.php:
|
1976 |
-
#: includes/fields/class-acf-field-number.php:
|
1977 |
-
#: includes/fields/class-acf-field-password.php:
|
1978 |
-
#: includes/fields/class-acf-field-
|
|
|
1979 |
msgid "Appears before the input"
|
1980 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1981 |
|
1982 |
# @ acf
|
1983 |
-
#: includes/fields/class-acf-field-email.php:
|
1984 |
-
#: includes/fields/class-acf-field-number.php:
|
1985 |
-
#: includes/fields/class-acf-field-password.php:
|
1986 |
-
#: includes/fields/class-acf-field-
|
|
|
1987 |
msgid "Append"
|
1988 |
msgstr "Anhängen"
|
1989 |
|
1990 |
# @ acf
|
1991 |
-
#: includes/fields/class-acf-field-email.php:
|
1992 |
-
#: includes/fields/class-acf-field-number.php:
|
1993 |
-
#: includes/fields/class-acf-field-password.php:
|
1994 |
-
#: includes/fields/class-acf-field-
|
|
|
1995 |
msgid "Appears after the input"
|
1996 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1997 |
|
1998 |
# @ acf
|
1999 |
-
#: includes/fields/class-acf-field-file.php:
|
2000 |
msgid "File"
|
2001 |
msgstr "Datei"
|
2002 |
|
2003 |
# @ acf
|
2004 |
-
#: includes/fields/class-acf-field-file.php:
|
2005 |
msgid "Edit File"
|
2006 |
msgstr "Datei bearbeiten"
|
2007 |
|
2008 |
# @ acf
|
2009 |
-
#: includes/fields/class-acf-field-file.php:
|
2010 |
msgid "Update File"
|
2011 |
msgstr "Datei aktualisieren"
|
2012 |
|
2013 |
# @ acf
|
2014 |
-
#: includes/fields/class-acf-field-file.php:
|
2015 |
-
#: includes/fields/class-acf-field-image.php:
|
2016 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2017 |
msgid "Uploaded to this post"
|
2018 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2019 |
|
2020 |
-
#: includes/fields/class-acf-field-file.php:
|
2021 |
msgid "File name"
|
2022 |
msgstr "Dateiname"
|
2023 |
|
2024 |
# @ acf
|
2025 |
-
#: includes/fields/class-acf-field-file.php:
|
2026 |
-
#: includes/fields/class-acf-field-file.php:
|
2027 |
-
#: includes/fields/class-acf-field-file.php:
|
2028 |
-
#: includes/fields/class-acf-field-image.php:
|
2029 |
-
#: includes/fields/class-acf-field-image.php:
|
2030 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2031 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2032 |
msgid "File size"
|
2033 |
msgstr "Dateigröße"
|
2034 |
|
2035 |
# @ acf
|
2036 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2037 |
msgid "Add File"
|
2038 |
msgstr "Datei hinzufügen"
|
2039 |
|
2040 |
# @ acf
|
2041 |
-
#: includes/fields/class-acf-field-file.php:
|
2042 |
msgid "File Array"
|
2043 |
msgstr "Datei-Array"
|
2044 |
|
2045 |
# @ acf
|
2046 |
-
#: includes/fields/class-acf-field-file.php:
|
2047 |
msgid "File URL"
|
2048 |
msgstr "Datei-URL"
|
2049 |
|
2050 |
# @ acf
|
2051 |
-
#: includes/fields/class-acf-field-file.php:
|
2052 |
msgid "File ID"
|
2053 |
msgstr "Datei-ID"
|
2054 |
|
2055 |
# @ acf
|
2056 |
-
#: includes/fields/class-acf-field-file.php:
|
2057 |
-
#: includes/fields/class-acf-field-image.php:
|
2058 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2059 |
msgid "Library"
|
2060 |
msgstr "Medienübersicht"
|
2061 |
|
2062 |
# @ acf
|
2063 |
-
#: includes/fields/class-acf-field-file.php:
|
2064 |
-
#: includes/fields/class-acf-field-image.php:
|
2065 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2066 |
msgid "Limit the media library choice"
|
2067 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2068 |
|
2069 |
# @ acf
|
2070 |
-
#: includes/fields/class-acf-field-file.php:
|
2071 |
-
#: includes/fields/class-acf-field-image.php:
|
2072 |
-
#: includes/locations/class-acf-location-attachment.php:
|
2073 |
-
#: includes/locations/class-acf-location-comment.php:
|
2074 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2075 |
-
#: includes/locations/class-acf-location-taxonomy.php:
|
2076 |
-
#: includes/locations/class-acf-location-user-form.php:
|
2077 |
-
#: includes/locations/class-acf-location-user-role.php:
|
2078 |
-
#: includes/locations/class-acf-location-widget.php:
|
2079 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2080 |
msgid "All"
|
2081 |
msgstr "Alle"
|
2082 |
|
2083 |
# @ acf
|
2084 |
-
#: includes/fields/class-acf-field-file.php:
|
2085 |
-
#: includes/fields/class-acf-field-image.php:
|
2086 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2087 |
msgid "Uploaded to post"
|
2088 |
msgstr "Für den Beitrag hochgeladen"
|
2089 |
|
2090 |
# @ acf
|
2091 |
-
#: includes/fields/class-acf-field-file.php:
|
2092 |
-
#: includes/fields/class-acf-field-image.php:
|
2093 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2094 |
msgid "Minimum"
|
2095 |
msgstr "Minimum"
|
2096 |
|
2097 |
# @ acf
|
2098 |
-
#: includes/fields/class-acf-field-file.php:
|
2099 |
-
#: includes/fields/class-acf-field-file.php:
|
2100 |
msgid "Restrict which files can be uploaded"
|
2101 |
msgstr ""
|
2102 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2103 |
"erfüllen"
|
2104 |
|
2105 |
# @ acf
|
2106 |
-
#: includes/fields/class-acf-field-file.php:
|
2107 |
-
#: includes/fields/class-acf-field-image.php:
|
2108 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2109 |
msgid "Maximum"
|
2110 |
msgstr "Maximum"
|
2111 |
|
2112 |
# @ acf
|
2113 |
-
#: includes/fields/class-acf-field-file.php:
|
2114 |
-
#: includes/fields/class-acf-field-image.php:
|
2115 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2116 |
msgid "Allowed file types"
|
2117 |
msgstr "Erlaubte Datei-Formate"
|
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 "Comma separated list. Leave blank for all types"
|
2124 |
msgstr ""
|
2125 |
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2126 |
"erlaubt"
|
2127 |
|
2128 |
# @ acf
|
2129 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2130 |
msgid "Google Map"
|
2131 |
msgstr "Google Maps"
|
2132 |
|
2133 |
# @ acf
|
2134 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2135 |
msgid "Locating"
|
2136 |
msgstr "Lokalisiere"
|
2137 |
|
2138 |
# @ acf
|
2139 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2140 |
msgid "Sorry, this browser does not support geolocation"
|
2141 |
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
2142 |
|
2143 |
# @ acf
|
2144 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2145 |
msgid "Clear location"
|
2146 |
msgstr "Position löschen"
|
2147 |
|
2148 |
# @ acf
|
2149 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2150 |
msgid "Find current location"
|
2151 |
msgstr "Aktuelle Position finden"
|
2152 |
|
2153 |
# @ acf
|
2154 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2155 |
msgid "Search for address..."
|
2156 |
msgstr "Nach der Adresse suchen..."
|
2157 |
|
2158 |
# @ acf
|
2159 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2160 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2161 |
msgid "Center"
|
2162 |
msgstr "Kartenmittelpunkt"
|
2163 |
|
2164 |
# @ acf
|
2165 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2166 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2167 |
msgid "Center the initial map"
|
2168 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2169 |
|
2170 |
# @ acf
|
2171 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2172 |
msgid "Zoom"
|
2173 |
msgstr "Zoom"
|
2174 |
|
2175 |
# @ acf
|
2176 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2177 |
msgid "Set the initial zoom level"
|
2178 |
msgstr "Legt die Zoomstufe der Karte fest"
|
2179 |
|
2180 |
# @ acf
|
2181 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2182 |
-
#: includes/fields/class-acf-field-image.php:
|
2183 |
-
#: includes/fields/class-acf-field-image.php:
|
2184 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2185 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2186 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2187 |
msgid "Height"
|
2188 |
msgstr "Höhe"
|
2189 |
|
2190 |
# @ acf
|
2191 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2192 |
msgid "Customise the map height"
|
2193 |
msgstr "Legt die Höhe der Karte fest"
|
2194 |
|
2195 |
# @ acf
|
2196 |
-
#: includes/fields/class-acf-field-group.php:
|
2197 |
-
#, fuzzy
|
2198 |
msgid "Group"
|
2199 |
msgstr ""
|
2200 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
2201 |
"Feldes an)"
|
2202 |
|
2203 |
# @ acf
|
2204 |
-
#: includes/fields/class-acf-field-group.php:
|
2205 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2206 |
msgid "Sub Fields"
|
2207 |
msgstr "Wiederholungsfelder"
|
2208 |
|
2209 |
-
#: includes/fields/class-acf-field-group.php:
|
2210 |
-
#: pro/fields/class-acf-field-clone.php:
|
2211 |
msgid "Specify the style used to render the selected fields"
|
2212 |
msgstr ""
|
2213 |
"Gib den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2214 |
|
2215 |
# @ acf
|
2216 |
-
#: includes/fields/class-acf-field-group.php:
|
2217 |
-
#: pro/fields/class-acf-field-clone.php:
|
2218 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2219 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2220 |
msgid "Block"
|
2221 |
msgstr "Block"
|
2222 |
|
2223 |
# @ acf
|
2224 |
-
#: includes/fields/class-acf-field-group.php:
|
2225 |
-
#: pro/fields/class-acf-field-clone.php:
|
2226 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2227 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2228 |
msgid "Table"
|
2229 |
msgstr "Tabelle"
|
2230 |
|
2231 |
# @ acf
|
2232 |
-
#: includes/fields/class-acf-field-group.php:
|
2233 |
-
#: pro/fields/class-acf-field-clone.php:
|
2234 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2235 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2236 |
msgid "Row"
|
2237 |
msgstr "Reihe"
|
2238 |
|
2239 |
# @ acf
|
2240 |
-
#: includes/fields/class-acf-field-image.php:
|
2241 |
msgid "Image"
|
2242 |
msgstr "Bild"
|
2243 |
|
2244 |
# @ acf
|
2245 |
-
#: includes/fields/class-acf-field-image.php:
|
2246 |
msgid "Select Image"
|
2247 |
msgstr "Bild auswählen"
|
2248 |
|
2249 |
# @ acf
|
2250 |
-
#: includes/fields/class-acf-field-image.php:
|
2251 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2252 |
msgid "Edit Image"
|
2253 |
msgstr "Bild bearbeiten"
|
2254 |
|
2255 |
# @ acf
|
2256 |
-
#: includes/fields/class-acf-field-image.php:
|
2257 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2258 |
msgid "Update Image"
|
2259 |
msgstr "Bild aktualisieren"
|
2260 |
|
2261 |
# @ acf
|
2262 |
-
#: includes/fields/class-acf-field-image.php:
|
2263 |
msgid "All images"
|
2264 |
msgstr "Alle Bilder"
|
2265 |
|
2266 |
# @ acf
|
2267 |
-
#: includes/fields/class-acf-field-image.php:
|
2268 |
-
#: includes/fields/class-acf-field-link.php:153 includes/input.php:267
|
2269 |
-
#: pro/fields/class-acf-field-gallery.php:358
|
2270 |
-
#: pro/fields/class-acf-field-gallery.php:546
|
2271 |
-
msgid "Remove"
|
2272 |
-
msgstr "Entfernen"
|
2273 |
-
|
2274 |
-
# @ acf
|
2275 |
-
#: includes/fields/class-acf-field-image.php:158
|
2276 |
msgid "No image selected"
|
2277 |
msgstr "Kein Bild ausgewählt"
|
2278 |
|
2279 |
# @ acf
|
2280 |
-
#: includes/fields/class-acf-field-image.php:
|
2281 |
msgid "Add Image"
|
2282 |
msgstr "Bild hinzufügen"
|
2283 |
|
2284 |
# @ acf
|
2285 |
-
#: includes/fields/class-acf-field-image.php:
|
2286 |
msgid "Image Array"
|
2287 |
msgstr "Bild-Array"
|
2288 |
|
2289 |
# @ acf
|
2290 |
-
#: includes/fields/class-acf-field-image.php:
|
2291 |
msgid "Image URL"
|
2292 |
msgstr "Bild-URL"
|
2293 |
|
2294 |
# @ acf
|
2295 |
-
#: includes/fields/class-acf-field-image.php:
|
2296 |
msgid "Image ID"
|
2297 |
msgstr "Bild-ID"
|
2298 |
|
2299 |
# @ acf
|
2300 |
-
#: includes/fields/class-acf-field-image.php:
|
2301 |
msgid "Preview Size"
|
2302 |
msgstr "Maße der Vorschau"
|
2303 |
|
2304 |
# @ acf
|
2305 |
-
#: includes/fields/class-acf-field-image.php:
|
2306 |
msgid "Shown when entering data"
|
2307 |
msgstr "Legt fest welche Maße die Vorschau in der Bearbeitungs-Ansicht hat"
|
2308 |
|
2309 |
# @ acf
|
2310 |
-
#: includes/fields/class-acf-field-image.php:
|
2311 |
-
#: includes/fields/class-acf-field-image.php:
|
2312 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2313 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2314 |
msgid "Restrict which images can be uploaded"
|
2315 |
msgstr ""
|
2316 |
"Erlaubt nur das Hochladen von Bildern die die angegebenen Eigenschaften "
|
2317 |
"erfüllen"
|
2318 |
|
2319 |
# @ acf
|
2320 |
-
#: includes/fields/class-acf-field-image.php:
|
2321 |
-
#: includes/fields/class-acf-field-image.php:
|
2322 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2323 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2324 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2325 |
msgid "Width"
|
2326 |
msgstr "Breite"
|
2327 |
|
2328 |
# @ acf
|
2329 |
-
#: includes/fields/class-acf-field-link.php:
|
2330 |
-
#, fuzzy
|
2331 |
msgid "Link"
|
2332 |
msgstr "Seiten-Link"
|
2333 |
|
2334 |
# @ acf
|
2335 |
-
#: includes/fields/class-acf-field-link.php:
|
2336 |
-
#, fuzzy
|
2337 |
msgid "Select Link"
|
2338 |
msgstr "Datei auswählen"
|
2339 |
|
2340 |
-
#: includes/fields/class-acf-field-link.php:
|
2341 |
msgid "Opens in a new window/tab"
|
2342 |
-
msgstr ""
|
2343 |
|
2344 |
# @ acf
|
2345 |
-
#: includes/fields/class-acf-field-link.php:
|
2346 |
-
#, fuzzy
|
2347 |
msgid "Link Array"
|
2348 |
msgstr "Datei-Array"
|
2349 |
|
2350 |
# @ acf
|
2351 |
-
#: includes/fields/class-acf-field-link.php:
|
2352 |
-
#, fuzzy
|
2353 |
msgid "Link URL"
|
2354 |
msgstr "Datei-URL"
|
2355 |
|
2356 |
# @ acf
|
2357 |
-
#: includes/fields/class-acf-field-message.php:
|
2358 |
-
#: includes/fields/class-acf-field-message.php:
|
2359 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2360 |
msgid "Message"
|
2361 |
msgstr "Nachricht"
|
2362 |
|
2363 |
# @ acf
|
2364 |
-
#: includes/fields/class-acf-field-message.php:
|
2365 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2366 |
msgid "New Lines"
|
2367 |
msgstr "Neue Zeilen"
|
2368 |
|
2369 |
# @ acf
|
2370 |
-
#: includes/fields/class-acf-field-message.php:
|
2371 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2372 |
msgid "Controls how new lines are rendered"
|
2373 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2374 |
|
2375 |
# @ acf
|
2376 |
-
#: includes/fields/class-acf-field-message.php:
|
2377 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2378 |
msgid "Automatically add paragraphs"
|
2379 |
msgstr "Absätze automatisch hinzufügen"
|
2380 |
|
2381 |
# @ acf
|
2382 |
-
#: includes/fields/class-acf-field-message.php:
|
2383 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2384 |
msgid "Automatically add <br>"
|
2385 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2386 |
|
2387 |
# @ acf
|
2388 |
-
#: includes/fields/class-acf-field-message.php:
|
2389 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2390 |
msgid "No Formatting"
|
2391 |
msgstr "Keine Formatierung"
|
2392 |
|
2393 |
# @ acf
|
2394 |
-
#: includes/fields/class-acf-field-message.php:
|
2395 |
msgid "Escape HTML"
|
2396 |
msgstr "HTML enkodieren"
|
2397 |
|
2398 |
# @ acf
|
2399 |
-
#: includes/fields/class-acf-field-message.php:
|
2400 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2401 |
msgstr ""
|
2402 |
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2403 |
"interpretiert"
|
2404 |
|
2405 |
# @ acf
|
2406 |
-
#: includes/fields/class-acf-field-number.php:
|
2407 |
msgid "Number"
|
2408 |
msgstr "Numerisch"
|
2409 |
|
2410 |
# @ acf
|
2411 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2412 |
msgid "Minimum Value"
|
2413 |
msgstr "Mindestwert"
|
2414 |
|
2415 |
# @ acf
|
2416 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2417 |
msgid "Maximum Value"
|
2418 |
msgstr "Maximalwert"
|
2419 |
|
2420 |
# @ acf
|
2421 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2422 |
msgid "Step Size"
|
2423 |
msgstr "Schrittweite"
|
2424 |
|
2425 |
# @ acf
|
2426 |
-
#: includes/fields/class-acf-field-number.php:
|
2427 |
msgid "Value must be a number"
|
2428 |
msgstr "Wert muss eine Zahl sein"
|
2429 |
|
2430 |
# @ acf
|
2431 |
-
#: includes/fields/class-acf-field-number.php:
|
2432 |
#, php-format
|
2433 |
msgid "Value must be equal to or higher than %d"
|
2434 |
msgstr "Wert muss größer oder gleich %d sein"
|
2435 |
|
2436 |
# @ acf
|
2437 |
-
#: includes/fields/class-acf-field-number.php:
|
2438 |
#, php-format
|
2439 |
msgid "Value must be equal to or lower than %d"
|
2440 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2441 |
|
2442 |
# @ acf
|
2443 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2444 |
msgid "oEmbed"
|
2445 |
msgstr "oEmbed"
|
2446 |
|
2447 |
# @ acf
|
2448 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2449 |
msgid "Enter URL"
|
2450 |
msgstr "URL eingeben"
|
2451 |
|
2452 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2453 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2454 |
msgid "Error."
|
2455 |
msgstr "Fehler."
|
2456 |
|
2457 |
# @ acf
|
2458 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2459 |
msgid "No embed found for the given URL."
|
2460 |
msgstr "Keine Inhalte für die eingegebene URL gefunden."
|
2461 |
|
2462 |
# @ acf
|
2463 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2464 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2465 |
msgid "Embed Size"
|
2466 |
msgstr "Maße"
|
2467 |
|
2468 |
# @ acf
|
2469 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2470 |
msgid "Archives"
|
2471 |
msgstr "Archive"
|
2472 |
|
2473 |
# @ acf
|
2474 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2475 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2476 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2477 |
msgid "Filter by Post Type"
|
2478 |
msgstr "Nach Post Types filtern"
|
2479 |
|
2480 |
# @ acf
|
2481 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2482 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2483 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2484 |
msgid "All post types"
|
2485 |
msgstr "Alle verfügbaren Post Types"
|
2486 |
|
2487 |
# @ acf
|
2488 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2489 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2490 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2491 |
msgid "Filter by Taxonomy"
|
2492 |
msgstr "Nach Taxonomien filtern"
|
2493 |
|
2494 |
# @ acf
|
2495 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2496 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2497 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2498 |
msgid "All taxonomies"
|
2499 |
msgstr "Alle Taxonomien"
|
2500 |
|
2501 |
# @ acf
|
2502 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2503 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2504 |
-
#: includes/fields/class-acf-field-radio.php:
|
2505 |
-
#: includes/fields/class-acf-field-select.php:
|
2506 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2507 |
-
#: includes/fields/class-acf-field-user.php:
|
2508 |
msgid "Allow Null?"
|
2509 |
msgstr "NULL-Werte zulassen?"
|
2510 |
|
2511 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2512 |
msgid "Allow Archives URLs"
|
2513 |
msgstr "Archiv-URL's zulassen"
|
2514 |
|
2515 |
# @ acf
|
2516 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2517 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2518 |
-
#: includes/fields/class-acf-field-select.php:
|
2519 |
-
#: includes/fields/class-acf-field-user.php:
|
2520 |
msgid "Select multiple values?"
|
2521 |
msgstr "Mehrere Werte auswählbar?"
|
2522 |
|
2523 |
# @ acf
|
2524 |
-
#: includes/fields/class-acf-field-password.php:
|
2525 |
msgid "Password"
|
2526 |
msgstr "Passwort"
|
2527 |
|
2528 |
# @ acf
|
2529 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2530 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2531 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2532 |
msgid "Post Object"
|
2533 |
msgstr "Beitrags-Objekt"
|
2534 |
|
2535 |
# @ acf
|
2536 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2537 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2538 |
msgid "Post ID"
|
2539 |
msgstr "Beitrags-ID"
|
2540 |
|
2541 |
# @ acf
|
2542 |
-
#: includes/fields/class-acf-field-radio.php:
|
2543 |
msgid "Radio Button"
|
2544 |
msgstr "Radio-Button"
|
2545 |
|
2546 |
# @ acf
|
2547 |
-
#: includes/fields/class-acf-field-radio.php:
|
2548 |
msgid "Other"
|
2549 |
msgstr "Sonstige"
|
2550 |
|
2551 |
# @ acf
|
2552 |
-
#: includes/fields/class-acf-field-radio.php:
|
2553 |
msgid "Add 'other' choice to allow for custom values"
|
2554 |
msgstr ""
|
2555 |
"Fügt die Option 'Sonstige' hinzu welche erlaubt benutzerdefinierte Werte "
|
2556 |
"hinzuzufügen"
|
2557 |
|
2558 |
# @ acf
|
2559 |
-
#: includes/fields/class-acf-field-radio.php:
|
2560 |
msgid "Save Other"
|
2561 |
msgstr "'Sonstige' speichern"
|
2562 |
|
2563 |
# @ acf
|
2564 |
-
#: includes/fields/class-acf-field-radio.php:
|
2565 |
msgid "Save 'other' values to the field's choices"
|
2566 |
msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu"
|
2567 |
|
|
|
|
|
|
|
|
|
2568 |
# @ acf
|
2569 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2570 |
msgid "Relationship"
|
2571 |
msgstr "Beziehung"
|
2572 |
|
2573 |
# @ acf
|
2574 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2575 |
msgid "Minimum values reached ( {min} values )"
|
2576 |
msgstr "Minimum der Einträge mit ({min} Einträge) erreicht"
|
2577 |
|
2578 |
# @ acf
|
2579 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2580 |
msgid "Maximum values reached ( {max} values )"
|
2581 |
msgstr "Maximum der Einträge mit ({max} Einträge) erreicht"
|
2582 |
|
2583 |
# @ acf
|
2584 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2585 |
msgid "Loading"
|
2586 |
msgstr "Lade"
|
2587 |
|
2588 |
# @ acf
|
2589 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2590 |
msgid "No matches found"
|
2591 |
msgstr "Keine Übereinstimmung gefunden"
|
2592 |
|
2593 |
# @ acf
|
2594 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2595 |
-
msgid "Search..."
|
2596 |
-
msgstr "Suchen..."
|
2597 |
-
|
2598 |
-
# @ acf
|
2599 |
-
#: includes/fields/class-acf-field-relationship.php:594
|
2600 |
msgid "Select post type"
|
2601 |
msgstr "Beitrag-Typ auswählen"
|
2602 |
|
2603 |
# @ acf
|
2604 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2605 |
msgid "Select taxonomy"
|
2606 |
msgstr "Taxonomie auswählen"
|
2607 |
|
2608 |
# @ acf
|
2609 |
-
#: includes/fields/class-acf-field-relationship.php:
|
|
|
|
|
|
|
|
|
|
|
2610 |
msgid "Filters"
|
2611 |
msgstr "Filter"
|
2612 |
|
2613 |
# @ acf
|
2614 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2615 |
#: includes/locations/class-acf-location-post-type.php:27
|
2616 |
msgid "Post Type"
|
2617 |
msgstr "Beitrags-Typ"
|
2618 |
|
2619 |
# @ acf
|
2620 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2621 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2622 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2623 |
msgid "Taxonomy"
|
2624 |
msgstr "Taxonomie"
|
2625 |
|
2626 |
# @ acf
|
2627 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2628 |
msgid "Elements"
|
2629 |
msgstr "Elemente"
|
2630 |
|
2631 |
# @ acf
|
2632 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2633 |
msgid "Selected elements will be displayed in each result"
|
2634 |
msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt"
|
2635 |
|
2636 |
# @ acf
|
2637 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2638 |
msgid "Minimum posts"
|
2639 |
msgstr "Min. Anzahl der Beiträge"
|
2640 |
|
2641 |
# @ acf
|
2642 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2643 |
msgid "Maximum posts"
|
2644 |
msgstr "Max. Anzahl der Beiträge"
|
2645 |
|
2646 |
# @ acf
|
2647 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2648 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2649 |
#, php-format
|
2650 |
msgid "%s requires at least %s selection"
|
2651 |
msgid_plural "%s requires at least %s selections"
|
2652 |
msgstr[0] "%s benötigt mindestens %s Selektion"
|
2653 |
msgstr[1] "%s benötigt mindestens %s Selektionen"
|
2654 |
|
2655 |
-
#: includes/fields/class-acf-field-select.php:
|
2656 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2657 |
msgctxt "noun"
|
2658 |
msgid "Select"
|
2659 |
msgstr "Auswahl"
|
2660 |
|
2661 |
-
#: includes/fields/class-acf-field-select.php:
|
2662 |
msgctxt "Select2 JS matches_1"
|
2663 |
msgid "One result is available, press enter to select it."
|
2664 |
msgstr ""
|
2665 |
"Es ist ein Ergebnis verfügbar, drücke die Eingabetaste um es auszuwählen."
|
2666 |
|
2667 |
-
#: includes/fields/class-acf-field-select.php:
|
2668 |
#, php-format
|
2669 |
msgctxt "Select2 JS matches_n"
|
2670 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
@@ -2672,90 +2673,90 @@ msgstr ""
|
|
2672 |
"Es sind %d Ergebnisse verfügbar, benutze die Pfeiltasten um nach oben und "
|
2673 |
"unten zu navigieren."
|
2674 |
|
2675 |
-
#: includes/fields/class-acf-field-select.php:
|
2676 |
msgctxt "Select2 JS matches_0"
|
2677 |
msgid "No matches found"
|
2678 |
msgstr "Keine Übereinstimmungen gefunden"
|
2679 |
|
2680 |
-
#: includes/fields/class-acf-field-select.php:
|
2681 |
msgctxt "Select2 JS input_too_short_1"
|
2682 |
msgid "Please enter 1 or more characters"
|
2683 |
msgstr "Gib bitte ein oder mehr Zeichen ein"
|
2684 |
|
2685 |
-
#: includes/fields/class-acf-field-select.php:
|
2686 |
#, php-format
|
2687 |
msgctxt "Select2 JS input_too_short_n"
|
2688 |
msgid "Please enter %d or more characters"
|
2689 |
msgstr "Gib bitte %d oder mehr Zeichen ein"
|
2690 |
|
2691 |
-
#: includes/fields/class-acf-field-select.php:
|
2692 |
msgctxt "Select2 JS input_too_long_1"
|
2693 |
msgid "Please delete 1 character"
|
2694 |
msgstr "Lösche bitte ein Zeichen"
|
2695 |
|
2696 |
-
#: includes/fields/class-acf-field-select.php:
|
2697 |
#, php-format
|
2698 |
msgctxt "Select2 JS input_too_long_n"
|
2699 |
msgid "Please delete %d characters"
|
2700 |
msgstr "Lösche bitte %d Zeichen"
|
2701 |
|
2702 |
-
#: includes/fields/class-acf-field-select.php:
|
2703 |
msgctxt "Select2 JS selection_too_long_1"
|
2704 |
msgid "You can only select 1 item"
|
2705 |
msgstr "Du kannst nur ein Element auswählen"
|
2706 |
|
2707 |
-
#: includes/fields/class-acf-field-select.php:
|
2708 |
#, php-format
|
2709 |
msgctxt "Select2 JS selection_too_long_n"
|
2710 |
msgid "You can only select %d items"
|
2711 |
msgstr "Du kannst nur %d Elemente auswählen"
|
2712 |
|
2713 |
-
#: includes/fields/class-acf-field-select.php:
|
2714 |
msgctxt "Select2 JS load_more"
|
2715 |
msgid "Loading more results…"
|
2716 |
msgstr "Mehr Ergebnisse laden…"
|
2717 |
|
2718 |
-
#: includes/fields/class-acf-field-select.php:
|
2719 |
msgctxt "Select2 JS searching"
|
2720 |
msgid "Searching…"
|
2721 |
msgstr "Suchen…"
|
2722 |
|
2723 |
-
#: includes/fields/class-acf-field-select.php:
|
2724 |
msgctxt "Select2 JS load_fail"
|
2725 |
msgid "Loading failed"
|
2726 |
msgstr "Laden fehlgeschlagen"
|
2727 |
|
2728 |
-
#: includes/fields/class-acf-field-select.php:
|
2729 |
msgctxt "verb"
|
2730 |
msgid "Select"
|
2731 |
msgstr "Auswählen"
|
2732 |
|
2733 |
# @ acf
|
2734 |
-
#: includes/fields/class-acf-field-select.php:
|
2735 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2736 |
msgid "Stylised UI"
|
2737 |
msgstr "Modernes Auswahlfeld"
|
2738 |
|
2739 |
# @ acf
|
2740 |
-
#: includes/fields/class-acf-field-select.php:
|
2741 |
msgid "Use AJAX to lazy load choices?"
|
2742 |
-
msgstr "AJAX
|
2743 |
|
2744 |
-
#: includes/fields/class-acf-field-select.php:
|
2745 |
msgid "Specify the value returned"
|
2746 |
msgstr "Lege den Rückgabewert fest"
|
2747 |
|
2748 |
-
#: includes/fields/class-acf-field-separator.php:
|
2749 |
msgid "Separator"
|
2750 |
-
msgstr ""
|
2751 |
|
2752 |
# @ acf
|
2753 |
-
#: includes/fields/class-acf-field-tab.php:
|
2754 |
msgid "Tab"
|
2755 |
msgstr "Tab"
|
2756 |
|
2757 |
# @ acf
|
2758 |
-
#: includes/fields/class-acf-field-tab.php:
|
2759 |
msgid ""
|
2760 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2761 |
"field or flexible content field layout"
|
@@ -2764,7 +2765,7 @@ msgstr ""
|
|
2764 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2765 |
|
2766 |
# @ acf
|
2767 |
-
#: includes/fields/class-acf-field-tab.php:
|
2768 |
msgid ""
|
2769 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2770 |
"together."
|
@@ -2773,7 +2774,7 @@ msgstr ""
|
|
2773 |
"Tabs zusammengefasst werden."
|
2774 |
|
2775 |
# @ acf
|
2776 |
-
#: includes/fields/class-acf-field-tab.php:
|
2777 |
msgid ""
|
2778 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2779 |
"defined) will be grouped together using this field's label as the tab "
|
@@ -2784,280 +2785,285 @@ msgstr ""
|
|
2784 |
"zusammengefasst."
|
2785 |
|
2786 |
# @ acf
|
2787 |
-
#: includes/fields/class-acf-field-tab.php:
|
2788 |
msgid "Placement"
|
2789 |
msgstr "Platzierung Tabs"
|
2790 |
|
2791 |
-
#: includes/fields/class-acf-field-tab.php:
|
2792 |
msgid "End-point"
|
2793 |
msgstr "Abschluss"
|
2794 |
|
2795 |
-
#: includes/fields/class-acf-field-tab.php:
|
2796 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2797 |
msgstr "Benutze das Feld als einen Abschluss und starte eine Gruppe an Tabs"
|
2798 |
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
msgid "No"
|
2805 |
-
msgstr "Nein"
|
2806 |
|
2807 |
# @ acf
|
2808 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2809 |
msgid "None"
|
2810 |
msgstr "Nur Text"
|
2811 |
|
2812 |
# @ acf
|
2813 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2814 |
msgid "Select the taxonomy to be displayed"
|
2815 |
msgstr "Wähle die Taxonomie, welche angezeigt werden soll"
|
2816 |
|
2817 |
# @ acf
|
2818 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2819 |
msgid "Appearance"
|
2820 |
msgstr "Anzeige"
|
2821 |
|
2822 |
# @ acf
|
2823 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2824 |
msgid "Select the appearance of this field"
|
2825 |
msgstr "Wähle das Aussehen für dieses Feld"
|
2826 |
|
2827 |
# @ acf
|
2828 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2829 |
msgid "Multiple Values"
|
2830 |
-
msgstr "Mehrere Werte
|
2831 |
|
2832 |
# @ acf
|
2833 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2834 |
msgid "Multi Select"
|
2835 |
msgstr "Auswahlmenü"
|
2836 |
|
2837 |
# @ acf
|
2838 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2839 |
msgid "Single Value"
|
2840 |
msgstr "Einzelne Werte"
|
2841 |
|
2842 |
# @ acf
|
2843 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2844 |
msgid "Radio Buttons"
|
2845 |
msgstr "Radio Button"
|
2846 |
|
2847 |
# @ acf
|
2848 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2849 |
msgid "Create Terms"
|
2850 |
msgstr "Neue Einträge erlauben"
|
2851 |
|
2852 |
# @ acf
|
2853 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2854 |
msgid "Allow new terms to be created whilst editing"
|
2855 |
msgstr "Erlaube das Erstellen neuer Einträge beim Editieren"
|
2856 |
|
2857 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2858 |
msgid "Save Terms"
|
2859 |
msgstr "Einträge speichern"
|
2860 |
|
2861 |
# @ acf
|
2862 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2863 |
msgid "Connect selected terms to the post"
|
2864 |
msgstr "Speichert die ausgewählten Einträge auch im Beitrag"
|
2865 |
|
2866 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2867 |
msgid "Load Terms"
|
2868 |
msgstr "Einträge laden"
|
2869 |
|
2870 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2871 |
msgid "Load value from posts terms"
|
2872 |
msgstr "Den Wert von den Einträgen des Beitrags laden"
|
2873 |
|
2874 |
# @ acf
|
2875 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2876 |
msgid "Term Object"
|
2877 |
msgstr "Begriffs-Objekt"
|
2878 |
|
2879 |
# @ acf
|
2880 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2881 |
msgid "Term ID"
|
2882 |
msgstr "Begriffs-ID"
|
2883 |
|
2884 |
# @ acf
|
2885 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2886 |
#, php-format
|
2887 |
msgid "User unable to add new %s"
|
2888 |
msgstr "Der Benutzer kann keine neue %s hinzufügen"
|
2889 |
|
2890 |
# @ acf
|
2891 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2892 |
#, php-format
|
2893 |
msgid "%s already exists"
|
2894 |
msgstr "%s ist bereits vorhanden"
|
2895 |
|
2896 |
# @ acf
|
2897 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2898 |
#, php-format
|
2899 |
msgid "%s added"
|
2900 |
msgstr "%s hinzugefügt"
|
2901 |
|
2902 |
# @ acf
|
2903 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2904 |
msgid "Add"
|
2905 |
msgstr "Hinzufügen"
|
2906 |
|
2907 |
# @ acf
|
2908 |
-
#: includes/fields/class-acf-field-text.php:
|
2909 |
msgid "Text"
|
2910 |
msgstr "Text einzeilig"
|
2911 |
|
2912 |
# @ acf
|
2913 |
-
#: includes/fields/class-acf-field-text.php:
|
2914 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2915 |
msgid "Character Limit"
|
2916 |
msgstr "Zeichenbegrenzung"
|
2917 |
|
2918 |
# @ acf
|
2919 |
-
#: includes/fields/class-acf-field-text.php:
|
2920 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2921 |
msgid "Leave blank for no limit"
|
2922 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2923 |
|
2924 |
# @ acf
|
2925 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2926 |
msgid "Text Area"
|
2927 |
msgstr "Text mehrzeilig"
|
2928 |
|
2929 |
# @ acf
|
2930 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2931 |
msgid "Rows"
|
2932 |
msgstr "Zeilenanzahl"
|
2933 |
|
2934 |
# @ acf
|
2935 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2936 |
msgid "Sets the textarea height"
|
2937 |
msgstr "Definiert die Höhe des Textfelds"
|
2938 |
|
2939 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
2940 |
msgid "Time Picker"
|
2941 |
msgstr "Zeit auswählen"
|
2942 |
|
2943 |
# @ acf
|
2944 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2945 |
msgid "True / False"
|
2946 |
msgstr "Ja/Nein"
|
2947 |
|
2948 |
# @ acf
|
2949 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2950 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2951 |
-
#: pro/admin/views/html-settings-updates.php:
|
2952 |
msgid "Yes"
|
2953 |
msgstr "Ja"
|
2954 |
|
2955 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2956 |
msgid "Displays text alongside the checkbox"
|
2957 |
msgstr "Zeigt den Text neben der Checkbox an"
|
2958 |
|
2959 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2960 |
msgid "On Text"
|
2961 |
msgstr "Wenn aktiv"
|
2962 |
|
2963 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2964 |
msgid "Text shown when active"
|
2965 |
msgstr "Der Text der im aktiven Zustand angezeigt wird"
|
2966 |
|
2967 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2968 |
msgid "Off Text"
|
2969 |
msgstr "Wenn inaktiv"
|
2970 |
|
2971 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2972 |
msgid "Text shown when inactive"
|
2973 |
msgstr "Der Text der im inaktiven Zustand angezeigt wird"
|
2974 |
|
2975 |
# @ acf
|
2976 |
-
#: includes/fields/class-acf-field-url.php:
|
2977 |
msgid "Url"
|
2978 |
msgstr "URL"
|
2979 |
|
2980 |
# @ acf
|
2981 |
-
#: includes/fields/class-acf-field-url.php:
|
2982 |
msgid "Value must be a valid URL"
|
2983 |
msgstr "Bitte eine gültige URL eingeben"
|
2984 |
|
2985 |
# @ acf
|
2986 |
-
#: includes/fields/class-acf-field-user.php:
|
2987 |
msgid "User"
|
2988 |
msgstr "Benutzer"
|
2989 |
|
2990 |
# @ acf
|
2991 |
-
#: includes/fields/class-acf-field-user.php:
|
2992 |
msgid "Filter by role"
|
2993 |
msgstr "Filtere nach Benutzerrollen"
|
2994 |
|
2995 |
# @ acf
|
2996 |
-
#: includes/fields/class-acf-field-user.php:
|
2997 |
msgid "All user roles"
|
2998 |
msgstr "Alle Benutzerrollen"
|
2999 |
|
3000 |
# @ acf
|
3001 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3002 |
msgid "Wysiwyg Editor"
|
3003 |
msgstr "WYSIWYG-Editor"
|
3004 |
|
3005 |
# @ acf
|
3006 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3007 |
msgid "Visual"
|
3008 |
msgstr "Visuell"
|
3009 |
|
3010 |
# @ acf
|
3011 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3012 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3013 |
msgid "Text"
|
3014 |
msgstr "Text"
|
3015 |
|
3016 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3017 |
msgid "Click to initialize TinyMCE"
|
3018 |
msgstr "Klicke um TinyMCE zu initialisieren"
|
3019 |
|
3020 |
# @ acf
|
3021 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3022 |
msgid "Tabs"
|
3023 |
msgstr "Tabs"
|
3024 |
|
3025 |
# @ acf
|
3026 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3027 |
msgid "Visual & Text"
|
3028 |
msgstr "Visuell & Text"
|
3029 |
|
3030 |
# @ acf
|
3031 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3032 |
msgid "Visual Only"
|
3033 |
msgstr "Nur Visuell"
|
3034 |
|
3035 |
# @ acf
|
3036 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3037 |
msgid "Text Only"
|
3038 |
msgstr "Nur Text"
|
3039 |
|
3040 |
# @ acf
|
3041 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3042 |
msgid "Toolbar"
|
3043 |
msgstr "Werkzeugleiste"
|
3044 |
|
3045 |
# @ acf
|
3046 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3047 |
msgid "Show Media Upload Buttons?"
|
3048 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3049 |
|
3050 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3051 |
msgid "Delay initialization?"
|
3052 |
msgstr "Initialisierung verzögern?"
|
3053 |
|
3054 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3055 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3056 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3057 |
|
3058 |
# @ acf
|
3059 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
3060 |
-
#: pro/admin/admin-options-page.php:
|
3061 |
msgid "Edit field group"
|
3062 |
msgstr "Feld-Gruppen bearbeiten"
|
3063 |
|
@@ -3066,8 +3072,8 @@ msgid "Validate Email"
|
|
3066 |
msgstr "E-Mail bestätigen"
|
3067 |
|
3068 |
# @ acf
|
3069 |
-
#: includes/forms/form-front.php:103
|
3070 |
-
#: pro/
|
3071 |
msgid "Update"
|
3072 |
msgstr "Aktualisieren"
|
3073 |
|
@@ -3081,44 +3087,49 @@ msgid "Spam Detected"
|
|
3081 |
msgstr "Spam entdeckt"
|
3082 |
|
3083 |
# @ acf
|
3084 |
-
#: includes/input.php:
|
3085 |
msgid "Expand Details"
|
3086 |
msgstr "Details einblenden"
|
3087 |
|
3088 |
# @ acf
|
3089 |
-
#: includes/input.php:
|
3090 |
msgid "Collapse Details"
|
3091 |
msgstr "Details ausblenden"
|
3092 |
|
3093 |
# @ acf
|
3094 |
-
#: includes/input.php:
|
3095 |
msgid "Validation successful"
|
3096 |
msgstr "Überprüfung erfolgreich"
|
3097 |
|
3098 |
# @ acf
|
3099 |
-
#: includes/input.php:
|
3100 |
#: includes/validation.php:296
|
3101 |
msgid "Validation failed"
|
3102 |
msgstr "Überprüfung fehlgeschlagen"
|
3103 |
|
3104 |
# @ acf
|
3105 |
-
#: includes/input.php:
|
3106 |
msgid "1 field requires attention"
|
3107 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3108 |
|
3109 |
# @ acf
|
3110 |
-
#: includes/input.php:
|
3111 |
#, php-format
|
3112 |
msgid "%d fields require attention"
|
3113 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3114 |
|
3115 |
-
#: includes/input.php:
|
3116 |
msgid "Restricted"
|
3117 |
msgstr "Eingeschränkt"
|
3118 |
|
3119 |
-
|
|
|
|
|
|
|
|
|
|
|
3120 |
msgid "Cancel"
|
3121 |
-
msgstr ""
|
3122 |
|
3123 |
# @ acf
|
3124 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
@@ -3140,10 +3151,10 @@ msgstr "Formulare"
|
|
3140 |
msgid "Attachment"
|
3141 |
msgstr "Dateianhang"
|
3142 |
|
3143 |
-
#: includes/locations/class-acf-location-attachment.php:
|
3144 |
#, php-format
|
3145 |
msgid "All %s formats"
|
3146 |
-
msgstr ""
|
3147 |
|
3148 |
# @ acf
|
3149 |
#: includes/locations/class-acf-location-comment.php:27
|
@@ -3156,7 +3167,7 @@ msgid "Current User Role"
|
|
3156 |
msgstr "Aktuelle Benutzer-Rolle"
|
3157 |
|
3158 |
# @ acf
|
3159 |
-
#: includes/locations/class-acf-location-current-user-role.php:
|
3160 |
msgid "Super Admin"
|
3161 |
msgstr "Super-Admin"
|
3162 |
|
@@ -3166,37 +3177,36 @@ msgid "Current User"
|
|
3166 |
msgstr "Aktueller Benutzer"
|
3167 |
|
3168 |
# @ acf
|
3169 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3170 |
msgid "Logged in"
|
3171 |
-
msgstr "
|
3172 |
|
3173 |
# @ acf
|
3174 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3175 |
msgid "Viewing front end"
|
3176 |
msgstr "ist im Front-End"
|
3177 |
|
3178 |
# @ acf
|
3179 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3180 |
msgid "Viewing back end"
|
3181 |
msgstr "ist im Back-End"
|
3182 |
|
3183 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
3184 |
msgid "Menu Item"
|
3185 |
-
msgstr ""
|
3186 |
|
3187 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
3188 |
msgid "Menu"
|
3189 |
-
msgstr ""
|
3190 |
|
3191 |
# @ acf
|
3192 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
3193 |
-
#, fuzzy
|
3194 |
msgid "Menu Locations"
|
3195 |
-
msgstr "
|
3196 |
|
3197 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
3198 |
msgid "Menus"
|
3199 |
-
msgstr ""
|
3200 |
|
3201 |
# @ acf
|
3202 |
#: includes/locations/class-acf-location-page-parent.php:27
|
@@ -3209,8 +3219,8 @@ msgid "Page Template"
|
|
3209 |
msgstr "Seiten-Template"
|
3210 |
|
3211 |
# @ acf
|
3212 |
-
#: includes/locations/class-acf-location-page-template.php:
|
3213 |
-
#: includes/locations/class-acf-location-post-template.php:
|
3214 |
msgid "Default Template"
|
3215 |
msgstr "Standard-Template"
|
3216 |
|
@@ -3220,27 +3230,27 @@ msgid "Page Type"
|
|
3220 |
msgstr "Seitentyp"
|
3221 |
|
3222 |
# @ acf
|
3223 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3224 |
msgid "Front Page"
|
3225 |
msgstr "Startseite"
|
3226 |
|
3227 |
# @ acf
|
3228 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3229 |
msgid "Posts Page"
|
3230 |
msgstr "Beitrags-Seite"
|
3231 |
|
3232 |
# @ acf
|
3233 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3234 |
msgid "Top Level Page (no parent)"
|
3235 |
msgstr "Seite ohne übergeordnete Seiten"
|
3236 |
|
3237 |
# @ acf
|
3238 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3239 |
msgid "Parent Page (has children)"
|
3240 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3241 |
|
3242 |
# @ acf
|
3243 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3244 |
msgid "Child Page (has parent)"
|
3245 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3246 |
|
@@ -3265,10 +3275,9 @@ msgid "Post Taxonomy"
|
|
3265 |
msgstr "Beitrags-Taxonomie"
|
3266 |
|
3267 |
# @ acf
|
3268 |
-
#: includes/locations/class-acf-location-post-template.php:
|
3269 |
-
#, fuzzy
|
3270 |
msgid "Post Template"
|
3271 |
-
msgstr "
|
3272 |
|
3273 |
# @ acf
|
3274 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
@@ -3281,12 +3290,12 @@ msgid "User Form"
|
|
3281 |
msgstr "Benutzer-Formular"
|
3282 |
|
3283 |
# @ acf
|
3284 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3285 |
msgid "Add / Edit"
|
3286 |
msgstr "Hinzufügen / Bearbeiten"
|
3287 |
|
3288 |
# @ acf
|
3289 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3290 |
msgid "Register"
|
3291 |
msgstr "Registrieren"
|
3292 |
|
@@ -3323,12 +3332,12 @@ msgid "Advanced Custom Fields PRO"
|
|
3323 |
msgstr "Advanced Custom Fields PRO"
|
3324 |
|
3325 |
# @ acf
|
3326 |
-
#: pro/admin/admin-options-page.php:
|
3327 |
msgid "Publish"
|
3328 |
msgstr "Veröffentlichen"
|
3329 |
|
3330 |
# @ acf
|
3331 |
-
#: pro/admin/admin-options-page.php:
|
3332 |
#, php-format
|
3333 |
msgid ""
|
3334 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
@@ -3341,29 +3350,30 @@ msgstr ""
|
|
3341 |
#: pro/admin/admin-settings-updates.php:78
|
3342 |
msgid "<b>Error</b>. Could not connect to update server"
|
3343 |
msgstr ""
|
3344 |
-
"<b>Fehler</b>. Verbindung zum Update-Server
|
|
|
3345 |
|
3346 |
# @ acf
|
3347 |
#: pro/admin/admin-settings-updates.php:162
|
3348 |
-
#: pro/admin/views/html-settings-updates.php:
|
3349 |
msgid "Updates"
|
3350 |
msgstr "Aktualisierungen"
|
3351 |
|
3352 |
# @ acf
|
3353 |
-
#: pro/admin/views/html-settings-updates.php:
|
3354 |
msgid "Deactivate License"
|
3355 |
msgstr "Lizenz deaktivieren"
|
3356 |
|
3357 |
# @ acf
|
3358 |
-
#: pro/admin/views/html-settings-updates.php:
|
3359 |
msgid "Activate License"
|
3360 |
msgstr "Lizenz aktivieren"
|
3361 |
|
3362 |
-
#: pro/admin/views/html-settings-updates.php:
|
3363 |
msgid "License Information"
|
3364 |
msgstr "Lizenzinformation"
|
3365 |
|
3366 |
-
#: pro/admin/views/html-settings-updates.php:
|
3367 |
#, php-format
|
3368 |
msgid ""
|
3369 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -3376,366 +3386,366 @@ msgstr ""
|
|
3376 |
"a>."
|
3377 |
|
3378 |
# @ acf
|
3379 |
-
#: pro/admin/views/html-settings-updates.php:
|
3380 |
msgid "License Key"
|
3381 |
msgstr "Lizenzschlüssel"
|
3382 |
|
3383 |
# @ acf
|
3384 |
-
#: pro/admin/views/html-settings-updates.php:
|
3385 |
msgid "Update Information"
|
3386 |
msgstr "Aktualisierungsinformationen"
|
3387 |
|
3388 |
# @ acf
|
3389 |
-
#: pro/admin/views/html-settings-updates.php:
|
3390 |
msgid "Current Version"
|
3391 |
msgstr "Installierte Version"
|
3392 |
|
3393 |
# @ acf
|
3394 |
-
#: pro/admin/views/html-settings-updates.php:
|
3395 |
msgid "Latest Version"
|
3396 |
msgstr "Aktuellste Version"
|
3397 |
|
3398 |
# @ acf
|
3399 |
-
#: pro/admin/views/html-settings-updates.php:
|
3400 |
msgid "Update Available"
|
3401 |
msgstr "Aktualisierung verfügbar"
|
3402 |
|
3403 |
# @ acf
|
3404 |
-
#: pro/admin/views/html-settings-updates.php:
|
3405 |
msgid "Update Plugin"
|
3406 |
msgstr "Plugin aktualisieren"
|
3407 |
|
3408 |
# @ acf
|
3409 |
-
#: pro/admin/views/html-settings-updates.php:
|
3410 |
msgid "Please enter your license key above to unlock updates"
|
3411 |
msgstr ""
|
3412 |
"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit "
|
3413 |
"freizuschalten"
|
3414 |
|
3415 |
# @ acf
|
3416 |
-
#: pro/admin/views/html-settings-updates.php:
|
3417 |
msgid "Check Again"
|
3418 |
msgstr "Erneut suchen"
|
3419 |
|
3420 |
# @ acf
|
3421 |
-
#: pro/admin/views/html-settings-updates.php:
|
3422 |
msgid "Upgrade Notice"
|
3423 |
msgstr "Aktualisierungs-Hinweis"
|
3424 |
|
3425 |
-
#: pro/fields/class-acf-field-clone.php:
|
3426 |
msgctxt "noun"
|
3427 |
msgid "Clone"
|
3428 |
msgstr "Klon"
|
3429 |
|
3430 |
-
#: pro/fields/class-acf-field-clone.php:
|
3431 |
msgid "Select one or more fields you wish to clone"
|
3432 |
msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest"
|
3433 |
|
3434 |
# @ acf
|
3435 |
-
#: pro/fields/class-acf-field-clone.php:
|
3436 |
msgid "Display"
|
3437 |
msgstr "Anzeige"
|
3438 |
|
3439 |
-
#: pro/fields/class-acf-field-clone.php:
|
3440 |
msgid "Specify the style used to render the clone field"
|
3441 |
msgstr "Gib den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3442 |
|
3443 |
-
#: pro/fields/class-acf-field-clone.php:
|
3444 |
msgid "Group (displays selected fields in a group within this field)"
|
3445 |
msgstr ""
|
3446 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
3447 |
"Feldes an)"
|
3448 |
|
3449 |
-
#: pro/fields/class-acf-field-clone.php:
|
3450 |
msgid "Seamless (replaces this field with selected fields)"
|
3451 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3452 |
|
3453 |
-
#: pro/fields/class-acf-field-clone.php:
|
3454 |
#, php-format
|
3455 |
msgid "Labels will be displayed as %s"
|
3456 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3457 |
|
3458 |
-
#: pro/fields/class-acf-field-clone.php:
|
3459 |
msgid "Prefix Field Labels"
|
3460 |
msgstr "Präfix für Feld-Beschriftungen"
|
3461 |
|
3462 |
-
#: pro/fields/class-acf-field-clone.php:
|
3463 |
#, php-format
|
3464 |
msgid "Values will be saved as %s"
|
3465 |
msgstr "Werte werden als %s gespeichert"
|
3466 |
|
3467 |
-
#: pro/fields/class-acf-field-clone.php:
|
3468 |
msgid "Prefix Field Names"
|
3469 |
msgstr "Präfix für Feld-Namen"
|
3470 |
|
3471 |
-
#: pro/fields/class-acf-field-clone.php:
|
3472 |
msgid "Unknown field"
|
3473 |
msgstr "Unbekanntes Feld"
|
3474 |
|
3475 |
-
#: pro/fields/class-acf-field-clone.php:
|
3476 |
msgid "Unknown field group"
|
3477 |
msgstr "Unbekannte Feld-Gruppe"
|
3478 |
|
3479 |
-
#: pro/fields/class-acf-field-clone.php:
|
3480 |
#, php-format
|
3481 |
msgid "All fields from %s field group"
|
3482 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
3483 |
|
3484 |
# @ acf
|
3485 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3486 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3487 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3488 |
msgid "Add Row"
|
3489 |
msgstr "Eintrag hinzufügen"
|
3490 |
|
3491 |
# @ acf
|
3492 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3493 |
msgid "layout"
|
3494 |
msgstr "Eintrag"
|
3495 |
|
3496 |
# @ acf
|
3497 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3498 |
msgid "layouts"
|
3499 |
msgstr "Einträge"
|
3500 |
|
3501 |
# @ acf
|
3502 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3503 |
msgid "remove {layout}?"
|
3504 |
-
msgstr "{layout}
|
3505 |
|
3506 |
# @ acf
|
3507 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3508 |
msgid "This field requires at least {min} {identifier}"
|
3509 |
msgstr "Dieses Feld erfordert mindestens {min} {identifier}"
|
3510 |
|
3511 |
# @ acf
|
3512 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3513 |
msgid "This field has a limit of {max} {identifier}"
|
3514 |
msgstr "Diesem Feld dürfen maximal {max} {identifier} hinzugefügt werden."
|
3515 |
|
3516 |
# @ acf
|
3517 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3518 |
msgid "This field requires at least {min} {label} {identifier}"
|
3519 |
msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}"
|
3520 |
|
3521 |
# @ acf
|
3522 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3523 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3524 |
msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})"
|
3525 |
|
3526 |
# @ acf
|
3527 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3528 |
msgid "{available} {label} {identifier} available (max {max})"
|
3529 |
msgstr "{available} {label} {identifier} möglich (max {max})"
|
3530 |
|
3531 |
# @ acf
|
3532 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3533 |
msgid "{required} {label} {identifier} required (min {min})"
|
3534 |
msgstr "{required} {label} {identifier} erforderlich (min {min})"
|
3535 |
|
3536 |
# @ acf
|
3537 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3538 |
msgid "Flexible Content requires at least 1 layout"
|
3539 |
msgstr "Flexibler Inhalt benötigt mindestens ein Layout"
|
3540 |
|
3541 |
# @ acf
|
3542 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3543 |
#, php-format
|
3544 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3545 |
msgstr "Klicke \"%s\" zum Erstellen des Layouts"
|
3546 |
|
3547 |
# @ acf
|
3548 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3549 |
msgid "Add layout"
|
3550 |
msgstr "Layout hinzufügen"
|
3551 |
|
3552 |
# @ acf
|
3553 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3554 |
msgid "Remove layout"
|
3555 |
msgstr "Layout entfernen"
|
3556 |
|
3557 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3558 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3559 |
msgid "Click to toggle"
|
3560 |
msgstr "Zum Auswählen anklicken"
|
3561 |
|
3562 |
# @ acf
|
3563 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3564 |
msgid "Reorder Layout"
|
3565 |
msgstr "Layout sortieren"
|
3566 |
|
3567 |
# @ acf
|
3568 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3569 |
msgid "Reorder"
|
3570 |
msgstr "Sortieren"
|
3571 |
|
3572 |
# @ acf
|
3573 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3574 |
msgid "Delete Layout"
|
3575 |
msgstr "Layout löschen"
|
3576 |
|
3577 |
# @ acf
|
3578 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3579 |
msgid "Duplicate Layout"
|
3580 |
msgstr "Layout duplizieren"
|
3581 |
|
3582 |
# @ acf
|
3583 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3584 |
msgid "Add New Layout"
|
3585 |
msgstr "Neues Layout hinzufügen"
|
3586 |
|
3587 |
# @ acf
|
3588 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3589 |
msgid "Min"
|
3590 |
msgstr "Min"
|
3591 |
|
3592 |
# @ acf
|
3593 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3594 |
msgid "Max"
|
3595 |
msgstr "Max"
|
3596 |
|
3597 |
# @ acf
|
3598 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3599 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3600 |
msgid "Button Label"
|
3601 |
msgstr "Button-Beschriftung"
|
3602 |
|
3603 |
# @ acf
|
3604 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3605 |
msgid "Minimum Layouts"
|
3606 |
msgstr "Minimum Layouts"
|
3607 |
|
3608 |
# @ acf
|
3609 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3610 |
msgid "Maximum Layouts"
|
3611 |
msgstr "Maximum Layouts"
|
3612 |
|
3613 |
# @ acf
|
3614 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3615 |
msgid "Add Image to Gallery"
|
3616 |
msgstr "Bild zur Galerie hinzufügen"
|
3617 |
|
3618 |
# @ acf
|
3619 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3620 |
msgid "Maximum selection reached"
|
3621 |
msgstr "Maximale Auswahl erreicht"
|
3622 |
|
3623 |
# @ acf
|
3624 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3625 |
msgid "Length"
|
3626 |
msgstr "Länge"
|
3627 |
|
3628 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3629 |
msgid "Caption"
|
3630 |
msgstr "Bildunterschrift"
|
3631 |
|
3632 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3633 |
msgid "Alt Text"
|
3634 |
msgstr "Alt Text"
|
3635 |
|
3636 |
# @ acf
|
3637 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3638 |
msgid "Add to gallery"
|
3639 |
msgstr "Zur Galerie hinzufügen"
|
3640 |
|
3641 |
# @ acf
|
3642 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3643 |
msgid "Bulk actions"
|
3644 |
msgstr "Massenverarbeitung"
|
3645 |
|
3646 |
# @ acf
|
3647 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3648 |
msgid "Sort by date uploaded"
|
3649 |
msgstr "Sortiere nach Upload-Datum"
|
3650 |
|
3651 |
# @ acf
|
3652 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3653 |
msgid "Sort by date modified"
|
3654 |
msgstr "Sortiere nach Änderungs-Datum"
|
3655 |
|
3656 |
# @ acf
|
3657 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3658 |
msgid "Sort by title"
|
3659 |
msgstr "Sortiere nach Titel"
|
3660 |
|
3661 |
# @ acf
|
3662 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3663 |
msgid "Reverse current order"
|
3664 |
msgstr "Aktuelle Sortierung umkehren"
|
3665 |
|
3666 |
# @ acf
|
3667 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3668 |
msgid "Close"
|
3669 |
msgstr "Schließen"
|
3670 |
|
3671 |
# @ acf
|
3672 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3673 |
msgid "Minimum Selection"
|
3674 |
msgstr "Minimale Auswahl"
|
3675 |
|
3676 |
# @ acf
|
3677 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3678 |
msgid "Maximum Selection"
|
3679 |
msgstr "Maximale Auswahl"
|
3680 |
|
3681 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3682 |
msgid "Insert"
|
3683 |
msgstr "Einfügen"
|
3684 |
|
3685 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3686 |
msgid "Specify where new attachments are added"
|
3687 |
msgstr "Gib an wo neue Anhänge hinzugefügt werden"
|
3688 |
|
3689 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3690 |
msgid "Append to the end"
|
3691 |
msgstr "Anhängen"
|
3692 |
|
3693 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3694 |
msgid "Prepend to the beginning"
|
3695 |
msgstr "Voranstellen"
|
3696 |
|
3697 |
# @ acf
|
3698 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3699 |
msgid "Minimum rows reached ({min} rows)"
|
3700 |
msgstr "Minimum der Einträge mit ({min} Reihen) erreicht"
|
3701 |
|
3702 |
# @ acf
|
3703 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3704 |
msgid "Maximum rows reached ({max} rows)"
|
3705 |
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
3706 |
|
3707 |
# @ acf
|
3708 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3709 |
msgid "Add row"
|
3710 |
msgstr "Eintrag hinzufügen"
|
3711 |
|
3712 |
# @ acf
|
3713 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3714 |
msgid "Remove row"
|
3715 |
-
msgstr "Eintrag
|
3716 |
|
3717 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3718 |
msgid "Collapsed"
|
3719 |
msgstr "Zugeklappt"
|
3720 |
|
3721 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3722 |
msgid "Select a sub field to show when row is collapsed"
|
3723 |
msgstr ""
|
3724 |
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
3725 |
-
"werden soll
|
3726 |
|
3727 |
# @ acf
|
3728 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3729 |
msgid "Minimum Rows"
|
3730 |
msgstr "Minimum der Einträge"
|
3731 |
|
3732 |
# @ acf
|
3733 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3734 |
msgid "Maximum Rows"
|
3735 |
msgstr "Maximum der Einträge"
|
3736 |
|
3737 |
# @ acf
|
3738 |
-
#: pro/locations/class-acf-location-options-page.php:
|
3739 |
msgid "No options pages exist"
|
3740 |
msgstr "Keine Options-Seiten vorhanden"
|
3741 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Custom Fields Pro v5.6.2\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2017-09-17 14:05+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-09-19 13:13+0200\n"
|
7 |
+
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 2.0.3\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;"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
+
#: acf.php:359 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
+
#: acf.php:360
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
+
#: acf.php:361 acf.php:393 includes/admin/admin.php:118
|
42 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
+
#: acf.php:362
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
+
#: acf.php:363
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
+
#: acf.php:364
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
+
#: acf.php:365
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
+
#: acf.php:366
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
+
#: acf.php:367
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
+
#: acf.php:368
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
+
#: acf.php:391 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:806
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
+
#: acf.php:392
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
+
#: acf.php:394
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
+
#: acf.php:395
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
+
#: acf.php:396 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:397
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
+
#: acf.php:398
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
+
#: acf.php:399
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
+
#: acf.php:400
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
+
#: acf.php:439 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:444
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
207 |
|
208 |
# @ acf
|
209 |
#: includes/admin/admin-field-group.php:273
|
210 |
+
#: includes/api/api-field-group.php:751
|
211 |
msgid "copy"
|
212 |
msgstr "kopieren"
|
213 |
|
217 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
218 |
#: includes/admin/views/field-group-locations.php:29
|
219 |
#: includes/admin/views/html-location-group.php:3
|
220 |
+
#: includes/api/api-helpers.php:3964
|
221 |
msgid "or"
|
222 |
msgstr "oder"
|
223 |
|
239 |
# @ acf
|
240 |
#: includes/admin/admin-field-group.php:279
|
241 |
msgid "This field cannot be moved until its changes have been saved"
|
242 |
+
msgstr "Diese Feld kann nicht verschoben werden, bevor es gesichert wurde"
|
243 |
|
244 |
# @ acf
|
245 |
#: includes/admin/admin-field-group.php:280
|
247 |
msgstr "Null"
|
248 |
|
249 |
# @ acf
|
250 |
+
#: includes/admin/admin-field-group.php:281 includes/input.php:258
|
251 |
msgid "The changes you made will be lost if you navigate away from this page"
|
252 |
msgstr ""
|
253 |
+
"Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen wird"
|
254 |
|
255 |
# @ acf
|
256 |
#: includes/admin/admin-field-group.php:282
|
335 |
|
336 |
# @ acf
|
337 |
#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38
|
338 |
+
#: pro/fields/class-acf-field-gallery.php:355
|
339 |
msgid "Title"
|
340 |
msgstr "Titel"
|
341 |
|
344 |
#: includes/admin/views/field-group-options.php:96
|
345 |
#: includes/admin/views/install-network.php:21
|
346 |
#: includes/admin/views/install-network.php:29
|
347 |
+
#: pro/fields/class-acf-field-gallery.php:382
|
348 |
msgid "Description"
|
349 |
msgstr "Beschreibung"
|
350 |
|
355 |
# @ acf
|
356 |
#. Description of the plugin/theme
|
357 |
#: includes/admin/admin-field-groups.php:607
|
|
|
358 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
359 |
msgstr ""
|
360 |
+
"WordPress durch leistungsfähige, professionelle und zugleich intuitive "
|
361 |
+
"Felder erweitern."
|
362 |
|
363 |
# @ acf
|
364 |
#: includes/admin/admin-field-groups.php:609
|
365 |
#: includes/admin/settings-info.php:76
|
366 |
+
#: pro/admin/views/html-settings-updates.php:107
|
367 |
msgid "Changelog"
|
368 |
msgstr "Versionshinweise"
|
369 |
|
370 |
#: includes/admin/admin-field-groups.php:614
|
371 |
#, php-format
|
372 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
373 |
+
msgstr "Schau nach was es Neues in <a href=\"%s\">Version %s</a> gibt."
|
374 |
|
375 |
# @ acf
|
376 |
#: includes/admin/admin-field-groups.php:617
|
378 |
msgstr "Dokumentation (engl.)"
|
379 |
|
380 |
#: includes/admin/admin-field-groups.php:619
|
|
|
381 |
msgid "Website"
|
382 |
+
msgstr "Website"
|
|
|
|
|
383 |
|
384 |
#: includes/admin/admin-field-groups.php:620
|
385 |
msgid "Documentation"
|
390 |
msgstr "Hilfe"
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:623
|
|
|
393 |
msgid "Pro"
|
394 |
+
msgstr "Pro"
|
395 |
|
396 |
#: includes/admin/admin-field-groups.php:628
|
397 |
#, php-format
|
407 |
#: includes/admin/admin-field-groups.php:668
|
408 |
#: includes/admin/admin-field-groups.php:684
|
409 |
#: includes/admin/views/field-group-field.php:49
|
410 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
411 |
msgid "Duplicate"
|
412 |
msgstr "Duplizieren"
|
413 |
|
414 |
# @ acf
|
415 |
#: includes/admin/admin-field-groups.php:701
|
416 |
+
#: includes/fields/class-acf-field-google-map.php:112
|
417 |
+
#: includes/fields/class-acf-field-relationship.php:656
|
418 |
msgid "Search"
|
419 |
msgstr "Suchen"
|
420 |
|
437 |
|
438 |
#: includes/admin/admin-field-groups.php:780
|
439 |
msgid "Apply"
|
440 |
+
msgstr "Anwenden"
|
441 |
|
442 |
# @ acf
|
443 |
#: includes/admin/admin-field-groups.php:798
|
|
|
444 |
msgid "Bulk Actions"
|
445 |
msgstr "Massenverarbeitung"
|
446 |
|
454 |
#: includes/admin/install-network.php:88 includes/admin/install.php:70
|
455 |
#: includes/admin/install.php:121
|
456 |
msgid "Upgrade Database"
|
457 |
+
msgstr "Datenbank upgraden"
|
458 |
|
459 |
# @ acf
|
460 |
#: includes/admin/install-network.php:140
|
461 |
msgid "Review sites & upgrade"
|
462 |
+
msgstr "Übersicht Websites & Upgrades"
|
463 |
|
464 |
#: includes/admin/install.php:187
|
465 |
msgid "Error validating request"
|
504 |
|
505 |
# @ acf
|
506 |
#: includes/admin/settings-tools.php:184
|
507 |
+
#: includes/fields/class-acf-field-file.php:155
|
508 |
msgid "No file selected"
|
509 |
msgstr "Keine Datei ausgewählt"
|
510 |
|
511 |
# @ acf
|
512 |
#: includes/admin/settings-tools.php:197
|
513 |
msgid "Error uploading file. Please try again"
|
514 |
+
msgstr "Fehler beim Upload der Datei. Bitte erneut versuchen"
|
515 |
|
516 |
# @ acf
|
517 |
#: includes/admin/settings-tools.php:206
|
542 |
|
543 |
# @ acf
|
544 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
545 |
+
#: includes/locations.php:247
|
546 |
msgid "is equal to"
|
547 |
msgstr "ist gleich"
|
548 |
|
549 |
# @ acf
|
550 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
551 |
+
#: includes/locations.php:248
|
552 |
msgid "is not equal to"
|
553 |
msgstr "ist ungleich"
|
554 |
|
562 |
#: includes/admin/views/field-group-field-conditional-logic.php:156
|
563 |
#: includes/admin/views/field-group-locations.php:31
|
564 |
msgid "Add rule group"
|
565 |
+
msgstr "Regelgruppe hinzufügen"
|
566 |
|
567 |
# @ acf
|
568 |
#: includes/admin/views/field-group-field.php:41
|
569 |
+
#: pro/fields/class-acf-field-flexible-content.php:403
|
570 |
+
#: pro/fields/class-acf-field-repeater.php:296
|
571 |
msgid "Drag to reorder"
|
572 |
msgstr "Ziehen zum Sortieren"
|
573 |
|
579 |
|
580 |
# @ acf
|
581 |
#: includes/admin/views/field-group-field.php:48
|
582 |
+
#: includes/fields/class-acf-field-file.php:137
|
583 |
+
#: includes/fields/class-acf-field-image.php:122
|
584 |
+
#: includes/fields/class-acf-field-link.php:139
|
585 |
+
#: pro/fields/class-acf-field-gallery.php:342
|
586 |
msgid "Edit"
|
587 |
msgstr "Bearbeiten"
|
588 |
|
608 |
|
609 |
# @ acf
|
610 |
#: includes/admin/views/field-group-field.php:51
|
611 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
612 |
msgid "Delete"
|
613 |
msgstr "Löschen"
|
614 |
|
641 |
|
642 |
# @ acf
|
643 |
#: includes/admin/views/field-group-field.php:101
|
644 |
+
#: includes/fields/class-acf-field-tab.php:88
|
645 |
msgid "Instructions"
|
646 |
msgstr "Anweisungen"
|
647 |
|
687 |
|
688 |
# @ acf
|
689 |
#: includes/admin/views/field-group-fields.php:5
|
690 |
+
#: includes/fields/class-acf-field-checkbox.php:415
|
691 |
+
#: includes/fields/class-acf-field-radio.php:306
|
692 |
+
#: includes/fields/class-acf-field-select.php:432
|
693 |
+
#: pro/fields/class-acf-field-flexible-content.php:582
|
694 |
msgid "Label"
|
695 |
msgstr "Name"
|
696 |
|
697 |
# @ acf
|
698 |
#: includes/admin/views/field-group-fields.php:6
|
699 |
+
#: includes/fields/class-acf-field-taxonomy.php:964
|
700 |
+
#: pro/fields/class-acf-field-flexible-content.php:595
|
701 |
msgid "Name"
|
702 |
msgstr "Feld-Name"
|
703 |
|
704 |
#: includes/admin/views/field-group-fields.php:7
|
|
|
705 |
msgid "Key"
|
706 |
+
msgstr "Feld-Schlüssel"
|
707 |
|
708 |
# @ acf
|
709 |
#: includes/admin/views/field-group-fields.php:8
|
780 |
|
781 |
# @ acf
|
782 |
#: includes/admin/views/field-group-options.php:62
|
783 |
+
#: includes/fields/class-acf-field-tab.php:102
|
784 |
msgid "Top aligned"
|
785 |
msgstr "Über dem Feld"
|
786 |
|
787 |
# @ acf
|
788 |
#: includes/admin/views/field-group-options.php:63
|
789 |
+
#: includes/fields/class-acf-field-tab.php:103
|
790 |
msgid "Left Aligned"
|
791 |
msgstr "Links neben dem Feld"
|
792 |
|
891 |
|
892 |
# @ acf
|
893 |
#: includes/admin/views/field-group-options.php:126
|
894 |
+
#: includes/fields/class-acf-field-relationship.php:670
|
895 |
msgid "Featured Image"
|
896 |
msgstr "Beitragsbild"
|
897 |
|
917 |
|
918 |
#: includes/admin/views/install-network.php:4
|
919 |
msgid "Upgrade Sites"
|
920 |
+
msgstr "Websites upgraden"
|
921 |
|
922 |
# @ acf
|
923 |
#: includes/admin/views/install-network.php:9
|
924 |
#: includes/admin/views/install.php:3
|
925 |
msgid "Advanced Custom Fields Database Upgrade"
|
926 |
+
msgstr "Advanced Custom Fields Datenbank-Upgrade"
|
927 |
|
928 |
#: includes/admin/views/install-network.php:11
|
929 |
#, php-format
|
931 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
932 |
"and then click %s."
|
933 |
msgstr ""
|
934 |
+
"Folgende Websites erfordern ein Upgrade der Datenbank. Markiere die, die du "
|
935 |
+
"aktualisieren willst und klicke dann %s."
|
936 |
|
937 |
# @ acf
|
938 |
#: includes/admin/views/install-network.php:20
|
939 |
#: includes/admin/views/install-network.php:28
|
940 |
msgid "Site"
|
941 |
+
msgstr "Website"
|
942 |
|
943 |
# @ acf
|
944 |
#: includes/admin/views/install-network.php:48
|
945 |
#, php-format
|
946 |
msgid "Site requires database upgrade from %s to %s"
|
947 |
+
msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s"
|
948 |
|
949 |
# @ acf
|
950 |
#: includes/admin/views/install-network.php:50
|
951 |
msgid "Site is up to date"
|
952 |
+
msgstr "Die Website ist aktuell"
|
953 |
|
954 |
# @ acf
|
955 |
#: includes/admin/views/install-network.php:63
|
957 |
msgid ""
|
958 |
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
959 |
msgstr ""
|
960 |
+
"Upgrade der Datenbank fertiggestellt. <a href=\"%s\">Zum Netzwerk Dashboard</"
|
961 |
+
"a>"
|
962 |
|
963 |
# @ acf
|
964 |
#: includes/admin/views/install-network.php:102
|
967 |
"It is strongly recommended that you backup your database before proceeding. "
|
968 |
"Are you sure you wish to run the updater now?"
|
969 |
msgstr ""
|
970 |
+
"Es wird dringend empfohlen, dass du deine Datenbank sicherst, bevor Du "
|
971 |
+
"fortfährst. Bist du sicher, dass du jetzt das Upgrade durchführen willst?"
|
|
|
972 |
|
973 |
# @ default
|
974 |
#: includes/admin/views/install-network.php:158
|
975 |
msgid "Upgrade complete"
|
976 |
+
msgstr "Upgrade abgeschlossen"
|
977 |
|
978 |
# @ acf
|
979 |
#: includes/admin/views/install-network.php:162
|
980 |
#: includes/admin/views/install.php:9
|
981 |
#, php-format
|
982 |
msgid "Upgrading data to version %s"
|
983 |
+
msgstr "Daten auf Version %s upgraden"
|
984 |
|
985 |
# @ acf
|
986 |
#: includes/admin/views/install-notice.php:8
|
987 |
+
#: pro/fields/class-acf-field-repeater.php:25
|
988 |
msgid "Repeater"
|
989 |
msgstr "Wiederholung"
|
990 |
|
991 |
# @ acf
|
992 |
#: includes/admin/views/install-notice.php:9
|
993 |
+
#: pro/fields/class-acf-field-flexible-content.php:25
|
994 |
msgid "Flexible Content"
|
995 |
msgstr "Flexible Inhalte"
|
996 |
|
997 |
# @ acf
|
998 |
#: includes/admin/views/install-notice.php:10
|
999 |
+
#: pro/fields/class-acf-field-gallery.php:25
|
1000 |
msgid "Gallery"
|
1001 |
msgstr "Galerie"
|
1002 |
|
1003 |
# @ acf
|
1004 |
#: includes/admin/views/install-notice.php:11
|
1005 |
+
#: pro/locations/class-acf-location-options-page.php:26
|
1006 |
msgid "Options Page"
|
1007 |
msgstr "Options-Seite"
|
1008 |
|
1009 |
# @ acf
|
1010 |
#: includes/admin/views/install-notice.php:26
|
1011 |
msgid "Database Upgrade Required"
|
1012 |
+
msgstr "Es ist ein Upgrade der Datenbank erforderlich"
|
1013 |
|
1014 |
# @ acf
|
1015 |
#: includes/admin/views/install-notice.php:28
|
1023 |
"Before you start using the new awesome features, please update your database "
|
1024 |
"to the newest version."
|
1025 |
msgstr ""
|
1026 |
+
"Bevor du die großartigen neuen Funktionen nutzen kannst ist ein Upgrade der "
|
1027 |
+
"Datenbank notwendig."
|
1028 |
|
1029 |
#: includes/admin/views/install-notice.php:31
|
1030 |
#, php-format
|
1032 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
1033 |
"latest version."
|
1034 |
msgstr ""
|
1035 |
+
"Stelle bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) vorab auf die "
|
1036 |
+
"neueste Version aktualisiert wurden."
|
1037 |
|
1038 |
# @ acf
|
1039 |
#: includes/admin/views/install.php:7
|
1040 |
msgid "Reading upgrade tasks..."
|
1041 |
+
msgstr "Aufgaben für das Upgrade einlesen…"
|
1042 |
|
1043 |
#: includes/admin/views/install.php:11
|
1044 |
#, php-format
|
1045 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
1046 |
msgstr ""
|
1047 |
+
"Datenbank-Upgrade abgeschlossen. <a href=\"%s\">Schau nach was es Neues "
|
1048 |
+
"gibt</a>"
|
1049 |
|
1050 |
# @ acf
|
1051 |
#: includes/admin/views/settings-addons.php:17
|
1069 |
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
1070 |
"hope you like it."
|
1071 |
msgstr ""
|
1072 |
+
"Vielen Dank fürs Aktualisieren! ACF %s ist größer und besser als je zuvor. "
|
1073 |
+
"Wir hoffen es wird dir gefallen."
|
1074 |
|
1075 |
# @ acf
|
1076 |
#: includes/admin/views/settings-info.php:17
|
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
|
1205 |
"but if you do have one, please contact our support team via the <a href=\"%s"
|
1206 |
"\">help desk</a>"
|
1207 |
msgstr ""
|
1208 |
+
"Um möglichen Fragen zu begegnen haben wir haben einen <a href=\"%s\">Upgrade-"
|
1209 |
+
"Leitfaden (Engl.)</a> erstellt. Sollten dennoch Fragen auftreten, "
|
1210 |
+
"kontaktiere bitte unser <a href=\"%s\"> Support-Team </a>"
|
|
|
1211 |
|
1212 |
# @ acf
|
1213 |
#: includes/admin/views/settings-info.php:66
|
1365 |
|
1366 |
# @ acf
|
1367 |
#: includes/admin/views/settings-info.php:144
|
1368 |
+
#: includes/fields/class-acf-field-page_link.php:25
|
1369 |
msgid "Page Link"
|
1370 |
msgstr "Seiten-Link"
|
1371 |
|
1468 |
|
1469 |
# @ acf
|
1470 |
#: includes/admin/views/settings-tools.php:77
|
1471 |
+
#: includes/fields/class-acf-field-file.php:35
|
1472 |
msgid "Select File"
|
1473 |
msgstr "Datei auswählen"
|
1474 |
|
1498 |
msgstr "Volle Größe"
|
1499 |
|
1500 |
# @ acf
|
1501 |
+
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1502 |
+
#: pro/fields/class-acf-field-clone.php:991
|
1503 |
msgid "(no title)"
|
1504 |
msgstr "(ohne Titel)"
|
1505 |
|
1506 |
+
#: includes/api/api-helpers.php:1868
|
1507 |
+
#: includes/fields/class-acf-field-page_link.php:269
|
1508 |
+
#: includes/fields/class-acf-field-post_object.php:268
|
1509 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
1510 |
msgid "Parent"
|
1511 |
msgstr "Übergeordnet"
|
1512 |
|
1513 |
# @ acf
|
1514 |
+
#: includes/api/api-helpers.php:3885
|
1515 |
#, php-format
|
1516 |
msgid "Image width must be at least %dpx."
|
1517 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1518 |
|
1519 |
# @ acf
|
1520 |
+
#: includes/api/api-helpers.php:3890
|
1521 |
#, php-format
|
1522 |
msgid "Image width must not exceed %dpx."
|
1523 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1524 |
|
1525 |
# @ acf
|
1526 |
+
#: includes/api/api-helpers.php:3906
|
1527 |
#, php-format
|
1528 |
msgid "Image height must be at least %dpx."
|
1529 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1530 |
|
1531 |
# @ acf
|
1532 |
+
#: includes/api/api-helpers.php:3911
|
1533 |
#, php-format
|
1534 |
msgid "Image height must not exceed %dpx."
|
1535 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1536 |
|
1537 |
# @ acf
|
1538 |
+
#: includes/api/api-helpers.php:3929
|
1539 |
#, php-format
|
1540 |
msgid "File size must be at least %s."
|
1541 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1542 |
|
1543 |
# @ acf
|
1544 |
+
#: includes/api/api-helpers.php:3934
|
1545 |
#, php-format
|
1546 |
msgid "File size must must not exceed %s."
|
1547 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1548 |
|
1549 |
# @ acf
|
1550 |
+
#: includes/api/api-helpers.php:3968
|
1551 |
#, php-format
|
1552 |
msgid "File type must be %s."
|
1553 |
msgstr "Der Dateityp muss %s sein."
|
1578 |
msgstr "jQuery"
|
1579 |
|
1580 |
# @ acf
|
1581 |
+
#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:384
|
1582 |
+
#: includes/fields/class-acf-field-group.php:477
|
1583 |
+
#: includes/fields/class-acf-field-radio.php:285
|
1584 |
+
#: pro/fields/class-acf-field-clone.php:838
|
1585 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
1586 |
+
#: pro/fields/class-acf-field-flexible-content.php:601
|
1587 |
+
#: pro/fields/class-acf-field-repeater.php:450
|
1588 |
msgid "Layout"
|
1589 |
msgstr "Layout"
|
1590 |
|
1591 |
# @ acf
|
1592 |
+
#: includes/fields.php:326
|
1593 |
msgid "Field type does not exist"
|
1594 |
msgstr "Feld-Typ existiert nicht"
|
1595 |
|
1596 |
+
#: includes/fields.php:326
|
|
|
1597 |
msgid "Unknown"
|
1598 |
msgstr "Unbekannte Feld-Gruppe"
|
1599 |
|
1600 |
# @ acf
|
1601 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1602 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1603 |
msgid "Checkbox"
|
1604 |
msgstr "Checkbox"
|
1605 |
|
1606 |
# @ acf
|
1607 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1608 |
msgid "Toggle All"
|
1609 |
msgstr "Alle auswählen"
|
1610 |
|
1611 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1612 |
msgid "Add new choice"
|
1613 |
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1614 |
|
1615 |
# @ acf
|
1616 |
+
#: includes/fields/class-acf-field-checkbox.php:344
|
1617 |
+
#: includes/fields/class-acf-field-radio.php:235
|
1618 |
+
#: includes/fields/class-acf-field-select.php:368
|
1619 |
msgid "Choices"
|
1620 |
msgstr "Auswahlmöglichkeiten"
|
1621 |
|
1622 |
# @ acf
|
1623 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1624 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1625 |
+
#: includes/fields/class-acf-field-select.php:369
|
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:345
|
1631 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1632 |
+
#: includes/fields/class-acf-field-select.php:369
|
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:345
|
1640 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1641 |
+
#: includes/fields/class-acf-field-select.php:369
|
1642 |
msgid "red : Red"
|
1643 |
msgstr "rot : Rot"
|
1644 |
|
1645 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1646 |
msgid "Allow Custom"
|
1647 |
msgstr "Erlaube Benutzerdefinierte Werte"
|
1648 |
|
1649 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
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:364
|
1654 |
msgid "Save Custom"
|
1655 |
msgstr "Benutzerdefinierte Werte abspeichern"
|
1656 |
|
1657 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1658 |
msgid "Save 'custom' values to the field's choices"
|
1659 |
msgstr ""
|
1660 |
"Speichere benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1661 |
|
1662 |
# @ acf
|
1663 |
+
#: includes/fields/class-acf-field-checkbox.php:375
|
1664 |
+
#: includes/fields/class-acf-field-color_picker.php:131
|
1665 |
+
#: includes/fields/class-acf-field-email.php:114
|
1666 |
+
#: includes/fields/class-acf-field-number.php:123
|
1667 |
+
#: includes/fields/class-acf-field-radio.php:276
|
1668 |
+
#: includes/fields/class-acf-field-range.php:141
|
1669 |
+
#: includes/fields/class-acf-field-select.php:377
|
1670 |
+
#: includes/fields/class-acf-field-text.php:115
|
1671 |
+
#: includes/fields/class-acf-field-textarea.php:98
|
1672 |
+
#: includes/fields/class-acf-field-true_false.php:135
|
1673 |
+
#: includes/fields/class-acf-field-url.php:96
|
1674 |
+
#: includes/fields/class-acf-field-wysiwyg.php:421
|
1675 |
msgid "Default Value"
|
1676 |
msgstr "Standardwert"
|
1677 |
|
1678 |
# @ acf
|
1679 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1680 |
+
#: includes/fields/class-acf-field-select.php:378
|
1681 |
msgid "Enter each default value on a new line"
|
1682 |
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
1683 |
|
1684 |
# @ acf
|
1685 |
+
#: includes/fields/class-acf-field-checkbox.php:390
|
1686 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1687 |
msgid "Vertical"
|
1688 |
msgstr "Vertikal"
|
1689 |
|
1690 |
# @ acf
|
1691 |
+
#: includes/fields/class-acf-field-checkbox.php:391
|
1692 |
+
#: includes/fields/class-acf-field-radio.php:292
|
1693 |
msgid "Horizontal"
|
1694 |
msgstr "Horizontal"
|
1695 |
|
1696 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1697 |
msgid "Toggle"
|
1698 |
msgstr "Auswählen"
|
1699 |
|
1700 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
1701 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1702 |
msgstr ""
|
1703 |
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1704 |
|
1705 |
# @ acf
|
1706 |
+
#: includes/fields/class-acf-field-checkbox.php:408
|
1707 |
+
#: includes/fields/class-acf-field-file.php:200
|
1708 |
+
#: includes/fields/class-acf-field-image.php:188
|
1709 |
+
#: includes/fields/class-acf-field-link.php:166
|
1710 |
+
#: includes/fields/class-acf-field-radio.php:299
|
1711 |
+
#: includes/fields/class-acf-field-taxonomy.php:833
|
1712 |
msgid "Return Value"
|
1713 |
msgstr "Rückgabewert"
|
1714 |
|
1715 |
# @ acf
|
1716 |
+
#: includes/fields/class-acf-field-checkbox.php:409
|
1717 |
+
#: includes/fields/class-acf-field-file.php:201
|
1718 |
+
#: includes/fields/class-acf-field-image.php:189
|
1719 |
+
#: includes/fields/class-acf-field-link.php:167
|
1720 |
+
#: includes/fields/class-acf-field-radio.php:300
|
1721 |
msgid "Specify the returned value on front end"
|
1722 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1723 |
|
1724 |
+
#: includes/fields/class-acf-field-checkbox.php:414
|
1725 |
+
#: includes/fields/class-acf-field-radio.php:305
|
1726 |
+
#: includes/fields/class-acf-field-select.php:431
|
1727 |
msgid "Value"
|
1728 |
msgstr "Wert"
|
1729 |
|
1730 |
+
#: includes/fields/class-acf-field-checkbox.php:416
|
1731 |
+
#: includes/fields/class-acf-field-radio.php:307
|
1732 |
+
#: includes/fields/class-acf-field-select.php:433
|
1733 |
msgid "Both (Array)"
|
1734 |
msgstr "Beide (Array)"
|
1735 |
|
1736 |
# @ acf
|
1737 |
+
#: includes/fields/class-acf-field-color_picker.php:25
|
1738 |
msgid "Color Picker"
|
1739 |
msgstr "Farbe"
|
1740 |
|
1741 |
# @ acf
|
1742 |
+
#: includes/fields/class-acf-field-color_picker.php:68
|
1743 |
msgid "Clear"
|
1744 |
msgstr "Leeren"
|
1745 |
|
1746 |
# @ acf
|
1747 |
+
#: includes/fields/class-acf-field-color_picker.php:69
|
1748 |
msgid "Default"
|
1749 |
msgstr "Standard"
|
1750 |
|
1751 |
# @ acf
|
1752 |
+
#: includes/fields/class-acf-field-color_picker.php:70
|
1753 |
msgid "Select Color"
|
1754 |
msgstr "Farbe auswählen"
|
1755 |
|
1756 |
+
#: includes/fields/class-acf-field-color_picker.php:71
|
1757 |
msgid "Current Color"
|
1758 |
msgstr "Aktuelle Farbe"
|
1759 |
|
1760 |
# @ acf
|
1761 |
+
#: includes/fields/class-acf-field-date_picker.php:25
|
1762 |
msgid "Date Picker"
|
1763 |
msgstr "Datum"
|
1764 |
|
1765 |
+
#: includes/fields/class-acf-field-date_picker.php:33
|
1766 |
msgctxt "Date Picker JS closeText"
|
1767 |
msgid "Done"
|
1768 |
msgstr "Fertig"
|
1769 |
|
1770 |
+
#: includes/fields/class-acf-field-date_picker.php:34
|
1771 |
msgctxt "Date Picker JS currentText"
|
1772 |
msgid "Today"
|
1773 |
msgstr "Heute"
|
1774 |
|
1775 |
+
#: includes/fields/class-acf-field-date_picker.php:35
|
1776 |
msgctxt "Date Picker JS nextText"
|
1777 |
msgid "Next"
|
1778 |
msgstr "Nächstes"
|
1779 |
|
1780 |
+
#: includes/fields/class-acf-field-date_picker.php:36
|
1781 |
msgctxt "Date Picker JS prevText"
|
1782 |
msgid "Prev"
|
1783 |
msgstr "Vorheriges"
|
1784 |
|
1785 |
+
#: includes/fields/class-acf-field-date_picker.php:37
|
1786 |
msgctxt "Date Picker JS weekHeader"
|
1787 |
msgid "Wk"
|
1788 |
msgstr "Wo."
|
1789 |
|
1790 |
# @ acf
|
1791 |
+
#: includes/fields/class-acf-field-date_picker.php:207
|
1792 |
+
#: includes/fields/class-acf-field-date_time_picker.php:181
|
1793 |
+
#: includes/fields/class-acf-field-time_picker.php:109
|
1794 |
msgid "Display Format"
|
1795 |
msgstr "Darstellungs-Format"
|
1796 |
|
1797 |
# @ acf
|
1798 |
+
#: includes/fields/class-acf-field-date_picker.php:208
|
1799 |
+
#: includes/fields/class-acf-field-date_time_picker.php:182
|
1800 |
+
#: includes/fields/class-acf-field-time_picker.php:110
|
1801 |
msgid "The format displayed when editing a post"
|
1802 |
msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
1803 |
|
1804 |
+
#: includes/fields/class-acf-field-date_picker.php:216
|
1805 |
+
#: includes/fields/class-acf-field-date_picker.php:247
|
1806 |
+
#: includes/fields/class-acf-field-date_time_picker.php:191
|
1807 |
+
#: includes/fields/class-acf-field-date_time_picker.php:208
|
1808 |
+
#: includes/fields/class-acf-field-time_picker.php:117
|
1809 |
+
#: includes/fields/class-acf-field-time_picker.php:132
|
|
|
1810 |
msgid "Custom:"
|
1811 |
+
msgstr "Erstelle eine Feld-Gruppe:"
|
1812 |
|
1813 |
+
#: includes/fields/class-acf-field-date_picker.php:226
|
1814 |
msgid "Save Format"
|
1815 |
msgstr "Format abspeichern"
|
1816 |
|
1817 |
+
#: includes/fields/class-acf-field-date_picker.php:227
|
1818 |
msgid "The format used when saving a value"
|
1819 |
msgstr "Das Format das für das Speichern eines Wertes verwendet wird"
|
1820 |
|
1821 |
# @ acf
|
1822 |
+
#: includes/fields/class-acf-field-date_picker.php:237
|
1823 |
+
#: includes/fields/class-acf-field-date_time_picker.php:198
|
1824 |
+
#: includes/fields/class-acf-field-post_object.php:432
|
1825 |
+
#: includes/fields/class-acf-field-relationship.php:697
|
1826 |
+
#: includes/fields/class-acf-field-select.php:426
|
1827 |
+
#: includes/fields/class-acf-field-time_picker.php:124
|
1828 |
msgid "Return Format"
|
1829 |
msgstr "Rückgabewert"
|
1830 |
|
1831 |
# @ acf
|
1832 |
+
#: includes/fields/class-acf-field-date_picker.php:238
|
1833 |
+
#: includes/fields/class-acf-field-date_time_picker.php:199
|
1834 |
+
#: includes/fields/class-acf-field-time_picker.php:125
|
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:256
|
1840 |
+
#: includes/fields/class-acf-field-date_time_picker.php:215
|
1841 |
msgid "Week Starts On"
|
1842 |
msgstr "Die Woche beginnt am"
|
1843 |
|
1844 |
+
#: includes/fields/class-acf-field-date_time_picker.php:25
|
1845 |
msgid "Date Time Picker"
|
1846 |
msgstr "Datum und Uhrzeit auswählen"
|
1847 |
|
1848 |
+
#: includes/fields/class-acf-field-date_time_picker.php:33
|
1849 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1850 |
msgid "Choose Time"
|
1851 |
msgstr "Zeit auswählen"
|
1852 |
|
1853 |
+
#: includes/fields/class-acf-field-date_time_picker.php:34
|
1854 |
msgctxt "Date Time Picker JS timeText"
|
1855 |
msgid "Time"
|
1856 |
msgstr "Zeit"
|
1857 |
|
1858 |
+
#: includes/fields/class-acf-field-date_time_picker.php:35
|
1859 |
msgctxt "Date Time Picker JS hourText"
|
1860 |
msgid "Hour"
|
1861 |
msgstr "Stunde"
|
1862 |
|
1863 |
+
#: includes/fields/class-acf-field-date_time_picker.php:36
|
1864 |
msgctxt "Date Time Picker JS minuteText"
|
1865 |
msgid "Minute"
|
1866 |
msgstr "Minute"
|
1867 |
|
1868 |
+
#: includes/fields/class-acf-field-date_time_picker.php:37
|
1869 |
msgctxt "Date Time Picker JS secondText"
|
1870 |
msgid "Second"
|
1871 |
msgstr "Sekunde"
|
1872 |
|
1873 |
+
#: includes/fields/class-acf-field-date_time_picker.php:38
|
1874 |
msgctxt "Date Time Picker JS millisecText"
|
1875 |
msgid "Millisecond"
|
1876 |
msgstr "Millisekunde"
|
1877 |
|
1878 |
+
#: includes/fields/class-acf-field-date_time_picker.php:39
|
1879 |
msgctxt "Date Time Picker JS microsecText"
|
1880 |
msgid "Microsecond"
|
1881 |
msgstr "Mikrosekunde"
|
1882 |
|
1883 |
+
#: includes/fields/class-acf-field-date_time_picker.php:40
|
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:41
|
1889 |
msgctxt "Date Time Picker JS currentText"
|
1890 |
msgid "Now"
|
1891 |
msgstr "Jetzt"
|
1892 |
|
1893 |
+
#: includes/fields/class-acf-field-date_time_picker.php:42
|
1894 |
msgctxt "Date Time Picker JS closeText"
|
1895 |
msgid "Done"
|
1896 |
msgstr "Fertig"
|
1897 |
|
1898 |
+
#: includes/fields/class-acf-field-date_time_picker.php:43
|
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:45
|
1904 |
msgctxt "Date Time Picker JS amText"
|
1905 |
msgid "AM"
|
1906 |
msgstr "vorm."
|
1907 |
|
1908 |
+
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1909 |
msgctxt "Date Time Picker JS amTextShort"
|
1910 |
msgid "A"
|
1911 |
msgstr "vorm."
|
1912 |
|
1913 |
+
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1914 |
msgctxt "Date Time Picker JS pmText"
|
1915 |
msgid "PM"
|
1916 |
msgstr "nachm."
|
1917 |
|
1918 |
+
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1919 |
msgctxt "Date Time Picker JS pmTextShort"
|
1920 |
msgid "P"
|
1921 |
msgstr "nachm."
|
1922 |
|
1923 |
# @ acf
|
1924 |
+
#: includes/fields/class-acf-field-email.php:25
|
1925 |
msgid "Email"
|
1926 |
msgstr "E-Mail"
|
1927 |
|
1928 |
# @ acf
|
1929 |
+
#: includes/fields/class-acf-field-email.php:115
|
1930 |
+
#: includes/fields/class-acf-field-number.php:124
|
1931 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1932 |
+
#: includes/fields/class-acf-field-range.php:142
|
1933 |
+
#: includes/fields/class-acf-field-text.php:116
|
1934 |
+
#: includes/fields/class-acf-field-textarea.php:99
|
1935 |
+
#: includes/fields/class-acf-field-url.php:97
|
1936 |
+
#: includes/fields/class-acf-field-wysiwyg.php:422
|
1937 |
msgid "Appears when creating a new post"
|
1938 |
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1939 |
|
1940 |
# @ acf
|
1941 |
+
#: includes/fields/class-acf-field-email.php:123
|
1942 |
+
#: includes/fields/class-acf-field-number.php:132
|
1943 |
+
#: includes/fields/class-acf-field-password.php:71
|
1944 |
+
#: includes/fields/class-acf-field-text.php:124
|
1945 |
+
#: includes/fields/class-acf-field-textarea.php:107
|
1946 |
+
#: includes/fields/class-acf-field-url.php:105
|
1947 |
msgid "Placeholder Text"
|
1948 |
msgstr "Platzhalter-Text"
|
1949 |
|
1950 |
# @ acf
|
1951 |
+
#: includes/fields/class-acf-field-email.php:124
|
1952 |
+
#: includes/fields/class-acf-field-number.php:133
|
1953 |
+
#: includes/fields/class-acf-field-password.php:72
|
1954 |
+
#: includes/fields/class-acf-field-text.php:125
|
1955 |
+
#: includes/fields/class-acf-field-textarea.php:108
|
1956 |
+
#: includes/fields/class-acf-field-url.php:106
|
1957 |
msgid "Appears within the input"
|
1958 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1959 |
|
1960 |
# @ acf
|
1961 |
+
#: includes/fields/class-acf-field-email.php:132
|
1962 |
+
#: includes/fields/class-acf-field-number.php:141
|
1963 |
+
#: includes/fields/class-acf-field-password.php:80
|
1964 |
+
#: includes/fields/class-acf-field-range.php:180
|
1965 |
+
#: includes/fields/class-acf-field-text.php:133
|
1966 |
msgid "Prepend"
|
1967 |
msgstr "Voranstellen"
|
1968 |
|
1969 |
# @ acf
|
1970 |
+
#: includes/fields/class-acf-field-email.php:133
|
1971 |
+
#: includes/fields/class-acf-field-number.php:142
|
1972 |
+
#: includes/fields/class-acf-field-password.php:81
|
1973 |
+
#: includes/fields/class-acf-field-range.php:181
|
1974 |
+
#: includes/fields/class-acf-field-text.php:134
|
1975 |
msgid "Appears before the input"
|
1976 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1977 |
|
1978 |
# @ acf
|
1979 |
+
#: includes/fields/class-acf-field-email.php:141
|
1980 |
+
#: includes/fields/class-acf-field-number.php:150
|
1981 |
+
#: includes/fields/class-acf-field-password.php:89
|
1982 |
+
#: includes/fields/class-acf-field-range.php:189
|
1983 |
+
#: includes/fields/class-acf-field-text.php:142
|
1984 |
msgid "Append"
|
1985 |
msgstr "Anhängen"
|
1986 |
|
1987 |
# @ acf
|
1988 |
+
#: includes/fields/class-acf-field-email.php:142
|
1989 |
+
#: includes/fields/class-acf-field-number.php:151
|
1990 |
+
#: includes/fields/class-acf-field-password.php:90
|
1991 |
+
#: includes/fields/class-acf-field-range.php:190
|
1992 |
+
#: includes/fields/class-acf-field-text.php:143
|
1993 |
msgid "Appears after the input"
|
1994 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1995 |
|
1996 |
# @ acf
|
1997 |
+
#: includes/fields/class-acf-field-file.php:25
|
1998 |
msgid "File"
|
1999 |
msgstr "Datei"
|
2000 |
|
2001 |
# @ acf
|
2002 |
+
#: includes/fields/class-acf-field-file.php:36
|
2003 |
msgid "Edit File"
|
2004 |
msgstr "Datei bearbeiten"
|
2005 |
|
2006 |
# @ acf
|
2007 |
+
#: includes/fields/class-acf-field-file.php:37
|
2008 |
msgid "Update File"
|
2009 |
msgstr "Datei aktualisieren"
|
2010 |
|
2011 |
# @ acf
|
2012 |
+
#: includes/fields/class-acf-field-file.php:38
|
2013 |
+
#: includes/fields/class-acf-field-image.php:43 includes/media.php:57
|
2014 |
+
#: pro/fields/class-acf-field-gallery.php:44
|
2015 |
msgid "Uploaded to this post"
|
2016 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2017 |
|
2018 |
+
#: includes/fields/class-acf-field-file.php:126
|
2019 |
msgid "File name"
|
2020 |
msgstr "Dateiname"
|
2021 |
|
2022 |
# @ acf
|
2023 |
+
#: includes/fields/class-acf-field-file.php:130
|
2024 |
+
#: includes/fields/class-acf-field-file.php:233
|
2025 |
+
#: includes/fields/class-acf-field-file.php:244
|
2026 |
+
#: includes/fields/class-acf-field-image.php:248
|
2027 |
+
#: includes/fields/class-acf-field-image.php:277
|
2028 |
+
#: pro/fields/class-acf-field-gallery.php:690
|
2029 |
+
#: pro/fields/class-acf-field-gallery.php:719
|
2030 |
msgid "File size"
|
2031 |
msgstr "Dateigröße"
|
2032 |
|
2033 |
# @ acf
|
2034 |
+
#: includes/fields/class-acf-field-file.php:139
|
2035 |
+
#: includes/fields/class-acf-field-image.php:124
|
2036 |
+
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2037 |
+
#: pro/fields/class-acf-field-gallery.php:343
|
2038 |
+
#: pro/fields/class-acf-field-gallery.php:531
|
2039 |
+
msgid "Remove"
|
2040 |
+
msgstr "Entfernen"
|
2041 |
+
|
2042 |
+
# @ acf
|
2043 |
+
#: includes/fields/class-acf-field-file.php:155
|
2044 |
msgid "Add File"
|
2045 |
msgstr "Datei hinzufügen"
|
2046 |
|
2047 |
# @ acf
|
2048 |
+
#: includes/fields/class-acf-field-file.php:206
|
2049 |
msgid "File Array"
|
2050 |
msgstr "Datei-Array"
|
2051 |
|
2052 |
# @ acf
|
2053 |
+
#: includes/fields/class-acf-field-file.php:207
|
2054 |
msgid "File URL"
|
2055 |
msgstr "Datei-URL"
|
2056 |
|
2057 |
# @ acf
|
2058 |
+
#: includes/fields/class-acf-field-file.php:208
|
2059 |
msgid "File ID"
|
2060 |
msgstr "Datei-ID"
|
2061 |
|
2062 |
# @ acf
|
2063 |
+
#: includes/fields/class-acf-field-file.php:215
|
2064 |
+
#: includes/fields/class-acf-field-image.php:213
|
2065 |
+
#: pro/fields/class-acf-field-gallery.php:655
|
2066 |
msgid "Library"
|
2067 |
msgstr "Medienübersicht"
|
2068 |
|
2069 |
# @ acf
|
2070 |
+
#: includes/fields/class-acf-field-file.php:216
|
2071 |
+
#: includes/fields/class-acf-field-image.php:214
|
2072 |
+
#: pro/fields/class-acf-field-gallery.php:656
|
2073 |
msgid "Limit the media library choice"
|
2074 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2075 |
|
2076 |
# @ acf
|
2077 |
+
#: includes/fields/class-acf-field-file.php:221
|
2078 |
+
#: includes/fields/class-acf-field-image.php:219
|
2079 |
+
#: includes/locations/class-acf-location-attachment.php:101
|
2080 |
+
#: includes/locations/class-acf-location-comment.php:79
|
2081 |
+
#: includes/locations/class-acf-location-nav-menu.php:102
|
2082 |
+
#: includes/locations/class-acf-location-taxonomy.php:79
|
2083 |
+
#: includes/locations/class-acf-location-user-form.php:87
|
2084 |
+
#: includes/locations/class-acf-location-user-role.php:111
|
2085 |
+
#: includes/locations/class-acf-location-widget.php:83
|
2086 |
+
#: pro/fields/class-acf-field-gallery.php:661
|
2087 |
msgid "All"
|
2088 |
msgstr "Alle"
|
2089 |
|
2090 |
# @ acf
|
2091 |
+
#: includes/fields/class-acf-field-file.php:222
|
2092 |
+
#: includes/fields/class-acf-field-image.php:220
|
2093 |
+
#: pro/fields/class-acf-field-gallery.php:662
|
2094 |
msgid "Uploaded to post"
|
2095 |
msgstr "Für den Beitrag hochgeladen"
|
2096 |
|
2097 |
# @ acf
|
2098 |
+
#: includes/fields/class-acf-field-file.php:229
|
2099 |
+
#: includes/fields/class-acf-field-image.php:227
|
2100 |
+
#: pro/fields/class-acf-field-gallery.php:669
|
2101 |
msgid "Minimum"
|
2102 |
msgstr "Minimum"
|
2103 |
|
2104 |
# @ acf
|
2105 |
+
#: includes/fields/class-acf-field-file.php:230
|
2106 |
+
#: includes/fields/class-acf-field-file.php:241
|
2107 |
msgid "Restrict which files can be uploaded"
|
2108 |
msgstr ""
|
2109 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2110 |
"erfüllen"
|
2111 |
|
2112 |
# @ acf
|
2113 |
+
#: includes/fields/class-acf-field-file.php:240
|
2114 |
+
#: includes/fields/class-acf-field-image.php:256
|
2115 |
+
#: pro/fields/class-acf-field-gallery.php:698
|
2116 |
msgid "Maximum"
|
2117 |
msgstr "Maximum"
|
2118 |
|
2119 |
# @ acf
|
2120 |
+
#: includes/fields/class-acf-field-file.php:251
|
2121 |
+
#: includes/fields/class-acf-field-image.php:285
|
2122 |
+
#: pro/fields/class-acf-field-gallery.php:727
|
2123 |
msgid "Allowed file types"
|
2124 |
msgstr "Erlaubte Datei-Formate"
|
2125 |
|
2126 |
# @ acf
|
2127 |
+
#: includes/fields/class-acf-field-file.php:252
|
2128 |
+
#: includes/fields/class-acf-field-image.php:286
|
2129 |
+
#: pro/fields/class-acf-field-gallery.php:728
|
2130 |
msgid "Comma separated list. Leave blank for all types"
|
2131 |
msgstr ""
|
2132 |
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2133 |
"erlaubt"
|
2134 |
|
2135 |
# @ acf
|
2136 |
+
#: includes/fields/class-acf-field-google-map.php:25
|
2137 |
msgid "Google Map"
|
2138 |
msgstr "Google Maps"
|
2139 |
|
2140 |
# @ acf
|
2141 |
+
#: includes/fields/class-acf-field-google-map.php:40
|
2142 |
msgid "Locating"
|
2143 |
msgstr "Lokalisiere"
|
2144 |
|
2145 |
# @ acf
|
2146 |
+
#: includes/fields/class-acf-field-google-map.php:41
|
2147 |
msgid "Sorry, this browser does not support geolocation"
|
2148 |
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
2149 |
|
2150 |
# @ acf
|
2151 |
+
#: includes/fields/class-acf-field-google-map.php:113
|
2152 |
msgid "Clear location"
|
2153 |
msgstr "Position löschen"
|
2154 |
|
2155 |
# @ acf
|
2156 |
+
#: includes/fields/class-acf-field-google-map.php:114
|
2157 |
msgid "Find current location"
|
2158 |
msgstr "Aktuelle Position finden"
|
2159 |
|
2160 |
# @ acf
|
2161 |
+
#: includes/fields/class-acf-field-google-map.php:117
|
2162 |
msgid "Search for address..."
|
2163 |
msgstr "Nach der Adresse suchen..."
|
2164 |
|
2165 |
# @ acf
|
2166 |
+
#: includes/fields/class-acf-field-google-map.php:147
|
2167 |
+
#: includes/fields/class-acf-field-google-map.php:158
|
2168 |
msgid "Center"
|
2169 |
msgstr "Kartenmittelpunkt"
|
2170 |
|
2171 |
# @ acf
|
2172 |
+
#: includes/fields/class-acf-field-google-map.php:148
|
2173 |
+
#: includes/fields/class-acf-field-google-map.php:159
|
2174 |
msgid "Center the initial map"
|
2175 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2176 |
|
2177 |
# @ acf
|
2178 |
+
#: includes/fields/class-acf-field-google-map.php:170
|
2179 |
msgid "Zoom"
|
2180 |
msgstr "Zoom"
|
2181 |
|
2182 |
# @ acf
|
2183 |
+
#: includes/fields/class-acf-field-google-map.php:171
|
2184 |
msgid "Set the initial zoom level"
|
2185 |
msgstr "Legt die Zoomstufe der Karte fest"
|
2186 |
|
2187 |
# @ acf
|
2188 |
+
#: includes/fields/class-acf-field-google-map.php:180
|
2189 |
+
#: includes/fields/class-acf-field-image.php:239
|
2190 |
+
#: includes/fields/class-acf-field-image.php:268
|
2191 |
+
#: includes/fields/class-acf-field-oembed.php:281
|
2192 |
+
#: pro/fields/class-acf-field-gallery.php:681
|
2193 |
+
#: pro/fields/class-acf-field-gallery.php:710
|
2194 |
msgid "Height"
|
2195 |
msgstr "Höhe"
|
2196 |
|
2197 |
# @ acf
|
2198 |
+
#: includes/fields/class-acf-field-google-map.php:181
|
2199 |
msgid "Customise the map height"
|
2200 |
msgstr "Legt die Höhe der Karte fest"
|
2201 |
|
2202 |
# @ acf
|
2203 |
+
#: includes/fields/class-acf-field-group.php:25
|
|
|
2204 |
msgid "Group"
|
2205 |
msgstr ""
|
2206 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
2207 |
"Feldes an)"
|
2208 |
|
2209 |
# @ acf
|
2210 |
+
#: includes/fields/class-acf-field-group.php:461
|
2211 |
+
#: pro/fields/class-acf-field-repeater.php:389
|
2212 |
msgid "Sub Fields"
|
2213 |
msgstr "Wiederholungsfelder"
|
2214 |
|
2215 |
+
#: includes/fields/class-acf-field-group.php:478
|
2216 |
+
#: pro/fields/class-acf-field-clone.php:839
|
2217 |
msgid "Specify the style used to render the selected fields"
|
2218 |
msgstr ""
|
2219 |
"Gib den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2220 |
|
2221 |
# @ acf
|
2222 |
+
#: includes/fields/class-acf-field-group.php:483
|
2223 |
+
#: pro/fields/class-acf-field-clone.php:844
|
2224 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
2225 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
2226 |
msgid "Block"
|
2227 |
msgstr "Block"
|
2228 |
|
2229 |
# @ acf
|
2230 |
+
#: includes/fields/class-acf-field-group.php:484
|
2231 |
+
#: pro/fields/class-acf-field-clone.php:845
|
2232 |
+
#: pro/fields/class-acf-field-flexible-content.php:611
|
2233 |
+
#: pro/fields/class-acf-field-repeater.php:457
|
2234 |
msgid "Table"
|
2235 |
msgstr "Tabelle"
|
2236 |
|
2237 |
# @ acf
|
2238 |
+
#: includes/fields/class-acf-field-group.php:485
|
2239 |
+
#: pro/fields/class-acf-field-clone.php:846
|
2240 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
2241 |
+
#: pro/fields/class-acf-field-repeater.php:459
|
2242 |
msgid "Row"
|
2243 |
msgstr "Reihe"
|
2244 |
|
2245 |
# @ acf
|
2246 |
+
#: includes/fields/class-acf-field-image.php:25
|
2247 |
msgid "Image"
|
2248 |
msgstr "Bild"
|
2249 |
|
2250 |
# @ acf
|
2251 |
+
#: includes/fields/class-acf-field-image.php:40
|
2252 |
msgid "Select Image"
|
2253 |
msgstr "Bild auswählen"
|
2254 |
|
2255 |
# @ acf
|
2256 |
+
#: includes/fields/class-acf-field-image.php:41
|
2257 |
+
#: pro/fields/class-acf-field-gallery.php:42
|
2258 |
msgid "Edit Image"
|
2259 |
msgstr "Bild bearbeiten"
|
2260 |
|
2261 |
# @ acf
|
2262 |
+
#: includes/fields/class-acf-field-image.php:42
|
2263 |
+
#: pro/fields/class-acf-field-gallery.php:43
|
2264 |
msgid "Update Image"
|
2265 |
msgstr "Bild aktualisieren"
|
2266 |
|
2267 |
# @ acf
|
2268 |
+
#: includes/fields/class-acf-field-image.php:44
|
2269 |
msgid "All images"
|
2270 |
msgstr "Alle Bilder"
|
2271 |
|
2272 |
# @ acf
|
2273 |
+
#: includes/fields/class-acf-field-image.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2274 |
msgid "No image selected"
|
2275 |
msgstr "Kein Bild ausgewählt"
|
2276 |
|
2277 |
# @ acf
|
2278 |
+
#: includes/fields/class-acf-field-image.php:140
|
2279 |
msgid "Add Image"
|
2280 |
msgstr "Bild hinzufügen"
|
2281 |
|
2282 |
# @ acf
|
2283 |
+
#: includes/fields/class-acf-field-image.php:194
|
2284 |
msgid "Image Array"
|
2285 |
msgstr "Bild-Array"
|
2286 |
|
2287 |
# @ acf
|
2288 |
+
#: includes/fields/class-acf-field-image.php:195
|
2289 |
msgid "Image URL"
|
2290 |
msgstr "Bild-URL"
|
2291 |
|
2292 |
# @ acf
|
2293 |
+
#: includes/fields/class-acf-field-image.php:196
|
2294 |
msgid "Image ID"
|
2295 |
msgstr "Bild-ID"
|
2296 |
|
2297 |
# @ acf
|
2298 |
+
#: includes/fields/class-acf-field-image.php:203
|
2299 |
msgid "Preview Size"
|
2300 |
msgstr "Maße der Vorschau"
|
2301 |
|
2302 |
# @ acf
|
2303 |
+
#: includes/fields/class-acf-field-image.php:204
|
2304 |
msgid "Shown when entering data"
|
2305 |
msgstr "Legt fest welche Maße die Vorschau in der Bearbeitungs-Ansicht hat"
|
2306 |
|
2307 |
# @ acf
|
2308 |
+
#: includes/fields/class-acf-field-image.php:228
|
2309 |
+
#: includes/fields/class-acf-field-image.php:257
|
2310 |
+
#: pro/fields/class-acf-field-gallery.php:670
|
2311 |
+
#: pro/fields/class-acf-field-gallery.php:699
|
2312 |
msgid "Restrict which images can be uploaded"
|
2313 |
msgstr ""
|
2314 |
"Erlaubt nur das Hochladen von Bildern die die angegebenen Eigenschaften "
|
2315 |
"erfüllen"
|
2316 |
|
2317 |
# @ acf
|
2318 |
+
#: includes/fields/class-acf-field-image.php:231
|
2319 |
+
#: includes/fields/class-acf-field-image.php:260
|
2320 |
+
#: includes/fields/class-acf-field-oembed.php:270
|
2321 |
+
#: pro/fields/class-acf-field-gallery.php:673
|
2322 |
+
#: pro/fields/class-acf-field-gallery.php:702
|
2323 |
msgid "Width"
|
2324 |
msgstr "Breite"
|
2325 |
|
2326 |
# @ acf
|
2327 |
+
#: includes/fields/class-acf-field-link.php:25
|
|
|
2328 |
msgid "Link"
|
2329 |
msgstr "Seiten-Link"
|
2330 |
|
2331 |
# @ acf
|
2332 |
+
#: includes/fields/class-acf-field-link.php:133
|
|
|
2333 |
msgid "Select Link"
|
2334 |
msgstr "Datei auswählen"
|
2335 |
|
2336 |
+
#: includes/fields/class-acf-field-link.php:138
|
2337 |
msgid "Opens in a new window/tab"
|
2338 |
+
msgstr "In einem neuen Fenster/Tab öffnen"
|
2339 |
|
2340 |
# @ acf
|
2341 |
+
#: includes/fields/class-acf-field-link.php:172
|
|
|
2342 |
msgid "Link Array"
|
2343 |
msgstr "Datei-Array"
|
2344 |
|
2345 |
# @ acf
|
2346 |
+
#: includes/fields/class-acf-field-link.php:173
|
|
|
2347 |
msgid "Link URL"
|
2348 |
msgstr "Datei-URL"
|
2349 |
|
2350 |
# @ acf
|
2351 |
+
#: includes/fields/class-acf-field-message.php:25
|
2352 |
+
#: includes/fields/class-acf-field-message.php:101
|
2353 |
+
#: includes/fields/class-acf-field-true_false.php:126
|
2354 |
msgid "Message"
|
2355 |
msgstr "Nachricht"
|
2356 |
|
2357 |
# @ acf
|
2358 |
+
#: includes/fields/class-acf-field-message.php:110
|
2359 |
+
#: includes/fields/class-acf-field-textarea.php:135
|
2360 |
msgid "New Lines"
|
2361 |
msgstr "Neue Zeilen"
|
2362 |
|
2363 |
# @ acf
|
2364 |
+
#: includes/fields/class-acf-field-message.php:111
|
2365 |
+
#: includes/fields/class-acf-field-textarea.php:136
|
2366 |
msgid "Controls how new lines are rendered"
|
2367 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2368 |
|
2369 |
# @ acf
|
2370 |
+
#: includes/fields/class-acf-field-message.php:115
|
2371 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
2372 |
msgid "Automatically add paragraphs"
|
2373 |
msgstr "Absätze automatisch hinzufügen"
|
2374 |
|
2375 |
# @ acf
|
2376 |
+
#: includes/fields/class-acf-field-message.php:116
|
2377 |
+
#: includes/fields/class-acf-field-textarea.php:141
|
2378 |
msgid "Automatically add <br>"
|
2379 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2380 |
|
2381 |
# @ acf
|
2382 |
+
#: includes/fields/class-acf-field-message.php:117
|
2383 |
+
#: includes/fields/class-acf-field-textarea.php:142
|
2384 |
msgid "No Formatting"
|
2385 |
msgstr "Keine Formatierung"
|
2386 |
|
2387 |
# @ acf
|
2388 |
+
#: includes/fields/class-acf-field-message.php:124
|
2389 |
msgid "Escape HTML"
|
2390 |
msgstr "HTML enkodieren"
|
2391 |
|
2392 |
# @ acf
|
2393 |
+
#: includes/fields/class-acf-field-message.php:125
|
2394 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2395 |
msgstr ""
|
2396 |
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2397 |
"interpretiert"
|
2398 |
|
2399 |
# @ acf
|
2400 |
+
#: includes/fields/class-acf-field-number.php:25
|
2401 |
msgid "Number"
|
2402 |
msgstr "Numerisch"
|
2403 |
|
2404 |
# @ acf
|
2405 |
+
#: includes/fields/class-acf-field-number.php:159
|
2406 |
+
#: includes/fields/class-acf-field-range.php:150
|
2407 |
msgid "Minimum Value"
|
2408 |
msgstr "Mindestwert"
|
2409 |
|
2410 |
# @ acf
|
2411 |
+
#: includes/fields/class-acf-field-number.php:168
|
2412 |
+
#: includes/fields/class-acf-field-range.php:160
|
2413 |
msgid "Maximum Value"
|
2414 |
msgstr "Maximalwert"
|
2415 |
|
2416 |
# @ acf
|
2417 |
+
#: includes/fields/class-acf-field-number.php:177
|
2418 |
+
#: includes/fields/class-acf-field-range.php:170
|
2419 |
msgid "Step Size"
|
2420 |
msgstr "Schrittweite"
|
2421 |
|
2422 |
# @ acf
|
2423 |
+
#: includes/fields/class-acf-field-number.php:215
|
2424 |
msgid "Value must be a number"
|
2425 |
msgstr "Wert muss eine Zahl sein"
|
2426 |
|
2427 |
# @ acf
|
2428 |
+
#: includes/fields/class-acf-field-number.php:233
|
2429 |
#, php-format
|
2430 |
msgid "Value must be equal to or higher than %d"
|
2431 |
msgstr "Wert muss größer oder gleich %d sein"
|
2432 |
|
2433 |
# @ acf
|
2434 |
+
#: includes/fields/class-acf-field-number.php:241
|
2435 |
#, php-format
|
2436 |
msgid "Value must be equal to or lower than %d"
|
2437 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2438 |
|
2439 |
# @ acf
|
2440 |
+
#: includes/fields/class-acf-field-oembed.php:25
|
2441 |
msgid "oEmbed"
|
2442 |
msgstr "oEmbed"
|
2443 |
|
2444 |
# @ acf
|
2445 |
+
#: includes/fields/class-acf-field-oembed.php:219
|
2446 |
msgid "Enter URL"
|
2447 |
msgstr "URL eingeben"
|
2448 |
|
2449 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2450 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2451 |
msgid "Error."
|
2452 |
msgstr "Fehler."
|
2453 |
|
2454 |
# @ acf
|
2455 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2456 |
msgid "No embed found for the given URL."
|
2457 |
msgstr "Keine Inhalte für die eingegebene URL gefunden."
|
2458 |
|
2459 |
# @ acf
|
2460 |
+
#: includes/fields/class-acf-field-oembed.php:267
|
2461 |
+
#: includes/fields/class-acf-field-oembed.php:278
|
2462 |
msgid "Embed Size"
|
2463 |
msgstr "Maße"
|
2464 |
|
2465 |
# @ acf
|
2466 |
+
#: includes/fields/class-acf-field-page_link.php:177
|
2467 |
msgid "Archives"
|
2468 |
msgstr "Archive"
|
2469 |
|
2470 |
# @ acf
|
2471 |
+
#: includes/fields/class-acf-field-page_link.php:485
|
2472 |
+
#: includes/fields/class-acf-field-post_object.php:384
|
2473 |
+
#: includes/fields/class-acf-field-relationship.php:623
|
2474 |
msgid "Filter by Post Type"
|
2475 |
msgstr "Nach Post Types filtern"
|
2476 |
|
2477 |
# @ acf
|
2478 |
+
#: includes/fields/class-acf-field-page_link.php:493
|
2479 |
+
#: includes/fields/class-acf-field-post_object.php:392
|
2480 |
+
#: includes/fields/class-acf-field-relationship.php:631
|
2481 |
msgid "All post types"
|
2482 |
msgstr "Alle verfügbaren Post Types"
|
2483 |
|
2484 |
# @ acf
|
2485 |
+
#: includes/fields/class-acf-field-page_link.php:499
|
2486 |
+
#: includes/fields/class-acf-field-post_object.php:398
|
2487 |
+
#: includes/fields/class-acf-field-relationship.php:637
|
2488 |
msgid "Filter by Taxonomy"
|
2489 |
msgstr "Nach Taxonomien filtern"
|
2490 |
|
2491 |
# @ acf
|
2492 |
+
#: includes/fields/class-acf-field-page_link.php:507
|
2493 |
+
#: includes/fields/class-acf-field-post_object.php:406
|
2494 |
+
#: includes/fields/class-acf-field-relationship.php:645
|
2495 |
msgid "All taxonomies"
|
2496 |
msgstr "Alle Taxonomien"
|
2497 |
|
2498 |
# @ acf
|
2499 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
2500 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
2501 |
+
#: includes/fields/class-acf-field-radio.php:244
|
2502 |
+
#: includes/fields/class-acf-field-select.php:386
|
2503 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
2504 |
+
#: includes/fields/class-acf-field-user.php:408
|
2505 |
msgid "Allow Null?"
|
2506 |
msgstr "NULL-Werte zulassen?"
|
2507 |
|
2508 |
+
#: includes/fields/class-acf-field-page_link.php:523
|
2509 |
msgid "Allow Archives URLs"
|
2510 |
msgstr "Archiv-URL's zulassen"
|
2511 |
|
2512 |
# @ acf
|
2513 |
+
#: includes/fields/class-acf-field-page_link.php:533
|
2514 |
+
#: includes/fields/class-acf-field-post_object.php:422
|
2515 |
+
#: includes/fields/class-acf-field-select.php:396
|
2516 |
+
#: includes/fields/class-acf-field-user.php:418
|
2517 |
msgid "Select multiple values?"
|
2518 |
msgstr "Mehrere Werte auswählbar?"
|
2519 |
|
2520 |
# @ acf
|
2521 |
+
#: includes/fields/class-acf-field-password.php:25
|
2522 |
msgid "Password"
|
2523 |
msgstr "Passwort"
|
2524 |
|
2525 |
# @ acf
|
2526 |
+
#: includes/fields/class-acf-field-post_object.php:25
|
2527 |
+
#: includes/fields/class-acf-field-post_object.php:437
|
2528 |
+
#: includes/fields/class-acf-field-relationship.php:702
|
2529 |
msgid "Post Object"
|
2530 |
msgstr "Beitrags-Objekt"
|
2531 |
|
2532 |
# @ acf
|
2533 |
+
#: includes/fields/class-acf-field-post_object.php:438
|
2534 |
+
#: includes/fields/class-acf-field-relationship.php:703
|
2535 |
msgid "Post ID"
|
2536 |
msgstr "Beitrags-ID"
|
2537 |
|
2538 |
# @ acf
|
2539 |
+
#: includes/fields/class-acf-field-radio.php:25
|
2540 |
msgid "Radio Button"
|
2541 |
msgstr "Radio-Button"
|
2542 |
|
2543 |
# @ acf
|
2544 |
+
#: includes/fields/class-acf-field-radio.php:254
|
2545 |
msgid "Other"
|
2546 |
msgstr "Sonstige"
|
2547 |
|
2548 |
# @ acf
|
2549 |
+
#: includes/fields/class-acf-field-radio.php:259
|
2550 |
msgid "Add 'other' choice to allow for custom values"
|
2551 |
msgstr ""
|
2552 |
"Fügt die Option 'Sonstige' hinzu welche erlaubt benutzerdefinierte Werte "
|
2553 |
"hinzuzufügen"
|
2554 |
|
2555 |
# @ acf
|
2556 |
+
#: includes/fields/class-acf-field-radio.php:265
|
2557 |
msgid "Save Other"
|
2558 |
msgstr "'Sonstige' speichern"
|
2559 |
|
2560 |
# @ acf
|
2561 |
+
#: includes/fields/class-acf-field-radio.php:270
|
2562 |
msgid "Save 'other' values to the field's choices"
|
2563 |
msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu"
|
2564 |
|
2565 |
+
#: includes/fields/class-acf-field-range.php:25
|
2566 |
+
msgid "Range"
|
2567 |
+
msgstr "Numerischer Bereich"
|
2568 |
+
|
2569 |
# @ acf
|
2570 |
+
#: includes/fields/class-acf-field-relationship.php:25
|
2571 |
msgid "Relationship"
|
2572 |
msgstr "Beziehung"
|
2573 |
|
2574 |
# @ acf
|
2575 |
+
#: includes/fields/class-acf-field-relationship.php:37
|
2576 |
msgid "Minimum values reached ( {min} values )"
|
2577 |
msgstr "Minimum der Einträge mit ({min} Einträge) erreicht"
|
2578 |
|
2579 |
# @ acf
|
2580 |
+
#: includes/fields/class-acf-field-relationship.php:38
|
2581 |
msgid "Maximum values reached ( {max} values )"
|
2582 |
msgstr "Maximum der Einträge mit ({max} Einträge) erreicht"
|
2583 |
|
2584 |
# @ acf
|
2585 |
+
#: includes/fields/class-acf-field-relationship.php:39
|
2586 |
msgid "Loading"
|
2587 |
msgstr "Lade"
|
2588 |
|
2589 |
# @ acf
|
2590 |
+
#: includes/fields/class-acf-field-relationship.php:40
|
2591 |
msgid "No matches found"
|
2592 |
msgstr "Keine Übereinstimmung gefunden"
|
2593 |
|
2594 |
# @ acf
|
2595 |
+
#: includes/fields/class-acf-field-relationship.php:423
|
|
|
|
|
|
|
|
|
|
|
2596 |
msgid "Select post type"
|
2597 |
msgstr "Beitrag-Typ auswählen"
|
2598 |
|
2599 |
# @ acf
|
2600 |
+
#: includes/fields/class-acf-field-relationship.php:449
|
2601 |
msgid "Select taxonomy"
|
2602 |
msgstr "Taxonomie auswählen"
|
2603 |
|
2604 |
# @ acf
|
2605 |
+
#: includes/fields/class-acf-field-relationship.php:539
|
2606 |
+
msgid "Search..."
|
2607 |
+
msgstr "Suchen..."
|
2608 |
+
|
2609 |
+
# @ acf
|
2610 |
+
#: includes/fields/class-acf-field-relationship.php:651
|
2611 |
msgid "Filters"
|
2612 |
msgstr "Filter"
|
2613 |
|
2614 |
# @ acf
|
2615 |
+
#: includes/fields/class-acf-field-relationship.php:657
|
2616 |
#: includes/locations/class-acf-location-post-type.php:27
|
2617 |
msgid "Post Type"
|
2618 |
msgstr "Beitrags-Typ"
|
2619 |
|
2620 |
# @ acf
|
2621 |
+
#: includes/fields/class-acf-field-relationship.php:658
|
2622 |
+
#: includes/fields/class-acf-field-taxonomy.php:28
|
2623 |
+
#: includes/fields/class-acf-field-taxonomy.php:763
|
2624 |
msgid "Taxonomy"
|
2625 |
msgstr "Taxonomie"
|
2626 |
|
2627 |
# @ acf
|
2628 |
+
#: includes/fields/class-acf-field-relationship.php:665
|
2629 |
msgid "Elements"
|
2630 |
msgstr "Elemente"
|
2631 |
|
2632 |
# @ acf
|
2633 |
+
#: includes/fields/class-acf-field-relationship.php:666
|
2634 |
msgid "Selected elements will be displayed in each result"
|
2635 |
msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt"
|
2636 |
|
2637 |
# @ acf
|
2638 |
+
#: includes/fields/class-acf-field-relationship.php:677
|
2639 |
msgid "Minimum posts"
|
2640 |
msgstr "Min. Anzahl der Beiträge"
|
2641 |
|
2642 |
# @ acf
|
2643 |
+
#: includes/fields/class-acf-field-relationship.php:686
|
2644 |
msgid "Maximum posts"
|
2645 |
msgstr "Max. Anzahl der Beiträge"
|
2646 |
|
2647 |
# @ acf
|
2648 |
+
#: includes/fields/class-acf-field-relationship.php:790
|
2649 |
+
#: pro/fields/class-acf-field-gallery.php:800
|
2650 |
#, php-format
|
2651 |
msgid "%s requires at least %s selection"
|
2652 |
msgid_plural "%s requires at least %s selections"
|
2653 |
msgstr[0] "%s benötigt mindestens %s Selektion"
|
2654 |
msgstr[1] "%s benötigt mindestens %s Selektionen"
|
2655 |
|
2656 |
+
#: includes/fields/class-acf-field-select.php:25
|
2657 |
+
#: includes/fields/class-acf-field-taxonomy.php:785
|
2658 |
msgctxt "noun"
|
2659 |
msgid "Select"
|
2660 |
msgstr "Auswahl"
|
2661 |
|
2662 |
+
#: includes/fields/class-acf-field-select.php:38
|
2663 |
msgctxt "Select2 JS matches_1"
|
2664 |
msgid "One result is available, press enter to select it."
|
2665 |
msgstr ""
|
2666 |
"Es ist ein Ergebnis verfügbar, drücke die Eingabetaste um es auszuwählen."
|
2667 |
|
2668 |
+
#: includes/fields/class-acf-field-select.php:39
|
2669 |
#, php-format
|
2670 |
msgctxt "Select2 JS matches_n"
|
2671 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2673 |
"Es sind %d Ergebnisse verfügbar, benutze die Pfeiltasten um nach oben und "
|
2674 |
"unten zu navigieren."
|
2675 |
|
2676 |
+
#: includes/fields/class-acf-field-select.php:40
|
2677 |
msgctxt "Select2 JS matches_0"
|
2678 |
msgid "No matches found"
|
2679 |
msgstr "Keine Übereinstimmungen gefunden"
|
2680 |
|
2681 |
+
#: includes/fields/class-acf-field-select.php:41
|
2682 |
msgctxt "Select2 JS input_too_short_1"
|
2683 |
msgid "Please enter 1 or more characters"
|
2684 |
msgstr "Gib bitte ein oder mehr Zeichen ein"
|
2685 |
|
2686 |
+
#: includes/fields/class-acf-field-select.php:42
|
2687 |
#, php-format
|
2688 |
msgctxt "Select2 JS input_too_short_n"
|
2689 |
msgid "Please enter %d or more characters"
|
2690 |
msgstr "Gib bitte %d oder mehr Zeichen ein"
|
2691 |
|
2692 |
+
#: includes/fields/class-acf-field-select.php:43
|
2693 |
msgctxt "Select2 JS input_too_long_1"
|
2694 |
msgid "Please delete 1 character"
|
2695 |
msgstr "Lösche bitte ein Zeichen"
|
2696 |
|
2697 |
+
#: includes/fields/class-acf-field-select.php:44
|
2698 |
#, php-format
|
2699 |
msgctxt "Select2 JS input_too_long_n"
|
2700 |
msgid "Please delete %d characters"
|
2701 |
msgstr "Lösche bitte %d Zeichen"
|
2702 |
|
2703 |
+
#: includes/fields/class-acf-field-select.php:45
|
2704 |
msgctxt "Select2 JS selection_too_long_1"
|
2705 |
msgid "You can only select 1 item"
|
2706 |
msgstr "Du kannst nur ein Element auswählen"
|
2707 |
|
2708 |
+
#: includes/fields/class-acf-field-select.php:46
|
2709 |
#, php-format
|
2710 |
msgctxt "Select2 JS selection_too_long_n"
|
2711 |
msgid "You can only select %d items"
|
2712 |
msgstr "Du kannst nur %d Elemente auswählen"
|
2713 |
|
2714 |
+
#: includes/fields/class-acf-field-select.php:47
|
2715 |
msgctxt "Select2 JS load_more"
|
2716 |
msgid "Loading more results…"
|
2717 |
msgstr "Mehr Ergebnisse laden…"
|
2718 |
|
2719 |
+
#: includes/fields/class-acf-field-select.php:48
|
2720 |
msgctxt "Select2 JS searching"
|
2721 |
msgid "Searching…"
|
2722 |
msgstr "Suchen…"
|
2723 |
|
2724 |
+
#: includes/fields/class-acf-field-select.php:49
|
2725 |
msgctxt "Select2 JS load_fail"
|
2726 |
msgid "Loading failed"
|
2727 |
msgstr "Laden fehlgeschlagen"
|
2728 |
|
2729 |
+
#: includes/fields/class-acf-field-select.php:255 includes/media.php:54
|
2730 |
msgctxt "verb"
|
2731 |
msgid "Select"
|
2732 |
msgstr "Auswählen"
|
2733 |
|
2734 |
# @ acf
|
2735 |
+
#: includes/fields/class-acf-field-select.php:406
|
2736 |
+
#: includes/fields/class-acf-field-true_false.php:144
|
2737 |
msgid "Stylised UI"
|
2738 |
msgstr "Modernes Auswahlfeld"
|
2739 |
|
2740 |
# @ acf
|
2741 |
+
#: includes/fields/class-acf-field-select.php:416
|
2742 |
msgid "Use AJAX to lazy load choices?"
|
2743 |
+
msgstr "AJAX verwenden um die Auswahl mittels Lady Lobding zu Laden?"
|
2744 |
|
2745 |
+
#: includes/fields/class-acf-field-select.php:427
|
2746 |
msgid "Specify the value returned"
|
2747 |
msgstr "Lege den Rückgabewert fest"
|
2748 |
|
2749 |
+
#: includes/fields/class-acf-field-separator.php:25
|
2750 |
msgid "Separator"
|
2751 |
+
msgstr "Trennelement"
|
2752 |
|
2753 |
# @ acf
|
2754 |
+
#: includes/fields/class-acf-field-tab.php:25
|
2755 |
msgid "Tab"
|
2756 |
msgstr "Tab"
|
2757 |
|
2758 |
# @ acf
|
2759 |
+
#: includes/fields/class-acf-field-tab.php:82
|
2760 |
msgid ""
|
2761 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2762 |
"field or flexible content field layout"
|
2765 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2766 |
|
2767 |
# @ acf
|
2768 |
+
#: includes/fields/class-acf-field-tab.php:83
|
2769 |
msgid ""
|
2770 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2771 |
"together."
|
2774 |
"Tabs zusammengefasst werden."
|
2775 |
|
2776 |
# @ acf
|
2777 |
+
#: includes/fields/class-acf-field-tab.php:84
|
2778 |
msgid ""
|
2779 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2780 |
"defined) will be grouped together using this field's label as the tab "
|
2785 |
"zusammengefasst."
|
2786 |
|
2787 |
# @ acf
|
2788 |
+
#: includes/fields/class-acf-field-tab.php:98
|
2789 |
msgid "Placement"
|
2790 |
msgstr "Platzierung Tabs"
|
2791 |
|
2792 |
+
#: includes/fields/class-acf-field-tab.php:110
|
2793 |
msgid "End-point"
|
2794 |
msgstr "Abschluss"
|
2795 |
|
2796 |
+
#: includes/fields/class-acf-field-tab.php:111
|
2797 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2798 |
msgstr "Benutze das Feld als einen Abschluss und starte eine Gruppe an Tabs"
|
2799 |
|
2800 |
+
#: includes/fields/class-acf-field-taxonomy.php:713
|
2801 |
+
#, php-format
|
2802 |
+
msgctxt "No terms"
|
2803 |
+
msgid "No %s"
|
2804 |
+
msgstr "Keine %s"
|
|
|
|
|
2805 |
|
2806 |
# @ acf
|
2807 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
2808 |
msgid "None"
|
2809 |
msgstr "Nur Text"
|
2810 |
|
2811 |
# @ acf
|
2812 |
+
#: includes/fields/class-acf-field-taxonomy.php:764
|
2813 |
msgid "Select the taxonomy to be displayed"
|
2814 |
msgstr "Wähle die Taxonomie, welche angezeigt werden soll"
|
2815 |
|
2816 |
# @ acf
|
2817 |
+
#: includes/fields/class-acf-field-taxonomy.php:773
|
2818 |
msgid "Appearance"
|
2819 |
msgstr "Anzeige"
|
2820 |
|
2821 |
# @ acf
|
2822 |
+
#: includes/fields/class-acf-field-taxonomy.php:774
|
2823 |
msgid "Select the appearance of this field"
|
2824 |
msgstr "Wähle das Aussehen für dieses Feld"
|
2825 |
|
2826 |
# @ acf
|
2827 |
+
#: includes/fields/class-acf-field-taxonomy.php:779
|
2828 |
msgid "Multiple Values"
|
2829 |
+
msgstr "Mehrere Werte"
|
2830 |
|
2831 |
# @ acf
|
2832 |
+
#: includes/fields/class-acf-field-taxonomy.php:781
|
2833 |
msgid "Multi Select"
|
2834 |
msgstr "Auswahlmenü"
|
2835 |
|
2836 |
# @ acf
|
2837 |
+
#: includes/fields/class-acf-field-taxonomy.php:783
|
2838 |
msgid "Single Value"
|
2839 |
msgstr "Einzelne Werte"
|
2840 |
|
2841 |
# @ acf
|
2842 |
+
#: includes/fields/class-acf-field-taxonomy.php:784
|
2843 |
msgid "Radio Buttons"
|
2844 |
msgstr "Radio Button"
|
2845 |
|
2846 |
# @ acf
|
2847 |
+
#: includes/fields/class-acf-field-taxonomy.php:803
|
2848 |
msgid "Create Terms"
|
2849 |
msgstr "Neue Einträge erlauben"
|
2850 |
|
2851 |
# @ acf
|
2852 |
+
#: includes/fields/class-acf-field-taxonomy.php:804
|
2853 |
msgid "Allow new terms to be created whilst editing"
|
2854 |
msgstr "Erlaube das Erstellen neuer Einträge beim Editieren"
|
2855 |
|
2856 |
+
#: includes/fields/class-acf-field-taxonomy.php:813
|
2857 |
msgid "Save Terms"
|
2858 |
msgstr "Einträge speichern"
|
2859 |
|
2860 |
# @ acf
|
2861 |
+
#: includes/fields/class-acf-field-taxonomy.php:814
|
2862 |
msgid "Connect selected terms to the post"
|
2863 |
msgstr "Speichert die ausgewählten Einträge auch im Beitrag"
|
2864 |
|
2865 |
+
#: includes/fields/class-acf-field-taxonomy.php:823
|
2866 |
msgid "Load Terms"
|
2867 |
msgstr "Einträge laden"
|
2868 |
|
2869 |
+
#: includes/fields/class-acf-field-taxonomy.php:824
|
2870 |
msgid "Load value from posts terms"
|
2871 |
msgstr "Den Wert von den Einträgen des Beitrags laden"
|
2872 |
|
2873 |
# @ acf
|
2874 |
+
#: includes/fields/class-acf-field-taxonomy.php:838
|
2875 |
msgid "Term Object"
|
2876 |
msgstr "Begriffs-Objekt"
|
2877 |
|
2878 |
# @ acf
|
2879 |
+
#: includes/fields/class-acf-field-taxonomy.php:839
|
2880 |
msgid "Term ID"
|
2881 |
msgstr "Begriffs-ID"
|
2882 |
|
2883 |
# @ acf
|
2884 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2885 |
#, php-format
|
2886 |
msgid "User unable to add new %s"
|
2887 |
msgstr "Der Benutzer kann keine neue %s hinzufügen"
|
2888 |
|
2889 |
# @ acf
|
2890 |
+
#: includes/fields/class-acf-field-taxonomy.php:911
|
2891 |
#, php-format
|
2892 |
msgid "%s already exists"
|
2893 |
msgstr "%s ist bereits vorhanden"
|
2894 |
|
2895 |
# @ acf
|
2896 |
+
#: includes/fields/class-acf-field-taxonomy.php:952
|
2897 |
#, php-format
|
2898 |
msgid "%s added"
|
2899 |
msgstr "%s hinzugefügt"
|
2900 |
|
2901 |
# @ acf
|
2902 |
+
#: includes/fields/class-acf-field-taxonomy.php:997
|
2903 |
msgid "Add"
|
2904 |
msgstr "Hinzufügen"
|
2905 |
|
2906 |
# @ acf
|
2907 |
+
#: includes/fields/class-acf-field-text.php:25
|
2908 |
msgid "Text"
|
2909 |
msgstr "Text einzeilig"
|
2910 |
|
2911 |
# @ acf
|
2912 |
+
#: includes/fields/class-acf-field-text.php:151
|
2913 |
+
#: includes/fields/class-acf-field-textarea.php:116
|
2914 |
msgid "Character Limit"
|
2915 |
msgstr "Zeichenbegrenzung"
|
2916 |
|
2917 |
# @ acf
|
2918 |
+
#: includes/fields/class-acf-field-text.php:152
|
2919 |
+
#: includes/fields/class-acf-field-textarea.php:117
|
2920 |
msgid "Leave blank for no limit"
|
2921 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2922 |
|
2923 |
# @ acf
|
2924 |
+
#: includes/fields/class-acf-field-textarea.php:25
|
2925 |
msgid "Text Area"
|
2926 |
msgstr "Text mehrzeilig"
|
2927 |
|
2928 |
# @ acf
|
2929 |
+
#: includes/fields/class-acf-field-textarea.php:125
|
2930 |
msgid "Rows"
|
2931 |
msgstr "Zeilenanzahl"
|
2932 |
|
2933 |
# @ acf
|
2934 |
+
#: includes/fields/class-acf-field-textarea.php:126
|
2935 |
msgid "Sets the textarea height"
|
2936 |
msgstr "Definiert die Höhe des Textfelds"
|
2937 |
|
2938 |
+
#: includes/fields/class-acf-field-time_picker.php:25
|
2939 |
msgid "Time Picker"
|
2940 |
msgstr "Zeit auswählen"
|
2941 |
|
2942 |
# @ acf
|
2943 |
+
#: includes/fields/class-acf-field-true_false.php:25
|
2944 |
msgid "True / False"
|
2945 |
msgstr "Ja/Nein"
|
2946 |
|
2947 |
# @ acf
|
2948 |
+
#: includes/fields/class-acf-field-true_false.php:79
|
2949 |
+
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2950 |
+
#: pro/admin/views/html-settings-updates.php:89
|
2951 |
msgid "Yes"
|
2952 |
msgstr "Ja"
|
2953 |
|
2954 |
+
# @ acf
|
2955 |
+
#: includes/fields/class-acf-field-true_false.php:80
|
2956 |
+
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2957 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2958 |
+
msgid "No"
|
2959 |
+
msgstr "Nein"
|
2960 |
+
|
2961 |
+
#: includes/fields/class-acf-field-true_false.php:127
|
2962 |
msgid "Displays text alongside the checkbox"
|
2963 |
msgstr "Zeigt den Text neben der Checkbox an"
|
2964 |
|
2965 |
+
#: includes/fields/class-acf-field-true_false.php:155
|
2966 |
msgid "On Text"
|
2967 |
msgstr "Wenn aktiv"
|
2968 |
|
2969 |
+
#: includes/fields/class-acf-field-true_false.php:156
|
2970 |
msgid "Text shown when active"
|
2971 |
msgstr "Der Text der im aktiven Zustand angezeigt wird"
|
2972 |
|
2973 |
+
#: includes/fields/class-acf-field-true_false.php:165
|
2974 |
msgid "Off Text"
|
2975 |
msgstr "Wenn inaktiv"
|
2976 |
|
2977 |
+
#: includes/fields/class-acf-field-true_false.php:166
|
2978 |
msgid "Text shown when inactive"
|
2979 |
msgstr "Der Text der im inaktiven Zustand angezeigt wird"
|
2980 |
|
2981 |
# @ acf
|
2982 |
+
#: includes/fields/class-acf-field-url.php:25
|
2983 |
msgid "Url"
|
2984 |
msgstr "URL"
|
2985 |
|
2986 |
# @ acf
|
2987 |
+
#: includes/fields/class-acf-field-url.php:147
|
2988 |
msgid "Value must be a valid URL"
|
2989 |
msgstr "Bitte eine gültige URL eingeben"
|
2990 |
|
2991 |
# @ acf
|
2992 |
+
#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95
|
2993 |
msgid "User"
|
2994 |
msgstr "Benutzer"
|
2995 |
|
2996 |
# @ acf
|
2997 |
+
#: includes/fields/class-acf-field-user.php:393
|
2998 |
msgid "Filter by role"
|
2999 |
msgstr "Filtere nach Benutzerrollen"
|
3000 |
|
3001 |
# @ acf
|
3002 |
+
#: includes/fields/class-acf-field-user.php:401
|
3003 |
msgid "All user roles"
|
3004 |
msgstr "Alle Benutzerrollen"
|
3005 |
|
3006 |
# @ acf
|
3007 |
+
#: includes/fields/class-acf-field-wysiwyg.php:25
|
3008 |
msgid "Wysiwyg Editor"
|
3009 |
msgstr "WYSIWYG-Editor"
|
3010 |
|
3011 |
# @ acf
|
3012 |
+
#: includes/fields/class-acf-field-wysiwyg.php:370
|
3013 |
msgid "Visual"
|
3014 |
msgstr "Visuell"
|
3015 |
|
3016 |
# @ acf
|
3017 |
+
#: includes/fields/class-acf-field-wysiwyg.php:371
|
3018 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3019 |
msgid "Text"
|
3020 |
msgstr "Text"
|
3021 |
|
3022 |
+
#: includes/fields/class-acf-field-wysiwyg.php:377
|
3023 |
msgid "Click to initialize TinyMCE"
|
3024 |
msgstr "Klicke um TinyMCE zu initialisieren"
|
3025 |
|
3026 |
# @ acf
|
3027 |
+
#: includes/fields/class-acf-field-wysiwyg.php:430
|
3028 |
msgid "Tabs"
|
3029 |
msgstr "Tabs"
|
3030 |
|
3031 |
# @ acf
|
3032 |
+
#: includes/fields/class-acf-field-wysiwyg.php:435
|
3033 |
msgid "Visual & Text"
|
3034 |
msgstr "Visuell & Text"
|
3035 |
|
3036 |
# @ acf
|
3037 |
+
#: includes/fields/class-acf-field-wysiwyg.php:436
|
3038 |
msgid "Visual Only"
|
3039 |
msgstr "Nur Visuell"
|
3040 |
|
3041 |
# @ acf
|
3042 |
+
#: includes/fields/class-acf-field-wysiwyg.php:437
|
3043 |
msgid "Text Only"
|
3044 |
msgstr "Nur Text"
|
3045 |
|
3046 |
# @ acf
|
3047 |
+
#: includes/fields/class-acf-field-wysiwyg.php:444
|
3048 |
msgid "Toolbar"
|
3049 |
msgstr "Werkzeugleiste"
|
3050 |
|
3051 |
# @ acf
|
3052 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
3053 |
msgid "Show Media Upload Buttons?"
|
3054 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3055 |
|
3056 |
+
#: includes/fields/class-acf-field-wysiwyg.php:464
|
3057 |
msgid "Delay initialization?"
|
3058 |
msgstr "Initialisierung verzögern?"
|
3059 |
|
3060 |
+
#: includes/fields/class-acf-field-wysiwyg.php:465
|
3061 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3062 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3063 |
|
3064 |
# @ acf
|
3065 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
3066 |
+
#: pro/admin/admin-options-page.php:308
|
3067 |
msgid "Edit field group"
|
3068 |
msgstr "Feld-Gruppen bearbeiten"
|
3069 |
|
3072 |
msgstr "E-Mail bestätigen"
|
3073 |
|
3074 |
# @ acf
|
3075 |
+
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
3076 |
+
#: pro/options-page.php:81
|
3077 |
msgid "Update"
|
3078 |
msgstr "Aktualisieren"
|
3079 |
|
3087 |
msgstr "Spam entdeckt"
|
3088 |
|
3089 |
# @ acf
|
3090 |
+
#: includes/input.php:259
|
3091 |
msgid "Expand Details"
|
3092 |
msgstr "Details einblenden"
|
3093 |
|
3094 |
# @ acf
|
3095 |
+
#: includes/input.php:260
|
3096 |
msgid "Collapse Details"
|
3097 |
msgstr "Details ausblenden"
|
3098 |
|
3099 |
# @ acf
|
3100 |
+
#: includes/input.php:261
|
3101 |
msgid "Validation successful"
|
3102 |
msgstr "Überprüfung erfolgreich"
|
3103 |
|
3104 |
# @ acf
|
3105 |
+
#: includes/input.php:262 includes/validation.php:285
|
3106 |
#: includes/validation.php:296
|
3107 |
msgid "Validation failed"
|
3108 |
msgstr "Überprüfung fehlgeschlagen"
|
3109 |
|
3110 |
# @ acf
|
3111 |
+
#: includes/input.php:263
|
3112 |
msgid "1 field requires attention"
|
3113 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3114 |
|
3115 |
# @ acf
|
3116 |
+
#: includes/input.php:264
|
3117 |
#, php-format
|
3118 |
msgid "%d fields require attention"
|
3119 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3120 |
|
3121 |
+
#: includes/input.php:265
|
3122 |
msgid "Restricted"
|
3123 |
msgstr "Eingeschränkt"
|
3124 |
|
3125 |
+
# @ acf
|
3126 |
+
#: includes/input.php:266
|
3127 |
+
msgid "Are you sure?"
|
3128 |
+
msgstr "Wirklich in den Papierkorb verschieben?"
|
3129 |
+
|
3130 |
+
#: includes/input.php:270
|
3131 |
msgid "Cancel"
|
3132 |
+
msgstr "Abbrechen"
|
3133 |
|
3134 |
# @ acf
|
3135 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
3151 |
msgid "Attachment"
|
3152 |
msgstr "Dateianhang"
|
3153 |
|
3154 |
+
#: includes/locations/class-acf-location-attachment.php:109
|
3155 |
#, php-format
|
3156 |
msgid "All %s formats"
|
3157 |
+
msgstr "Alle %s Formate"
|
3158 |
|
3159 |
# @ acf
|
3160 |
#: includes/locations/class-acf-location-comment.php:27
|
3167 |
msgstr "Aktuelle Benutzer-Rolle"
|
3168 |
|
3169 |
# @ acf
|
3170 |
+
#: includes/locations/class-acf-location-current-user-role.php:110
|
3171 |
msgid "Super Admin"
|
3172 |
msgstr "Super-Admin"
|
3173 |
|
3177 |
msgstr "Aktueller Benutzer"
|
3178 |
|
3179 |
# @ acf
|
3180 |
+
#: includes/locations/class-acf-location-current-user.php:97
|
3181 |
msgid "Logged in"
|
3182 |
+
msgstr "Angemeldet"
|
3183 |
|
3184 |
# @ acf
|
3185 |
+
#: includes/locations/class-acf-location-current-user.php:98
|
3186 |
msgid "Viewing front end"
|
3187 |
msgstr "ist im Front-End"
|
3188 |
|
3189 |
# @ acf
|
3190 |
+
#: includes/locations/class-acf-location-current-user.php:99
|
3191 |
msgid "Viewing back end"
|
3192 |
msgstr "ist im Back-End"
|
3193 |
|
3194 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
3195 |
msgid "Menu Item"
|
3196 |
+
msgstr "Menüelement"
|
3197 |
|
3198 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
3199 |
msgid "Menu"
|
3200 |
+
msgstr "Menü"
|
3201 |
|
3202 |
# @ acf
|
3203 |
+
#: includes/locations/class-acf-location-nav-menu.php:109
|
|
|
3204 |
msgid "Menu Locations"
|
3205 |
+
msgstr "Menüpositionen"
|
3206 |
|
3207 |
+
#: includes/locations/class-acf-location-nav-menu.php:119
|
3208 |
msgid "Menus"
|
3209 |
+
msgstr "Menüs"
|
3210 |
|
3211 |
# @ acf
|
3212 |
#: includes/locations/class-acf-location-page-parent.php:27
|
3219 |
msgstr "Seiten-Template"
|
3220 |
|
3221 |
# @ acf
|
3222 |
+
#: includes/locations/class-acf-location-page-template.php:98
|
3223 |
+
#: includes/locations/class-acf-location-post-template.php:151
|
3224 |
msgid "Default Template"
|
3225 |
msgstr "Standard-Template"
|
3226 |
|
3230 |
msgstr "Seitentyp"
|
3231 |
|
3232 |
# @ acf
|
3233 |
+
#: includes/locations/class-acf-location-page-type.php:145
|
3234 |
msgid "Front Page"
|
3235 |
msgstr "Startseite"
|
3236 |
|
3237 |
# @ acf
|
3238 |
+
#: includes/locations/class-acf-location-page-type.php:146
|
3239 |
msgid "Posts Page"
|
3240 |
msgstr "Beitrags-Seite"
|
3241 |
|
3242 |
# @ acf
|
3243 |
+
#: includes/locations/class-acf-location-page-type.php:147
|
3244 |
msgid "Top Level Page (no parent)"
|
3245 |
msgstr "Seite ohne übergeordnete Seiten"
|
3246 |
|
3247 |
# @ acf
|
3248 |
+
#: includes/locations/class-acf-location-page-type.php:148
|
3249 |
msgid "Parent Page (has children)"
|
3250 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3251 |
|
3252 |
# @ acf
|
3253 |
+
#: includes/locations/class-acf-location-page-type.php:149
|
3254 |
msgid "Child Page (has parent)"
|
3255 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3256 |
|
3275 |
msgstr "Beitrags-Taxonomie"
|
3276 |
|
3277 |
# @ acf
|
3278 |
+
#: includes/locations/class-acf-location-post-template.php:27
|
|
|
3279 |
msgid "Post Template"
|
3280 |
+
msgstr "Beitrags-Template"
|
3281 |
|
3282 |
# @ acf
|
3283 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
3290 |
msgstr "Benutzer-Formular"
|
3291 |
|
3292 |
# @ acf
|
3293 |
+
#: includes/locations/class-acf-location-user-form.php:88
|
3294 |
msgid "Add / Edit"
|
3295 |
msgstr "Hinzufügen / Bearbeiten"
|
3296 |
|
3297 |
# @ acf
|
3298 |
+
#: includes/locations/class-acf-location-user-form.php:89
|
3299 |
msgid "Register"
|
3300 |
msgstr "Registrieren"
|
3301 |
|
3332 |
msgstr "Advanced Custom Fields PRO"
|
3333 |
|
3334 |
# @ acf
|
3335 |
+
#: pro/admin/admin-options-page.php:200
|
3336 |
msgid "Publish"
|
3337 |
msgstr "Veröffentlichen"
|
3338 |
|
3339 |
# @ acf
|
3340 |
+
#: pro/admin/admin-options-page.php:206
|
3341 |
#, php-format
|
3342 |
msgid ""
|
3343 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
3350 |
#: pro/admin/admin-settings-updates.php:78
|
3351 |
msgid "<b>Error</b>. Could not connect to update server"
|
3352 |
msgstr ""
|
3353 |
+
"<b>Fehler</b>. Es konnte keine Verbindung zum Update-Server hergestellt "
|
3354 |
+
"werden"
|
3355 |
|
3356 |
# @ acf
|
3357 |
#: pro/admin/admin-settings-updates.php:162
|
3358 |
+
#: pro/admin/views/html-settings-updates.php:13
|
3359 |
msgid "Updates"
|
3360 |
msgstr "Aktualisierungen"
|
3361 |
|
3362 |
# @ acf
|
3363 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3364 |
msgid "Deactivate License"
|
3365 |
msgstr "Lizenz deaktivieren"
|
3366 |
|
3367 |
# @ acf
|
3368 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3369 |
msgid "Activate License"
|
3370 |
msgstr "Lizenz aktivieren"
|
3371 |
|
3372 |
+
#: pro/admin/views/html-settings-updates.php:17
|
3373 |
msgid "License Information"
|
3374 |
msgstr "Lizenzinformation"
|
3375 |
|
3376 |
+
#: pro/admin/views/html-settings-updates.php:20
|
3377 |
#, php-format
|
3378 |
msgid ""
|
3379 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3386 |
"a>."
|
3387 |
|
3388 |
# @ acf
|
3389 |
+
#: pro/admin/views/html-settings-updates.php:29
|
3390 |
msgid "License Key"
|
3391 |
msgstr "Lizenzschlüssel"
|
3392 |
|
3393 |
# @ acf
|
3394 |
+
#: pro/admin/views/html-settings-updates.php:61
|
3395 |
msgid "Update Information"
|
3396 |
msgstr "Aktualisierungsinformationen"
|
3397 |
|
3398 |
# @ acf
|
3399 |
+
#: pro/admin/views/html-settings-updates.php:68
|
3400 |
msgid "Current Version"
|
3401 |
msgstr "Installierte Version"
|
3402 |
|
3403 |
# @ acf
|
3404 |
+
#: pro/admin/views/html-settings-updates.php:76
|
3405 |
msgid "Latest Version"
|
3406 |
msgstr "Aktuellste Version"
|
3407 |
|
3408 |
# @ acf
|
3409 |
+
#: pro/admin/views/html-settings-updates.php:84
|
3410 |
msgid "Update Available"
|
3411 |
msgstr "Aktualisierung verfügbar"
|
3412 |
|
3413 |
# @ acf
|
3414 |
+
#: pro/admin/views/html-settings-updates.php:92
|
3415 |
msgid "Update Plugin"
|
3416 |
msgstr "Plugin aktualisieren"
|
3417 |
|
3418 |
# @ acf
|
3419 |
+
#: pro/admin/views/html-settings-updates.php:94
|
3420 |
msgid "Please enter your license key above to unlock updates"
|
3421 |
msgstr ""
|
3422 |
"Bitte gib oben Deinen Lizenzschlüssel ein um die Update-Fähigkeit "
|
3423 |
"freizuschalten"
|
3424 |
|
3425 |
# @ acf
|
3426 |
+
#: pro/admin/views/html-settings-updates.php:100
|
3427 |
msgid "Check Again"
|
3428 |
msgstr "Erneut suchen"
|
3429 |
|
3430 |
# @ acf
|
3431 |
+
#: pro/admin/views/html-settings-updates.php:117
|
3432 |
msgid "Upgrade Notice"
|
3433 |
msgstr "Aktualisierungs-Hinweis"
|
3434 |
|
3435 |
+
#: pro/fields/class-acf-field-clone.php:25
|
3436 |
msgctxt "noun"
|
3437 |
msgid "Clone"
|
3438 |
msgstr "Klon"
|
3439 |
|
3440 |
+
#: pro/fields/class-acf-field-clone.php:807
|
3441 |
msgid "Select one or more fields you wish to clone"
|
3442 |
msgstr "Wähle ein oder mehrere Felder aus die Du klonen möchtest"
|
3443 |
|
3444 |
# @ acf
|
3445 |
+
#: pro/fields/class-acf-field-clone.php:824
|
3446 |
msgid "Display"
|
3447 |
msgstr "Anzeige"
|
3448 |
|
3449 |
+
#: pro/fields/class-acf-field-clone.php:825
|
3450 |
msgid "Specify the style used to render the clone field"
|
3451 |
msgstr "Gib den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3452 |
|
3453 |
+
#: pro/fields/class-acf-field-clone.php:830
|
3454 |
msgid "Group (displays selected fields in a group within this field)"
|
3455 |
msgstr ""
|
3456 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
3457 |
"Feldes an)"
|
3458 |
|
3459 |
+
#: pro/fields/class-acf-field-clone.php:831
|
3460 |
msgid "Seamless (replaces this field with selected fields)"
|
3461 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3462 |
|
3463 |
+
#: pro/fields/class-acf-field-clone.php:852
|
3464 |
#, php-format
|
3465 |
msgid "Labels will be displayed as %s"
|
3466 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3467 |
|
3468 |
+
#: pro/fields/class-acf-field-clone.php:855
|
3469 |
msgid "Prefix Field Labels"
|
3470 |
msgstr "Präfix für Feld-Beschriftungen"
|
3471 |
|
3472 |
+
#: pro/fields/class-acf-field-clone.php:866
|
3473 |
#, php-format
|
3474 |
msgid "Values will be saved as %s"
|
3475 |
msgstr "Werte werden als %s gespeichert"
|
3476 |
|
3477 |
+
#: pro/fields/class-acf-field-clone.php:869
|
3478 |
msgid "Prefix Field Names"
|
3479 |
msgstr "Präfix für Feld-Namen"
|
3480 |
|
3481 |
+
#: pro/fields/class-acf-field-clone.php:987
|
3482 |
msgid "Unknown field"
|
3483 |
msgstr "Unbekanntes Feld"
|
3484 |
|
3485 |
+
#: pro/fields/class-acf-field-clone.php:1026
|
3486 |
msgid "Unknown field group"
|
3487 |
msgstr "Unbekannte Feld-Gruppe"
|
3488 |
|
3489 |
+
#: pro/fields/class-acf-field-clone.php:1030
|
3490 |
#, php-format
|
3491 |
msgid "All fields from %s field group"
|
3492 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
3493 |
|
3494 |
# @ acf
|
3495 |
+
#: pro/fields/class-acf-field-flexible-content.php:31
|
3496 |
+
#: pro/fields/class-acf-field-repeater.php:174
|
3497 |
+
#: pro/fields/class-acf-field-repeater.php:470
|
3498 |
msgid "Add Row"
|
3499 |
msgstr "Eintrag hinzufügen"
|
3500 |
|
3501 |
# @ acf
|
3502 |
+
#: pro/fields/class-acf-field-flexible-content.php:34
|
3503 |
msgid "layout"
|
3504 |
msgstr "Eintrag"
|
3505 |
|
3506 |
# @ acf
|
3507 |
+
#: pro/fields/class-acf-field-flexible-content.php:35
|
3508 |
msgid "layouts"
|
3509 |
msgstr "Einträge"
|
3510 |
|
3511 |
# @ acf
|
3512 |
+
#: pro/fields/class-acf-field-flexible-content.php:36
|
3513 |
msgid "remove {layout}?"
|
3514 |
+
msgstr "{layout} entfernen?"
|
3515 |
|
3516 |
# @ acf
|
3517 |
+
#: pro/fields/class-acf-field-flexible-content.php:37
|
3518 |
msgid "This field requires at least {min} {identifier}"
|
3519 |
msgstr "Dieses Feld erfordert mindestens {min} {identifier}"
|
3520 |
|
3521 |
# @ acf
|
3522 |
+
#: pro/fields/class-acf-field-flexible-content.php:38
|
3523 |
msgid "This field has a limit of {max} {identifier}"
|
3524 |
msgstr "Diesem Feld dürfen maximal {max} {identifier} hinzugefügt werden."
|
3525 |
|
3526 |
# @ acf
|
3527 |
+
#: pro/fields/class-acf-field-flexible-content.php:39
|
3528 |
msgid "This field requires at least {min} {label} {identifier}"
|
3529 |
msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}"
|
3530 |
|
3531 |
# @ acf
|
3532 |
+
#: pro/fields/class-acf-field-flexible-content.php:40
|
3533 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3534 |
msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})"
|
3535 |
|
3536 |
# @ acf
|
3537 |
+
#: pro/fields/class-acf-field-flexible-content.php:41
|
3538 |
msgid "{available} {label} {identifier} available (max {max})"
|
3539 |
msgstr "{available} {label} {identifier} möglich (max {max})"
|
3540 |
|
3541 |
# @ acf
|
3542 |
+
#: pro/fields/class-acf-field-flexible-content.php:42
|
3543 |
msgid "{required} {label} {identifier} required (min {min})"
|
3544 |
msgstr "{required} {label} {identifier} erforderlich (min {min})"
|
3545 |
|
3546 |
# @ acf
|
3547 |
+
#: pro/fields/class-acf-field-flexible-content.php:43
|
3548 |
msgid "Flexible Content requires at least 1 layout"
|
3549 |
msgstr "Flexibler Inhalt benötigt mindestens ein Layout"
|
3550 |
|
3551 |
# @ acf
|
3552 |
+
#: pro/fields/class-acf-field-flexible-content.php:273
|
3553 |
#, php-format
|
3554 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3555 |
msgstr "Klicke \"%s\" zum Erstellen des Layouts"
|
3556 |
|
3557 |
# @ acf
|
3558 |
+
#: pro/fields/class-acf-field-flexible-content.php:406
|
3559 |
msgid "Add layout"
|
3560 |
msgstr "Layout hinzufügen"
|
3561 |
|
3562 |
# @ acf
|
3563 |
+
#: pro/fields/class-acf-field-flexible-content.php:407
|
3564 |
msgid "Remove layout"
|
3565 |
msgstr "Layout entfernen"
|
3566 |
|
3567 |
+
#: pro/fields/class-acf-field-flexible-content.php:408
|
3568 |
+
#: pro/fields/class-acf-field-repeater.php:298
|
3569 |
msgid "Click to toggle"
|
3570 |
msgstr "Zum Auswählen anklicken"
|
3571 |
|
3572 |
# @ acf
|
3573 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3574 |
msgid "Reorder Layout"
|
3575 |
msgstr "Layout sortieren"
|
3576 |
|
3577 |
# @ acf
|
3578 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3579 |
msgid "Reorder"
|
3580 |
msgstr "Sortieren"
|
3581 |
|
3582 |
# @ acf
|
3583 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
3584 |
msgid "Delete Layout"
|
3585 |
msgstr "Layout löschen"
|
3586 |
|
3587 |
# @ acf
|
3588 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3589 |
msgid "Duplicate Layout"
|
3590 |
msgstr "Layout duplizieren"
|
3591 |
|
3592 |
# @ acf
|
3593 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3594 |
msgid "Add New Layout"
|
3595 |
msgstr "Neues Layout hinzufügen"
|
3596 |
|
3597 |
# @ acf
|
3598 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
3599 |
msgid "Min"
|
3600 |
msgstr "Min"
|
3601 |
|
3602 |
# @ acf
|
3603 |
+
#: pro/fields/class-acf-field-flexible-content.php:641
|
3604 |
msgid "Max"
|
3605 |
msgstr "Max"
|
3606 |
|
3607 |
# @ acf
|
3608 |
+
#: pro/fields/class-acf-field-flexible-content.php:668
|
3609 |
+
#: pro/fields/class-acf-field-repeater.php:466
|
3610 |
msgid "Button Label"
|
3611 |
msgstr "Button-Beschriftung"
|
3612 |
|
3613 |
# @ acf
|
3614 |
+
#: pro/fields/class-acf-field-flexible-content.php:677
|
3615 |
msgid "Minimum Layouts"
|
3616 |
msgstr "Minimum Layouts"
|
3617 |
|
3618 |
# @ acf
|
3619 |
+
#: pro/fields/class-acf-field-flexible-content.php:686
|
3620 |
msgid "Maximum Layouts"
|
3621 |
msgstr "Maximum Layouts"
|
3622 |
|
3623 |
# @ acf
|
3624 |
+
#: pro/fields/class-acf-field-gallery.php:41
|
3625 |
msgid "Add Image to Gallery"
|
3626 |
msgstr "Bild zur Galerie hinzufügen"
|
3627 |
|
3628 |
# @ acf
|
3629 |
+
#: pro/fields/class-acf-field-gallery.php:45
|
3630 |
msgid "Maximum selection reached"
|
3631 |
msgstr "Maximale Auswahl erreicht"
|
3632 |
|
3633 |
# @ acf
|
3634 |
+
#: pro/fields/class-acf-field-gallery.php:321
|
3635 |
msgid "Length"
|
3636 |
msgstr "Länge"
|
3637 |
|
3638 |
+
#: pro/fields/class-acf-field-gallery.php:364
|
3639 |
msgid "Caption"
|
3640 |
msgstr "Bildunterschrift"
|
3641 |
|
3642 |
+
#: pro/fields/class-acf-field-gallery.php:373
|
3643 |
msgid "Alt Text"
|
3644 |
msgstr "Alt Text"
|
3645 |
|
3646 |
# @ acf
|
3647 |
+
#: pro/fields/class-acf-field-gallery.php:544
|
3648 |
msgid "Add to gallery"
|
3649 |
msgstr "Zur Galerie hinzufügen"
|
3650 |
|
3651 |
# @ acf
|
3652 |
+
#: pro/fields/class-acf-field-gallery.php:548
|
3653 |
msgid "Bulk actions"
|
3654 |
msgstr "Massenverarbeitung"
|
3655 |
|
3656 |
# @ acf
|
3657 |
+
#: pro/fields/class-acf-field-gallery.php:549
|
3658 |
msgid "Sort by date uploaded"
|
3659 |
msgstr "Sortiere nach Upload-Datum"
|
3660 |
|
3661 |
# @ acf
|
3662 |
+
#: pro/fields/class-acf-field-gallery.php:550
|
3663 |
msgid "Sort by date modified"
|
3664 |
msgstr "Sortiere nach Änderungs-Datum"
|
3665 |
|
3666 |
# @ acf
|
3667 |
+
#: pro/fields/class-acf-field-gallery.php:551
|
3668 |
msgid "Sort by title"
|
3669 |
msgstr "Sortiere nach Titel"
|
3670 |
|
3671 |
# @ acf
|
3672 |
+
#: pro/fields/class-acf-field-gallery.php:552
|
3673 |
msgid "Reverse current order"
|
3674 |
msgstr "Aktuelle Sortierung umkehren"
|
3675 |
|
3676 |
# @ acf
|
3677 |
+
#: pro/fields/class-acf-field-gallery.php:570
|
3678 |
msgid "Close"
|
3679 |
msgstr "Schließen"
|
3680 |
|
3681 |
# @ acf
|
3682 |
+
#: pro/fields/class-acf-field-gallery.php:624
|
3683 |
msgid "Minimum Selection"
|
3684 |
msgstr "Minimale Auswahl"
|
3685 |
|
3686 |
# @ acf
|
3687 |
+
#: pro/fields/class-acf-field-gallery.php:633
|
3688 |
msgid "Maximum Selection"
|
3689 |
msgstr "Maximale Auswahl"
|
3690 |
|
3691 |
+
#: pro/fields/class-acf-field-gallery.php:642
|
3692 |
msgid "Insert"
|
3693 |
msgstr "Einfügen"
|
3694 |
|
3695 |
+
#: pro/fields/class-acf-field-gallery.php:643
|
3696 |
msgid "Specify where new attachments are added"
|
3697 |
msgstr "Gib an wo neue Anhänge hinzugefügt werden"
|
3698 |
|
3699 |
+
#: pro/fields/class-acf-field-gallery.php:647
|
3700 |
msgid "Append to the end"
|
3701 |
msgstr "Anhängen"
|
3702 |
|
3703 |
+
#: pro/fields/class-acf-field-gallery.php:648
|
3704 |
msgid "Prepend to the beginning"
|
3705 |
msgstr "Voranstellen"
|
3706 |
|
3707 |
# @ acf
|
3708 |
+
#: pro/fields/class-acf-field-repeater.php:36
|
3709 |
msgid "Minimum rows reached ({min} rows)"
|
3710 |
msgstr "Minimum der Einträge mit ({min} Reihen) erreicht"
|
3711 |
|
3712 |
# @ acf
|
3713 |
+
#: pro/fields/class-acf-field-repeater.php:37
|
3714 |
msgid "Maximum rows reached ({max} rows)"
|
3715 |
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
3716 |
|
3717 |
# @ acf
|
3718 |
+
#: pro/fields/class-acf-field-repeater.php:343
|
3719 |
msgid "Add row"
|
3720 |
msgstr "Eintrag hinzufügen"
|
3721 |
|
3722 |
# @ acf
|
3723 |
+
#: pro/fields/class-acf-field-repeater.php:344
|
3724 |
msgid "Remove row"
|
3725 |
+
msgstr "Eintrag entfernen"
|
3726 |
|
3727 |
+
#: pro/fields/class-acf-field-repeater.php:419
|
3728 |
msgid "Collapsed"
|
3729 |
msgstr "Zugeklappt"
|
3730 |
|
3731 |
+
#: pro/fields/class-acf-field-repeater.php:420
|
3732 |
msgid "Select a sub field to show when row is collapsed"
|
3733 |
msgstr ""
|
3734 |
"Wähle welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
3735 |
+
"werden soll"
|
3736 |
|
3737 |
# @ acf
|
3738 |
+
#: pro/fields/class-acf-field-repeater.php:430
|
3739 |
msgid "Minimum Rows"
|
3740 |
msgstr "Minimum der Einträge"
|
3741 |
|
3742 |
# @ acf
|
3743 |
+
#: pro/fields/class-acf-field-repeater.php:440
|
3744 |
msgid "Maximum Rows"
|
3745 |
msgstr "Maximum der Einträge"
|
3746 |
|
3747 |
# @ acf
|
3748 |
+
#: pro/locations/class-acf-location-options-page.php:79
|
3749 |
msgid "No options pages exist"
|
3750 |
msgstr "Keine Options-Seiten vorhanden"
|
3751 |
|
lang/acf-de_DE_formal.mo
CHANGED
Binary file
|
lang/acf-de_DE_formal.po
CHANGED
@@ -1,17 +1,17 @@
|
|
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:
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -28,111 +28,111 @@ 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 |
|
@@ -357,13 +357,13 @@ msgstr "Status"
|
|
357 |
#: includes/admin/admin-field-groups.php:607
|
358 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
359 |
msgstr ""
|
360 |
-
"
|
361 |
-
"Felder
|
362 |
|
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 |
|
@@ -378,11 +378,8 @@ msgid "Resources"
|
|
378 |
msgstr "Dokumentation (engl.)"
|
379 |
|
380 |
#: includes/admin/admin-field-groups.php:619
|
381 |
-
#, fuzzy
|
382 |
msgid "Website"
|
383 |
-
msgstr ""
|
384 |
-
"Diese Webseite nutzt Zusatz-Module mit Aktivierungs-Code, die nun "
|
385 |
-
"heruntergeladen werden müssen."
|
386 |
|
387 |
#: includes/admin/admin-field-groups.php:620
|
388 |
msgid "Documentation"
|
@@ -393,9 +390,8 @@ msgid "Support"
|
|
393 |
msgstr "Hilfe"
|
394 |
|
395 |
#: includes/admin/admin-field-groups.php:623
|
396 |
-
#, fuzzy
|
397 |
msgid "Pro"
|
398 |
-
msgstr "
|
399 |
|
400 |
#: includes/admin/admin-field-groups.php:628
|
401 |
#, php-format
|
@@ -411,14 +407,14 @@ msgstr "Dieses Element duplizieren"
|
|
411 |
#: includes/admin/admin-field-groups.php:668
|
412 |
#: includes/admin/admin-field-groups.php:684
|
413 |
#: includes/admin/views/field-group-field.php:49
|
414 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
415 |
msgid "Duplicate"
|
416 |
msgstr "Duplizieren"
|
417 |
|
418 |
# @ acf
|
419 |
#: includes/admin/admin-field-groups.php:701
|
420 |
-
#: includes/fields/class-acf-field-google-map.php:
|
421 |
-
#: includes/fields/class-acf-field-relationship.php:
|
422 |
msgid "Search"
|
423 |
msgstr "Suchen"
|
424 |
|
@@ -441,11 +437,10 @@ msgstr "Synchronisieren"
|
|
441 |
|
442 |
#: includes/admin/admin-field-groups.php:780
|
443 |
msgid "Apply"
|
444 |
-
msgstr ""
|
445 |
|
446 |
# @ acf
|
447 |
#: includes/admin/admin-field-groups.php:798
|
448 |
-
#, fuzzy
|
449 |
msgid "Bulk Actions"
|
450 |
msgstr "Massenverarbeitung"
|
451 |
|
@@ -459,12 +454,12 @@ msgstr "Eigene Felder"
|
|
459 |
#: includes/admin/install-network.php:88 includes/admin/install.php:70
|
460 |
#: includes/admin/install.php:121
|
461 |
msgid "Upgrade Database"
|
462 |
-
msgstr "
|
463 |
|
464 |
# @ acf
|
465 |
#: includes/admin/install-network.php:140
|
466 |
msgid "Review sites & upgrade"
|
467 |
-
msgstr "Übersicht
|
468 |
|
469 |
#: includes/admin/install.php:187
|
470 |
msgid "Error validating request"
|
@@ -509,14 +504,14 @@ msgstr "Keine Feld-Gruppe ausgewählt"
|
|
509 |
|
510 |
# @ acf
|
511 |
#: includes/admin/settings-tools.php:184
|
512 |
-
#: includes/fields/class-acf-field-file.php:
|
513 |
msgid "No file selected"
|
514 |
msgstr "Keine Datei ausgewählt"
|
515 |
|
516 |
# @ acf
|
517 |
#: includes/admin/settings-tools.php:197
|
518 |
msgid "Error uploading file. Please try again"
|
519 |
-
msgstr "Fehler beim Upload. Bitte erneut
|
520 |
|
521 |
# @ acf
|
522 |
#: includes/admin/settings-tools.php:206
|
@@ -547,13 +542,13 @@ msgstr "Zeige dieses Feld, wenn"
|
|
547 |
|
548 |
# @ acf
|
549 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
550 |
-
#: includes/locations.php:
|
551 |
msgid "is equal to"
|
552 |
msgstr "ist gleich"
|
553 |
|
554 |
# @ acf
|
555 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
556 |
-
#: includes/locations.php:
|
557 |
msgid "is not equal to"
|
558 |
msgstr "ist ungleich"
|
559 |
|
@@ -567,12 +562,12 @@ msgstr "und"
|
|
567 |
#: includes/admin/views/field-group-field-conditional-logic.php:156
|
568 |
#: includes/admin/views/field-group-locations.php:31
|
569 |
msgid "Add rule group"
|
570 |
-
msgstr "
|
571 |
|
572 |
# @ acf
|
573 |
#: includes/admin/views/field-group-field.php:41
|
574 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
575 |
-
#: pro/fields/class-acf-field-repeater.php:
|
576 |
msgid "Drag to reorder"
|
577 |
msgstr "Ziehen zum Sortieren"
|
578 |
|
@@ -584,9 +579,10 @@ msgstr "Feld bearbeiten"
|
|
584 |
|
585 |
# @ acf
|
586 |
#: includes/admin/views/field-group-field.php:48
|
587 |
-
#: includes/fields/class-acf-field-
|
588 |
-
#: includes/fields/class-acf-field-
|
589 |
-
#:
|
|
|
590 |
msgid "Edit"
|
591 |
msgstr "Bearbeiten"
|
592 |
|
@@ -612,7 +608,7 @@ msgstr "Feld löschen"
|
|
612 |
|
613 |
# @ acf
|
614 |
#: includes/admin/views/field-group-field.php:51
|
615 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
616 |
msgid "Delete"
|
617 |
msgstr "Löschen"
|
618 |
|
@@ -645,7 +641,7 @@ msgstr "Feld-Typ"
|
|
645 |
|
646 |
# @ acf
|
647 |
#: includes/admin/views/field-group-field.php:101
|
648 |
-
#: includes/fields/class-acf-field-tab.php:
|
649 |
msgid "Instructions"
|
650 |
msgstr "Anweisungen"
|
651 |
|
@@ -691,24 +687,23 @@ msgstr "Reihenfolge"
|
|
691 |
|
692 |
# @ acf
|
693 |
#: includes/admin/views/field-group-fields.php:5
|
694 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
695 |
-
#: includes/fields/class-acf-field-radio.php:
|
696 |
-
#: includes/fields/class-acf-field-select.php:
|
697 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
698 |
msgid "Label"
|
699 |
msgstr "Name"
|
700 |
|
701 |
# @ acf
|
702 |
#: includes/admin/views/field-group-fields.php:6
|
703 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
704 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
705 |
msgid "Name"
|
706 |
msgstr "Feld-Name"
|
707 |
|
708 |
#: includes/admin/views/field-group-fields.php:7
|
709 |
-
#, fuzzy
|
710 |
msgid "Key"
|
711 |
-
msgstr "
|
712 |
|
713 |
# @ acf
|
714 |
#: includes/admin/views/field-group-fields.php:8
|
@@ -785,13 +780,13 @@ msgstr "Platzierung Beschriftung"
|
|
785 |
|
786 |
# @ acf
|
787 |
#: includes/admin/views/field-group-options.php:62
|
788 |
-
#: includes/fields/class-acf-field-tab.php:
|
789 |
msgid "Top aligned"
|
790 |
msgstr "Über dem Feld"
|
791 |
|
792 |
# @ acf
|
793 |
#: includes/admin/views/field-group-options.php:63
|
794 |
-
#: includes/fields/class-acf-field-tab.php:
|
795 |
msgid "Left Aligned"
|
796 |
msgstr "Links neben dem Feld"
|
797 |
|
@@ -896,7 +891,7 @@ msgstr "Seiten-Attribute"
|
|
896 |
|
897 |
# @ acf
|
898 |
#: includes/admin/views/field-group-options.php:126
|
899 |
-
#: includes/fields/class-acf-field-relationship.php:
|
900 |
msgid "Featured Image"
|
901 |
msgstr "Beitragsbild"
|
902 |
|
@@ -922,13 +917,13 @@ msgstr "Zeige diese Felder, wenn"
|
|
922 |
|
923 |
#: includes/admin/views/install-network.php:4
|
924 |
msgid "Upgrade Sites"
|
925 |
-
msgstr "
|
926 |
|
927 |
# @ acf
|
928 |
#: includes/admin/views/install-network.php:9
|
929 |
#: includes/admin/views/install.php:3
|
930 |
msgid "Advanced Custom Fields Database Upgrade"
|
931 |
-
msgstr "Advanced Custom Fields Datenbank
|
932 |
|
933 |
#: includes/admin/views/install-network.php:11
|
934 |
#, php-format
|
@@ -936,25 +931,25 @@ msgid ""
|
|
936 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
937 |
"and then click %s."
|
938 |
msgstr ""
|
939 |
-
"Folgende
|
940 |
"gewünschten Seiten und klicken Sie dann %s."
|
941 |
|
942 |
# @ acf
|
943 |
#: includes/admin/views/install-network.php:20
|
944 |
#: includes/admin/views/install-network.php:28
|
945 |
msgid "Site"
|
946 |
-
msgstr "
|
947 |
|
948 |
# @ acf
|
949 |
#: includes/admin/views/install-network.php:48
|
950 |
#, php-format
|
951 |
msgid "Site requires database upgrade from %s to %s"
|
952 |
-
msgstr "Die
|
953 |
|
954 |
# @ acf
|
955 |
#: includes/admin/views/install-network.php:50
|
956 |
msgid "Site is up to date"
|
957 |
-
msgstr "
|
958 |
|
959 |
# @ acf
|
960 |
#: includes/admin/views/install-network.php:63
|
@@ -962,8 +957,7 @@ msgstr "Seite ist aktuell"
|
|
962 |
msgid ""
|
963 |
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
964 |
msgstr ""
|
965 |
-
"Datenbank
|
966 |
-
"Dashboard</a>"
|
967 |
|
968 |
# @ acf
|
969 |
#: includes/admin/views/install-network.php:102
|
@@ -972,50 +966,49 @@ msgid ""
|
|
972 |
"It is strongly recommended that you backup your database before proceeding. "
|
973 |
"Are you sure you wish to run the updater now?"
|
974 |
msgstr ""
|
975 |
-
"Es wird dringend
|
976 |
-
"fortfahren. Sind
|
977 |
-
"wollen?"
|
978 |
|
979 |
# @ default
|
980 |
#: includes/admin/views/install-network.php:158
|
981 |
msgid "Upgrade complete"
|
982 |
-
msgstr "
|
983 |
|
984 |
# @ acf
|
985 |
#: includes/admin/views/install-network.php:162
|
986 |
#: includes/admin/views/install.php:9
|
987 |
#, php-format
|
988 |
msgid "Upgrading data to version %s"
|
989 |
-
msgstr "
|
990 |
|
991 |
# @ acf
|
992 |
#: includes/admin/views/install-notice.php:8
|
993 |
-
#: pro/fields/class-acf-field-repeater.php:
|
994 |
msgid "Repeater"
|
995 |
msgstr "Wiederholung"
|
996 |
|
997 |
# @ acf
|
998 |
#: includes/admin/views/install-notice.php:9
|
999 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1000 |
msgid "Flexible Content"
|
1001 |
msgstr "Flexible Inhalte"
|
1002 |
|
1003 |
# @ acf
|
1004 |
#: includes/admin/views/install-notice.php:10
|
1005 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1006 |
msgid "Gallery"
|
1007 |
msgstr "Galerie"
|
1008 |
|
1009 |
# @ acf
|
1010 |
#: includes/admin/views/install-notice.php:11
|
1011 |
-
#: pro/locations/class-acf-location-options-page.php:
|
1012 |
msgid "Options Page"
|
1013 |
msgstr "Options-Seite"
|
1014 |
|
1015 |
# @ acf
|
1016 |
#: includes/admin/views/install-notice.php:26
|
1017 |
msgid "Database Upgrade Required"
|
1018 |
-
msgstr "Es ist
|
1019 |
|
1020 |
# @ acf
|
1021 |
#: includes/admin/views/install-notice.php:28
|
@@ -1029,8 +1022,8 @@ msgid ""
|
|
1029 |
"Before you start using the new awesome features, please update your database "
|
1030 |
"to the newest version."
|
1031 |
msgstr ""
|
1032 |
-
"Bevor Sie die
|
1033 |
-
"
|
1034 |
|
1035 |
#: includes/admin/views/install-notice.php:31
|
1036 |
#, php-format
|
@@ -1038,18 +1031,20 @@ msgid ""
|
|
1038 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
1039 |
"latest version."
|
1040 |
msgstr ""
|
|
|
|
|
1041 |
|
1042 |
# @ acf
|
1043 |
#: includes/admin/views/install.php:7
|
1044 |
msgid "Reading upgrade tasks..."
|
1045 |
-
msgstr "
|
1046 |
|
1047 |
#: includes/admin/views/install.php:11
|
1048 |
#, php-format
|
1049 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
1050 |
msgstr ""
|
1051 |
-
"Datenbank-
|
1052 |
-
"
|
1053 |
|
1054 |
# @ acf
|
1055 |
#: includes/admin/views/settings-addons.php:17
|
@@ -1073,8 +1068,8 @@ msgid ""
|
|
1073 |
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
1074 |
"hope you like it."
|
1075 |
msgstr ""
|
1076 |
-
"
|
1077 |
-
"
|
1078 |
|
1079 |
# @ acf
|
1080 |
#: includes/admin/views/settings-info.php:17
|
@@ -1135,7 +1130,7 @@ msgstr ""
|
|
1135 |
# @ acf
|
1136 |
#: includes/admin/views/settings-info.php:39
|
1137 |
msgid "Goodbye Add-ons. Hello PRO"
|
1138 |
-
msgstr "Macht's gut Add-ons… Hallo PRO
|
1139 |
|
1140 |
# @ acf
|
1141 |
#: includes/admin/views/settings-info.php:44
|
@@ -1209,10 +1204,9 @@ msgid ""
|
|
1209 |
"but if you do have one, please contact our support team via the <a href=\"%s"
|
1210 |
"\">help desk</a>"
|
1211 |
msgstr ""
|
1212 |
-
"Um möglichen Fragen
|
1213 |
-
"
|
1214 |
-
"
|
1215 |
-
"\"> Support-Team </a>."
|
1216 |
|
1217 |
# @ acf
|
1218 |
#: includes/admin/views/settings-info.php:66
|
@@ -1370,7 +1364,7 @@ msgstr ""
|
|
1370 |
|
1371 |
# @ acf
|
1372 |
#: includes/admin/views/settings-info.php:144
|
1373 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1374 |
msgid "Page Link"
|
1375 |
msgstr "Seiten-Link"
|
1376 |
|
@@ -1473,7 +1467,7 @@ msgstr ""
|
|
1473 |
|
1474 |
# @ acf
|
1475 |
#: includes/admin/views/settings-tools.php:77
|
1476 |
-
#: includes/fields/class-acf-field-file.php:
|
1477 |
msgid "Select File"
|
1478 |
msgstr "Datei auswählen"
|
1479 |
|
@@ -1503,56 +1497,56 @@ msgid "Full Size"
|
|
1503 |
msgstr "Volle Größe"
|
1504 |
|
1505 |
# @ acf
|
1506 |
-
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:
|
1507 |
-
#: pro/fields/class-acf-field-clone.php:
|
1508 |
msgid "(no title)"
|
1509 |
msgstr "(ohne Titel)"
|
1510 |
|
1511 |
-
#: includes/api/api-helpers.php:
|
1512 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1513 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1514 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1515 |
msgid "Parent"
|
1516 |
msgstr "Übergeordnet"
|
1517 |
|
1518 |
# @ acf
|
1519 |
-
#: includes/api/api-helpers.php:
|
1520 |
#, php-format
|
1521 |
msgid "Image width must be at least %dpx."
|
1522 |
msgstr "Die Breite des Bildes muss mindestens %dpx sein."
|
1523 |
|
1524 |
# @ acf
|
1525 |
-
#: includes/api/api-helpers.php:
|
1526 |
#, php-format
|
1527 |
msgid "Image width must not exceed %dpx."
|
1528 |
msgstr "Die Breite des Bildes darf %dpx nicht überschreiten."
|
1529 |
|
1530 |
# @ acf
|
1531 |
-
#: includes/api/api-helpers.php:
|
1532 |
#, php-format
|
1533 |
msgid "Image height must be at least %dpx."
|
1534 |
msgstr "Die Höhe des Bildes muss mindestens %dpx sein."
|
1535 |
|
1536 |
# @ acf
|
1537 |
-
#: includes/api/api-helpers.php:
|
1538 |
#, php-format
|
1539 |
msgid "Image height must not exceed %dpx."
|
1540 |
msgstr "Die Höhe des Bild darf %dpx nicht überschreiten."
|
1541 |
|
1542 |
# @ acf
|
1543 |
-
#: includes/api/api-helpers.php:
|
1544 |
#, php-format
|
1545 |
msgid "File size must be at least %s."
|
1546 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1547 |
|
1548 |
# @ acf
|
1549 |
-
#: includes/api/api-helpers.php:
|
1550 |
#, php-format
|
1551 |
msgid "File size must must not exceed %s."
|
1552 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1553 |
|
1554 |
# @ acf
|
1555 |
-
#: includes/api/api-helpers.php:
|
1556 |
#, php-format
|
1557 |
msgid "File type must be %s."
|
1558 |
msgstr "Der Dateityp muss %s sein."
|
@@ -1583,1088 +1577,1095 @@ msgid "jQuery"
|
|
1583 |
msgstr "jQuery"
|
1584 |
|
1585 |
# @ acf
|
1586 |
-
#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:
|
1587 |
-
#: includes/fields/class-acf-field-group.php:
|
1588 |
-
#: includes/fields/class-acf-field-radio.php:
|
1589 |
-
#: pro/fields/class-acf-field-clone.php:
|
1590 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1591 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1592 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1593 |
msgid "Layout"
|
1594 |
msgstr "Layout"
|
1595 |
|
1596 |
# @ acf
|
1597 |
-
#: includes/fields.php:
|
1598 |
msgid "Field type does not exist"
|
1599 |
msgstr "Feld-Typ existiert nicht"
|
1600 |
|
1601 |
-
#: includes/fields.php:
|
1602 |
-
#, fuzzy
|
1603 |
msgid "Unknown"
|
1604 |
msgstr "Unbekannte Feld-Gruppe"
|
1605 |
|
1606 |
# @ acf
|
1607 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1608 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1609 |
msgid "Checkbox"
|
1610 |
msgstr "Checkbox"
|
1611 |
|
1612 |
# @ acf
|
1613 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1614 |
msgid "Toggle All"
|
1615 |
msgstr "Alle auswählen"
|
1616 |
|
1617 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1618 |
msgid "Add new choice"
|
1619 |
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1620 |
|
1621 |
# @ acf
|
1622 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1623 |
-
#: includes/fields/class-acf-field-radio.php:
|
1624 |
-
#: includes/fields/class-acf-field-select.php:
|
1625 |
msgid "Choices"
|
1626 |
msgstr "Auswahlmöglichkeiten"
|
1627 |
|
1628 |
# @ acf
|
1629 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1630 |
-
#: includes/fields/class-acf-field-radio.php:
|
1631 |
-
#: includes/fields/class-acf-field-select.php:
|
1632 |
msgid "Enter each choice on a new line."
|
1633 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1634 |
|
1635 |
# @ acf
|
1636 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1637 |
-
#: includes/fields/class-acf-field-radio.php:
|
1638 |
-
#: includes/fields/class-acf-field-select.php:
|
1639 |
msgid "For more control, you may specify both a value and label like this:"
|
1640 |
msgstr ""
|
1641 |
"Für eine bessere Darstellung, können Sie auch einen Wert und dazu dessen "
|
1642 |
"Beschriftung definieren:"
|
1643 |
|
1644 |
# @ acf
|
1645 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1646 |
-
#: includes/fields/class-acf-field-radio.php:
|
1647 |
-
#: includes/fields/class-acf-field-select.php:
|
1648 |
msgid "red : Red"
|
1649 |
msgstr "rot : Rot"
|
1650 |
|
1651 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1652 |
msgid "Allow Custom"
|
1653 |
msgstr "Benutzerdefinierte Werte erlauben"
|
1654 |
|
1655 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1656 |
msgid "Allow 'custom' values to be added"
|
1657 |
msgstr "Erlaubt das Hinzufügen benutzerdefinierter Werte"
|
1658 |
|
1659 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1660 |
msgid "Save Custom"
|
1661 |
msgstr "Benutzerdefinierte Werte abspeichern"
|
1662 |
|
1663 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1664 |
msgid "Save 'custom' values to the field's choices"
|
1665 |
msgstr ""
|
1666 |
"Speichern sie benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1667 |
|
1668 |
# @ acf
|
1669 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1670 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1671 |
-
#: includes/fields/class-acf-field-email.php:
|
1672 |
-
#: includes/fields/class-acf-field-number.php:
|
1673 |
-
#: includes/fields/class-acf-field-radio.php:
|
1674 |
-
#: includes/fields/class-acf-field-
|
1675 |
-
#: includes/fields/class-acf-field-
|
1676 |
-
#: includes/fields/class-acf-field-
|
1677 |
-
#: includes/fields/class-acf-field-
|
1678 |
-
#: includes/fields/class-acf-field-
|
1679 |
-
#: includes/fields/class-acf-field-
|
|
|
1680 |
msgid "Default Value"
|
1681 |
msgstr "Standardwert"
|
1682 |
|
1683 |
# @ acf
|
1684 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1685 |
-
#: includes/fields/class-acf-field-select.php:
|
1686 |
msgid "Enter each default value on a new line"
|
1687 |
msgstr "Jeden Standardwert in einer neuen Zeile eingeben"
|
1688 |
|
1689 |
# @ acf
|
1690 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1691 |
-
#: includes/fields/class-acf-field-radio.php:
|
1692 |
msgid "Vertical"
|
1693 |
msgstr "Vertikal"
|
1694 |
|
1695 |
# @ acf
|
1696 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1697 |
-
#: includes/fields/class-acf-field-radio.php:
|
1698 |
msgid "Horizontal"
|
1699 |
msgstr "Horizontal"
|
1700 |
|
1701 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1702 |
msgid "Toggle"
|
1703 |
msgstr "Auswählen"
|
1704 |
|
1705 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1706 |
msgid "Prepend an extra checkbox to toggle all choices"
|
1707 |
msgstr ""
|
1708 |
"Hänge eine zusätzliche Checkbox an mit der man alle Optionen auswählen kann"
|
1709 |
|
1710 |
# @ acf
|
1711 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1712 |
-
#: includes/fields/class-acf-field-file.php:
|
1713 |
-
#: includes/fields/class-acf-field-image.php:
|
1714 |
-
#: includes/fields/class-acf-field-link.php:
|
1715 |
-
#: includes/fields/class-acf-field-radio.php:
|
1716 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1717 |
msgid "Return Value"
|
1718 |
msgstr "Rückgabewert"
|
1719 |
|
1720 |
# @ acf
|
1721 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1722 |
-
#: includes/fields/class-acf-field-file.php:
|
1723 |
-
#: includes/fields/class-acf-field-image.php:
|
1724 |
-
#: includes/fields/class-acf-field-link.php:
|
1725 |
-
#: includes/fields/class-acf-field-radio.php:
|
1726 |
msgid "Specify the returned value on front end"
|
1727 |
msgstr "Legt den Rückgabewert für das Front-End fest"
|
1728 |
|
1729 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1730 |
-
#: includes/fields/class-acf-field-radio.php:
|
1731 |
-
#: includes/fields/class-acf-field-select.php:
|
1732 |
msgid "Value"
|
1733 |
msgstr "Wert"
|
1734 |
|
1735 |
-
#: includes/fields/class-acf-field-checkbox.php:
|
1736 |
-
#: includes/fields/class-acf-field-radio.php:
|
1737 |
-
#: includes/fields/class-acf-field-select.php:
|
1738 |
msgid "Both (Array)"
|
1739 |
msgstr "Beide (Array)"
|
1740 |
|
1741 |
# @ acf
|
1742 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1743 |
msgid "Color Picker"
|
1744 |
msgstr "Farbe"
|
1745 |
|
1746 |
# @ acf
|
1747 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1748 |
msgid "Clear"
|
1749 |
msgstr "Leeren"
|
1750 |
|
1751 |
# @ acf
|
1752 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1753 |
msgid "Default"
|
1754 |
msgstr "Standard"
|
1755 |
|
1756 |
# @ acf
|
1757 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1758 |
msgid "Select Color"
|
1759 |
msgstr "Farbe auswählen"
|
1760 |
|
1761 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1762 |
msgid "Current Color"
|
1763 |
msgstr "Aktuelle Farbe"
|
1764 |
|
1765 |
# @ acf
|
1766 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1767 |
msgid "Date Picker"
|
1768 |
msgstr "Datum"
|
1769 |
|
1770 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1771 |
msgctxt "Date Picker JS closeText"
|
1772 |
msgid "Done"
|
1773 |
msgstr "Fertig"
|
1774 |
|
1775 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1776 |
msgctxt "Date Picker JS currentText"
|
1777 |
msgid "Today"
|
1778 |
msgstr "Heute"
|
1779 |
|
1780 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1781 |
msgctxt "Date Picker JS nextText"
|
1782 |
msgid "Next"
|
1783 |
msgstr "Nächstes"
|
1784 |
|
1785 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1786 |
msgctxt "Date Picker JS prevText"
|
1787 |
msgid "Prev"
|
1788 |
msgstr "Vorheriges"
|
1789 |
|
1790 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1791 |
msgctxt "Date Picker JS weekHeader"
|
1792 |
msgid "Wk"
|
1793 |
msgstr "Wo."
|
1794 |
|
1795 |
# @ acf
|
1796 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1797 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1798 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1799 |
msgid "Display Format"
|
1800 |
msgstr "Darstellungs-Format"
|
1801 |
|
1802 |
# @ acf
|
1803 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1804 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1805 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1806 |
msgid "The format displayed when editing a post"
|
1807 |
msgstr "Das Datums-Format für die Anzeige in der Bearbeitungs-Ansicht"
|
1808 |
|
1809 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1810 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1811 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1812 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1813 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1814 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1815 |
-
#, fuzzy
|
1816 |
msgid "Custom:"
|
1817 |
-
msgstr "
|
1818 |
|
1819 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1820 |
msgid "Save Format"
|
1821 |
msgstr "Format abspeichern"
|
1822 |
|
1823 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1824 |
msgid "The format used when saving a value"
|
1825 |
msgstr "Das Format das für das Speichern eines Wertes verwendet wird"
|
1826 |
|
1827 |
# @ acf
|
1828 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1829 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1830 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1831 |
-
#: includes/fields/class-acf-field-relationship.php:
|
1832 |
-
#: includes/fields/class-acf-field-select.php:
|
1833 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1834 |
msgid "Return Format"
|
1835 |
msgstr "Rückgabewert"
|
1836 |
|
1837 |
# @ acf
|
1838 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1839 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1840 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1841 |
msgid "The format returned via template functions"
|
1842 |
msgstr "Das Datums-Format für die Ausgabe in den Template-Funktionen"
|
1843 |
|
1844 |
# @ acf
|
1845 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1846 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1847 |
msgid "Week Starts On"
|
1848 |
msgstr "Die Woche beginnt am"
|
1849 |
|
1850 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1851 |
msgid "Date Time Picker"
|
1852 |
msgstr "Datum und Uhrzeit auswählen"
|
1853 |
|
1854 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1855 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1856 |
msgid "Choose Time"
|
1857 |
msgstr "Zeit auswählen"
|
1858 |
|
1859 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1860 |
msgctxt "Date Time Picker JS timeText"
|
1861 |
msgid "Time"
|
1862 |
msgstr "Zeit"
|
1863 |
|
1864 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1865 |
msgctxt "Date Time Picker JS hourText"
|
1866 |
msgid "Hour"
|
1867 |
msgstr "Stunde"
|
1868 |
|
1869 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1870 |
msgctxt "Date Time Picker JS minuteText"
|
1871 |
msgid "Minute"
|
1872 |
msgstr "Minute"
|
1873 |
|
1874 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1875 |
msgctxt "Date Time Picker JS secondText"
|
1876 |
msgid "Second"
|
1877 |
msgstr "Sekunde"
|
1878 |
|
1879 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1880 |
msgctxt "Date Time Picker JS millisecText"
|
1881 |
msgid "Millisecond"
|
1882 |
msgstr "Millisekunde"
|
1883 |
|
1884 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1885 |
msgctxt "Date Time Picker JS microsecText"
|
1886 |
msgid "Microsecond"
|
1887 |
msgstr "Mikrosekunde"
|
1888 |
|
1889 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1890 |
msgctxt "Date Time Picker JS timezoneText"
|
1891 |
msgid "Time Zone"
|
1892 |
msgstr "Zeitzone"
|
1893 |
|
1894 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1895 |
msgctxt "Date Time Picker JS currentText"
|
1896 |
msgid "Now"
|
1897 |
msgstr "Jetzt"
|
1898 |
|
1899 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1900 |
msgctxt "Date Time Picker JS closeText"
|
1901 |
msgid "Done"
|
1902 |
msgstr "Fertig"
|
1903 |
|
1904 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1905 |
msgctxt "Date Time Picker JS selectText"
|
1906 |
msgid "Select"
|
1907 |
msgstr "Auswählen"
|
1908 |
|
1909 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1910 |
msgctxt "Date Time Picker JS amText"
|
1911 |
msgid "AM"
|
1912 |
msgstr "vorm."
|
1913 |
|
1914 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1915 |
msgctxt "Date Time Picker JS amTextShort"
|
1916 |
msgid "A"
|
1917 |
msgstr "vorm."
|
1918 |
|
1919 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1920 |
msgctxt "Date Time Picker JS pmText"
|
1921 |
msgid "PM"
|
1922 |
msgstr "nachm."
|
1923 |
|
1924 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1925 |
msgctxt "Date Time Picker JS pmTextShort"
|
1926 |
msgid "P"
|
1927 |
msgstr "nachm."
|
1928 |
|
1929 |
# @ acf
|
1930 |
-
#: includes/fields/class-acf-field-email.php:
|
1931 |
msgid "Email"
|
1932 |
msgstr "E-Mail"
|
1933 |
|
1934 |
# @ acf
|
1935 |
-
#: includes/fields/class-acf-field-email.php:
|
1936 |
-
#: includes/fields/class-acf-field-number.php:
|
1937 |
-
#: includes/fields/class-acf-field-radio.php:
|
1938 |
-
#: includes/fields/class-acf-field-
|
1939 |
-
#: includes/fields/class-acf-field-
|
1940 |
-
#: includes/fields/class-acf-field-
|
1941 |
-
#: includes/fields/class-acf-field-
|
|
|
1942 |
msgid "Appears when creating a new post"
|
1943 |
msgstr "Erscheint bei der Erstellung eines neuen Beitrags"
|
1944 |
|
1945 |
# @ acf
|
1946 |
-
#: includes/fields/class-acf-field-email.php:
|
1947 |
-
#: includes/fields/class-acf-field-number.php:
|
1948 |
-
#: includes/fields/class-acf-field-password.php:
|
1949 |
-
#: includes/fields/class-acf-field-text.php:
|
1950 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1951 |
-
#: includes/fields/class-acf-field-url.php:
|
1952 |
msgid "Placeholder Text"
|
1953 |
msgstr "Platzhalter-Text"
|
1954 |
|
1955 |
# @ acf
|
1956 |
-
#: includes/fields/class-acf-field-email.php:
|
1957 |
-
#: includes/fields/class-acf-field-number.php:
|
1958 |
-
#: includes/fields/class-acf-field-password.php:
|
1959 |
-
#: includes/fields/class-acf-field-text.php:
|
1960 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1961 |
-
#: includes/fields/class-acf-field-url.php:
|
1962 |
msgid "Appears within the input"
|
1963 |
msgstr "Platzhalter-Text solange keine Eingabe im Feld vorgenommen wurde"
|
1964 |
|
1965 |
# @ acf
|
1966 |
-
#: includes/fields/class-acf-field-email.php:
|
1967 |
-
#: includes/fields/class-acf-field-number.php:
|
1968 |
-
#: includes/fields/class-acf-field-password.php:
|
1969 |
-
#: includes/fields/class-acf-field-
|
|
|
1970 |
msgid "Prepend"
|
1971 |
msgstr "Voranstellen"
|
1972 |
|
1973 |
# @ acf
|
1974 |
-
#: includes/fields/class-acf-field-email.php:
|
1975 |
-
#: includes/fields/class-acf-field-number.php:
|
1976 |
-
#: includes/fields/class-acf-field-password.php:
|
1977 |
-
#: includes/fields/class-acf-field-
|
|
|
1978 |
msgid "Appears before the input"
|
1979 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1980 |
|
1981 |
# @ acf
|
1982 |
-
#: includes/fields/class-acf-field-email.php:
|
1983 |
-
#: includes/fields/class-acf-field-number.php:
|
1984 |
-
#: includes/fields/class-acf-field-password.php:
|
1985 |
-
#: includes/fields/class-acf-field-
|
|
|
1986 |
msgid "Append"
|
1987 |
msgstr "Anhängen"
|
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 |
msgid "Appears after the input"
|
1995 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1996 |
|
1997 |
# @ acf
|
1998 |
-
#: includes/fields/class-acf-field-file.php:
|
1999 |
msgid "File"
|
2000 |
msgstr "Datei"
|
2001 |
|
2002 |
# @ acf
|
2003 |
-
#: includes/fields/class-acf-field-file.php:
|
2004 |
msgid "Edit File"
|
2005 |
msgstr "Datei bearbeiten"
|
2006 |
|
2007 |
# @ acf
|
2008 |
-
#: includes/fields/class-acf-field-file.php:
|
2009 |
msgid "Update File"
|
2010 |
msgstr "Datei aktualisieren"
|
2011 |
|
2012 |
# @ acf
|
2013 |
-
#: includes/fields/class-acf-field-file.php:
|
2014 |
-
#: includes/fields/class-acf-field-image.php:
|
2015 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2016 |
msgid "Uploaded to this post"
|
2017 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2018 |
|
2019 |
-
#: includes/fields/class-acf-field-file.php:
|
2020 |
msgid "File name"
|
2021 |
msgstr "Dateiname"
|
2022 |
|
2023 |
# @ acf
|
2024 |
-
#: includes/fields/class-acf-field-file.php:
|
2025 |
-
#: includes/fields/class-acf-field-file.php:
|
2026 |
-
#: includes/fields/class-acf-field-file.php:
|
2027 |
-
#: includes/fields/class-acf-field-image.php:
|
2028 |
-
#: includes/fields/class-acf-field-image.php:
|
2029 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2030 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2031 |
msgid "File size"
|
2032 |
msgstr "Dateigröße"
|
2033 |
|
2034 |
# @ acf
|
2035 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2036 |
msgid "Add File"
|
2037 |
msgstr "Datei hinzufügen"
|
2038 |
|
2039 |
# @ acf
|
2040 |
-
#: includes/fields/class-acf-field-file.php:
|
2041 |
msgid "File Array"
|
2042 |
msgstr "Datei-Array"
|
2043 |
|
2044 |
# @ acf
|
2045 |
-
#: includes/fields/class-acf-field-file.php:
|
2046 |
msgid "File URL"
|
2047 |
msgstr "Datei-URL"
|
2048 |
|
2049 |
# @ acf
|
2050 |
-
#: includes/fields/class-acf-field-file.php:
|
2051 |
msgid "File ID"
|
2052 |
msgstr "Datei-ID"
|
2053 |
|
2054 |
# @ acf
|
2055 |
-
#: includes/fields/class-acf-field-file.php:
|
2056 |
-
#: includes/fields/class-acf-field-image.php:
|
2057 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2058 |
msgid "Library"
|
2059 |
msgstr "Medienübersicht"
|
2060 |
|
2061 |
# @ acf
|
2062 |
-
#: includes/fields/class-acf-field-file.php:
|
2063 |
-
#: includes/fields/class-acf-field-image.php:
|
2064 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2065 |
msgid "Limit the media library choice"
|
2066 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2067 |
|
2068 |
# @ acf
|
2069 |
-
#: includes/fields/class-acf-field-file.php:
|
2070 |
-
#: includes/fields/class-acf-field-image.php:
|
2071 |
-
#: includes/locations/class-acf-location-attachment.php:
|
2072 |
-
#: includes/locations/class-acf-location-comment.php:
|
2073 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2074 |
-
#: includes/locations/class-acf-location-taxonomy.php:
|
2075 |
-
#: includes/locations/class-acf-location-user-form.php:
|
2076 |
-
#: includes/locations/class-acf-location-user-role.php:
|
2077 |
-
#: includes/locations/class-acf-location-widget.php:
|
2078 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2079 |
msgid "All"
|
2080 |
msgstr "Alle"
|
2081 |
|
2082 |
# @ acf
|
2083 |
-
#: includes/fields/class-acf-field-file.php:
|
2084 |
-
#: includes/fields/class-acf-field-image.php:
|
2085 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2086 |
msgid "Uploaded to post"
|
2087 |
msgstr "Für den Beitrag hochgeladen"
|
2088 |
|
2089 |
# @ acf
|
2090 |
-
#: includes/fields/class-acf-field-file.php:
|
2091 |
-
#: includes/fields/class-acf-field-image.php:
|
2092 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2093 |
msgid "Minimum"
|
2094 |
msgstr "Minimum"
|
2095 |
|
2096 |
# @ acf
|
2097 |
-
#: includes/fields/class-acf-field-file.php:
|
2098 |
-
#: includes/fields/class-acf-field-file.php:
|
2099 |
msgid "Restrict which files can be uploaded"
|
2100 |
msgstr ""
|
2101 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2102 |
"erfüllen"
|
2103 |
|
2104 |
# @ acf
|
2105 |
-
#: includes/fields/class-acf-field-file.php:
|
2106 |
-
#: includes/fields/class-acf-field-image.php:
|
2107 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2108 |
msgid "Maximum"
|
2109 |
msgstr "Maximum"
|
2110 |
|
2111 |
# @ acf
|
2112 |
-
#: includes/fields/class-acf-field-file.php:
|
2113 |
-
#: includes/fields/class-acf-field-image.php:
|
2114 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2115 |
msgid "Allowed file types"
|
2116 |
msgstr "Erlaubte Datei-Formate"
|
2117 |
|
2118 |
# @ acf
|
2119 |
-
#: includes/fields/class-acf-field-file.php:
|
2120 |
-
#: includes/fields/class-acf-field-image.php:
|
2121 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2122 |
msgid "Comma separated list. Leave blank for all types"
|
2123 |
msgstr ""
|
2124 |
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2125 |
"erlaubt"
|
2126 |
|
2127 |
# @ acf
|
2128 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2129 |
msgid "Google Map"
|
2130 |
msgstr "Google Maps"
|
2131 |
|
2132 |
# @ acf
|
2133 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2134 |
msgid "Locating"
|
2135 |
msgstr "Lokalisiere"
|
2136 |
|
2137 |
# @ acf
|
2138 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2139 |
msgid "Sorry, this browser does not support geolocation"
|
2140 |
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
2141 |
|
2142 |
# @ acf
|
2143 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2144 |
msgid "Clear location"
|
2145 |
msgstr "Position löschen"
|
2146 |
|
2147 |
# @ acf
|
2148 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2149 |
msgid "Find current location"
|
2150 |
msgstr "Aktuelle Position finden"
|
2151 |
|
2152 |
# @ acf
|
2153 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2154 |
msgid "Search for address..."
|
2155 |
msgstr "Nach der Adresse suchen..."
|
2156 |
|
2157 |
# @ acf
|
2158 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2159 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2160 |
msgid "Center"
|
2161 |
msgstr "Kartenmittelpunkt"
|
2162 |
|
2163 |
# @ acf
|
2164 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2165 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2166 |
msgid "Center the initial map"
|
2167 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2168 |
|
2169 |
# @ acf
|
2170 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2171 |
msgid "Zoom"
|
2172 |
msgstr "Zoom"
|
2173 |
|
2174 |
# @ acf
|
2175 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2176 |
msgid "Set the initial zoom level"
|
2177 |
msgstr "Legt die Zoomstufe der Karte fest"
|
2178 |
|
2179 |
# @ acf
|
2180 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2181 |
-
#: includes/fields/class-acf-field-image.php:
|
2182 |
-
#: includes/fields/class-acf-field-image.php:
|
2183 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2184 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2185 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2186 |
msgid "Height"
|
2187 |
msgstr "Höhe"
|
2188 |
|
2189 |
# @ acf
|
2190 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2191 |
msgid "Customise the map height"
|
2192 |
msgstr "Legt die Höhe der Karte fest"
|
2193 |
|
2194 |
# @ acf
|
2195 |
-
#: includes/fields/class-acf-field-group.php:
|
2196 |
-
#, fuzzy
|
2197 |
msgid "Group"
|
2198 |
msgstr ""
|
2199 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
2200 |
"Feldes an)"
|
2201 |
|
2202 |
# @ acf
|
2203 |
-
#: includes/fields/class-acf-field-group.php:
|
2204 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2205 |
msgid "Sub Fields"
|
2206 |
msgstr "Wiederholungsfelder"
|
2207 |
|
2208 |
-
#: includes/fields/class-acf-field-group.php:
|
2209 |
-
#: pro/fields/class-acf-field-clone.php:
|
2210 |
msgid "Specify the style used to render the selected fields"
|
2211 |
msgstr ""
|
2212 |
"Geben Sie den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2213 |
|
2214 |
# @ acf
|
2215 |
-
#: includes/fields/class-acf-field-group.php:
|
2216 |
-
#: pro/fields/class-acf-field-clone.php:
|
2217 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2218 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2219 |
msgid "Block"
|
2220 |
msgstr "Block"
|
2221 |
|
2222 |
# @ acf
|
2223 |
-
#: includes/fields/class-acf-field-group.php:
|
2224 |
-
#: pro/fields/class-acf-field-clone.php:
|
2225 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2226 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2227 |
msgid "Table"
|
2228 |
msgstr "Tabelle"
|
2229 |
|
2230 |
# @ acf
|
2231 |
-
#: includes/fields/class-acf-field-group.php:
|
2232 |
-
#: pro/fields/class-acf-field-clone.php:
|
2233 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2234 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2235 |
msgid "Row"
|
2236 |
msgstr "Reihe"
|
2237 |
|
2238 |
# @ acf
|
2239 |
-
#: includes/fields/class-acf-field-image.php:
|
2240 |
msgid "Image"
|
2241 |
msgstr "Bild"
|
2242 |
|
2243 |
# @ acf
|
2244 |
-
#: includes/fields/class-acf-field-image.php:
|
2245 |
msgid "Select Image"
|
2246 |
msgstr "Bild auswählen"
|
2247 |
|
2248 |
# @ acf
|
2249 |
-
#: includes/fields/class-acf-field-image.php:
|
2250 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2251 |
msgid "Edit Image"
|
2252 |
msgstr "Bild bearbeiten"
|
2253 |
|
2254 |
# @ acf
|
2255 |
-
#: includes/fields/class-acf-field-image.php:
|
2256 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2257 |
msgid "Update Image"
|
2258 |
msgstr "Bild aktualisieren"
|
2259 |
|
2260 |
# @ acf
|
2261 |
-
#: includes/fields/class-acf-field-image.php:
|
2262 |
msgid "All images"
|
2263 |
msgstr "Alle Bilder"
|
2264 |
|
2265 |
# @ acf
|
2266 |
-
#: includes/fields/class-acf-field-image.php:
|
2267 |
-
#: includes/fields/class-acf-field-link.php:153 includes/input.php:267
|
2268 |
-
#: pro/fields/class-acf-field-gallery.php:358
|
2269 |
-
#: pro/fields/class-acf-field-gallery.php:546
|
2270 |
-
msgid "Remove"
|
2271 |
-
msgstr "Entfernen"
|
2272 |
-
|
2273 |
-
# @ acf
|
2274 |
-
#: includes/fields/class-acf-field-image.php:158
|
2275 |
msgid "No image selected"
|
2276 |
msgstr "Kein Bild ausgewählt"
|
2277 |
|
2278 |
# @ acf
|
2279 |
-
#: includes/fields/class-acf-field-image.php:
|
2280 |
msgid "Add Image"
|
2281 |
msgstr "Bild hinzufügen"
|
2282 |
|
2283 |
# @ acf
|
2284 |
-
#: includes/fields/class-acf-field-image.php:
|
2285 |
msgid "Image Array"
|
2286 |
msgstr "Bild-Array"
|
2287 |
|
2288 |
# @ acf
|
2289 |
-
#: includes/fields/class-acf-field-image.php:
|
2290 |
msgid "Image URL"
|
2291 |
msgstr "Bild-URL"
|
2292 |
|
2293 |
# @ acf
|
2294 |
-
#: includes/fields/class-acf-field-image.php:
|
2295 |
msgid "Image ID"
|
2296 |
msgstr "Bild-ID"
|
2297 |
|
2298 |
# @ acf
|
2299 |
-
#: includes/fields/class-acf-field-image.php:
|
2300 |
msgid "Preview Size"
|
2301 |
msgstr "Maße der Vorschau"
|
2302 |
|
2303 |
# @ acf
|
2304 |
-
#: includes/fields/class-acf-field-image.php:
|
2305 |
msgid "Shown when entering data"
|
2306 |
msgstr "Legt fest welche Maße die Vorschau in der Bearbeitungs-Ansicht hat"
|
2307 |
|
2308 |
# @ acf
|
2309 |
-
#: includes/fields/class-acf-field-image.php:
|
2310 |
-
#: includes/fields/class-acf-field-image.php:
|
2311 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2312 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2313 |
msgid "Restrict which images can be uploaded"
|
2314 |
msgstr ""
|
2315 |
"Erlaubt nur das Hochladen von Bildern die die angegebenen Eigenschaften "
|
2316 |
"erfüllen"
|
2317 |
|
2318 |
# @ acf
|
2319 |
-
#: includes/fields/class-acf-field-image.php:
|
2320 |
-
#: includes/fields/class-acf-field-image.php:
|
2321 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2322 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2323 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2324 |
msgid "Width"
|
2325 |
msgstr "Breite"
|
2326 |
|
2327 |
# @ acf
|
2328 |
-
#: includes/fields/class-acf-field-link.php:
|
2329 |
-
#, fuzzy
|
2330 |
msgid "Link"
|
2331 |
msgstr "Seiten-Link"
|
2332 |
|
2333 |
# @ acf
|
2334 |
-
#: includes/fields/class-acf-field-link.php:
|
2335 |
-
#, fuzzy
|
2336 |
msgid "Select Link"
|
2337 |
msgstr "Datei auswählen"
|
2338 |
|
2339 |
-
#: includes/fields/class-acf-field-link.php:
|
2340 |
msgid "Opens in a new window/tab"
|
2341 |
-
msgstr ""
|
2342 |
|
2343 |
# @ acf
|
2344 |
-
#: includes/fields/class-acf-field-link.php:
|
2345 |
-
#, fuzzy
|
2346 |
msgid "Link Array"
|
2347 |
msgstr "Datei-Array"
|
2348 |
|
2349 |
# @ acf
|
2350 |
-
#: includes/fields/class-acf-field-link.php:
|
2351 |
-
#, fuzzy
|
2352 |
msgid "Link URL"
|
2353 |
msgstr "Datei-URL"
|
2354 |
|
2355 |
# @ acf
|
2356 |
-
#: includes/fields/class-acf-field-message.php:
|
2357 |
-
#: includes/fields/class-acf-field-message.php:
|
2358 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2359 |
msgid "Message"
|
2360 |
msgstr "Nachricht"
|
2361 |
|
2362 |
# @ acf
|
2363 |
-
#: includes/fields/class-acf-field-message.php:
|
2364 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2365 |
msgid "New Lines"
|
2366 |
msgstr "Neue Zeilen"
|
2367 |
|
2368 |
# @ acf
|
2369 |
-
#: includes/fields/class-acf-field-message.php:
|
2370 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2371 |
msgid "Controls how new lines are rendered"
|
2372 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2373 |
|
2374 |
# @ acf
|
2375 |
-
#: includes/fields/class-acf-field-message.php:
|
2376 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2377 |
msgid "Automatically add paragraphs"
|
2378 |
msgstr "Absätze automatisch hinzufügen"
|
2379 |
|
2380 |
# @ acf
|
2381 |
-
#: includes/fields/class-acf-field-message.php:
|
2382 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2383 |
msgid "Automatically add <br>"
|
2384 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2385 |
|
2386 |
# @ acf
|
2387 |
-
#: includes/fields/class-acf-field-message.php:
|
2388 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2389 |
msgid "No Formatting"
|
2390 |
msgstr "Keine Formatierung"
|
2391 |
|
2392 |
# @ acf
|
2393 |
-
#: includes/fields/class-acf-field-message.php:
|
2394 |
msgid "Escape HTML"
|
2395 |
msgstr "HTML enkodieren"
|
2396 |
|
2397 |
# @ acf
|
2398 |
-
#: includes/fields/class-acf-field-message.php:
|
2399 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2400 |
msgstr ""
|
2401 |
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2402 |
"interpretiert"
|
2403 |
|
2404 |
# @ acf
|
2405 |
-
#: includes/fields/class-acf-field-number.php:
|
2406 |
msgid "Number"
|
2407 |
msgstr "Numerisch"
|
2408 |
|
2409 |
# @ acf
|
2410 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2411 |
msgid "Minimum Value"
|
2412 |
msgstr "Mindestwert"
|
2413 |
|
2414 |
# @ acf
|
2415 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2416 |
msgid "Maximum Value"
|
2417 |
msgstr "Maximalwert"
|
2418 |
|
2419 |
# @ acf
|
2420 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2421 |
msgid "Step Size"
|
2422 |
msgstr "Schrittweite"
|
2423 |
|
2424 |
# @ acf
|
2425 |
-
#: includes/fields/class-acf-field-number.php:
|
2426 |
msgid "Value must be a number"
|
2427 |
msgstr "Wert muss eine Zahl sein"
|
2428 |
|
2429 |
# @ acf
|
2430 |
-
#: includes/fields/class-acf-field-number.php:
|
2431 |
#, php-format
|
2432 |
msgid "Value must be equal to or higher than %d"
|
2433 |
msgstr "Wert muss größer oder gleich %d sein"
|
2434 |
|
2435 |
# @ acf
|
2436 |
-
#: includes/fields/class-acf-field-number.php:
|
2437 |
#, php-format
|
2438 |
msgid "Value must be equal to or lower than %d"
|
2439 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2440 |
|
2441 |
# @ acf
|
2442 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2443 |
msgid "oEmbed"
|
2444 |
msgstr "oEmbed"
|
2445 |
|
2446 |
# @ acf
|
2447 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2448 |
msgid "Enter URL"
|
2449 |
msgstr "URL eingeben"
|
2450 |
|
2451 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2452 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2453 |
msgid "Error."
|
2454 |
msgstr "Fehler."
|
2455 |
|
2456 |
# @ acf
|
2457 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2458 |
msgid "No embed found for the given URL."
|
2459 |
msgstr "Keine Inhalte für die eingegebene URL gefunden."
|
2460 |
|
2461 |
# @ acf
|
2462 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2463 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2464 |
msgid "Embed Size"
|
2465 |
msgstr "Maße"
|
2466 |
|
2467 |
# @ acf
|
2468 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2469 |
msgid "Archives"
|
2470 |
msgstr "Archive"
|
2471 |
|
2472 |
# @ acf
|
2473 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2474 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2475 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2476 |
msgid "Filter by Post Type"
|
2477 |
msgstr "Nach Post Types filtern"
|
2478 |
|
2479 |
# @ acf
|
2480 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2481 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2482 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2483 |
msgid "All post types"
|
2484 |
msgstr "Alle verfügbaren Post Types"
|
2485 |
|
2486 |
# @ acf
|
2487 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2488 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2489 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2490 |
msgid "Filter by Taxonomy"
|
2491 |
msgstr "Nach Taxonomien filtern"
|
2492 |
|
2493 |
# @ acf
|
2494 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2495 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2496 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2497 |
msgid "All taxonomies"
|
2498 |
msgstr "Alle Taxonomien"
|
2499 |
|
2500 |
# @ acf
|
2501 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2502 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2503 |
-
#: includes/fields/class-acf-field-radio.php:
|
2504 |
-
#: includes/fields/class-acf-field-select.php:
|
2505 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2506 |
-
#: includes/fields/class-acf-field-user.php:
|
2507 |
msgid "Allow Null?"
|
2508 |
msgstr "NULL-Werte zulassen?"
|
2509 |
|
2510 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2511 |
msgid "Allow Archives URLs"
|
2512 |
msgstr "Archiv-URL's zulassen"
|
2513 |
|
2514 |
# @ acf
|
2515 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2516 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2517 |
-
#: includes/fields/class-acf-field-select.php:
|
2518 |
-
#: includes/fields/class-acf-field-user.php:
|
2519 |
msgid "Select multiple values?"
|
2520 |
msgstr "Mehrere Werte auswählbar?"
|
2521 |
|
2522 |
# @ acf
|
2523 |
-
#: includes/fields/class-acf-field-password.php:
|
2524 |
msgid "Password"
|
2525 |
msgstr "Passwort"
|
2526 |
|
2527 |
# @ acf
|
2528 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2529 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2530 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2531 |
msgid "Post Object"
|
2532 |
msgstr "Beitrags-Objekt"
|
2533 |
|
2534 |
# @ acf
|
2535 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2536 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2537 |
msgid "Post ID"
|
2538 |
msgstr "Beitrags-ID"
|
2539 |
|
2540 |
# @ acf
|
2541 |
-
#: includes/fields/class-acf-field-radio.php:
|
2542 |
msgid "Radio Button"
|
2543 |
msgstr "Radio-Button"
|
2544 |
|
2545 |
# @ acf
|
2546 |
-
#: includes/fields/class-acf-field-radio.php:
|
2547 |
msgid "Other"
|
2548 |
msgstr "Sonstige"
|
2549 |
|
2550 |
# @ acf
|
2551 |
-
#: includes/fields/class-acf-field-radio.php:
|
2552 |
msgid "Add 'other' choice to allow for custom values"
|
2553 |
msgstr ""
|
2554 |
"Fügt die Option 'Sonstige' hinzu welche erlaubt benutzerdefinierte Werte "
|
2555 |
"hinzuzufügen"
|
2556 |
|
2557 |
# @ acf
|
2558 |
-
#: includes/fields/class-acf-field-radio.php:
|
2559 |
msgid "Save Other"
|
2560 |
msgstr "'Sonstige' speichern"
|
2561 |
|
2562 |
# @ acf
|
2563 |
-
#: includes/fields/class-acf-field-radio.php:
|
2564 |
msgid "Save 'other' values to the field's choices"
|
2565 |
msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu"
|
2566 |
|
|
|
|
|
|
|
|
|
2567 |
# @ acf
|
2568 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2569 |
msgid "Relationship"
|
2570 |
msgstr "Beziehung"
|
2571 |
|
2572 |
# @ acf
|
2573 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2574 |
msgid "Minimum values reached ( {min} values )"
|
2575 |
msgstr "Minimum der Einträge mit ({min} Einträge) erreicht"
|
2576 |
|
2577 |
# @ acf
|
2578 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2579 |
msgid "Maximum values reached ( {max} values )"
|
2580 |
msgstr "Maximum der Einträge mit ({max} Einträge) erreicht"
|
2581 |
|
2582 |
# @ acf
|
2583 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2584 |
msgid "Loading"
|
2585 |
msgstr "Lade"
|
2586 |
|
2587 |
# @ acf
|
2588 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2589 |
msgid "No matches found"
|
2590 |
msgstr "Keine Übereinstimmung gefunden"
|
2591 |
|
2592 |
# @ acf
|
2593 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2594 |
-
msgid "Search..."
|
2595 |
-
msgstr "Suchen..."
|
2596 |
-
|
2597 |
-
# @ acf
|
2598 |
-
#: includes/fields/class-acf-field-relationship.php:594
|
2599 |
msgid "Select post type"
|
2600 |
msgstr "Beitrag-Typ auswählen"
|
2601 |
|
2602 |
# @ acf
|
2603 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2604 |
msgid "Select taxonomy"
|
2605 |
msgstr "Taxonomie auswählen"
|
2606 |
|
2607 |
# @ acf
|
2608 |
-
#: includes/fields/class-acf-field-relationship.php:
|
|
|
|
|
|
|
|
|
|
|
2609 |
msgid "Filters"
|
2610 |
msgstr "Filter"
|
2611 |
|
2612 |
# @ acf
|
2613 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2614 |
#: includes/locations/class-acf-location-post-type.php:27
|
2615 |
msgid "Post Type"
|
2616 |
msgstr "Beitrags-Typ"
|
2617 |
|
2618 |
# @ acf
|
2619 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2620 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2621 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2622 |
msgid "Taxonomy"
|
2623 |
msgstr "Taxonomie"
|
2624 |
|
2625 |
# @ acf
|
2626 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2627 |
msgid "Elements"
|
2628 |
msgstr "Elemente"
|
2629 |
|
2630 |
# @ acf
|
2631 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2632 |
msgid "Selected elements will be displayed in each result"
|
2633 |
msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt"
|
2634 |
|
2635 |
# @ acf
|
2636 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2637 |
msgid "Minimum posts"
|
2638 |
msgstr "Min. Anzahl der Beiträge"
|
2639 |
|
2640 |
# @ acf
|
2641 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2642 |
msgid "Maximum posts"
|
2643 |
msgstr "Max. Anzahl der Beiträge"
|
2644 |
|
2645 |
# @ acf
|
2646 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2647 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2648 |
#, php-format
|
2649 |
msgid "%s requires at least %s selection"
|
2650 |
msgid_plural "%s requires at least %s selections"
|
2651 |
msgstr[0] "%s benötigt mindestens %s Selektion"
|
2652 |
msgstr[1] "%s benötigt mindestens %s Selektionen"
|
2653 |
|
2654 |
-
#: includes/fields/class-acf-field-select.php:
|
2655 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2656 |
msgctxt "noun"
|
2657 |
msgid "Select"
|
2658 |
msgstr "Auswahl"
|
2659 |
|
2660 |
-
#: includes/fields/class-acf-field-select.php:
|
2661 |
msgctxt "Select2 JS matches_1"
|
2662 |
msgid "One result is available, press enter to select it."
|
2663 |
msgstr ""
|
2664 |
"Es ist ein Ergebnis verfügbar, drücken Sie die Eingabetaste um es "
|
2665 |
"auszuwählen."
|
2666 |
|
2667 |
-
#: includes/fields/class-acf-field-select.php:
|
2668 |
#, php-format
|
2669 |
msgctxt "Select2 JS matches_n"
|
2670 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
@@ -2672,90 +2673,90 @@ msgstr ""
|
|
2672 |
"Es sind %d Ergebnisse verfügbar, benutzen Sie die Pfeiltasten um nach oben "
|
2673 |
"und unten zu navigieren."
|
2674 |
|
2675 |
-
#: includes/fields/class-acf-field-select.php:
|
2676 |
msgctxt "Select2 JS matches_0"
|
2677 |
msgid "No matches found"
|
2678 |
msgstr "Keine Übereinstimmungen gefunden"
|
2679 |
|
2680 |
-
#: includes/fields/class-acf-field-select.php:
|
2681 |
msgctxt "Select2 JS input_too_short_1"
|
2682 |
msgid "Please enter 1 or more characters"
|
2683 |
msgstr "Geben Sie bitte ein oder mehr Zeichen ein"
|
2684 |
|
2685 |
-
#: includes/fields/class-acf-field-select.php:
|
2686 |
#, php-format
|
2687 |
msgctxt "Select2 JS input_too_short_n"
|
2688 |
msgid "Please enter %d or more characters"
|
2689 |
msgstr "Geben Sie bitte %d oder mehr Zeichen ein"
|
2690 |
|
2691 |
-
#: includes/fields/class-acf-field-select.php:
|
2692 |
msgctxt "Select2 JS input_too_long_1"
|
2693 |
msgid "Please delete 1 character"
|
2694 |
msgstr "Löschen Sie bitte ein Zeichen"
|
2695 |
|
2696 |
-
#: includes/fields/class-acf-field-select.php:
|
2697 |
#, php-format
|
2698 |
msgctxt "Select2 JS input_too_long_n"
|
2699 |
msgid "Please delete %d characters"
|
2700 |
msgstr "Löschen Sie bitte %d Zeichen"
|
2701 |
|
2702 |
-
#: includes/fields/class-acf-field-select.php:
|
2703 |
msgctxt "Select2 JS selection_too_long_1"
|
2704 |
msgid "You can only select 1 item"
|
2705 |
msgstr "Sie können nur ein Element auswählen"
|
2706 |
|
2707 |
-
#: includes/fields/class-acf-field-select.php:
|
2708 |
#, php-format
|
2709 |
msgctxt "Select2 JS selection_too_long_n"
|
2710 |
msgid "You can only select %d items"
|
2711 |
msgstr "Sie können nur %d Elemente auswählen"
|
2712 |
|
2713 |
-
#: includes/fields/class-acf-field-select.php:
|
2714 |
msgctxt "Select2 JS load_more"
|
2715 |
msgid "Loading more results…"
|
2716 |
msgstr "Mehr Ergebnisse laden…"
|
2717 |
|
2718 |
-
#: includes/fields/class-acf-field-select.php:
|
2719 |
msgctxt "Select2 JS searching"
|
2720 |
msgid "Searching…"
|
2721 |
msgstr "Suchen…"
|
2722 |
|
2723 |
-
#: includes/fields/class-acf-field-select.php:
|
2724 |
msgctxt "Select2 JS load_fail"
|
2725 |
msgid "Loading failed"
|
2726 |
msgstr "Laden fehlgeschlagen"
|
2727 |
|
2728 |
-
#: includes/fields/class-acf-field-select.php:
|
2729 |
msgctxt "verb"
|
2730 |
msgid "Select"
|
2731 |
msgstr "Auswählen"
|
2732 |
|
2733 |
# @ acf
|
2734 |
-
#: includes/fields/class-acf-field-select.php:
|
2735 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2736 |
msgid "Stylised UI"
|
2737 |
msgstr "Modernes Auswahlfeld"
|
2738 |
|
2739 |
# @ acf
|
2740 |
-
#: includes/fields/class-acf-field-select.php:
|
2741 |
msgid "Use AJAX to lazy load choices?"
|
2742 |
-
msgstr "AJAX
|
2743 |
|
2744 |
-
#: includes/fields/class-acf-field-select.php:
|
2745 |
msgid "Specify the value returned"
|
2746 |
msgstr "Legen Sie den Rückgabewert fest"
|
2747 |
|
2748 |
-
#: includes/fields/class-acf-field-separator.php:
|
2749 |
msgid "Separator"
|
2750 |
-
msgstr ""
|
2751 |
|
2752 |
# @ acf
|
2753 |
-
#: includes/fields/class-acf-field-tab.php:
|
2754 |
msgid "Tab"
|
2755 |
msgstr "Tab"
|
2756 |
|
2757 |
# @ acf
|
2758 |
-
#: includes/fields/class-acf-field-tab.php:
|
2759 |
msgid ""
|
2760 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2761 |
"field or flexible content field layout"
|
@@ -2764,7 +2765,7 @@ msgstr ""
|
|
2764 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2765 |
|
2766 |
# @ acf
|
2767 |
-
#: includes/fields/class-acf-field-tab.php:
|
2768 |
msgid ""
|
2769 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2770 |
"together."
|
@@ -2773,7 +2774,7 @@ msgstr ""
|
|
2773 |
"Tabs zusammengefasst werden."
|
2774 |
|
2775 |
# @ acf
|
2776 |
-
#: includes/fields/class-acf-field-tab.php:
|
2777 |
msgid ""
|
2778 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2779 |
"defined) will be grouped together using this field's label as the tab "
|
@@ -2784,280 +2785,285 @@ msgstr ""
|
|
2784 |
"zusammengefasst."
|
2785 |
|
2786 |
# @ acf
|
2787 |
-
#: includes/fields/class-acf-field-tab.php:
|
2788 |
msgid "Placement"
|
2789 |
msgstr "Platzierung Tabs"
|
2790 |
|
2791 |
-
#: includes/fields/class-acf-field-tab.php:
|
2792 |
msgid "End-point"
|
2793 |
msgstr "Abschluss"
|
2794 |
|
2795 |
-
#: includes/fields/class-acf-field-tab.php:
|
2796 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2797 |
msgstr "Benutze das Feld als einen Abschluss und starte eine Gruppe an Tabs"
|
2798 |
|
2799 |
-
|
2800 |
-
|
2801 |
-
|
2802 |
-
|
2803 |
-
|
2804 |
-
msgid "No"
|
2805 |
-
msgstr "Nein"
|
2806 |
|
2807 |
# @ acf
|
2808 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2809 |
msgid "None"
|
2810 |
msgstr "Nur Text"
|
2811 |
|
2812 |
# @ acf
|
2813 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2814 |
msgid "Select the taxonomy to be displayed"
|
2815 |
msgstr "Wähle die Taxonomie, welche angezeigt werden soll"
|
2816 |
|
2817 |
# @ acf
|
2818 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2819 |
msgid "Appearance"
|
2820 |
msgstr "Anzeige"
|
2821 |
|
2822 |
# @ acf
|
2823 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2824 |
msgid "Select the appearance of this field"
|
2825 |
msgstr "Wähle das Aussehen für dieses Feld"
|
2826 |
|
2827 |
# @ acf
|
2828 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2829 |
msgid "Multiple Values"
|
2830 |
-
msgstr "Mehrere Werte
|
2831 |
|
2832 |
# @ acf
|
2833 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2834 |
msgid "Multi Select"
|
2835 |
msgstr "Auswahlmenü"
|
2836 |
|
2837 |
# @ acf
|
2838 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2839 |
msgid "Single Value"
|
2840 |
msgstr "Einzelne Werte"
|
2841 |
|
2842 |
# @ acf
|
2843 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2844 |
msgid "Radio Buttons"
|
2845 |
msgstr "Radio Button"
|
2846 |
|
2847 |
# @ acf
|
2848 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2849 |
msgid "Create Terms"
|
2850 |
msgstr "Neue Einträge erlauben"
|
2851 |
|
2852 |
# @ acf
|
2853 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2854 |
msgid "Allow new terms to be created whilst editing"
|
2855 |
msgstr "Erlaube das Erstellen neuer Einträge beim Editieren"
|
2856 |
|
2857 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2858 |
msgid "Save Terms"
|
2859 |
msgstr "Einträge speichern"
|
2860 |
|
2861 |
# @ acf
|
2862 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2863 |
msgid "Connect selected terms to the post"
|
2864 |
msgstr "Speichert die ausgewählten Einträge auch im Beitrag"
|
2865 |
|
2866 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2867 |
msgid "Load Terms"
|
2868 |
msgstr "Einträge laden"
|
2869 |
|
2870 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2871 |
msgid "Load value from posts terms"
|
2872 |
msgstr "Den Wert von den Einträgen des Beitrags laden"
|
2873 |
|
2874 |
# @ acf
|
2875 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2876 |
msgid "Term Object"
|
2877 |
msgstr "Begriffs-Objekt"
|
2878 |
|
2879 |
# @ acf
|
2880 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2881 |
msgid "Term ID"
|
2882 |
msgstr "Begriffs-ID"
|
2883 |
|
2884 |
# @ acf
|
2885 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2886 |
#, php-format
|
2887 |
msgid "User unable to add new %s"
|
2888 |
msgstr "Der Benutzer kann keine neue %s hinzufügen"
|
2889 |
|
2890 |
# @ acf
|
2891 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2892 |
#, php-format
|
2893 |
msgid "%s already exists"
|
2894 |
msgstr "%s ist bereits vorhanden"
|
2895 |
|
2896 |
# @ acf
|
2897 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2898 |
#, php-format
|
2899 |
msgid "%s added"
|
2900 |
msgstr "%s hinzugefügt"
|
2901 |
|
2902 |
# @ acf
|
2903 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2904 |
msgid "Add"
|
2905 |
msgstr "Hinzufügen"
|
2906 |
|
2907 |
# @ acf
|
2908 |
-
#: includes/fields/class-acf-field-text.php:
|
2909 |
msgid "Text"
|
2910 |
msgstr "Text einzeilig"
|
2911 |
|
2912 |
# @ acf
|
2913 |
-
#: includes/fields/class-acf-field-text.php:
|
2914 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2915 |
msgid "Character Limit"
|
2916 |
msgstr "Zeichenbegrenzung"
|
2917 |
|
2918 |
# @ acf
|
2919 |
-
#: includes/fields/class-acf-field-text.php:
|
2920 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2921 |
msgid "Leave blank for no limit"
|
2922 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2923 |
|
2924 |
# @ acf
|
2925 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2926 |
msgid "Text Area"
|
2927 |
msgstr "Text mehrzeilig"
|
2928 |
|
2929 |
# @ acf
|
2930 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2931 |
msgid "Rows"
|
2932 |
msgstr "Zeilenanzahl"
|
2933 |
|
2934 |
# @ acf
|
2935 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2936 |
msgid "Sets the textarea height"
|
2937 |
msgstr "Definiert die Höhe des Textfelds"
|
2938 |
|
2939 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
2940 |
msgid "Time Picker"
|
2941 |
msgstr "Zeit auswählen"
|
2942 |
|
2943 |
# @ acf
|
2944 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2945 |
msgid "True / False"
|
2946 |
msgstr "Ja/Nein"
|
2947 |
|
2948 |
# @ acf
|
2949 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2950 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2951 |
-
#: pro/admin/views/html-settings-updates.php:
|
2952 |
msgid "Yes"
|
2953 |
msgstr "Ja"
|
2954 |
|
2955 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2956 |
msgid "Displays text alongside the checkbox"
|
2957 |
msgstr "Zeigt den Text neben der Checkbox an"
|
2958 |
|
2959 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2960 |
msgid "On Text"
|
2961 |
msgstr "Wenn aktiv"
|
2962 |
|
2963 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2964 |
msgid "Text shown when active"
|
2965 |
msgstr "Der Text der im aktiven Zustand angezeigt wird"
|
2966 |
|
2967 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2968 |
msgid "Off Text"
|
2969 |
msgstr "Wenn inaktiv"
|
2970 |
|
2971 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2972 |
msgid "Text shown when inactive"
|
2973 |
msgstr "Der Text der im inaktiven Zustand angezeigt wird"
|
2974 |
|
2975 |
# @ acf
|
2976 |
-
#: includes/fields/class-acf-field-url.php:
|
2977 |
msgid "Url"
|
2978 |
msgstr "URL"
|
2979 |
|
2980 |
# @ acf
|
2981 |
-
#: includes/fields/class-acf-field-url.php:
|
2982 |
msgid "Value must be a valid URL"
|
2983 |
msgstr "Bitte eine gültige URL eingeben"
|
2984 |
|
2985 |
# @ acf
|
2986 |
-
#: includes/fields/class-acf-field-user.php:
|
2987 |
msgid "User"
|
2988 |
msgstr "Benutzer"
|
2989 |
|
2990 |
# @ acf
|
2991 |
-
#: includes/fields/class-acf-field-user.php:
|
2992 |
msgid "Filter by role"
|
2993 |
msgstr "Filtere nach Benutzerrollen"
|
2994 |
|
2995 |
# @ acf
|
2996 |
-
#: includes/fields/class-acf-field-user.php:
|
2997 |
msgid "All user roles"
|
2998 |
msgstr "Alle Benutzerrollen"
|
2999 |
|
3000 |
# @ acf
|
3001 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3002 |
msgid "Wysiwyg Editor"
|
3003 |
msgstr "WYSIWYG-Editor"
|
3004 |
|
3005 |
# @ acf
|
3006 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3007 |
msgid "Visual"
|
3008 |
msgstr "Visuell"
|
3009 |
|
3010 |
# @ acf
|
3011 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3012 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3013 |
msgid "Text"
|
3014 |
msgstr "Text"
|
3015 |
|
3016 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3017 |
msgid "Click to initialize TinyMCE"
|
3018 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3019 |
|
3020 |
# @ acf
|
3021 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3022 |
msgid "Tabs"
|
3023 |
msgstr "Tabs"
|
3024 |
|
3025 |
# @ acf
|
3026 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3027 |
msgid "Visual & Text"
|
3028 |
msgstr "Visuell & Text"
|
3029 |
|
3030 |
# @ acf
|
3031 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3032 |
msgid "Visual Only"
|
3033 |
msgstr "Nur Visuell"
|
3034 |
|
3035 |
# @ acf
|
3036 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3037 |
msgid "Text Only"
|
3038 |
msgstr "Nur Text"
|
3039 |
|
3040 |
# @ acf
|
3041 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3042 |
msgid "Toolbar"
|
3043 |
msgstr "Werkzeugleiste"
|
3044 |
|
3045 |
# @ acf
|
3046 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3047 |
msgid "Show Media Upload Buttons?"
|
3048 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3049 |
|
3050 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3051 |
msgid "Delay initialization?"
|
3052 |
msgstr "Initialisierung verzögern?"
|
3053 |
|
3054 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
3055 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3056 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3057 |
|
3058 |
# @ acf
|
3059 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
3060 |
-
#: pro/admin/admin-options-page.php:
|
3061 |
msgid "Edit field group"
|
3062 |
msgstr "Feld-Gruppen bearbeiten"
|
3063 |
|
@@ -3066,8 +3072,8 @@ msgid "Validate Email"
|
|
3066 |
msgstr "E-Mail bestätigen"
|
3067 |
|
3068 |
# @ acf
|
3069 |
-
#: includes/forms/form-front.php:103
|
3070 |
-
#: pro/
|
3071 |
msgid "Update"
|
3072 |
msgstr "Aktualisieren"
|
3073 |
|
@@ -3081,44 +3087,49 @@ msgid "Spam Detected"
|
|
3081 |
msgstr "Spam entdeckt"
|
3082 |
|
3083 |
# @ acf
|
3084 |
-
#: includes/input.php:
|
3085 |
msgid "Expand Details"
|
3086 |
msgstr "Details einblenden"
|
3087 |
|
3088 |
# @ acf
|
3089 |
-
#: includes/input.php:
|
3090 |
msgid "Collapse Details"
|
3091 |
msgstr "Details ausblenden"
|
3092 |
|
3093 |
# @ acf
|
3094 |
-
#: includes/input.php:
|
3095 |
msgid "Validation successful"
|
3096 |
msgstr "Überprüfung erfolgreich"
|
3097 |
|
3098 |
# @ acf
|
3099 |
-
#: includes/input.php:
|
3100 |
#: includes/validation.php:296
|
3101 |
msgid "Validation failed"
|
3102 |
msgstr "Überprüfung fehlgeschlagen"
|
3103 |
|
3104 |
# @ acf
|
3105 |
-
#: includes/input.php:
|
3106 |
msgid "1 field requires attention"
|
3107 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3108 |
|
3109 |
# @ acf
|
3110 |
-
#: includes/input.php:
|
3111 |
#, php-format
|
3112 |
msgid "%d fields require attention"
|
3113 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3114 |
|
3115 |
-
#: includes/input.php:
|
3116 |
msgid "Restricted"
|
3117 |
msgstr "Eingeschränkt"
|
3118 |
|
3119 |
-
|
|
|
|
|
|
|
|
|
|
|
3120 |
msgid "Cancel"
|
3121 |
-
msgstr ""
|
3122 |
|
3123 |
# @ acf
|
3124 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
@@ -3140,10 +3151,10 @@ msgstr "Formulare"
|
|
3140 |
msgid "Attachment"
|
3141 |
msgstr "Dateianhang"
|
3142 |
|
3143 |
-
#: includes/locations/class-acf-location-attachment.php:
|
3144 |
#, php-format
|
3145 |
msgid "All %s formats"
|
3146 |
-
msgstr ""
|
3147 |
|
3148 |
# @ acf
|
3149 |
#: includes/locations/class-acf-location-comment.php:27
|
@@ -3156,7 +3167,7 @@ msgid "Current User Role"
|
|
3156 |
msgstr "Aktuelle Benutzer-Rolle"
|
3157 |
|
3158 |
# @ acf
|
3159 |
-
#: includes/locations/class-acf-location-current-user-role.php:
|
3160 |
msgid "Super Admin"
|
3161 |
msgstr "Super-Admin"
|
3162 |
|
@@ -3166,37 +3177,36 @@ msgid "Current User"
|
|
3166 |
msgstr "Aktueller Benutzer"
|
3167 |
|
3168 |
# @ acf
|
3169 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3170 |
msgid "Logged in"
|
3171 |
msgstr "ist angemeldet"
|
3172 |
|
3173 |
# @ acf
|
3174 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3175 |
msgid "Viewing front end"
|
3176 |
msgstr "ist im Front-End"
|
3177 |
|
3178 |
# @ acf
|
3179 |
-
#: includes/locations/class-acf-location-current-user.php:
|
3180 |
msgid "Viewing back end"
|
3181 |
msgstr "ist im Back-End"
|
3182 |
|
3183 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
3184 |
msgid "Menu Item"
|
3185 |
-
msgstr ""
|
3186 |
|
3187 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
3188 |
msgid "Menu"
|
3189 |
-
msgstr ""
|
3190 |
|
3191 |
# @ acf
|
3192 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
3193 |
-
#, fuzzy
|
3194 |
msgid "Menu Locations"
|
3195 |
-
msgstr "
|
3196 |
|
3197 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
3198 |
msgid "Menus"
|
3199 |
-
msgstr ""
|
3200 |
|
3201 |
# @ acf
|
3202 |
#: includes/locations/class-acf-location-page-parent.php:27
|
@@ -3209,8 +3219,8 @@ msgid "Page Template"
|
|
3209 |
msgstr "Seiten-Template"
|
3210 |
|
3211 |
# @ acf
|
3212 |
-
#: includes/locations/class-acf-location-page-template.php:
|
3213 |
-
#: includes/locations/class-acf-location-post-template.php:
|
3214 |
msgid "Default Template"
|
3215 |
msgstr "Standard-Template"
|
3216 |
|
@@ -3220,27 +3230,27 @@ msgid "Page Type"
|
|
3220 |
msgstr "Seitentyp"
|
3221 |
|
3222 |
# @ acf
|
3223 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3224 |
msgid "Front Page"
|
3225 |
msgstr "Startseite"
|
3226 |
|
3227 |
# @ acf
|
3228 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3229 |
msgid "Posts Page"
|
3230 |
msgstr "Beitrags-Seite"
|
3231 |
|
3232 |
# @ acf
|
3233 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3234 |
msgid "Top Level Page (no parent)"
|
3235 |
msgstr "Seite ohne übergeordnete Seiten"
|
3236 |
|
3237 |
# @ acf
|
3238 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3239 |
msgid "Parent Page (has children)"
|
3240 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3241 |
|
3242 |
# @ acf
|
3243 |
-
#: includes/locations/class-acf-location-page-type.php:
|
3244 |
msgid "Child Page (has parent)"
|
3245 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3246 |
|
@@ -3265,10 +3275,9 @@ msgid "Post Taxonomy"
|
|
3265 |
msgstr "Beitrags-Taxonomie"
|
3266 |
|
3267 |
# @ acf
|
3268 |
-
#: includes/locations/class-acf-location-post-template.php:
|
3269 |
-
#, fuzzy
|
3270 |
msgid "Post Template"
|
3271 |
-
msgstr "
|
3272 |
|
3273 |
# @ acf
|
3274 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
@@ -3281,12 +3290,12 @@ msgid "User Form"
|
|
3281 |
msgstr "Benutzer-Formular"
|
3282 |
|
3283 |
# @ acf
|
3284 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3285 |
msgid "Add / Edit"
|
3286 |
msgstr "Hinzufügen / Bearbeiten"
|
3287 |
|
3288 |
# @ acf
|
3289 |
-
#: includes/locations/class-acf-location-user-form.php:
|
3290 |
msgid "Register"
|
3291 |
msgstr "Registrieren"
|
3292 |
|
@@ -3323,12 +3332,12 @@ msgid "Advanced Custom Fields PRO"
|
|
3323 |
msgstr "Advanced Custom Fields PRO"
|
3324 |
|
3325 |
# @ acf
|
3326 |
-
#: pro/admin/admin-options-page.php:
|
3327 |
msgid "Publish"
|
3328 |
msgstr "Veröffentlichen"
|
3329 |
|
3330 |
# @ acf
|
3331 |
-
#: pro/admin/admin-options-page.php:
|
3332 |
#, php-format
|
3333 |
msgid ""
|
3334 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
@@ -3341,29 +3350,30 @@ msgstr ""
|
|
3341 |
#: pro/admin/admin-settings-updates.php:78
|
3342 |
msgid "<b>Error</b>. Could not connect to update server"
|
3343 |
msgstr ""
|
3344 |
-
"<b>Fehler</b>. Verbindung zum Update-Server
|
|
|
3345 |
|
3346 |
# @ acf
|
3347 |
#: pro/admin/admin-settings-updates.php:162
|
3348 |
-
#: pro/admin/views/html-settings-updates.php:
|
3349 |
msgid "Updates"
|
3350 |
msgstr "Aktualisierungen"
|
3351 |
|
3352 |
# @ acf
|
3353 |
-
#: pro/admin/views/html-settings-updates.php:
|
3354 |
msgid "Deactivate License"
|
3355 |
msgstr "Lizenz deaktivieren"
|
3356 |
|
3357 |
# @ acf
|
3358 |
-
#: pro/admin/views/html-settings-updates.php:
|
3359 |
msgid "Activate License"
|
3360 |
msgstr "Lizenz aktivieren"
|
3361 |
|
3362 |
-
#: pro/admin/views/html-settings-updates.php:
|
3363 |
msgid "License Information"
|
3364 |
msgstr "Lizenzinformation"
|
3365 |
|
3366 |
-
#: pro/admin/views/html-settings-updates.php:
|
3367 |
#, php-format
|
3368 |
msgid ""
|
3369 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -3376,366 +3386,366 @@ msgstr ""
|
|
3376 |
"a>."
|
3377 |
|
3378 |
# @ acf
|
3379 |
-
#: pro/admin/views/html-settings-updates.php:
|
3380 |
msgid "License Key"
|
3381 |
msgstr "Lizenzschlüssel"
|
3382 |
|
3383 |
# @ acf
|
3384 |
-
#: pro/admin/views/html-settings-updates.php:
|
3385 |
msgid "Update Information"
|
3386 |
msgstr "Aktualisierungsinformationen"
|
3387 |
|
3388 |
# @ acf
|
3389 |
-
#: pro/admin/views/html-settings-updates.php:
|
3390 |
msgid "Current Version"
|
3391 |
msgstr "Installierte Version"
|
3392 |
|
3393 |
# @ acf
|
3394 |
-
#: pro/admin/views/html-settings-updates.php:
|
3395 |
msgid "Latest Version"
|
3396 |
msgstr "Aktuellste Version"
|
3397 |
|
3398 |
# @ acf
|
3399 |
-
#: pro/admin/views/html-settings-updates.php:
|
3400 |
msgid "Update Available"
|
3401 |
msgstr "Aktualisierung verfügbar"
|
3402 |
|
3403 |
# @ acf
|
3404 |
-
#: pro/admin/views/html-settings-updates.php:
|
3405 |
msgid "Update Plugin"
|
3406 |
msgstr "Plugin aktualisieren"
|
3407 |
|
3408 |
# @ acf
|
3409 |
-
#: pro/admin/views/html-settings-updates.php:
|
3410 |
msgid "Please enter your license key above to unlock updates"
|
3411 |
msgstr ""
|
3412 |
"Bitte geben Sie oben Ihren Lizenzschlüssel ein um die Update-Fähigkeit "
|
3413 |
"freizuschalten"
|
3414 |
|
3415 |
# @ acf
|
3416 |
-
#: pro/admin/views/html-settings-updates.php:
|
3417 |
msgid "Check Again"
|
3418 |
msgstr "Erneut suchen"
|
3419 |
|
3420 |
# @ acf
|
3421 |
-
#: pro/admin/views/html-settings-updates.php:
|
3422 |
msgid "Upgrade Notice"
|
3423 |
msgstr "Aktualisierungs-Hinweis"
|
3424 |
|
3425 |
-
#: pro/fields/class-acf-field-clone.php:
|
3426 |
msgctxt "noun"
|
3427 |
msgid "Clone"
|
3428 |
msgstr "Klon"
|
3429 |
|
3430 |
-
#: pro/fields/class-acf-field-clone.php:
|
3431 |
msgid "Select one or more fields you wish to clone"
|
3432 |
msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten"
|
3433 |
|
3434 |
# @ acf
|
3435 |
-
#: pro/fields/class-acf-field-clone.php:
|
3436 |
msgid "Display"
|
3437 |
msgstr "Anzeige"
|
3438 |
|
3439 |
-
#: pro/fields/class-acf-field-clone.php:
|
3440 |
msgid "Specify the style used to render the clone field"
|
3441 |
msgstr "Geben Sie den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3442 |
|
3443 |
-
#: pro/fields/class-acf-field-clone.php:
|
3444 |
msgid "Group (displays selected fields in a group within this field)"
|
3445 |
msgstr ""
|
3446 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
3447 |
"Feldes an)"
|
3448 |
|
3449 |
-
#: pro/fields/class-acf-field-clone.php:
|
3450 |
msgid "Seamless (replaces this field with selected fields)"
|
3451 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3452 |
|
3453 |
-
#: pro/fields/class-acf-field-clone.php:
|
3454 |
#, php-format
|
3455 |
msgid "Labels will be displayed as %s"
|
3456 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3457 |
|
3458 |
-
#: pro/fields/class-acf-field-clone.php:
|
3459 |
msgid "Prefix Field Labels"
|
3460 |
msgstr "Präfix für Feld-Beschriftungen"
|
3461 |
|
3462 |
-
#: pro/fields/class-acf-field-clone.php:
|
3463 |
#, php-format
|
3464 |
msgid "Values will be saved as %s"
|
3465 |
msgstr "Werte werden als %s gespeichert"
|
3466 |
|
3467 |
-
#: pro/fields/class-acf-field-clone.php:
|
3468 |
msgid "Prefix Field Names"
|
3469 |
msgstr "Präfix für Feld-Namen"
|
3470 |
|
3471 |
-
#: pro/fields/class-acf-field-clone.php:
|
3472 |
msgid "Unknown field"
|
3473 |
msgstr "Unbekanntes Feld"
|
3474 |
|
3475 |
-
#: pro/fields/class-acf-field-clone.php:
|
3476 |
msgid "Unknown field group"
|
3477 |
msgstr "Unbekannte Feld-Gruppe"
|
3478 |
|
3479 |
-
#: pro/fields/class-acf-field-clone.php:
|
3480 |
#, php-format
|
3481 |
msgid "All fields from %s field group"
|
3482 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
3483 |
|
3484 |
# @ acf
|
3485 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3486 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3487 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3488 |
msgid "Add Row"
|
3489 |
msgstr "Eintrag hinzufügen"
|
3490 |
|
3491 |
# @ acf
|
3492 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3493 |
msgid "layout"
|
3494 |
msgstr "Eintrag"
|
3495 |
|
3496 |
# @ acf
|
3497 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3498 |
msgid "layouts"
|
3499 |
msgstr "Einträge"
|
3500 |
|
3501 |
# @ acf
|
3502 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3503 |
msgid "remove {layout}?"
|
3504 |
msgstr "{layout} löschen?"
|
3505 |
|
3506 |
# @ acf
|
3507 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3508 |
msgid "This field requires at least {min} {identifier}"
|
3509 |
msgstr "Dieses Feld erfordert mindestens {min} {identifier}"
|
3510 |
|
3511 |
# @ acf
|
3512 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3513 |
msgid "This field has a limit of {max} {identifier}"
|
3514 |
msgstr "Diesem Feld dürfen maximal {max} {identifier} hinzugefügt werden."
|
3515 |
|
3516 |
# @ acf
|
3517 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3518 |
msgid "This field requires at least {min} {label} {identifier}"
|
3519 |
msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}"
|
3520 |
|
3521 |
# @ acf
|
3522 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3523 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3524 |
msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})"
|
3525 |
|
3526 |
# @ acf
|
3527 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3528 |
msgid "{available} {label} {identifier} available (max {max})"
|
3529 |
msgstr "{available} {label} {identifier} möglich (max {max})"
|
3530 |
|
3531 |
# @ acf
|
3532 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3533 |
msgid "{required} {label} {identifier} required (min {min})"
|
3534 |
msgstr "{required} {label} {identifier} erforderlich (min {min})"
|
3535 |
|
3536 |
# @ acf
|
3537 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3538 |
msgid "Flexible Content requires at least 1 layout"
|
3539 |
msgstr "Flexibler Inhalt benötigt mindestens ein Layout"
|
3540 |
|
3541 |
# @ acf
|
3542 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3543 |
#, php-format
|
3544 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3545 |
msgstr "Klicke \"%s\" zum Erstellen des Layouts"
|
3546 |
|
3547 |
# @ acf
|
3548 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3549 |
msgid "Add layout"
|
3550 |
msgstr "Layout hinzufügen"
|
3551 |
|
3552 |
# @ acf
|
3553 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3554 |
msgid "Remove layout"
|
3555 |
msgstr "Layout entfernen"
|
3556 |
|
3557 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3558 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3559 |
msgid "Click to toggle"
|
3560 |
msgstr "Zum Auswählen anklicken"
|
3561 |
|
3562 |
# @ acf
|
3563 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3564 |
msgid "Reorder Layout"
|
3565 |
msgstr "Layout sortieren"
|
3566 |
|
3567 |
# @ acf
|
3568 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3569 |
msgid "Reorder"
|
3570 |
msgstr "Sortieren"
|
3571 |
|
3572 |
# @ acf
|
3573 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3574 |
msgid "Delete Layout"
|
3575 |
msgstr "Layout löschen"
|
3576 |
|
3577 |
# @ acf
|
3578 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3579 |
msgid "Duplicate Layout"
|
3580 |
msgstr "Layout duplizieren"
|
3581 |
|
3582 |
# @ acf
|
3583 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3584 |
msgid "Add New Layout"
|
3585 |
msgstr "Neues Layout hinzufügen"
|
3586 |
|
3587 |
# @ acf
|
3588 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3589 |
msgid "Min"
|
3590 |
msgstr "Min"
|
3591 |
|
3592 |
# @ acf
|
3593 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3594 |
msgid "Max"
|
3595 |
msgstr "Max"
|
3596 |
|
3597 |
# @ acf
|
3598 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3599 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3600 |
msgid "Button Label"
|
3601 |
msgstr "Button-Beschriftung"
|
3602 |
|
3603 |
# @ acf
|
3604 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3605 |
msgid "Minimum Layouts"
|
3606 |
msgstr "Minimum Layouts"
|
3607 |
|
3608 |
# @ acf
|
3609 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3610 |
msgid "Maximum Layouts"
|
3611 |
msgstr "Maximum Layouts"
|
3612 |
|
3613 |
# @ acf
|
3614 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3615 |
msgid "Add Image to Gallery"
|
3616 |
msgstr "Bild zur Galerie hinzufügen"
|
3617 |
|
3618 |
# @ acf
|
3619 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3620 |
msgid "Maximum selection reached"
|
3621 |
msgstr "Maximale Auswahl erreicht"
|
3622 |
|
3623 |
# @ acf
|
3624 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3625 |
msgid "Length"
|
3626 |
msgstr "Länge"
|
3627 |
|
3628 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3629 |
msgid "Caption"
|
3630 |
msgstr "Bildunterschrift"
|
3631 |
|
3632 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3633 |
msgid "Alt Text"
|
3634 |
msgstr "Alt Text"
|
3635 |
|
3636 |
# @ acf
|
3637 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3638 |
msgid "Add to gallery"
|
3639 |
msgstr "Zur Galerie hinzufügen"
|
3640 |
|
3641 |
# @ acf
|
3642 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3643 |
msgid "Bulk actions"
|
3644 |
msgstr "Massenverarbeitung"
|
3645 |
|
3646 |
# @ acf
|
3647 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3648 |
msgid "Sort by date uploaded"
|
3649 |
msgstr "Sortiere nach Upload-Datum"
|
3650 |
|
3651 |
# @ acf
|
3652 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3653 |
msgid "Sort by date modified"
|
3654 |
msgstr "Sortiere nach Änderungs-Datum"
|
3655 |
|
3656 |
# @ acf
|
3657 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3658 |
msgid "Sort by title"
|
3659 |
msgstr "Sortiere nach Titel"
|
3660 |
|
3661 |
# @ acf
|
3662 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3663 |
msgid "Reverse current order"
|
3664 |
msgstr "Aktuelle Sortierung umkehren"
|
3665 |
|
3666 |
# @ acf
|
3667 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3668 |
msgid "Close"
|
3669 |
msgstr "Schließen"
|
3670 |
|
3671 |
# @ acf
|
3672 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3673 |
msgid "Minimum Selection"
|
3674 |
msgstr "Minimale Auswahl"
|
3675 |
|
3676 |
# @ acf
|
3677 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3678 |
msgid "Maximum Selection"
|
3679 |
msgstr "Maximale Auswahl"
|
3680 |
|
3681 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3682 |
msgid "Insert"
|
3683 |
msgstr "Einfügen"
|
3684 |
|
3685 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3686 |
msgid "Specify where new attachments are added"
|
3687 |
msgstr "Geben Sie an wo neue Anhänge hinzugefügt werden"
|
3688 |
|
3689 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3690 |
msgid "Append to the end"
|
3691 |
msgstr "Anhängen"
|
3692 |
|
3693 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3694 |
msgid "Prepend to the beginning"
|
3695 |
msgstr "Voranstellen"
|
3696 |
|
3697 |
# @ acf
|
3698 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3699 |
msgid "Minimum rows reached ({min} rows)"
|
3700 |
msgstr "Minimum der Einträge mit ({min} Reihen) erreicht"
|
3701 |
|
3702 |
# @ acf
|
3703 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3704 |
msgid "Maximum rows reached ({max} rows)"
|
3705 |
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
3706 |
|
3707 |
# @ acf
|
3708 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3709 |
msgid "Add row"
|
3710 |
msgstr "Eintrag hinzufügen"
|
3711 |
|
3712 |
# @ acf
|
3713 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3714 |
msgid "Remove row"
|
3715 |
msgstr "Eintrag löschen"
|
3716 |
|
3717 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3718 |
msgid "Collapsed"
|
3719 |
msgstr "Zugeklappt"
|
3720 |
|
3721 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3722 |
msgid "Select a sub field to show when row is collapsed"
|
3723 |
msgstr ""
|
3724 |
"Wählen Sie welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
3725 |
-
"werden soll
|
3726 |
|
3727 |
# @ acf
|
3728 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3729 |
msgid "Minimum Rows"
|
3730 |
msgstr "Minimum der Einträge"
|
3731 |
|
3732 |
# @ acf
|
3733 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3734 |
msgid "Maximum Rows"
|
3735 |
msgstr "Maximum der Einträge"
|
3736 |
|
3737 |
# @ acf
|
3738 |
-
#: pro/locations/class-acf-location-options-page.php:
|
3739 |
msgid "No options pages exist"
|
3740 |
msgstr "Keine Options-Seiten vorhanden"
|
3741 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Advanced Custom Fields Pro v5.6.2 Formal\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2017-09-17 14:06+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-09-19 13:13+0200\n"
|
7 |
+
"Last-Translator: Ralf Koller <r.koller@gmail.com>\n"
|
8 |
"Language-Team: Ralf Koller <r.koller@gmail.com>\n"
|
9 |
"Language: de_DE\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
14 |
+
"X-Generator: Poedit 2.0.3\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;"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
+
#: acf.php:359 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Feld-Gruppen"
|
34 |
|
35 |
# @ acf
|
36 |
+
#: acf.php:360
|
37 |
msgid "Field Group"
|
38 |
msgstr "Feld-Gruppe"
|
39 |
|
40 |
# @ acf
|
41 |
+
#: acf.php:361 acf.php:393 includes/admin/admin.php:118
|
42 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
# @ acf
|
47 |
+
#: acf.php:362
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Neue Feld-Gruppe erstellen"
|
50 |
|
51 |
# @ acf
|
52 |
+
#: acf.php:363
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Feld-Gruppe bearbeiten"
|
55 |
|
56 |
# @ acf
|
57 |
+
#: acf.php:364
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Neue Feld-Gruppe"
|
60 |
|
61 |
# @ acf
|
62 |
+
#: acf.php:365
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Feld-Gruppe anzeigen"
|
65 |
|
66 |
# @ acf
|
67 |
+
#: acf.php:366
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Feld-Gruppen suchen"
|
70 |
|
71 |
# @ acf
|
72 |
+
#: acf.php:367
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Keine Feld-Gruppen gefunden"
|
75 |
|
76 |
# @ acf
|
77 |
+
#: acf.php:368
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
80 |
|
81 |
# @ acf
|
82 |
+
#: acf.php:391 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:806
|
86 |
msgid "Fields"
|
87 |
msgstr "Felder"
|
88 |
|
89 |
# @ acf
|
90 |
+
#: acf.php:392
|
91 |
msgid "Field"
|
92 |
msgstr "Feld"
|
93 |
|
94 |
# @ acf
|
95 |
+
#: acf.php:394
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Feld hinzufügen"
|
98 |
|
99 |
# @ acf
|
100 |
+
#: acf.php:395
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Feld bearbeiten"
|
103 |
|
104 |
# @ acf
|
105 |
+
#: acf.php:396 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:397
|
112 |
msgid "View Field"
|
113 |
msgstr "Feld anzeigen"
|
114 |
|
115 |
# @ acf
|
116 |
+
#: acf.php:398
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Felder suchen"
|
119 |
|
120 |
# @ acf
|
121 |
+
#: acf.php:399
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Keine Felder gefunden"
|
124 |
|
125 |
# @ acf
|
126 |
+
#: acf.php:400
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Keine Feld-Gruppen im Papierkorb gefunden"
|
129 |
|
130 |
+
#: acf.php:439 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:444
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
207 |
|
208 |
# @ acf
|
209 |
#: includes/admin/admin-field-group.php:273
|
210 |
+
#: includes/api/api-field-group.php:751
|
211 |
msgid "copy"
|
212 |
msgstr "kopieren"
|
213 |
|
217 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
218 |
#: includes/admin/views/field-group-locations.php:29
|
219 |
#: includes/admin/views/html-location-group.php:3
|
220 |
+
#: includes/api/api-helpers.php:3964
|
221 |
msgid "or"
|
222 |
msgstr "oder"
|
223 |
|
239 |
# @ acf
|
240 |
#: includes/admin/admin-field-group.php:279
|
241 |
msgid "This field cannot be moved until its changes have been saved"
|
242 |
+
msgstr "Diese Feld kann nicht verschoben werden, bevor es gesichert wurde"
|
243 |
|
244 |
# @ acf
|
245 |
#: includes/admin/admin-field-group.php:280
|
247 |
msgstr "Null"
|
248 |
|
249 |
# @ acf
|
250 |
+
#: includes/admin/admin-field-group.php:281 includes/input.php:258
|
251 |
msgid "The changes you made will be lost if you navigate away from this page"
|
252 |
msgstr ""
|
253 |
+
"Die vorgenommenen Änderungen gehen verloren wenn diese Seite verlassen wird"
|
254 |
|
255 |
# @ acf
|
256 |
#: includes/admin/admin-field-group.php:282
|
335 |
|
336 |
# @ acf
|
337 |
#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38
|
338 |
+
#: pro/fields/class-acf-field-gallery.php:355
|
339 |
msgid "Title"
|
340 |
msgstr "Titel"
|
341 |
|
344 |
#: includes/admin/views/field-group-options.php:96
|
345 |
#: includes/admin/views/install-network.php:21
|
346 |
#: includes/admin/views/install-network.php:29
|
347 |
+
#: pro/fields/class-acf-field-gallery.php:382
|
348 |
msgid "Description"
|
349 |
msgstr "Beschreibung"
|
350 |
|
357 |
#: includes/admin/admin-field-groups.php:607
|
358 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
359 |
msgstr ""
|
360 |
+
"WordPress durch leistungsfähige, professionelle und zugleich intuitive "
|
361 |
+
"Felder erweitern."
|
362 |
|
363 |
# @ acf
|
364 |
#: includes/admin/admin-field-groups.php:609
|
365 |
#: includes/admin/settings-info.php:76
|
366 |
+
#: pro/admin/views/html-settings-updates.php:107
|
367 |
msgid "Changelog"
|
368 |
msgstr "Versionshinweise"
|
369 |
|
378 |
msgstr "Dokumentation (engl.)"
|
379 |
|
380 |
#: includes/admin/admin-field-groups.php:619
|
|
|
381 |
msgid "Website"
|
382 |
+
msgstr "Website"
|
|
|
|
|
383 |
|
384 |
#: includes/admin/admin-field-groups.php:620
|
385 |
msgid "Documentation"
|
390 |
msgstr "Hilfe"
|
391 |
|
392 |
#: includes/admin/admin-field-groups.php:623
|
|
|
393 |
msgid "Pro"
|
394 |
+
msgstr "Pro"
|
395 |
|
396 |
#: includes/admin/admin-field-groups.php:628
|
397 |
#, php-format
|
407 |
#: includes/admin/admin-field-groups.php:668
|
408 |
#: includes/admin/admin-field-groups.php:684
|
409 |
#: includes/admin/views/field-group-field.php:49
|
410 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
411 |
msgid "Duplicate"
|
412 |
msgstr "Duplizieren"
|
413 |
|
414 |
# @ acf
|
415 |
#: includes/admin/admin-field-groups.php:701
|
416 |
+
#: includes/fields/class-acf-field-google-map.php:112
|
417 |
+
#: includes/fields/class-acf-field-relationship.php:656
|
418 |
msgid "Search"
|
419 |
msgstr "Suchen"
|
420 |
|
437 |
|
438 |
#: includes/admin/admin-field-groups.php:780
|
439 |
msgid "Apply"
|
440 |
+
msgstr "Anwenden"
|
441 |
|
442 |
# @ acf
|
443 |
#: includes/admin/admin-field-groups.php:798
|
|
|
444 |
msgid "Bulk Actions"
|
445 |
msgstr "Massenverarbeitung"
|
446 |
|
454 |
#: includes/admin/install-network.php:88 includes/admin/install.php:70
|
455 |
#: includes/admin/install.php:121
|
456 |
msgid "Upgrade Database"
|
457 |
+
msgstr "Datenbank upgraden"
|
458 |
|
459 |
# @ acf
|
460 |
#: includes/admin/install-network.php:140
|
461 |
msgid "Review sites & upgrade"
|
462 |
+
msgstr "Übersicht Websites & Upgrades"
|
463 |
|
464 |
#: includes/admin/install.php:187
|
465 |
msgid "Error validating request"
|
504 |
|
505 |
# @ acf
|
506 |
#: includes/admin/settings-tools.php:184
|
507 |
+
#: includes/fields/class-acf-field-file.php:155
|
508 |
msgid "No file selected"
|
509 |
msgstr "Keine Datei ausgewählt"
|
510 |
|
511 |
# @ acf
|
512 |
#: includes/admin/settings-tools.php:197
|
513 |
msgid "Error uploading file. Please try again"
|
514 |
+
msgstr "Fehler beim Upload der Datei. Bitte versuchen Sie es erneut"
|
515 |
|
516 |
# @ acf
|
517 |
#: includes/admin/settings-tools.php:206
|
542 |
|
543 |
# @ acf
|
544 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
545 |
+
#: includes/locations.php:247
|
546 |
msgid "is equal to"
|
547 |
msgstr "ist gleich"
|
548 |
|
549 |
# @ acf
|
550 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
551 |
+
#: includes/locations.php:248
|
552 |
msgid "is not equal to"
|
553 |
msgstr "ist ungleich"
|
554 |
|
562 |
#: includes/admin/views/field-group-field-conditional-logic.php:156
|
563 |
#: includes/admin/views/field-group-locations.php:31
|
564 |
msgid "Add rule group"
|
565 |
+
msgstr "Regelgruppe hinzufügen"
|
566 |
|
567 |
# @ acf
|
568 |
#: includes/admin/views/field-group-field.php:41
|
569 |
+
#: pro/fields/class-acf-field-flexible-content.php:403
|
570 |
+
#: pro/fields/class-acf-field-repeater.php:296
|
571 |
msgid "Drag to reorder"
|
572 |
msgstr "Ziehen zum Sortieren"
|
573 |
|
579 |
|
580 |
# @ acf
|
581 |
#: includes/admin/views/field-group-field.php:48
|
582 |
+
#: includes/fields/class-acf-field-file.php:137
|
583 |
+
#: includes/fields/class-acf-field-image.php:122
|
584 |
+
#: includes/fields/class-acf-field-link.php:139
|
585 |
+
#: pro/fields/class-acf-field-gallery.php:342
|
586 |
msgid "Edit"
|
587 |
msgstr "Bearbeiten"
|
588 |
|
608 |
|
609 |
# @ acf
|
610 |
#: includes/admin/views/field-group-field.php:51
|
611 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
612 |
msgid "Delete"
|
613 |
msgstr "Löschen"
|
614 |
|
641 |
|
642 |
# @ acf
|
643 |
#: includes/admin/views/field-group-field.php:101
|
644 |
+
#: includes/fields/class-acf-field-tab.php:88
|
645 |
msgid "Instructions"
|
646 |
msgstr "Anweisungen"
|
647 |
|
687 |
|
688 |
# @ acf
|
689 |
#: includes/admin/views/field-group-fields.php:5
|
690 |
+
#: includes/fields/class-acf-field-checkbox.php:415
|
691 |
+
#: includes/fields/class-acf-field-radio.php:306
|
692 |
+
#: includes/fields/class-acf-field-select.php:432
|
693 |
+
#: pro/fields/class-acf-field-flexible-content.php:582
|
694 |
msgid "Label"
|
695 |
msgstr "Name"
|
696 |
|
697 |
# @ acf
|
698 |
#: includes/admin/views/field-group-fields.php:6
|
699 |
+
#: includes/fields/class-acf-field-taxonomy.php:964
|
700 |
+
#: pro/fields/class-acf-field-flexible-content.php:595
|
701 |
msgid "Name"
|
702 |
msgstr "Feld-Name"
|
703 |
|
704 |
#: includes/admin/views/field-group-fields.php:7
|
|
|
705 |
msgid "Key"
|
706 |
+
msgstr "Feld-Schlüssel"
|
707 |
|
708 |
# @ acf
|
709 |
#: includes/admin/views/field-group-fields.php:8
|
780 |
|
781 |
# @ acf
|
782 |
#: includes/admin/views/field-group-options.php:62
|
783 |
+
#: includes/fields/class-acf-field-tab.php:102
|
784 |
msgid "Top aligned"
|
785 |
msgstr "Über dem Feld"
|
786 |
|
787 |
# @ acf
|
788 |
#: includes/admin/views/field-group-options.php:63
|
789 |
+
#: includes/fields/class-acf-field-tab.php:103
|
790 |
msgid "Left Aligned"
|
791 |
msgstr "Links neben dem Feld"
|
792 |
|
891 |
|
892 |
# @ acf
|
893 |
#: includes/admin/views/field-group-options.php:126
|
894 |
+
#: includes/fields/class-acf-field-relationship.php:670
|
895 |
msgid "Featured Image"
|
896 |
msgstr "Beitragsbild"
|
897 |
|
917 |
|
918 |
#: includes/admin/views/install-network.php:4
|
919 |
msgid "Upgrade Sites"
|
920 |
+
msgstr "Websites upgraden"
|
921 |
|
922 |
# @ acf
|
923 |
#: includes/admin/views/install-network.php:9
|
924 |
#: includes/admin/views/install.php:3
|
925 |
msgid "Advanced Custom Fields Database Upgrade"
|
926 |
+
msgstr "Advanced Custom Fields Datenbank-Upgrade"
|
927 |
|
928 |
#: includes/admin/views/install-network.php:11
|
929 |
#, php-format
|
931 |
"The following sites require a DB upgrade. Check the ones you want to update "
|
932 |
"and then click %s."
|
933 |
msgstr ""
|
934 |
+
"Folgende Websites erfordern ein Upgrade der Datenbank. Markieren Sie die "
|
935 |
"gewünschten Seiten und klicken Sie dann %s."
|
936 |
|
937 |
# @ acf
|
938 |
#: includes/admin/views/install-network.php:20
|
939 |
#: includes/admin/views/install-network.php:28
|
940 |
msgid "Site"
|
941 |
+
msgstr "Website"
|
942 |
|
943 |
# @ acf
|
944 |
#: includes/admin/views/install-network.php:48
|
945 |
#, php-format
|
946 |
msgid "Site requires database upgrade from %s to %s"
|
947 |
+
msgstr "Die Website erfordert ein Upgrade der Datenbank von %s auf %s"
|
948 |
|
949 |
# @ acf
|
950 |
#: includes/admin/views/install-network.php:50
|
951 |
msgid "Site is up to date"
|
952 |
+
msgstr "Die Website ist aktuell"
|
953 |
|
954 |
# @ acf
|
955 |
#: includes/admin/views/install-network.php:63
|
957 |
msgid ""
|
958 |
"Database Upgrade complete. <a href=\"%s\">Return to network dashboard</a>"
|
959 |
msgstr ""
|
960 |
+
"Upgrade der Datenbank fertiggestellt. <a href=„%s“>Zum Netzwerk Dashboard</a>"
|
|
|
961 |
|
962 |
# @ acf
|
963 |
#: includes/admin/views/install-network.php:102
|
966 |
"It is strongly recommended that you backup your database before proceeding. "
|
967 |
"Are you sure you wish to run the updater now?"
|
968 |
msgstr ""
|
969 |
+
"Es wird dringend empfohlen, dass Sie ihre Datenbank sichern, bevor Sie "
|
970 |
+
"fortfahren. Sind sie sicher, dass Sie jetzt das Upgrade durchführen wollen?"
|
|
|
971 |
|
972 |
# @ default
|
973 |
#: includes/admin/views/install-network.php:158
|
974 |
msgid "Upgrade complete"
|
975 |
+
msgstr "Upgrade abgeschlossen"
|
976 |
|
977 |
# @ acf
|
978 |
#: includes/admin/views/install-network.php:162
|
979 |
#: includes/admin/views/install.php:9
|
980 |
#, php-format
|
981 |
msgid "Upgrading data to version %s"
|
982 |
+
msgstr "Daten auf Version %s upgraden"
|
983 |
|
984 |
# @ acf
|
985 |
#: includes/admin/views/install-notice.php:8
|
986 |
+
#: pro/fields/class-acf-field-repeater.php:25
|
987 |
msgid "Repeater"
|
988 |
msgstr "Wiederholung"
|
989 |
|
990 |
# @ acf
|
991 |
#: includes/admin/views/install-notice.php:9
|
992 |
+
#: pro/fields/class-acf-field-flexible-content.php:25
|
993 |
msgid "Flexible Content"
|
994 |
msgstr "Flexible Inhalte"
|
995 |
|
996 |
# @ acf
|
997 |
#: includes/admin/views/install-notice.php:10
|
998 |
+
#: pro/fields/class-acf-field-gallery.php:25
|
999 |
msgid "Gallery"
|
1000 |
msgstr "Galerie"
|
1001 |
|
1002 |
# @ acf
|
1003 |
#: includes/admin/views/install-notice.php:11
|
1004 |
+
#: pro/locations/class-acf-location-options-page.php:26
|
1005 |
msgid "Options Page"
|
1006 |
msgstr "Options-Seite"
|
1007 |
|
1008 |
# @ acf
|
1009 |
#: includes/admin/views/install-notice.php:26
|
1010 |
msgid "Database Upgrade Required"
|
1011 |
+
msgstr "Es ist ein Upgrade der Datenbank erforderlich"
|
1012 |
|
1013 |
# @ acf
|
1014 |
#: includes/admin/views/install-notice.php:28
|
1022 |
"Before you start using the new awesome features, please update your database "
|
1023 |
"to the newest version."
|
1024 |
msgstr ""
|
1025 |
+
"Bevor Sie die großartigen neuen Funktionen nutzen können ist ein Upgrade der "
|
1026 |
+
"Datenbank notwendig."
|
1027 |
|
1028 |
#: includes/admin/views/install-notice.php:31
|
1029 |
#, php-format
|
1031 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
1032 |
"latest version."
|
1033 |
msgstr ""
|
1034 |
+
"Stellen Sie bitte ebenfalls sicher, dass alle Premium-Add-ons (%s) vorab auf "
|
1035 |
+
"die neueste Version aktualisiert wurden."
|
1036 |
|
1037 |
# @ acf
|
1038 |
#: includes/admin/views/install.php:7
|
1039 |
msgid "Reading upgrade tasks..."
|
1040 |
+
msgstr "Aufgaben für das Upgrade einlesen…"
|
1041 |
|
1042 |
#: includes/admin/views/install.php:11
|
1043 |
#, php-format
|
1044 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
1045 |
msgstr ""
|
1046 |
+
"Datenbank-Upgrade abgeschlossen. <a href=\"%s\">Schauen Sie nach was es "
|
1047 |
+
"Neues gibt</a>"
|
1048 |
|
1049 |
# @ acf
|
1050 |
#: includes/admin/views/settings-addons.php:17
|
1068 |
"Thank you for updating! ACF %s is bigger and better than ever before. We "
|
1069 |
"hope you like it."
|
1070 |
msgstr ""
|
1071 |
+
"Vielen Dank fürs Aktualisieren! ACF %s ist größer und besser als je zuvor. "
|
1072 |
+
"Wir hoffen es wird ihnen gefallen."
|
1073 |
|
1074 |
# @ acf
|
1075 |
#: includes/admin/views/settings-info.php:17
|
1130 |
# @ acf
|
1131 |
#: includes/admin/views/settings-info.php:39
|
1132 |
msgid "Goodbye Add-ons. Hello PRO"
|
1133 |
+
msgstr "Macht's gut Add-ons… Hallo PRO"
|
1134 |
|
1135 |
# @ acf
|
1136 |
#: includes/admin/views/settings-info.php:44
|
1204 |
"but if you do have one, please contact our support team via the <a href=\"%s"
|
1205 |
"\">help desk</a>"
|
1206 |
msgstr ""
|
1207 |
+
"Um möglichen Fragen zu begegnen haben wir haben einen <a href=„%s“>Upgrade-"
|
1208 |
+
"Leitfaden (Engl.)</a> erstellt. Sollten dennoch Fragen auftreten, "
|
1209 |
+
"kontaktieren Sie bitte unser <a href=„%s“> 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:25
|
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:35
|
1471 |
msgid "Select File"
|
1472 |
msgstr "Datei auswählen"
|
1473 |
|
1497 |
msgstr "Volle Größe"
|
1498 |
|
1499 |
# @ acf
|
1500 |
+
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1501 |
+
#: pro/fields/class-acf-field-clone.php:991
|
1502 |
msgid "(no title)"
|
1503 |
msgstr "(ohne Titel)"
|
1504 |
|
1505 |
+
#: includes/api/api-helpers.php:1868
|
1506 |
+
#: includes/fields/class-acf-field-page_link.php:269
|
1507 |
+
#: includes/fields/class-acf-field-post_object.php:268
|
1508 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
1509 |
msgid "Parent"
|
1510 |
msgstr "Übergeordnet"
|
1511 |
|
1512 |
# @ acf
|
1513 |
+
#: includes/api/api-helpers.php:3885
|
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:3890
|
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:3906
|
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:3911
|
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:3929
|
1538 |
#, php-format
|
1539 |
msgid "File size must be at least %s."
|
1540 |
msgstr "Die Dateigröße muss mindestens %s sein."
|
1541 |
|
1542 |
# @ acf
|
1543 |
+
#: includes/api/api-helpers.php:3934
|
1544 |
#, php-format
|
1545 |
msgid "File size must must not exceed %s."
|
1546 |
msgstr "Die Dateigröße darf %s nicht überschreiten."
|
1547 |
|
1548 |
# @ acf
|
1549 |
+
#: includes/api/api-helpers.php:3968
|
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:384
|
1581 |
+
#: includes/fields/class-acf-field-group.php:477
|
1582 |
+
#: includes/fields/class-acf-field-radio.php:285
|
1583 |
+
#: pro/fields/class-acf-field-clone.php:838
|
1584 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
1585 |
+
#: pro/fields/class-acf-field-flexible-content.php:601
|
1586 |
+
#: pro/fields/class-acf-field-repeater.php:450
|
1587 |
msgid "Layout"
|
1588 |
msgstr "Layout"
|
1589 |
|
1590 |
# @ acf
|
1591 |
+
#: includes/fields.php:326
|
1592 |
msgid "Field type does not exist"
|
1593 |
msgstr "Feld-Typ existiert nicht"
|
1594 |
|
1595 |
+
#: includes/fields.php:326
|
|
|
1596 |
msgid "Unknown"
|
1597 |
msgstr "Unbekannte Feld-Gruppe"
|
1598 |
|
1599 |
# @ acf
|
1600 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1601 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1602 |
msgid "Checkbox"
|
1603 |
msgstr "Checkbox"
|
1604 |
|
1605 |
# @ acf
|
1606 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1607 |
msgid "Toggle All"
|
1608 |
msgstr "Alle auswählen"
|
1609 |
|
1610 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1611 |
msgid "Add new choice"
|
1612 |
msgstr "Neue Auswahlmöglichkeit hinzufügen"
|
1613 |
|
1614 |
# @ acf
|
1615 |
+
#: includes/fields/class-acf-field-checkbox.php:344
|
1616 |
+
#: includes/fields/class-acf-field-radio.php:235
|
1617 |
+
#: includes/fields/class-acf-field-select.php:368
|
1618 |
msgid "Choices"
|
1619 |
msgstr "Auswahlmöglichkeiten"
|
1620 |
|
1621 |
# @ acf
|
1622 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1623 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1624 |
+
#: includes/fields/class-acf-field-select.php:369
|
1625 |
msgid "Enter each choice on a new line."
|
1626 |
msgstr "Jede Auswahlmöglichkeit in separater Zeile eingeben."
|
1627 |
|
1628 |
# @ acf
|
1629 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1630 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1631 |
+
#: includes/fields/class-acf-field-select.php:369
|
1632 |
msgid "For more control, you may specify both a value and label like this:"
|
1633 |
msgstr ""
|
1634 |
"Für eine bessere Darstellung, können Sie auch einen Wert und dazu dessen "
|
1635 |
"Beschriftung definieren:"
|
1636 |
|
1637 |
# @ acf
|
1638 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1639 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1640 |
+
#: includes/fields/class-acf-field-select.php:369
|
1641 |
msgid "red : Red"
|
1642 |
msgstr "rot : Rot"
|
1643 |
|
1644 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1645 |
msgid "Allow Custom"
|
1646 |
msgstr "Benutzerdefinierte Werte erlauben"
|
1647 |
|
1648 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
1649 |
msgid "Allow 'custom' values to be added"
|
1650 |
msgstr "Erlaubt das Hinzufügen benutzerdefinierter Werte"
|
1651 |
|
1652 |
+
#: includes/fields/class-acf-field-checkbox.php:364
|
1653 |
msgid "Save Custom"
|
1654 |
msgstr "Benutzerdefinierte Werte abspeichern"
|
1655 |
|
1656 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1657 |
msgid "Save 'custom' values to the field's choices"
|
1658 |
msgstr ""
|
1659 |
"Speichern sie benutzerdefinierte Werte zu den Auswahlmöglichkeiten des Feldes"
|
1660 |
|
1661 |
# @ acf
|
1662 |
+
#: includes/fields/class-acf-field-checkbox.php:375
|
1663 |
+
#: includes/fields/class-acf-field-color_picker.php:131
|
1664 |
+
#: includes/fields/class-acf-field-email.php:114
|
1665 |
+
#: includes/fields/class-acf-field-number.php:123
|
1666 |
+
#: includes/fields/class-acf-field-radio.php:276
|
1667 |
+
#: includes/fields/class-acf-field-range.php:141
|
1668 |
+
#: includes/fields/class-acf-field-select.php:377
|
1669 |
+
#: includes/fields/class-acf-field-text.php:115
|
1670 |
+
#: includes/fields/class-acf-field-textarea.php:98
|
1671 |
+
#: includes/fields/class-acf-field-true_false.php:135
|
1672 |
+
#: includes/fields/class-acf-field-url.php:96
|
1673 |
+
#: includes/fields/class-acf-field-wysiwyg.php:421
|
1674 |
msgid "Default Value"
|
1675 |
msgstr "Standardwert"
|
1676 |
|
1677 |
# @ acf
|
1678 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1679 |
+
#: includes/fields/class-acf-field-select.php:378
|
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:390
|
1685 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1686 |
msgid "Vertical"
|
1687 |
msgstr "Vertikal"
|
1688 |
|
1689 |
# @ acf
|
1690 |
+
#: includes/fields/class-acf-field-checkbox.php:391
|
1691 |
+
#: includes/fields/class-acf-field-radio.php:292
|
1692 |
msgid "Horizontal"
|
1693 |
msgstr "Horizontal"
|
1694 |
|
1695 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1696 |
msgid "Toggle"
|
1697 |
msgstr "Auswählen"
|
1698 |
|
1699 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
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:408
|
1706 |
+
#: includes/fields/class-acf-field-file.php:200
|
1707 |
+
#: includes/fields/class-acf-field-image.php:188
|
1708 |
+
#: includes/fields/class-acf-field-link.php:166
|
1709 |
+
#: includes/fields/class-acf-field-radio.php:299
|
1710 |
+
#: includes/fields/class-acf-field-taxonomy.php:833
|
1711 |
msgid "Return Value"
|
1712 |
msgstr "Rückgabewert"
|
1713 |
|
1714 |
# @ acf
|
1715 |
+
#: includes/fields/class-acf-field-checkbox.php:409
|
1716 |
+
#: includes/fields/class-acf-field-file.php:201
|
1717 |
+
#: includes/fields/class-acf-field-image.php:189
|
1718 |
+
#: includes/fields/class-acf-field-link.php:167
|
1719 |
+
#: includes/fields/class-acf-field-radio.php:300
|
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:414
|
1724 |
+
#: includes/fields/class-acf-field-radio.php:305
|
1725 |
+
#: includes/fields/class-acf-field-select.php:431
|
1726 |
msgid "Value"
|
1727 |
msgstr "Wert"
|
1728 |
|
1729 |
+
#: includes/fields/class-acf-field-checkbox.php:416
|
1730 |
+
#: includes/fields/class-acf-field-radio.php:307
|
1731 |
+
#: includes/fields/class-acf-field-select.php:433
|
1732 |
msgid "Both (Array)"
|
1733 |
msgstr "Beide (Array)"
|
1734 |
|
1735 |
# @ acf
|
1736 |
+
#: includes/fields/class-acf-field-color_picker.php:25
|
1737 |
msgid "Color Picker"
|
1738 |
msgstr "Farbe"
|
1739 |
|
1740 |
# @ acf
|
1741 |
+
#: includes/fields/class-acf-field-color_picker.php:68
|
1742 |
msgid "Clear"
|
1743 |
msgstr "Leeren"
|
1744 |
|
1745 |
# @ acf
|
1746 |
+
#: includes/fields/class-acf-field-color_picker.php:69
|
1747 |
msgid "Default"
|
1748 |
msgstr "Standard"
|
1749 |
|
1750 |
# @ acf
|
1751 |
+
#: includes/fields/class-acf-field-color_picker.php:70
|
1752 |
msgid "Select Color"
|
1753 |
msgstr "Farbe auswählen"
|
1754 |
|
1755 |
+
#: includes/fields/class-acf-field-color_picker.php:71
|
1756 |
msgid "Current Color"
|
1757 |
msgstr "Aktuelle Farbe"
|
1758 |
|
1759 |
# @ acf
|
1760 |
+
#: includes/fields/class-acf-field-date_picker.php:25
|
1761 |
msgid "Date Picker"
|
1762 |
msgstr "Datum"
|
1763 |
|
1764 |
+
#: includes/fields/class-acf-field-date_picker.php:33
|
1765 |
msgctxt "Date Picker JS closeText"
|
1766 |
msgid "Done"
|
1767 |
msgstr "Fertig"
|
1768 |
|
1769 |
+
#: includes/fields/class-acf-field-date_picker.php:34
|
1770 |
msgctxt "Date Picker JS currentText"
|
1771 |
msgid "Today"
|
1772 |
msgstr "Heute"
|
1773 |
|
1774 |
+
#: includes/fields/class-acf-field-date_picker.php:35
|
1775 |
msgctxt "Date Picker JS nextText"
|
1776 |
msgid "Next"
|
1777 |
msgstr "Nächstes"
|
1778 |
|
1779 |
+
#: includes/fields/class-acf-field-date_picker.php:36
|
1780 |
msgctxt "Date Picker JS prevText"
|
1781 |
msgid "Prev"
|
1782 |
msgstr "Vorheriges"
|
1783 |
|
1784 |
+
#: includes/fields/class-acf-field-date_picker.php:37
|
1785 |
msgctxt "Date Picker JS weekHeader"
|
1786 |
msgid "Wk"
|
1787 |
msgstr "Wo."
|
1788 |
|
1789 |
# @ acf
|
1790 |
+
#: includes/fields/class-acf-field-date_picker.php:207
|
1791 |
+
#: includes/fields/class-acf-field-date_time_picker.php:181
|
1792 |
+
#: includes/fields/class-acf-field-time_picker.php:109
|
1793 |
msgid "Display Format"
|
1794 |
msgstr "Darstellungs-Format"
|
1795 |
|
1796 |
# @ acf
|
1797 |
+
#: includes/fields/class-acf-field-date_picker.php:208
|
1798 |
+
#: includes/fields/class-acf-field-date_time_picker.php:182
|
1799 |
+
#: includes/fields/class-acf-field-time_picker.php:110
|
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:216
|
1804 |
+
#: includes/fields/class-acf-field-date_picker.php:247
|
1805 |
+
#: includes/fields/class-acf-field-date_time_picker.php:191
|
1806 |
+
#: includes/fields/class-acf-field-date_time_picker.php:208
|
1807 |
+
#: includes/fields/class-acf-field-time_picker.php:117
|
1808 |
+
#: includes/fields/class-acf-field-time_picker.php:132
|
|
|
1809 |
msgid "Custom:"
|
1810 |
+
msgstr "Feld-Gruppe erstellen:"
|
1811 |
|
1812 |
+
#: includes/fields/class-acf-field-date_picker.php:226
|
1813 |
msgid "Save Format"
|
1814 |
msgstr "Format abspeichern"
|
1815 |
|
1816 |
+
#: includes/fields/class-acf-field-date_picker.php:227
|
1817 |
msgid "The format used when saving a value"
|
1818 |
msgstr "Das Format das für das Speichern eines Wertes verwendet wird"
|
1819 |
|
1820 |
# @ acf
|
1821 |
+
#: includes/fields/class-acf-field-date_picker.php:237
|
1822 |
+
#: includes/fields/class-acf-field-date_time_picker.php:198
|
1823 |
+
#: includes/fields/class-acf-field-post_object.php:432
|
1824 |
+
#: includes/fields/class-acf-field-relationship.php:697
|
1825 |
+
#: includes/fields/class-acf-field-select.php:426
|
1826 |
+
#: includes/fields/class-acf-field-time_picker.php:124
|
1827 |
msgid "Return Format"
|
1828 |
msgstr "Rückgabewert"
|
1829 |
|
1830 |
# @ acf
|
1831 |
+
#: includes/fields/class-acf-field-date_picker.php:238
|
1832 |
+
#: includes/fields/class-acf-field-date_time_picker.php:199
|
1833 |
+
#: includes/fields/class-acf-field-time_picker.php:125
|
1834 |
msgid "The format returned via template functions"
|
1835 |
msgstr "Das Datums-Format für die Ausgabe in den Template-Funktionen"
|
1836 |
|
1837 |
# @ acf
|
1838 |
+
#: includes/fields/class-acf-field-date_picker.php:256
|
1839 |
+
#: includes/fields/class-acf-field-date_time_picker.php:215
|
1840 |
msgid "Week Starts On"
|
1841 |
msgstr "Die Woche beginnt am"
|
1842 |
|
1843 |
+
#: includes/fields/class-acf-field-date_time_picker.php:25
|
1844 |
msgid "Date Time Picker"
|
1845 |
msgstr "Datum und Uhrzeit auswählen"
|
1846 |
|
1847 |
+
#: includes/fields/class-acf-field-date_time_picker.php:33
|
1848 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1849 |
msgid "Choose Time"
|
1850 |
msgstr "Zeit auswählen"
|
1851 |
|
1852 |
+
#: includes/fields/class-acf-field-date_time_picker.php:34
|
1853 |
msgctxt "Date Time Picker JS timeText"
|
1854 |
msgid "Time"
|
1855 |
msgstr "Zeit"
|
1856 |
|
1857 |
+
#: includes/fields/class-acf-field-date_time_picker.php:35
|
1858 |
msgctxt "Date Time Picker JS hourText"
|
1859 |
msgid "Hour"
|
1860 |
msgstr "Stunde"
|
1861 |
|
1862 |
+
#: includes/fields/class-acf-field-date_time_picker.php:36
|
1863 |
msgctxt "Date Time Picker JS minuteText"
|
1864 |
msgid "Minute"
|
1865 |
msgstr "Minute"
|
1866 |
|
1867 |
+
#: includes/fields/class-acf-field-date_time_picker.php:37
|
1868 |
msgctxt "Date Time Picker JS secondText"
|
1869 |
msgid "Second"
|
1870 |
msgstr "Sekunde"
|
1871 |
|
1872 |
+
#: includes/fields/class-acf-field-date_time_picker.php:38
|
1873 |
msgctxt "Date Time Picker JS millisecText"
|
1874 |
msgid "Millisecond"
|
1875 |
msgstr "Millisekunde"
|
1876 |
|
1877 |
+
#: includes/fields/class-acf-field-date_time_picker.php:39
|
1878 |
msgctxt "Date Time Picker JS microsecText"
|
1879 |
msgid "Microsecond"
|
1880 |
msgstr "Mikrosekunde"
|
1881 |
|
1882 |
+
#: includes/fields/class-acf-field-date_time_picker.php:40
|
1883 |
msgctxt "Date Time Picker JS timezoneText"
|
1884 |
msgid "Time Zone"
|
1885 |
msgstr "Zeitzone"
|
1886 |
|
1887 |
+
#: includes/fields/class-acf-field-date_time_picker.php:41
|
1888 |
msgctxt "Date Time Picker JS currentText"
|
1889 |
msgid "Now"
|
1890 |
msgstr "Jetzt"
|
1891 |
|
1892 |
+
#: includes/fields/class-acf-field-date_time_picker.php:42
|
1893 |
msgctxt "Date Time Picker JS closeText"
|
1894 |
msgid "Done"
|
1895 |
msgstr "Fertig"
|
1896 |
|
1897 |
+
#: includes/fields/class-acf-field-date_time_picker.php:43
|
1898 |
msgctxt "Date Time Picker JS selectText"
|
1899 |
msgid "Select"
|
1900 |
msgstr "Auswählen"
|
1901 |
|
1902 |
+
#: includes/fields/class-acf-field-date_time_picker.php:45
|
1903 |
msgctxt "Date Time Picker JS amText"
|
1904 |
msgid "AM"
|
1905 |
msgstr "vorm."
|
1906 |
|
1907 |
+
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1908 |
msgctxt "Date Time Picker JS amTextShort"
|
1909 |
msgid "A"
|
1910 |
msgstr "vorm."
|
1911 |
|
1912 |
+
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1913 |
msgctxt "Date Time Picker JS pmText"
|
1914 |
msgid "PM"
|
1915 |
msgstr "nachm."
|
1916 |
|
1917 |
+
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1918 |
msgctxt "Date Time Picker JS pmTextShort"
|
1919 |
msgid "P"
|
1920 |
msgstr "nachm."
|
1921 |
|
1922 |
# @ acf
|
1923 |
+
#: includes/fields/class-acf-field-email.php:25
|
1924 |
msgid "Email"
|
1925 |
msgstr "E-Mail"
|
1926 |
|
1927 |
# @ acf
|
1928 |
+
#: includes/fields/class-acf-field-email.php:115
|
1929 |
+
#: includes/fields/class-acf-field-number.php:124
|
1930 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1931 |
+
#: includes/fields/class-acf-field-range.php:142
|
1932 |
+
#: includes/fields/class-acf-field-text.php:116
|
1933 |
+
#: includes/fields/class-acf-field-textarea.php:99
|
1934 |
+
#: includes/fields/class-acf-field-url.php:97
|
1935 |
+
#: includes/fields/class-acf-field-wysiwyg.php:422
|
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:123
|
1941 |
+
#: includes/fields/class-acf-field-number.php:132
|
1942 |
+
#: includes/fields/class-acf-field-password.php:71
|
1943 |
+
#: includes/fields/class-acf-field-text.php:124
|
1944 |
+
#: includes/fields/class-acf-field-textarea.php:107
|
1945 |
+
#: includes/fields/class-acf-field-url.php:105
|
1946 |
msgid "Placeholder Text"
|
1947 |
msgstr "Platzhalter-Text"
|
1948 |
|
1949 |
# @ acf
|
1950 |
+
#: includes/fields/class-acf-field-email.php:124
|
1951 |
+
#: includes/fields/class-acf-field-number.php:133
|
1952 |
+
#: includes/fields/class-acf-field-password.php:72
|
1953 |
+
#: includes/fields/class-acf-field-text.php:125
|
1954 |
+
#: includes/fields/class-acf-field-textarea.php:108
|
1955 |
+
#: includes/fields/class-acf-field-url.php:106
|
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:132
|
1961 |
+
#: includes/fields/class-acf-field-number.php:141
|
1962 |
+
#: includes/fields/class-acf-field-password.php:80
|
1963 |
+
#: includes/fields/class-acf-field-range.php:180
|
1964 |
+
#: includes/fields/class-acf-field-text.php:133
|
1965 |
msgid "Prepend"
|
1966 |
msgstr "Voranstellen"
|
1967 |
|
1968 |
# @ acf
|
1969 |
+
#: includes/fields/class-acf-field-email.php:133
|
1970 |
+
#: includes/fields/class-acf-field-number.php:142
|
1971 |
+
#: includes/fields/class-acf-field-password.php:81
|
1972 |
+
#: includes/fields/class-acf-field-range.php:181
|
1973 |
+
#: includes/fields/class-acf-field-text.php:134
|
1974 |
msgid "Appears before the input"
|
1975 |
msgstr "Wird dem Eingabefeld vorangestellt"
|
1976 |
|
1977 |
# @ acf
|
1978 |
+
#: includes/fields/class-acf-field-email.php:141
|
1979 |
+
#: includes/fields/class-acf-field-number.php:150
|
1980 |
+
#: includes/fields/class-acf-field-password.php:89
|
1981 |
+
#: includes/fields/class-acf-field-range.php:189
|
1982 |
+
#: includes/fields/class-acf-field-text.php:142
|
1983 |
msgid "Append"
|
1984 |
msgstr "Anhängen"
|
1985 |
|
1986 |
# @ acf
|
1987 |
+
#: includes/fields/class-acf-field-email.php:142
|
1988 |
+
#: includes/fields/class-acf-field-number.php:151
|
1989 |
+
#: includes/fields/class-acf-field-password.php:90
|
1990 |
+
#: includes/fields/class-acf-field-range.php:190
|
1991 |
+
#: includes/fields/class-acf-field-text.php:143
|
1992 |
msgid "Appears after the input"
|
1993 |
msgstr "Wird dem Eingabefeld hinten angestellt"
|
1994 |
|
1995 |
# @ acf
|
1996 |
+
#: includes/fields/class-acf-field-file.php:25
|
1997 |
msgid "File"
|
1998 |
msgstr "Datei"
|
1999 |
|
2000 |
# @ acf
|
2001 |
+
#: includes/fields/class-acf-field-file.php:36
|
2002 |
msgid "Edit File"
|
2003 |
msgstr "Datei bearbeiten"
|
2004 |
|
2005 |
# @ acf
|
2006 |
+
#: includes/fields/class-acf-field-file.php:37
|
2007 |
msgid "Update File"
|
2008 |
msgstr "Datei aktualisieren"
|
2009 |
|
2010 |
# @ acf
|
2011 |
+
#: includes/fields/class-acf-field-file.php:38
|
2012 |
+
#: includes/fields/class-acf-field-image.php:43 includes/media.php:57
|
2013 |
+
#: pro/fields/class-acf-field-gallery.php:44
|
2014 |
msgid "Uploaded to this post"
|
2015 |
msgstr "Zu diesem Beitrag hochgeladen"
|
2016 |
|
2017 |
+
#: includes/fields/class-acf-field-file.php:126
|
2018 |
msgid "File name"
|
2019 |
msgstr "Dateiname"
|
2020 |
|
2021 |
# @ acf
|
2022 |
+
#: includes/fields/class-acf-field-file.php:130
|
2023 |
+
#: includes/fields/class-acf-field-file.php:233
|
2024 |
+
#: includes/fields/class-acf-field-file.php:244
|
2025 |
+
#: includes/fields/class-acf-field-image.php:248
|
2026 |
+
#: includes/fields/class-acf-field-image.php:277
|
2027 |
+
#: pro/fields/class-acf-field-gallery.php:690
|
2028 |
+
#: pro/fields/class-acf-field-gallery.php:719
|
2029 |
msgid "File size"
|
2030 |
msgstr "Dateigröße"
|
2031 |
|
2032 |
# @ acf
|
2033 |
+
#: includes/fields/class-acf-field-file.php:139
|
2034 |
+
#: includes/fields/class-acf-field-image.php:124
|
2035 |
+
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2036 |
+
#: pro/fields/class-acf-field-gallery.php:343
|
2037 |
+
#: pro/fields/class-acf-field-gallery.php:531
|
2038 |
+
msgid "Remove"
|
2039 |
+
msgstr "Entfernen"
|
2040 |
+
|
2041 |
+
# @ acf
|
2042 |
+
#: includes/fields/class-acf-field-file.php:155
|
2043 |
msgid "Add File"
|
2044 |
msgstr "Datei hinzufügen"
|
2045 |
|
2046 |
# @ acf
|
2047 |
+
#: includes/fields/class-acf-field-file.php:206
|
2048 |
msgid "File Array"
|
2049 |
msgstr "Datei-Array"
|
2050 |
|
2051 |
# @ acf
|
2052 |
+
#: includes/fields/class-acf-field-file.php:207
|
2053 |
msgid "File URL"
|
2054 |
msgstr "Datei-URL"
|
2055 |
|
2056 |
# @ acf
|
2057 |
+
#: includes/fields/class-acf-field-file.php:208
|
2058 |
msgid "File ID"
|
2059 |
msgstr "Datei-ID"
|
2060 |
|
2061 |
# @ acf
|
2062 |
+
#: includes/fields/class-acf-field-file.php:215
|
2063 |
+
#: includes/fields/class-acf-field-image.php:213
|
2064 |
+
#: pro/fields/class-acf-field-gallery.php:655
|
2065 |
msgid "Library"
|
2066 |
msgstr "Medienübersicht"
|
2067 |
|
2068 |
# @ acf
|
2069 |
+
#: includes/fields/class-acf-field-file.php:216
|
2070 |
+
#: includes/fields/class-acf-field-image.php:214
|
2071 |
+
#: pro/fields/class-acf-field-gallery.php:656
|
2072 |
msgid "Limit the media library choice"
|
2073 |
msgstr "Beschränkt die Auswahl in der Medienübersicht"
|
2074 |
|
2075 |
# @ acf
|
2076 |
+
#: includes/fields/class-acf-field-file.php:221
|
2077 |
+
#: includes/fields/class-acf-field-image.php:219
|
2078 |
+
#: includes/locations/class-acf-location-attachment.php:101
|
2079 |
+
#: includes/locations/class-acf-location-comment.php:79
|
2080 |
+
#: includes/locations/class-acf-location-nav-menu.php:102
|
2081 |
+
#: includes/locations/class-acf-location-taxonomy.php:79
|
2082 |
+
#: includes/locations/class-acf-location-user-form.php:87
|
2083 |
+
#: includes/locations/class-acf-location-user-role.php:111
|
2084 |
+
#: includes/locations/class-acf-location-widget.php:83
|
2085 |
+
#: pro/fields/class-acf-field-gallery.php:661
|
2086 |
msgid "All"
|
2087 |
msgstr "Alle"
|
2088 |
|
2089 |
# @ acf
|
2090 |
+
#: includes/fields/class-acf-field-file.php:222
|
2091 |
+
#: includes/fields/class-acf-field-image.php:220
|
2092 |
+
#: pro/fields/class-acf-field-gallery.php:662
|
2093 |
msgid "Uploaded to post"
|
2094 |
msgstr "Für den Beitrag hochgeladen"
|
2095 |
|
2096 |
# @ acf
|
2097 |
+
#: includes/fields/class-acf-field-file.php:229
|
2098 |
+
#: includes/fields/class-acf-field-image.php:227
|
2099 |
+
#: pro/fields/class-acf-field-gallery.php:669
|
2100 |
msgid "Minimum"
|
2101 |
msgstr "Minimum"
|
2102 |
|
2103 |
# @ acf
|
2104 |
+
#: includes/fields/class-acf-field-file.php:230
|
2105 |
+
#: includes/fields/class-acf-field-file.php:241
|
2106 |
msgid "Restrict which files can be uploaded"
|
2107 |
msgstr ""
|
2108 |
"Erlaubt nur das Hochladen von Dateien die die angegebenen Eigenschaften "
|
2109 |
"erfüllen"
|
2110 |
|
2111 |
# @ acf
|
2112 |
+
#: includes/fields/class-acf-field-file.php:240
|
2113 |
+
#: includes/fields/class-acf-field-image.php:256
|
2114 |
+
#: pro/fields/class-acf-field-gallery.php:698
|
2115 |
msgid "Maximum"
|
2116 |
msgstr "Maximum"
|
2117 |
|
2118 |
# @ acf
|
2119 |
+
#: includes/fields/class-acf-field-file.php:251
|
2120 |
+
#: includes/fields/class-acf-field-image.php:285
|
2121 |
+
#: pro/fields/class-acf-field-gallery.php:727
|
2122 |
msgid "Allowed file types"
|
2123 |
msgstr "Erlaubte Datei-Formate"
|
2124 |
|
2125 |
# @ acf
|
2126 |
+
#: includes/fields/class-acf-field-file.php:252
|
2127 |
+
#: includes/fields/class-acf-field-image.php:286
|
2128 |
+
#: pro/fields/class-acf-field-gallery.php:728
|
2129 |
msgid "Comma separated list. Leave blank for all types"
|
2130 |
msgstr ""
|
2131 |
"Komma separierte Liste; ein leeres Feld bedeutet alle Dateiformate sind "
|
2132 |
"erlaubt"
|
2133 |
|
2134 |
# @ acf
|
2135 |
+
#: includes/fields/class-acf-field-google-map.php:25
|
2136 |
msgid "Google Map"
|
2137 |
msgstr "Google Maps"
|
2138 |
|
2139 |
# @ acf
|
2140 |
+
#: includes/fields/class-acf-field-google-map.php:40
|
2141 |
msgid "Locating"
|
2142 |
msgstr "Lokalisiere"
|
2143 |
|
2144 |
# @ acf
|
2145 |
+
#: includes/fields/class-acf-field-google-map.php:41
|
2146 |
msgid "Sorry, this browser does not support geolocation"
|
2147 |
msgstr "Dieser Browser unterstützt keine Geo-Lokation"
|
2148 |
|
2149 |
# @ acf
|
2150 |
+
#: includes/fields/class-acf-field-google-map.php:113
|
2151 |
msgid "Clear location"
|
2152 |
msgstr "Position löschen"
|
2153 |
|
2154 |
# @ acf
|
2155 |
+
#: includes/fields/class-acf-field-google-map.php:114
|
2156 |
msgid "Find current location"
|
2157 |
msgstr "Aktuelle Position finden"
|
2158 |
|
2159 |
# @ acf
|
2160 |
+
#: includes/fields/class-acf-field-google-map.php:117
|
2161 |
msgid "Search for address..."
|
2162 |
msgstr "Nach der Adresse suchen..."
|
2163 |
|
2164 |
# @ acf
|
2165 |
+
#: includes/fields/class-acf-field-google-map.php:147
|
2166 |
+
#: includes/fields/class-acf-field-google-map.php:158
|
2167 |
msgid "Center"
|
2168 |
msgstr "Kartenmittelpunkt"
|
2169 |
|
2170 |
# @ acf
|
2171 |
+
#: includes/fields/class-acf-field-google-map.php:148
|
2172 |
+
#: includes/fields/class-acf-field-google-map.php:159
|
2173 |
msgid "Center the initial map"
|
2174 |
msgstr "Der Mittelpunkt der Ausgangskarte"
|
2175 |
|
2176 |
# @ acf
|
2177 |
+
#: includes/fields/class-acf-field-google-map.php:170
|
2178 |
msgid "Zoom"
|
2179 |
msgstr "Zoom"
|
2180 |
|
2181 |
# @ acf
|
2182 |
+
#: includes/fields/class-acf-field-google-map.php:171
|
2183 |
msgid "Set the initial zoom level"
|
2184 |
msgstr "Legt die Zoomstufe der Karte fest"
|
2185 |
|
2186 |
# @ acf
|
2187 |
+
#: includes/fields/class-acf-field-google-map.php:180
|
2188 |
+
#: includes/fields/class-acf-field-image.php:239
|
2189 |
+
#: includes/fields/class-acf-field-image.php:268
|
2190 |
+
#: includes/fields/class-acf-field-oembed.php:281
|
2191 |
+
#: pro/fields/class-acf-field-gallery.php:681
|
2192 |
+
#: pro/fields/class-acf-field-gallery.php:710
|
2193 |
msgid "Height"
|
2194 |
msgstr "Höhe"
|
2195 |
|
2196 |
# @ acf
|
2197 |
+
#: includes/fields/class-acf-field-google-map.php:181
|
2198 |
msgid "Customise the map height"
|
2199 |
msgstr "Legt die Höhe der Karte fest"
|
2200 |
|
2201 |
# @ acf
|
2202 |
+
#: includes/fields/class-acf-field-group.php:25
|
|
|
2203 |
msgid "Group"
|
2204 |
msgstr ""
|
2205 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
2206 |
"Feldes an)"
|
2207 |
|
2208 |
# @ acf
|
2209 |
+
#: includes/fields/class-acf-field-group.php:461
|
2210 |
+
#: pro/fields/class-acf-field-repeater.php:389
|
2211 |
msgid "Sub Fields"
|
2212 |
msgstr "Wiederholungsfelder"
|
2213 |
|
2214 |
+
#: includes/fields/class-acf-field-group.php:478
|
2215 |
+
#: pro/fields/class-acf-field-clone.php:839
|
2216 |
msgid "Specify the style used to render the selected fields"
|
2217 |
msgstr ""
|
2218 |
"Geben Sie den Stil an mit dem die ausgewählten Felder angezeigt werden sollen"
|
2219 |
|
2220 |
# @ acf
|
2221 |
+
#: includes/fields/class-acf-field-group.php:483
|
2222 |
+
#: pro/fields/class-acf-field-clone.php:844
|
2223 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
2224 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
2225 |
msgid "Block"
|
2226 |
msgstr "Block"
|
2227 |
|
2228 |
# @ acf
|
2229 |
+
#: includes/fields/class-acf-field-group.php:484
|
2230 |
+
#: pro/fields/class-acf-field-clone.php:845
|
2231 |
+
#: pro/fields/class-acf-field-flexible-content.php:611
|
2232 |
+
#: pro/fields/class-acf-field-repeater.php:457
|
2233 |
msgid "Table"
|
2234 |
msgstr "Tabelle"
|
2235 |
|
2236 |
# @ acf
|
2237 |
+
#: includes/fields/class-acf-field-group.php:485
|
2238 |
+
#: pro/fields/class-acf-field-clone.php:846
|
2239 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
2240 |
+
#: pro/fields/class-acf-field-repeater.php:459
|
2241 |
msgid "Row"
|
2242 |
msgstr "Reihe"
|
2243 |
|
2244 |
# @ acf
|
2245 |
+
#: includes/fields/class-acf-field-image.php:25
|
2246 |
msgid "Image"
|
2247 |
msgstr "Bild"
|
2248 |
|
2249 |
# @ acf
|
2250 |
+
#: includes/fields/class-acf-field-image.php:40
|
2251 |
msgid "Select Image"
|
2252 |
msgstr "Bild auswählen"
|
2253 |
|
2254 |
# @ acf
|
2255 |
+
#: includes/fields/class-acf-field-image.php:41
|
2256 |
+
#: pro/fields/class-acf-field-gallery.php:42
|
2257 |
msgid "Edit Image"
|
2258 |
msgstr "Bild bearbeiten"
|
2259 |
|
2260 |
# @ acf
|
2261 |
+
#: includes/fields/class-acf-field-image.php:42
|
2262 |
+
#: pro/fields/class-acf-field-gallery.php:43
|
2263 |
msgid "Update Image"
|
2264 |
msgstr "Bild aktualisieren"
|
2265 |
|
2266 |
# @ acf
|
2267 |
+
#: includes/fields/class-acf-field-image.php:44
|
2268 |
msgid "All images"
|
2269 |
msgstr "Alle Bilder"
|
2270 |
|
2271 |
# @ acf
|
2272 |
+
#: includes/fields/class-acf-field-image.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2273 |
msgid "No image selected"
|
2274 |
msgstr "Kein Bild ausgewählt"
|
2275 |
|
2276 |
# @ acf
|
2277 |
+
#: includes/fields/class-acf-field-image.php:140
|
2278 |
msgid "Add Image"
|
2279 |
msgstr "Bild hinzufügen"
|
2280 |
|
2281 |
# @ acf
|
2282 |
+
#: includes/fields/class-acf-field-image.php:194
|
2283 |
msgid "Image Array"
|
2284 |
msgstr "Bild-Array"
|
2285 |
|
2286 |
# @ acf
|
2287 |
+
#: includes/fields/class-acf-field-image.php:195
|
2288 |
msgid "Image URL"
|
2289 |
msgstr "Bild-URL"
|
2290 |
|
2291 |
# @ acf
|
2292 |
+
#: includes/fields/class-acf-field-image.php:196
|
2293 |
msgid "Image ID"
|
2294 |
msgstr "Bild-ID"
|
2295 |
|
2296 |
# @ acf
|
2297 |
+
#: includes/fields/class-acf-field-image.php:203
|
2298 |
msgid "Preview Size"
|
2299 |
msgstr "Maße der Vorschau"
|
2300 |
|
2301 |
# @ acf
|
2302 |
+
#: includes/fields/class-acf-field-image.php:204
|
2303 |
msgid "Shown when entering data"
|
2304 |
msgstr "Legt fest welche Maße die Vorschau in der Bearbeitungs-Ansicht hat"
|
2305 |
|
2306 |
# @ acf
|
2307 |
+
#: includes/fields/class-acf-field-image.php:228
|
2308 |
+
#: includes/fields/class-acf-field-image.php:257
|
2309 |
+
#: pro/fields/class-acf-field-gallery.php:670
|
2310 |
+
#: pro/fields/class-acf-field-gallery.php:699
|
2311 |
msgid "Restrict which images can be uploaded"
|
2312 |
msgstr ""
|
2313 |
"Erlaubt nur das Hochladen von Bildern die die angegebenen Eigenschaften "
|
2314 |
"erfüllen"
|
2315 |
|
2316 |
# @ acf
|
2317 |
+
#: includes/fields/class-acf-field-image.php:231
|
2318 |
+
#: includes/fields/class-acf-field-image.php:260
|
2319 |
+
#: includes/fields/class-acf-field-oembed.php:270
|
2320 |
+
#: pro/fields/class-acf-field-gallery.php:673
|
2321 |
+
#: pro/fields/class-acf-field-gallery.php:702
|
2322 |
msgid "Width"
|
2323 |
msgstr "Breite"
|
2324 |
|
2325 |
# @ acf
|
2326 |
+
#: includes/fields/class-acf-field-link.php:25
|
|
|
2327 |
msgid "Link"
|
2328 |
msgstr "Seiten-Link"
|
2329 |
|
2330 |
# @ acf
|
2331 |
+
#: includes/fields/class-acf-field-link.php:133
|
|
|
2332 |
msgid "Select Link"
|
2333 |
msgstr "Datei auswählen"
|
2334 |
|
2335 |
+
#: includes/fields/class-acf-field-link.php:138
|
2336 |
msgid "Opens in a new window/tab"
|
2337 |
+
msgstr "In einem neuen Fenster/Tab öffnen"
|
2338 |
|
2339 |
# @ acf
|
2340 |
+
#: includes/fields/class-acf-field-link.php:172
|
|
|
2341 |
msgid "Link Array"
|
2342 |
msgstr "Datei-Array"
|
2343 |
|
2344 |
# @ acf
|
2345 |
+
#: includes/fields/class-acf-field-link.php:173
|
|
|
2346 |
msgid "Link URL"
|
2347 |
msgstr "Datei-URL"
|
2348 |
|
2349 |
# @ acf
|
2350 |
+
#: includes/fields/class-acf-field-message.php:25
|
2351 |
+
#: includes/fields/class-acf-field-message.php:101
|
2352 |
+
#: includes/fields/class-acf-field-true_false.php:126
|
2353 |
msgid "Message"
|
2354 |
msgstr "Nachricht"
|
2355 |
|
2356 |
# @ acf
|
2357 |
+
#: includes/fields/class-acf-field-message.php:110
|
2358 |
+
#: includes/fields/class-acf-field-textarea.php:135
|
2359 |
msgid "New Lines"
|
2360 |
msgstr "Neue Zeilen"
|
2361 |
|
2362 |
# @ acf
|
2363 |
+
#: includes/fields/class-acf-field-message.php:111
|
2364 |
+
#: includes/fields/class-acf-field-textarea.php:136
|
2365 |
msgid "Controls how new lines are rendered"
|
2366 |
msgstr "Legt fest wie Zeilenumbrüche gehandhabt werden"
|
2367 |
|
2368 |
# @ acf
|
2369 |
+
#: includes/fields/class-acf-field-message.php:115
|
2370 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
2371 |
msgid "Automatically add paragraphs"
|
2372 |
msgstr "Absätze automatisch hinzufügen"
|
2373 |
|
2374 |
# @ acf
|
2375 |
+
#: includes/fields/class-acf-field-message.php:116
|
2376 |
+
#: includes/fields/class-acf-field-textarea.php:141
|
2377 |
msgid "Automatically add <br>"
|
2378 |
msgstr "Zeilenumbrüche ( <br> ) automatisch hinzufügen"
|
2379 |
|
2380 |
# @ acf
|
2381 |
+
#: includes/fields/class-acf-field-message.php:117
|
2382 |
+
#: includes/fields/class-acf-field-textarea.php:142
|
2383 |
msgid "No Formatting"
|
2384 |
msgstr "Keine Formatierung"
|
2385 |
|
2386 |
# @ acf
|
2387 |
+
#: includes/fields/class-acf-field-message.php:124
|
2388 |
msgid "Escape HTML"
|
2389 |
msgstr "HTML enkodieren"
|
2390 |
|
2391 |
# @ acf
|
2392 |
+
#: includes/fields/class-acf-field-message.php:125
|
2393 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2394 |
msgstr ""
|
2395 |
"Bei aktiver Option wird HTML Code als solcher angezeigt und nicht "
|
2396 |
"interpretiert"
|
2397 |
|
2398 |
# @ acf
|
2399 |
+
#: includes/fields/class-acf-field-number.php:25
|
2400 |
msgid "Number"
|
2401 |
msgstr "Numerisch"
|
2402 |
|
2403 |
# @ acf
|
2404 |
+
#: includes/fields/class-acf-field-number.php:159
|
2405 |
+
#: includes/fields/class-acf-field-range.php:150
|
2406 |
msgid "Minimum Value"
|
2407 |
msgstr "Mindestwert"
|
2408 |
|
2409 |
# @ acf
|
2410 |
+
#: includes/fields/class-acf-field-number.php:168
|
2411 |
+
#: includes/fields/class-acf-field-range.php:160
|
2412 |
msgid "Maximum Value"
|
2413 |
msgstr "Maximalwert"
|
2414 |
|
2415 |
# @ acf
|
2416 |
+
#: includes/fields/class-acf-field-number.php:177
|
2417 |
+
#: includes/fields/class-acf-field-range.php:170
|
2418 |
msgid "Step Size"
|
2419 |
msgstr "Schrittweite"
|
2420 |
|
2421 |
# @ acf
|
2422 |
+
#: includes/fields/class-acf-field-number.php:215
|
2423 |
msgid "Value must be a number"
|
2424 |
msgstr "Wert muss eine Zahl sein"
|
2425 |
|
2426 |
# @ acf
|
2427 |
+
#: includes/fields/class-acf-field-number.php:233
|
2428 |
#, php-format
|
2429 |
msgid "Value must be equal to or higher than %d"
|
2430 |
msgstr "Wert muss größer oder gleich %d sein"
|
2431 |
|
2432 |
# @ acf
|
2433 |
+
#: includes/fields/class-acf-field-number.php:241
|
2434 |
#, php-format
|
2435 |
msgid "Value must be equal to or lower than %d"
|
2436 |
msgstr "Wert muss kleiner oder gleich %d sein"
|
2437 |
|
2438 |
# @ acf
|
2439 |
+
#: includes/fields/class-acf-field-oembed.php:25
|
2440 |
msgid "oEmbed"
|
2441 |
msgstr "oEmbed"
|
2442 |
|
2443 |
# @ acf
|
2444 |
+
#: includes/fields/class-acf-field-oembed.php:219
|
2445 |
msgid "Enter URL"
|
2446 |
msgstr "URL eingeben"
|
2447 |
|
2448 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2449 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2450 |
msgid "Error."
|
2451 |
msgstr "Fehler."
|
2452 |
|
2453 |
# @ acf
|
2454 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2455 |
msgid "No embed found for the given URL."
|
2456 |
msgstr "Keine Inhalte für die eingegebene URL gefunden."
|
2457 |
|
2458 |
# @ acf
|
2459 |
+
#: includes/fields/class-acf-field-oembed.php:267
|
2460 |
+
#: includes/fields/class-acf-field-oembed.php:278
|
2461 |
msgid "Embed Size"
|
2462 |
msgstr "Maße"
|
2463 |
|
2464 |
# @ acf
|
2465 |
+
#: includes/fields/class-acf-field-page_link.php:177
|
2466 |
msgid "Archives"
|
2467 |
msgstr "Archive"
|
2468 |
|
2469 |
# @ acf
|
2470 |
+
#: includes/fields/class-acf-field-page_link.php:485
|
2471 |
+
#: includes/fields/class-acf-field-post_object.php:384
|
2472 |
+
#: includes/fields/class-acf-field-relationship.php:623
|
2473 |
msgid "Filter by Post Type"
|
2474 |
msgstr "Nach Post Types filtern"
|
2475 |
|
2476 |
# @ acf
|
2477 |
+
#: includes/fields/class-acf-field-page_link.php:493
|
2478 |
+
#: includes/fields/class-acf-field-post_object.php:392
|
2479 |
+
#: includes/fields/class-acf-field-relationship.php:631
|
2480 |
msgid "All post types"
|
2481 |
msgstr "Alle verfügbaren Post Types"
|
2482 |
|
2483 |
# @ acf
|
2484 |
+
#: includes/fields/class-acf-field-page_link.php:499
|
2485 |
+
#: includes/fields/class-acf-field-post_object.php:398
|
2486 |
+
#: includes/fields/class-acf-field-relationship.php:637
|
2487 |
msgid "Filter by Taxonomy"
|
2488 |
msgstr "Nach Taxonomien filtern"
|
2489 |
|
2490 |
# @ acf
|
2491 |
+
#: includes/fields/class-acf-field-page_link.php:507
|
2492 |
+
#: includes/fields/class-acf-field-post_object.php:406
|
2493 |
+
#: includes/fields/class-acf-field-relationship.php:645
|
2494 |
msgid "All taxonomies"
|
2495 |
msgstr "Alle Taxonomien"
|
2496 |
|
2497 |
# @ acf
|
2498 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
2499 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
2500 |
+
#: includes/fields/class-acf-field-radio.php:244
|
2501 |
+
#: includes/fields/class-acf-field-select.php:386
|
2502 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
2503 |
+
#: includes/fields/class-acf-field-user.php:408
|
2504 |
msgid "Allow Null?"
|
2505 |
msgstr "NULL-Werte zulassen?"
|
2506 |
|
2507 |
+
#: includes/fields/class-acf-field-page_link.php:523
|
2508 |
msgid "Allow Archives URLs"
|
2509 |
msgstr "Archiv-URL's zulassen"
|
2510 |
|
2511 |
# @ acf
|
2512 |
+
#: includes/fields/class-acf-field-page_link.php:533
|
2513 |
+
#: includes/fields/class-acf-field-post_object.php:422
|
2514 |
+
#: includes/fields/class-acf-field-select.php:396
|
2515 |
+
#: includes/fields/class-acf-field-user.php:418
|
2516 |
msgid "Select multiple values?"
|
2517 |
msgstr "Mehrere Werte auswählbar?"
|
2518 |
|
2519 |
# @ acf
|
2520 |
+
#: includes/fields/class-acf-field-password.php:25
|
2521 |
msgid "Password"
|
2522 |
msgstr "Passwort"
|
2523 |
|
2524 |
# @ acf
|
2525 |
+
#: includes/fields/class-acf-field-post_object.php:25
|
2526 |
+
#: includes/fields/class-acf-field-post_object.php:437
|
2527 |
+
#: includes/fields/class-acf-field-relationship.php:702
|
2528 |
msgid "Post Object"
|
2529 |
msgstr "Beitrags-Objekt"
|
2530 |
|
2531 |
# @ acf
|
2532 |
+
#: includes/fields/class-acf-field-post_object.php:438
|
2533 |
+
#: includes/fields/class-acf-field-relationship.php:703
|
2534 |
msgid "Post ID"
|
2535 |
msgstr "Beitrags-ID"
|
2536 |
|
2537 |
# @ acf
|
2538 |
+
#: includes/fields/class-acf-field-radio.php:25
|
2539 |
msgid "Radio Button"
|
2540 |
msgstr "Radio-Button"
|
2541 |
|
2542 |
# @ acf
|
2543 |
+
#: includes/fields/class-acf-field-radio.php:254
|
2544 |
msgid "Other"
|
2545 |
msgstr "Sonstige"
|
2546 |
|
2547 |
# @ acf
|
2548 |
+
#: includes/fields/class-acf-field-radio.php:259
|
2549 |
msgid "Add 'other' choice to allow for custom values"
|
2550 |
msgstr ""
|
2551 |
"Fügt die Option 'Sonstige' hinzu welche erlaubt benutzerdefinierte Werte "
|
2552 |
"hinzuzufügen"
|
2553 |
|
2554 |
# @ acf
|
2555 |
+
#: includes/fields/class-acf-field-radio.php:265
|
2556 |
msgid "Save Other"
|
2557 |
msgstr "'Sonstige' speichern"
|
2558 |
|
2559 |
# @ acf
|
2560 |
+
#: includes/fields/class-acf-field-radio.php:270
|
2561 |
msgid "Save 'other' values to the field's choices"
|
2562 |
msgstr "Füge 'Sonstige'-Werte zu den Auswahl Optionen hinzu"
|
2563 |
|
2564 |
+
#: includes/fields/class-acf-field-range.php:25
|
2565 |
+
msgid "Range"
|
2566 |
+
msgstr "Numerischer Bereich"
|
2567 |
+
|
2568 |
# @ acf
|
2569 |
+
#: includes/fields/class-acf-field-relationship.php:25
|
2570 |
msgid "Relationship"
|
2571 |
msgstr "Beziehung"
|
2572 |
|
2573 |
# @ acf
|
2574 |
+
#: includes/fields/class-acf-field-relationship.php:37
|
2575 |
msgid "Minimum values reached ( {min} values )"
|
2576 |
msgstr "Minimum der Einträge mit ({min} Einträge) erreicht"
|
2577 |
|
2578 |
# @ acf
|
2579 |
+
#: includes/fields/class-acf-field-relationship.php:38
|
2580 |
msgid "Maximum values reached ( {max} values )"
|
2581 |
msgstr "Maximum der Einträge mit ({max} Einträge) erreicht"
|
2582 |
|
2583 |
# @ acf
|
2584 |
+
#: includes/fields/class-acf-field-relationship.php:39
|
2585 |
msgid "Loading"
|
2586 |
msgstr "Lade"
|
2587 |
|
2588 |
# @ acf
|
2589 |
+
#: includes/fields/class-acf-field-relationship.php:40
|
2590 |
msgid "No matches found"
|
2591 |
msgstr "Keine Übereinstimmung gefunden"
|
2592 |
|
2593 |
# @ acf
|
2594 |
+
#: includes/fields/class-acf-field-relationship.php:423
|
|
|
|
|
|
|
|
|
|
|
2595 |
msgid "Select post type"
|
2596 |
msgstr "Beitrag-Typ auswählen"
|
2597 |
|
2598 |
# @ acf
|
2599 |
+
#: includes/fields/class-acf-field-relationship.php:449
|
2600 |
msgid "Select taxonomy"
|
2601 |
msgstr "Taxonomie auswählen"
|
2602 |
|
2603 |
# @ acf
|
2604 |
+
#: includes/fields/class-acf-field-relationship.php:539
|
2605 |
+
msgid "Search..."
|
2606 |
+
msgstr "Suchen..."
|
2607 |
+
|
2608 |
+
# @ acf
|
2609 |
+
#: includes/fields/class-acf-field-relationship.php:651
|
2610 |
msgid "Filters"
|
2611 |
msgstr "Filter"
|
2612 |
|
2613 |
# @ acf
|
2614 |
+
#: includes/fields/class-acf-field-relationship.php:657
|
2615 |
#: includes/locations/class-acf-location-post-type.php:27
|
2616 |
msgid "Post Type"
|
2617 |
msgstr "Beitrags-Typ"
|
2618 |
|
2619 |
# @ acf
|
2620 |
+
#: includes/fields/class-acf-field-relationship.php:658
|
2621 |
+
#: includes/fields/class-acf-field-taxonomy.php:28
|
2622 |
+
#: includes/fields/class-acf-field-taxonomy.php:763
|
2623 |
msgid "Taxonomy"
|
2624 |
msgstr "Taxonomie"
|
2625 |
|
2626 |
# @ acf
|
2627 |
+
#: includes/fields/class-acf-field-relationship.php:665
|
2628 |
msgid "Elements"
|
2629 |
msgstr "Elemente"
|
2630 |
|
2631 |
# @ acf
|
2632 |
+
#: includes/fields/class-acf-field-relationship.php:666
|
2633 |
msgid "Selected elements will be displayed in each result"
|
2634 |
msgstr "Die ausgewählten Elemente werden in jedem Ergebnis mit angezeigt"
|
2635 |
|
2636 |
# @ acf
|
2637 |
+
#: includes/fields/class-acf-field-relationship.php:677
|
2638 |
msgid "Minimum posts"
|
2639 |
msgstr "Min. Anzahl der Beiträge"
|
2640 |
|
2641 |
# @ acf
|
2642 |
+
#: includes/fields/class-acf-field-relationship.php:686
|
2643 |
msgid "Maximum posts"
|
2644 |
msgstr "Max. Anzahl der Beiträge"
|
2645 |
|
2646 |
# @ acf
|
2647 |
+
#: includes/fields/class-acf-field-relationship.php:790
|
2648 |
+
#: pro/fields/class-acf-field-gallery.php:800
|
2649 |
#, php-format
|
2650 |
msgid "%s requires at least %s selection"
|
2651 |
msgid_plural "%s requires at least %s selections"
|
2652 |
msgstr[0] "%s benötigt mindestens %s Selektion"
|
2653 |
msgstr[1] "%s benötigt mindestens %s Selektionen"
|
2654 |
|
2655 |
+
#: includes/fields/class-acf-field-select.php:25
|
2656 |
+
#: includes/fields/class-acf-field-taxonomy.php:785
|
2657 |
msgctxt "noun"
|
2658 |
msgid "Select"
|
2659 |
msgstr "Auswahl"
|
2660 |
|
2661 |
+
#: includes/fields/class-acf-field-select.php:38
|
2662 |
msgctxt "Select2 JS matches_1"
|
2663 |
msgid "One result is available, press enter to select it."
|
2664 |
msgstr ""
|
2665 |
"Es ist ein Ergebnis verfügbar, drücken Sie die Eingabetaste um es "
|
2666 |
"auszuwählen."
|
2667 |
|
2668 |
+
#: includes/fields/class-acf-field-select.php:39
|
2669 |
#, php-format
|
2670 |
msgctxt "Select2 JS matches_n"
|
2671 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2673 |
"Es sind %d Ergebnisse verfügbar, benutzen Sie die Pfeiltasten um nach oben "
|
2674 |
"und unten zu navigieren."
|
2675 |
|
2676 |
+
#: includes/fields/class-acf-field-select.php:40
|
2677 |
msgctxt "Select2 JS matches_0"
|
2678 |
msgid "No matches found"
|
2679 |
msgstr "Keine Übereinstimmungen gefunden"
|
2680 |
|
2681 |
+
#: includes/fields/class-acf-field-select.php:41
|
2682 |
msgctxt "Select2 JS input_too_short_1"
|
2683 |
msgid "Please enter 1 or more characters"
|
2684 |
msgstr "Geben Sie bitte ein oder mehr Zeichen ein"
|
2685 |
|
2686 |
+
#: includes/fields/class-acf-field-select.php:42
|
2687 |
#, php-format
|
2688 |
msgctxt "Select2 JS input_too_short_n"
|
2689 |
msgid "Please enter %d or more characters"
|
2690 |
msgstr "Geben Sie bitte %d oder mehr Zeichen ein"
|
2691 |
|
2692 |
+
#: includes/fields/class-acf-field-select.php:43
|
2693 |
msgctxt "Select2 JS input_too_long_1"
|
2694 |
msgid "Please delete 1 character"
|
2695 |
msgstr "Löschen Sie bitte ein Zeichen"
|
2696 |
|
2697 |
+
#: includes/fields/class-acf-field-select.php:44
|
2698 |
#, php-format
|
2699 |
msgctxt "Select2 JS input_too_long_n"
|
2700 |
msgid "Please delete %d characters"
|
2701 |
msgstr "Löschen Sie bitte %d Zeichen"
|
2702 |
|
2703 |
+
#: includes/fields/class-acf-field-select.php:45
|
2704 |
msgctxt "Select2 JS selection_too_long_1"
|
2705 |
msgid "You can only select 1 item"
|
2706 |
msgstr "Sie können nur ein Element auswählen"
|
2707 |
|
2708 |
+
#: includes/fields/class-acf-field-select.php:46
|
2709 |
#, php-format
|
2710 |
msgctxt "Select2 JS selection_too_long_n"
|
2711 |
msgid "You can only select %d items"
|
2712 |
msgstr "Sie können nur %d Elemente auswählen"
|
2713 |
|
2714 |
+
#: includes/fields/class-acf-field-select.php:47
|
2715 |
msgctxt "Select2 JS load_more"
|
2716 |
msgid "Loading more results…"
|
2717 |
msgstr "Mehr Ergebnisse laden…"
|
2718 |
|
2719 |
+
#: includes/fields/class-acf-field-select.php:48
|
2720 |
msgctxt "Select2 JS searching"
|
2721 |
msgid "Searching…"
|
2722 |
msgstr "Suchen…"
|
2723 |
|
2724 |
+
#: includes/fields/class-acf-field-select.php:49
|
2725 |
msgctxt "Select2 JS load_fail"
|
2726 |
msgid "Loading failed"
|
2727 |
msgstr "Laden fehlgeschlagen"
|
2728 |
|
2729 |
+
#: includes/fields/class-acf-field-select.php:255 includes/media.php:54
|
2730 |
msgctxt "verb"
|
2731 |
msgid "Select"
|
2732 |
msgstr "Auswählen"
|
2733 |
|
2734 |
# @ acf
|
2735 |
+
#: includes/fields/class-acf-field-select.php:406
|
2736 |
+
#: includes/fields/class-acf-field-true_false.php:144
|
2737 |
msgid "Stylised UI"
|
2738 |
msgstr "Modernes Auswahlfeld"
|
2739 |
|
2740 |
# @ acf
|
2741 |
+
#: includes/fields/class-acf-field-select.php:416
|
2742 |
msgid "Use AJAX to lazy load choices?"
|
2743 |
+
msgstr "AJAX verwenden um die Auswahl mittels Lazy Loading zu Laden?"
|
2744 |
|
2745 |
+
#: includes/fields/class-acf-field-select.php:427
|
2746 |
msgid "Specify the value returned"
|
2747 |
msgstr "Legen Sie den Rückgabewert fest"
|
2748 |
|
2749 |
+
#: includes/fields/class-acf-field-separator.php:25
|
2750 |
msgid "Separator"
|
2751 |
+
msgstr "Trennelement"
|
2752 |
|
2753 |
# @ acf
|
2754 |
+
#: includes/fields/class-acf-field-tab.php:25
|
2755 |
msgid "Tab"
|
2756 |
msgstr "Tab"
|
2757 |
|
2758 |
# @ acf
|
2759 |
+
#: includes/fields/class-acf-field-tab.php:82
|
2760 |
msgid ""
|
2761 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2762 |
"field or flexible content field layout"
|
2765 |
"oder Flexible-Inhalte-Feld im Tabellen-Layout eingebunden ist"
|
2766 |
|
2767 |
# @ acf
|
2768 |
+
#: includes/fields/class-acf-field-tab.php:83
|
2769 |
msgid ""
|
2770 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2771 |
"together."
|
2774 |
"Tabs zusammengefasst werden."
|
2775 |
|
2776 |
# @ acf
|
2777 |
+
#: includes/fields/class-acf-field-tab.php:84
|
2778 |
msgid ""
|
2779 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2780 |
"defined) will be grouped together using this field's label as the tab "
|
2785 |
"zusammengefasst."
|
2786 |
|
2787 |
# @ acf
|
2788 |
+
#: includes/fields/class-acf-field-tab.php:98
|
2789 |
msgid "Placement"
|
2790 |
msgstr "Platzierung Tabs"
|
2791 |
|
2792 |
+
#: includes/fields/class-acf-field-tab.php:110
|
2793 |
msgid "End-point"
|
2794 |
msgstr "Abschluss"
|
2795 |
|
2796 |
+
#: includes/fields/class-acf-field-tab.php:111
|
2797 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2798 |
msgstr "Benutze das Feld als einen Abschluss und starte eine Gruppe an Tabs"
|
2799 |
|
2800 |
+
#: includes/fields/class-acf-field-taxonomy.php:713
|
2801 |
+
#, php-format
|
2802 |
+
msgctxt "No terms"
|
2803 |
+
msgid "No %s"
|
2804 |
+
msgstr "Keine %s"
|
|
|
|
|
2805 |
|
2806 |
# @ acf
|
2807 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
2808 |
msgid "None"
|
2809 |
msgstr "Nur Text"
|
2810 |
|
2811 |
# @ acf
|
2812 |
+
#: includes/fields/class-acf-field-taxonomy.php:764
|
2813 |
msgid "Select the taxonomy to be displayed"
|
2814 |
msgstr "Wähle die Taxonomie, welche angezeigt werden soll"
|
2815 |
|
2816 |
# @ acf
|
2817 |
+
#: includes/fields/class-acf-field-taxonomy.php:773
|
2818 |
msgid "Appearance"
|
2819 |
msgstr "Anzeige"
|
2820 |
|
2821 |
# @ acf
|
2822 |
+
#: includes/fields/class-acf-field-taxonomy.php:774
|
2823 |
msgid "Select the appearance of this field"
|
2824 |
msgstr "Wähle das Aussehen für dieses Feld"
|
2825 |
|
2826 |
# @ acf
|
2827 |
+
#: includes/fields/class-acf-field-taxonomy.php:779
|
2828 |
msgid "Multiple Values"
|
2829 |
+
msgstr "Mehrere Werte"
|
2830 |
|
2831 |
# @ acf
|
2832 |
+
#: includes/fields/class-acf-field-taxonomy.php:781
|
2833 |
msgid "Multi Select"
|
2834 |
msgstr "Auswahlmenü"
|
2835 |
|
2836 |
# @ acf
|
2837 |
+
#: includes/fields/class-acf-field-taxonomy.php:783
|
2838 |
msgid "Single Value"
|
2839 |
msgstr "Einzelne Werte"
|
2840 |
|
2841 |
# @ acf
|
2842 |
+
#: includes/fields/class-acf-field-taxonomy.php:784
|
2843 |
msgid "Radio Buttons"
|
2844 |
msgstr "Radio Button"
|
2845 |
|
2846 |
# @ acf
|
2847 |
+
#: includes/fields/class-acf-field-taxonomy.php:803
|
2848 |
msgid "Create Terms"
|
2849 |
msgstr "Neue Einträge erlauben"
|
2850 |
|
2851 |
# @ acf
|
2852 |
+
#: includes/fields/class-acf-field-taxonomy.php:804
|
2853 |
msgid "Allow new terms to be created whilst editing"
|
2854 |
msgstr "Erlaube das Erstellen neuer Einträge beim Editieren"
|
2855 |
|
2856 |
+
#: includes/fields/class-acf-field-taxonomy.php:813
|
2857 |
msgid "Save Terms"
|
2858 |
msgstr "Einträge speichern"
|
2859 |
|
2860 |
# @ acf
|
2861 |
+
#: includes/fields/class-acf-field-taxonomy.php:814
|
2862 |
msgid "Connect selected terms to the post"
|
2863 |
msgstr "Speichert die ausgewählten Einträge auch im Beitrag"
|
2864 |
|
2865 |
+
#: includes/fields/class-acf-field-taxonomy.php:823
|
2866 |
msgid "Load Terms"
|
2867 |
msgstr "Einträge laden"
|
2868 |
|
2869 |
+
#: includes/fields/class-acf-field-taxonomy.php:824
|
2870 |
msgid "Load value from posts terms"
|
2871 |
msgstr "Den Wert von den Einträgen des Beitrags laden"
|
2872 |
|
2873 |
# @ acf
|
2874 |
+
#: includes/fields/class-acf-field-taxonomy.php:838
|
2875 |
msgid "Term Object"
|
2876 |
msgstr "Begriffs-Objekt"
|
2877 |
|
2878 |
# @ acf
|
2879 |
+
#: includes/fields/class-acf-field-taxonomy.php:839
|
2880 |
msgid "Term ID"
|
2881 |
msgstr "Begriffs-ID"
|
2882 |
|
2883 |
# @ acf
|
2884 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2885 |
#, php-format
|
2886 |
msgid "User unable to add new %s"
|
2887 |
msgstr "Der Benutzer kann keine neue %s hinzufügen"
|
2888 |
|
2889 |
# @ acf
|
2890 |
+
#: includes/fields/class-acf-field-taxonomy.php:911
|
2891 |
#, php-format
|
2892 |
msgid "%s already exists"
|
2893 |
msgstr "%s ist bereits vorhanden"
|
2894 |
|
2895 |
# @ acf
|
2896 |
+
#: includes/fields/class-acf-field-taxonomy.php:952
|
2897 |
#, php-format
|
2898 |
msgid "%s added"
|
2899 |
msgstr "%s hinzugefügt"
|
2900 |
|
2901 |
# @ acf
|
2902 |
+
#: includes/fields/class-acf-field-taxonomy.php:997
|
2903 |
msgid "Add"
|
2904 |
msgstr "Hinzufügen"
|
2905 |
|
2906 |
# @ acf
|
2907 |
+
#: includes/fields/class-acf-field-text.php:25
|
2908 |
msgid "Text"
|
2909 |
msgstr "Text einzeilig"
|
2910 |
|
2911 |
# @ acf
|
2912 |
+
#: includes/fields/class-acf-field-text.php:151
|
2913 |
+
#: includes/fields/class-acf-field-textarea.php:116
|
2914 |
msgid "Character Limit"
|
2915 |
msgstr "Zeichenbegrenzung"
|
2916 |
|
2917 |
# @ acf
|
2918 |
+
#: includes/fields/class-acf-field-text.php:152
|
2919 |
+
#: includes/fields/class-acf-field-textarea.php:117
|
2920 |
msgid "Leave blank for no limit"
|
2921 |
msgstr "Ein leeres Eingabefeld bedeutet keine Begrenzung"
|
2922 |
|
2923 |
# @ acf
|
2924 |
+
#: includes/fields/class-acf-field-textarea.php:25
|
2925 |
msgid "Text Area"
|
2926 |
msgstr "Text mehrzeilig"
|
2927 |
|
2928 |
# @ acf
|
2929 |
+
#: includes/fields/class-acf-field-textarea.php:125
|
2930 |
msgid "Rows"
|
2931 |
msgstr "Zeilenanzahl"
|
2932 |
|
2933 |
# @ acf
|
2934 |
+
#: includes/fields/class-acf-field-textarea.php:126
|
2935 |
msgid "Sets the textarea height"
|
2936 |
msgstr "Definiert die Höhe des Textfelds"
|
2937 |
|
2938 |
+
#: includes/fields/class-acf-field-time_picker.php:25
|
2939 |
msgid "Time Picker"
|
2940 |
msgstr "Zeit auswählen"
|
2941 |
|
2942 |
# @ acf
|
2943 |
+
#: includes/fields/class-acf-field-true_false.php:25
|
2944 |
msgid "True / False"
|
2945 |
msgstr "Ja/Nein"
|
2946 |
|
2947 |
# @ acf
|
2948 |
+
#: includes/fields/class-acf-field-true_false.php:79
|
2949 |
+
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2950 |
+
#: pro/admin/views/html-settings-updates.php:89
|
2951 |
msgid "Yes"
|
2952 |
msgstr "Ja"
|
2953 |
|
2954 |
+
# @ acf
|
2955 |
+
#: includes/fields/class-acf-field-true_false.php:80
|
2956 |
+
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2957 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2958 |
+
msgid "No"
|
2959 |
+
msgstr "Nein"
|
2960 |
+
|
2961 |
+
#: includes/fields/class-acf-field-true_false.php:127
|
2962 |
msgid "Displays text alongside the checkbox"
|
2963 |
msgstr "Zeigt den Text neben der Checkbox an"
|
2964 |
|
2965 |
+
#: includes/fields/class-acf-field-true_false.php:155
|
2966 |
msgid "On Text"
|
2967 |
msgstr "Wenn aktiv"
|
2968 |
|
2969 |
+
#: includes/fields/class-acf-field-true_false.php:156
|
2970 |
msgid "Text shown when active"
|
2971 |
msgstr "Der Text der im aktiven Zustand angezeigt wird"
|
2972 |
|
2973 |
+
#: includes/fields/class-acf-field-true_false.php:165
|
2974 |
msgid "Off Text"
|
2975 |
msgstr "Wenn inaktiv"
|
2976 |
|
2977 |
+
#: includes/fields/class-acf-field-true_false.php:166
|
2978 |
msgid "Text shown when inactive"
|
2979 |
msgstr "Der Text der im inaktiven Zustand angezeigt wird"
|
2980 |
|
2981 |
# @ acf
|
2982 |
+
#: includes/fields/class-acf-field-url.php:25
|
2983 |
msgid "Url"
|
2984 |
msgstr "URL"
|
2985 |
|
2986 |
# @ acf
|
2987 |
+
#: includes/fields/class-acf-field-url.php:147
|
2988 |
msgid "Value must be a valid URL"
|
2989 |
msgstr "Bitte eine gültige URL eingeben"
|
2990 |
|
2991 |
# @ acf
|
2992 |
+
#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95
|
2993 |
msgid "User"
|
2994 |
msgstr "Benutzer"
|
2995 |
|
2996 |
# @ acf
|
2997 |
+
#: includes/fields/class-acf-field-user.php:393
|
2998 |
msgid "Filter by role"
|
2999 |
msgstr "Filtere nach Benutzerrollen"
|
3000 |
|
3001 |
# @ acf
|
3002 |
+
#: includes/fields/class-acf-field-user.php:401
|
3003 |
msgid "All user roles"
|
3004 |
msgstr "Alle Benutzerrollen"
|
3005 |
|
3006 |
# @ acf
|
3007 |
+
#: includes/fields/class-acf-field-wysiwyg.php:25
|
3008 |
msgid "Wysiwyg Editor"
|
3009 |
msgstr "WYSIWYG-Editor"
|
3010 |
|
3011 |
# @ acf
|
3012 |
+
#: includes/fields/class-acf-field-wysiwyg.php:370
|
3013 |
msgid "Visual"
|
3014 |
msgstr "Visuell"
|
3015 |
|
3016 |
# @ acf
|
3017 |
+
#: includes/fields/class-acf-field-wysiwyg.php:371
|
3018 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
3019 |
msgid "Text"
|
3020 |
msgstr "Text"
|
3021 |
|
3022 |
+
#: includes/fields/class-acf-field-wysiwyg.php:377
|
3023 |
msgid "Click to initialize TinyMCE"
|
3024 |
msgstr "Klicken um TinyMCE zu initialisieren"
|
3025 |
|
3026 |
# @ acf
|
3027 |
+
#: includes/fields/class-acf-field-wysiwyg.php:430
|
3028 |
msgid "Tabs"
|
3029 |
msgstr "Tabs"
|
3030 |
|
3031 |
# @ acf
|
3032 |
+
#: includes/fields/class-acf-field-wysiwyg.php:435
|
3033 |
msgid "Visual & Text"
|
3034 |
msgstr "Visuell & Text"
|
3035 |
|
3036 |
# @ acf
|
3037 |
+
#: includes/fields/class-acf-field-wysiwyg.php:436
|
3038 |
msgid "Visual Only"
|
3039 |
msgstr "Nur Visuell"
|
3040 |
|
3041 |
# @ acf
|
3042 |
+
#: includes/fields/class-acf-field-wysiwyg.php:437
|
3043 |
msgid "Text Only"
|
3044 |
msgstr "Nur Text"
|
3045 |
|
3046 |
# @ acf
|
3047 |
+
#: includes/fields/class-acf-field-wysiwyg.php:444
|
3048 |
msgid "Toolbar"
|
3049 |
msgstr "Werkzeugleiste"
|
3050 |
|
3051 |
# @ acf
|
3052 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
3053 |
msgid "Show Media Upload Buttons?"
|
3054 |
msgstr "Button zum Hochladen von Medien anzeigen?"
|
3055 |
|
3056 |
+
#: includes/fields/class-acf-field-wysiwyg.php:464
|
3057 |
msgid "Delay initialization?"
|
3058 |
msgstr "Initialisierung verzögern?"
|
3059 |
|
3060 |
+
#: includes/fields/class-acf-field-wysiwyg.php:465
|
3061 |
msgid "TinyMCE will not be initalized until field is clicked"
|
3062 |
msgstr "TinyMCE wird nicht initialisiert solange das Feld nicht geklickt wurde"
|
3063 |
|
3064 |
# @ acf
|
3065 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
3066 |
+
#: pro/admin/admin-options-page.php:308
|
3067 |
msgid "Edit field group"
|
3068 |
msgstr "Feld-Gruppen bearbeiten"
|
3069 |
|
3072 |
msgstr "E-Mail bestätigen"
|
3073 |
|
3074 |
# @ acf
|
3075 |
+
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
3076 |
+
#: pro/options-page.php:81
|
3077 |
msgid "Update"
|
3078 |
msgstr "Aktualisieren"
|
3079 |
|
3087 |
msgstr "Spam entdeckt"
|
3088 |
|
3089 |
# @ acf
|
3090 |
+
#: includes/input.php:259
|
3091 |
msgid "Expand Details"
|
3092 |
msgstr "Details einblenden"
|
3093 |
|
3094 |
# @ acf
|
3095 |
+
#: includes/input.php:260
|
3096 |
msgid "Collapse Details"
|
3097 |
msgstr "Details ausblenden"
|
3098 |
|
3099 |
# @ acf
|
3100 |
+
#: includes/input.php:261
|
3101 |
msgid "Validation successful"
|
3102 |
msgstr "Überprüfung erfolgreich"
|
3103 |
|
3104 |
# @ acf
|
3105 |
+
#: includes/input.php:262 includes/validation.php:285
|
3106 |
#: includes/validation.php:296
|
3107 |
msgid "Validation failed"
|
3108 |
msgstr "Überprüfung fehlgeschlagen"
|
3109 |
|
3110 |
# @ acf
|
3111 |
+
#: includes/input.php:263
|
3112 |
msgid "1 field requires attention"
|
3113 |
msgstr "Für 1 Feld ist eine Aktualisierung notwendig"
|
3114 |
|
3115 |
# @ acf
|
3116 |
+
#: includes/input.php:264
|
3117 |
#, php-format
|
3118 |
msgid "%d fields require attention"
|
3119 |
msgstr "Für %d Felder ist eine Aktualisierung notwendig"
|
3120 |
|
3121 |
+
#: includes/input.php:265
|
3122 |
msgid "Restricted"
|
3123 |
msgstr "Eingeschränkt"
|
3124 |
|
3125 |
+
# @ acf
|
3126 |
+
#: includes/input.php:266
|
3127 |
+
msgid "Are you sure?"
|
3128 |
+
msgstr "Wirklich in den Papierkorb verschieben?"
|
3129 |
+
|
3130 |
+
#: includes/input.php:270
|
3131 |
msgid "Cancel"
|
3132 |
+
msgstr "Abbrechen"
|
3133 |
|
3134 |
# @ acf
|
3135 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
3151 |
msgid "Attachment"
|
3152 |
msgstr "Dateianhang"
|
3153 |
|
3154 |
+
#: includes/locations/class-acf-location-attachment.php:109
|
3155 |
#, php-format
|
3156 |
msgid "All %s formats"
|
3157 |
+
msgstr "Alle %s Formate"
|
3158 |
|
3159 |
# @ acf
|
3160 |
#: includes/locations/class-acf-location-comment.php:27
|
3167 |
msgstr "Aktuelle Benutzer-Rolle"
|
3168 |
|
3169 |
# @ acf
|
3170 |
+
#: includes/locations/class-acf-location-current-user-role.php:110
|
3171 |
msgid "Super Admin"
|
3172 |
msgstr "Super-Admin"
|
3173 |
|
3177 |
msgstr "Aktueller Benutzer"
|
3178 |
|
3179 |
# @ acf
|
3180 |
+
#: includes/locations/class-acf-location-current-user.php:97
|
3181 |
msgid "Logged in"
|
3182 |
msgstr "ist angemeldet"
|
3183 |
|
3184 |
# @ acf
|
3185 |
+
#: includes/locations/class-acf-location-current-user.php:98
|
3186 |
msgid "Viewing front end"
|
3187 |
msgstr "ist im Front-End"
|
3188 |
|
3189 |
# @ acf
|
3190 |
+
#: includes/locations/class-acf-location-current-user.php:99
|
3191 |
msgid "Viewing back end"
|
3192 |
msgstr "ist im Back-End"
|
3193 |
|
3194 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
3195 |
msgid "Menu Item"
|
3196 |
+
msgstr "Menüelement"
|
3197 |
|
3198 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
3199 |
msgid "Menu"
|
3200 |
+
msgstr "Menü"
|
3201 |
|
3202 |
# @ acf
|
3203 |
+
#: includes/locations/class-acf-location-nav-menu.php:109
|
|
|
3204 |
msgid "Menu Locations"
|
3205 |
+
msgstr "Menüpositionen"
|
3206 |
|
3207 |
+
#: includes/locations/class-acf-location-nav-menu.php:119
|
3208 |
msgid "Menus"
|
3209 |
+
msgstr "Menüs"
|
3210 |
|
3211 |
# @ acf
|
3212 |
#: includes/locations/class-acf-location-page-parent.php:27
|
3219 |
msgstr "Seiten-Template"
|
3220 |
|
3221 |
# @ acf
|
3222 |
+
#: includes/locations/class-acf-location-page-template.php:98
|
3223 |
+
#: includes/locations/class-acf-location-post-template.php:151
|
3224 |
msgid "Default Template"
|
3225 |
msgstr "Standard-Template"
|
3226 |
|
3230 |
msgstr "Seitentyp"
|
3231 |
|
3232 |
# @ acf
|
3233 |
+
#: includes/locations/class-acf-location-page-type.php:145
|
3234 |
msgid "Front Page"
|
3235 |
msgstr "Startseite"
|
3236 |
|
3237 |
# @ acf
|
3238 |
+
#: includes/locations/class-acf-location-page-type.php:146
|
3239 |
msgid "Posts Page"
|
3240 |
msgstr "Beitrags-Seite"
|
3241 |
|
3242 |
# @ acf
|
3243 |
+
#: includes/locations/class-acf-location-page-type.php:147
|
3244 |
msgid "Top Level Page (no parent)"
|
3245 |
msgstr "Seite ohne übergeordnete Seiten"
|
3246 |
|
3247 |
# @ acf
|
3248 |
+
#: includes/locations/class-acf-location-page-type.php:148
|
3249 |
msgid "Parent Page (has children)"
|
3250 |
msgstr "Übergeordnete Seite (mit Unterseiten)"
|
3251 |
|
3252 |
# @ acf
|
3253 |
+
#: includes/locations/class-acf-location-page-type.php:149
|
3254 |
msgid "Child Page (has parent)"
|
3255 |
msgstr "Unterseite (mit übergeordneter Seite)"
|
3256 |
|
3275 |
msgstr "Beitrags-Taxonomie"
|
3276 |
|
3277 |
# @ acf
|
3278 |
+
#: includes/locations/class-acf-location-post-template.php:27
|
|
|
3279 |
msgid "Post Template"
|
3280 |
+
msgstr "Beitrags-Template"
|
3281 |
|
3282 |
# @ acf
|
3283 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
3290 |
msgstr "Benutzer-Formular"
|
3291 |
|
3292 |
# @ acf
|
3293 |
+
#: includes/locations/class-acf-location-user-form.php:88
|
3294 |
msgid "Add / Edit"
|
3295 |
msgstr "Hinzufügen / Bearbeiten"
|
3296 |
|
3297 |
# @ acf
|
3298 |
+
#: includes/locations/class-acf-location-user-form.php:89
|
3299 |
msgid "Register"
|
3300 |
msgstr "Registrieren"
|
3301 |
|
3332 |
msgstr "Advanced Custom Fields PRO"
|
3333 |
|
3334 |
# @ acf
|
3335 |
+
#: pro/admin/admin-options-page.php:200
|
3336 |
msgid "Publish"
|
3337 |
msgstr "Veröffentlichen"
|
3338 |
|
3339 |
# @ acf
|
3340 |
+
#: pro/admin/admin-options-page.php:206
|
3341 |
#, php-format
|
3342 |
msgid ""
|
3343 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
3350 |
#: pro/admin/admin-settings-updates.php:78
|
3351 |
msgid "<b>Error</b>. Could not connect to update server"
|
3352 |
msgstr ""
|
3353 |
+
"<b>Fehler</b>. Es konnte keine Verbindung zum Update-Server hergestellt "
|
3354 |
+
"werden"
|
3355 |
|
3356 |
# @ acf
|
3357 |
#: pro/admin/admin-settings-updates.php:162
|
3358 |
+
#: pro/admin/views/html-settings-updates.php:13
|
3359 |
msgid "Updates"
|
3360 |
msgstr "Aktualisierungen"
|
3361 |
|
3362 |
# @ acf
|
3363 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3364 |
msgid "Deactivate License"
|
3365 |
msgstr "Lizenz deaktivieren"
|
3366 |
|
3367 |
# @ acf
|
3368 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3369 |
msgid "Activate License"
|
3370 |
msgstr "Lizenz aktivieren"
|
3371 |
|
3372 |
+
#: pro/admin/views/html-settings-updates.php:17
|
3373 |
msgid "License Information"
|
3374 |
msgstr "Lizenzinformation"
|
3375 |
|
3376 |
+
#: pro/admin/views/html-settings-updates.php:20
|
3377 |
#, php-format
|
3378 |
msgid ""
|
3379 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3386 |
"a>."
|
3387 |
|
3388 |
# @ acf
|
3389 |
+
#: pro/admin/views/html-settings-updates.php:29
|
3390 |
msgid "License Key"
|
3391 |
msgstr "Lizenzschlüssel"
|
3392 |
|
3393 |
# @ acf
|
3394 |
+
#: pro/admin/views/html-settings-updates.php:61
|
3395 |
msgid "Update Information"
|
3396 |
msgstr "Aktualisierungsinformationen"
|
3397 |
|
3398 |
# @ acf
|
3399 |
+
#: pro/admin/views/html-settings-updates.php:68
|
3400 |
msgid "Current Version"
|
3401 |
msgstr "Installierte Version"
|
3402 |
|
3403 |
# @ acf
|
3404 |
+
#: pro/admin/views/html-settings-updates.php:76
|
3405 |
msgid "Latest Version"
|
3406 |
msgstr "Aktuellste Version"
|
3407 |
|
3408 |
# @ acf
|
3409 |
+
#: pro/admin/views/html-settings-updates.php:84
|
3410 |
msgid "Update Available"
|
3411 |
msgstr "Aktualisierung verfügbar"
|
3412 |
|
3413 |
# @ acf
|
3414 |
+
#: pro/admin/views/html-settings-updates.php:92
|
3415 |
msgid "Update Plugin"
|
3416 |
msgstr "Plugin aktualisieren"
|
3417 |
|
3418 |
# @ acf
|
3419 |
+
#: pro/admin/views/html-settings-updates.php:94
|
3420 |
msgid "Please enter your license key above to unlock updates"
|
3421 |
msgstr ""
|
3422 |
"Bitte geben Sie oben Ihren Lizenzschlüssel ein um die Update-Fähigkeit "
|
3423 |
"freizuschalten"
|
3424 |
|
3425 |
# @ acf
|
3426 |
+
#: pro/admin/views/html-settings-updates.php:100
|
3427 |
msgid "Check Again"
|
3428 |
msgstr "Erneut suchen"
|
3429 |
|
3430 |
# @ acf
|
3431 |
+
#: pro/admin/views/html-settings-updates.php:117
|
3432 |
msgid "Upgrade Notice"
|
3433 |
msgstr "Aktualisierungs-Hinweis"
|
3434 |
|
3435 |
+
#: pro/fields/class-acf-field-clone.php:25
|
3436 |
msgctxt "noun"
|
3437 |
msgid "Clone"
|
3438 |
msgstr "Klon"
|
3439 |
|
3440 |
+
#: pro/fields/class-acf-field-clone.php:807
|
3441 |
msgid "Select one or more fields you wish to clone"
|
3442 |
msgstr "Wählen Sie ein oder mehrere Felder aus die Sie klonen möchten"
|
3443 |
|
3444 |
# @ acf
|
3445 |
+
#: pro/fields/class-acf-field-clone.php:824
|
3446 |
msgid "Display"
|
3447 |
msgstr "Anzeige"
|
3448 |
|
3449 |
+
#: pro/fields/class-acf-field-clone.php:825
|
3450 |
msgid "Specify the style used to render the clone field"
|
3451 |
msgstr "Geben Sie den Stil an mit dem das Klon-Feld angezeigt werden soll"
|
3452 |
|
3453 |
+
#: pro/fields/class-acf-field-clone.php:830
|
3454 |
msgid "Group (displays selected fields in a group within this field)"
|
3455 |
msgstr ""
|
3456 |
"Gruppe (zeigt die ausgewählten Felder in einer Gruppe innerhalb dieses "
|
3457 |
"Feldes an)"
|
3458 |
|
3459 |
+
#: pro/fields/class-acf-field-clone.php:831
|
3460 |
msgid "Seamless (replaces this field with selected fields)"
|
3461 |
msgstr "Nahtlos (ersetzt dieses Feld mit den ausgewählten Feldern)"
|
3462 |
|
3463 |
+
#: pro/fields/class-acf-field-clone.php:852
|
3464 |
#, php-format
|
3465 |
msgid "Labels will be displayed as %s"
|
3466 |
msgstr "Bezeichnungen werden als %s angezeigt"
|
3467 |
|
3468 |
+
#: pro/fields/class-acf-field-clone.php:855
|
3469 |
msgid "Prefix Field Labels"
|
3470 |
msgstr "Präfix für Feld-Beschriftungen"
|
3471 |
|
3472 |
+
#: pro/fields/class-acf-field-clone.php:866
|
3473 |
#, php-format
|
3474 |
msgid "Values will be saved as %s"
|
3475 |
msgstr "Werte werden als %s gespeichert"
|
3476 |
|
3477 |
+
#: pro/fields/class-acf-field-clone.php:869
|
3478 |
msgid "Prefix Field Names"
|
3479 |
msgstr "Präfix für Feld-Namen"
|
3480 |
|
3481 |
+
#: pro/fields/class-acf-field-clone.php:987
|
3482 |
msgid "Unknown field"
|
3483 |
msgstr "Unbekanntes Feld"
|
3484 |
|
3485 |
+
#: pro/fields/class-acf-field-clone.php:1026
|
3486 |
msgid "Unknown field group"
|
3487 |
msgstr "Unbekannte Feld-Gruppe"
|
3488 |
|
3489 |
+
#: pro/fields/class-acf-field-clone.php:1030
|
3490 |
#, php-format
|
3491 |
msgid "All fields from %s field group"
|
3492 |
msgstr "Alle Felder von Feld-Gruppe %s"
|
3493 |
|
3494 |
# @ acf
|
3495 |
+
#: pro/fields/class-acf-field-flexible-content.php:31
|
3496 |
+
#: pro/fields/class-acf-field-repeater.php:174
|
3497 |
+
#: pro/fields/class-acf-field-repeater.php:470
|
3498 |
msgid "Add Row"
|
3499 |
msgstr "Eintrag hinzufügen"
|
3500 |
|
3501 |
# @ acf
|
3502 |
+
#: pro/fields/class-acf-field-flexible-content.php:34
|
3503 |
msgid "layout"
|
3504 |
msgstr "Eintrag"
|
3505 |
|
3506 |
# @ acf
|
3507 |
+
#: pro/fields/class-acf-field-flexible-content.php:35
|
3508 |
msgid "layouts"
|
3509 |
msgstr "Einträge"
|
3510 |
|
3511 |
# @ acf
|
3512 |
+
#: pro/fields/class-acf-field-flexible-content.php:36
|
3513 |
msgid "remove {layout}?"
|
3514 |
msgstr "{layout} löschen?"
|
3515 |
|
3516 |
# @ acf
|
3517 |
+
#: pro/fields/class-acf-field-flexible-content.php:37
|
3518 |
msgid "This field requires at least {min} {identifier}"
|
3519 |
msgstr "Dieses Feld erfordert mindestens {min} {identifier}"
|
3520 |
|
3521 |
# @ acf
|
3522 |
+
#: pro/fields/class-acf-field-flexible-content.php:38
|
3523 |
msgid "This field has a limit of {max} {identifier}"
|
3524 |
msgstr "Diesem Feld dürfen maximal {max} {identifier} hinzugefügt werden."
|
3525 |
|
3526 |
# @ acf
|
3527 |
+
#: pro/fields/class-acf-field-flexible-content.php:39
|
3528 |
msgid "This field requires at least {min} {label} {identifier}"
|
3529 |
msgstr "Dieses Feld erfordert mindestens {min} {label} {identifier}"
|
3530 |
|
3531 |
# @ acf
|
3532 |
+
#: pro/fields/class-acf-field-flexible-content.php:40
|
3533 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3534 |
msgstr "Maximale {label}-Anzahl erreicht ({max} {identifier})"
|
3535 |
|
3536 |
# @ acf
|
3537 |
+
#: pro/fields/class-acf-field-flexible-content.php:41
|
3538 |
msgid "{available} {label} {identifier} available (max {max})"
|
3539 |
msgstr "{available} {label} {identifier} möglich (max {max})"
|
3540 |
|
3541 |
# @ acf
|
3542 |
+
#: pro/fields/class-acf-field-flexible-content.php:42
|
3543 |
msgid "{required} {label} {identifier} required (min {min})"
|
3544 |
msgstr "{required} {label} {identifier} erforderlich (min {min})"
|
3545 |
|
3546 |
# @ acf
|
3547 |
+
#: pro/fields/class-acf-field-flexible-content.php:43
|
3548 |
msgid "Flexible Content requires at least 1 layout"
|
3549 |
msgstr "Flexibler Inhalt benötigt mindestens ein Layout"
|
3550 |
|
3551 |
# @ acf
|
3552 |
+
#: pro/fields/class-acf-field-flexible-content.php:273
|
3553 |
#, php-format
|
3554 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3555 |
msgstr "Klicke \"%s\" zum Erstellen des Layouts"
|
3556 |
|
3557 |
# @ acf
|
3558 |
+
#: pro/fields/class-acf-field-flexible-content.php:406
|
3559 |
msgid "Add layout"
|
3560 |
msgstr "Layout hinzufügen"
|
3561 |
|
3562 |
# @ acf
|
3563 |
+
#: pro/fields/class-acf-field-flexible-content.php:407
|
3564 |
msgid "Remove layout"
|
3565 |
msgstr "Layout entfernen"
|
3566 |
|
3567 |
+
#: pro/fields/class-acf-field-flexible-content.php:408
|
3568 |
+
#: pro/fields/class-acf-field-repeater.php:298
|
3569 |
msgid "Click to toggle"
|
3570 |
msgstr "Zum Auswählen anklicken"
|
3571 |
|
3572 |
# @ acf
|
3573 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3574 |
msgid "Reorder Layout"
|
3575 |
msgstr "Layout sortieren"
|
3576 |
|
3577 |
# @ acf
|
3578 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3579 |
msgid "Reorder"
|
3580 |
msgstr "Sortieren"
|
3581 |
|
3582 |
# @ acf
|
3583 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
3584 |
msgid "Delete Layout"
|
3585 |
msgstr "Layout löschen"
|
3586 |
|
3587 |
# @ acf
|
3588 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3589 |
msgid "Duplicate Layout"
|
3590 |
msgstr "Layout duplizieren"
|
3591 |
|
3592 |
# @ acf
|
3593 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3594 |
msgid "Add New Layout"
|
3595 |
msgstr "Neues Layout hinzufügen"
|
3596 |
|
3597 |
# @ acf
|
3598 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
3599 |
msgid "Min"
|
3600 |
msgstr "Min"
|
3601 |
|
3602 |
# @ acf
|
3603 |
+
#: pro/fields/class-acf-field-flexible-content.php:641
|
3604 |
msgid "Max"
|
3605 |
msgstr "Max"
|
3606 |
|
3607 |
# @ acf
|
3608 |
+
#: pro/fields/class-acf-field-flexible-content.php:668
|
3609 |
+
#: pro/fields/class-acf-field-repeater.php:466
|
3610 |
msgid "Button Label"
|
3611 |
msgstr "Button-Beschriftung"
|
3612 |
|
3613 |
# @ acf
|
3614 |
+
#: pro/fields/class-acf-field-flexible-content.php:677
|
3615 |
msgid "Minimum Layouts"
|
3616 |
msgstr "Minimum Layouts"
|
3617 |
|
3618 |
# @ acf
|
3619 |
+
#: pro/fields/class-acf-field-flexible-content.php:686
|
3620 |
msgid "Maximum Layouts"
|
3621 |
msgstr "Maximum Layouts"
|
3622 |
|
3623 |
# @ acf
|
3624 |
+
#: pro/fields/class-acf-field-gallery.php:41
|
3625 |
msgid "Add Image to Gallery"
|
3626 |
msgstr "Bild zur Galerie hinzufügen"
|
3627 |
|
3628 |
# @ acf
|
3629 |
+
#: pro/fields/class-acf-field-gallery.php:45
|
3630 |
msgid "Maximum selection reached"
|
3631 |
msgstr "Maximale Auswahl erreicht"
|
3632 |
|
3633 |
# @ acf
|
3634 |
+
#: pro/fields/class-acf-field-gallery.php:321
|
3635 |
msgid "Length"
|
3636 |
msgstr "Länge"
|
3637 |
|
3638 |
+
#: pro/fields/class-acf-field-gallery.php:364
|
3639 |
msgid "Caption"
|
3640 |
msgstr "Bildunterschrift"
|
3641 |
|
3642 |
+
#: pro/fields/class-acf-field-gallery.php:373
|
3643 |
msgid "Alt Text"
|
3644 |
msgstr "Alt Text"
|
3645 |
|
3646 |
# @ acf
|
3647 |
+
#: pro/fields/class-acf-field-gallery.php:544
|
3648 |
msgid "Add to gallery"
|
3649 |
msgstr "Zur Galerie hinzufügen"
|
3650 |
|
3651 |
# @ acf
|
3652 |
+
#: pro/fields/class-acf-field-gallery.php:548
|
3653 |
msgid "Bulk actions"
|
3654 |
msgstr "Massenverarbeitung"
|
3655 |
|
3656 |
# @ acf
|
3657 |
+
#: pro/fields/class-acf-field-gallery.php:549
|
3658 |
msgid "Sort by date uploaded"
|
3659 |
msgstr "Sortiere nach Upload-Datum"
|
3660 |
|
3661 |
# @ acf
|
3662 |
+
#: pro/fields/class-acf-field-gallery.php:550
|
3663 |
msgid "Sort by date modified"
|
3664 |
msgstr "Sortiere nach Änderungs-Datum"
|
3665 |
|
3666 |
# @ acf
|
3667 |
+
#: pro/fields/class-acf-field-gallery.php:551
|
3668 |
msgid "Sort by title"
|
3669 |
msgstr "Sortiere nach Titel"
|
3670 |
|
3671 |
# @ acf
|
3672 |
+
#: pro/fields/class-acf-field-gallery.php:552
|
3673 |
msgid "Reverse current order"
|
3674 |
msgstr "Aktuelle Sortierung umkehren"
|
3675 |
|
3676 |
# @ acf
|
3677 |
+
#: pro/fields/class-acf-field-gallery.php:570
|
3678 |
msgid "Close"
|
3679 |
msgstr "Schließen"
|
3680 |
|
3681 |
# @ acf
|
3682 |
+
#: pro/fields/class-acf-field-gallery.php:624
|
3683 |
msgid "Minimum Selection"
|
3684 |
msgstr "Minimale Auswahl"
|
3685 |
|
3686 |
# @ acf
|
3687 |
+
#: pro/fields/class-acf-field-gallery.php:633
|
3688 |
msgid "Maximum Selection"
|
3689 |
msgstr "Maximale Auswahl"
|
3690 |
|
3691 |
+
#: pro/fields/class-acf-field-gallery.php:642
|
3692 |
msgid "Insert"
|
3693 |
msgstr "Einfügen"
|
3694 |
|
3695 |
+
#: pro/fields/class-acf-field-gallery.php:643
|
3696 |
msgid "Specify where new attachments are added"
|
3697 |
msgstr "Geben Sie an wo neue Anhänge hinzugefügt werden"
|
3698 |
|
3699 |
+
#: pro/fields/class-acf-field-gallery.php:647
|
3700 |
msgid "Append to the end"
|
3701 |
msgstr "Anhängen"
|
3702 |
|
3703 |
+
#: pro/fields/class-acf-field-gallery.php:648
|
3704 |
msgid "Prepend to the beginning"
|
3705 |
msgstr "Voranstellen"
|
3706 |
|
3707 |
# @ acf
|
3708 |
+
#: pro/fields/class-acf-field-repeater.php:36
|
3709 |
msgid "Minimum rows reached ({min} rows)"
|
3710 |
msgstr "Minimum der Einträge mit ({min} Reihen) erreicht"
|
3711 |
|
3712 |
# @ acf
|
3713 |
+
#: pro/fields/class-acf-field-repeater.php:37
|
3714 |
msgid "Maximum rows reached ({max} rows)"
|
3715 |
msgstr "Maximum der Einträge mit ({max} Reihen) erreicht"
|
3716 |
|
3717 |
# @ acf
|
3718 |
+
#: pro/fields/class-acf-field-repeater.php:343
|
3719 |
msgid "Add row"
|
3720 |
msgstr "Eintrag hinzufügen"
|
3721 |
|
3722 |
# @ acf
|
3723 |
+
#: pro/fields/class-acf-field-repeater.php:344
|
3724 |
msgid "Remove row"
|
3725 |
msgstr "Eintrag löschen"
|
3726 |
|
3727 |
+
#: pro/fields/class-acf-field-repeater.php:419
|
3728 |
msgid "Collapsed"
|
3729 |
msgstr "Zugeklappt"
|
3730 |
|
3731 |
+
#: pro/fields/class-acf-field-repeater.php:420
|
3732 |
msgid "Select a sub field to show when row is collapsed"
|
3733 |
msgstr ""
|
3734 |
"Wählen Sie welches der Wiederholungsfelder im zugeklappten Zustand angezeigt "
|
3735 |
+
"werden soll"
|
3736 |
|
3737 |
# @ acf
|
3738 |
+
#: pro/fields/class-acf-field-repeater.php:430
|
3739 |
msgid "Minimum Rows"
|
3740 |
msgstr "Minimum der Einträge"
|
3741 |
|
3742 |
# @ acf
|
3743 |
+
#: pro/fields/class-acf-field-repeater.php:440
|
3744 |
msgid "Maximum Rows"
|
3745 |
msgstr "Maximum der Einträge"
|
3746 |
|
3747 |
# @ acf
|
3748 |
+
#: pro/locations/class-acf-location-options-page.php:79
|
3749 |
msgid "No options pages exist"
|
3750 |
msgstr "Keine Options-Seiten vorhanden"
|
3751 |
|
lang/acf-fi.mo
CHANGED
Binary file
|
lang/acf-fi.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"Language: fi\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 1.8.
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
@@ -22,103 +22,102 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
-
#: acf.php:
|
26 |
msgid "Advanced Custom Fields"
|
27 |
msgstr "Advanced Custom Fields"
|
28 |
|
29 |
-
#: acf.php:
|
30 |
msgid "Field Groups"
|
31 |
msgstr "Kenttäryhmät"
|
32 |
|
33 |
-
#: acf.php:
|
34 |
msgid "Field Group"
|
35 |
msgstr "Kenttäryhmä"
|
36 |
|
37 |
-
#: acf.php:
|
38 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
39 |
msgid "Add New"
|
40 |
msgstr "Lisää uusi"
|
41 |
|
42 |
-
#: acf.php:
|
43 |
msgid "Add New Field Group"
|
44 |
msgstr "Lisää uusi kenttäryhmä"
|
45 |
|
46 |
-
#: acf.php:
|
47 |
msgid "Edit Field Group"
|
48 |
msgstr "Muokkaa kenttäryhmää"
|
49 |
|
50 |
-
#: acf.php:
|
51 |
msgid "New Field Group"
|
52 |
msgstr "Lisää uusi kenttäryhmä"
|
53 |
|
54 |
-
#: acf.php:
|
55 |
msgid "View Field Group"
|
56 |
msgstr "Katso kenttäryhmää"
|
57 |
|
58 |
-
#: acf.php:
|
59 |
msgid "Search Field Groups"
|
60 |
msgstr "Etsi kenttäryhmiä"
|
61 |
|
62 |
-
#: acf.php:
|
63 |
msgid "No Field Groups found"
|
64 |
msgstr "Kenttäryhmiä ei löytynyt"
|
65 |
|
66 |
-
#: acf.php:
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr "Kenttäryhmiä ei löytynyt roskakorista"
|
69 |
|
70 |
-
#: acf.php:
|
71 |
#: includes/admin/admin-field-group.php:275
|
72 |
#: includes/admin/admin-field-groups.php:510
|
73 |
-
#: pro/fields/class-acf-field-clone.php:
|
74 |
msgid "Fields"
|
75 |
msgstr "Kentät"
|
76 |
|
77 |
-
#: acf.php:
|
78 |
msgid "Field"
|
79 |
msgstr "Kenttä"
|
80 |
|
81 |
-
#: acf.php:
|
82 |
msgid "Add New Field"
|
83 |
msgstr "Lisää uusi kenttä"
|
84 |
|
85 |
-
#: acf.php:
|
86 |
msgid "Edit Field"
|
87 |
msgstr "Muokkaa kenttää"
|
88 |
|
89 |
-
#: acf.php:
|
90 |
#: includes/admin/views/settings-info.php:105
|
91 |
msgid "New Field"
|
92 |
msgstr "Uusi kenttä"
|
93 |
|
94 |
-
#: acf.php:
|
95 |
msgid "View Field"
|
96 |
msgstr "Näytä kenttä"
|
97 |
|
98 |
-
#: acf.php:
|
99 |
msgid "Search Fields"
|
100 |
msgstr "Etsi kenttiä"
|
101 |
|
102 |
-
#: acf.php:
|
103 |
msgid "No Fields found"
|
104 |
msgstr "Kenttiä ei löytynyt"
|
105 |
|
106 |
-
#: acf.php:
|
107 |
msgid "No Fields found in Trash"
|
108 |
msgstr "Kenttiä ei löytynyt roskakorista"
|
109 |
|
110 |
-
#: acf.php:
|
111 |
#: includes/admin/admin-field-groups.php:567
|
112 |
-
#, fuzzy
|
113 |
msgid "Inactive"
|
114 |
-
msgstr "
|
115 |
|
116 |
-
#: acf.php:
|
117 |
-
#,
|
118 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
119 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
120 |
-
msgstr[0] "
|
121 |
-
msgstr[1] "
|
122 |
|
123 |
#: includes/admin/admin-field-group.php:68
|
124 |
#: includes/admin/admin-field-group.php:69
|
@@ -175,7 +174,7 @@ msgid "Field group title is required"
|
|
175 |
msgstr "Kenttäryhmän otsikko on pakollinen"
|
176 |
|
177 |
#: includes/admin/admin-field-group.php:273
|
178 |
-
#: includes/api/api-field-group.php:
|
179 |
msgid "copy"
|
180 |
msgstr "kopioi"
|
181 |
|
@@ -184,7 +183,7 @@ msgstr "kopioi"
|
|
184 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
185 |
#: includes/admin/views/field-group-locations.php:29
|
186 |
#: includes/admin/views/html-location-group.php:3
|
187 |
-
#: includes/api/api-helpers.php:
|
188 |
msgid "or"
|
189 |
msgstr "tai"
|
190 |
|
@@ -208,7 +207,7 @@ msgstr "Tätä kenttää ei voi siirtää ennen kuin muutokset on talletettu"
|
|
208 |
msgid "Null"
|
209 |
msgstr "Tyhjä"
|
210 |
|
211 |
-
#: includes/admin/admin-field-group.php:281 includes/input.php:
|
212 |
msgid "The changes you made will be lost if you navigate away from this page"
|
213 |
msgstr "Tekemäsi muutokset menetetään, jos siirryt pois tältä sivulta"
|
214 |
|
@@ -283,7 +282,7 @@ msgid "Sync available"
|
|
283 |
msgstr "Synkronointi saatavissa"
|
284 |
|
285 |
#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38
|
286 |
-
#: pro/fields/class-acf-field-gallery.php:
|
287 |
msgid "Title"
|
288 |
msgstr "Otsikko"
|
289 |
|
@@ -291,7 +290,7 @@ msgstr "Otsikko"
|
|
291 |
#: includes/admin/views/field-group-options.php:96
|
292 |
#: includes/admin/views/install-network.php:21
|
293 |
#: includes/admin/views/install-network.php:29
|
294 |
-
#: pro/fields/class-acf-field-gallery.php:
|
295 |
msgid "Description"
|
296 |
msgstr "Kuvaus"
|
297 |
|
@@ -307,43 +306,39 @@ msgstr ""
|
|
307 |
|
308 |
#: includes/admin/admin-field-groups.php:609
|
309 |
#: includes/admin/settings-info.php:76
|
310 |
-
#: pro/admin/views/html-settings-updates.php:
|
311 |
msgid "Changelog"
|
312 |
msgstr "Muutosloki"
|
313 |
|
314 |
#: includes/admin/admin-field-groups.php:614
|
315 |
#, php-format
|
316 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
317 |
-
msgstr "Katso mitä uutta <a href=”%s”>versiossa%s</a> ."
|
318 |
|
319 |
#: includes/admin/admin-field-groups.php:617
|
320 |
msgid "Resources"
|
321 |
msgstr "Resurssit"
|
322 |
|
323 |
#: includes/admin/admin-field-groups.php:619
|
324 |
-
#, fuzzy
|
325 |
msgid "Website"
|
326 |
-
msgstr "
|
327 |
|
328 |
#: includes/admin/admin-field-groups.php:620
|
329 |
-
#, fuzzy
|
330 |
msgid "Documentation"
|
331 |
-
msgstr "
|
332 |
|
333 |
#: includes/admin/admin-field-groups.php:621
|
334 |
-
#, fuzzy
|
335 |
msgid "Support"
|
336 |
-
msgstr "
|
337 |
|
338 |
#: includes/admin/admin-field-groups.php:623
|
339 |
-
#, fuzzy
|
340 |
msgid "Pro"
|
341 |
-
msgstr "
|
342 |
|
343 |
#: includes/admin/admin-field-groups.php:628
|
344 |
-
#,
|
345 |
msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
346 |
-
msgstr "Kiitos, että
|
347 |
|
348 |
#: includes/admin/admin-field-groups.php:668
|
349 |
msgid "Duplicate this item"
|
@@ -352,13 +347,13 @@ msgstr "Monista tämä kohde"
|
|
352 |
#: includes/admin/admin-field-groups.php:668
|
353 |
#: includes/admin/admin-field-groups.php:684
|
354 |
#: includes/admin/views/field-group-field.php:49
|
355 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
356 |
msgid "Duplicate"
|
357 |
msgstr "Monista"
|
358 |
|
359 |
#: includes/admin/admin-field-groups.php:701
|
360 |
-
#: includes/fields/class-acf-field-google-map.php:
|
361 |
-
#: includes/fields/class-acf-field-relationship.php:
|
362 |
msgid "Search"
|
363 |
msgstr "Etsi"
|
364 |
|
@@ -378,10 +373,9 @@ msgstr "Synkronointi"
|
|
378 |
|
379 |
#: includes/admin/admin-field-groups.php:780
|
380 |
msgid "Apply"
|
381 |
-
msgstr ""
|
382 |
|
383 |
#: includes/admin/admin-field-groups.php:798
|
384 |
-
#, fuzzy
|
385 |
msgid "Bulk Actions"
|
386 |
msgstr "Massatoiminnot"
|
387 |
|
@@ -435,7 +429,7 @@ msgid "No field groups selected"
|
|
435 |
msgstr "Ei kenttäryhmää valittu"
|
436 |
|
437 |
#: includes/admin/settings-tools.php:184
|
438 |
-
#: includes/fields/class-acf-field-file.php:
|
439 |
msgid "No file selected"
|
440 |
msgstr "Ei tiedostoa valittu"
|
441 |
|
@@ -467,12 +461,12 @@ msgid "Show this field if"
|
|
467 |
msgstr "Näytä tämä kenttä, jos"
|
468 |
|
469 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
470 |
-
#: includes/locations.php:
|
471 |
msgid "is equal to"
|
472 |
msgstr "on sama kuin"
|
473 |
|
474 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
475 |
-
#: includes/locations.php:
|
476 |
msgid "is not equal to"
|
477 |
msgstr "ei ole sama kuin"
|
478 |
|
@@ -487,8 +481,8 @@ msgid "Add rule group"
|
|
487 |
msgstr "Lisää sääntöryhmä"
|
488 |
|
489 |
#: includes/admin/views/field-group-field.php:41
|
490 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
491 |
-
#: pro/fields/class-acf-field-repeater.php:
|
492 |
msgid "Drag to reorder"
|
493 |
msgstr "Muuta järjestystä vetämällä ja pudottamalla"
|
494 |
|
@@ -498,9 +492,10 @@ msgid "Edit field"
|
|
498 |
msgstr "Muokkaa kenttää"
|
499 |
|
500 |
#: includes/admin/views/field-group-field.php:48
|
501 |
-
#: includes/fields/class-acf-field-
|
502 |
-
#: includes/fields/class-acf-field-
|
503 |
-
#:
|
|
|
504 |
msgid "Edit"
|
505 |
msgstr "Muokkaa"
|
506 |
|
@@ -521,7 +516,7 @@ msgid "Delete field"
|
|
521 |
msgstr "Poista kenttä"
|
522 |
|
523 |
#: includes/admin/views/field-group-field.php:51
|
524 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
525 |
msgid "Delete"
|
526 |
msgstr "Poista"
|
527 |
|
@@ -533,48 +528,48 @@ msgstr "Kentän nimiö"
|
|
533 |
msgid "This is the name which will appear on the EDIT page"
|
534 |
msgstr "Tätä nimeä käytetään Muokkaa-sivulla"
|
535 |
|
536 |
-
#: includes/admin/views/field-group-field.php:
|
537 |
msgid "Field Name"
|
538 |
msgstr "Kentän nimi"
|
539 |
|
540 |
-
#: includes/admin/views/field-group-field.php:
|
541 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
542 |
msgstr "Yksi sana, ei välilyöntejä. Alaviivat ja viivamerkit ovat sallittuja."
|
543 |
|
544 |
-
#: includes/admin/views/field-group-field.php:
|
545 |
msgid "Field Type"
|
546 |
msgstr "Kenttätyyppi"
|
547 |
|
548 |
-
#: includes/admin/views/field-group-field.php:
|
549 |
-
#: includes/fields/class-acf-field-tab.php:
|
550 |
msgid "Instructions"
|
551 |
msgstr "Ohjeet"
|
552 |
|
553 |
-
#: includes/admin/views/field-group-field.php:
|
554 |
msgid "Instructions for authors. Shown when submitting data"
|
555 |
msgstr "Ohjeet kirjoittajille. Näytetään muokkausnäkymässä"
|
556 |
|
557 |
-
#: includes/admin/views/field-group-field.php:
|
558 |
msgid "Required?"
|
559 |
msgstr "Pakollinen?"
|
560 |
|
561 |
-
#: includes/admin/views/field-group-field.php:
|
562 |
msgid "Wrapper Attributes"
|
563 |
msgstr "Kääreen attribuutit"
|
564 |
|
565 |
-
#: includes/admin/views/field-group-field.php:
|
566 |
msgid "width"
|
567 |
msgstr "leveys"
|
568 |
|
569 |
-
#: includes/admin/views/field-group-field.php:
|
570 |
msgid "class"
|
571 |
msgstr "luokka"
|
572 |
|
573 |
-
#: includes/admin/views/field-group-field.php:
|
574 |
msgid "id"
|
575 |
msgstr "id"
|
576 |
|
577 |
-
#: includes/admin/views/field-group-field.php:
|
578 |
msgid "Close Field"
|
579 |
msgstr "Sulje kenttä"
|
580 |
|
@@ -583,22 +578,23 @@ msgid "Order"
|
|
583 |
msgstr "Järjestys"
|
584 |
|
585 |
#: includes/admin/views/field-group-fields.php:5
|
586 |
-
#: includes/fields/class-acf-field-
|
587 |
-
#: includes/fields/class-acf-field-
|
588 |
-
#: includes/fields/class-acf-field-
|
589 |
-
#:
|
|
|
590 |
msgid "Label"
|
591 |
msgstr "Nimiö"
|
592 |
|
593 |
#: includes/admin/views/field-group-fields.php:6
|
594 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
595 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
596 |
msgid "Name"
|
597 |
msgstr "Nimi"
|
598 |
|
599 |
#: includes/admin/views/field-group-fields.php:7
|
600 |
msgid "Key"
|
601 |
-
msgstr ""
|
602 |
|
603 |
#: includes/admin/views/field-group-fields.php:8
|
604 |
msgid "Type"
|
@@ -660,12 +656,12 @@ msgid "Label placement"
|
|
660 |
msgstr "Nimiön sijainti"
|
661 |
|
662 |
#: includes/admin/views/field-group-options.php:62
|
663 |
-
#: includes/fields/class-acf-field-tab.php:
|
664 |
msgid "Top aligned"
|
665 |
msgstr "Tasaa ylös"
|
666 |
|
667 |
#: includes/admin/views/field-group-options.php:63
|
668 |
-
#: includes/fields/class-acf-field-tab.php:
|
669 |
msgid "Left Aligned"
|
670 |
msgstr "Tasaa vasemmalle"
|
671 |
|
@@ -751,7 +747,7 @@ msgid "Page Attributes"
|
|
751 |
msgstr "Sivun attribuutit"
|
752 |
|
753 |
#: includes/admin/views/field-group-options.php:126
|
754 |
-
#: includes/fields/class-acf-field-relationship.php:
|
755 |
msgid "Featured Image"
|
756 |
msgstr "Artikkelikuva"
|
757 |
|
@@ -831,22 +827,22 @@ msgid "Upgrading data to version %s"
|
|
831 |
msgstr "Päivitetään data versioon %s"
|
832 |
|
833 |
#: includes/admin/views/install-notice.php:8
|
834 |
-
#: pro/fields/class-acf-field-repeater.php:
|
835 |
msgid "Repeater"
|
836 |
msgstr "Toista rivejä"
|
837 |
|
838 |
#: includes/admin/views/install-notice.php:9
|
839 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
840 |
msgid "Flexible Content"
|
841 |
msgstr "Joustava sisältö"
|
842 |
|
843 |
#: includes/admin/views/install-notice.php:10
|
844 |
-
#: pro/fields/class-acf-field-gallery.php:
|
845 |
msgid "Gallery"
|
846 |
msgstr "Galleria"
|
847 |
|
848 |
#: includes/admin/views/install-notice.php:11
|
849 |
-
#: pro/locations/class-acf-location-options-page.php:
|
850 |
msgid "Options Page"
|
851 |
msgstr "Asetukset-sivu"
|
852 |
|
@@ -873,17 +869,17 @@ msgid ""
|
|
873 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
874 |
"latest version."
|
875 |
msgstr ""
|
|
|
|
|
876 |
|
877 |
#: includes/admin/views/install.php:7
|
878 |
msgid "Reading upgrade tasks..."
|
879 |
msgstr "Luetaan päivitys tehtäviä..."
|
880 |
|
881 |
#: includes/admin/views/install.php:11
|
882 |
-
#,
|
883 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
884 |
-
msgstr ""
|
885 |
-
"Tietokanta on päivitetty. <a href=\"%s\">Palaa verkon hallinnan "
|
886 |
-
"ohjausnäkymään</a>"
|
887 |
|
888 |
#: includes/admin/views/settings-addons.php:17
|
889 |
msgid "Download & Install"
|
@@ -1145,7 +1141,7 @@ msgstr ""
|
|
1145 |
"vanhempien välillä"
|
1146 |
|
1147 |
#: includes/admin/views/settings-info.php:144
|
1148 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1149 |
msgid "Page Link"
|
1150 |
msgstr "Sivun URL"
|
1151 |
|
@@ -1228,7 +1224,7 @@ msgstr ""
|
|
1228 |
"klikkaat Tuo-painiketta."
|
1229 |
|
1230 |
#: includes/admin/views/settings-tools.php:77
|
1231 |
-
#: includes/fields/class-acf-field-file.php:
|
1232 |
msgid "Select File"
|
1233 |
msgstr "Valitse tiedosto"
|
1234 |
|
@@ -1252,49 +1248,49 @@ msgstr "Iso"
|
|
1252 |
msgid "Full Size"
|
1253 |
msgstr "Täysikokoinen"
|
1254 |
|
1255 |
-
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:
|
1256 |
-
#: pro/fields/class-acf-field-clone.php:
|
1257 |
msgid "(no title)"
|
1258 |
msgstr "(ei otsikkoa)"
|
1259 |
|
1260 |
-
#: includes/api/api-helpers.php:
|
1261 |
-
#: includes/fields/class-acf-field-page_link.php:
|
1262 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1263 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1264 |
msgid "Parent"
|
1265 |
msgstr "Vanhempi"
|
1266 |
|
1267 |
-
#: includes/api/api-helpers.php:
|
1268 |
#, php-format
|
1269 |
msgid "Image width must be at least %dpx."
|
1270 |
msgstr "Kuvan leveys täytyy olla vähintään %dpx."
|
1271 |
|
1272 |
-
#: includes/api/api-helpers.php:
|
1273 |
#, php-format
|
1274 |
msgid "Image width must not exceed %dpx."
|
1275 |
msgstr "Kuvan leveys ei saa ylittää %dpx."
|
1276 |
|
1277 |
-
#: includes/api/api-helpers.php:
|
1278 |
#, php-format
|
1279 |
msgid "Image height must be at least %dpx."
|
1280 |
msgstr "Kuvan korkeus täytyy olla vähintään %dpx."
|
1281 |
|
1282 |
-
#: includes/api/api-helpers.php:
|
1283 |
#, php-format
|
1284 |
msgid "Image height must not exceed %dpx."
|
1285 |
msgstr "Kuvan korkeus ei saa ylittää %dpx."
|
1286 |
|
1287 |
-
#: includes/api/api-helpers.php:
|
1288 |
#, php-format
|
1289 |
msgid "File size must be at least %s."
|
1290 |
msgstr "Tiedoston koko täytyy olla vähintään %s."
|
1291 |
|
1292 |
-
#: includes/api/api-helpers.php:
|
1293 |
#, php-format
|
1294 |
msgid "File size must must not exceed %s."
|
1295 |
msgstr "Tiedoston koko ei saa ylittää %s:"
|
1296 |
|
1297 |
-
#: includes/api/api-helpers.php:
|
1298 |
#, php-format
|
1299 |
msgid "File type must be %s."
|
1300 |
msgstr "Tiedoston koko täytyy olla %s."
|
@@ -1319,942 +1315,963 @@ msgstr "Relationaalinen"
|
|
1319 |
msgid "jQuery"
|
1320 |
msgstr "jQuery"
|
1321 |
|
1322 |
-
#: includes/fields.php:149
|
1323 |
-
#: includes/fields/class-acf-field-group.php:
|
1324 |
-
#: includes/fields/class-acf-field-
|
1325 |
-
#:
|
1326 |
-
#:
|
1327 |
-
#: pro/fields/class-acf-field-
|
1328 |
-
#: pro/fields/class-acf-field-
|
|
|
|
|
1329 |
msgid "Layout"
|
1330 |
msgstr "Asettelu"
|
1331 |
|
1332 |
-
#: includes/fields.php:
|
1333 |
msgid "Field type does not exist"
|
1334 |
msgstr "Kenttätyyppi ei ole olemassa"
|
1335 |
|
1336 |
-
#: includes/fields.php:
|
1337 |
-
#, fuzzy
|
1338 |
msgid "Unknown"
|
1339 |
-
msgstr "Tuntematon
|
1340 |
|
1341 |
-
#: includes/fields/class-acf-field-
|
1342 |
-
|
1343 |
-
|
1344 |
-
msgstr "Valintaruutu"
|
1345 |
|
1346 |
-
#: includes/fields/class-acf-field-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
#: includes/fields/class-acf-field-checkbox.php:207
|
1351 |
-
#, fuzzy
|
1352 |
-
msgid "Add new choice"
|
1353 |
-
msgstr "Lisää uusi kenttä"
|
1354 |
-
|
1355 |
-
#: includes/fields/class-acf-field-checkbox.php:246
|
1356 |
-
#: includes/fields/class-acf-field-radio.php:250
|
1357 |
-
#: includes/fields/class-acf-field-select.php:466
|
1358 |
msgid "Choices"
|
1359 |
msgstr "Valinnat"
|
1360 |
|
1361 |
-
#: includes/fields/class-acf-field-
|
1362 |
-
#: includes/fields/class-acf-field-
|
1363 |
-
#: includes/fields/class-acf-field-
|
|
|
1364 |
msgid "Enter each choice on a new line."
|
1365 |
msgstr "Syötä jokainen valinta uudelle riville."
|
1366 |
|
1367 |
-
#: includes/fields/class-acf-field-
|
1368 |
-
#: includes/fields/class-acf-field-
|
1369 |
-
#: includes/fields/class-acf-field-
|
|
|
1370 |
msgid "For more control, you may specify both a value and label like this:"
|
1371 |
msgstr "Halutessasi voit määrittää sekä arvon että nimiön tähän tapaan:"
|
1372 |
|
1373 |
-
#: includes/fields/class-acf-field-
|
1374 |
-
#: includes/fields/class-acf-field-
|
1375 |
-
#: includes/fields/class-acf-field-
|
|
|
1376 |
msgid "red : Red"
|
1377 |
msgstr "koira_istuu : Koira istuu"
|
1378 |
|
1379 |
-
#: includes/fields/class-acf-field-
|
1380 |
-
|
1381 |
-
|
|
|
|
|
|
|
|
|
|
|
1382 |
msgstr "Salli tyhjä?"
|
1383 |
|
1384 |
-
#: includes/fields/class-acf-field-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
#: includes/fields/class-acf-field-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
#: includes/fields/class-acf-field-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
#: includes/fields/class-acf-field-checkbox.php:277
|
1399 |
-
#: includes/fields/class-acf-field-color_picker.php:146
|
1400 |
-
#: includes/fields/class-acf-field-email.php:133
|
1401 |
-
#: includes/fields/class-acf-field-number.php:145
|
1402 |
-
#: includes/fields/class-acf-field-radio.php:291
|
1403 |
-
#: includes/fields/class-acf-field-select.php:475
|
1404 |
-
#: includes/fields/class-acf-field-text.php:142
|
1405 |
-
#: includes/fields/class-acf-field-textarea.php:139
|
1406 |
-
#: includes/fields/class-acf-field-true_false.php:150
|
1407 |
-
#: includes/fields/class-acf-field-url.php:114
|
1408 |
-
#: includes/fields/class-acf-field-wysiwyg.php:436
|
1409 |
msgid "Default Value"
|
1410 |
msgstr "Oletusarvo"
|
1411 |
|
1412 |
-
#: includes/fields/class-acf-field-
|
1413 |
-
#: includes/fields/class-acf-field-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
#: includes/fields/class-acf-field-
|
1418 |
-
#: includes/fields/class-acf-field-
|
1419 |
-
|
1420 |
-
|
|
|
|
|
1421 |
|
1422 |
-
#: includes/fields/class-acf-field-
|
1423 |
-
#: includes/fields/class-acf-field-
|
|
|
1424 |
msgid "Horizontal"
|
1425 |
msgstr "Vaakasuuntainen"
|
1426 |
|
1427 |
-
#: includes/fields/class-acf-field-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
msgid "Prepend an extra checkbox to toggle all choices"
|
1433 |
-
msgstr "Näytetäänkö ”Valitse kaikki” valintaruutu"
|
1434 |
|
1435 |
-
#: includes/fields/class-acf-field-
|
1436 |
-
#: includes/fields/class-acf-field-
|
1437 |
-
#: includes/fields/class-acf-field-
|
1438 |
-
#: includes/fields/class-acf-field-
|
1439 |
-
#: includes/fields/class-acf-field-
|
1440 |
-
#: includes/fields/class-acf-field-
|
|
|
1441 |
msgid "Return Value"
|
1442 |
msgstr "Palauta arvo"
|
1443 |
|
1444 |
-
#: includes/fields/class-acf-field-
|
1445 |
-
#: includes/fields/class-acf-field-
|
1446 |
-
#: includes/fields/class-acf-field-
|
1447 |
-
#: includes/fields/class-acf-field-
|
1448 |
-
#: includes/fields/class-acf-field-
|
|
|
1449 |
msgid "Specify the returned value on front end"
|
1450 |
msgstr "Määritä palautettu arvo front endiin"
|
1451 |
|
1452 |
-
#: includes/fields/class-acf-field-
|
1453 |
-
#: includes/fields/class-acf-field-
|
1454 |
-
#: includes/fields/class-acf-field-
|
|
|
1455 |
msgid "Value"
|
1456 |
msgstr "Arvo"
|
1457 |
|
1458 |
-
#: includes/fields/class-acf-field-
|
1459 |
-
#: includes/fields/class-acf-field-
|
1460 |
-
#: includes/fields/class-acf-field-
|
|
|
1461 |
msgid "Both (Array)"
|
1462 |
msgstr "Molemmat (palautusmuoto on tällöin taulukko)"
|
1463 |
|
1464 |
-
#: includes/fields/class-acf-field-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1465 |
msgid "Color Picker"
|
1466 |
msgstr "Värinvalitsin"
|
1467 |
|
1468 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1469 |
msgid "Clear"
|
1470 |
msgstr "Tyhjennä"
|
1471 |
|
1472 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1473 |
msgid "Default"
|
1474 |
msgstr "Oletus"
|
1475 |
|
1476 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1477 |
msgid "Select Color"
|
1478 |
msgstr "Valitse väri"
|
1479 |
|
1480 |
-
#: includes/fields/class-acf-field-color_picker.php:
|
1481 |
msgid "Current Color"
|
1482 |
msgstr "Nykyinen väri"
|
1483 |
|
1484 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1485 |
msgid "Date Picker"
|
1486 |
msgstr "Päivämäärävalitsin"
|
1487 |
|
1488 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1489 |
msgctxt "Date Picker JS closeText"
|
1490 |
msgid "Done"
|
1491 |
msgstr "Sulje"
|
1492 |
|
1493 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1494 |
msgctxt "Date Picker JS currentText"
|
1495 |
msgid "Today"
|
1496 |
msgstr "Tänään"
|
1497 |
|
1498 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1499 |
msgctxt "Date Picker JS nextText"
|
1500 |
msgid "Next"
|
1501 |
msgstr "Seuraava"
|
1502 |
|
1503 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1504 |
msgctxt "Date Picker JS prevText"
|
1505 |
msgid "Prev"
|
1506 |
msgstr "Edellinen"
|
1507 |
|
1508 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1509 |
msgctxt "Date Picker JS weekHeader"
|
1510 |
msgid "Wk"
|
1511 |
msgstr "Vk"
|
1512 |
|
1513 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1514 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1515 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1516 |
msgid "Display Format"
|
1517 |
msgstr "Muokkausnäkymän muoto"
|
1518 |
|
1519 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1520 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1521 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1522 |
msgid "The format displayed when editing a post"
|
1523 |
msgstr "Missä muodossa haluat päivämäärän näkyvän muokkausnäkymässä?"
|
1524 |
|
1525 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1526 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1527 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1528 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1529 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1530 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1531 |
-
#, fuzzy
|
1532 |
msgid "Custom:"
|
1533 |
-
msgstr "
|
1534 |
|
1535 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1536 |
-
#, fuzzy
|
1537 |
msgid "Save Format"
|
1538 |
msgstr "Tallennusmuoto"
|
1539 |
|
1540 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1541 |
-
#, fuzzy
|
1542 |
msgid "The format used when saving a value"
|
1543 |
-
msgstr "
|
1544 |
|
1545 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1546 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1547 |
-
#: includes/fields/class-acf-field-post_object.php:
|
1548 |
-
#: includes/fields/class-acf-field-relationship.php:
|
1549 |
-
#: includes/fields/class-acf-field-select.php:
|
1550 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1551 |
msgid "Return Format"
|
1552 |
msgstr "Palautusmuoto"
|
1553 |
|
1554 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1555 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1556 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
1557 |
msgid "The format returned via template functions"
|
1558 |
msgstr ""
|
1559 |
"Missä muodossa haluat päivämäärän näkyvän, kun sivupohjan funktiot "
|
1560 |
"palauttavat sen?"
|
1561 |
|
1562 |
-
#: includes/fields/class-acf-field-date_picker.php:
|
1563 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1564 |
msgid "Week Starts On"
|
1565 |
msgstr "Viikon ensimmäinen päivä"
|
1566 |
|
1567 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1568 |
msgid "Date Time Picker"
|
1569 |
msgstr "Päivämäärä- ja kellonaikavalitsin"
|
1570 |
|
1571 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1572 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1573 |
msgid "Choose Time"
|
1574 |
msgstr "Valitse aika"
|
1575 |
|
1576 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1577 |
msgctxt "Date Time Picker JS timeText"
|
1578 |
msgid "Time"
|
1579 |
msgstr "Aika"
|
1580 |
|
1581 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1582 |
msgctxt "Date Time Picker JS hourText"
|
1583 |
msgid "Hour"
|
1584 |
msgstr "Tunti"
|
1585 |
|
1586 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1587 |
msgctxt "Date Time Picker JS minuteText"
|
1588 |
msgid "Minute"
|
1589 |
msgstr "minuuttia"
|
1590 |
|
1591 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1592 |
msgctxt "Date Time Picker JS secondText"
|
1593 |
msgid "Second"
|
1594 |
msgstr "Sekunti"
|
1595 |
|
1596 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1597 |
msgctxt "Date Time Picker JS millisecText"
|
1598 |
msgid "Millisecond"
|
1599 |
msgstr "millisekunti"
|
1600 |
|
1601 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1602 |
msgctxt "Date Time Picker JS microsecText"
|
1603 |
msgid "Microsecond"
|
1604 |
msgstr "mikrosekunti"
|
1605 |
|
1606 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1607 |
msgctxt "Date Time Picker JS timezoneText"
|
1608 |
msgid "Time Zone"
|
1609 |
msgstr "Aikavyöhyke"
|
1610 |
|
1611 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1612 |
msgctxt "Date Time Picker JS currentText"
|
1613 |
msgid "Now"
|
1614 |
msgstr "Nyt"
|
1615 |
|
1616 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1617 |
msgctxt "Date Time Picker JS closeText"
|
1618 |
msgid "Done"
|
1619 |
msgstr "Sulje"
|
1620 |
|
1621 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1622 |
msgctxt "Date Time Picker JS selectText"
|
1623 |
msgid "Select"
|
1624 |
msgstr "Valitse"
|
1625 |
|
1626 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1627 |
msgctxt "Date Time Picker JS amText"
|
1628 |
msgid "AM"
|
1629 |
msgstr "AM"
|
1630 |
|
1631 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1632 |
msgctxt "Date Time Picker JS amTextShort"
|
1633 |
msgid "A"
|
1634 |
msgstr "A"
|
1635 |
|
1636 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1637 |
msgctxt "Date Time Picker JS pmText"
|
1638 |
msgid "PM"
|
1639 |
msgstr "PM"
|
1640 |
|
1641 |
-
#: includes/fields/class-acf-field-date_time_picker.php:
|
1642 |
msgctxt "Date Time Picker JS pmTextShort"
|
1643 |
msgid "P"
|
1644 |
msgstr "P"
|
1645 |
|
1646 |
-
#: includes/fields/class-acf-field-email.php:
|
1647 |
msgid "Email"
|
1648 |
msgstr "Sähköposti"
|
1649 |
|
1650 |
-
#: includes/fields/class-acf-field-email.php:
|
1651 |
-
#: includes/fields/class-acf-field-number.php:
|
1652 |
-
#: includes/fields/class-acf-field-
|
1653 |
-
#: includes/fields/class-acf-field-text.php:
|
1654 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1655 |
-
#: includes/fields/class-acf-field-url.php:
|
1656 |
-
#: includes/fields/class-acf-field-wysiwyg.php:437
|
1657 |
-
msgid "Appears when creating a new post"
|
1658 |
-
msgstr "Kentän oletusarvo"
|
1659 |
-
|
1660 |
-
#: includes/fields/class-acf-field-email.php:142
|
1661 |
-
#: includes/fields/class-acf-field-number.php:154
|
1662 |
-
#: includes/fields/class-acf-field-password.php:134
|
1663 |
-
#: includes/fields/class-acf-field-text.php:151
|
1664 |
-
#: includes/fields/class-acf-field-textarea.php:148
|
1665 |
-
#: includes/fields/class-acf-field-url.php:123
|
1666 |
msgid "Placeholder Text"
|
1667 |
msgstr "Täyteteksti"
|
1668 |
|
1669 |
-
#: includes/fields/class-acf-field-email.php:
|
1670 |
-
#: includes/fields/class-acf-field-number.php:
|
1671 |
-
#: includes/fields/class-acf-field-password.php:
|
1672 |
-
#: includes/fields/class-acf-field-text.php:
|
1673 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1674 |
-
#: includes/fields/class-acf-field-url.php:
|
1675 |
msgid "Appears within the input"
|
1676 |
msgstr "Näkyy input-kentän sisällä"
|
1677 |
|
1678 |
-
#: includes/fields/class-acf-field-email.php:
|
1679 |
-
#: includes/fields/class-acf-field-number.php:
|
1680 |
-
#: includes/fields/class-acf-field-password.php:
|
1681 |
-
#: includes/fields/class-acf-field-
|
|
|
1682 |
msgid "Prepend"
|
1683 |
msgstr "Etuliite"
|
1684 |
|
1685 |
-
#: includes/fields/class-acf-field-email.php:
|
1686 |
-
#: includes/fields/class-acf-field-number.php:
|
1687 |
-
#: includes/fields/class-acf-field-password.php:
|
1688 |
-
#: includes/fields/class-acf-field-
|
|
|
1689 |
msgid "Appears before the input"
|
1690 |
msgstr "Näkyy ennen input-kenttää"
|
1691 |
|
1692 |
-
#: includes/fields/class-acf-field-email.php:
|
1693 |
-
#: includes/fields/class-acf-field-number.php:
|
1694 |
-
#: includes/fields/class-acf-field-password.php:
|
1695 |
-
#: includes/fields/class-acf-field-
|
|
|
1696 |
msgid "Append"
|
1697 |
msgstr "Loppuliite"
|
1698 |
|
1699 |
-
#: includes/fields/class-acf-field-email.php:
|
1700 |
-
#: includes/fields/class-acf-field-number.php:
|
1701 |
-
#: includes/fields/class-acf-field-password.php:
|
1702 |
-
#: includes/fields/class-acf-field-
|
|
|
1703 |
msgid "Appears after the input"
|
1704 |
msgstr "Näkyy input-kentän jälkeen"
|
1705 |
|
1706 |
-
#: includes/fields/class-acf-field-file.php:
|
1707 |
msgid "File"
|
1708 |
msgstr "Tiedosto"
|
1709 |
|
1710 |
-
#: includes/fields/class-acf-field-file.php:
|
1711 |
msgid "Edit File"
|
1712 |
msgstr "Muokkaa tiedostoa"
|
1713 |
|
1714 |
-
#: includes/fields/class-acf-field-file.php:
|
1715 |
msgid "Update File"
|
1716 |
msgstr "Päivitä tiedosto"
|
1717 |
|
1718 |
-
#: includes/fields/class-acf-field-file.php:
|
1719 |
-
#: includes/fields/class-acf-field-image.php:
|
1720 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1721 |
msgid "Uploaded to this post"
|
1722 |
msgstr "Tähän kenttäryhmään ladatut kuvat"
|
1723 |
|
1724 |
-
#: includes/fields/class-acf-field-file.php:
|
1725 |
msgid "File name"
|
1726 |
msgstr "Tiedoston nimi"
|
1727 |
|
1728 |
-
#: includes/fields/class-acf-field-file.php:
|
1729 |
-
#: includes/fields/class-acf-field-file.php:
|
1730 |
-
#: includes/fields/class-acf-field-file.php:
|
1731 |
-
#: includes/fields/class-acf-field-image.php:
|
1732 |
-
#: includes/fields/class-acf-field-image.php:
|
1733 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1734 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1735 |
msgid "File size"
|
1736 |
msgstr "Tiedoston koko"
|
1737 |
|
1738 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1739 |
msgid "Add File"
|
1740 |
msgstr "Lisää tiedosto"
|
1741 |
|
1742 |
-
#: includes/fields/class-acf-field-file.php:
|
1743 |
msgid "File Array"
|
1744 |
msgstr "Tiedosto"
|
1745 |
|
1746 |
-
#: includes/fields/class-acf-field-file.php:
|
1747 |
msgid "File URL"
|
1748 |
msgstr "Tiedoston URL"
|
1749 |
|
1750 |
-
#: includes/fields/class-acf-field-file.php:
|
1751 |
msgid "File ID"
|
1752 |
msgstr "Tiedoston ID"
|
1753 |
|
1754 |
-
#: includes/fields/class-acf-field-file.php:
|
1755 |
-
#: includes/fields/class-acf-field-image.php:
|
1756 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1757 |
msgid "Library"
|
1758 |
msgstr "Kirjasto"
|
1759 |
|
1760 |
-
#: includes/fields/class-acf-field-file.php:
|
1761 |
-
#: includes/fields/class-acf-field-image.php:
|
1762 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1763 |
msgid "Limit the media library choice"
|
1764 |
msgstr "Rajoita valintaa mediakirjastosta"
|
1765 |
|
1766 |
-
#: includes/fields/class-acf-field-file.php:
|
1767 |
-
#: includes/fields/class-acf-field-image.php:
|
1768 |
-
#: includes/locations/class-acf-location-attachment.php:
|
1769 |
-
#: includes/locations/class-acf-location-comment.php:
|
1770 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
1771 |
-
#: includes/locations/class-acf-location-taxonomy.php:
|
1772 |
-
#: includes/locations/class-acf-location-user-form.php:
|
1773 |
-
#: includes/locations/class-acf-location-user-role.php:
|
1774 |
-
#: includes/locations/class-acf-location-widget.php:
|
1775 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1776 |
msgid "All"
|
1777 |
msgstr "Kaikki"
|
1778 |
|
1779 |
-
#: includes/fields/class-acf-field-file.php:
|
1780 |
-
#: includes/fields/class-acf-field-image.php:
|
1781 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1782 |
msgid "Uploaded to post"
|
1783 |
msgstr "Vain tähän artikkeliin ladatut"
|
1784 |
|
1785 |
-
#: includes/fields/class-acf-field-file.php:
|
1786 |
-
#: includes/fields/class-acf-field-image.php:
|
1787 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1788 |
msgid "Minimum"
|
1789 |
msgstr "Minimiarvo(t)"
|
1790 |
|
1791 |
-
#: includes/fields/class-acf-field-file.php:
|
1792 |
-
#: includes/fields/class-acf-field-file.php:
|
1793 |
msgid "Restrict which files can be uploaded"
|
1794 |
msgstr "Määritä tiedoston koko"
|
1795 |
|
1796 |
-
#: includes/fields/class-acf-field-file.php:
|
1797 |
-
#: includes/fields/class-acf-field-image.php:
|
1798 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1799 |
msgid "Maximum"
|
1800 |
msgstr "Maksimiarvo(t)"
|
1801 |
|
1802 |
-
#: includes/fields/class-acf-field-file.php:
|
1803 |
-
#: includes/fields/class-acf-field-image.php:
|
1804 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1805 |
msgid "Allowed file types"
|
1806 |
msgstr "Sallitut tiedostotyypit"
|
1807 |
|
1808 |
-
#: includes/fields/class-acf-field-file.php:
|
1809 |
-
#: includes/fields/class-acf-field-image.php:
|
1810 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1811 |
msgid "Comma separated list. Leave blank for all types"
|
1812 |
msgstr "Erota pilkulla. Jätä tyhjäksi, jos haluat sallia kaikki tiedostyypit"
|
1813 |
|
1814 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1815 |
msgid "Google Map"
|
1816 |
msgstr "Google Kartta"
|
1817 |
|
1818 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1819 |
msgid "Locating"
|
1820 |
msgstr "Paikannus"
|
1821 |
|
1822 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1823 |
msgid "Sorry, this browser does not support geolocation"
|
1824 |
msgstr "Pahoittelut, mutta tämä selain ei tuo paikannusta"
|
1825 |
|
1826 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1827 |
msgid "Clear location"
|
1828 |
msgstr "Tyhjennä paikkatieto"
|
1829 |
|
1830 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1831 |
msgid "Find current location"
|
1832 |
msgstr "Etsi nykyinen sijainti"
|
1833 |
|
1834 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1835 |
msgid "Search for address..."
|
1836 |
msgstr "Etsi osoite..."
|
1837 |
|
1838 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1839 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1840 |
msgid "Center"
|
1841 |
msgstr "Sijainti"
|
1842 |
|
1843 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1844 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1845 |
msgid "Center the initial map"
|
1846 |
msgstr "Kartan oletussijainti"
|
1847 |
|
1848 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1849 |
msgid "Zoom"
|
1850 |
msgstr "Zoomaus"
|
1851 |
|
1852 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1853 |
msgid "Set the initial zoom level"
|
1854 |
msgstr "Aseta oletuszoomaus"
|
1855 |
|
1856 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1857 |
-
#: includes/fields/class-acf-field-image.php:
|
1858 |
-
#: includes/fields/class-acf-field-image.php:
|
1859 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1860 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1861 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1862 |
msgid "Height"
|
1863 |
msgstr "Korkeus"
|
1864 |
|
1865 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1866 |
msgid "Customise the map height"
|
1867 |
msgstr "Muotoile kartan korkeus"
|
1868 |
|
1869 |
-
#: includes/fields/class-acf-field-group.php:
|
1870 |
-
#, fuzzy
|
1871 |
msgid "Group"
|
1872 |
-
msgstr "Ryhmä
|
1873 |
|
1874 |
-
#: includes/fields/class-acf-field-group.php:
|
1875 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1876 |
msgid "Sub Fields"
|
1877 |
msgstr "Alakentät"
|
1878 |
|
1879 |
-
#: includes/fields/class-acf-field-group.php:
|
1880 |
-
#: pro/fields/class-acf-field-clone.php:
|
1881 |
msgid "Specify the style used to render the selected fields"
|
1882 |
msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa"
|
1883 |
|
1884 |
-
#: includes/fields/class-acf-field-group.php:
|
1885 |
-
#: pro/fields/class-acf-field-clone.php:
|
1886 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1887 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1888 |
msgid "Block"
|
1889 |
msgstr "Lohko"
|
1890 |
|
1891 |
-
#: includes/fields/class-acf-field-group.php:
|
1892 |
-
#: pro/fields/class-acf-field-clone.php:
|
1893 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1894 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1895 |
msgid "Table"
|
1896 |
msgstr "Taulukko"
|
1897 |
|
1898 |
-
#: includes/fields/class-acf-field-group.php:
|
1899 |
-
#: pro/fields/class-acf-field-clone.php:
|
1900 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1901 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1902 |
msgid "Row"
|
1903 |
msgstr "Rivi"
|
1904 |
|
1905 |
-
#: includes/fields/class-acf-field-image.php:
|
1906 |
msgid "Image"
|
1907 |
msgstr "Kuva"
|
1908 |
|
1909 |
-
#: includes/fields/class-acf-field-image.php:
|
1910 |
msgid "Select Image"
|
1911 |
msgstr "Valitse kuva"
|
1912 |
|
1913 |
-
#: includes/fields/class-acf-field-image.php:
|
1914 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1915 |
msgid "Edit Image"
|
1916 |
msgstr "Muokkaa kuvaa"
|
1917 |
|
1918 |
-
#: includes/fields/class-acf-field-image.php:
|
1919 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1920 |
msgid "Update Image"
|
1921 |
msgstr "Päivitä kuva"
|
1922 |
|
1923 |
-
#: includes/fields/class-acf-field-image.php:
|
1924 |
msgid "All images"
|
1925 |
msgstr "Kaikki kuvat"
|
1926 |
|
1927 |
-
#: includes/fields/class-acf-field-image.php:
|
1928 |
-
#: includes/fields/class-acf-field-link.php:153 includes/input.php:267
|
1929 |
-
#: pro/fields/class-acf-field-gallery.php:358
|
1930 |
-
#: pro/fields/class-acf-field-gallery.php:546
|
1931 |
-
msgid "Remove"
|
1932 |
-
msgstr "Poista"
|
1933 |
-
|
1934 |
-
#: includes/fields/class-acf-field-image.php:158
|
1935 |
msgid "No image selected"
|
1936 |
msgstr "Ei kuvia valittu"
|
1937 |
|
1938 |
-
#: includes/fields/class-acf-field-image.php:
|
1939 |
msgid "Add Image"
|
1940 |
msgstr "Lisää kuva"
|
1941 |
|
1942 |
-
#: includes/fields/class-acf-field-image.php:
|
1943 |
msgid "Image Array"
|
1944 |
msgstr "Kuva"
|
1945 |
|
1946 |
-
#: includes/fields/class-acf-field-image.php:
|
1947 |
msgid "Image URL"
|
1948 |
msgstr "Kuvan URL"
|
1949 |
|
1950 |
-
#: includes/fields/class-acf-field-image.php:
|
1951 |
msgid "Image ID"
|
1952 |
msgstr "Kuvan ID"
|
1953 |
|
1954 |
-
#: includes/fields/class-acf-field-image.php:
|
1955 |
msgid "Preview Size"
|
1956 |
msgstr "Esikatselukuvan koko"
|
1957 |
|
1958 |
-
#: includes/fields/class-acf-field-image.php:
|
1959 |
msgid "Shown when entering data"
|
1960 |
msgstr "Näytetään muokkausnäkymässä"
|
1961 |
|
1962 |
-
#: includes/fields/class-acf-field-image.php:
|
1963 |
-
#: includes/fields/class-acf-field-image.php:
|
1964 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1965 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1966 |
msgid "Restrict which images can be uploaded"
|
1967 |
msgstr "Määritä millaisia kuvia voidaan ladata"
|
1968 |
|
1969 |
-
#: includes/fields/class-acf-field-image.php:
|
1970 |
-
#: includes/fields/class-acf-field-image.php:
|
1971 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1972 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1973 |
-
#: pro/fields/class-acf-field-gallery.php:
|
1974 |
msgid "Width"
|
1975 |
msgstr "Leveys"
|
1976 |
|
1977 |
-
#: includes/fields/class-acf-field-link.php:
|
1978 |
-
#, fuzzy
|
1979 |
msgid "Link"
|
1980 |
-
msgstr "
|
1981 |
|
1982 |
-
#: includes/fields/class-acf-field-link.php:
|
1983 |
-
#, fuzzy
|
1984 |
msgid "Select Link"
|
1985 |
-
msgstr "Valitse
|
1986 |
|
1987 |
-
#: includes/fields/class-acf-field-link.php:
|
1988 |
msgid "Opens in a new window/tab"
|
1989 |
-
msgstr ""
|
1990 |
|
1991 |
-
#: includes/fields/class-acf-field-link.php:
|
1992 |
-
#, fuzzy
|
1993 |
msgid "Link Array"
|
1994 |
-
msgstr "
|
1995 |
|
1996 |
-
#: includes/fields/class-acf-field-link.php:
|
1997 |
-
#, fuzzy
|
1998 |
msgid "Link URL"
|
1999 |
-
msgstr "
|
2000 |
|
2001 |
-
#: includes/fields/class-acf-field-message.php:
|
2002 |
-
#: includes/fields/class-acf-field-message.php:
|
2003 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2004 |
msgid "Message"
|
2005 |
msgstr "Viesti"
|
2006 |
|
2007 |
-
#: includes/fields/class-acf-field-message.php:
|
2008 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2009 |
msgid "New Lines"
|
2010 |
msgstr "Uudet rivit"
|
2011 |
|
2012 |
-
#: includes/fields/class-acf-field-message.php:
|
2013 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2014 |
msgid "Controls how new lines are rendered"
|
2015 |
msgstr "Määrittää kuinka uudet rivit muotoillaan"
|
2016 |
|
2017 |
-
#: includes/fields/class-acf-field-message.php:
|
2018 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2019 |
msgid "Automatically add paragraphs"
|
2020 |
msgstr "Lisää automaattisesti kappale"
|
2021 |
|
2022 |
-
#: includes/fields/class-acf-field-message.php:
|
2023 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2024 |
msgid "Automatically add <br>"
|
2025 |
msgstr "Lisää automaattisesti <br>"
|
2026 |
|
2027 |
-
#: includes/fields/class-acf-field-message.php:
|
2028 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2029 |
msgid "No Formatting"
|
2030 |
msgstr "Ei muotoilua"
|
2031 |
|
2032 |
-
#: includes/fields/class-acf-field-message.php:
|
2033 |
msgid "Escape HTML"
|
2034 |
msgstr "Escape HTML"
|
2035 |
|
2036 |
-
#: includes/fields/class-acf-field-message.php:
|
2037 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2038 |
msgstr "Haluatko, että HTML-merkinnät näkyvät tekstinä?"
|
2039 |
|
2040 |
-
#: includes/fields/class-acf-field-number.php:
|
2041 |
msgid "Number"
|
2042 |
msgstr "Numero"
|
2043 |
|
2044 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2045 |
msgid "Minimum Value"
|
2046 |
msgstr "Minimiarvo"
|
2047 |
|
2048 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2049 |
msgid "Maximum Value"
|
2050 |
msgstr "Maksimiarvo"
|
2051 |
|
2052 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2053 |
msgid "Step Size"
|
2054 |
msgstr "Askelluksen koko"
|
2055 |
|
2056 |
-
#: includes/fields/class-acf-field-number.php:
|
2057 |
msgid "Value must be a number"
|
2058 |
msgstr "Arvon täytyy olla numero"
|
2059 |
|
2060 |
-
#: includes/fields/class-acf-field-number.php:
|
2061 |
#, php-format
|
2062 |
msgid "Value must be equal to or higher than %d"
|
2063 |
msgstr "Arvon täytyy olla sama tai suurempi kuin %d"
|
2064 |
|
2065 |
-
#: includes/fields/class-acf-field-number.php:
|
2066 |
#, php-format
|
2067 |
msgid "Value must be equal to or lower than %d"
|
2068 |
msgstr "Arvon täytyy olla sama tai pienempi kuin %d"
|
2069 |
|
2070 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2071 |
msgid "oEmbed"
|
2072 |
msgstr "oEmbed"
|
2073 |
|
2074 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2075 |
msgid "Enter URL"
|
2076 |
msgstr "Syötä URL"
|
2077 |
|
2078 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2079 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2080 |
msgid "Error."
|
2081 |
msgstr "Virhe."
|
2082 |
|
2083 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2084 |
msgid "No embed found for the given URL."
|
2085 |
msgstr "Upotettavaa ei löytynyt annetusta URL-osoitteesta."
|
2086 |
|
2087 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2088 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2089 |
msgid "Embed Size"
|
2090 |
msgstr "Upotuksen koko"
|
2091 |
|
2092 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2093 |
msgid "Archives"
|
2094 |
msgstr "Arkistot"
|
2095 |
|
2096 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2097 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2098 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2099 |
msgid "Filter by Post Type"
|
2100 |
msgstr "Suodata tyypin mukaan"
|
2101 |
|
2102 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2103 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2104 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2105 |
msgid "All post types"
|
2106 |
msgstr "Kaikki artikkelityypit"
|
2107 |
|
2108 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2109 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2110 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2111 |
msgid "Filter by Taxonomy"
|
2112 |
msgstr "Suodata taksonomian mukaan"
|
2113 |
|
2114 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2115 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2116 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2117 |
msgid "All taxonomies"
|
2118 |
msgstr "Kaikki taksonomiat"
|
2119 |
|
2120 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2121 |
-
#: includes/fields/class-acf-field-post_object.php:427
|
2122 |
-
#: includes/fields/class-acf-field-radio.php:259
|
2123 |
-
#: includes/fields/class-acf-field-select.php:484
|
2124 |
-
#: includes/fields/class-acf-field-taxonomy.php:799
|
2125 |
-
#: includes/fields/class-acf-field-user.php:423
|
2126 |
-
msgid "Allow Null?"
|
2127 |
-
msgstr "Salli tyhjä?"
|
2128 |
-
|
2129 |
-
#: includes/fields/class-acf-field-page_link.php:538
|
2130 |
msgid "Allow Archives URLs"
|
2131 |
msgstr "Salli arkistojen URL-osoitteita"
|
2132 |
|
2133 |
-
#: includes/fields/class-acf-field-page_link.php:
|
2134 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2135 |
-
#: includes/fields/class-acf-field-select.php:
|
2136 |
-
#: includes/fields/class-acf-field-user.php:
|
2137 |
msgid "Select multiple values?"
|
2138 |
msgstr "Valitse useita arvoja?"
|
2139 |
|
2140 |
-
#: includes/fields/class-acf-field-password.php:
|
2141 |
msgid "Password"
|
2142 |
msgstr "Salasana"
|
2143 |
|
2144 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2145 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2146 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2147 |
msgid "Post Object"
|
2148 |
msgstr "Artikkeliolio"
|
2149 |
|
2150 |
-
#: includes/fields/class-acf-field-post_object.php:
|
2151 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2152 |
msgid "Post ID"
|
2153 |
msgstr "Artikkelin ID"
|
2154 |
|
2155 |
-
#: includes/fields/class-acf-field-radio.php:
|
2156 |
msgid "Radio Button"
|
2157 |
msgstr "Valintanappi"
|
2158 |
|
2159 |
-
#: includes/fields/class-acf-field-radio.php:
|
2160 |
msgid "Other"
|
2161 |
msgstr "Muu"
|
2162 |
|
2163 |
-
#: includes/fields/class-acf-field-radio.php:
|
2164 |
msgid "Add 'other' choice to allow for custom values"
|
2165 |
msgstr "Lisää 'Muu' vaihtoehto salliaksesi mukautettuja arvoja"
|
2166 |
|
2167 |
-
#: includes/fields/class-acf-field-radio.php:
|
2168 |
msgid "Save Other"
|
2169 |
msgstr "Tallenna Muu"
|
2170 |
|
2171 |
-
#: includes/fields/class-acf-field-radio.php:
|
2172 |
msgid "Save 'other' values to the field's choices"
|
2173 |
msgstr "Tallenna 'Muu’-kentän arvo kentän valinnaksi"
|
2174 |
|
2175 |
-
#: includes/fields/class-acf-field-
|
|
|
|
|
|
|
|
|
2176 |
msgid "Relationship"
|
2177 |
msgstr "Suodata artikkeleita"
|
2178 |
|
2179 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2180 |
msgid "Minimum values reached ( {min} values )"
|
2181 |
msgstr "Pienin määrä arvoja saavutettu ({min} arvoa)"
|
2182 |
|
2183 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2184 |
msgid "Maximum values reached ( {max} values )"
|
2185 |
msgstr "Maksimiarvo saavutettu ( {max} artikkelia )"
|
2186 |
|
2187 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2188 |
msgid "Loading"
|
2189 |
msgstr "Ladataan"
|
2190 |
|
2191 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2192 |
msgid "No matches found"
|
2193 |
msgstr "Ei yhtään osumaa"
|
2194 |
|
2195 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2196 |
-
msgid "Search..."
|
2197 |
-
msgstr "Etsi..."
|
2198 |
-
|
2199 |
-
#: includes/fields/class-acf-field-relationship.php:594
|
2200 |
msgid "Select post type"
|
2201 |
msgstr "Valitse artikkelityyppi"
|
2202 |
|
2203 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2204 |
msgid "Select taxonomy"
|
2205 |
msgstr "Valitse taksonomia"
|
2206 |
|
2207 |
-
#: includes/fields/class-acf-field-relationship.php:
|
|
|
|
|
|
|
|
|
2208 |
msgid "Filters"
|
2209 |
msgstr "Suodattimet"
|
2210 |
|
2211 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2212 |
#: includes/locations/class-acf-location-post-type.php:27
|
2213 |
msgid "Post Type"
|
2214 |
msgstr "Artikkelityyppi"
|
2215 |
|
2216 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2217 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2218 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2219 |
msgid "Taxonomy"
|
2220 |
msgstr "Taksonomia"
|
2221 |
|
2222 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2223 |
msgid "Elements"
|
2224 |
msgstr "Elementit"
|
2225 |
|
2226 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2227 |
msgid "Selected elements will be displayed in each result"
|
2228 |
msgstr "Valitut elementit näytetään jokaisessa tuloksessa"
|
2229 |
|
2230 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2231 |
msgid "Minimum posts"
|
2232 |
msgstr "Vähimmäismäärä artikkeleita"
|
2233 |
|
2234 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2235 |
msgid "Maximum posts"
|
2236 |
msgstr "Maksimi artikkelit"
|
2237 |
|
2238 |
-
#: includes/fields/class-acf-field-relationship.php:
|
2239 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2240 |
#, php-format
|
2241 |
msgid "%s requires at least %s selection"
|
2242 |
msgid_plural "%s requires at least %s selections"
|
2243 |
msgstr[0] "%s vaatii vähintään %s valinnan"
|
2244 |
msgstr[1] "%s vaatii vähintään %s valintaa"
|
2245 |
|
2246 |
-
#: includes/fields/class-acf-field-select.php:
|
2247 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2248 |
msgctxt "noun"
|
2249 |
msgid "Select"
|
2250 |
msgstr "Valintalista"
|
2251 |
|
2252 |
-
#: includes/fields/class-acf-field-select.php:
|
2253 |
msgctxt "Select2 JS matches_1"
|
2254 |
msgid "One result is available, press enter to select it."
|
2255 |
msgstr "Yksi tulos on saatavilla. Valitse se painamalla enter-näppäintä."
|
2256 |
|
2257 |
-
#: includes/fields/class-acf-field-select.php:
|
2258 |
#, php-format
|
2259 |
msgctxt "Select2 JS matches_n"
|
2260 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
@@ -2262,86 +2279,86 @@ msgstr ""
|
|
2262 |
"%d tulosta on saatavilla. Voit navigoida tuloksian välillä käyttämällä "
|
2263 |
"”ylös” ja ”alas” -näppäimiä."
|
2264 |
|
2265 |
-
#: includes/fields/class-acf-field-select.php:
|
2266 |
msgctxt "Select2 JS matches_0"
|
2267 |
msgid "No matches found"
|
2268 |
msgstr "Osumia ei löytynyt"
|
2269 |
|
2270 |
-
#: includes/fields/class-acf-field-select.php:
|
2271 |
msgctxt "Select2 JS input_too_short_1"
|
2272 |
msgid "Please enter 1 or more characters"
|
2273 |
msgstr "Kirjoita yksi tai useampi merkki"
|
2274 |
|
2275 |
-
#: includes/fields/class-acf-field-select.php:
|
2276 |
#, php-format
|
2277 |
msgctxt "Select2 JS input_too_short_n"
|
2278 |
msgid "Please enter %d or more characters"
|
2279 |
msgstr "Kirjoita %d tai useampi merkkiä"
|
2280 |
|
2281 |
-
#: includes/fields/class-acf-field-select.php:
|
2282 |
msgctxt "Select2 JS input_too_long_1"
|
2283 |
msgid "Please delete 1 character"
|
2284 |
msgstr "Poista 1 merkki"
|
2285 |
|
2286 |
-
#: includes/fields/class-acf-field-select.php:
|
2287 |
#, php-format
|
2288 |
msgctxt "Select2 JS input_too_long_n"
|
2289 |
msgid "Please delete %d characters"
|
2290 |
msgstr "Poista %d merkkiä"
|
2291 |
|
2292 |
-
#: includes/fields/class-acf-field-select.php:
|
2293 |
msgctxt "Select2 JS selection_too_long_1"
|
2294 |
msgid "You can only select 1 item"
|
2295 |
msgstr "Voit valita vain yhden kohteen"
|
2296 |
|
2297 |
-
#: includes/fields/class-acf-field-select.php:
|
2298 |
#, php-format
|
2299 |
msgctxt "Select2 JS selection_too_long_n"
|
2300 |
msgid "You can only select %d items"
|
2301 |
msgstr "Voit valita vain %d kohdetta"
|
2302 |
|
2303 |
-
#: includes/fields/class-acf-field-select.php:
|
2304 |
msgctxt "Select2 JS load_more"
|
2305 |
msgid "Loading more results…"
|
2306 |
msgstr "Lataa lisää tuloksia …"
|
2307 |
|
2308 |
-
#: includes/fields/class-acf-field-select.php:
|
2309 |
msgctxt "Select2 JS searching"
|
2310 |
msgid "Searching…"
|
2311 |
msgstr "Etsii…"
|
2312 |
|
2313 |
-
#: includes/fields/class-acf-field-select.php:
|
2314 |
msgctxt "Select2 JS load_fail"
|
2315 |
msgid "Loading failed"
|
2316 |
msgstr "Lataus epäonnistui"
|
2317 |
|
2318 |
-
#: includes/fields/class-acf-field-select.php:
|
2319 |
msgctxt "verb"
|
2320 |
msgid "Select"
|
2321 |
msgstr "Valitse"
|
2322 |
|
2323 |
-
#: includes/fields/class-acf-field-select.php:
|
2324 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2325 |
msgid "Stylised UI"
|
2326 |
msgstr "Tyylikäs käyttöliittymä"
|
2327 |
|
2328 |
-
#: includes/fields/class-acf-field-select.php:
|
2329 |
msgid "Use AJAX to lazy load choices?"
|
2330 |
msgstr "Haluatko ladata valinnat laiskasti (käyttää AJAXia)?"
|
2331 |
|
2332 |
-
#: includes/fields/class-acf-field-select.php:
|
2333 |
msgid "Specify the value returned"
|
2334 |
msgstr "Määritä palautetun arvon muoto"
|
2335 |
|
2336 |
-
#: includes/fields/class-acf-field-separator.php:
|
2337 |
msgid "Separator"
|
2338 |
-
msgstr ""
|
2339 |
|
2340 |
-
#: includes/fields/class-acf-field-tab.php:
|
2341 |
msgid "Tab"
|
2342 |
msgstr "Välilehti"
|
2343 |
|
2344 |
-
#: includes/fields/class-acf-field-tab.php:
|
2345 |
msgid ""
|
2346 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2347 |
"field or flexible content field layout"
|
@@ -2349,7 +2366,7 @@ msgstr ""
|
|
2349 |
"Välilehtikentän ulkoasu rikkoutuu, jos lisätään taulukko-tyyli toistin "
|
2350 |
"kenttä tai joustava sisältö kenttä asettelu"
|
2351 |
|
2352 |
-
#: includes/fields/class-acf-field-tab.php:
|
2353 |
msgid ""
|
2354 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2355 |
"together."
|
@@ -2357,7 +2374,7 @@ msgstr ""
|
|
2357 |
"Ryhmittele kenttiä käyttämällä ”välilehtikenttiä”. Näin saat selkeämmän "
|
2358 |
"muokkausnäkymän."
|
2359 |
|
2360 |
-
#: includes/fields/class-acf-field-tab.php:
|
2361 |
msgid ""
|
2362 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2363 |
"defined) will be grouped together using this field's label as the tab "
|
@@ -2367,241 +2384,244 @@ msgstr ""
|
|
2367 |
"\"välilehtikenttä\" määritellään) ryhmitellään yhteen ja välilehden "
|
2368 |
"otsikoksi tulee tämän kentän nimiö."
|
2369 |
|
2370 |
-
#: includes/fields/class-acf-field-tab.php:
|
2371 |
msgid "Placement"
|
2372 |
msgstr "Sijainti"
|
2373 |
|
2374 |
-
#: includes/fields/class-acf-field-tab.php:
|
2375 |
msgid "End-point"
|
2376 |
msgstr "Välilehtiryhmän aloitus"
|
2377 |
|
2378 |
-
#: includes/fields/class-acf-field-tab.php:
|
2379 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2380 |
msgstr "Valitse ”kyllä”, jos haluat aloittaa uuden välilehtiryhmän."
|
2381 |
|
2382 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
msgstr "Ei"
|
2388 |
|
2389 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2390 |
msgid "None"
|
2391 |
msgstr "Ei mitään"
|
2392 |
|
2393 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2394 |
msgid "Select the taxonomy to be displayed"
|
2395 |
msgstr "Valitse taksonomia, joka näytetään"
|
2396 |
|
2397 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2398 |
msgid "Appearance"
|
2399 |
msgstr "Ulkoasu"
|
2400 |
|
2401 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2402 |
msgid "Select the appearance of this field"
|
2403 |
msgstr "Valitse ulkoasu tälle kenttälle"
|
2404 |
|
2405 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2406 |
msgid "Multiple Values"
|
2407 |
msgstr "Mahdollisuus valita useita arvoja"
|
2408 |
|
2409 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2410 |
msgid "Multi Select"
|
2411 |
msgstr "Valitse useita"
|
2412 |
|
2413 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2414 |
msgid "Single Value"
|
2415 |
msgstr "Mahdollisuus valita vain yksi arvo"
|
2416 |
|
2417 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2418 |
msgid "Radio Buttons"
|
2419 |
msgstr "Valintanappi"
|
2420 |
|
2421 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2422 |
msgid "Create Terms"
|
2423 |
msgstr "Uusien ehtojen luominen"
|
2424 |
|
2425 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2426 |
msgid "Allow new terms to be created whilst editing"
|
2427 |
msgstr "Salli uusien ehtojen luominen samalla kun muokataan"
|
2428 |
|
2429 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2430 |
msgid "Save Terms"
|
2431 |
msgstr "Tallenna ehdot"
|
2432 |
|
2433 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2434 |
msgid "Connect selected terms to the post"
|
2435 |
msgstr "Yhdistä valitut ehdot artikkeliin"
|
2436 |
|
2437 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2438 |
msgid "Load Terms"
|
2439 |
msgstr "Lataa ehdot"
|
2440 |
|
2441 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2442 |
msgid "Load value from posts terms"
|
2443 |
msgstr "Lataa arvo artikkelin ehdoista"
|
2444 |
|
2445 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2446 |
msgid "Term Object"
|
2447 |
msgstr "Ehto"
|
2448 |
|
2449 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2450 |
msgid "Term ID"
|
2451 |
msgstr "Ehdon ID"
|
2452 |
|
2453 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2454 |
#, php-format
|
2455 |
msgid "User unable to add new %s"
|
2456 |
msgstr "Käyttäjä ei voi lisätä uutta %s"
|
2457 |
|
2458 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2459 |
#, php-format
|
2460 |
msgid "%s already exists"
|
2461 |
msgstr "%s on jo olemassa"
|
2462 |
|
2463 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2464 |
#, php-format
|
2465 |
msgid "%s added"
|
2466 |
msgstr "%s lisättiin"
|
2467 |
|
2468 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2469 |
msgid "Add"
|
2470 |
msgstr "Lisää"
|
2471 |
|
2472 |
-
#: includes/fields/class-acf-field-text.php:
|
2473 |
msgid "Text"
|
2474 |
msgstr "Teksti"
|
2475 |
|
2476 |
-
#: includes/fields/class-acf-field-text.php:
|
2477 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2478 |
msgid "Character Limit"
|
2479 |
msgstr "Merkkirajoitus"
|
2480 |
|
2481 |
-
#: includes/fields/class-acf-field-text.php:
|
2482 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2483 |
msgid "Leave blank for no limit"
|
2484 |
msgstr "Jos et halua rajoittaa, jätä tyhjäksi"
|
2485 |
|
2486 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2487 |
msgid "Text Area"
|
2488 |
msgstr "Tekstialue"
|
2489 |
|
2490 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2491 |
msgid "Rows"
|
2492 |
msgstr "Rivit"
|
2493 |
|
2494 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2495 |
msgid "Sets the textarea height"
|
2496 |
msgstr "Aseta tekstialueen koko"
|
2497 |
|
2498 |
-
#: includes/fields/class-acf-field-time_picker.php:
|
2499 |
msgid "Time Picker"
|
2500 |
msgstr "Kellonaikavalitsin"
|
2501 |
|
2502 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2503 |
msgid "True / False"
|
2504 |
msgstr "”Tosi / Epätosi” -valinta"
|
2505 |
|
2506 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2507 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2508 |
-
#: pro/admin/views/html-settings-updates.php:
|
2509 |
msgid "Yes"
|
2510 |
msgstr "Kyllä"
|
2511 |
|
2512 |
-
#: includes/fields/class-acf-field-true_false.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2513 |
msgid "Displays text alongside the checkbox"
|
2514 |
-
msgstr ""
|
2515 |
|
2516 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2517 |
-
#, fuzzy
|
2518 |
msgid "On Text"
|
2519 |
-
msgstr "
|
2520 |
|
2521 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2522 |
msgid "Text shown when active"
|
2523 |
-
msgstr ""
|
2524 |
|
2525 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2526 |
-
#, fuzzy
|
2527 |
msgid "Off Text"
|
2528 |
-
msgstr "
|
2529 |
|
2530 |
-
#: includes/fields/class-acf-field-true_false.php:
|
2531 |
msgid "Text shown when inactive"
|
2532 |
-
msgstr ""
|
2533 |
|
2534 |
-
#: includes/fields/class-acf-field-url.php:
|
2535 |
msgid "Url"
|
2536 |
msgstr "Url"
|
2537 |
|
2538 |
-
#: includes/fields/class-acf-field-url.php:
|
2539 |
msgid "Value must be a valid URL"
|
2540 |
msgstr "Arvon täytyy olla validi URL"
|
2541 |
|
2542 |
-
#: includes/fields/class-acf-field-user.php:
|
2543 |
msgid "User"
|
2544 |
msgstr "Käyttäjä"
|
2545 |
|
2546 |
-
#: includes/fields/class-acf-field-user.php:
|
2547 |
msgid "Filter by role"
|
2548 |
msgstr "Suodata roolin mukaan"
|
2549 |
|
2550 |
-
#: includes/fields/class-acf-field-user.php:
|
2551 |
msgid "All user roles"
|
2552 |
msgstr "Kaikki käyttäjäroolit"
|
2553 |
|
2554 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2555 |
msgid "Wysiwyg Editor"
|
2556 |
msgstr "Wysiwyg-editori"
|
2557 |
|
2558 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2559 |
msgid "Visual"
|
2560 |
msgstr "Graafinen"
|
2561 |
|
2562 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2563 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2564 |
msgid "Text"
|
2565 |
msgstr "Teksti"
|
2566 |
|
2567 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2568 |
msgid "Click to initialize TinyMCE"
|
2569 |
-
msgstr ""
|
2570 |
|
2571 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2572 |
msgid "Tabs"
|
2573 |
msgstr "Välilehdet"
|
2574 |
|
2575 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2576 |
msgid "Visual & Text"
|
2577 |
msgstr "Graafinen ja teksti"
|
2578 |
|
2579 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2580 |
msgid "Visual Only"
|
2581 |
msgstr "Vain graafinen"
|
2582 |
|
2583 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2584 |
msgid "Text Only"
|
2585 |
msgstr "Vain teksti"
|
2586 |
|
2587 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2588 |
msgid "Toolbar"
|
2589 |
msgstr "Työkalupalkki"
|
2590 |
|
2591 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2592 |
msgid "Show Media Upload Buttons?"
|
2593 |
msgstr "Näytä Lisää media -painike?"
|
2594 |
|
2595 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2596 |
msgid "Delay initialization?"
|
2597 |
-
msgstr ""
|
2598 |
|
2599 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2600 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2601 |
-
msgstr ""
|
2602 |
|
2603 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2604 |
-
#: pro/admin/admin-options-page.php:
|
2605 |
msgid "Edit field group"
|
2606 |
msgstr "Muokkaa kenttäryhmää"
|
2607 |
|
@@ -2610,7 +2630,7 @@ msgid "Validate Email"
|
|
2610 |
msgstr "Validoi sähköposti"
|
2611 |
|
2612 |
#: includes/forms/form-front.php:103
|
2613 |
-
#: pro/fields/class-acf-field-gallery.php:
|
2614 |
msgid "Update"
|
2615 |
msgstr "Päivitä"
|
2616 |
|
@@ -2622,39 +2642,43 @@ msgstr "Artikkeli päivitetty"
|
|
2622 |
msgid "Spam Detected"
|
2623 |
msgstr "Roskapostia havaittu"
|
2624 |
|
2625 |
-
#: includes/input.php:
|
2626 |
msgid "Expand Details"
|
2627 |
msgstr "Enemmän tietoja"
|
2628 |
|
2629 |
-
#: includes/input.php:
|
2630 |
msgid "Collapse Details"
|
2631 |
msgstr "Vähemmän tietoja"
|
2632 |
|
2633 |
-
#: includes/input.php:
|
2634 |
msgid "Validation successful"
|
2635 |
msgstr "Kenttäryhmän validointi onnistui"
|
2636 |
|
2637 |
-
#: includes/input.php:
|
2638 |
#: includes/validation.php:296
|
2639 |
msgid "Validation failed"
|
2640 |
msgstr "Lisäkentän validointi epäonnistui"
|
2641 |
|
2642 |
-
#: includes/input.php:
|
2643 |
msgid "1 field requires attention"
|
2644 |
msgstr "Yksi kenttä vaatii huomiota"
|
2645 |
|
2646 |
-
#: includes/input.php:
|
2647 |
#, php-format
|
2648 |
msgid "%d fields require attention"
|
2649 |
msgstr "%d kenttää vaativat huomiota"
|
2650 |
|
2651 |
-
#: includes/input.php:
|
2652 |
msgid "Restricted"
|
2653 |
msgstr "Rajoitettu"
|
2654 |
|
2655 |
-
#: includes/input.php:
|
|
|
|
|
|
|
|
|
2656 |
msgid "Cancel"
|
2657 |
-
msgstr ""
|
2658 |
|
2659 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
2660 |
msgid "Post"
|
@@ -2672,10 +2696,10 @@ msgstr "Lomakkeet"
|
|
2672 |
msgid "Attachment"
|
2673 |
msgstr "Liite"
|
2674 |
|
2675 |
-
#: includes/locations/class-acf-location-attachment.php:
|
2676 |
#, php-format
|
2677 |
msgid "All %s formats"
|
2678 |
-
msgstr ""
|
2679 |
|
2680 |
#: includes/locations/class-acf-location-comment.php:27
|
2681 |
msgid "Comment"
|
@@ -2685,7 +2709,7 @@ msgstr "Kommentti"
|
|
2685 |
msgid "Current User Role"
|
2686 |
msgstr "Nykyinen käyttäjärooli"
|
2687 |
|
2688 |
-
#: includes/locations/class-acf-location-current-user-role.php:
|
2689 |
msgid "Super Admin"
|
2690 |
msgstr "Super pääkäyttäjä"
|
2691 |
|
@@ -2693,34 +2717,33 @@ msgstr "Super pääkäyttäjä"
|
|
2693 |
msgid "Current User"
|
2694 |
msgstr "Nykyinen käyttäjä"
|
2695 |
|
2696 |
-
#: includes/locations/class-acf-location-current-user.php:
|
2697 |
msgid "Logged in"
|
2698 |
msgstr "Kirjautunut sisään"
|
2699 |
|
2700 |
-
#: includes/locations/class-acf-location-current-user.php:
|
2701 |
msgid "Viewing front end"
|
2702 |
msgstr "Käyttää front endiä"
|
2703 |
|
2704 |
-
#: includes/locations/class-acf-location-current-user.php:
|
2705 |
msgid "Viewing back end"
|
2706 |
msgstr "Käyttää back endiä"
|
2707 |
|
2708 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2709 |
msgid "Menu Item"
|
2710 |
-
msgstr ""
|
2711 |
|
2712 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2713 |
msgid "Menu"
|
2714 |
-
msgstr ""
|
2715 |
|
2716 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2717 |
-
#, fuzzy
|
2718 |
msgid "Menu Locations"
|
2719 |
-
msgstr "
|
2720 |
|
2721 |
-
#: includes/locations/class-acf-location-nav-menu.php:
|
2722 |
msgid "Menus"
|
2723 |
-
msgstr ""
|
2724 |
|
2725 |
#: includes/locations/class-acf-location-page-parent.php:27
|
2726 |
msgid "Page Parent"
|
@@ -2730,8 +2753,8 @@ msgstr "Sivun vanhempi"
|
|
2730 |
msgid "Page Template"
|
2731 |
msgstr "Sivupohja"
|
2732 |
|
2733 |
-
#: includes/locations/class-acf-location-page-template.php:
|
2734 |
-
#: includes/locations/class-acf-location-post-template.php:
|
2735 |
msgid "Default Template"
|
2736 |
msgstr "Oletus sivupohja"
|
2737 |
|
@@ -2739,23 +2762,23 @@ msgstr "Oletus sivupohja"
|
|
2739 |
msgid "Page Type"
|
2740 |
msgstr "Sivun tyyppi"
|
2741 |
|
2742 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2743 |
msgid "Front Page"
|
2744 |
msgstr "Etusivu"
|
2745 |
|
2746 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2747 |
msgid "Posts Page"
|
2748 |
msgstr "Artikkelit -sivu"
|
2749 |
|
2750 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2751 |
msgid "Top Level Page (no parent)"
|
2752 |
msgstr "Ylätason sivu (sivu, jolla ei ole vanhempia)"
|
2753 |
|
2754 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2755 |
msgid "Parent Page (has children)"
|
2756 |
msgstr "Vanhempi sivu (sivu, jolla on alasivuja)"
|
2757 |
|
2758 |
-
#: includes/locations/class-acf-location-page-type.php:
|
2759 |
msgid "Child Page (has parent)"
|
2760 |
msgstr "Lapsi sivu (sivu, jolla on vanhempi)"
|
2761 |
|
@@ -2775,8 +2798,7 @@ msgstr "Artikkelin tila"
|
|
2775 |
msgid "Post Taxonomy"
|
2776 |
msgstr "Artikkelin taksonomia"
|
2777 |
|
2778 |
-
#: includes/locations/class-acf-location-post-template.php:
|
2779 |
-
#, fuzzy
|
2780 |
msgid "Post Template"
|
2781 |
msgstr "Sivupohja"
|
2782 |
|
@@ -2788,11 +2810,11 @@ msgstr "Taksonomian ehto"
|
|
2788 |
msgid "User Form"
|
2789 |
msgstr "Käyttäjälomake"
|
2790 |
|
2791 |
-
#: includes/locations/class-acf-location-user-form.php:
|
2792 |
msgid "Add / Edit"
|
2793 |
msgstr "Lisää / Muokkaa"
|
2794 |
|
2795 |
-
#: includes/locations/class-acf-location-user-form.php:
|
2796 |
msgid "Register"
|
2797 |
msgstr "Rekisteröi"
|
2798 |
|
@@ -2824,11 +2846,11 @@ msgstr "%s arvo on pakollinen"
|
|
2824 |
msgid "Advanced Custom Fields PRO"
|
2825 |
msgstr "Advanced Custom Fields PRO -lisäosan"
|
2826 |
|
2827 |
-
#: pro/admin/admin-options-page.php:
|
2828 |
msgid "Publish"
|
2829 |
msgstr "Julkaistu"
|
2830 |
|
2831 |
-
#: pro/admin/admin-options-page.php:
|
2832 |
#, php-format
|
2833 |
msgid ""
|
2834 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
@@ -2842,23 +2864,23 @@ msgid "<b>Error</b>. Could not connect to update server"
|
|
2842 |
msgstr "<b>Virhe</b>. Ei voitu yhdistää päivityspalvelimeen"
|
2843 |
|
2844 |
#: pro/admin/admin-settings-updates.php:162
|
2845 |
-
#: pro/admin/views/html-settings-updates.php:
|
2846 |
msgid "Updates"
|
2847 |
msgstr "Päivitykset"
|
2848 |
|
2849 |
-
#: pro/admin/views/html-settings-updates.php:
|
2850 |
msgid "Deactivate License"
|
2851 |
msgstr "Poista lisenssi käytöstä "
|
2852 |
|
2853 |
-
#: pro/admin/views/html-settings-updates.php:
|
2854 |
msgid "Activate License"
|
2855 |
msgstr "Aktivoi lisenssi"
|
2856 |
|
2857 |
-
#: pro/admin/views/html-settings-updates.php:
|
2858 |
msgid "License Information"
|
2859 |
msgstr "Näytä lisenssitiedot"
|
2860 |
|
2861 |
-
#: pro/admin/views/html-settings-updates.php:
|
2862 |
#, php-format
|
2863 |
msgid ""
|
2864 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -2869,308 +2891,308 @@ msgstr ""
|
|
2869 |
"ole lisenssiavainta, katso <a href=\"%s\" target=”_blank”>tarkemmat tiedot & "
|
2870 |
"hinnoittelu</a>"
|
2871 |
|
2872 |
-
#: pro/admin/views/html-settings-updates.php:
|
2873 |
msgid "License Key"
|
2874 |
msgstr "Lisenssiavain"
|
2875 |
|
2876 |
-
#: pro/admin/views/html-settings-updates.php:
|
2877 |
msgid "Update Information"
|
2878 |
msgstr "Päivitä tiedot"
|
2879 |
|
2880 |
-
#: pro/admin/views/html-settings-updates.php:
|
2881 |
msgid "Current Version"
|
2882 |
msgstr "Nykyinen versio"
|
2883 |
|
2884 |
-
#: pro/admin/views/html-settings-updates.php:
|
2885 |
msgid "Latest Version"
|
2886 |
msgstr "Uusin versio"
|
2887 |
|
2888 |
-
#: pro/admin/views/html-settings-updates.php:
|
2889 |
msgid "Update Available"
|
2890 |
msgstr "Päivitys saatavilla?"
|
2891 |
|
2892 |
-
#: pro/admin/views/html-settings-updates.php:
|
2893 |
msgid "Update Plugin"
|
2894 |
msgstr "Päivitä lisäosa"
|
2895 |
|
2896 |
-
#: pro/admin/views/html-settings-updates.php:
|
2897 |
msgid "Please enter your license key above to unlock updates"
|
2898 |
msgstr "Syötä lisenssiavain saadaksesi päivityksiä"
|
2899 |
|
2900 |
-
#: pro/admin/views/html-settings-updates.php:
|
2901 |
msgid "Check Again"
|
2902 |
msgstr "Tarkista uudelleen"
|
2903 |
|
2904 |
-
#: pro/admin/views/html-settings-updates.php:
|
2905 |
msgid "Upgrade Notice"
|
2906 |
msgstr "Päivitys Ilmoitus"
|
2907 |
|
2908 |
-
#: pro/fields/class-acf-field-clone.php:
|
2909 |
msgctxt "noun"
|
2910 |
msgid "Clone"
|
2911 |
msgstr "Klooni"
|
2912 |
|
2913 |
-
#: pro/fields/class-acf-field-clone.php:
|
2914 |
msgid "Select one or more fields you wish to clone"
|
2915 |
msgstr "Valitse kentä(t), jotka haluat kopioida"
|
2916 |
|
2917 |
-
#: pro/fields/class-acf-field-clone.php:
|
2918 |
msgid "Display"
|
2919 |
msgstr "Näytä"
|
2920 |
|
2921 |
-
#: pro/fields/class-acf-field-clone.php:
|
2922 |
msgid "Specify the style used to render the clone field"
|
2923 |
msgstr "Määritä tyyli, jota käytetään kloonikentän luomisessa"
|
2924 |
|
2925 |
-
#: pro/fields/class-acf-field-clone.php:
|
2926 |
msgid "Group (displays selected fields in a group within this field)"
|
2927 |
msgstr "Ryhmä (valitut kentät näytetään ryhmänä tämän klooni-kentän sisällä)"
|
2928 |
|
2929 |
-
#: pro/fields/class-acf-field-clone.php:
|
2930 |
msgid "Seamless (replaces this field with selected fields)"
|
2931 |
msgstr "Saumaton (korvaa tämä klooni-kenttä valituilla kentillä)"
|
2932 |
|
2933 |
-
#: pro/fields/class-acf-field-clone.php:
|
2934 |
#, php-format
|
2935 |
msgid "Labels will be displayed as %s"
|
2936 |
msgstr "Kenttän nimiö näytetään seuraavassa muodossa: %s"
|
2937 |
|
2938 |
-
#: pro/fields/class-acf-field-clone.php:
|
2939 |
msgid "Prefix Field Labels"
|
2940 |
msgstr "Kentän nimiön etuliite"
|
2941 |
|
2942 |
-
#: pro/fields/class-acf-field-clone.php:
|
2943 |
#, php-format
|
2944 |
msgid "Values will be saved as %s"
|
2945 |
msgstr "Arvot tallennetaan muodossa: %s"
|
2946 |
|
2947 |
-
#: pro/fields/class-acf-field-clone.php:
|
2948 |
msgid "Prefix Field Names"
|
2949 |
msgstr "Kentän nimen etuliite"
|
2950 |
|
2951 |
-
#: pro/fields/class-acf-field-clone.php:
|
2952 |
msgid "Unknown field"
|
2953 |
msgstr "Tuntematon kenttä"
|
2954 |
|
2955 |
-
#: pro/fields/class-acf-field-clone.php:
|
2956 |
msgid "Unknown field group"
|
2957 |
msgstr "Tuntematon kenttäryhmä"
|
2958 |
|
2959 |
-
#: pro/fields/class-acf-field-clone.php:
|
2960 |
#, php-format
|
2961 |
msgid "All fields from %s field group"
|
2962 |
msgstr "Kaikki kentät kenttäryhmästä %s"
|
2963 |
|
2964 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2965 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2966 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2967 |
msgid "Add Row"
|
2968 |
msgstr "Lisää rivi"
|
2969 |
|
2970 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2971 |
msgid "layout"
|
2972 |
msgstr "asettelu"
|
2973 |
|
2974 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2975 |
msgid "layouts"
|
2976 |
msgstr "asettelua"
|
2977 |
|
2978 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2979 |
msgid "remove {layout}?"
|
2980 |
msgstr "poista {layout}?"
|
2981 |
|
2982 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2983 |
msgid "This field requires at least {min} {identifier}"
|
2984 |
msgstr "Tämä kenttä vaatii vähintään {min} {identifier}"
|
2985 |
|
2986 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2987 |
msgid "This field has a limit of {max} {identifier}"
|
2988 |
msgstr "Tämän kentän yläraja on {max} {identifier}"
|
2989 |
|
2990 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2991 |
msgid "This field requires at least {min} {label} {identifier}"
|
2992 |
msgstr "Tämä kenttä vaatii vähintään {min} {label} {identifier}"
|
2993 |
|
2994 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2995 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
2996 |
msgstr "Maksimi {label} saavutettu ({max} {identifier})"
|
2997 |
|
2998 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2999 |
msgid "{available} {label} {identifier} available (max {max})"
|
3000 |
msgstr "{available} {label} {identifier} saatavilla (max {max})"
|
3001 |
|
3002 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3003 |
msgid "{required} {label} {identifier} required (min {min})"
|
3004 |
msgstr "{required} {label} {identifier} vaadittu (min {min})"
|
3005 |
|
3006 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3007 |
msgid "Flexible Content requires at least 1 layout"
|
3008 |
msgstr "Vaaditaan vähintään yksi asettelu"
|
3009 |
|
3010 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3011 |
#, php-format
|
3012 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3013 |
msgstr "Klikkaa ”%s” -painiketta luodaksesi oman asettelun"
|
3014 |
|
3015 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3016 |
msgid "Add layout"
|
3017 |
msgstr "Lisää asettelu"
|
3018 |
|
3019 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3020 |
msgid "Remove layout"
|
3021 |
msgstr "Poista asettelu"
|
3022 |
|
3023 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3024 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3025 |
msgid "Click to toggle"
|
3026 |
msgstr "Piilota/Näytä"
|
3027 |
|
3028 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3029 |
msgid "Reorder Layout"
|
3030 |
msgstr "Järjestä asettelu uudelleen"
|
3031 |
|
3032 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3033 |
msgid "Reorder"
|
3034 |
msgstr "Järjestä uudelleen"
|
3035 |
|
3036 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3037 |
msgid "Delete Layout"
|
3038 |
msgstr "Poista asettelu"
|
3039 |
|
3040 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3041 |
msgid "Duplicate Layout"
|
3042 |
msgstr "Monista asettelu"
|
3043 |
|
3044 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3045 |
msgid "Add New Layout"
|
3046 |
msgstr "Lisää uusi asettelu"
|
3047 |
|
3048 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3049 |
msgid "Min"
|
3050 |
msgstr "Min"
|
3051 |
|
3052 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3053 |
msgid "Max"
|
3054 |
msgstr "Maks"
|
3055 |
|
3056 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3057 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3058 |
msgid "Button Label"
|
3059 |
msgstr "Painikkeen teksti"
|
3060 |
|
3061 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3062 |
msgid "Minimum Layouts"
|
3063 |
msgstr "Asetteluita vähintään"
|
3064 |
|
3065 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3066 |
msgid "Maximum Layouts"
|
3067 |
msgstr "Asetteluita enintään"
|
3068 |
|
3069 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3070 |
msgid "Add Image to Gallery"
|
3071 |
msgstr "Lisää kuva galleriaan"
|
3072 |
|
3073 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3074 |
msgid "Maximum selection reached"
|
3075 |
msgstr "Et voi valita enempää kuvia"
|
3076 |
|
3077 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3078 |
msgid "Length"
|
3079 |
msgstr "Pituus"
|
3080 |
|
3081 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3082 |
msgid "Caption"
|
3083 |
msgstr "Kuvateksti"
|
3084 |
|
3085 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3086 |
msgid "Alt Text"
|
3087 |
msgstr "Vaihtoehtoinen teksti"
|
3088 |
|
3089 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3090 |
msgid "Add to gallery"
|
3091 |
msgstr "Lisää galleriaan"
|
3092 |
|
3093 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3094 |
msgid "Bulk actions"
|
3095 |
msgstr "Massatoiminnot"
|
3096 |
|
3097 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3098 |
msgid "Sort by date uploaded"
|
3099 |
msgstr "Lajittele latauksen päivämäärän mukaan"
|
3100 |
|
3101 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3102 |
msgid "Sort by date modified"
|
3103 |
msgstr "Lajittele viimeisimmän muokkauksen päivämäärän mukaan"
|
3104 |
|
3105 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3106 |
msgid "Sort by title"
|
3107 |
msgstr "Lajittele otsikon mukaan"
|
3108 |
|
3109 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3110 |
msgid "Reverse current order"
|
3111 |
msgstr "Käännän nykyinen järjestys"
|
3112 |
|
3113 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3114 |
msgid "Close"
|
3115 |
msgstr "Sulje"
|
3116 |
|
3117 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3118 |
msgid "Minimum Selection"
|
3119 |
msgstr "Pienin määrä kuvia"
|
3120 |
|
3121 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3122 |
msgid "Maximum Selection"
|
3123 |
msgstr "Suurin määrä kuvia"
|
3124 |
|
3125 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3126 |
msgid "Insert"
|
3127 |
msgstr "Lisää"
|
3128 |
|
3129 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3130 |
msgid "Specify where new attachments are added"
|
3131 |
msgstr "Määritä mihin uudet liitteet lisätään"
|
3132 |
|
3133 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3134 |
msgid "Append to the end"
|
3135 |
msgstr "Lisää loppuun"
|
3136 |
|
3137 |
-
#: pro/fields/class-acf-field-gallery.php:
|
3138 |
msgid "Prepend to the beginning"
|
3139 |
msgstr "Lisää alkuun"
|
3140 |
|
3141 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3142 |
msgid "Minimum rows reached ({min} rows)"
|
3143 |
msgstr "Pienin määrä rivejä saavutettu ({min} riviä)"
|
3144 |
|
3145 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3146 |
msgid "Maximum rows reached ({max} rows)"
|
3147 |
msgstr "Suurin määrä rivejä saavutettu ({max} riviä)"
|
3148 |
|
3149 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3150 |
msgid "Add row"
|
3151 |
msgstr "Lisää rivi"
|
3152 |
|
3153 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3154 |
msgid "Remove row"
|
3155 |
msgstr "Poista rivi"
|
3156 |
|
3157 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3158 |
msgid "Collapsed"
|
3159 |
msgstr "Piilotettu"
|
3160 |
|
3161 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3162 |
msgid "Select a sub field to show when row is collapsed"
|
3163 |
msgstr "Valitse alakenttä, joka näytetään, kun rivi on piilotettu"
|
3164 |
|
3165 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3166 |
msgid "Minimum Rows"
|
3167 |
msgstr "Pienin määrä rivejä"
|
3168 |
|
3169 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3170 |
msgid "Maximum Rows"
|
3171 |
msgstr "Suurin määrä rivejä"
|
3172 |
|
3173 |
-
#: pro/locations/class-acf-location-options-page.php:
|
3174 |
msgid "No options pages exist"
|
3175 |
msgstr "Yhtään Asetukset-sivua ei ole olemassa"
|
3176 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2017-09-22 14:17+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-09-22 14:44+0300\n"
|
7 |
+
"Last-Translator: Sauli Rajala <sauli.rajala@valu.fi>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: fi\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 1.8.2\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
+
#: acf.php:67
|
26 |
msgid "Advanced Custom Fields"
|
27 |
msgstr "Advanced Custom Fields"
|
28 |
|
29 |
+
#: acf.php:369 includes/admin/admin.php:117
|
30 |
msgid "Field Groups"
|
31 |
msgstr "Kenttäryhmät"
|
32 |
|
33 |
+
#: acf.php:370
|
34 |
msgid "Field Group"
|
35 |
msgstr "Kenttäryhmä"
|
36 |
|
37 |
+
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
38 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
39 |
msgid "Add New"
|
40 |
msgstr "Lisää uusi"
|
41 |
|
42 |
+
#: acf.php:372
|
43 |
msgid "Add New Field Group"
|
44 |
msgstr "Lisää uusi kenttäryhmä"
|
45 |
|
46 |
+
#: acf.php:373
|
47 |
msgid "Edit Field Group"
|
48 |
msgstr "Muokkaa kenttäryhmää"
|
49 |
|
50 |
+
#: acf.php:374
|
51 |
msgid "New Field Group"
|
52 |
msgstr "Lisää uusi kenttäryhmä"
|
53 |
|
54 |
+
#: acf.php:375
|
55 |
msgid "View Field Group"
|
56 |
msgstr "Katso kenttäryhmää"
|
57 |
|
58 |
+
#: acf.php:376
|
59 |
msgid "Search Field Groups"
|
60 |
msgstr "Etsi kenttäryhmiä"
|
61 |
|
62 |
+
#: acf.php:377
|
63 |
msgid "No Field Groups found"
|
64 |
msgstr "Kenttäryhmiä ei löytynyt"
|
65 |
|
66 |
+
#: acf.php:378
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr "Kenttäryhmiä ei löytynyt roskakorista"
|
69 |
|
70 |
+
#: acf.php:401 includes/admin/admin-field-group.php:182
|
71 |
#: includes/admin/admin-field-group.php:275
|
72 |
#: includes/admin/admin-field-groups.php:510
|
73 |
+
#: pro/fields/class-acf-field-clone.php:807
|
74 |
msgid "Fields"
|
75 |
msgstr "Kentät"
|
76 |
|
77 |
+
#: acf.php:402
|
78 |
msgid "Field"
|
79 |
msgstr "Kenttä"
|
80 |
|
81 |
+
#: acf.php:404
|
82 |
msgid "Add New Field"
|
83 |
msgstr "Lisää uusi kenttä"
|
84 |
|
85 |
+
#: acf.php:405
|
86 |
msgid "Edit Field"
|
87 |
msgstr "Muokkaa kenttää"
|
88 |
|
89 |
+
#: acf.php:406 includes/admin/views/field-group-fields.php:41
|
90 |
#: includes/admin/views/settings-info.php:105
|
91 |
msgid "New Field"
|
92 |
msgstr "Uusi kenttä"
|
93 |
|
94 |
+
#: acf.php:407
|
95 |
msgid "View Field"
|
96 |
msgstr "Näytä kenttä"
|
97 |
|
98 |
+
#: acf.php:408
|
99 |
msgid "Search Fields"
|
100 |
msgstr "Etsi kenttiä"
|
101 |
|
102 |
+
#: acf.php:409
|
103 |
msgid "No Fields found"
|
104 |
msgstr "Kenttiä ei löytynyt"
|
105 |
|
106 |
+
#: acf.php:410
|
107 |
msgid "No Fields found in Trash"
|
108 |
msgstr "Kenttiä ei löytynyt roskakorista"
|
109 |
|
110 |
+
#: acf.php:449 includes/admin/admin-field-group.php:390
|
111 |
#: includes/admin/admin-field-groups.php:567
|
|
|
112 |
msgid "Inactive"
|
113 |
+
msgstr "Ei-aktiivinen"
|
114 |
|
115 |
+
#: acf.php:454
|
116 |
+
#, php-format
|
117 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
118 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
119 |
+
msgstr[0] "Ei-aktiivinen <span class=\"count\">(%s)</span>"
|
120 |
+
msgstr[1] "Ei-aktiivisia <span class=\"count\">(%s)</span>"
|
121 |
|
122 |
#: includes/admin/admin-field-group.php:68
|
123 |
#: includes/admin/admin-field-group.php:69
|
174 |
msgstr "Kenttäryhmän otsikko on pakollinen"
|
175 |
|
176 |
#: includes/admin/admin-field-group.php:273
|
177 |
+
#: includes/api/api-field-group.php:751
|
178 |
msgid "copy"
|
179 |
msgstr "kopioi"
|
180 |
|
183 |
#: includes/admin/views/field-group-field-conditional-logic.php:154
|
184 |
#: includes/admin/views/field-group-locations.php:29
|
185 |
#: includes/admin/views/html-location-group.php:3
|
186 |
+
#: includes/api/api-helpers.php:3964
|
187 |
msgid "or"
|
188 |
msgstr "tai"
|
189 |
|
207 |
msgid "Null"
|
208 |
msgstr "Tyhjä"
|
209 |
|
210 |
+
#: includes/admin/admin-field-group.php:281 includes/input.php:258
|
211 |
msgid "The changes you made will be lost if you navigate away from this page"
|
212 |
msgstr "Tekemäsi muutokset menetetään, jos siirryt pois tältä sivulta"
|
213 |
|
282 |
msgstr "Synkronointi saatavissa"
|
283 |
|
284 |
#: includes/admin/admin-field-groups.php:507 includes/forms/form-front.php:38
|
285 |
+
#: pro/fields/class-acf-field-gallery.php:355
|
286 |
msgid "Title"
|
287 |
msgstr "Otsikko"
|
288 |
|
290 |
#: includes/admin/views/field-group-options.php:96
|
291 |
#: includes/admin/views/install-network.php:21
|
292 |
#: includes/admin/views/install-network.php:29
|
293 |
+
#: pro/fields/class-acf-field-gallery.php:382
|
294 |
msgid "Description"
|
295 |
msgstr "Kuvaus"
|
296 |
|
306 |
|
307 |
#: includes/admin/admin-field-groups.php:609
|
308 |
#: includes/admin/settings-info.php:76
|
309 |
+
#: pro/admin/views/html-settings-updates.php:107
|
310 |
msgid "Changelog"
|
311 |
msgstr "Muutosloki"
|
312 |
|
313 |
#: includes/admin/admin-field-groups.php:614
|
314 |
#, php-format
|
315 |
msgid "See what's new in <a href=\"%s\">version %s</a>."
|
316 |
+
msgstr "Katso mitä uutta <a href=”%s”>versiossa %s</a> ."
|
317 |
|
318 |
#: includes/admin/admin-field-groups.php:617
|
319 |
msgid "Resources"
|
320 |
msgstr "Resurssit"
|
321 |
|
322 |
#: includes/admin/admin-field-groups.php:619
|
|
|
323 |
msgid "Website"
|
324 |
+
msgstr "Kotisivu"
|
325 |
|
326 |
#: includes/admin/admin-field-groups.php:620
|
|
|
327 |
msgid "Documentation"
|
328 |
+
msgstr "Dokumentaatio"
|
329 |
|
330 |
#: includes/admin/admin-field-groups.php:621
|
|
|
331 |
msgid "Support"
|
332 |
+
msgstr "Tuki"
|
333 |
|
334 |
#: includes/admin/admin-field-groups.php:623
|
|
|
335 |
msgid "Pro"
|
336 |
+
msgstr "Pro"
|
337 |
|
338 |
#: includes/admin/admin-field-groups.php:628
|
339 |
+
#, php-format
|
340 |
msgid "Thank you for creating with <a href=\"%s\">ACF</a>."
|
341 |
+
msgstr "Kiitos, että luot sisältöä <a href=\"%s\">ACF:llä</a>."
|
342 |
|
343 |
#: includes/admin/admin-field-groups.php:668
|
344 |
msgid "Duplicate this item"
|
347 |
#: includes/admin/admin-field-groups.php:668
|
348 |
#: includes/admin/admin-field-groups.php:684
|
349 |
#: includes/admin/views/field-group-field.php:49
|
350 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
351 |
msgid "Duplicate"
|
352 |
msgstr "Monista"
|
353 |
|
354 |
#: includes/admin/admin-field-groups.php:701
|
355 |
+
#: includes/fields/class-acf-field-google-map.php:112
|
356 |
+
#: includes/fields/class-acf-field-relationship.php:656
|
357 |
msgid "Search"
|
358 |
msgstr "Etsi"
|
359 |
|
373 |
|
374 |
#: includes/admin/admin-field-groups.php:780
|
375 |
msgid "Apply"
|
376 |
+
msgstr "Käytä"
|
377 |
|
378 |
#: includes/admin/admin-field-groups.php:798
|
|
|
379 |
msgid "Bulk Actions"
|
380 |
msgstr "Massatoiminnot"
|
381 |
|
429 |
msgstr "Ei kenttäryhmää valittu"
|
430 |
|
431 |
#: includes/admin/settings-tools.php:184
|
432 |
+
#: includes/fields/class-acf-field-file.php:155
|
433 |
msgid "No file selected"
|
434 |
msgstr "Ei tiedostoa valittu"
|
435 |
|
461 |
msgstr "Näytä tämä kenttä, jos"
|
462 |
|
463 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
464 |
+
#: includes/locations.php:247
|
465 |
msgid "is equal to"
|
466 |
msgstr "on sama kuin"
|
467 |
|
468 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
469 |
+
#: includes/locations.php:248
|
470 |
msgid "is not equal to"
|
471 |
msgstr "ei ole sama kuin"
|
472 |
|
481 |
msgstr "Lisää sääntöryhmä"
|
482 |
|
483 |
#: includes/admin/views/field-group-field.php:41
|
484 |
+
#: pro/fields/class-acf-field-flexible-content.php:403
|
485 |
+
#: pro/fields/class-acf-field-repeater.php:296
|
486 |
msgid "Drag to reorder"
|
487 |
msgstr "Muuta järjestystä vetämällä ja pudottamalla"
|
488 |
|
492 |
msgstr "Muokkaa kenttää"
|
493 |
|
494 |
#: includes/admin/views/field-group-field.php:48
|
495 |
+
#: includes/fields/class-acf-field-file.php:137
|
496 |
+
#: includes/fields/class-acf-field-image.php:122
|
497 |
+
#: includes/fields/class-acf-field-link.php:139
|
498 |
+
#: pro/fields/class-acf-field-gallery.php:342
|
499 |
msgid "Edit"
|
500 |
msgstr "Muokkaa"
|
501 |
|
516 |
msgstr "Poista kenttä"
|
517 |
|
518 |
#: includes/admin/views/field-group-field.php:51
|
519 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
520 |
msgid "Delete"
|
521 |
msgstr "Poista"
|
522 |
|
528 |
msgid "This is the name which will appear on the EDIT page"
|
529 |
msgstr "Tätä nimeä käytetään Muokkaa-sivulla"
|
530 |
|
531 |
+
#: includes/admin/views/field-group-field.php:77
|
532 |
msgid "Field Name"
|
533 |
msgstr "Kentän nimi"
|
534 |
|
535 |
+
#: includes/admin/views/field-group-field.php:78
|
536 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
537 |
msgstr "Yksi sana, ei välilyöntejä. Alaviivat ja viivamerkit ovat sallittuja."
|
538 |
|
539 |
+
#: includes/admin/views/field-group-field.php:87
|
540 |
msgid "Field Type"
|
541 |
msgstr "Kenttätyyppi"
|
542 |
|
543 |
+
#: includes/admin/views/field-group-field.php:98
|
544 |
+
#: includes/fields/class-acf-field-tab.php:88
|
545 |
msgid "Instructions"
|
546 |
msgstr "Ohjeet"
|
547 |
|
548 |
+
#: includes/admin/views/field-group-field.php:99
|
549 |
msgid "Instructions for authors. Shown when submitting data"
|
550 |
msgstr "Ohjeet kirjoittajille. Näytetään muokkausnäkymässä"
|
551 |
|
552 |
+
#: includes/admin/views/field-group-field.php:108
|
553 |
msgid "Required?"
|
554 |
msgstr "Pakollinen?"
|
555 |
|
556 |
+
#: includes/admin/views/field-group-field.php:131
|
557 |
msgid "Wrapper Attributes"
|
558 |
msgstr "Kääreen attribuutit"
|
559 |
|
560 |
+
#: includes/admin/views/field-group-field.php:137
|
561 |
msgid "width"
|
562 |
msgstr "leveys"
|
563 |
|
564 |
+
#: includes/admin/views/field-group-field.php:152
|
565 |
msgid "class"
|
566 |
msgstr "luokka"
|
567 |
|
568 |
+
#: includes/admin/views/field-group-field.php:165
|
569 |
msgid "id"
|
570 |
msgstr "id"
|
571 |
|
572 |
+
#: includes/admin/views/field-group-field.php:177
|
573 |
msgid "Close Field"
|
574 |
msgstr "Sulje kenttä"
|
575 |
|
578 |
msgstr "Järjestys"
|
579 |
|
580 |
#: includes/admin/views/field-group-fields.php:5
|
581 |
+
#: includes/fields/class-acf-field-button-group.php:198
|
582 |
+
#: includes/fields/class-acf-field-checkbox.php:415
|
583 |
+
#: includes/fields/class-acf-field-radio.php:306
|
584 |
+
#: includes/fields/class-acf-field-select.php:432
|
585 |
+
#: pro/fields/class-acf-field-flexible-content.php:582
|
586 |
msgid "Label"
|
587 |
msgstr "Nimiö"
|
588 |
|
589 |
#: includes/admin/views/field-group-fields.php:6
|
590 |
+
#: includes/fields/class-acf-field-taxonomy.php:964
|
591 |
+
#: pro/fields/class-acf-field-flexible-content.php:595
|
592 |
msgid "Name"
|
593 |
msgstr "Nimi"
|
594 |
|
595 |
#: includes/admin/views/field-group-fields.php:7
|
596 |
msgid "Key"
|
597 |
+
msgstr "Avain"
|
598 |
|
599 |
#: includes/admin/views/field-group-fields.php:8
|
600 |
msgid "Type"
|
656 |
msgstr "Nimiön sijainti"
|
657 |
|
658 |
#: includes/admin/views/field-group-options.php:62
|
659 |
+
#: includes/fields/class-acf-field-tab.php:102
|
660 |
msgid "Top aligned"
|
661 |
msgstr "Tasaa ylös"
|
662 |
|
663 |
#: includes/admin/views/field-group-options.php:63
|
664 |
+
#: includes/fields/class-acf-field-tab.php:103
|
665 |
msgid "Left Aligned"
|
666 |
msgstr "Tasaa vasemmalle"
|
667 |
|
747 |
msgstr "Sivun attribuutit"
|
748 |
|
749 |
#: includes/admin/views/field-group-options.php:126
|
750 |
+
#: includes/fields/class-acf-field-relationship.php:670
|
751 |
msgid "Featured Image"
|
752 |
msgstr "Artikkelikuva"
|
753 |
|
827 |
msgstr "Päivitetään data versioon %s"
|
828 |
|
829 |
#: includes/admin/views/install-notice.php:8
|
830 |
+
#: pro/fields/class-acf-field-repeater.php:25
|
831 |
msgid "Repeater"
|
832 |
msgstr "Toista rivejä"
|
833 |
|
834 |
#: includes/admin/views/install-notice.php:9
|
835 |
+
#: pro/fields/class-acf-field-flexible-content.php:25
|
836 |
msgid "Flexible Content"
|
837 |
msgstr "Joustava sisältö"
|
838 |
|
839 |
#: includes/admin/views/install-notice.php:10
|
840 |
+
#: pro/fields/class-acf-field-gallery.php:25
|
841 |
msgid "Gallery"
|
842 |
msgstr "Galleria"
|
843 |
|
844 |
#: includes/admin/views/install-notice.php:11
|
845 |
+
#: pro/locations/class-acf-location-options-page.php:26
|
846 |
msgid "Options Page"
|
847 |
msgstr "Asetukset-sivu"
|
848 |
|
869 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
870 |
"latest version."
|
871 |
msgstr ""
|
872 |
+
"Varmista myös, että kaikki premium lisäosat (%s) on ensin päivitetty "
|
873 |
+
"uusimpaan versioon."
|
874 |
|
875 |
#: includes/admin/views/install.php:7
|
876 |
msgid "Reading upgrade tasks..."
|
877 |
msgstr "Luetaan päivitys tehtäviä..."
|
878 |
|
879 |
#: includes/admin/views/install.php:11
|
880 |
+
#, php-format
|
881 |
msgid "Database Upgrade complete. <a href=\"%s\">See what's new</a>"
|
882 |
+
msgstr "Tietokannan päivitys on valmis. <a href=\"%s\">Katso mitä on uutta</a>"
|
|
|
|
|
883 |
|
884 |
#: includes/admin/views/settings-addons.php:17
|
885 |
msgid "Download & Install"
|
1141 |
"vanhempien välillä"
|
1142 |
|
1143 |
#: includes/admin/views/settings-info.php:144
|
1144 |
+
#: includes/fields/class-acf-field-page_link.php:25
|
1145 |
msgid "Page Link"
|
1146 |
msgstr "Sivun URL"
|
1147 |
|
1224 |
"klikkaat Tuo-painiketta."
|
1225 |
|
1226 |
#: includes/admin/views/settings-tools.php:77
|
1227 |
+
#: includes/fields/class-acf-field-file.php:35
|
1228 |
msgid "Select File"
|
1229 |
msgstr "Valitse tiedosto"
|
1230 |
|
1248 |
msgid "Full Size"
|
1249 |
msgstr "Täysikokoinen"
|
1250 |
|
1251 |
+
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1252 |
+
#: pro/fields/class-acf-field-clone.php:992
|
1253 |
msgid "(no title)"
|
1254 |
msgstr "(ei otsikkoa)"
|
1255 |
|
1256 |
+
#: includes/api/api-helpers.php:1868
|
1257 |
+
#: includes/fields/class-acf-field-page_link.php:269
|
1258 |
+
#: includes/fields/class-acf-field-post_object.php:268
|
1259 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
1260 |
msgid "Parent"
|
1261 |
msgstr "Vanhempi"
|
1262 |
|
1263 |
+
#: includes/api/api-helpers.php:3885
|
1264 |
#, php-format
|
1265 |
msgid "Image width must be at least %dpx."
|
1266 |
msgstr "Kuvan leveys täytyy olla vähintään %dpx."
|
1267 |
|
1268 |
+
#: includes/api/api-helpers.php:3890
|
1269 |
#, php-format
|
1270 |
msgid "Image width must not exceed %dpx."
|
1271 |
msgstr "Kuvan leveys ei saa ylittää %dpx."
|
1272 |
|
1273 |
+
#: includes/api/api-helpers.php:3906
|
1274 |
#, php-format
|
1275 |
msgid "Image height must be at least %dpx."
|
1276 |
msgstr "Kuvan korkeus täytyy olla vähintään %dpx."
|
1277 |
|
1278 |
+
#: includes/api/api-helpers.php:3911
|
1279 |
#, php-format
|
1280 |
msgid "Image height must not exceed %dpx."
|
1281 |
msgstr "Kuvan korkeus ei saa ylittää %dpx."
|
1282 |
|
1283 |
+
#: includes/api/api-helpers.php:3929
|
1284 |
#, php-format
|
1285 |
msgid "File size must be at least %s."
|
1286 |
msgstr "Tiedoston koko täytyy olla vähintään %s."
|
1287 |
|
1288 |
+
#: includes/api/api-helpers.php:3934
|
1289 |
#, php-format
|
1290 |
msgid "File size must must not exceed %s."
|
1291 |
msgstr "Tiedoston koko ei saa ylittää %s:"
|
1292 |
|
1293 |
+
#: includes/api/api-helpers.php:3968
|
1294 |
#, php-format
|
1295 |
msgid "File type must be %s."
|
1296 |
msgstr "Tiedoston koko täytyy olla %s."
|
1315 |
msgid "jQuery"
|
1316 |
msgstr "jQuery"
|
1317 |
|
1318 |
+
#: includes/fields.php:149
|
1319 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1320 |
+
#: includes/fields/class-acf-field-checkbox.php:384
|
1321 |
+
#: includes/fields/class-acf-field-group.php:474
|
1322 |
+
#: includes/fields/class-acf-field-radio.php:285
|
1323 |
+
#: pro/fields/class-acf-field-clone.php:839
|
1324 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
1325 |
+
#: pro/fields/class-acf-field-flexible-content.php:601
|
1326 |
+
#: pro/fields/class-acf-field-repeater.php:450
|
1327 |
msgid "Layout"
|
1328 |
msgstr "Asettelu"
|
1329 |
|
1330 |
+
#: includes/fields.php:326
|
1331 |
msgid "Field type does not exist"
|
1332 |
msgstr "Kenttätyyppi ei ole olemassa"
|
1333 |
|
1334 |
+
#: includes/fields.php:326
|
|
|
1335 |
msgid "Unknown"
|
1336 |
+
msgstr "Tuntematon"
|
1337 |
|
1338 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
1339 |
+
msgid "Button Group"
|
1340 |
+
msgstr "Painikeryhmä"
|
|
|
1341 |
|
1342 |
+
#: includes/fields/class-acf-field-button-group.php:149
|
1343 |
+
#: includes/fields/class-acf-field-checkbox.php:344
|
1344 |
+
#: includes/fields/class-acf-field-radio.php:235
|
1345 |
+
#: includes/fields/class-acf-field-select.php:368
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1346 |
msgid "Choices"
|
1347 |
msgstr "Valinnat"
|
1348 |
|
1349 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1350 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1351 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1352 |
+
#: includes/fields/class-acf-field-select.php:369
|
1353 |
msgid "Enter each choice on a new line."
|
1354 |
msgstr "Syötä jokainen valinta uudelle riville."
|
1355 |
|
1356 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1357 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1358 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1359 |
+
#: includes/fields/class-acf-field-select.php:369
|
1360 |
msgid "For more control, you may specify both a value and label like this:"
|
1361 |
msgstr "Halutessasi voit määrittää sekä arvon että nimiön tähän tapaan:"
|
1362 |
|
1363 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1364 |
+
#: includes/fields/class-acf-field-checkbox.php:345
|
1365 |
+
#: includes/fields/class-acf-field-radio.php:236
|
1366 |
+
#: includes/fields/class-acf-field-select.php:369
|
1367 |
msgid "red : Red"
|
1368 |
msgstr "koira_istuu : Koira istuu"
|
1369 |
|
1370 |
+
#: includes/fields/class-acf-field-button-group.php:158
|
1371 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
1372 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
1373 |
+
#: includes/fields/class-acf-field-radio.php:244
|
1374 |
+
#: includes/fields/class-acf-field-select.php:386
|
1375 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
1376 |
+
#: includes/fields/class-acf-field-user.php:408
|
1377 |
+
msgid "Allow Null?"
|
1378 |
msgstr "Salli tyhjä?"
|
1379 |
|
1380 |
+
#: includes/fields/class-acf-field-button-group.php:168
|
1381 |
+
#: includes/fields/class-acf-field-checkbox.php:375
|
1382 |
+
#: includes/fields/class-acf-field-color_picker.php:131
|
1383 |
+
#: includes/fields/class-acf-field-email.php:114
|
1384 |
+
#: includes/fields/class-acf-field-number.php:123
|
1385 |
+
#: includes/fields/class-acf-field-radio.php:276
|
1386 |
+
#: includes/fields/class-acf-field-range.php:142
|
1387 |
+
#: includes/fields/class-acf-field-select.php:377
|
1388 |
+
#: includes/fields/class-acf-field-text.php:115
|
1389 |
+
#: includes/fields/class-acf-field-textarea.php:98
|
1390 |
+
#: includes/fields/class-acf-field-true_false.php:135
|
1391 |
+
#: includes/fields/class-acf-field-url.php:96
|
1392 |
+
#: includes/fields/class-acf-field-wysiwyg.php:410
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1393 |
msgid "Default Value"
|
1394 |
msgstr "Oletusarvo"
|
1395 |
|
1396 |
+
#: includes/fields/class-acf-field-button-group.php:169
|
1397 |
+
#: includes/fields/class-acf-field-email.php:115
|
1398 |
+
#: includes/fields/class-acf-field-number.php:124
|
1399 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1400 |
+
#: includes/fields/class-acf-field-range.php:143
|
1401 |
+
#: includes/fields/class-acf-field-text.php:116
|
1402 |
+
#: includes/fields/class-acf-field-textarea.php:99
|
1403 |
+
#: includes/fields/class-acf-field-url.php:97
|
1404 |
+
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1405 |
+
msgid "Appears when creating a new post"
|
1406 |
+
msgstr "Kentän oletusarvo"
|
1407 |
|
1408 |
+
#: includes/fields/class-acf-field-button-group.php:183
|
1409 |
+
#: includes/fields/class-acf-field-checkbox.php:391
|
1410 |
+
#: includes/fields/class-acf-field-radio.php:292
|
1411 |
msgid "Horizontal"
|
1412 |
msgstr "Vaakasuuntainen"
|
1413 |
|
1414 |
+
#: includes/fields/class-acf-field-button-group.php:184
|
1415 |
+
#: includes/fields/class-acf-field-checkbox.php:390
|
1416 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1417 |
+
msgid "Vertical"
|
1418 |
+
msgstr "Pystysuuntainen"
|
|
|
|
|
1419 |
|
1420 |
+
#: includes/fields/class-acf-field-button-group.php:191
|
1421 |
+
#: includes/fields/class-acf-field-checkbox.php:408
|
1422 |
+
#: includes/fields/class-acf-field-file.php:200
|
1423 |
+
#: includes/fields/class-acf-field-image.php:188
|
1424 |
+
#: includes/fields/class-acf-field-link.php:166
|
1425 |
+
#: includes/fields/class-acf-field-radio.php:299
|
1426 |
+
#: includes/fields/class-acf-field-taxonomy.php:833
|
1427 |
msgid "Return Value"
|
1428 |
msgstr "Palauta arvo"
|
1429 |
|
1430 |
+
#: includes/fields/class-acf-field-button-group.php:192
|
1431 |
+
#: includes/fields/class-acf-field-checkbox.php:409
|
1432 |
+
#: includes/fields/class-acf-field-file.php:201
|
1433 |
+
#: includes/fields/class-acf-field-image.php:189
|
1434 |
+
#: includes/fields/class-acf-field-link.php:167
|
1435 |
+
#: includes/fields/class-acf-field-radio.php:300
|
1436 |
msgid "Specify the returned value on front end"
|
1437 |
msgstr "Määritä palautettu arvo front endiin"
|
1438 |
|
1439 |
+
#: includes/fields/class-acf-field-button-group.php:197
|
1440 |
+
#: includes/fields/class-acf-field-checkbox.php:414
|
1441 |
+
#: includes/fields/class-acf-field-radio.php:305
|
1442 |
+
#: includes/fields/class-acf-field-select.php:431
|
1443 |
msgid "Value"
|
1444 |
msgstr "Arvo"
|
1445 |
|
1446 |
+
#: includes/fields/class-acf-field-button-group.php:199
|
1447 |
+
#: includes/fields/class-acf-field-checkbox.php:416
|
1448 |
+
#: includes/fields/class-acf-field-radio.php:307
|
1449 |
+
#: includes/fields/class-acf-field-select.php:433
|
1450 |
msgid "Both (Array)"
|
1451 |
msgstr "Molemmat (palautusmuoto on tällöin taulukko)"
|
1452 |
|
1453 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1454 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1455 |
+
msgid "Checkbox"
|
1456 |
+
msgstr "Valintaruutu"
|
1457 |
+
|
1458 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1459 |
+
msgid "Toggle All"
|
1460 |
+
msgstr "Valitse kaikki"
|
1461 |
+
|
1462 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1463 |
+
msgid "Add new choice"
|
1464 |
+
msgstr "Lisää uusi valinta"
|
1465 |
+
|
1466 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1467 |
+
msgid "Allow Custom"
|
1468 |
+
msgstr "Salli mukautettu"
|
1469 |
+
|
1470 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
1471 |
+
msgid "Allow 'custom' values to be added"
|
1472 |
+
msgstr "Salli käyttäjän syöttää omia arvojaan"
|
1473 |
+
|
1474 |
+
#: includes/fields/class-acf-field-checkbox.php:364
|
1475 |
+
msgid "Save Custom"
|
1476 |
+
msgstr "Tallenna mukautettu"
|
1477 |
+
|
1478 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1479 |
+
msgid "Save 'custom' values to the field's choices"
|
1480 |
+
msgstr ""
|
1481 |
+
"Tallenna 'Muu’-kentän arvo kentän valinta vaihtoehdoksi tulevaisuudessa"
|
1482 |
+
|
1483 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1484 |
+
#: includes/fields/class-acf-field-select.php:378
|
1485 |
+
msgid "Enter each default value on a new line"
|
1486 |
+
msgstr "Syötä jokainen oletusarvo uudelle riville."
|
1487 |
+
|
1488 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1489 |
+
msgid "Toggle"
|
1490 |
+
msgstr "Valitse kaikki?"
|
1491 |
+
|
1492 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
1493 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
1494 |
+
msgstr "Näytetäänkö ”Valitse kaikki” valintaruutu"
|
1495 |
+
|
1496 |
+
#: includes/fields/class-acf-field-color_picker.php:25
|
1497 |
msgid "Color Picker"
|
1498 |
msgstr "Värinvalitsin"
|
1499 |
|
1500 |
+
#: includes/fields/class-acf-field-color_picker.php:68
|
1501 |
msgid "Clear"
|
1502 |
msgstr "Tyhjennä"
|
1503 |
|
1504 |
+
#: includes/fields/class-acf-field-color_picker.php:69
|
1505 |
msgid "Default"
|
1506 |
msgstr "Oletus"
|
1507 |
|
1508 |
+
#: includes/fields/class-acf-field-color_picker.php:70
|
1509 |
msgid "Select Color"
|
1510 |
msgstr "Valitse väri"
|
1511 |
|
1512 |
+
#: includes/fields/class-acf-field-color_picker.php:71
|
1513 |
msgid "Current Color"
|
1514 |
msgstr "Nykyinen väri"
|
1515 |
|
1516 |
+
#: includes/fields/class-acf-field-date_picker.php:25
|
1517 |
msgid "Date Picker"
|
1518 |
msgstr "Päivämäärävalitsin"
|
1519 |
|
1520 |
+
#: includes/fields/class-acf-field-date_picker.php:33
|
1521 |
msgctxt "Date Picker JS closeText"
|
1522 |
msgid "Done"
|
1523 |
msgstr "Sulje"
|
1524 |
|
1525 |
+
#: includes/fields/class-acf-field-date_picker.php:34
|
1526 |
msgctxt "Date Picker JS currentText"
|
1527 |
msgid "Today"
|
1528 |
msgstr "Tänään"
|
1529 |
|
1530 |
+
#: includes/fields/class-acf-field-date_picker.php:35
|
1531 |
msgctxt "Date Picker JS nextText"
|
1532 |
msgid "Next"
|
1533 |
msgstr "Seuraava"
|
1534 |
|
1535 |
+
#: includes/fields/class-acf-field-date_picker.php:36
|
1536 |
msgctxt "Date Picker JS prevText"
|
1537 |
msgid "Prev"
|
1538 |
msgstr "Edellinen"
|
1539 |
|
1540 |
+
#: includes/fields/class-acf-field-date_picker.php:37
|
1541 |
msgctxt "Date Picker JS weekHeader"
|
1542 |
msgid "Wk"
|
1543 |
msgstr "Vk"
|
1544 |
|
1545 |
+
#: includes/fields/class-acf-field-date_picker.php:207
|
1546 |
+
#: includes/fields/class-acf-field-date_time_picker.php:181
|
1547 |
+
#: includes/fields/class-acf-field-time_picker.php:109
|
1548 |
msgid "Display Format"
|
1549 |
msgstr "Muokkausnäkymän muoto"
|
1550 |
|
1551 |
+
#: includes/fields/class-acf-field-date_picker.php:208
|
1552 |
+
#: includes/fields/class-acf-field-date_time_picker.php:182
|
1553 |
+
#: includes/fields/class-acf-field-time_picker.php:110
|
1554 |
msgid "The format displayed when editing a post"
|
1555 |
msgstr "Missä muodossa haluat päivämäärän näkyvän muokkausnäkymässä?"
|
1556 |
|
1557 |
+
#: includes/fields/class-acf-field-date_picker.php:216
|
1558 |
+
#: includes/fields/class-acf-field-date_picker.php:247
|
1559 |
+
#: includes/fields/class-acf-field-date_time_picker.php:191
|
1560 |
+
#: includes/fields/class-acf-field-date_time_picker.php:208
|
1561 |
+
#: includes/fields/class-acf-field-time_picker.php:117
|
1562 |
+
#: includes/fields/class-acf-field-time_picker.php:132
|
|
|
1563 |
msgid "Custom:"
|
1564 |
+
msgstr "Mukautettu:"
|
1565 |
|
1566 |
+
#: includes/fields/class-acf-field-date_picker.php:226
|
|
|
1567 |
msgid "Save Format"
|
1568 |
msgstr "Tallennusmuoto"
|
1569 |
|
1570 |
+
#: includes/fields/class-acf-field-date_picker.php:227
|
|
|
1571 |
msgid "The format used when saving a value"
|
1572 |
+
msgstr "Arvo tallennetaan tähän muotoon"
|
1573 |
|
1574 |
+
#: includes/fields/class-acf-field-date_picker.php:237
|
1575 |
+
#: includes/fields/class-acf-field-date_time_picker.php:198
|
1576 |
+
#: includes/fields/class-acf-field-post_object.php:432
|
1577 |
+
#: includes/fields/class-acf-field-relationship.php:697
|
1578 |
+
#: includes/fields/class-acf-field-select.php:426
|
1579 |
+
#: includes/fields/class-acf-field-time_picker.php:124
|
1580 |
msgid "Return Format"
|
1581 |
msgstr "Palautusmuoto"
|
1582 |
|
1583 |
+
#: includes/fields/class-acf-field-date_picker.php:238
|
1584 |
+
#: includes/fields/class-acf-field-date_time_picker.php:199
|
1585 |
+
#: includes/fields/class-acf-field-time_picker.php:125
|
1586 |
msgid "The format returned via template functions"
|
1587 |
msgstr ""
|
1588 |
"Missä muodossa haluat päivämäärän näkyvän, kun sivupohjan funktiot "
|
1589 |
"palauttavat sen?"
|
1590 |
|
1591 |
+
#: includes/fields/class-acf-field-date_picker.php:256
|
1592 |
+
#: includes/fields/class-acf-field-date_time_picker.php:215
|
1593 |
msgid "Week Starts On"
|
1594 |
msgstr "Viikon ensimmäinen päivä"
|
1595 |
|
1596 |
+
#: includes/fields/class-acf-field-date_time_picker.php:25
|
1597 |
msgid "Date Time Picker"
|
1598 |
msgstr "Päivämäärä- ja kellonaikavalitsin"
|
1599 |
|
1600 |
+
#: includes/fields/class-acf-field-date_time_picker.php:33
|
1601 |
msgctxt "Date Time Picker JS timeOnlyTitle"
|
1602 |
msgid "Choose Time"
|
1603 |
msgstr "Valitse aika"
|
1604 |
|
1605 |
+
#: includes/fields/class-acf-field-date_time_picker.php:34
|
1606 |
msgctxt "Date Time Picker JS timeText"
|
1607 |
msgid "Time"
|
1608 |
msgstr "Aika"
|
1609 |
|
1610 |
+
#: includes/fields/class-acf-field-date_time_picker.php:35
|
1611 |
msgctxt "Date Time Picker JS hourText"
|
1612 |
msgid "Hour"
|
1613 |
msgstr "Tunti"
|
1614 |
|
1615 |
+
#: includes/fields/class-acf-field-date_time_picker.php:36
|
1616 |
msgctxt "Date Time Picker JS minuteText"
|
1617 |
msgid "Minute"
|
1618 |
msgstr "minuuttia"
|
1619 |
|
1620 |
+
#: includes/fields/class-acf-field-date_time_picker.php:37
|
1621 |
msgctxt "Date Time Picker JS secondText"
|
1622 |
msgid "Second"
|
1623 |
msgstr "Sekunti"
|
1624 |
|
1625 |
+
#: includes/fields/class-acf-field-date_time_picker.php:38
|
1626 |
msgctxt "Date Time Picker JS millisecText"
|
1627 |
msgid "Millisecond"
|
1628 |
msgstr "millisekunti"
|
1629 |
|
1630 |
+
#: includes/fields/class-acf-field-date_time_picker.php:39
|
1631 |
msgctxt "Date Time Picker JS microsecText"
|
1632 |
msgid "Microsecond"
|
1633 |
msgstr "mikrosekunti"
|
1634 |
|
1635 |
+
#: includes/fields/class-acf-field-date_time_picker.php:40
|
1636 |
msgctxt "Date Time Picker JS timezoneText"
|
1637 |
msgid "Time Zone"
|
1638 |
msgstr "Aikavyöhyke"
|
1639 |
|
1640 |
+
#: includes/fields/class-acf-field-date_time_picker.php:41
|
1641 |
msgctxt "Date Time Picker JS currentText"
|
1642 |
msgid "Now"
|
1643 |
msgstr "Nyt"
|
1644 |
|
1645 |
+
#: includes/fields/class-acf-field-date_time_picker.php:42
|
1646 |
msgctxt "Date Time Picker JS closeText"
|
1647 |
msgid "Done"
|
1648 |
msgstr "Sulje"
|
1649 |
|
1650 |
+
#: includes/fields/class-acf-field-date_time_picker.php:43
|
1651 |
msgctxt "Date Time Picker JS selectText"
|
1652 |
msgid "Select"
|
1653 |
msgstr "Valitse"
|
1654 |
|
1655 |
+
#: includes/fields/class-acf-field-date_time_picker.php:45
|
1656 |
msgctxt "Date Time Picker JS amText"
|
1657 |
msgid "AM"
|
1658 |
msgstr "AM"
|
1659 |
|
1660 |
+
#: includes/fields/class-acf-field-date_time_picker.php:46
|
1661 |
msgctxt "Date Time Picker JS amTextShort"
|
1662 |
msgid "A"
|
1663 |
msgstr "A"
|
1664 |
|
1665 |
+
#: includes/fields/class-acf-field-date_time_picker.php:49
|
1666 |
msgctxt "Date Time Picker JS pmText"
|
1667 |
msgid "PM"
|
1668 |
msgstr "PM"
|
1669 |
|
1670 |
+
#: includes/fields/class-acf-field-date_time_picker.php:50
|
1671 |
msgctxt "Date Time Picker JS pmTextShort"
|
1672 |
msgid "P"
|
1673 |
msgstr "P"
|
1674 |
|
1675 |
+
#: includes/fields/class-acf-field-email.php:25
|
1676 |
msgid "Email"
|
1677 |
msgstr "Sähköposti"
|
1678 |
|
1679 |
+
#: includes/fields/class-acf-field-email.php:123
|
1680 |
+
#: includes/fields/class-acf-field-number.php:132
|
1681 |
+
#: includes/fields/class-acf-field-password.php:71
|
1682 |
+
#: includes/fields/class-acf-field-text.php:124
|
1683 |
+
#: includes/fields/class-acf-field-textarea.php:107
|
1684 |
+
#: includes/fields/class-acf-field-url.php:105
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1685 |
msgid "Placeholder Text"
|
1686 |
msgstr "Täyteteksti"
|
1687 |
|
1688 |
+
#: includes/fields/class-acf-field-email.php:124
|
1689 |
+
#: includes/fields/class-acf-field-number.php:133
|
1690 |
+
#: includes/fields/class-acf-field-password.php:72
|
1691 |
+
#: includes/fields/class-acf-field-text.php:125
|
1692 |
+
#: includes/fields/class-acf-field-textarea.php:108
|
1693 |
+
#: includes/fields/class-acf-field-url.php:106
|
1694 |
msgid "Appears within the input"
|
1695 |
msgstr "Näkyy input-kentän sisällä"
|
1696 |
|
1697 |
+
#: includes/fields/class-acf-field-email.php:132
|
1698 |
+
#: includes/fields/class-acf-field-number.php:141
|
1699 |
+
#: includes/fields/class-acf-field-password.php:80
|
1700 |
+
#: includes/fields/class-acf-field-range.php:181
|
1701 |
+
#: includes/fields/class-acf-field-text.php:133
|
1702 |
msgid "Prepend"
|
1703 |
msgstr "Etuliite"
|
1704 |
|
1705 |
+
#: includes/fields/class-acf-field-email.php:133
|
1706 |
+
#: includes/fields/class-acf-field-number.php:142
|
1707 |
+
#: includes/fields/class-acf-field-password.php:81
|
1708 |
+
#: includes/fields/class-acf-field-range.php:182
|
1709 |
+
#: includes/fields/class-acf-field-text.php:134
|
1710 |
msgid "Appears before the input"
|
1711 |
msgstr "Näkyy ennen input-kenttää"
|
1712 |
|
1713 |
+
#: includes/fields/class-acf-field-email.php:141
|
1714 |
+
#: includes/fields/class-acf-field-number.php:150
|
1715 |
+
#: includes/fields/class-acf-field-password.php:89
|
1716 |
+
#: includes/fields/class-acf-field-range.php:190
|
1717 |
+
#: includes/fields/class-acf-field-text.php:142
|
1718 |
msgid "Append"
|
1719 |
msgstr "Loppuliite"
|
1720 |
|
1721 |
+
#: includes/fields/class-acf-field-email.php:142
|
1722 |
+
#: includes/fields/class-acf-field-number.php:151
|
1723 |
+
#: includes/fields/class-acf-field-password.php:90
|
1724 |
+
#: includes/fields/class-acf-field-range.php:191
|
1725 |
+
#: includes/fields/class-acf-field-text.php:143
|
1726 |
msgid "Appears after the input"
|
1727 |
msgstr "Näkyy input-kentän jälkeen"
|
1728 |
|
1729 |
+
#: includes/fields/class-acf-field-file.php:25
|
1730 |
msgid "File"
|
1731 |
msgstr "Tiedosto"
|
1732 |
|
1733 |
+
#: includes/fields/class-acf-field-file.php:36
|
1734 |
msgid "Edit File"
|
1735 |
msgstr "Muokkaa tiedostoa"
|
1736 |
|
1737 |
+
#: includes/fields/class-acf-field-file.php:37
|
1738 |
msgid "Update File"
|
1739 |
msgstr "Päivitä tiedosto"
|
1740 |
|
1741 |
+
#: includes/fields/class-acf-field-file.php:38
|
1742 |
+
#: includes/fields/class-acf-field-image.php:43 includes/media.php:57
|
1743 |
+
#: pro/fields/class-acf-field-gallery.php:44
|
1744 |
msgid "Uploaded to this post"
|
1745 |
msgstr "Tähän kenttäryhmään ladatut kuvat"
|
1746 |
|
1747 |
+
#: includes/fields/class-acf-field-file.php:126
|
1748 |
msgid "File name"
|
1749 |
msgstr "Tiedoston nimi"
|
1750 |
|
1751 |
+
#: includes/fields/class-acf-field-file.php:130
|
1752 |
+
#: includes/fields/class-acf-field-file.php:233
|
1753 |
+
#: includes/fields/class-acf-field-file.php:244
|
1754 |
+
#: includes/fields/class-acf-field-image.php:248
|
1755 |
+
#: includes/fields/class-acf-field-image.php:277
|
1756 |
+
#: pro/fields/class-acf-field-gallery.php:690
|
1757 |
+
#: pro/fields/class-acf-field-gallery.php:719
|
1758 |
msgid "File size"
|
1759 |
msgstr "Tiedoston koko"
|
1760 |
|
1761 |
+
#: includes/fields/class-acf-field-file.php:139
|
1762 |
+
#: includes/fields/class-acf-field-image.php:124
|
1763 |
+
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
1764 |
+
#: pro/fields/class-acf-field-gallery.php:343
|
1765 |
+
#: pro/fields/class-acf-field-gallery.php:531
|
1766 |
+
msgid "Remove"
|
1767 |
+
msgstr "Poista"
|
1768 |
+
|
1769 |
+
#: includes/fields/class-acf-field-file.php:155
|
1770 |
msgid "Add File"
|
1771 |
msgstr "Lisää tiedosto"
|
1772 |
|
1773 |
+
#: includes/fields/class-acf-field-file.php:206
|
1774 |
msgid "File Array"
|
1775 |
msgstr "Tiedosto"
|
1776 |
|
1777 |
+
#: includes/fields/class-acf-field-file.php:207
|
1778 |
msgid "File URL"
|
1779 |
msgstr "Tiedoston URL"
|
1780 |
|
1781 |
+
#: includes/fields/class-acf-field-file.php:208
|
1782 |
msgid "File ID"
|
1783 |
msgstr "Tiedoston ID"
|
1784 |
|
1785 |
+
#: includes/fields/class-acf-field-file.php:215
|
1786 |
+
#: includes/fields/class-acf-field-image.php:213
|
1787 |
+
#: pro/fields/class-acf-field-gallery.php:655
|
1788 |
msgid "Library"
|
1789 |
msgstr "Kirjasto"
|
1790 |
|
1791 |
+
#: includes/fields/class-acf-field-file.php:216
|
1792 |
+
#: includes/fields/class-acf-field-image.php:214
|
1793 |
+
#: pro/fields/class-acf-field-gallery.php:656
|
1794 |
msgid "Limit the media library choice"
|
1795 |
msgstr "Rajoita valintaa mediakirjastosta"
|
1796 |
|
1797 |
+
#: includes/fields/class-acf-field-file.php:221
|
1798 |
+
#: includes/fields/class-acf-field-image.php:219
|
1799 |
+
#: includes/locations/class-acf-location-attachment.php:101
|
1800 |
+
#: includes/locations/class-acf-location-comment.php:79
|
1801 |
+
#: includes/locations/class-acf-location-nav-menu.php:102
|
1802 |
+
#: includes/locations/class-acf-location-taxonomy.php:79
|
1803 |
+
#: includes/locations/class-acf-location-user-form.php:87
|
1804 |
+
#: includes/locations/class-acf-location-user-role.php:111
|
1805 |
+
#: includes/locations/class-acf-location-widget.php:83
|
1806 |
+
#: pro/fields/class-acf-field-gallery.php:661
|
1807 |
msgid "All"
|
1808 |
msgstr "Kaikki"
|
1809 |
|
1810 |
+
#: includes/fields/class-acf-field-file.php:222
|
1811 |
+
#: includes/fields/class-acf-field-image.php:220
|
1812 |
+
#: pro/fields/class-acf-field-gallery.php:662
|
1813 |
msgid "Uploaded to post"
|
1814 |
msgstr "Vain tähän artikkeliin ladatut"
|
1815 |
|
1816 |
+
#: includes/fields/class-acf-field-file.php:229
|
1817 |
+
#: includes/fields/class-acf-field-image.php:227
|
1818 |
+
#: pro/fields/class-acf-field-gallery.php:669
|
1819 |
msgid "Minimum"
|
1820 |
msgstr "Minimiarvo(t)"
|
1821 |
|
1822 |
+
#: includes/fields/class-acf-field-file.php:230
|
1823 |
+
#: includes/fields/class-acf-field-file.php:241
|
1824 |
msgid "Restrict which files can be uploaded"
|
1825 |
msgstr "Määritä tiedoston koko"
|
1826 |
|
1827 |
+
#: includes/fields/class-acf-field-file.php:240
|
1828 |
+
#: includes/fields/class-acf-field-image.php:256
|
1829 |
+
#: pro/fields/class-acf-field-gallery.php:698
|
1830 |
msgid "Maximum"
|
1831 |
msgstr "Maksimiarvo(t)"
|
1832 |
|
1833 |
+
#: includes/fields/class-acf-field-file.php:251
|
1834 |
+
#: includes/fields/class-acf-field-image.php:285
|
1835 |
+
#: pro/fields/class-acf-field-gallery.php:727
|
1836 |
msgid "Allowed file types"
|
1837 |
msgstr "Sallitut tiedostotyypit"
|
1838 |
|
1839 |
+
#: includes/fields/class-acf-field-file.php:252
|
1840 |
+
#: includes/fields/class-acf-field-image.php:286
|
1841 |
+
#: pro/fields/class-acf-field-gallery.php:728
|
1842 |
msgid "Comma separated list. Leave blank for all types"
|
1843 |
msgstr "Erota pilkulla. Jätä tyhjäksi, jos haluat sallia kaikki tiedostyypit"
|
1844 |
|
1845 |
+
#: includes/fields/class-acf-field-google-map.php:25
|
1846 |
msgid "Google Map"
|
1847 |
msgstr "Google Kartta"
|
1848 |
|
1849 |
+
#: includes/fields/class-acf-field-google-map.php:40
|
1850 |
msgid "Locating"
|
1851 |
msgstr "Paikannus"
|
1852 |
|
1853 |
+
#: includes/fields/class-acf-field-google-map.php:41
|
1854 |
msgid "Sorry, this browser does not support geolocation"
|
1855 |
msgstr "Pahoittelut, mutta tämä selain ei tuo paikannusta"
|
1856 |
|
1857 |
+
#: includes/fields/class-acf-field-google-map.php:113
|
1858 |
msgid "Clear location"
|
1859 |
msgstr "Tyhjennä paikkatieto"
|
1860 |
|
1861 |
+
#: includes/fields/class-acf-field-google-map.php:114
|
1862 |
msgid "Find current location"
|
1863 |
msgstr "Etsi nykyinen sijainti"
|
1864 |
|
1865 |
+
#: includes/fields/class-acf-field-google-map.php:117
|
1866 |
msgid "Search for address..."
|
1867 |
msgstr "Etsi osoite..."
|
1868 |
|
1869 |
+
#: includes/fields/class-acf-field-google-map.php:147
|
1870 |
+
#: includes/fields/class-acf-field-google-map.php:158
|
1871 |
msgid "Center"
|
1872 |
msgstr "Sijainti"
|
1873 |
|
1874 |
+
#: includes/fields/class-acf-field-google-map.php:148
|
1875 |
+
#: includes/fields/class-acf-field-google-map.php:159
|
1876 |
msgid "Center the initial map"
|
1877 |
msgstr "Kartan oletussijainti"
|
1878 |
|
1879 |
+
#: includes/fields/class-acf-field-google-map.php:170
|
1880 |
msgid "Zoom"
|
1881 |
msgstr "Zoomaus"
|
1882 |
|
1883 |
+
#: includes/fields/class-acf-field-google-map.php:171
|
1884 |
msgid "Set the initial zoom level"
|
1885 |
msgstr "Aseta oletuszoomaus"
|
1886 |
|
1887 |
+
#: includes/fields/class-acf-field-google-map.php:180
|
1888 |
+
#: includes/fields/class-acf-field-image.php:239
|
1889 |
+
#: includes/fields/class-acf-field-image.php:268
|
1890 |
+
#: includes/fields/class-acf-field-oembed.php:281
|
1891 |
+
#: pro/fields/class-acf-field-gallery.php:681
|
1892 |
+
#: pro/fields/class-acf-field-gallery.php:710
|
1893 |
msgid "Height"
|
1894 |
msgstr "Korkeus"
|
1895 |
|
1896 |
+
#: includes/fields/class-acf-field-google-map.php:181
|
1897 |
msgid "Customise the map height"
|
1898 |
msgstr "Muotoile kartan korkeus"
|
1899 |
|
1900 |
+
#: includes/fields/class-acf-field-group.php:25
|
|
|
1901 |
msgid "Group"
|
1902 |
+
msgstr "Ryhmä"
|
1903 |
|
1904 |
+
#: includes/fields/class-acf-field-group.php:459
|
1905 |
+
#: pro/fields/class-acf-field-repeater.php:389
|
1906 |
msgid "Sub Fields"
|
1907 |
msgstr "Alakentät"
|
1908 |
|
1909 |
+
#: includes/fields/class-acf-field-group.php:475
|
1910 |
+
#: pro/fields/class-acf-field-clone.php:840
|
1911 |
msgid "Specify the style used to render the selected fields"
|
1912 |
msgstr "Määritä tyyli, jota käytetään valittujen kenttien luomisessa"
|
1913 |
|
1914 |
+
#: includes/fields/class-acf-field-group.php:480
|
1915 |
+
#: pro/fields/class-acf-field-clone.php:845
|
1916 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
1917 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
1918 |
msgid "Block"
|
1919 |
msgstr "Lohko"
|
1920 |
|
1921 |
+
#: includes/fields/class-acf-field-group.php:481
|
1922 |
+
#: pro/fields/class-acf-field-clone.php:846
|
1923 |
+
#: pro/fields/class-acf-field-flexible-content.php:611
|
1924 |
+
#: pro/fields/class-acf-field-repeater.php:457
|
1925 |
msgid "Table"
|
1926 |
msgstr "Taulukko"
|
1927 |
|
1928 |
+
#: includes/fields/class-acf-field-group.php:482
|
1929 |
+
#: pro/fields/class-acf-field-clone.php:847
|
1930 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
1931 |
+
#: pro/fields/class-acf-field-repeater.php:459
|
1932 |
msgid "Row"
|
1933 |
msgstr "Rivi"
|
1934 |
|
1935 |
+
#: includes/fields/class-acf-field-image.php:25
|
1936 |
msgid "Image"
|
1937 |
msgstr "Kuva"
|
1938 |
|
1939 |
+
#: includes/fields/class-acf-field-image.php:40
|
1940 |
msgid "Select Image"
|
1941 |
msgstr "Valitse kuva"
|
1942 |
|
1943 |
+
#: includes/fields/class-acf-field-image.php:41
|
1944 |
+
#: pro/fields/class-acf-field-gallery.php:42
|
1945 |
msgid "Edit Image"
|
1946 |
msgstr "Muokkaa kuvaa"
|
1947 |
|
1948 |
+
#: includes/fields/class-acf-field-image.php:42
|
1949 |
+
#: pro/fields/class-acf-field-gallery.php:43
|
1950 |
msgid "Update Image"
|
1951 |
msgstr "Päivitä kuva"
|
1952 |
|
1953 |
+
#: includes/fields/class-acf-field-image.php:44
|
1954 |
msgid "All images"
|
1955 |
msgstr "Kaikki kuvat"
|
1956 |
|
1957 |
+
#: includes/fields/class-acf-field-image.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1958 |
msgid "No image selected"
|
1959 |
msgstr "Ei kuvia valittu"
|
1960 |
|
1961 |
+
#: includes/fields/class-acf-field-image.php:140
|
1962 |
msgid "Add Image"
|
1963 |
msgstr "Lisää kuva"
|
1964 |
|
1965 |
+
#: includes/fields/class-acf-field-image.php:194
|
1966 |
msgid "Image Array"
|
1967 |
msgstr "Kuva"
|
1968 |
|
1969 |
+
#: includes/fields/class-acf-field-image.php:195
|
1970 |
msgid "Image URL"
|
1971 |
msgstr "Kuvan URL"
|
1972 |
|
1973 |
+
#: includes/fields/class-acf-field-image.php:196
|
1974 |
msgid "Image ID"
|
1975 |
msgstr "Kuvan ID"
|
1976 |
|
1977 |
+
#: includes/fields/class-acf-field-image.php:203
|
1978 |
msgid "Preview Size"
|
1979 |
msgstr "Esikatselukuvan koko"
|
1980 |
|
1981 |
+
#: includes/fields/class-acf-field-image.php:204
|
1982 |
msgid "Shown when entering data"
|
1983 |
msgstr "Näytetään muokkausnäkymässä"
|
1984 |
|
1985 |
+
#: includes/fields/class-acf-field-image.php:228
|
1986 |
+
#: includes/fields/class-acf-field-image.php:257
|
1987 |
+
#: pro/fields/class-acf-field-gallery.php:670
|
1988 |
+
#: pro/fields/class-acf-field-gallery.php:699
|
1989 |
msgid "Restrict which images can be uploaded"
|
1990 |
msgstr "Määritä millaisia kuvia voidaan ladata"
|
1991 |
|
1992 |
+
#: includes/fields/class-acf-field-image.php:231
|
1993 |
+
#: includes/fields/class-acf-field-image.php:260
|
1994 |
+
#: includes/fields/class-acf-field-oembed.php:270
|
1995 |
+
#: pro/fields/class-acf-field-gallery.php:673
|
1996 |
+
#: pro/fields/class-acf-field-gallery.php:702
|
1997 |
msgid "Width"
|
1998 |
msgstr "Leveys"
|
1999 |
|
2000 |
+
#: includes/fields/class-acf-field-link.php:25
|
|
|
2001 |
msgid "Link"
|
2002 |
+
msgstr "Linkki"
|
2003 |
|
2004 |
+
#: includes/fields/class-acf-field-link.php:133
|
|
|
2005 |
msgid "Select Link"
|
2006 |
+
msgstr "Valitse linkki"
|
2007 |
|
2008 |
+
#: includes/fields/class-acf-field-link.php:138
|
2009 |
msgid "Opens in a new window/tab"
|
2010 |
+
msgstr "Avaa uuteen ikkunaan/välilehteen"
|
2011 |
|
2012 |
+
#: includes/fields/class-acf-field-link.php:172
|
|
|
2013 |
msgid "Link Array"
|
2014 |
+
msgstr "Linkkitaulukko (array)"
|
2015 |
|
2016 |
+
#: includes/fields/class-acf-field-link.php:173
|
|
|
2017 |
msgid "Link URL"
|
2018 |
+
msgstr "Linkin URL-osoite"
|
2019 |
|
2020 |
+
#: includes/fields/class-acf-field-message.php:25
|
2021 |
+
#: includes/fields/class-acf-field-message.php:101
|
2022 |
+
#: includes/fields/class-acf-field-true_false.php:126
|
2023 |
msgid "Message"
|
2024 |
msgstr "Viesti"
|
2025 |
|
2026 |
+
#: includes/fields/class-acf-field-message.php:110
|
2027 |
+
#: includes/fields/class-acf-field-textarea.php:135
|
2028 |
msgid "New Lines"
|
2029 |
msgstr "Uudet rivit"
|
2030 |
|
2031 |
+
#: includes/fields/class-acf-field-message.php:111
|
2032 |
+
#: includes/fields/class-acf-field-textarea.php:136
|
2033 |
msgid "Controls how new lines are rendered"
|
2034 |
msgstr "Määrittää kuinka uudet rivit muotoillaan"
|
2035 |
|
2036 |
+
#: includes/fields/class-acf-field-message.php:115
|
2037 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
2038 |
msgid "Automatically add paragraphs"
|
2039 |
msgstr "Lisää automaattisesti kappale"
|
2040 |
|
2041 |
+
#: includes/fields/class-acf-field-message.php:116
|
2042 |
+
#: includes/fields/class-acf-field-textarea.php:141
|
2043 |
msgid "Automatically add <br>"
|
2044 |
msgstr "Lisää automaattisesti <br>"
|
2045 |
|
2046 |
+
#: includes/fields/class-acf-field-message.php:117
|
2047 |
+
#: includes/fields/class-acf-field-textarea.php:142
|
2048 |
msgid "No Formatting"
|
2049 |
msgstr "Ei muotoilua"
|
2050 |
|
2051 |
+
#: includes/fields/class-acf-field-message.php:124
|
2052 |
msgid "Escape HTML"
|
2053 |
msgstr "Escape HTML"
|
2054 |
|
2055 |
+
#: includes/fields/class-acf-field-message.php:125
|
2056 |
msgid "Allow HTML markup to display as visible text instead of rendering"
|
2057 |
msgstr "Haluatko, että HTML-merkinnät näkyvät tekstinä?"
|
2058 |
|
2059 |
+
#: includes/fields/class-acf-field-number.php:25
|
2060 |
msgid "Number"
|
2061 |
msgstr "Numero"
|
2062 |
|
2063 |
+
#: includes/fields/class-acf-field-number.php:159
|
2064 |
+
#: includes/fields/class-acf-field-range.php:151
|
2065 |
msgid "Minimum Value"
|
2066 |
msgstr "Minimiarvo"
|
2067 |
|
2068 |
+
#: includes/fields/class-acf-field-number.php:168
|
2069 |
+
#: includes/fields/class-acf-field-range.php:161
|
2070 |
msgid "Maximum Value"
|
2071 |
msgstr "Maksimiarvo"
|
2072 |
|
2073 |
+
#: includes/fields/class-acf-field-number.php:177
|
2074 |
+
#: includes/fields/class-acf-field-range.php:171
|
2075 |
msgid "Step Size"
|
2076 |
msgstr "Askelluksen koko"
|
2077 |
|
2078 |
+
#: includes/fields/class-acf-field-number.php:215
|
2079 |
msgid "Value must be a number"
|
2080 |
msgstr "Arvon täytyy olla numero"
|
2081 |
|
2082 |
+
#: includes/fields/class-acf-field-number.php:233
|
2083 |
#, php-format
|
2084 |
msgid "Value must be equal to or higher than %d"
|
2085 |
msgstr "Arvon täytyy olla sama tai suurempi kuin %d"
|
2086 |
|
2087 |
+
#: includes/fields/class-acf-field-number.php:241
|
2088 |
#, php-format
|
2089 |
msgid "Value must be equal to or lower than %d"
|
2090 |
msgstr "Arvon täytyy olla sama tai pienempi kuin %d"
|
2091 |
|
2092 |
+
#: includes/fields/class-acf-field-oembed.php:25
|
2093 |
msgid "oEmbed"
|
2094 |
msgstr "oEmbed"
|
2095 |
|
2096 |
+
#: includes/fields/class-acf-field-oembed.php:219
|
2097 |
msgid "Enter URL"
|
2098 |
msgstr "Syötä URL"
|
2099 |
|
2100 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2101 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2102 |
msgid "Error."
|
2103 |
msgstr "Virhe."
|
2104 |
|
2105 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2106 |
msgid "No embed found for the given URL."
|
2107 |
msgstr "Upotettavaa ei löytynyt annetusta URL-osoitteesta."
|
2108 |
|
2109 |
+
#: includes/fields/class-acf-field-oembed.php:267
|
2110 |
+
#: includes/fields/class-acf-field-oembed.php:278
|
2111 |
msgid "Embed Size"
|
2112 |
msgstr "Upotuksen koko"
|
2113 |
|
2114 |
+
#: includes/fields/class-acf-field-page_link.php:177
|
2115 |
msgid "Archives"
|
2116 |
msgstr "Arkistot"
|
2117 |
|
2118 |
+
#: includes/fields/class-acf-field-page_link.php:485
|
2119 |
+
#: includes/fields/class-acf-field-post_object.php:384
|
2120 |
+
#: includes/fields/class-acf-field-relationship.php:623
|
2121 |
msgid "Filter by Post Type"
|
2122 |
msgstr "Suodata tyypin mukaan"
|
2123 |
|
2124 |
+
#: includes/fields/class-acf-field-page_link.php:493
|
2125 |
+
#: includes/fields/class-acf-field-post_object.php:392
|
2126 |
+
#: includes/fields/class-acf-field-relationship.php:631
|
2127 |
msgid "All post types"
|
2128 |
msgstr "Kaikki artikkelityypit"
|
2129 |
|
2130 |
+
#: includes/fields/class-acf-field-page_link.php:499
|
2131 |
+
#: includes/fields/class-acf-field-post_object.php:398
|
2132 |
+
#: includes/fields/class-acf-field-relationship.php:637
|
2133 |
msgid "Filter by Taxonomy"
|
2134 |
msgstr "Suodata taksonomian mukaan"
|
2135 |
|
2136 |
+
#: includes/fields/class-acf-field-page_link.php:507
|
2137 |
+
#: includes/fields/class-acf-field-post_object.php:406
|
2138 |
+
#: includes/fields/class-acf-field-relationship.php:645
|
2139 |
msgid "All taxonomies"
|
2140 |
msgstr "Kaikki taksonomiat"
|
2141 |
|
2142 |
+
#: includes/fields/class-acf-field-page_link.php:523
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2143 |
msgid "Allow Archives URLs"
|
2144 |
msgstr "Salli arkistojen URL-osoitteita"
|
2145 |
|
2146 |
+
#: includes/fields/class-acf-field-page_link.php:533
|
2147 |
+
#: includes/fields/class-acf-field-post_object.php:422
|
2148 |
+
#: includes/fields/class-acf-field-select.php:396
|
2149 |
+
#: includes/fields/class-acf-field-user.php:418
|
2150 |
msgid "Select multiple values?"
|
2151 |
msgstr "Valitse useita arvoja?"
|
2152 |
|
2153 |
+
#: includes/fields/class-acf-field-password.php:25
|
2154 |
msgid "Password"
|
2155 |
msgstr "Salasana"
|
2156 |
|
2157 |
+
#: includes/fields/class-acf-field-post_object.php:25
|
2158 |
+
#: includes/fields/class-acf-field-post_object.php:437
|
2159 |
+
#: includes/fields/class-acf-field-relationship.php:702
|
2160 |
msgid "Post Object"
|
2161 |
msgstr "Artikkeliolio"
|
2162 |
|
2163 |
+
#: includes/fields/class-acf-field-post_object.php:438
|
2164 |
+
#: includes/fields/class-acf-field-relationship.php:703
|
2165 |
msgid "Post ID"
|
2166 |
msgstr "Artikkelin ID"
|
2167 |
|
2168 |
+
#: includes/fields/class-acf-field-radio.php:25
|
2169 |
msgid "Radio Button"
|
2170 |
msgstr "Valintanappi"
|
2171 |
|
2172 |
+
#: includes/fields/class-acf-field-radio.php:254
|
2173 |
msgid "Other"
|
2174 |
msgstr "Muu"
|
2175 |
|
2176 |
+
#: includes/fields/class-acf-field-radio.php:259
|
2177 |
msgid "Add 'other' choice to allow for custom values"
|
2178 |
msgstr "Lisää 'Muu' vaihtoehto salliaksesi mukautettuja arvoja"
|
2179 |
|
2180 |
+
#: includes/fields/class-acf-field-radio.php:265
|
2181 |
msgid "Save Other"
|
2182 |
msgstr "Tallenna Muu"
|
2183 |
|
2184 |
+
#: includes/fields/class-acf-field-radio.php:270
|
2185 |
msgid "Save 'other' values to the field's choices"
|
2186 |
msgstr "Tallenna 'Muu’-kentän arvo kentän valinnaksi"
|
2187 |
|
2188 |
+
#: includes/fields/class-acf-field-range.php:25
|
2189 |
+
msgid "Range"
|
2190 |
+
msgstr "Liukusäädin"
|
2191 |
+
|
2192 |
+
#: includes/fields/class-acf-field-relationship.php:25
|
2193 |
msgid "Relationship"
|
2194 |
msgstr "Suodata artikkeleita"
|
2195 |
|
2196 |
+
#: includes/fields/class-acf-field-relationship.php:37
|
2197 |
msgid "Minimum values reached ( {min} values )"
|
2198 |
msgstr "Pienin määrä arvoja saavutettu ({min} arvoa)"
|
2199 |
|
2200 |
+
#: includes/fields/class-acf-field-relationship.php:38
|
2201 |
msgid "Maximum values reached ( {max} values )"
|
2202 |
msgstr "Maksimiarvo saavutettu ( {max} artikkelia )"
|
2203 |
|
2204 |
+
#: includes/fields/class-acf-field-relationship.php:39
|
2205 |
msgid "Loading"
|
2206 |
msgstr "Ladataan"
|
2207 |
|
2208 |
+
#: includes/fields/class-acf-field-relationship.php:40
|
2209 |
msgid "No matches found"
|
2210 |
msgstr "Ei yhtään osumaa"
|
2211 |
|
2212 |
+
#: includes/fields/class-acf-field-relationship.php:423
|
|
|
|
|
|
|
|
|
2213 |
msgid "Select post type"
|
2214 |
msgstr "Valitse artikkelityyppi"
|
2215 |
|
2216 |
+
#: includes/fields/class-acf-field-relationship.php:449
|
2217 |
msgid "Select taxonomy"
|
2218 |
msgstr "Valitse taksonomia"
|
2219 |
|
2220 |
+
#: includes/fields/class-acf-field-relationship.php:539
|
2221 |
+
msgid "Search..."
|
2222 |
+
msgstr "Etsi..."
|
2223 |
+
|
2224 |
+
#: includes/fields/class-acf-field-relationship.php:651
|
2225 |
msgid "Filters"
|
2226 |
msgstr "Suodattimet"
|
2227 |
|
2228 |
+
#: includes/fields/class-acf-field-relationship.php:657
|
2229 |
#: includes/locations/class-acf-location-post-type.php:27
|
2230 |
msgid "Post Type"
|
2231 |
msgstr "Artikkelityyppi"
|
2232 |
|
2233 |
+
#: includes/fields/class-acf-field-relationship.php:658
|
2234 |
+
#: includes/fields/class-acf-field-taxonomy.php:28
|
2235 |
+
#: includes/fields/class-acf-field-taxonomy.php:763
|
2236 |
msgid "Taxonomy"
|
2237 |
msgstr "Taksonomia"
|
2238 |
|
2239 |
+
#: includes/fields/class-acf-field-relationship.php:665
|
2240 |
msgid "Elements"
|
2241 |
msgstr "Elementit"
|
2242 |
|
2243 |
+
#: includes/fields/class-acf-field-relationship.php:666
|
2244 |
msgid "Selected elements will be displayed in each result"
|
2245 |
msgstr "Valitut elementit näytetään jokaisessa tuloksessa"
|
2246 |
|
2247 |
+
#: includes/fields/class-acf-field-relationship.php:677
|
2248 |
msgid "Minimum posts"
|
2249 |
msgstr "Vähimmäismäärä artikkeleita"
|
2250 |
|
2251 |
+
#: includes/fields/class-acf-field-relationship.php:686
|
2252 |
msgid "Maximum posts"
|
2253 |
msgstr "Maksimi artikkelit"
|
2254 |
|
2255 |
+
#: includes/fields/class-acf-field-relationship.php:790
|
2256 |
+
#: pro/fields/class-acf-field-gallery.php:800
|
2257 |
#, php-format
|
2258 |
msgid "%s requires at least %s selection"
|
2259 |
msgid_plural "%s requires at least %s selections"
|
2260 |
msgstr[0] "%s vaatii vähintään %s valinnan"
|
2261 |
msgstr[1] "%s vaatii vähintään %s valintaa"
|
2262 |
|
2263 |
+
#: includes/fields/class-acf-field-select.php:25
|
2264 |
+
#: includes/fields/class-acf-field-taxonomy.php:785
|
2265 |
msgctxt "noun"
|
2266 |
msgid "Select"
|
2267 |
msgstr "Valintalista"
|
2268 |
|
2269 |
+
#: includes/fields/class-acf-field-select.php:38
|
2270 |
msgctxt "Select2 JS matches_1"
|
2271 |
msgid "One result is available, press enter to select it."
|
2272 |
msgstr "Yksi tulos on saatavilla. Valitse se painamalla enter-näppäintä."
|
2273 |
|
2274 |
+
#: includes/fields/class-acf-field-select.php:39
|
2275 |
#, php-format
|
2276 |
msgctxt "Select2 JS matches_n"
|
2277 |
msgid "%d results are available, use up and down arrow keys to navigate."
|
2279 |
"%d tulosta on saatavilla. Voit navigoida tuloksian välillä käyttämällä "
|
2280 |
"”ylös” ja ”alas” -näppäimiä."
|
2281 |
|
2282 |
+
#: includes/fields/class-acf-field-select.php:40
|
2283 |
msgctxt "Select2 JS matches_0"
|
2284 |
msgid "No matches found"
|
2285 |
msgstr "Osumia ei löytynyt"
|
2286 |
|
2287 |
+
#: includes/fields/class-acf-field-select.php:41
|
2288 |
msgctxt "Select2 JS input_too_short_1"
|
2289 |
msgid "Please enter 1 or more characters"
|
2290 |
msgstr "Kirjoita yksi tai useampi merkki"
|
2291 |
|
2292 |
+
#: includes/fields/class-acf-field-select.php:42
|
2293 |
#, php-format
|
2294 |
msgctxt "Select2 JS input_too_short_n"
|
2295 |
msgid "Please enter %d or more characters"
|
2296 |
msgstr "Kirjoita %d tai useampi merkkiä"
|
2297 |
|
2298 |
+
#: includes/fields/class-acf-field-select.php:43
|
2299 |
msgctxt "Select2 JS input_too_long_1"
|
2300 |
msgid "Please delete 1 character"
|
2301 |
msgstr "Poista 1 merkki"
|
2302 |
|
2303 |
+
#: includes/fields/class-acf-field-select.php:44
|
2304 |
#, php-format
|
2305 |
msgctxt "Select2 JS input_too_long_n"
|
2306 |
msgid "Please delete %d characters"
|
2307 |
msgstr "Poista %d merkkiä"
|
2308 |
|
2309 |
+
#: includes/fields/class-acf-field-select.php:45
|
2310 |
msgctxt "Select2 JS selection_too_long_1"
|
2311 |
msgid "You can only select 1 item"
|
2312 |
msgstr "Voit valita vain yhden kohteen"
|
2313 |
|
2314 |
+
#: includes/fields/class-acf-field-select.php:46
|
2315 |
#, php-format
|
2316 |
msgctxt "Select2 JS selection_too_long_n"
|
2317 |
msgid "You can only select %d items"
|
2318 |
msgstr "Voit valita vain %d kohdetta"
|
2319 |
|
2320 |
+
#: includes/fields/class-acf-field-select.php:47
|
2321 |
msgctxt "Select2 JS load_more"
|
2322 |
msgid "Loading more results…"
|
2323 |
msgstr "Lataa lisää tuloksia …"
|
2324 |
|
2325 |
+
#: includes/fields/class-acf-field-select.php:48
|
2326 |
msgctxt "Select2 JS searching"
|
2327 |
msgid "Searching…"
|
2328 |
msgstr "Etsii…"
|
2329 |
|
2330 |
+
#: includes/fields/class-acf-field-select.php:49
|
2331 |
msgctxt "Select2 JS load_fail"
|
2332 |
msgid "Loading failed"
|
2333 |
msgstr "Lataus epäonnistui"
|
2334 |
|
2335 |
+
#: includes/fields/class-acf-field-select.php:255 includes/media.php:54
|
2336 |
msgctxt "verb"
|
2337 |
msgid "Select"
|
2338 |
msgstr "Valitse"
|
2339 |
|
2340 |
+
#: includes/fields/class-acf-field-select.php:406
|
2341 |
+
#: includes/fields/class-acf-field-true_false.php:144
|
2342 |
msgid "Stylised UI"
|
2343 |
msgstr "Tyylikäs käyttöliittymä"
|
2344 |
|
2345 |
+
#: includes/fields/class-acf-field-select.php:416
|
2346 |
msgid "Use AJAX to lazy load choices?"
|
2347 |
msgstr "Haluatko ladata valinnat laiskasti (käyttää AJAXia)?"
|
2348 |
|
2349 |
+
#: includes/fields/class-acf-field-select.php:427
|
2350 |
msgid "Specify the value returned"
|
2351 |
msgstr "Määritä palautetun arvon muoto"
|
2352 |
|
2353 |
+
#: includes/fields/class-acf-field-separator.php:25
|
2354 |
msgid "Separator"
|
2355 |
+
msgstr "Erotusmerkki"
|
2356 |
|
2357 |
+
#: includes/fields/class-acf-field-tab.php:25
|
2358 |
msgid "Tab"
|
2359 |
msgstr "Välilehti"
|
2360 |
|
2361 |
+
#: includes/fields/class-acf-field-tab.php:82
|
2362 |
msgid ""
|
2363 |
"The tab field will display incorrectly when added to a Table style repeater "
|
2364 |
"field or flexible content field layout"
|
2366 |
"Välilehtikentän ulkoasu rikkoutuu, jos lisätään taulukko-tyyli toistin "
|
2367 |
"kenttä tai joustava sisältö kenttä asettelu"
|
2368 |
|
2369 |
+
#: includes/fields/class-acf-field-tab.php:83
|
2370 |
msgid ""
|
2371 |
"Use \"Tab Fields\" to better organize your edit screen by grouping fields "
|
2372 |
"together."
|
2374 |
"Ryhmittele kenttiä käyttämällä ”välilehtikenttiä”. Näin saat selkeämmän "
|
2375 |
"muokkausnäkymän."
|
2376 |
|
2377 |
+
#: includes/fields/class-acf-field-tab.php:84
|
2378 |
msgid ""
|
2379 |
"All fields following this \"tab field\" (or until another \"tab field\" is "
|
2380 |
"defined) will be grouped together using this field's label as the tab "
|
2384 |
"\"välilehtikenttä\" määritellään) ryhmitellään yhteen ja välilehden "
|
2385 |
"otsikoksi tulee tämän kentän nimiö."
|
2386 |
|
2387 |
+
#: includes/fields/class-acf-field-tab.php:98
|
2388 |
msgid "Placement"
|
2389 |
msgstr "Sijainti"
|
2390 |
|
2391 |
+
#: includes/fields/class-acf-field-tab.php:110
|
2392 |
msgid "End-point"
|
2393 |
msgstr "Välilehtiryhmän aloitus"
|
2394 |
|
2395 |
+
#: includes/fields/class-acf-field-tab.php:111
|
2396 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2397 |
msgstr "Valitse ”kyllä”, jos haluat aloittaa uuden välilehtiryhmän."
|
2398 |
|
2399 |
+
#: includes/fields/class-acf-field-taxonomy.php:713
|
2400 |
+
#, php-format
|
2401 |
+
msgctxt "No terms"
|
2402 |
+
msgid "No %s"
|
2403 |
+
msgstr "Ei %s"
|
|
|
2404 |
|
2405 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
2406 |
msgid "None"
|
2407 |
msgstr "Ei mitään"
|
2408 |
|
2409 |
+
#: includes/fields/class-acf-field-taxonomy.php:764
|
2410 |
msgid "Select the taxonomy to be displayed"
|
2411 |
msgstr "Valitse taksonomia, joka näytetään"
|
2412 |
|
2413 |
+
#: includes/fields/class-acf-field-taxonomy.php:773
|
2414 |
msgid "Appearance"
|
2415 |
msgstr "Ulkoasu"
|
2416 |
|
2417 |
+
#: includes/fields/class-acf-field-taxonomy.php:774
|
2418 |
msgid "Select the appearance of this field"
|
2419 |
msgstr "Valitse ulkoasu tälle kenttälle"
|
2420 |
|
2421 |
+
#: includes/fields/class-acf-field-taxonomy.php:779
|
2422 |
msgid "Multiple Values"
|
2423 |
msgstr "Mahdollisuus valita useita arvoja"
|
2424 |
|
2425 |
+
#: includes/fields/class-acf-field-taxonomy.php:781
|
2426 |
msgid "Multi Select"
|
2427 |
msgstr "Valitse useita"
|
2428 |
|
2429 |
+
#: includes/fields/class-acf-field-taxonomy.php:783
|
2430 |
msgid "Single Value"
|
2431 |
msgstr "Mahdollisuus valita vain yksi arvo"
|
2432 |
|
2433 |
+
#: includes/fields/class-acf-field-taxonomy.php:784
|
2434 |
msgid "Radio Buttons"
|
2435 |
msgstr "Valintanappi"
|
2436 |
|
2437 |
+
#: includes/fields/class-acf-field-taxonomy.php:803
|
2438 |
msgid "Create Terms"
|
2439 |
msgstr "Uusien ehtojen luominen"
|
2440 |
|
2441 |
+
#: includes/fields/class-acf-field-taxonomy.php:804
|
2442 |
msgid "Allow new terms to be created whilst editing"
|
2443 |
msgstr "Salli uusien ehtojen luominen samalla kun muokataan"
|
2444 |
|
2445 |
+
#: includes/fields/class-acf-field-taxonomy.php:813
|
2446 |
msgid "Save Terms"
|
2447 |
msgstr "Tallenna ehdot"
|
2448 |
|
2449 |
+
#: includes/fields/class-acf-field-taxonomy.php:814
|
2450 |
msgid "Connect selected terms to the post"
|
2451 |
msgstr "Yhdistä valitut ehdot artikkeliin"
|
2452 |
|
2453 |
+
#: includes/fields/class-acf-field-taxonomy.php:823
|
2454 |
msgid "Load Terms"
|
2455 |
msgstr "Lataa ehdot"
|
2456 |
|
2457 |
+
#: includes/fields/class-acf-field-taxonomy.php:824
|
2458 |
msgid "Load value from posts terms"
|
2459 |
msgstr "Lataa arvo artikkelin ehdoista"
|
2460 |
|
2461 |
+
#: includes/fields/class-acf-field-taxonomy.php:838
|
2462 |
msgid "Term Object"
|
2463 |
msgstr "Ehto"
|
2464 |
|
2465 |
+
#: includes/fields/class-acf-field-taxonomy.php:839
|
2466 |
msgid "Term ID"
|
2467 |
msgstr "Ehdon ID"
|
2468 |
|
2469 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2470 |
#, php-format
|
2471 |
msgid "User unable to add new %s"
|
2472 |
msgstr "Käyttäjä ei voi lisätä uutta %s"
|
2473 |
|
2474 |
+
#: includes/fields/class-acf-field-taxonomy.php:911
|
2475 |
#, php-format
|
2476 |
msgid "%s already exists"
|
2477 |
msgstr "%s on jo olemassa"
|
2478 |
|
2479 |
+
#: includes/fields/class-acf-field-taxonomy.php:952
|
2480 |
#, php-format
|
2481 |
msgid "%s added"
|
2482 |
msgstr "%s lisättiin"
|
2483 |
|
2484 |
+
#: includes/fields/class-acf-field-taxonomy.php:997
|
2485 |
msgid "Add"
|
2486 |
msgstr "Lisää"
|
2487 |
|
2488 |
+
#: includes/fields/class-acf-field-text.php:25
|
2489 |
msgid "Text"
|
2490 |
msgstr "Teksti"
|
2491 |
|
2492 |
+
#: includes/fields/class-acf-field-text.php:151
|
2493 |
+
#: includes/fields/class-acf-field-textarea.php:116
|
2494 |
msgid "Character Limit"
|
2495 |
msgstr "Merkkirajoitus"
|
2496 |
|
2497 |
+
#: includes/fields/class-acf-field-text.php:152
|
2498 |
+
#: includes/fields/class-acf-field-textarea.php:117
|
2499 |
msgid "Leave blank for no limit"
|
2500 |
msgstr "Jos et halua rajoittaa, jätä tyhjäksi"
|
2501 |
|
2502 |
+
#: includes/fields/class-acf-field-textarea.php:25
|
2503 |
msgid "Text Area"
|
2504 |
msgstr "Tekstialue"
|
2505 |
|
2506 |
+
#: includes/fields/class-acf-field-textarea.php:125
|
2507 |
msgid "Rows"
|
2508 |
msgstr "Rivit"
|
2509 |
|
2510 |
+
#: includes/fields/class-acf-field-textarea.php:126
|
2511 |
msgid "Sets the textarea height"
|
2512 |
msgstr "Aseta tekstialueen koko"
|
2513 |
|
2514 |
+
#: includes/fields/class-acf-field-time_picker.php:25
|
2515 |
msgid "Time Picker"
|
2516 |
msgstr "Kellonaikavalitsin"
|
2517 |
|
2518 |
+
#: includes/fields/class-acf-field-true_false.php:25
|
2519 |
msgid "True / False"
|
2520 |
msgstr "”Tosi / Epätosi” -valinta"
|
2521 |
|
2522 |
+
#: includes/fields/class-acf-field-true_false.php:79
|
2523 |
+
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2524 |
+
#: pro/admin/views/html-settings-updates.php:89
|
2525 |
msgid "Yes"
|
2526 |
msgstr "Kyllä"
|
2527 |
|
2528 |
+
#: includes/fields/class-acf-field-true_false.php:80
|
2529 |
+
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2530 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2531 |
+
msgid "No"
|
2532 |
+
msgstr "Ei"
|
2533 |
+
|
2534 |
+
#: includes/fields/class-acf-field-true_false.php:127
|
2535 |
msgid "Displays text alongside the checkbox"
|
2536 |
+
msgstr "Näytä teksti valintaruudun rinnalla"
|
2537 |
|
2538 |
+
#: includes/fields/class-acf-field-true_false.php:155
|
|
|
2539 |
msgid "On Text"
|
2540 |
+
msgstr "Päällä -teksti"
|
2541 |
|
2542 |
+
#: includes/fields/class-acf-field-true_false.php:156
|
2543 |
msgid "Text shown when active"
|
2544 |
+
msgstr "Teksti, joka näytetään kun valinta on aktiivinen"
|
2545 |
|
2546 |
+
#: includes/fields/class-acf-field-true_false.php:165
|
|
|
2547 |
msgid "Off Text"
|
2548 |
+
msgstr "Pois päältä -teksti"
|
2549 |
|
2550 |
+
#: includes/fields/class-acf-field-true_false.php:166
|
2551 |
msgid "Text shown when inactive"
|
2552 |
+
msgstr "Teksti, joka näytetään kun valinta ei ole aktiivinen"
|
2553 |
|
2554 |
+
#: includes/fields/class-acf-field-url.php:25
|
2555 |
msgid "Url"
|
2556 |
msgstr "Url"
|
2557 |
|
2558 |
+
#: includes/fields/class-acf-field-url.php:147
|
2559 |
msgid "Value must be a valid URL"
|
2560 |
msgstr "Arvon täytyy olla validi URL"
|
2561 |
|
2562 |
+
#: includes/fields/class-acf-field-user.php:25 includes/locations.php:95
|
2563 |
msgid "User"
|
2564 |
msgstr "Käyttäjä"
|
2565 |
|
2566 |
+
#: includes/fields/class-acf-field-user.php:393
|
2567 |
msgid "Filter by role"
|
2568 |
msgstr "Suodata roolin mukaan"
|
2569 |
|
2570 |
+
#: includes/fields/class-acf-field-user.php:401
|
2571 |
msgid "All user roles"
|
2572 |
msgstr "Kaikki käyttäjäroolit"
|
2573 |
|
2574 |
+
#: includes/fields/class-acf-field-wysiwyg.php:25
|
2575 |
msgid "Wysiwyg Editor"
|
2576 |
msgstr "Wysiwyg-editori"
|
2577 |
|
2578 |
+
#: includes/fields/class-acf-field-wysiwyg.php:359
|
2579 |
msgid "Visual"
|
2580 |
msgstr "Graafinen"
|
2581 |
|
2582 |
+
#: includes/fields/class-acf-field-wysiwyg.php:360
|
2583 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2584 |
msgid "Text"
|
2585 |
msgstr "Teksti"
|
2586 |
|
2587 |
+
#: includes/fields/class-acf-field-wysiwyg.php:366
|
2588 |
msgid "Click to initialize TinyMCE"
|
2589 |
+
msgstr "Klikkaa ottaaksesi käyttöön graafisen editorin"
|
2590 |
|
2591 |
+
#: includes/fields/class-acf-field-wysiwyg.php:419
|
2592 |
msgid "Tabs"
|
2593 |
msgstr "Välilehdet"
|
2594 |
|
2595 |
+
#: includes/fields/class-acf-field-wysiwyg.php:424
|
2596 |
msgid "Visual & Text"
|
2597 |
msgstr "Graafinen ja teksti"
|
2598 |
|
2599 |
+
#: includes/fields/class-acf-field-wysiwyg.php:425
|
2600 |
msgid "Visual Only"
|
2601 |
msgstr "Vain graafinen"
|
2602 |
|
2603 |
+
#: includes/fields/class-acf-field-wysiwyg.php:426
|
2604 |
msgid "Text Only"
|
2605 |
msgstr "Vain teksti"
|
2606 |
|
2607 |
+
#: includes/fields/class-acf-field-wysiwyg.php:433
|
2608 |
msgid "Toolbar"
|
2609 |
msgstr "Työkalupalkki"
|
2610 |
|
2611 |
+
#: includes/fields/class-acf-field-wysiwyg.php:443
|
2612 |
msgid "Show Media Upload Buttons?"
|
2613 |
msgstr "Näytä Lisää media -painike?"
|
2614 |
|
2615 |
+
#: includes/fields/class-acf-field-wysiwyg.php:453
|
2616 |
msgid "Delay initialization?"
|
2617 |
+
msgstr "Viivytä alustusta?"
|
2618 |
|
2619 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
2620 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2621 |
+
msgstr "Graafista editoria ei käytetä ennen kuin kenttää klikataan"
|
2622 |
|
2623 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2624 |
+
#: pro/admin/admin-options-page.php:308
|
2625 |
msgid "Edit field group"
|
2626 |
msgstr "Muokkaa kenttäryhmää"
|
2627 |
|
2630 |
msgstr "Validoi sähköposti"
|
2631 |
|
2632 |
#: includes/forms/form-front.php:103
|
2633 |
+
#: pro/fields/class-acf-field-gallery.php:573 pro/options-page.php:81
|
2634 |
msgid "Update"
|
2635 |
msgstr "Päivitä"
|
2636 |
|
2642 |
msgid "Spam Detected"
|
2643 |
msgstr "Roskapostia havaittu"
|
2644 |
|
2645 |
+
#: includes/input.php:259
|
2646 |
msgid "Expand Details"
|
2647 |
msgstr "Enemmän tietoja"
|
2648 |
|
2649 |
+
#: includes/input.php:260
|
2650 |
msgid "Collapse Details"
|
2651 |
msgstr "Vähemmän tietoja"
|
2652 |
|
2653 |
+
#: includes/input.php:261
|
2654 |
msgid "Validation successful"
|
2655 |
msgstr "Kenttäryhmän validointi onnistui"
|
2656 |
|
2657 |
+
#: includes/input.php:262 includes/validation.php:285
|
2658 |
#: includes/validation.php:296
|
2659 |
msgid "Validation failed"
|
2660 |
msgstr "Lisäkentän validointi epäonnistui"
|
2661 |
|
2662 |
+
#: includes/input.php:263
|
2663 |
msgid "1 field requires attention"
|
2664 |
msgstr "Yksi kenttä vaatii huomiota"
|
2665 |
|
2666 |
+
#: includes/input.php:264
|
2667 |
#, php-format
|
2668 |
msgid "%d fields require attention"
|
2669 |
msgstr "%d kenttää vaativat huomiota"
|
2670 |
|
2671 |
+
#: includes/input.php:265
|
2672 |
msgid "Restricted"
|
2673 |
msgstr "Rajoitettu"
|
2674 |
|
2675 |
+
#: includes/input.php:266
|
2676 |
+
msgid "Are you sure?"
|
2677 |
+
msgstr "Oletko varma?"
|
2678 |
+
|
2679 |
+
#: includes/input.php:270
|
2680 |
msgid "Cancel"
|
2681 |
+
msgstr "Peruuta"
|
2682 |
|
2683 |
#: includes/locations.php:93 includes/locations/class-acf-location-post.php:27
|
2684 |
msgid "Post"
|
2696 |
msgid "Attachment"
|
2697 |
msgstr "Liite"
|
2698 |
|
2699 |
+
#: includes/locations/class-acf-location-attachment.php:109
|
2700 |
#, php-format
|
2701 |
msgid "All %s formats"
|
2702 |
+
msgstr "Kaikki %s muodot"
|
2703 |
|
2704 |
#: includes/locations/class-acf-location-comment.php:27
|
2705 |
msgid "Comment"
|
2709 |
msgid "Current User Role"
|
2710 |
msgstr "Nykyinen käyttäjärooli"
|
2711 |
|
2712 |
+
#: includes/locations/class-acf-location-current-user-role.php:110
|
2713 |
msgid "Super Admin"
|
2714 |
msgstr "Super pääkäyttäjä"
|
2715 |
|
2717 |
msgid "Current User"
|
2718 |
msgstr "Nykyinen käyttäjä"
|
2719 |
|
2720 |
+
#: includes/locations/class-acf-location-current-user.php:97
|
2721 |
msgid "Logged in"
|
2722 |
msgstr "Kirjautunut sisään"
|
2723 |
|
2724 |
+
#: includes/locations/class-acf-location-current-user.php:98
|
2725 |
msgid "Viewing front end"
|
2726 |
msgstr "Käyttää front endiä"
|
2727 |
|
2728 |
+
#: includes/locations/class-acf-location-current-user.php:99
|
2729 |
msgid "Viewing back end"
|
2730 |
msgstr "Käyttää back endiä"
|
2731 |
|
2732 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2733 |
msgid "Menu Item"
|
2734 |
+
msgstr "Valikkokohde"
|
2735 |
|
2736 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2737 |
msgid "Menu"
|
2738 |
+
msgstr "Valikko"
|
2739 |
|
2740 |
+
#: includes/locations/class-acf-location-nav-menu.php:109
|
|
|
2741 |
msgid "Menu Locations"
|
2742 |
+
msgstr "Valikkosijainnit"
|
2743 |
|
2744 |
+
#: includes/locations/class-acf-location-nav-menu.php:119
|
2745 |
msgid "Menus"
|
2746 |
+
msgstr "Valikot"
|
2747 |
|
2748 |
#: includes/locations/class-acf-location-page-parent.php:27
|
2749 |
msgid "Page Parent"
|
2753 |
msgid "Page Template"
|
2754 |
msgstr "Sivupohja"
|
2755 |
|
2756 |
+
#: includes/locations/class-acf-location-page-template.php:98
|
2757 |
+
#: includes/locations/class-acf-location-post-template.php:151
|
2758 |
msgid "Default Template"
|
2759 |
msgstr "Oletus sivupohja"
|
2760 |
|
2762 |
msgid "Page Type"
|
2763 |
msgstr "Sivun tyyppi"
|
2764 |
|
2765 |
+
#: includes/locations/class-acf-location-page-type.php:145
|
2766 |
msgid "Front Page"
|
2767 |
msgstr "Etusivu"
|
2768 |
|
2769 |
+
#: includes/locations/class-acf-location-page-type.php:146
|
2770 |
msgid "Posts Page"
|
2771 |
msgstr "Artikkelit -sivu"
|
2772 |
|
2773 |
+
#: includes/locations/class-acf-location-page-type.php:147
|
2774 |
msgid "Top Level Page (no parent)"
|
2775 |
msgstr "Ylätason sivu (sivu, jolla ei ole vanhempia)"
|
2776 |
|
2777 |
+
#: includes/locations/class-acf-location-page-type.php:148
|
2778 |
msgid "Parent Page (has children)"
|
2779 |
msgstr "Vanhempi sivu (sivu, jolla on alasivuja)"
|
2780 |
|
2781 |
+
#: includes/locations/class-acf-location-page-type.php:149
|
2782 |
msgid "Child Page (has parent)"
|
2783 |
msgstr "Lapsi sivu (sivu, jolla on vanhempi)"
|
2784 |
|
2798 |
msgid "Post Taxonomy"
|
2799 |
msgstr "Artikkelin taksonomia"
|
2800 |
|
2801 |
+
#: includes/locations/class-acf-location-post-template.php:27
|
|
|
2802 |
msgid "Post Template"
|
2803 |
msgstr "Sivupohja"
|
2804 |
|
2810 |
msgid "User Form"
|
2811 |
msgstr "Käyttäjälomake"
|
2812 |
|
2813 |
+
#: includes/locations/class-acf-location-user-form.php:88
|
2814 |
msgid "Add / Edit"
|
2815 |
msgstr "Lisää / Muokkaa"
|
2816 |
|
2817 |
+
#: includes/locations/class-acf-location-user-form.php:89
|
2818 |
msgid "Register"
|
2819 |
msgstr "Rekisteröi"
|
2820 |
|
2846 |
msgid "Advanced Custom Fields PRO"
|
2847 |
msgstr "Advanced Custom Fields PRO -lisäosan"
|
2848 |
|
2849 |
+
#: pro/admin/admin-options-page.php:200
|
2850 |
msgid "Publish"
|
2851 |
msgstr "Julkaistu"
|
2852 |
|
2853 |
+
#: pro/admin/admin-options-page.php:206
|
2854 |
#, php-format
|
2855 |
msgid ""
|
2856 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
2864 |
msgstr "<b>Virhe</b>. Ei voitu yhdistää päivityspalvelimeen"
|
2865 |
|
2866 |
#: pro/admin/admin-settings-updates.php:162
|
2867 |
+
#: pro/admin/views/html-settings-updates.php:13
|
2868 |
msgid "Updates"
|
2869 |
msgstr "Päivitykset"
|
2870 |
|
2871 |
+
#: pro/admin/views/html-settings-updates.php:7
|
2872 |
msgid "Deactivate License"
|
2873 |
msgstr "Poista lisenssi käytöstä "
|
2874 |
|
2875 |
+
#: pro/admin/views/html-settings-updates.php:7
|
2876 |
msgid "Activate License"
|
2877 |
msgstr "Aktivoi lisenssi"
|
2878 |
|
2879 |
+
#: pro/admin/views/html-settings-updates.php:17
|
2880 |
msgid "License Information"
|
2881 |
msgstr "Näytä lisenssitiedot"
|
2882 |
|
2883 |
+
#: pro/admin/views/html-settings-updates.php:20
|
2884 |
#, php-format
|
2885 |
msgid ""
|
2886 |
"To unlock updates, please enter your license key below. If you don't have a "
|
2891 |
"ole lisenssiavainta, katso <a href=\"%s\" target=”_blank”>tarkemmat tiedot & "
|
2892 |
"hinnoittelu</a>"
|
2893 |
|
2894 |
+
#: pro/admin/views/html-settings-updates.php:29
|
2895 |
msgid "License Key"
|
2896 |
msgstr "Lisenssiavain"
|
2897 |
|
2898 |
+
#: pro/admin/views/html-settings-updates.php:61
|
2899 |
msgid "Update Information"
|
2900 |
msgstr "Päivitä tiedot"
|
2901 |
|
2902 |
+
#: pro/admin/views/html-settings-updates.php:68
|
2903 |
msgid "Current Version"
|
2904 |
msgstr "Nykyinen versio"
|
2905 |
|
2906 |
+
#: pro/admin/views/html-settings-updates.php:76
|
2907 |
msgid "Latest Version"
|
2908 |
msgstr "Uusin versio"
|
2909 |
|
2910 |
+
#: pro/admin/views/html-settings-updates.php:84
|
2911 |
msgid "Update Available"
|
2912 |
msgstr "Päivitys saatavilla?"
|
2913 |
|
2914 |
+
#: pro/admin/views/html-settings-updates.php:92
|
2915 |
msgid "Update Plugin"
|
2916 |
msgstr "Päivitä lisäosa"
|
2917 |
|
2918 |
+
#: pro/admin/views/html-settings-updates.php:94
|
2919 |
msgid "Please enter your license key above to unlock updates"
|
2920 |
msgstr "Syötä lisenssiavain saadaksesi päivityksiä"
|
2921 |
|
2922 |
+
#: pro/admin/views/html-settings-updates.php:100
|
2923 |
msgid "Check Again"
|
2924 |
msgstr "Tarkista uudelleen"
|
2925 |
|
2926 |
+
#: pro/admin/views/html-settings-updates.php:117
|
2927 |
msgid "Upgrade Notice"
|
2928 |
msgstr "Päivitys Ilmoitus"
|
2929 |
|
2930 |
+
#: pro/fields/class-acf-field-clone.php:25
|
2931 |
msgctxt "noun"
|
2932 |
msgid "Clone"
|
2933 |
msgstr "Klooni"
|
2934 |
|
2935 |
+
#: pro/fields/class-acf-field-clone.php:808
|
2936 |
msgid "Select one or more fields you wish to clone"
|
2937 |
msgstr "Valitse kentä(t), jotka haluat kopioida"
|
2938 |
|
2939 |
+
#: pro/fields/class-acf-field-clone.php:825
|
2940 |
msgid "Display"
|
2941 |
msgstr "Näytä"
|
2942 |
|
2943 |
+
#: pro/fields/class-acf-field-clone.php:826
|
2944 |
msgid "Specify the style used to render the clone field"
|
2945 |
msgstr "Määritä tyyli, jota käytetään kloonikentän luomisessa"
|
2946 |
|
2947 |
+
#: pro/fields/class-acf-field-clone.php:831
|
2948 |
msgid "Group (displays selected fields in a group within this field)"
|
2949 |
msgstr "Ryhmä (valitut kentät näytetään ryhmänä tämän klooni-kentän sisällä)"
|
2950 |
|
2951 |
+
#: pro/fields/class-acf-field-clone.php:832
|
2952 |
msgid "Seamless (replaces this field with selected fields)"
|
2953 |
msgstr "Saumaton (korvaa tämä klooni-kenttä valituilla kentillä)"
|
2954 |
|
2955 |
+
#: pro/fields/class-acf-field-clone.php:853
|
2956 |
#, php-format
|
2957 |
msgid "Labels will be displayed as %s"
|
2958 |
msgstr "Kenttän nimiö näytetään seuraavassa muodossa: %s"
|
2959 |
|
2960 |
+
#: pro/fields/class-acf-field-clone.php:856
|
2961 |
msgid "Prefix Field Labels"
|
2962 |
msgstr "Kentän nimiön etuliite"
|
2963 |
|
2964 |
+
#: pro/fields/class-acf-field-clone.php:867
|
2965 |
#, php-format
|
2966 |
msgid "Values will be saved as %s"
|
2967 |
msgstr "Arvot tallennetaan muodossa: %s"
|
2968 |
|
2969 |
+
#: pro/fields/class-acf-field-clone.php:870
|
2970 |
msgid "Prefix Field Names"
|
2971 |
msgstr "Kentän nimen etuliite"
|
2972 |
|
2973 |
+
#: pro/fields/class-acf-field-clone.php:988
|
2974 |
msgid "Unknown field"
|
2975 |
msgstr "Tuntematon kenttä"
|
2976 |
|
2977 |
+
#: pro/fields/class-acf-field-clone.php:1027
|
2978 |
msgid "Unknown field group"
|
2979 |
msgstr "Tuntematon kenttäryhmä"
|
2980 |
|
2981 |
+
#: pro/fields/class-acf-field-clone.php:1031
|
2982 |
#, php-format
|
2983 |
msgid "All fields from %s field group"
|
2984 |
msgstr "Kaikki kentät kenttäryhmästä %s"
|
2985 |
|
2986 |
+
#: pro/fields/class-acf-field-flexible-content.php:31
|
2987 |
+
#: pro/fields/class-acf-field-repeater.php:174
|
2988 |
+
#: pro/fields/class-acf-field-repeater.php:470
|
2989 |
msgid "Add Row"
|
2990 |
msgstr "Lisää rivi"
|
2991 |
|
2992 |
+
#: pro/fields/class-acf-field-flexible-content.php:34
|
2993 |
msgid "layout"
|
2994 |
msgstr "asettelu"
|
2995 |
|
2996 |
+
#: pro/fields/class-acf-field-flexible-content.php:35
|
2997 |
msgid "layouts"
|
2998 |
msgstr "asettelua"
|
2999 |
|
3000 |
+
#: pro/fields/class-acf-field-flexible-content.php:36
|
3001 |
msgid "remove {layout}?"
|
3002 |
msgstr "poista {layout}?"
|
3003 |
|
3004 |
+
#: pro/fields/class-acf-field-flexible-content.php:37
|
3005 |
msgid "This field requires at least {min} {identifier}"
|
3006 |
msgstr "Tämä kenttä vaatii vähintään {min} {identifier}"
|
3007 |
|
3008 |
+
#: pro/fields/class-acf-field-flexible-content.php:38
|
3009 |
msgid "This field has a limit of {max} {identifier}"
|
3010 |
msgstr "Tämän kentän yläraja on {max} {identifier}"
|
3011 |
|
3012 |
+
#: pro/fields/class-acf-field-flexible-content.php:39
|
3013 |
msgid "This field requires at least {min} {label} {identifier}"
|
3014 |
msgstr "Tämä kenttä vaatii vähintään {min} {label} {identifier}"
|
3015 |
|
3016 |
+
#: pro/fields/class-acf-field-flexible-content.php:40
|
3017 |
msgid "Maximum {label} limit reached ({max} {identifier})"
|
3018 |
msgstr "Maksimi {label} saavutettu ({max} {identifier})"
|
3019 |
|
3020 |
+
#: pro/fields/class-acf-field-flexible-content.php:41
|
3021 |
msgid "{available} {label} {identifier} available (max {max})"
|
3022 |
msgstr "{available} {label} {identifier} saatavilla (max {max})"
|
3023 |
|
3024 |
+
#: pro/fields/class-acf-field-flexible-content.php:42
|
3025 |
msgid "{required} {label} {identifier} required (min {min})"
|
3026 |
msgstr "{required} {label} {identifier} vaadittu (min {min})"
|
3027 |
|
3028 |
+
#: pro/fields/class-acf-field-flexible-content.php:43
|
3029 |
msgid "Flexible Content requires at least 1 layout"
|
3030 |
msgstr "Vaaditaan vähintään yksi asettelu"
|
3031 |
|
3032 |
+
#: pro/fields/class-acf-field-flexible-content.php:273
|
3033 |
#, php-format
|
3034 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3035 |
msgstr "Klikkaa ”%s” -painiketta luodaksesi oman asettelun"
|
3036 |
|
3037 |
+
#: pro/fields/class-acf-field-flexible-content.php:406
|
3038 |
msgid "Add layout"
|
3039 |
msgstr "Lisää asettelu"
|
3040 |
|
3041 |
+
#: pro/fields/class-acf-field-flexible-content.php:407
|
3042 |
msgid "Remove layout"
|
3043 |
msgstr "Poista asettelu"
|
3044 |
|
3045 |
+
#: pro/fields/class-acf-field-flexible-content.php:408
|
3046 |
+
#: pro/fields/class-acf-field-repeater.php:298
|
3047 |
msgid "Click to toggle"
|
3048 |
msgstr "Piilota/Näytä"
|
3049 |
|
3050 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3051 |
msgid "Reorder Layout"
|
3052 |
msgstr "Järjestä asettelu uudelleen"
|
3053 |
|
3054 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3055 |
msgid "Reorder"
|
3056 |
msgstr "Järjestä uudelleen"
|
3057 |
|
3058 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
3059 |
msgid "Delete Layout"
|
3060 |
msgstr "Poista asettelu"
|
3061 |
|
3062 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3063 |
msgid "Duplicate Layout"
|
3064 |
msgstr "Monista asettelu"
|
3065 |
|
3066 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3067 |
msgid "Add New Layout"
|
3068 |
msgstr "Lisää uusi asettelu"
|
3069 |
|
3070 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
3071 |
msgid "Min"
|
3072 |
msgstr "Min"
|
3073 |
|
3074 |
+
#: pro/fields/class-acf-field-flexible-content.php:641
|
3075 |
msgid "Max"
|
3076 |
msgstr "Maks"
|
3077 |
|
3078 |
+
#: pro/fields/class-acf-field-flexible-content.php:668
|
3079 |
+
#: pro/fields/class-acf-field-repeater.php:466
|
3080 |
msgid "Button Label"
|
3081 |
msgstr "Painikkeen teksti"
|
3082 |
|
3083 |
+
#: pro/fields/class-acf-field-flexible-content.php:677
|
3084 |
msgid "Minimum Layouts"
|
3085 |
msgstr "Asetteluita vähintään"
|
3086 |
|
3087 |
+
#: pro/fields/class-acf-field-flexible-content.php:686
|
3088 |
msgid "Maximum Layouts"
|
3089 |
msgstr "Asetteluita enintään"
|
3090 |
|
3091 |
+
#: pro/fields/class-acf-field-gallery.php:41
|
3092 |
msgid "Add Image to Gallery"
|
3093 |
msgstr "Lisää kuva galleriaan"
|
3094 |
|
3095 |
+
#: pro/fields/class-acf-field-gallery.php:45
|
3096 |
msgid "Maximum selection reached"
|
3097 |
msgstr "Et voi valita enempää kuvia"
|
3098 |
|
3099 |
+
#: pro/fields/class-acf-field-gallery.php:321
|
3100 |
msgid "Length"
|
3101 |
msgstr "Pituus"
|
3102 |
|
3103 |
+
#: pro/fields/class-acf-field-gallery.php:364
|
3104 |
msgid "Caption"
|
3105 |
msgstr "Kuvateksti"
|
3106 |
|
3107 |
+
#: pro/fields/class-acf-field-gallery.php:373
|
3108 |
msgid "Alt Text"
|
3109 |
msgstr "Vaihtoehtoinen teksti"
|
3110 |
|
3111 |
+
#: pro/fields/class-acf-field-gallery.php:544
|
3112 |
msgid "Add to gallery"
|
3113 |
msgstr "Lisää galleriaan"
|
3114 |
|
3115 |
+
#: pro/fields/class-acf-field-gallery.php:548
|
3116 |
msgid "Bulk actions"
|
3117 |
msgstr "Massatoiminnot"
|
3118 |
|
3119 |
+
#: pro/fields/class-acf-field-gallery.php:549
|
3120 |
msgid "Sort by date uploaded"
|
3121 |
msgstr "Lajittele latauksen päivämäärän mukaan"
|
3122 |
|
3123 |
+
#: pro/fields/class-acf-field-gallery.php:550
|
3124 |
msgid "Sort by date modified"
|
3125 |
msgstr "Lajittele viimeisimmän muokkauksen päivämäärän mukaan"
|
3126 |
|
3127 |
+
#: pro/fields/class-acf-field-gallery.php:551
|
3128 |
msgid "Sort by title"
|
3129 |
msgstr "Lajittele otsikon mukaan"
|
3130 |
|
3131 |
+
#: pro/fields/class-acf-field-gallery.php:552
|
3132 |
msgid "Reverse current order"
|
3133 |
msgstr "Käännän nykyinen järjestys"
|
3134 |
|
3135 |
+
#: pro/fields/class-acf-field-gallery.php:570
|
3136 |
msgid "Close"
|
3137 |
msgstr "Sulje"
|
3138 |
|
3139 |
+
#: pro/fields/class-acf-field-gallery.php:624
|
3140 |
msgid "Minimum Selection"
|
3141 |
msgstr "Pienin määrä kuvia"
|
3142 |
|
3143 |
+
#: pro/fields/class-acf-field-gallery.php:633
|
3144 |
msgid "Maximum Selection"
|
3145 |
msgstr "Suurin määrä kuvia"
|
3146 |
|
3147 |
+
#: pro/fields/class-acf-field-gallery.php:642
|
3148 |
msgid "Insert"
|
3149 |
msgstr "Lisää"
|
3150 |
|
3151 |
+
#: pro/fields/class-acf-field-gallery.php:643
|
3152 |
msgid "Specify where new attachments are added"
|
3153 |
msgstr "Määritä mihin uudet liitteet lisätään"
|
3154 |
|
3155 |
+
#: pro/fields/class-acf-field-gallery.php:647
|
3156 |
msgid "Append to the end"
|
3157 |
msgstr "Lisää loppuun"
|
3158 |
|
3159 |
+
#: pro/fields/class-acf-field-gallery.php:648
|
3160 |
msgid "Prepend to the beginning"
|
3161 |
msgstr "Lisää alkuun"
|
3162 |
|
3163 |
+
#: pro/fields/class-acf-field-repeater.php:36
|
3164 |
msgid "Minimum rows reached ({min} rows)"
|
3165 |
msgstr "Pienin määrä rivejä saavutettu ({min} riviä)"
|
3166 |
|
3167 |
+
#: pro/fields/class-acf-field-repeater.php:37
|
3168 |
msgid "Maximum rows reached ({max} rows)"
|
3169 |
msgstr "Suurin määrä rivejä saavutettu ({max} riviä)"
|
3170 |
|
3171 |
+
#: pro/fields/class-acf-field-repeater.php:343
|
3172 |
msgid "Add row"
|
3173 |
msgstr "Lisää rivi"
|
3174 |
|
3175 |
+
#: pro/fields/class-acf-field-repeater.php:344
|
3176 |
msgid "Remove row"
|
3177 |
msgstr "Poista rivi"
|
3178 |
|
3179 |
+
#: pro/fields/class-acf-field-repeater.php:419
|
3180 |
msgid "Collapsed"
|
3181 |
msgstr "Piilotettu"
|
3182 |
|
3183 |
+
#: pro/fields/class-acf-field-repeater.php:420
|
3184 |
msgid "Select a sub field to show when row is collapsed"
|
3185 |
msgstr "Valitse alakenttä, joka näytetään, kun rivi on piilotettu"
|
3186 |
|
3187 |
+
#: pro/fields/class-acf-field-repeater.php:430
|
3188 |
msgid "Minimum Rows"
|
3189 |
msgstr "Pienin määrä rivejä"
|
3190 |
|
3191 |
+
#: pro/fields/class-acf-field-repeater.php:440
|
3192 |
msgid "Maximum Rows"
|
3193 |
msgstr "Suurin määrä rivejä"
|
3194 |
|
3195 |
+
#: pro/locations/class-acf-location-options-page.php:79
|
3196 |
msgid "No options pages exist"
|
3197 |
msgstr "Yhtään Asetukset-sivua ei ole olemassa"
|
3198 |
|
lang/acf-fr_FR.mo
CHANGED
Binary file
|
lang/acf-fr_FR.po
CHANGED
@@ -2,16 +2,16 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: Dysign <maxime@dysign.fr>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
-
"X-Generator: Poedit
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
17 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
@@ -28,111 +28,111 @@ msgid "Advanced Custom Fields"
|
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
-
#: acf.php:
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Groupes de champs"
|
34 |
|
35 |
# @ acf
|
36 |
-
#: acf.php:
|
37 |
msgid "Field Group"
|
38 |
msgstr "Groupe de champs"
|
39 |
|
40 |
# @ acf
|
41 |
-
#: acf.php:
|
42 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
43 |
msgid "Add New"
|
44 |
msgstr "Ajouter"
|
45 |
|
46 |
# @ acf
|
47 |
-
#: acf.php:
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Nouveau groupe de champs"
|
50 |
|
51 |
# @ acf
|
52 |
-
#: acf.php:
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Modifier le groupe de champs"
|
55 |
|
56 |
# @ acf
|
57 |
-
#: acf.php:
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Nouveau groupe de champs"
|
60 |
|
61 |
# @ default
|
62 |
-
#: acf.php:
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Voir le groupe de champs"
|
65 |
|
66 |
# @ default
|
67 |
-
#: acf.php:
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Rechercher un groupe de champs"
|
70 |
|
71 |
# @ default
|
72 |
-
#: acf.php:
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Aucun groupe de champs trouvé"
|
75 |
|
76 |
# @ default
|
77 |
-
#: acf.php:
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Aucun groupe de champs trouvé dans la corbeille"
|
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 "Champs"
|
88 |
|
89 |
# @ acf
|
90 |
-
#: acf.php:
|
91 |
msgid "Field"
|
92 |
msgstr "Champ"
|
93 |
|
94 |
# @ acf
|
95 |
-
#: acf.php:
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Ajouter un champ"
|
98 |
|
99 |
# @ acf
|
100 |
-
#: acf.php:
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Modifier le champ"
|
103 |
|
104 |
# @ acf
|
105 |
-
#: acf.php:
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Nouveau champ"
|
109 |
|
110 |
# @ acf
|
111 |
-
#: acf.php:
|
112 |
msgid "View Field"
|
113 |
msgstr "Voir le champ"
|
114 |
|
115 |
# @ default
|
116 |
-
#: acf.php:
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Rechercher des champs"
|
119 |
|
120 |
# @ default
|
121 |
-
#: acf.php:
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Aucun champ trouvé"
|
124 |
|
125 |
# @ default
|
126 |
-
#: acf.php:
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Aucun champ trouvé dans la corbeille"
|
129 |
|
130 |
-
#: acf.php:
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inactif"
|
134 |
|
135 |
-
#: acf.php:
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
@@ -202,7 +202,7 @@ msgid "Field group title is required"
|
|
202 |
msgstr "Veuillez indiquer un titre pour le groupe de champs"
|
203 |
|
204 |
#: includes/admin/admin-field-group.php:273
|
205 |
-
#: includes/api/api-field-group.php:
|
206 |
msgid "copy"
|
207 |
msgstr "copie"
|
208 |
|
@@ -342,13 +342,13 @@ msgstr "Statut"
|
|
342 |
#: includes/admin/admin-field-groups.php:607
|
343 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
344 |
msgstr ""
|
345 |
-
"
|
346 |
"professionnels."
|
347 |
|
348 |
# @ acf
|
349 |
#: includes/admin/admin-field-groups.php:609
|
350 |
#: includes/admin/settings-info.php:76
|
351 |
-
#: pro/admin/views/html-settings-updates.php:
|
352 |
msgid "Changelog"
|
353 |
msgstr "Améliorations"
|
354 |
|
@@ -391,12 +391,12 @@ msgstr "Dupliquer cet élément"
|
|
391 |
#: includes/admin/admin-field-groups.php:668
|
392 |
#: includes/admin/admin-field-groups.php:684
|
393 |
#: includes/admin/views/field-group-field.php:49
|
394 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
395 |
msgid "Duplicate"
|
396 |
msgstr "Dupliquer"
|
397 |
|
398 |
#: includes/admin/admin-field-groups.php:701
|
399 |
-
#: includes/fields/class-acf-field-google-map.php:
|
400 |
#: includes/fields/class-acf-field-relationship.php:656
|
401 |
msgid "Search"
|
402 |
msgstr "Rechercher"
|
@@ -418,7 +418,7 @@ msgstr "Synchronisation "
|
|
418 |
|
419 |
#: includes/admin/admin-field-groups.php:780
|
420 |
msgid "Apply"
|
421 |
-
msgstr ""
|
422 |
|
423 |
# @ acf
|
424 |
#: includes/admin/admin-field-groups.php:798
|
@@ -481,7 +481,7 @@ msgstr "Aucun groupe de champs n'est sélectionné"
|
|
481 |
|
482 |
# @ acf
|
483 |
#: includes/admin/settings-tools.php:184
|
484 |
-
#: includes/fields/class-acf-field-file.php:
|
485 |
msgid "No file selected"
|
486 |
msgstr "Aucun fichier sélectionné"
|
487 |
|
@@ -534,8 +534,8 @@ msgid "Add rule group"
|
|
534 |
msgstr "Ajouter une règle"
|
535 |
|
536 |
#: includes/admin/views/field-group-field.php:41
|
537 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
538 |
-
#: pro/fields/class-acf-field-repeater.php:
|
539 |
msgid "Drag to reorder"
|
540 |
msgstr "Faites glisser pour réorganiser"
|
541 |
|
@@ -547,7 +547,8 @@ msgstr "Modifier ce champ"
|
|
547 |
|
548 |
# @ acf
|
549 |
#: includes/admin/views/field-group-field.php:48
|
550 |
-
#: includes/fields/class-acf-field-
|
|
|
551 |
#: includes/fields/class-acf-field-link.php:139
|
552 |
#: pro/fields/class-acf-field-gallery.php:342
|
553 |
msgid "Edit"
|
@@ -573,7 +574,7 @@ msgstr "Supprimer ce champ"
|
|
573 |
|
574 |
# @ acf
|
575 |
#: includes/admin/views/field-group-field.php:51
|
576 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
577 |
msgid "Delete"
|
578 |
msgstr "Supprimer"
|
579 |
|
@@ -620,7 +621,7 @@ msgstr "Requis ?"
|
|
620 |
|
621 |
#: includes/admin/views/field-group-field.php:134
|
622 |
msgid "Wrapper Attributes"
|
623 |
-
msgstr "Attributs
|
624 |
|
625 |
#: includes/admin/views/field-group-field.php:140
|
626 |
msgid "width"
|
@@ -649,14 +650,14 @@ msgstr "Ordre"
|
|
649 |
#: includes/fields/class-acf-field-checkbox.php:415
|
650 |
#: includes/fields/class-acf-field-radio.php:306
|
651 |
#: includes/fields/class-acf-field-select.php:432
|
652 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
653 |
msgid "Label"
|
654 |
msgstr "Intitulé"
|
655 |
|
656 |
# @ acf
|
657 |
#: includes/admin/views/field-group-fields.php:6
|
658 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
659 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
660 |
msgid "Name"
|
661 |
msgstr "Nom"
|
662 |
|
@@ -961,6 +962,8 @@ msgid ""
|
|
961 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
962 |
"latest version."
|
963 |
msgstr ""
|
|
|
|
|
964 |
|
965 |
#: includes/admin/views/install.php:7
|
966 |
msgid "Reading upgrade tasks..."
|
@@ -1368,14 +1371,14 @@ msgstr "Taille originale"
|
|
1368 |
|
1369 |
# @ acf
|
1370 |
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1371 |
-
#: pro/fields/class-acf-field-clone.php:
|
1372 |
msgid "(no title)"
|
1373 |
msgstr "(aucun titre)"
|
1374 |
|
1375 |
#: includes/api/api-helpers.php:1868
|
1376 |
#: includes/fields/class-acf-field-page_link.php:269
|
1377 |
#: includes/fields/class-acf-field-post_object.php:268
|
1378 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1379 |
msgid "Parent"
|
1380 |
msgstr "Parent"
|
1381 |
|
@@ -1441,10 +1444,10 @@ msgstr "jQuery"
|
|
1441 |
#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:384
|
1442 |
#: includes/fields/class-acf-field-group.php:477
|
1443 |
#: includes/fields/class-acf-field-radio.php:285
|
1444 |
-
#: pro/fields/class-acf-field-clone.php:
|
1445 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1446 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1447 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1448 |
msgid "Layout"
|
1449 |
msgstr "Disposition"
|
1450 |
|
@@ -1459,7 +1462,7 @@ msgstr "inconnu"
|
|
1459 |
|
1460 |
# @ acf
|
1461 |
#: includes/fields/class-acf-field-checkbox.php:25
|
1462 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1463 |
msgid "Checkbox"
|
1464 |
msgstr "Case à cocher"
|
1465 |
|
@@ -1520,6 +1523,7 @@ msgstr "Enregistre la valeur personnalisée dans les choix du champs"
|
|
1520 |
#: includes/fields/class-acf-field-email.php:114
|
1521 |
#: includes/fields/class-acf-field-number.php:123
|
1522 |
#: includes/fields/class-acf-field-radio.php:276
|
|
|
1523 |
#: includes/fields/class-acf-field-select.php:377
|
1524 |
#: includes/fields/class-acf-field-text.php:115
|
1525 |
#: includes/fields/class-acf-field-textarea.php:98
|
@@ -1554,17 +1558,17 @@ msgstr "Ajouter une case à cocher au début pour intervertir tous les choix"
|
|
1554 |
|
1555 |
# @ acf
|
1556 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1557 |
-
#: includes/fields/class-acf-field-file.php:
|
1558 |
-
#: includes/fields/class-acf-field-image.php:
|
1559 |
#: includes/fields/class-acf-field-link.php:166
|
1560 |
#: includes/fields/class-acf-field-radio.php:299
|
1561 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1562 |
msgid "Return Value"
|
1563 |
msgstr "Valeur affichée dans le template"
|
1564 |
|
1565 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1566 |
-
#: includes/fields/class-acf-field-file.php:
|
1567 |
-
#: includes/fields/class-acf-field-image.php:
|
1568 |
#: includes/fields/class-acf-field-link.php:167
|
1569 |
#: includes/fields/class-acf-field-radio.php:300
|
1570 |
msgid "Specify the returned value on front end"
|
@@ -1656,9 +1660,8 @@ msgstr ""
|
|
1656 |
#: includes/fields/class-acf-field-date_time_picker.php:208
|
1657 |
#: includes/fields/class-acf-field-time_picker.php:117
|
1658 |
#: includes/fields/class-acf-field-time_picker.php:132
|
1659 |
-
#, fuzzy
|
1660 |
msgid "Custom:"
|
1661 |
-
msgstr "
|
1662 |
|
1663 |
#: includes/fields/class-acf-field-date_picker.php:226
|
1664 |
msgid "Save Format"
|
@@ -1775,6 +1778,7 @@ msgstr "Mail"
|
|
1775 |
#: includes/fields/class-acf-field-email.php:115
|
1776 |
#: includes/fields/class-acf-field-number.php:124
|
1777 |
#: includes/fields/class-acf-field-radio.php:277
|
|
|
1778 |
#: includes/fields/class-acf-field-text.php:116
|
1779 |
#: includes/fields/class-acf-field-textarea.php:99
|
1780 |
#: includes/fields/class-acf-field-url.php:97
|
@@ -1803,13 +1807,15 @@ msgstr "Apparait dans le champ (placeholder)"
|
|
1803 |
#: includes/fields/class-acf-field-email.php:132
|
1804 |
#: includes/fields/class-acf-field-number.php:141
|
1805 |
#: includes/fields/class-acf-field-password.php:80
|
|
|
1806 |
#: includes/fields/class-acf-field-text.php:133
|
1807 |
msgid "Prepend"
|
1808 |
-
msgstr "
|
1809 |
|
1810 |
#: includes/fields/class-acf-field-email.php:133
|
1811 |
#: includes/fields/class-acf-field-number.php:142
|
1812 |
#: includes/fields/class-acf-field-password.php:81
|
|
|
1813 |
#: includes/fields/class-acf-field-text.php:134
|
1814 |
msgid "Appears before the input"
|
1815 |
msgstr "Apparait avant le champ"
|
@@ -1817,13 +1823,15 @@ msgstr "Apparait avant le champ"
|
|
1817 |
#: includes/fields/class-acf-field-email.php:141
|
1818 |
#: includes/fields/class-acf-field-number.php:150
|
1819 |
#: includes/fields/class-acf-field-password.php:89
|
|
|
1820 |
#: includes/fields/class-acf-field-text.php:142
|
1821 |
msgid "Append"
|
1822 |
-
msgstr "
|
1823 |
|
1824 |
#: includes/fields/class-acf-field-email.php:142
|
1825 |
#: includes/fields/class-acf-field-number.php:151
|
1826 |
#: includes/fields/class-acf-field-password.php:90
|
|
|
1827 |
#: includes/fields/class-acf-field-text.php:143
|
1828 |
msgid "Appears after the input"
|
1829 |
msgstr "Apparait après le champ"
|
@@ -1850,54 +1858,63 @@ msgid "Uploaded to this post"
|
|
1850 |
msgstr "Liés à cette publication"
|
1851 |
|
1852 |
# @ acf
|
1853 |
-
#: includes/fields/class-acf-field-file.php:
|
1854 |
msgid "File name"
|
1855 |
msgstr "Nom du fichier"
|
1856 |
|
1857 |
# @ acf
|
1858 |
-
#: includes/fields/class-acf-field-file.php:
|
1859 |
-
#: includes/fields/class-acf-field-file.php:
|
1860 |
-
#: includes/fields/class-acf-field-file.php:
|
1861 |
-
#: includes/fields/class-acf-field-image.php:
|
1862 |
-
#: includes/fields/class-acf-field-image.php:
|
1863 |
#: pro/fields/class-acf-field-gallery.php:690
|
1864 |
#: pro/fields/class-acf-field-gallery.php:719
|
1865 |
msgid "File size"
|
1866 |
msgstr "Taille du fichier"
|
1867 |
|
1868 |
# @ acf
|
1869 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1870 |
msgid "Add File"
|
1871 |
msgstr "Ajouter un fichier"
|
1872 |
|
1873 |
-
#: includes/fields/class-acf-field-file.php:
|
1874 |
msgid "File Array"
|
1875 |
msgstr "Données du fichier (array)"
|
1876 |
|
1877 |
# @ acf
|
1878 |
-
#: includes/fields/class-acf-field-file.php:
|
1879 |
msgid "File URL"
|
1880 |
msgstr "URL du fichier"
|
1881 |
|
1882 |
# @ acf
|
1883 |
-
#: includes/fields/class-acf-field-file.php:
|
1884 |
msgid "File ID"
|
1885 |
msgstr "ID du Fichier"
|
1886 |
|
1887 |
-
#: includes/fields/class-acf-field-file.php:
|
1888 |
-
#: includes/fields/class-acf-field-image.php:
|
1889 |
#: pro/fields/class-acf-field-gallery.php:655
|
1890 |
msgid "Library"
|
1891 |
msgstr "Médias"
|
1892 |
|
1893 |
-
#: includes/fields/class-acf-field-file.php:
|
1894 |
-
#: includes/fields/class-acf-field-image.php:
|
1895 |
#: pro/fields/class-acf-field-gallery.php:656
|
1896 |
msgid "Limit the media library choice"
|
1897 |
msgstr "Limiter le choix de la médiathèque"
|
1898 |
|
1899 |
-
#: includes/fields/class-acf-field-file.php:
|
1900 |
-
#: includes/fields/class-acf-field-image.php:
|
1901 |
#: includes/locations/class-acf-location-attachment.php:101
|
1902 |
#: includes/locations/class-acf-location-comment.php:79
|
1903 |
#: includes/locations/class-acf-location-nav-menu.php:102
|
@@ -1909,39 +1926,39 @@ msgstr "Limiter le choix de la médiathèque"
|
|
1909 |
msgid "All"
|
1910 |
msgstr "Tous"
|
1911 |
|
1912 |
-
#: includes/fields/class-acf-field-file.php:
|
1913 |
-
#: includes/fields/class-acf-field-image.php:
|
1914 |
#: pro/fields/class-acf-field-gallery.php:662
|
1915 |
msgid "Uploaded to post"
|
1916 |
msgstr "Liés à cet article"
|
1917 |
|
1918 |
# @ acf
|
1919 |
-
#: includes/fields/class-acf-field-file.php:
|
1920 |
-
#: includes/fields/class-acf-field-image.php:
|
1921 |
#: pro/fields/class-acf-field-gallery.php:669
|
1922 |
msgid "Minimum"
|
1923 |
msgstr "Minimum"
|
1924 |
|
1925 |
-
#: includes/fields/class-acf-field-file.php:
|
1926 |
-
#: includes/fields/class-acf-field-file.php:
|
1927 |
msgid "Restrict which files can be uploaded"
|
1928 |
msgstr "Restreindre l'import de fichiers"
|
1929 |
|
1930 |
# @ acf
|
1931 |
-
#: includes/fields/class-acf-field-file.php:
|
1932 |
-
#: includes/fields/class-acf-field-image.php:
|
1933 |
#: pro/fields/class-acf-field-gallery.php:698
|
1934 |
msgid "Maximum"
|
1935 |
msgstr "Maximum"
|
1936 |
|
1937 |
-
#: includes/fields/class-acf-field-file.php:
|
1938 |
-
#: includes/fields/class-acf-field-image.php:
|
1939 |
#: pro/fields/class-acf-field-gallery.php:727
|
1940 |
msgid "Allowed file types"
|
1941 |
msgstr "Types de fichiers autorisés"
|
1942 |
|
1943 |
-
#: includes/fields/class-acf-field-file.php:
|
1944 |
-
#: includes/fields/class-acf-field-image.php:
|
1945 |
#: pro/fields/class-acf-field-gallery.php:728
|
1946 |
msgid "Comma separated list. Leave blank for all types"
|
1947 |
msgstr ""
|
@@ -1962,84 +1979,83 @@ msgid "Sorry, this browser does not support geolocation"
|
|
1962 |
msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation"
|
1963 |
|
1964 |
# @ acf
|
1965 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1966 |
msgid "Clear location"
|
1967 |
msgstr "Effacer la position"
|
1968 |
|
1969 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1970 |
msgid "Find current location"
|
1971 |
msgstr "Trouver l'emplacement actuel"
|
1972 |
|
1973 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1974 |
msgid "Search for address..."
|
1975 |
msgstr "Rechercher une adresse"
|
1976 |
|
1977 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1978 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1979 |
msgid "Center"
|
1980 |
msgstr "Centre"
|
1981 |
|
1982 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1983 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1984 |
msgid "Center the initial map"
|
1985 |
msgstr "Position géographique du centre de la carte"
|
1986 |
|
1987 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1988 |
msgid "Zoom"
|
1989 |
msgstr "Zoom"
|
1990 |
|
1991 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1992 |
msgid "Set the initial zoom level"
|
1993 |
msgstr "Définir le niveau de zoom (0 : monde ; 14 : ville ; 21 : rue)"
|
1994 |
|
1995 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1996 |
-
#: includes/fields/class-acf-field-image.php:
|
1997 |
-
#: includes/fields/class-acf-field-image.php:
|
1998 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1999 |
#: pro/fields/class-acf-field-gallery.php:681
|
2000 |
#: pro/fields/class-acf-field-gallery.php:710
|
2001 |
msgid "Height"
|
2002 |
msgstr "Hauteur"
|
2003 |
|
2004 |
-
#: includes/fields/class-acf-field-google-map.php:
|
2005 |
msgid "Customise the map height"
|
2006 |
msgstr "Personnaliser la hauteur de la carte"
|
2007 |
|
2008 |
# @ acf
|
2009 |
#: includes/fields/class-acf-field-group.php:25
|
2010 |
-
#, fuzzy
|
2011 |
msgid "Group"
|
2012 |
-
msgstr "
|
2013 |
|
2014 |
# @ acf
|
2015 |
#: includes/fields/class-acf-field-group.php:461
|
2016 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2017 |
msgid "Sub Fields"
|
2018 |
msgstr "Sous champs"
|
2019 |
|
2020 |
#: includes/fields/class-acf-field-group.php:478
|
2021 |
-
#: pro/fields/class-acf-field-clone.php:
|
2022 |
msgid "Specify the style used to render the selected fields"
|
2023 |
msgstr "Définit le style utilisé pour générer les champs sélectionnés"
|
2024 |
|
2025 |
#: includes/fields/class-acf-field-group.php:483
|
2026 |
-
#: pro/fields/class-acf-field-clone.php:
|
2027 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2028 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2029 |
msgid "Block"
|
2030 |
msgstr "Bloc"
|
2031 |
|
2032 |
#: includes/fields/class-acf-field-group.php:484
|
2033 |
-
#: pro/fields/class-acf-field-clone.php:
|
2034 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2035 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2036 |
msgid "Table"
|
2037 |
msgstr "Tableau"
|
2038 |
|
2039 |
#: includes/fields/class-acf-field-group.php:485
|
2040 |
-
#: pro/fields/class-acf-field-clone.php:
|
2041 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2042 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2043 |
msgid "Row"
|
2044 |
msgstr "Rangée"
|
2045 |
|
@@ -2071,57 +2087,49 @@ msgid "All images"
|
|
2071 |
msgstr "Toutes les images"
|
2072 |
|
2073 |
# @ acf
|
2074 |
-
#: includes/fields/class-acf-field-image.php:
|
2075 |
-
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
2076 |
-
#: pro/fields/class-acf-field-gallery.php:343
|
2077 |
-
#: pro/fields/class-acf-field-gallery.php:531
|
2078 |
-
msgid "Remove"
|
2079 |
-
msgstr "Enlever"
|
2080 |
-
|
2081 |
-
# @ acf
|
2082 |
-
#: includes/fields/class-acf-field-image.php:143
|
2083 |
msgid "No image selected"
|
2084 |
msgstr "Aucune image sélectionnée"
|
2085 |
|
2086 |
# @ acf
|
2087 |
-
#: includes/fields/class-acf-field-image.php:
|
2088 |
msgid "Add Image"
|
2089 |
msgstr "Ajouter une image"
|
2090 |
|
2091 |
# @ acf
|
2092 |
-
#: includes/fields/class-acf-field-image.php:
|
2093 |
msgid "Image Array"
|
2094 |
msgstr "Données de l'image (array)"
|
2095 |
|
2096 |
# @ acf
|
2097 |
-
#: includes/fields/class-acf-field-image.php:
|
2098 |
msgid "Image URL"
|
2099 |
msgstr "URL de l‘image"
|
2100 |
|
2101 |
# @ acf
|
2102 |
-
#: includes/fields/class-acf-field-image.php:
|
2103 |
msgid "Image ID"
|
2104 |
msgstr "ID de l‘image"
|
2105 |
|
2106 |
# @ acf
|
2107 |
-
#: includes/fields/class-acf-field-image.php:
|
2108 |
msgid "Preview Size"
|
2109 |
msgstr "Taille de prévisualisation"
|
2110 |
|
2111 |
-
#: includes/fields/class-acf-field-image.php:
|
2112 |
msgid "Shown when entering data"
|
2113 |
msgstr "Côté interface d'administration"
|
2114 |
|
2115 |
-
#: includes/fields/class-acf-field-image.php:
|
2116 |
-
#: includes/fields/class-acf-field-image.php:
|
2117 |
#: pro/fields/class-acf-field-gallery.php:670
|
2118 |
#: pro/fields/class-acf-field-gallery.php:699
|
2119 |
msgid "Restrict which images can be uploaded"
|
2120 |
msgstr "Restreindre les images téléversées"
|
2121 |
|
2122 |
-
#: includes/fields/class-acf-field-image.php:
|
2123 |
-
#: includes/fields/class-acf-field-image.php:
|
2124 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2125 |
#: pro/fields/class-acf-field-gallery.php:673
|
2126 |
#: pro/fields/class-acf-field-gallery.php:702
|
2127 |
msgid "Width"
|
@@ -2129,30 +2137,26 @@ msgstr "Largeur"
|
|
2129 |
|
2130 |
# @ acf
|
2131 |
#: includes/fields/class-acf-field-link.php:25
|
2132 |
-
#, fuzzy
|
2133 |
msgid "Link"
|
2134 |
-
msgstr "Lien
|
2135 |
|
2136 |
# @ acf
|
2137 |
#: includes/fields/class-acf-field-link.php:133
|
2138 |
-
#, fuzzy
|
2139 |
msgid "Select Link"
|
2140 |
-
msgstr "Sélectionner un
|
2141 |
|
2142 |
#: includes/fields/class-acf-field-link.php:138
|
2143 |
msgid "Opens in a new window/tab"
|
2144 |
-
msgstr ""
|
2145 |
|
2146 |
#: includes/fields/class-acf-field-link.php:172
|
2147 |
-
#, fuzzy
|
2148 |
msgid "Link Array"
|
2149 |
-
msgstr "
|
2150 |
|
2151 |
# @ acf
|
2152 |
#: includes/fields/class-acf-field-link.php:173
|
2153 |
-
#, fuzzy
|
2154 |
msgid "Link URL"
|
2155 |
-
msgstr "URL du
|
2156 |
|
2157 |
# @ acf
|
2158 |
#: includes/fields/class-acf-field-message.php:25
|
@@ -2201,15 +2205,18 @@ msgid "Number"
|
|
2201 |
msgstr "Nombre"
|
2202 |
|
2203 |
#: includes/fields/class-acf-field-number.php:159
|
|
|
2204 |
msgid "Minimum Value"
|
2205 |
msgstr "Valeur minimale"
|
2206 |
|
2207 |
# @ acf
|
2208 |
#: includes/fields/class-acf-field-number.php:168
|
|
|
2209 |
msgid "Maximum Value"
|
2210 |
msgstr "Valeur maximale"
|
2211 |
|
2212 |
#: includes/fields/class-acf-field-number.php:177
|
|
|
2213 |
msgid "Step Size"
|
2214 |
msgstr "Pas"
|
2215 |
|
@@ -2231,21 +2238,21 @@ msgstr "La valeur doit être inférieure ou égale à %d"
|
|
2231 |
msgid "oEmbed"
|
2232 |
msgstr "oEmbed"
|
2233 |
|
2234 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2235 |
msgid "Enter URL"
|
2236 |
msgstr "Entrez l'URL"
|
2237 |
|
2238 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2239 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2240 |
msgid "Error."
|
2241 |
msgstr "Erreur."
|
2242 |
|
2243 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2244 |
msgid "No embed found for the given URL."
|
2245 |
msgstr "Aucune instruction d'intégration trouvée à cette adresse."
|
2246 |
|
2247 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2248 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2249 |
msgid "Embed Size"
|
2250 |
msgstr "Dimensions"
|
2251 |
|
@@ -2283,7 +2290,7 @@ msgstr "Toutes les taxonomies"
|
|
2283 |
#: includes/fields/class-acf-field-post_object.php:412
|
2284 |
#: includes/fields/class-acf-field-radio.php:244
|
2285 |
#: includes/fields/class-acf-field-select.php:386
|
2286 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2287 |
#: includes/fields/class-acf-field-user.php:408
|
2288 |
msgid "Allow Null?"
|
2289 |
msgstr "Autoriser une valeur vide ?"
|
@@ -2338,6 +2345,10 @@ msgstr "Enregistrer "
|
|
2338 |
msgid "Save 'other' values to the field's choices"
|
2339 |
msgstr "Enregistrer 'autre' en tant que choix"
|
2340 |
|
|
|
|
|
|
|
|
|
2341 |
# @ acf
|
2342 |
#: includes/fields/class-acf-field-relationship.php:25
|
2343 |
msgid "Relationship"
|
@@ -2385,7 +2396,7 @@ msgstr "Type de publication"
|
|
2385 |
# @ acf
|
2386 |
#: includes/fields/class-acf-field-relationship.php:658
|
2387 |
#: includes/fields/class-acf-field-taxonomy.php:28
|
2388 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2389 |
msgid "Taxonomy"
|
2390 |
msgstr "Taxonomie"
|
2391 |
|
@@ -2416,7 +2427,7 @@ msgstr[0] "%s requiert au moins %s sélection"
|
|
2416 |
msgstr[1] "%s requiert au moins %s sélections"
|
2417 |
|
2418 |
#: includes/fields/class-acf-field-select.php:25
|
2419 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2420 |
msgctxt "noun"
|
2421 |
msgid "Select"
|
2422 |
msgstr "Sélection"
|
@@ -2508,7 +2519,7 @@ msgstr "Définie la valeur retournée"
|
|
2508 |
|
2509 |
#: includes/fields/class-acf-field-separator.php:25
|
2510 |
msgid "Separator"
|
2511 |
-
msgstr ""
|
2512 |
|
2513 |
#: includes/fields/class-acf-field-tab.php:25
|
2514 |
msgid "Tab"
|
@@ -2551,101 +2562,101 @@ msgstr "Fin de série"
|
|
2551 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2552 |
msgstr "Le prochain onglet sera disposé à la ligne"
|
2553 |
|
2554 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2555 |
#: includes/fields/class-acf-field-true_false.php:80
|
2556 |
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2557 |
-
#: pro/admin/views/html-settings-updates.php:
|
2558 |
msgid "No"
|
2559 |
msgstr "Non"
|
2560 |
|
2561 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2562 |
msgid "None"
|
2563 |
msgstr "Aucun"
|
2564 |
|
2565 |
# @ acf
|
2566 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2567 |
msgid "Select the taxonomy to be displayed"
|
2568 |
msgstr "Choisissez la taxonomie à afficher"
|
2569 |
|
2570 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2571 |
msgid "Appearance"
|
2572 |
msgstr "Apparence"
|
2573 |
|
2574 |
# @ acf
|
2575 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2576 |
msgid "Select the appearance of this field"
|
2577 |
msgstr "Personnaliser l'apparence de champ"
|
2578 |
|
2579 |
# @ acf
|
2580 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2581 |
msgid "Multiple Values"
|
2582 |
msgstr "Valeurs multiples"
|
2583 |
|
2584 |
# @ acf
|
2585 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2586 |
msgid "Multi Select"
|
2587 |
msgstr "Sélecteur multiple"
|
2588 |
|
2589 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2590 |
msgid "Single Value"
|
2591 |
msgstr "Valeur seule"
|
2592 |
|
2593 |
# @ acf
|
2594 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2595 |
msgid "Radio Buttons"
|
2596 |
msgstr "Boutons radio"
|
2597 |
|
2598 |
# @ acf
|
2599 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2600 |
msgid "Create Terms"
|
2601 |
msgstr "Créer des termes"
|
2602 |
|
2603 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2604 |
msgid "Allow new terms to be created whilst editing"
|
2605 |
msgstr "Autoriser la création de nouveaux termes pendant l'édition"
|
2606 |
|
2607 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2608 |
msgid "Save Terms"
|
2609 |
msgstr "Enregistrer les termes"
|
2610 |
|
2611 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2612 |
msgid "Connect selected terms to the post"
|
2613 |
msgstr "Lier les termes sélectionnés à l'article"
|
2614 |
|
2615 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2616 |
msgid "Load Terms"
|
2617 |
msgstr "Charger les termes"
|
2618 |
|
2619 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2620 |
msgid "Load value from posts terms"
|
2621 |
msgstr "Charger une valeur depuis les termes"
|
2622 |
|
2623 |
# @ acf
|
2624 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2625 |
msgid "Term Object"
|
2626 |
msgstr "Objet Terme"
|
2627 |
|
2628 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2629 |
msgid "Term ID"
|
2630 |
msgstr "ID du terme"
|
2631 |
|
2632 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2633 |
#, php-format
|
2634 |
msgid "User unable to add new %s"
|
2635 |
msgstr "Utilisateur incapable d'ajouter un nouveau %s"
|
2636 |
|
2637 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2638 |
#, php-format
|
2639 |
msgid "%s already exists"
|
2640 |
msgstr "%s existe déjà"
|
2641 |
|
2642 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2643 |
#, php-format
|
2644 |
msgid "%s added"
|
2645 |
msgstr "%s Ajouté"
|
2646 |
|
2647 |
# @ acf
|
2648 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2649 |
msgid "Add"
|
2650 |
msgstr "Ajouter"
|
2651 |
|
@@ -2688,7 +2699,7 @@ msgstr "Vrai / Faux"
|
|
2688 |
|
2689 |
#: includes/fields/class-acf-field-true_false.php:79
|
2690 |
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2691 |
-
#: pro/admin/views/html-settings-updates.php:
|
2692 |
msgid "Yes"
|
2693 |
msgstr "Oui"
|
2694 |
|
@@ -2798,8 +2809,8 @@ msgid "Validate Email"
|
|
2798 |
msgstr "Valider l’email"
|
2799 |
|
2800 |
# @ acf
|
2801 |
-
#: includes/forms/form-front.php:103
|
2802 |
-
#: pro/
|
2803 |
msgid "Update"
|
2804 |
msgstr "Mise à jour"
|
2805 |
|
@@ -2873,7 +2884,7 @@ msgstr "Média (photo, fichier…)"
|
|
2873 |
#: includes/locations/class-acf-location-attachment.php:109
|
2874 |
#, php-format
|
2875 |
msgid "All %s formats"
|
2876 |
-
msgstr ""
|
2877 |
|
2878 |
#: includes/locations/class-acf-location-comment.php:27
|
2879 |
msgid "Comment"
|
@@ -2906,21 +2917,20 @@ msgstr "Depuis l'interface d'administration"
|
|
2906 |
|
2907 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2908 |
msgid "Menu Item"
|
2909 |
-
msgstr ""
|
2910 |
|
2911 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2912 |
msgid "Menu"
|
2913 |
-
msgstr ""
|
2914 |
|
2915 |
# @ acf
|
2916 |
#: includes/locations/class-acf-location-nav-menu.php:109
|
2917 |
-
#, fuzzy
|
2918 |
msgid "Menu Locations"
|
2919 |
-
msgstr "
|
2920 |
|
2921 |
#: includes/locations/class-acf-location-nav-menu.php:119
|
2922 |
msgid "Menus"
|
2923 |
-
msgstr ""
|
2924 |
|
2925 |
# @ acf
|
2926 |
#: includes/locations/class-acf-location-page-parent.php:27
|
@@ -2982,9 +2992,8 @@ msgid "Post Taxonomy"
|
|
2982 |
msgstr "Taxonomie"
|
2983 |
|
2984 |
#: includes/locations/class-acf-location-post-template.php:27
|
2985 |
-
#, fuzzy
|
2986 |
msgid "Post Template"
|
2987 |
-
msgstr "Modèle
|
2988 |
|
2989 |
# @ acf
|
2990 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
@@ -3055,25 +3064,25 @@ msgstr "<b>Erreur</b>. Impossible de joindre le serveur"
|
|
3055 |
|
3056 |
# @ acf
|
3057 |
#: pro/admin/admin-settings-updates.php:162
|
3058 |
-
#: pro/admin/views/html-settings-updates.php:
|
3059 |
msgid "Updates"
|
3060 |
msgstr "Mises à jour"
|
3061 |
|
3062 |
-
#: pro/admin/views/html-settings-updates.php:
|
3063 |
msgid "Deactivate License"
|
3064 |
msgstr "Désactiver la licence"
|
3065 |
|
3066 |
# @ acf
|
3067 |
-
#: pro/admin/views/html-settings-updates.php:
|
3068 |
msgid "Activate License"
|
3069 |
msgstr "Activer votre licence"
|
3070 |
|
3071 |
# @ acf
|
3072 |
-
#: pro/admin/views/html-settings-updates.php:
|
3073 |
msgid "License Information"
|
3074 |
msgstr "Informations sur la licence"
|
3075 |
|
3076 |
-
#: pro/admin/views/html-settings-updates.php:
|
3077 |
#, php-format
|
3078 |
msgid ""
|
3079 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -3085,43 +3094,43 @@ msgstr ""
|
|
3085 |
"\"%s\" target=\"_blank\">détails & tarifs</a>."
|
3086 |
|
3087 |
# @ acf
|
3088 |
-
#: pro/admin/views/html-settings-updates.php:
|
3089 |
msgid "License Key"
|
3090 |
msgstr "Code de licence"
|
3091 |
|
3092 |
# @ acf
|
3093 |
-
#: pro/admin/views/html-settings-updates.php:
|
3094 |
msgid "Update Information"
|
3095 |
msgstr "Informations de mise à jour"
|
3096 |
|
3097 |
-
#: pro/admin/views/html-settings-updates.php:
|
3098 |
msgid "Current Version"
|
3099 |
msgstr "Version actuelle"
|
3100 |
|
3101 |
-
#: pro/admin/views/html-settings-updates.php:
|
3102 |
msgid "Latest Version"
|
3103 |
msgstr "Dernière version"
|
3104 |
|
3105 |
# @ acf
|
3106 |
-
#: pro/admin/views/html-settings-updates.php:
|
3107 |
msgid "Update Available"
|
3108 |
msgstr "Mise à jour disponible"
|
3109 |
|
3110 |
# @ acf
|
3111 |
-
#: pro/admin/views/html-settings-updates.php:
|
3112 |
msgid "Update Plugin"
|
3113 |
msgstr "Mettre à jour le plugin"
|
3114 |
|
3115 |
-
#: pro/admin/views/html-settings-updates.php:
|
3116 |
msgid "Please enter your license key above to unlock updates"
|
3117 |
msgstr "Entrez votre clé de licence ci-dessous pour activer les mises à jour"
|
3118 |
|
3119 |
-
#: pro/admin/views/html-settings-updates.php:
|
3120 |
msgid "Check Again"
|
3121 |
msgstr "Vérifier à nouveau"
|
3122 |
|
3123 |
# @ wp3i
|
3124 |
-
#: pro/admin/views/html-settings-updates.php:
|
3125 |
msgid "Upgrade Notice"
|
3126 |
msgstr "Améliorations"
|
3127 |
|
@@ -3130,56 +3139,56 @@ msgctxt "noun"
|
|
3130 |
msgid "Clone"
|
3131 |
msgstr "Clone"
|
3132 |
|
3133 |
-
#: pro/fields/class-acf-field-clone.php:
|
3134 |
msgid "Select one or more fields you wish to clone"
|
3135 |
msgstr "Sélectionnez un ou plusieurs champs à cloner"
|
3136 |
|
3137 |
# @ acf
|
3138 |
-
#: pro/fields/class-acf-field-clone.php:
|
3139 |
msgid "Display"
|
3140 |
msgstr "Format d'affichage"
|
3141 |
|
3142 |
-
#: pro/fields/class-acf-field-clone.php:
|
3143 |
msgid "Specify the style used to render the clone field"
|
3144 |
msgstr "Définit le style utilisé pour générer le champ dupliqué"
|
3145 |
|
3146 |
-
#: pro/fields/class-acf-field-clone.php:
|
3147 |
msgid "Group (displays selected fields in a group within this field)"
|
3148 |
msgstr ""
|
3149 |
"Groupe (affiche les champs sélectionnés dans un groupe à l’intérieur de ce "
|
3150 |
"champ) "
|
3151 |
|
3152 |
-
#: pro/fields/class-acf-field-clone.php:
|
3153 |
msgid "Seamless (replaces this field with selected fields)"
|
3154 |
msgstr "Remplace ce champ par les champs sélectionnés"
|
3155 |
|
3156 |
-
#: pro/fields/class-acf-field-clone.php:
|
3157 |
#, php-format
|
3158 |
msgid "Labels will be displayed as %s"
|
3159 |
msgstr "Les libellés seront affichés en tant que %s"
|
3160 |
|
3161 |
-
#: pro/fields/class-acf-field-clone.php:
|
3162 |
msgid "Prefix Field Labels"
|
3163 |
msgstr "Préfixer les libellés de champs"
|
3164 |
|
3165 |
-
#: pro/fields/class-acf-field-clone.php:
|
3166 |
#, php-format
|
3167 |
msgid "Values will be saved as %s"
|
3168 |
msgstr "Les valeurs seront enregistrées en tant que %s"
|
3169 |
|
3170 |
-
#: pro/fields/class-acf-field-clone.php:
|
3171 |
msgid "Prefix Field Names"
|
3172 |
msgstr "Préfixer les noms de champs"
|
3173 |
|
3174 |
-
#: pro/fields/class-acf-field-clone.php:
|
3175 |
msgid "Unknown field"
|
3176 |
msgstr "Champ inconnu"
|
3177 |
|
3178 |
-
#: pro/fields/class-acf-field-clone.php:
|
3179 |
msgid "Unknown field group"
|
3180 |
msgstr "Groupe de champ inconnu"
|
3181 |
|
3182 |
-
#: pro/fields/class-acf-field-clone.php:
|
3183 |
#, php-format
|
3184 |
msgid "All fields from %s field group"
|
3185 |
msgstr "Tous les champs du groupe %s"
|
@@ -3187,7 +3196,7 @@ msgstr "Tous les champs du groupe %s"
|
|
3187 |
# @ acf
|
3188 |
#: pro/fields/class-acf-field-flexible-content.php:31
|
3189 |
#: pro/fields/class-acf-field-repeater.php:174
|
3190 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3191 |
msgid "Add Row"
|
3192 |
msgstr "Ajouter un élément"
|
3193 |
|
@@ -3241,63 +3250,63 @@ msgstr ""
|
|
3241 |
"Cliquez sur le bouton \"%s\" ci-dessous pour créer votre première disposition"
|
3242 |
|
3243 |
# @ acf
|
3244 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3245 |
msgid "Add layout"
|
3246 |
msgstr "Disposition"
|
3247 |
|
3248 |
# @ acf
|
3249 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3250 |
msgid "Remove layout"
|
3251 |
msgstr "Retirer la disposition"
|
3252 |
|
3253 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3254 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3255 |
msgid "Click to toggle"
|
3256 |
msgstr "Cliquer pour intervertir"
|
3257 |
|
3258 |
# @ acf
|
3259 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3260 |
msgid "Reorder Layout"
|
3261 |
msgstr "Réorganiser la disposition"
|
3262 |
|
3263 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3264 |
msgid "Reorder"
|
3265 |
msgstr "Réorganiser"
|
3266 |
|
3267 |
# @ acf
|
3268 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3269 |
msgid "Delete Layout"
|
3270 |
msgstr "Supprimer la disposition"
|
3271 |
|
3272 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3273 |
msgid "Duplicate Layout"
|
3274 |
msgstr "Dupliquer la disposition"
|
3275 |
|
3276 |
# @ acf
|
3277 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3278 |
msgid "Add New Layout"
|
3279 |
msgstr "Ajouter une disposition"
|
3280 |
|
3281 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3282 |
msgid "Min"
|
3283 |
msgstr "Min"
|
3284 |
|
3285 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3286 |
msgid "Max"
|
3287 |
msgstr "Max"
|
3288 |
|
3289 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3290 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3291 |
msgid "Button Label"
|
3292 |
msgstr "Intitulé du bouton"
|
3293 |
|
3294 |
# @ acf
|
3295 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3296 |
msgid "Minimum Layouts"
|
3297 |
msgstr "Nombre minimum de dispositions"
|
3298 |
|
3299 |
# @ acf
|
3300 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3301 |
msgid "Maximum Layouts"
|
3302 |
msgstr "Nombre maximum de dispositions"
|
3303 |
|
@@ -3388,30 +3397,30 @@ msgid "Maximum rows reached ({max} rows)"
|
|
3388 |
msgstr "Nombre maximal d'éléments atteint ({max} éléments)"
|
3389 |
|
3390 |
# @ acf
|
3391 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3392 |
msgid "Add row"
|
3393 |
msgstr "Ajouter un élément"
|
3394 |
|
3395 |
# @ acf
|
3396 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3397 |
msgid "Remove row"
|
3398 |
msgstr "Retirer l'élément"
|
3399 |
|
3400 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3401 |
msgid "Collapsed"
|
3402 |
msgstr "Refermé"
|
3403 |
|
3404 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3405 |
msgid "Select a sub field to show when row is collapsed"
|
3406 |
msgstr "Choisir un sous champ à montrer lorsque la ligne est refermée"
|
3407 |
|
3408 |
# @ acf
|
3409 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3410 |
msgid "Minimum Rows"
|
3411 |
msgstr "Nombre minimum d'éléments"
|
3412 |
|
3413 |
# @ acf
|
3414 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3415 |
msgid "Maximum Rows"
|
3416 |
msgstr "Nombre maximum d'éléments"
|
3417 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Advanced Custom Fields Pro v5.2.9\n"
|
4 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
5 |
+
"POT-Creation-Date: 2017-09-30 10:02+0200\n"
|
6 |
+
"PO-Revision-Date: 2017-09-30 15:25+0200\n"
|
7 |
+
"Last-Translator: Maxime BERNARD-JACQUET <maxime@dysign.fr>\n"
|
8 |
"Language-Team: Dysign <maxime@dysign.fr>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
14 |
+
"X-Generator: Poedit 2.0.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;"
|
28 |
msgstr "Advanced Custom Fields"
|
29 |
|
30 |
# @ acf
|
31 |
+
#: acf.php:359 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Groupes de champs"
|
34 |
|
35 |
# @ acf
|
36 |
+
#: acf.php:360
|
37 |
msgid "Field Group"
|
38 |
msgstr "Groupe de champs"
|
39 |
|
40 |
# @ acf
|
41 |
+
#: acf.php:361 acf.php:393 includes/admin/admin.php:118
|
42 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
43 |
msgid "Add New"
|
44 |
msgstr "Ajouter"
|
45 |
|
46 |
# @ acf
|
47 |
+
#: acf.php:362
|
48 |
msgid "Add New Field Group"
|
49 |
msgstr "Nouveau groupe de champs"
|
50 |
|
51 |
# @ acf
|
52 |
+
#: acf.php:363
|
53 |
msgid "Edit Field Group"
|
54 |
msgstr "Modifier le groupe de champs"
|
55 |
|
56 |
# @ acf
|
57 |
+
#: acf.php:364
|
58 |
msgid "New Field Group"
|
59 |
msgstr "Nouveau groupe de champs"
|
60 |
|
61 |
# @ default
|
62 |
+
#: acf.php:365
|
63 |
msgid "View Field Group"
|
64 |
msgstr "Voir le groupe de champs"
|
65 |
|
66 |
# @ default
|
67 |
+
#: acf.php:366
|
68 |
msgid "Search Field Groups"
|
69 |
msgstr "Rechercher un groupe de champs"
|
70 |
|
71 |
# @ default
|
72 |
+
#: acf.php:367
|
73 |
msgid "No Field Groups found"
|
74 |
msgstr "Aucun groupe de champs trouvé"
|
75 |
|
76 |
# @ default
|
77 |
+
#: acf.php:368
|
78 |
msgid "No Field Groups found in Trash"
|
79 |
msgstr "Aucun groupe de champs trouvé dans la corbeille"
|
80 |
|
81 |
# @ acf
|
82 |
+
#: acf.php:391 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:806
|
86 |
msgid "Fields"
|
87 |
msgstr "Champs"
|
88 |
|
89 |
# @ acf
|
90 |
+
#: acf.php:392
|
91 |
msgid "Field"
|
92 |
msgstr "Champ"
|
93 |
|
94 |
# @ acf
|
95 |
+
#: acf.php:394
|
96 |
msgid "Add New Field"
|
97 |
msgstr "Ajouter un champ"
|
98 |
|
99 |
# @ acf
|
100 |
+
#: acf.php:395
|
101 |
msgid "Edit Field"
|
102 |
msgstr "Modifier le champ"
|
103 |
|
104 |
# @ acf
|
105 |
+
#: acf.php:396 includes/admin/views/field-group-fields.php:41
|
106 |
#: includes/admin/views/settings-info.php:105
|
107 |
msgid "New Field"
|
108 |
msgstr "Nouveau champ"
|
109 |
|
110 |
# @ acf
|
111 |
+
#: acf.php:397
|
112 |
msgid "View Field"
|
113 |
msgstr "Voir le champ"
|
114 |
|
115 |
# @ default
|
116 |
+
#: acf.php:398
|
117 |
msgid "Search Fields"
|
118 |
msgstr "Rechercher des champs"
|
119 |
|
120 |
# @ default
|
121 |
+
#: acf.php:399
|
122 |
msgid "No Fields found"
|
123 |
msgstr "Aucun champ trouvé"
|
124 |
|
125 |
# @ default
|
126 |
+
#: acf.php:400
|
127 |
msgid "No Fields found in Trash"
|
128 |
msgstr "Aucun champ trouvé dans la corbeille"
|
129 |
|
130 |
+
#: acf.php:439 includes/admin/admin-field-group.php:390
|
131 |
#: includes/admin/admin-field-groups.php:567
|
132 |
msgid "Inactive"
|
133 |
msgstr "Inactif"
|
134 |
|
135 |
+
#: acf.php:444
|
136 |
#, php-format
|
137 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
138 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
202 |
msgstr "Veuillez indiquer un titre pour le groupe de champs"
|
203 |
|
204 |
#: includes/admin/admin-field-group.php:273
|
205 |
+
#: includes/api/api-field-group.php:751
|
206 |
msgid "copy"
|
207 |
msgstr "copie"
|
208 |
|
342 |
#: includes/admin/admin-field-groups.php:607
|
343 |
msgid "Customise WordPress with powerful, professional and intuitive fields."
|
344 |
msgstr ""
|
345 |
+
"Personnalisez WordPress en ajoutant des champs intuitifs, puissants et "
|
346 |
"professionnels."
|
347 |
|
348 |
# @ acf
|
349 |
#: includes/admin/admin-field-groups.php:609
|
350 |
#: includes/admin/settings-info.php:76
|
351 |
+
#: pro/admin/views/html-settings-updates.php:107
|
352 |
msgid "Changelog"
|
353 |
msgstr "Améliorations"
|
354 |
|
391 |
#: includes/admin/admin-field-groups.php:668
|
392 |
#: includes/admin/admin-field-groups.php:684
|
393 |
#: includes/admin/views/field-group-field.php:49
|
394 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
395 |
msgid "Duplicate"
|
396 |
msgstr "Dupliquer"
|
397 |
|
398 |
#: includes/admin/admin-field-groups.php:701
|
399 |
+
#: includes/fields/class-acf-field-google-map.php:112
|
400 |
#: includes/fields/class-acf-field-relationship.php:656
|
401 |
msgid "Search"
|
402 |
msgstr "Rechercher"
|
418 |
|
419 |
#: includes/admin/admin-field-groups.php:780
|
420 |
msgid "Apply"
|
421 |
+
msgstr "Appliquer"
|
422 |
|
423 |
# @ acf
|
424 |
#: includes/admin/admin-field-groups.php:798
|
481 |
|
482 |
# @ acf
|
483 |
#: includes/admin/settings-tools.php:184
|
484 |
+
#: includes/fields/class-acf-field-file.php:155
|
485 |
msgid "No file selected"
|
486 |
msgstr "Aucun fichier sélectionné"
|
487 |
|
534 |
msgstr "Ajouter une règle"
|
535 |
|
536 |
#: includes/admin/views/field-group-field.php:41
|
537 |
+
#: pro/fields/class-acf-field-flexible-content.php:403
|
538 |
+
#: pro/fields/class-acf-field-repeater.php:296
|
539 |
msgid "Drag to reorder"
|
540 |
msgstr "Faites glisser pour réorganiser"
|
541 |
|
547 |
|
548 |
# @ acf
|
549 |
#: includes/admin/views/field-group-field.php:48
|
550 |
+
#: includes/fields/class-acf-field-file.php:137
|
551 |
+
#: includes/fields/class-acf-field-image.php:122
|
552 |
#: includes/fields/class-acf-field-link.php:139
|
553 |
#: pro/fields/class-acf-field-gallery.php:342
|
554 |
msgid "Edit"
|
574 |
|
575 |
# @ acf
|
576 |
#: includes/admin/views/field-group-field.php:51
|
577 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
578 |
msgid "Delete"
|
579 |
msgstr "Supprimer"
|
580 |
|
621 |
|
622 |
#: includes/admin/views/field-group-field.php:134
|
623 |
msgid "Wrapper Attributes"
|
624 |
+
msgstr "Attributs"
|
625 |
|
626 |
#: includes/admin/views/field-group-field.php:140
|
627 |
msgid "width"
|
650 |
#: includes/fields/class-acf-field-checkbox.php:415
|
651 |
#: includes/fields/class-acf-field-radio.php:306
|
652 |
#: includes/fields/class-acf-field-select.php:432
|
653 |
+
#: pro/fields/class-acf-field-flexible-content.php:582
|
654 |
msgid "Label"
|
655 |
msgstr "Intitulé"
|
656 |
|
657 |
# @ acf
|
658 |
#: includes/admin/views/field-group-fields.php:6
|
659 |
+
#: includes/fields/class-acf-field-taxonomy.php:959
|
660 |
+
#: pro/fields/class-acf-field-flexible-content.php:595
|
661 |
msgid "Name"
|
662 |
msgstr "Nom"
|
663 |
|
962 |
"Please also ensure any premium add-ons (%s) have first been updated to the "
|
963 |
"latest version."
|
964 |
msgstr ""
|
965 |
+
"Merci de vérifier également que tous les add-ons premium (%s) ont bien été "
|
966 |
+
"mis à jour vers la dernière version."
|
967 |
|
968 |
#: includes/admin/views/install.php:7
|
969 |
msgid "Reading upgrade tasks..."
|
1371 |
|
1372 |
# @ acf
|
1373 |
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1374 |
+
#: pro/fields/class-acf-field-clone.php:991
|
1375 |
msgid "(no title)"
|
1376 |
msgstr "(aucun titre)"
|
1377 |
|
1378 |
#: includes/api/api-helpers.php:1868
|
1379 |
#: includes/fields/class-acf-field-page_link.php:269
|
1380 |
#: includes/fields/class-acf-field-post_object.php:268
|
1381 |
+
#: includes/fields/class-acf-field-taxonomy.php:981
|
1382 |
msgid "Parent"
|
1383 |
msgstr "Parent"
|
1384 |
|
1444 |
#: includes/fields.php:149 includes/fields/class-acf-field-checkbox.php:384
|
1445 |
#: includes/fields/class-acf-field-group.php:477
|
1446 |
#: includes/fields/class-acf-field-radio.php:285
|
1447 |
+
#: pro/fields/class-acf-field-clone.php:838
|
1448 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
1449 |
+
#: pro/fields/class-acf-field-flexible-content.php:601
|
1450 |
+
#: pro/fields/class-acf-field-repeater.php:450
|
1451 |
msgid "Layout"
|
1452 |
msgstr "Disposition"
|
1453 |
|
1462 |
|
1463 |
# @ acf
|
1464 |
#: includes/fields/class-acf-field-checkbox.php:25
|
1465 |
+
#: includes/fields/class-acf-field-taxonomy.php:775
|
1466 |
msgid "Checkbox"
|
1467 |
msgstr "Case à cocher"
|
1468 |
|
1523 |
#: includes/fields/class-acf-field-email.php:114
|
1524 |
#: includes/fields/class-acf-field-number.php:123
|
1525 |
#: includes/fields/class-acf-field-radio.php:276
|
1526 |
+
#: includes/fields/class-acf-field-range.php:141
|
1527 |
#: includes/fields/class-acf-field-select.php:377
|
1528 |
#: includes/fields/class-acf-field-text.php:115
|
1529 |
#: includes/fields/class-acf-field-textarea.php:98
|
1558 |
|
1559 |
# @ acf
|
1560 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1561 |
+
#: includes/fields/class-acf-field-file.php:200
|
1562 |
+
#: includes/fields/class-acf-field-image.php:188
|
1563 |
#: includes/fields/class-acf-field-link.php:166
|
1564 |
#: includes/fields/class-acf-field-radio.php:299
|
1565 |
+
#: includes/fields/class-acf-field-taxonomy.php:828
|
1566 |
msgid "Return Value"
|
1567 |
msgstr "Valeur affichée dans le template"
|
1568 |
|
1569 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1570 |
+
#: includes/fields/class-acf-field-file.php:201
|
1571 |
+
#: includes/fields/class-acf-field-image.php:189
|
1572 |
#: includes/fields/class-acf-field-link.php:167
|
1573 |
#: includes/fields/class-acf-field-radio.php:300
|
1574 |
msgid "Specify the returned value on front end"
|
1660 |
#: includes/fields/class-acf-field-date_time_picker.php:208
|
1661 |
#: includes/fields/class-acf-field-time_picker.php:117
|
1662 |
#: includes/fields/class-acf-field-time_picker.php:132
|
|
|
1663 |
msgid "Custom:"
|
1664 |
+
msgstr "Personnalisé :"
|
1665 |
|
1666 |
#: includes/fields/class-acf-field-date_picker.php:226
|
1667 |
msgid "Save Format"
|
1778 |
#: includes/fields/class-acf-field-email.php:115
|
1779 |
#: includes/fields/class-acf-field-number.php:124
|
1780 |
#: includes/fields/class-acf-field-radio.php:277
|
1781 |
+
#: includes/fields/class-acf-field-range.php:142
|
1782 |
#: includes/fields/class-acf-field-text.php:116
|
1783 |
#: includes/fields/class-acf-field-textarea.php:99
|
1784 |
#: includes/fields/class-acf-field-url.php:97
|
1807 |
#: includes/fields/class-acf-field-email.php:132
|
1808 |
#: includes/fields/class-acf-field-number.php:141
|
1809 |
#: includes/fields/class-acf-field-password.php:80
|
1810 |
+
#: includes/fields/class-acf-field-range.php:180
|
1811 |
#: includes/fields/class-acf-field-text.php:133
|
1812 |
msgid "Prepend"
|
1813 |
+
msgstr "Préfixe"
|
1814 |
|
1815 |
#: includes/fields/class-acf-field-email.php:133
|
1816 |
#: includes/fields/class-acf-field-number.php:142
|
1817 |
#: includes/fields/class-acf-field-password.php:81
|
1818 |
+
#: includes/fields/class-acf-field-range.php:181
|
1819 |
#: includes/fields/class-acf-field-text.php:134
|
1820 |
msgid "Appears before the input"
|
1821 |
msgstr "Apparait avant le champ"
|
1823 |
#: includes/fields/class-acf-field-email.php:141
|
1824 |
#: includes/fields/class-acf-field-number.php:150
|
1825 |
#: includes/fields/class-acf-field-password.php:89
|
1826 |
+
#: includes/fields/class-acf-field-range.php:189
|
1827 |
#: includes/fields/class-acf-field-text.php:142
|
1828 |
msgid "Append"
|
1829 |
+
msgstr "Suffixe"
|
1830 |
|
1831 |
#: includes/fields/class-acf-field-email.php:142
|
1832 |
#: includes/fields/class-acf-field-number.php:151
|
1833 |
#: includes/fields/class-acf-field-password.php:90
|
1834 |
+
#: includes/fields/class-acf-field-range.php:190
|
1835 |
#: includes/fields/class-acf-field-text.php:143
|
1836 |
msgid "Appears after the input"
|
1837 |
msgstr "Apparait après le champ"
|
1858 |
msgstr "Liés à cette publication"
|
1859 |
|
1860 |
# @ acf
|
1861 |
+
#: includes/fields/class-acf-field-file.php:126
|
1862 |
msgid "File name"
|
1863 |
msgstr "Nom du fichier"
|
1864 |
|
1865 |
# @ acf
|
1866 |
+
#: includes/fields/class-acf-field-file.php:130
|
1867 |
+
#: includes/fields/class-acf-field-file.php:233
|
1868 |
+
#: includes/fields/class-acf-field-file.php:244
|
1869 |
+
#: includes/fields/class-acf-field-image.php:248
|
1870 |
+
#: includes/fields/class-acf-field-image.php:277
|
1871 |
#: pro/fields/class-acf-field-gallery.php:690
|
1872 |
#: pro/fields/class-acf-field-gallery.php:719
|
1873 |
msgid "File size"
|
1874 |
msgstr "Taille du fichier"
|
1875 |
|
1876 |
# @ acf
|
1877 |
+
#: includes/fields/class-acf-field-file.php:139
|
1878 |
+
#: includes/fields/class-acf-field-image.php:124
|
1879 |
+
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
1880 |
+
#: pro/fields/class-acf-field-gallery.php:343
|
1881 |
+
#: pro/fields/class-acf-field-gallery.php:531
|
1882 |
+
msgid "Remove"
|
1883 |
+
msgstr "Enlever"
|
1884 |
+
|
1885 |
+
# @ acf
|
1886 |
+
#: includes/fields/class-acf-field-file.php:155
|
1887 |
msgid "Add File"
|
1888 |
msgstr "Ajouter un fichier"
|
1889 |
|
1890 |
+
#: includes/fields/class-acf-field-file.php:206
|
1891 |
msgid "File Array"
|
1892 |
msgstr "Données du fichier (array)"
|
1893 |
|
1894 |
# @ acf
|
1895 |
+
#: includes/fields/class-acf-field-file.php:207
|
1896 |
msgid "File URL"
|
1897 |
msgstr "URL du fichier"
|
1898 |
|
1899 |
# @ acf
|
1900 |
+
#: includes/fields/class-acf-field-file.php:208
|
1901 |
msgid "File ID"
|
1902 |
msgstr "ID du Fichier"
|
1903 |
|
1904 |
+
#: includes/fields/class-acf-field-file.php:215
|
1905 |
+
#: includes/fields/class-acf-field-image.php:213
|
1906 |
#: pro/fields/class-acf-field-gallery.php:655
|
1907 |
msgid "Library"
|
1908 |
msgstr "Médias"
|
1909 |
|
1910 |
+
#: includes/fields/class-acf-field-file.php:216
|
1911 |
+
#: includes/fields/class-acf-field-image.php:214
|
1912 |
#: pro/fields/class-acf-field-gallery.php:656
|
1913 |
msgid "Limit the media library choice"
|
1914 |
msgstr "Limiter le choix de la médiathèque"
|
1915 |
|
1916 |
+
#: includes/fields/class-acf-field-file.php:221
|
1917 |
+
#: includes/fields/class-acf-field-image.php:219
|
1918 |
#: includes/locations/class-acf-location-attachment.php:101
|
1919 |
#: includes/locations/class-acf-location-comment.php:79
|
1920 |
#: includes/locations/class-acf-location-nav-menu.php:102
|
1926 |
msgid "All"
|
1927 |
msgstr "Tous"
|
1928 |
|
1929 |
+
#: includes/fields/class-acf-field-file.php:222
|
1930 |
+
#: includes/fields/class-acf-field-image.php:220
|
1931 |
#: pro/fields/class-acf-field-gallery.php:662
|
1932 |
msgid "Uploaded to post"
|
1933 |
msgstr "Liés à cet article"
|
1934 |
|
1935 |
# @ acf
|
1936 |
+
#: includes/fields/class-acf-field-file.php:229
|
1937 |
+
#: includes/fields/class-acf-field-image.php:227
|
1938 |
#: pro/fields/class-acf-field-gallery.php:669
|
1939 |
msgid "Minimum"
|
1940 |
msgstr "Minimum"
|
1941 |
|
1942 |
+
#: includes/fields/class-acf-field-file.php:230
|
1943 |
+
#: includes/fields/class-acf-field-file.php:241
|
1944 |
msgid "Restrict which files can be uploaded"
|
1945 |
msgstr "Restreindre l'import de fichiers"
|
1946 |
|
1947 |
# @ acf
|
1948 |
+
#: includes/fields/class-acf-field-file.php:240
|
1949 |
+
#: includes/fields/class-acf-field-image.php:256
|
1950 |
#: pro/fields/class-acf-field-gallery.php:698
|
1951 |
msgid "Maximum"
|
1952 |
msgstr "Maximum"
|
1953 |
|
1954 |
+
#: includes/fields/class-acf-field-file.php:251
|
1955 |
+
#: includes/fields/class-acf-field-image.php:285
|
1956 |
#: pro/fields/class-acf-field-gallery.php:727
|
1957 |
msgid "Allowed file types"
|
1958 |
msgstr "Types de fichiers autorisés"
|
1959 |
|
1960 |
+
#: includes/fields/class-acf-field-file.php:252
|
1961 |
+
#: includes/fields/class-acf-field-image.php:286
|
1962 |
#: pro/fields/class-acf-field-gallery.php:728
|
1963 |
msgid "Comma separated list. Leave blank for all types"
|
1964 |
msgstr ""
|
1979 |
msgstr "Désolé, ce navigateur ne prend pas en charge la géolocalisation"
|
1980 |
|
1981 |
# @ acf
|
1982 |
+
#: includes/fields/class-acf-field-google-map.php:113
|
1983 |
msgid "Clear location"
|
1984 |
msgstr "Effacer la position"
|
1985 |
|
1986 |
+
#: includes/fields/class-acf-field-google-map.php:114
|
1987 |
msgid "Find current location"
|
1988 |
msgstr "Trouver l'emplacement actuel"
|
1989 |
|
1990 |
+
#: includes/fields/class-acf-field-google-map.php:117
|
1991 |
msgid "Search for address..."
|
1992 |
msgstr "Rechercher une adresse"
|
1993 |
|
1994 |
+
#: includes/fields/class-acf-field-google-map.php:147
|
1995 |
+
#: includes/fields/class-acf-field-google-map.php:158
|
1996 |
msgid "Center"
|
1997 |
msgstr "Centre"
|
1998 |
|
1999 |
+
#: includes/fields/class-acf-field-google-map.php:148
|
2000 |
+
#: includes/fields/class-acf-field-google-map.php:159
|
2001 |
msgid "Center the initial map"
|
2002 |
msgstr "Position géographique du centre de la carte"
|
2003 |
|
2004 |
+
#: includes/fields/class-acf-field-google-map.php:170
|
2005 |
msgid "Zoom"
|
2006 |
msgstr "Zoom"
|
2007 |
|
2008 |
+
#: includes/fields/class-acf-field-google-map.php:171
|
2009 |
msgid "Set the initial zoom level"
|
2010 |
msgstr "Définir le niveau de zoom (0 : monde ; 14 : ville ; 21 : rue)"
|
2011 |
|
2012 |
+
#: includes/fields/class-acf-field-google-map.php:180
|
2013 |
+
#: includes/fields/class-acf-field-image.php:239
|
2014 |
+
#: includes/fields/class-acf-field-image.php:268
|
2015 |
+
#: includes/fields/class-acf-field-oembed.php:281
|
2016 |
#: pro/fields/class-acf-field-gallery.php:681
|
2017 |
#: pro/fields/class-acf-field-gallery.php:710
|
2018 |
msgid "Height"
|
2019 |
msgstr "Hauteur"
|
2020 |
|
2021 |
+
#: includes/fields/class-acf-field-google-map.php:181
|
2022 |
msgid "Customise the map height"
|
2023 |
msgstr "Personnaliser la hauteur de la carte"
|
2024 |
|
2025 |
# @ acf
|
2026 |
#: includes/fields/class-acf-field-group.php:25
|
|
|
2027 |
msgid "Group"
|
2028 |
+
msgstr "Groupe"
|
2029 |
|
2030 |
# @ acf
|
2031 |
#: includes/fields/class-acf-field-group.php:461
|
2032 |
+
#: pro/fields/class-acf-field-repeater.php:389
|
2033 |
msgid "Sub Fields"
|
2034 |
msgstr "Sous champs"
|
2035 |
|
2036 |
#: includes/fields/class-acf-field-group.php:478
|
2037 |
+
#: pro/fields/class-acf-field-clone.php:839
|
2038 |
msgid "Specify the style used to render the selected fields"
|
2039 |
msgstr "Définit le style utilisé pour générer les champs sélectionnés"
|
2040 |
|
2041 |
#: includes/fields/class-acf-field-group.php:483
|
2042 |
+
#: pro/fields/class-acf-field-clone.php:844
|
2043 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
2044 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
2045 |
msgid "Block"
|
2046 |
msgstr "Bloc"
|
2047 |
|
2048 |
#: includes/fields/class-acf-field-group.php:484
|
2049 |
+
#: pro/fields/class-acf-field-clone.php:845
|
2050 |
+
#: pro/fields/class-acf-field-flexible-content.php:611
|
2051 |
+
#: pro/fields/class-acf-field-repeater.php:457
|
2052 |
msgid "Table"
|
2053 |
msgstr "Tableau"
|
2054 |
|
2055 |
#: includes/fields/class-acf-field-group.php:485
|
2056 |
+
#: pro/fields/class-acf-field-clone.php:846
|
2057 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
2058 |
+
#: pro/fields/class-acf-field-repeater.php:459
|
2059 |
msgid "Row"
|
2060 |
msgstr "Rangée"
|
2061 |
|
2087 |
msgstr "Toutes les images"
|
2088 |
|
2089 |
# @ acf
|
2090 |
+
#: includes/fields/class-acf-field-image.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2091 |
msgid "No image selected"
|
2092 |
msgstr "Aucune image sélectionnée"
|
2093 |
|
2094 |
# @ acf
|
2095 |
+
#: includes/fields/class-acf-field-image.php:140
|
2096 |
msgid "Add Image"
|
2097 |
msgstr "Ajouter une image"
|
2098 |
|
2099 |
# @ acf
|
2100 |
+
#: includes/fields/class-acf-field-image.php:194
|
2101 |
msgid "Image Array"
|
2102 |
msgstr "Données de l'image (array)"
|
2103 |
|
2104 |
# @ acf
|
2105 |
+
#: includes/fields/class-acf-field-image.php:195
|
2106 |
msgid "Image URL"
|
2107 |
msgstr "URL de l‘image"
|
2108 |
|
2109 |
# @ acf
|
2110 |
+
#: includes/fields/class-acf-field-image.php:196
|
2111 |
msgid "Image ID"
|
2112 |
msgstr "ID de l‘image"
|
2113 |
|
2114 |
# @ acf
|
2115 |
+
#: includes/fields/class-acf-field-image.php:203
|
2116 |
msgid "Preview Size"
|
2117 |
msgstr "Taille de prévisualisation"
|
2118 |
|
2119 |
+
#: includes/fields/class-acf-field-image.php:204
|
2120 |
msgid "Shown when entering data"
|
2121 |
msgstr "Côté interface d'administration"
|
2122 |
|
2123 |
+
#: includes/fields/class-acf-field-image.php:228
|
2124 |
+
#: includes/fields/class-acf-field-image.php:257
|
2125 |
#: pro/fields/class-acf-field-gallery.php:670
|
2126 |
#: pro/fields/class-acf-field-gallery.php:699
|
2127 |
msgid "Restrict which images can be uploaded"
|
2128 |
msgstr "Restreindre les images téléversées"
|
2129 |
|
2130 |
+
#: includes/fields/class-acf-field-image.php:231
|
2131 |
+
#: includes/fields/class-acf-field-image.php:260
|
2132 |
+
#: includes/fields/class-acf-field-oembed.php:270
|
2133 |
#: pro/fields/class-acf-field-gallery.php:673
|
2134 |
#: pro/fields/class-acf-field-gallery.php:702
|
2135 |
msgid "Width"
|
2137 |
|
2138 |
# @ acf
|
2139 |
#: includes/fields/class-acf-field-link.php:25
|
|
|
2140 |
msgid "Link"
|
2141 |
+
msgstr "Lien"
|
2142 |
|
2143 |
# @ acf
|
2144 |
#: includes/fields/class-acf-field-link.php:133
|
|
|
2145 |
msgid "Select Link"
|
2146 |
+
msgstr "Sélectionner un lien"
|
2147 |
|
2148 |
#: includes/fields/class-acf-field-link.php:138
|
2149 |
msgid "Opens in a new window/tab"
|
2150 |
+
msgstr "Ouvrir dans un nouvel onglet"
|
2151 |
|
2152 |
#: includes/fields/class-acf-field-link.php:172
|
|
|
2153 |
msgid "Link Array"
|
2154 |
+
msgstr "Tableau de données"
|
2155 |
|
2156 |
# @ acf
|
2157 |
#: includes/fields/class-acf-field-link.php:173
|
|
|
2158 |
msgid "Link URL"
|
2159 |
+
msgstr "URL du Lien"
|
2160 |
|
2161 |
# @ acf
|
2162 |
#: includes/fields/class-acf-field-message.php:25
|
2205 |
msgstr "Nombre"
|
2206 |
|
2207 |
#: includes/fields/class-acf-field-number.php:159
|
2208 |
+
#: includes/fields/class-acf-field-range.php:150
|
2209 |
msgid "Minimum Value"
|
2210 |
msgstr "Valeur minimale"
|
2211 |
|
2212 |
# @ acf
|
2213 |
#: includes/fields/class-acf-field-number.php:168
|
2214 |
+
#: includes/fields/class-acf-field-range.php:160
|
2215 |
msgid "Maximum Value"
|
2216 |
msgstr "Valeur maximale"
|
2217 |
|
2218 |
#: includes/fields/class-acf-field-number.php:177
|
2219 |
+
#: includes/fields/class-acf-field-range.php:170
|
2220 |
msgid "Step Size"
|
2221 |
msgstr "Pas"
|
2222 |
|
2238 |
msgid "oEmbed"
|
2239 |
msgstr "oEmbed"
|
2240 |
|
2241 |
+
#: includes/fields/class-acf-field-oembed.php:219
|
2242 |
msgid "Enter URL"
|
2243 |
msgstr "Entrez l'URL"
|
2244 |
|
2245 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2246 |
+
#: includes/fields/class-acf-field-taxonomy.php:893
|
2247 |
msgid "Error."
|
2248 |
msgstr "Erreur."
|
2249 |
|
2250 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2251 |
msgid "No embed found for the given URL."
|
2252 |
msgstr "Aucune instruction d'intégration trouvée à cette adresse."
|
2253 |
|
2254 |
+
#: includes/fields/class-acf-field-oembed.php:267
|
2255 |
+
#: includes/fields/class-acf-field-oembed.php:278
|
2256 |
msgid "Embed Size"
|
2257 |
msgstr "Dimensions"
|
2258 |
|
2290 |
#: includes/fields/class-acf-field-post_object.php:412
|
2291 |
#: includes/fields/class-acf-field-radio.php:244
|
2292 |
#: includes/fields/class-acf-field-select.php:386
|
2293 |
+
#: includes/fields/class-acf-field-taxonomy.php:788
|
2294 |
#: includes/fields/class-acf-field-user.php:408
|
2295 |
msgid "Allow Null?"
|
2296 |
msgstr "Autoriser une valeur vide ?"
|
2345 |
msgid "Save 'other' values to the field's choices"
|
2346 |
msgstr "Enregistrer 'autre' en tant que choix"
|
2347 |
|
2348 |
+
#: includes/fields/class-acf-field-range.php:25
|
2349 |
+
msgid "Range"
|
2350 |
+
msgstr "Plage de valeurs"
|
2351 |
+
|
2352 |
# @ acf
|
2353 |
#: includes/fields/class-acf-field-relationship.php:25
|
2354 |
msgid "Relationship"
|
2396 |
# @ acf
|
2397 |
#: includes/fields/class-acf-field-relationship.php:658
|
2398 |
#: includes/fields/class-acf-field-taxonomy.php:28
|
2399 |
+
#: includes/fields/class-acf-field-taxonomy.php:758
|
2400 |
msgid "Taxonomy"
|
2401 |
msgstr "Taxonomie"
|
2402 |
|
2427 |
msgstr[1] "%s requiert au moins %s sélections"
|
2428 |
|
2429 |
#: includes/fields/class-acf-field-select.php:25
|
2430 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
2431 |
msgctxt "noun"
|
2432 |
msgid "Select"
|
2433 |
msgstr "Sélection"
|
2519 |
|
2520 |
#: includes/fields/class-acf-field-separator.php:25
|
2521 |
msgid "Separator"
|
2522 |
+
msgstr "Séparateur"
|
2523 |
|
2524 |
#: includes/fields/class-acf-field-tab.php:25
|
2525 |
msgid "Tab"
|
2562 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2563 |
msgstr "Le prochain onglet sera disposé à la ligne"
|
2564 |
|
2565 |
+
#: includes/fields/class-acf-field-taxonomy.php:708
|
2566 |
#: includes/fields/class-acf-field-true_false.php:80
|
2567 |
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2568 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2569 |
msgid "No"
|
2570 |
msgstr "Non"
|
2571 |
|
2572 |
+
#: includes/fields/class-acf-field-taxonomy.php:727
|
2573 |
msgid "None"
|
2574 |
msgstr "Aucun"
|
2575 |
|
2576 |
# @ acf
|
2577 |
+
#: includes/fields/class-acf-field-taxonomy.php:759
|
2578 |
msgid "Select the taxonomy to be displayed"
|
2579 |
msgstr "Choisissez la taxonomie à afficher"
|
2580 |
|
2581 |
+
#: includes/fields/class-acf-field-taxonomy.php:768
|
2582 |
msgid "Appearance"
|
2583 |
msgstr "Apparence"
|
2584 |
|
2585 |
# @ acf
|
2586 |
+
#: includes/fields/class-acf-field-taxonomy.php:769
|
2587 |
msgid "Select the appearance of this field"
|
2588 |
msgstr "Personnaliser l'apparence de champ"
|
2589 |
|
2590 |
# @ acf
|
2591 |
+
#: includes/fields/class-acf-field-taxonomy.php:774
|
2592 |
msgid "Multiple Values"
|
2593 |
msgstr "Valeurs multiples"
|
2594 |
|
2595 |
# @ acf
|
2596 |
+
#: includes/fields/class-acf-field-taxonomy.php:776
|
2597 |
msgid "Multi Select"
|
2598 |
msgstr "Sélecteur multiple"
|
2599 |
|
2600 |
+
#: includes/fields/class-acf-field-taxonomy.php:778
|
2601 |
msgid "Single Value"
|
2602 |
msgstr "Valeur seule"
|
2603 |
|
2604 |
# @ acf
|
2605 |
+
#: includes/fields/class-acf-field-taxonomy.php:779
|
2606 |
msgid "Radio Buttons"
|
2607 |
msgstr "Boutons radio"
|
2608 |
|
2609 |
# @ acf
|
2610 |
+
#: includes/fields/class-acf-field-taxonomy.php:798
|
2611 |
msgid "Create Terms"
|
2612 |
msgstr "Créer des termes"
|
2613 |
|
2614 |
+
#: includes/fields/class-acf-field-taxonomy.php:799
|
2615 |
msgid "Allow new terms to be created whilst editing"
|
2616 |
msgstr "Autoriser la création de nouveaux termes pendant l'édition"
|
2617 |
|
2618 |
+
#: includes/fields/class-acf-field-taxonomy.php:808
|
2619 |
msgid "Save Terms"
|
2620 |
msgstr "Enregistrer les termes"
|
2621 |
|
2622 |
+
#: includes/fields/class-acf-field-taxonomy.php:809
|
2623 |
msgid "Connect selected terms to the post"
|
2624 |
msgstr "Lier les termes sélectionnés à l'article"
|
2625 |
|
2626 |
+
#: includes/fields/class-acf-field-taxonomy.php:818
|
2627 |
msgid "Load Terms"
|
2628 |
msgstr "Charger les termes"
|
2629 |
|
2630 |
+
#: includes/fields/class-acf-field-taxonomy.php:819
|
2631 |
msgid "Load value from posts terms"
|
2632 |
msgstr "Charger une valeur depuis les termes"
|
2633 |
|
2634 |
# @ acf
|
2635 |
+
#: includes/fields/class-acf-field-taxonomy.php:833
|
2636 |
msgid "Term Object"
|
2637 |
msgstr "Objet Terme"
|
2638 |
|
2639 |
+
#: includes/fields/class-acf-field-taxonomy.php:834
|
2640 |
msgid "Term ID"
|
2641 |
msgstr "ID du terme"
|
2642 |
|
2643 |
+
#: includes/fields/class-acf-field-taxonomy.php:893
|
2644 |
#, php-format
|
2645 |
msgid "User unable to add new %s"
|
2646 |
msgstr "Utilisateur incapable d'ajouter un nouveau %s"
|
2647 |
|
2648 |
+
#: includes/fields/class-acf-field-taxonomy.php:906
|
2649 |
#, php-format
|
2650 |
msgid "%s already exists"
|
2651 |
msgstr "%s existe déjà"
|
2652 |
|
2653 |
+
#: includes/fields/class-acf-field-taxonomy.php:947
|
2654 |
#, php-format
|
2655 |
msgid "%s added"
|
2656 |
msgstr "%s Ajouté"
|
2657 |
|
2658 |
# @ acf
|
2659 |
+
#: includes/fields/class-acf-field-taxonomy.php:992
|
2660 |
msgid "Add"
|
2661 |
msgstr "Ajouter"
|
2662 |
|
2699 |
|
2700 |
#: includes/fields/class-acf-field-true_false.php:79
|
2701 |
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2702 |
+
#: pro/admin/views/html-settings-updates.php:89
|
2703 |
msgid "Yes"
|
2704 |
msgstr "Oui"
|
2705 |
|
2809 |
msgstr "Valider l’email"
|
2810 |
|
2811 |
# @ acf
|
2812 |
+
#: includes/forms/form-front.php:103 pro/fields/class-acf-field-gallery.php:573
|
2813 |
+
#: pro/options-page.php:81
|
2814 |
msgid "Update"
|
2815 |
msgstr "Mise à jour"
|
2816 |
|
2884 |
#: includes/locations/class-acf-location-attachment.php:109
|
2885 |
#, php-format
|
2886 |
msgid "All %s formats"
|
2887 |
+
msgstr "Tous les formats %s"
|
2888 |
|
2889 |
#: includes/locations/class-acf-location-comment.php:27
|
2890 |
msgid "Comment"
|
2917 |
|
2918 |
#: includes/locations/class-acf-location-nav-menu-item.php:27
|
2919 |
msgid "Menu Item"
|
2920 |
+
msgstr "Élément de menu"
|
2921 |
|
2922 |
#: includes/locations/class-acf-location-nav-menu.php:27
|
2923 |
msgid "Menu"
|
2924 |
+
msgstr "Menu"
|
2925 |
|
2926 |
# @ acf
|
2927 |
#: includes/locations/class-acf-location-nav-menu.php:109
|
|
|
2928 |
msgid "Menu Locations"
|
2929 |
+
msgstr "Emplacement de menu"
|
2930 |
|
2931 |
#: includes/locations/class-acf-location-nav-menu.php:119
|
2932 |
msgid "Menus"
|
2933 |
+
msgstr "Menus"
|
2934 |
|
2935 |
# @ acf
|
2936 |
#: includes/locations/class-acf-location-page-parent.php:27
|
2992 |
msgstr "Taxonomie"
|
2993 |
|
2994 |
#: includes/locations/class-acf-location-post-template.php:27
|
|
|
2995 |
msgid "Post Template"
|
2996 |
+
msgstr "Modèle d'article"
|
2997 |
|
2998 |
# @ acf
|
2999 |
#: includes/locations/class-acf-location-taxonomy.php:27
|
3064 |
|
3065 |
# @ acf
|
3066 |
#: pro/admin/admin-settings-updates.php:162
|
3067 |
+
#: pro/admin/views/html-settings-updates.php:13
|
3068 |
msgid "Updates"
|
3069 |
msgstr "Mises à jour"
|
3070 |
|
3071 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3072 |
msgid "Deactivate License"
|
3073 |
msgstr "Désactiver la licence"
|
3074 |
|
3075 |
# @ acf
|
3076 |
+
#: pro/admin/views/html-settings-updates.php:7
|
3077 |
msgid "Activate License"
|
3078 |
msgstr "Activer votre licence"
|
3079 |
|
3080 |
# @ acf
|
3081 |
+
#: pro/admin/views/html-settings-updates.php:17
|
3082 |
msgid "License Information"
|
3083 |
msgstr "Informations sur la licence"
|
3084 |
|
3085 |
+
#: pro/admin/views/html-settings-updates.php:20
|
3086 |
#, php-format
|
3087 |
msgid ""
|
3088 |
"To unlock updates, please enter your license key below. If you don't have a "
|
3094 |
"\"%s\" target=\"_blank\">détails & tarifs</a>."
|
3095 |
|
3096 |
# @ acf
|
3097 |
+
#: pro/admin/views/html-settings-updates.php:29
|
3098 |
msgid "License Key"
|
3099 |
msgstr "Code de licence"
|
3100 |
|
3101 |
# @ acf
|
3102 |
+
#: pro/admin/views/html-settings-updates.php:61
|
3103 |
msgid "Update Information"
|
3104 |
msgstr "Informations de mise à jour"
|
3105 |
|
3106 |
+
#: pro/admin/views/html-settings-updates.php:68
|
3107 |
msgid "Current Version"
|
3108 |
msgstr "Version actuelle"
|
3109 |
|
3110 |
+
#: pro/admin/views/html-settings-updates.php:76
|
3111 |
msgid "Latest Version"
|
3112 |
msgstr "Dernière version"
|
3113 |
|
3114 |
# @ acf
|
3115 |
+
#: pro/admin/views/html-settings-updates.php:84
|
3116 |
msgid "Update Available"
|
3117 |
msgstr "Mise à jour disponible"
|
3118 |
|
3119 |
# @ acf
|
3120 |
+
#: pro/admin/views/html-settings-updates.php:92
|
3121 |
msgid "Update Plugin"
|
3122 |
msgstr "Mettre à jour le plugin"
|
3123 |
|
3124 |
+
#: pro/admin/views/html-settings-updates.php:94
|
3125 |
msgid "Please enter your license key above to unlock updates"
|
3126 |
msgstr "Entrez votre clé de licence ci-dessous pour activer les mises à jour"
|
3127 |
|
3128 |
+
#: pro/admin/views/html-settings-updates.php:100
|
3129 |
msgid "Check Again"
|
3130 |
msgstr "Vérifier à nouveau"
|
3131 |
|
3132 |
# @ wp3i
|
3133 |
+
#: pro/admin/views/html-settings-updates.php:117
|
3134 |
msgid "Upgrade Notice"
|
3135 |
msgstr "Améliorations"
|
3136 |
|
3139 |
msgid "Clone"
|
3140 |
msgstr "Clone"
|
3141 |
|
3142 |
+
#: pro/fields/class-acf-field-clone.php:807
|
3143 |
msgid "Select one or more fields you wish to clone"
|
3144 |
msgstr "Sélectionnez un ou plusieurs champs à cloner"
|
3145 |
|
3146 |
# @ acf
|
3147 |
+
#: pro/fields/class-acf-field-clone.php:824
|
3148 |
msgid "Display"
|
3149 |
msgstr "Format d'affichage"
|
3150 |
|
3151 |
+
#: pro/fields/class-acf-field-clone.php:825
|
3152 |
msgid "Specify the style used to render the clone field"
|
3153 |
msgstr "Définit le style utilisé pour générer le champ dupliqué"
|
3154 |
|
3155 |
+
#: pro/fields/class-acf-field-clone.php:830
|
3156 |
msgid "Group (displays selected fields in a group within this field)"
|
3157 |
msgstr ""
|
3158 |
"Groupe (affiche les champs sélectionnés dans un groupe à l’intérieur de ce "
|
3159 |
"champ) "
|
3160 |
|
3161 |
+
#: pro/fields/class-acf-field-clone.php:831
|
3162 |
msgid "Seamless (replaces this field with selected fields)"
|
3163 |
msgstr "Remplace ce champ par les champs sélectionnés"
|
3164 |
|
3165 |
+
#: pro/fields/class-acf-field-clone.php:852
|
3166 |
#, php-format
|
3167 |
msgid "Labels will be displayed as %s"
|
3168 |
msgstr "Les libellés seront affichés en tant que %s"
|
3169 |
|
3170 |
+
#: pro/fields/class-acf-field-clone.php:855
|
3171 |
msgid "Prefix Field Labels"
|
3172 |
msgstr "Préfixer les libellés de champs"
|
3173 |
|
3174 |
+
#: pro/fields/class-acf-field-clone.php:866
|
3175 |
#, php-format
|
3176 |
msgid "Values will be saved as %s"
|
3177 |
msgstr "Les valeurs seront enregistrées en tant que %s"
|
3178 |
|
3179 |
+
#: pro/fields/class-acf-field-clone.php:869
|
3180 |
msgid "Prefix Field Names"
|
3181 |
msgstr "Préfixer les noms de champs"
|
3182 |
|
3183 |
+
#: pro/fields/class-acf-field-clone.php:987
|
3184 |
msgid "Unknown field"
|
3185 |
msgstr "Champ inconnu"
|
3186 |
|
3187 |
+
#: pro/fields/class-acf-field-clone.php:1026
|
3188 |
msgid "Unknown field group"
|
3189 |
msgstr "Groupe de champ inconnu"
|
3190 |
|
3191 |
+
#: pro/fields/class-acf-field-clone.php:1030
|
3192 |
#, php-format
|
3193 |
msgid "All fields from %s field group"
|
3194 |
msgstr "Tous les champs du groupe %s"
|
3196 |
# @ acf
|
3197 |
#: pro/fields/class-acf-field-flexible-content.php:31
|
3198 |
#: pro/fields/class-acf-field-repeater.php:174
|
3199 |
+
#: pro/fields/class-acf-field-repeater.php:470
|
3200 |
msgid "Add Row"
|
3201 |
msgstr "Ajouter un élément"
|
3202 |
|
3250 |
"Cliquez sur le bouton \"%s\" ci-dessous pour créer votre première disposition"
|
3251 |
|
3252 |
# @ acf
|
3253 |
+
#: pro/fields/class-acf-field-flexible-content.php:406
|
3254 |
msgid "Add layout"
|
3255 |
msgstr "Disposition"
|
3256 |
|
3257 |
# @ acf
|
3258 |
+
#: pro/fields/class-acf-field-flexible-content.php:407
|
3259 |
msgid "Remove layout"
|
3260 |
msgstr "Retirer la disposition"
|
3261 |
|
3262 |
+
#: pro/fields/class-acf-field-flexible-content.php:408
|
3263 |
+
#: pro/fields/class-acf-field-repeater.php:298
|
3264 |
msgid "Click to toggle"
|
3265 |
msgstr "Cliquer pour intervertir"
|
3266 |
|
3267 |
# @ acf
|
3268 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3269 |
msgid "Reorder Layout"
|
3270 |
msgstr "Réorganiser la disposition"
|
3271 |
|
3272 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3273 |
msgid "Reorder"
|
3274 |
msgstr "Réorganiser"
|
3275 |
|
3276 |
# @ acf
|
3277 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
3278 |
msgid "Delete Layout"
|
3279 |
msgstr "Supprimer la disposition"
|
3280 |
|
3281 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3282 |
msgid "Duplicate Layout"
|
3283 |
msgstr "Dupliquer la disposition"
|
3284 |
|
3285 |
# @ acf
|
3286 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3287 |
msgid "Add New Layout"
|
3288 |
msgstr "Ajouter une disposition"
|
3289 |
|
3290 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
3291 |
msgid "Min"
|
3292 |
msgstr "Min"
|
3293 |
|
3294 |
+
#: pro/fields/class-acf-field-flexible-content.php:641
|
3295 |
msgid "Max"
|
3296 |
msgstr "Max"
|
3297 |
|
3298 |
+
#: pro/fields/class-acf-field-flexible-content.php:668
|
3299 |
+
#: pro/fields/class-acf-field-repeater.php:466
|
3300 |
msgid "Button Label"
|
3301 |
msgstr "Intitulé du bouton"
|
3302 |
|
3303 |
# @ acf
|
3304 |
+
#: pro/fields/class-acf-field-flexible-content.php:677
|
3305 |
msgid "Minimum Layouts"
|
3306 |
msgstr "Nombre minimum de dispositions"
|
3307 |
|
3308 |
# @ acf
|
3309 |
+
#: pro/fields/class-acf-field-flexible-content.php:686
|
3310 |
msgid "Maximum Layouts"
|
3311 |
msgstr "Nombre maximum de dispositions"
|
3312 |
|
3397 |
msgstr "Nombre maximal d'éléments atteint ({max} éléments)"
|
3398 |
|
3399 |
# @ acf
|
3400 |
+
#: pro/fields/class-acf-field-repeater.php:343
|
3401 |
msgid "Add row"
|
3402 |
msgstr "Ajouter un élément"
|
3403 |
|
3404 |
# @ acf
|
3405 |
+
#: pro/fields/class-acf-field-repeater.php:344
|
3406 |
msgid "Remove row"
|
3407 |
msgstr "Retirer l'élément"
|
3408 |
|
3409 |
+
#: pro/fields/class-acf-field-repeater.php:419
|
3410 |
msgid "Collapsed"
|
3411 |
msgstr "Refermé"
|
3412 |
|
3413 |
+
#: pro/fields/class-acf-field-repeater.php:420
|
3414 |
msgid "Select a sub field to show when row is collapsed"
|
3415 |
msgstr "Choisir un sous champ à montrer lorsque la ligne est refermée"
|
3416 |
|
3417 |
# @ acf
|
3418 |
+
#: pro/fields/class-acf-field-repeater.php:430
|
3419 |
msgid "Minimum Rows"
|
3420 |
msgstr "Nombre minimum d'éléments"
|
3421 |
|
3422 |
# @ acf
|
3423 |
+
#: pro/fields/class-acf-field-repeater.php:440
|
3424 |
msgid "Maximum Rows"
|
3425 |
msgstr "Nombre maximum d'éléments"
|
3426 |
|
lang/acf-pt_PT.mo
CHANGED
Binary file
|
lang/acf-pt_PT.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields PRO\n"
|
6 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
-
"PO-Revision-Date: 2017-
|
9 |
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
10 |
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language: pt_PT\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit 2.0.
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
@@ -24,97 +24,97 @@ msgstr ""
|
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
-
#: acf.php:
|
28 |
msgid "Advanced Custom Fields"
|
29 |
msgstr "Advanced Custom Fields"
|
30 |
|
31 |
-
#: acf.php:
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Grupos de campos"
|
34 |
|
35 |
-
#: acf.php:
|
36 |
msgid "Field Group"
|
37 |
msgstr "Grupo de campos"
|
38 |
|
39 |
-
#: acf.php:
|
40 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
41 |
msgid "Add New"
|
42 |
msgstr "Adicionar novo"
|
43 |
|
44 |
-
#: acf.php:
|
45 |
msgid "Add New Field Group"
|
46 |
msgstr "Adicionar novo grupo de campos"
|
47 |
|
48 |
-
#: acf.php:
|
49 |
msgid "Edit Field Group"
|
50 |
msgstr "Editar grupo de campos"
|
51 |
|
52 |
-
#: acf.php:
|
53 |
msgid "New Field Group"
|
54 |
msgstr "Novo grupo de campos"
|
55 |
|
56 |
-
#: acf.php:
|
57 |
msgid "View Field Group"
|
58 |
msgstr "Ver grupo de campos"
|
59 |
|
60 |
-
#: acf.php:
|
61 |
msgid "Search Field Groups"
|
62 |
msgstr "Pesquisar grupos de campos"
|
63 |
|
64 |
-
#: acf.php:
|
65 |
msgid "No Field Groups found"
|
66 |
msgstr "Nenhum grupo de campos encontrado"
|
67 |
|
68 |
-
#: acf.php:
|
69 |
msgid "No Field Groups found in Trash"
|
70 |
msgstr "Nenhum grupo de campos encontrado no lixo"
|
71 |
|
72 |
-
#: acf.php:
|
73 |
#: includes/admin/admin-field-group.php:275
|
74 |
#: includes/admin/admin-field-groups.php:510
|
75 |
-
#: pro/fields/class-acf-field-clone.php:
|
76 |
msgid "Fields"
|
77 |
msgstr "Campos"
|
78 |
|
79 |
-
#: acf.php:
|
80 |
msgid "Field"
|
81 |
msgstr "Campo"
|
82 |
|
83 |
-
#: acf.php:
|
84 |
msgid "Add New Field"
|
85 |
msgstr "Adicionar novo campo"
|
86 |
|
87 |
-
#: acf.php:
|
88 |
msgid "Edit Field"
|
89 |
msgstr "Editar campo"
|
90 |
|
91 |
-
#: acf.php:
|
92 |
#: includes/admin/views/settings-info.php:105
|
93 |
msgid "New Field"
|
94 |
msgstr "Novo campo"
|
95 |
|
96 |
-
#: acf.php:
|
97 |
msgid "View Field"
|
98 |
msgstr "Ver campo"
|
99 |
|
100 |
-
#: acf.php:
|
101 |
msgid "Search Fields"
|
102 |
msgstr "Pesquisar campos"
|
103 |
|
104 |
-
#: acf.php:
|
105 |
msgid "No Fields found"
|
106 |
msgstr "Nenhum campo encontrado"
|
107 |
|
108 |
-
#: acf.php:
|
109 |
msgid "No Fields found in Trash"
|
110 |
msgstr "Nenhum campo encontrado no lixo"
|
111 |
|
112 |
-
#: acf.php:
|
113 |
#: includes/admin/admin-field-groups.php:567
|
114 |
msgid "Inactive"
|
115 |
msgstr "Inactivo"
|
116 |
|
117 |
-
#: acf.php:
|
118 |
#, php-format
|
119 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
120 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
@@ -176,7 +176,7 @@ msgid "Field group title is required"
|
|
176 |
msgstr "O título do grupo de campos é obrigatório"
|
177 |
|
178 |
#: includes/admin/admin-field-group.php:273
|
179 |
-
#: includes/api/api-field-group.php:
|
180 |
msgid "copy"
|
181 |
msgstr "cópia"
|
182 |
|
@@ -311,7 +311,7 @@ msgstr ""
|
|
311 |
|
312 |
#: includes/admin/admin-field-groups.php:609
|
313 |
#: includes/admin/settings-info.php:76
|
314 |
-
#: pro/admin/views/html-settings-updates.php:
|
315 |
msgid "Changelog"
|
316 |
msgstr "Registo de alterações"
|
317 |
|
@@ -352,12 +352,12 @@ msgstr "Duplicar este item"
|
|
352 |
#: includes/admin/admin-field-groups.php:668
|
353 |
#: includes/admin/admin-field-groups.php:684
|
354 |
#: includes/admin/views/field-group-field.php:49
|
355 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
356 |
msgid "Duplicate"
|
357 |
msgstr "Duplicar"
|
358 |
|
359 |
#: includes/admin/admin-field-groups.php:701
|
360 |
-
#: includes/fields/class-acf-field-google-map.php:
|
361 |
#: includes/fields/class-acf-field-relationship.php:656
|
362 |
msgid "Search"
|
363 |
msgstr "Pesquisa"
|
@@ -434,7 +434,7 @@ msgid "No field groups selected"
|
|
434 |
msgstr "Nenhum grupo de campos seleccionado"
|
435 |
|
436 |
#: includes/admin/settings-tools.php:184
|
437 |
-
#: includes/fields/class-acf-field-file.php:
|
438 |
msgid "No file selected"
|
439 |
msgstr "Nenhum ficheiro seleccionado"
|
440 |
|
@@ -466,12 +466,12 @@ msgid "Show this field if"
|
|
466 |
msgstr "Mostrar este campo se"
|
467 |
|
468 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
469 |
-
#: includes/locations.php:
|
470 |
msgid "is equal to"
|
471 |
msgstr "é igual a"
|
472 |
|
473 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
474 |
-
#: includes/locations.php:
|
475 |
msgid "is not equal to"
|
476 |
msgstr "não é igual a"
|
477 |
|
@@ -486,8 +486,8 @@ msgid "Add rule group"
|
|
486 |
msgstr "Adicionar grupo de regras"
|
487 |
|
488 |
#: includes/admin/views/field-group-field.php:41
|
489 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
490 |
-
#: pro/fields/class-acf-field-repeater.php:
|
491 |
msgid "Drag to reorder"
|
492 |
msgstr "Arraste para reordenar"
|
493 |
|
@@ -497,7 +497,8 @@ msgid "Edit field"
|
|
497 |
msgstr "Editar campo"
|
498 |
|
499 |
#: includes/admin/views/field-group-field.php:48
|
500 |
-
#: includes/fields/class-acf-field-
|
|
|
501 |
#: includes/fields/class-acf-field-link.php:139
|
502 |
#: pro/fields/class-acf-field-gallery.php:342
|
503 |
msgid "Edit"
|
@@ -520,7 +521,7 @@ msgid "Delete field"
|
|
520 |
msgstr "Eliminar campo"
|
521 |
|
522 |
#: includes/admin/views/field-group-field.php:51
|
523 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
524 |
msgid "Delete"
|
525 |
msgstr "Eliminar"
|
526 |
|
@@ -532,49 +533,49 @@ msgstr "Legenda do campo"
|
|
532 |
msgid "This is the name which will appear on the EDIT page"
|
533 |
msgstr "Este é o nome que irá aparecer na página EDITAR."
|
534 |
|
535 |
-
#: includes/admin/views/field-group-field.php:
|
536 |
msgid "Field Name"
|
537 |
msgstr "Nome do campo"
|
538 |
|
539 |
-
#: includes/admin/views/field-group-field.php:
|
540 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
541 |
msgstr ""
|
542 |
"Uma única palavra, sem espaços. São permitidos underscores (_) e traços (-)."
|
543 |
|
544 |
-
#: includes/admin/views/field-group-field.php:
|
545 |
msgid "Field Type"
|
546 |
msgstr "Tipo de campo"
|
547 |
|
548 |
-
#: includes/admin/views/field-group-field.php:
|
549 |
#: includes/fields/class-acf-field-tab.php:88
|
550 |
msgid "Instructions"
|
551 |
msgstr "Instruções"
|
552 |
|
553 |
-
#: includes/admin/views/field-group-field.php:
|
554 |
msgid "Instructions for authors. Shown when submitting data"
|
555 |
msgstr "Instruções para os autores. São mostradas quando submeter dados."
|
556 |
|
557 |
-
#: includes/admin/views/field-group-field.php:
|
558 |
msgid "Required?"
|
559 |
msgstr "Obrigatório?"
|
560 |
|
561 |
-
#: includes/admin/views/field-group-field.php:
|
562 |
msgid "Wrapper Attributes"
|
563 |
msgstr "Atributos do wrapper"
|
564 |
|
565 |
-
#: includes/admin/views/field-group-field.php:
|
566 |
msgid "width"
|
567 |
msgstr "largura"
|
568 |
|
569 |
-
#: includes/admin/views/field-group-field.php:
|
570 |
msgid "class"
|
571 |
msgstr "classe"
|
572 |
|
573 |
-
#: includes/admin/views/field-group-field.php:
|
574 |
msgid "id"
|
575 |
msgstr "id"
|
576 |
|
577 |
-
#: includes/admin/views/field-group-field.php:
|
578 |
msgid "Close Field"
|
579 |
msgstr "Fechar campo"
|
580 |
|
@@ -583,16 +584,17 @@ msgid "Order"
|
|
583 |
msgstr "Ordem"
|
584 |
|
585 |
#: includes/admin/views/field-group-fields.php:5
|
|
|
586 |
#: includes/fields/class-acf-field-checkbox.php:415
|
587 |
#: includes/fields/class-acf-field-radio.php:306
|
588 |
#: includes/fields/class-acf-field-select.php:432
|
589 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
590 |
msgid "Label"
|
591 |
msgstr "Legenda"
|
592 |
|
593 |
#: includes/admin/views/field-group-fields.php:6
|
594 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
595 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
596 |
msgid "Name"
|
597 |
msgstr "Nome"
|
598 |
|
@@ -1260,14 +1262,14 @@ msgid "Full Size"
|
|
1260 |
msgstr "Tamanho original"
|
1261 |
|
1262 |
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1263 |
-
#: pro/fields/class-acf-field-clone.php:
|
1264 |
msgid "(no title)"
|
1265 |
msgstr "(sem título)"
|
1266 |
|
1267 |
#: includes/api/api-helpers.php:1868
|
1268 |
#: includes/fields/class-acf-field-page_link.php:269
|
1269 |
#: includes/fields/class-acf-field-post_object.php:268
|
1270 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1271 |
msgid "Parent"
|
1272 |
msgstr "Superior"
|
1273 |
|
@@ -1326,13 +1328,14 @@ msgstr "Relacional"
|
|
1326 |
msgid "jQuery"
|
1327 |
msgstr "jQuery"
|
1328 |
|
1329 |
-
#: includes/fields.php:149 includes/fields/class-acf-field-
|
1330 |
-
#: includes/fields/class-acf-field-
|
|
|
1331 |
#: includes/fields/class-acf-field-radio.php:285
|
1332 |
-
#: pro/fields/class-acf-field-clone.php:
|
1333 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1334 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1335 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1336 |
msgid "Layout"
|
1337 |
msgstr "Layout"
|
1338 |
|
@@ -1344,31 +1347,25 @@ msgstr "Tipo de campo não existe"
|
|
1344 |
msgid "Unknown"
|
1345 |
msgstr "Desconhecido"
|
1346 |
|
1347 |
-
#: includes/fields/class-acf-field-
|
1348 |
-
|
1349 |
-
|
1350 |
-
msgstr "Caixa de selecção"
|
1351 |
-
|
1352 |
-
#: includes/fields/class-acf-field-checkbox.php:154
|
1353 |
-
msgid "Toggle All"
|
1354 |
-
msgstr "Seleccionar tudo"
|
1355 |
-
|
1356 |
-
#: includes/fields/class-acf-field-checkbox.php:221
|
1357 |
-
msgid "Add new choice"
|
1358 |
-
msgstr "Adicionar nova opção"
|
1359 |
|
|
|
1360 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1361 |
#: includes/fields/class-acf-field-radio.php:235
|
1362 |
#: includes/fields/class-acf-field-select.php:368
|
1363 |
msgid "Choices"
|
1364 |
msgstr "Opções"
|
1365 |
|
|
|
1366 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1367 |
#: includes/fields/class-acf-field-radio.php:236
|
1368 |
#: includes/fields/class-acf-field-select.php:369
|
1369 |
msgid "Enter each choice on a new line."
|
1370 |
msgstr "Introduza cada opção numa linha separada."
|
1371 |
|
|
|
1372 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1373 |
#: includes/fields/class-acf-field-radio.php:236
|
1374 |
#: includes/fields/class-acf-field-select.php:369
|
@@ -1376,95 +1373,139 @@ msgid "For more control, you may specify both a value and label like this:"
|
|
1376 |
msgstr ""
|
1377 |
"Para maior controlo, pode especificar tanto os valores como as legendas:"
|
1378 |
|
|
|
1379 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1380 |
#: includes/fields/class-acf-field-radio.php:236
|
1381 |
#: includes/fields/class-acf-field-select.php:369
|
1382 |
msgid "red : Red"
|
1383 |
msgstr "vermelho : Vermelho"
|
1384 |
|
1385 |
-
#: includes/fields/class-acf-field-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
#: includes/fields/class-acf-field-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
msgid "Save Custom"
|
1395 |
-
msgstr "Guardar personalização"
|
1396 |
-
|
1397 |
-
#: includes/fields/class-acf-field-checkbox.php:369
|
1398 |
-
msgid "Save 'custom' values to the field's choices"
|
1399 |
-
msgstr "Guarda valores personalizados nas opções do campo"
|
1400 |
|
|
|
1401 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1402 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1403 |
-
#: includes/fields/class-acf-field-email.php:
|
1404 |
-
#: includes/fields/class-acf-field-number.php:
|
1405 |
#: includes/fields/class-acf-field-radio.php:276
|
|
|
1406 |
#: includes/fields/class-acf-field-select.php:377
|
1407 |
-
#: includes/fields/class-acf-field-text.php:
|
1408 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1409 |
#: includes/fields/class-acf-field-true_false.php:135
|
1410 |
-
#: includes/fields/class-acf-field-url.php:
|
1411 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
1412 |
msgid "Default Value"
|
1413 |
msgstr "Valor por omissão"
|
1414 |
|
1415 |
-
#: includes/fields/class-acf-field-
|
1416 |
-
#: includes/fields/class-acf-field-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
#: includes/fields/class-acf-field-
|
1421 |
-
#: includes/fields/class-acf-field-
|
1422 |
-
|
1423 |
-
|
|
|
|
|
1424 |
|
|
|
1425 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1426 |
#: includes/fields/class-acf-field-radio.php:292
|
1427 |
msgid "Horizontal"
|
1428 |
msgstr "Horizontal"
|
1429 |
|
1430 |
-
#: includes/fields/class-acf-field-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
msgid "Prepend an extra checkbox to toggle all choices"
|
1436 |
-
msgstr ""
|
1437 |
-
"Preceder com caixa de selecção adicional para seleccionar todas as opções"
|
1438 |
|
|
|
1439 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1440 |
-
#: includes/fields/class-acf-field-file.php:
|
1441 |
-
#: includes/fields/class-acf-field-image.php:
|
1442 |
#: includes/fields/class-acf-field-link.php:166
|
1443 |
#: includes/fields/class-acf-field-radio.php:299
|
1444 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1445 |
msgid "Return Value"
|
1446 |
msgstr "Valor devolvido"
|
1447 |
|
|
|
1448 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1449 |
-
#: includes/fields/class-acf-field-file.php:
|
1450 |
-
#: includes/fields/class-acf-field-image.php:
|
1451 |
#: includes/fields/class-acf-field-link.php:167
|
1452 |
#: includes/fields/class-acf-field-radio.php:300
|
1453 |
msgid "Specify the returned value on front end"
|
1454 |
msgstr "Especifica o valor devolvido na frente do site."
|
1455 |
|
|
|
1456 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1457 |
#: includes/fields/class-acf-field-radio.php:305
|
1458 |
#: includes/fields/class-acf-field-select.php:431
|
1459 |
msgid "Value"
|
1460 |
msgstr "Valor"
|
1461 |
|
|
|
1462 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1463 |
#: includes/fields/class-acf-field-radio.php:307
|
1464 |
#: includes/fields/class-acf-field-select.php:433
|
1465 |
msgid "Both (Array)"
|
1466 |
msgstr "Ambos (Array)"
|
1467 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1468 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1469 |
msgid "Color Picker"
|
1470 |
msgstr "Selecção de cor"
|
@@ -1646,59 +1687,53 @@ msgstr "P"
|
|
1646 |
msgid "Email"
|
1647 |
msgstr "Email"
|
1648 |
|
1649 |
-
#: includes/fields/class-acf-field-email.php:
|
1650 |
-
#: includes/fields/class-acf-field-number.php:
|
1651 |
-
#: includes/fields/class-acf-field-radio.php:277
|
1652 |
-
#: includes/fields/class-acf-field-text.php:116
|
1653 |
-
#: includes/fields/class-acf-field-textarea.php:99
|
1654 |
-
#: includes/fields/class-acf-field-url.php:97
|
1655 |
-
#: includes/fields/class-acf-field-wysiwyg.php:422
|
1656 |
-
msgid "Appears when creating a new post"
|
1657 |
-
msgstr "Aparece quando é criado um novo conteúdo."
|
1658 |
-
|
1659 |
-
#: includes/fields/class-acf-field-email.php:123
|
1660 |
-
#: includes/fields/class-acf-field-number.php:132
|
1661 |
#: includes/fields/class-acf-field-password.php:71
|
1662 |
-
#: includes/fields/class-acf-field-text.php:
|
1663 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1664 |
-
#: includes/fields/class-acf-field-url.php:
|
1665 |
msgid "Placeholder Text"
|
1666 |
msgstr "Texto predefinido"
|
1667 |
|
1668 |
-
#: includes/fields/class-acf-field-email.php:
|
1669 |
-
#: includes/fields/class-acf-field-number.php:
|
1670 |
#: includes/fields/class-acf-field-password.php:72
|
1671 |
-
#: includes/fields/class-acf-field-text.php:
|
1672 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1673 |
-
#: includes/fields/class-acf-field-url.php:
|
1674 |
msgid "Appears within the input"
|
1675 |
msgstr "Aparece dentro do campo"
|
1676 |
|
1677 |
-
#: includes/fields/class-acf-field-email.php:
|
1678 |
-
#: includes/fields/class-acf-field-number.php:
|
1679 |
#: includes/fields/class-acf-field-password.php:80
|
1680 |
-
#: includes/fields/class-acf-field-
|
|
|
1681 |
msgid "Prepend"
|
1682 |
msgstr "Preceder"
|
1683 |
|
1684 |
-
#: includes/fields/class-acf-field-email.php:
|
1685 |
-
#: includes/fields/class-acf-field-number.php:
|
1686 |
#: includes/fields/class-acf-field-password.php:81
|
1687 |
-
#: includes/fields/class-acf-field-
|
|
|
1688 |
msgid "Appears before the input"
|
1689 |
msgstr "Aparece antes do campo"
|
1690 |
|
1691 |
-
#: includes/fields/class-acf-field-email.php:
|
1692 |
-
#: includes/fields/class-acf-field-number.php:
|
1693 |
#: includes/fields/class-acf-field-password.php:89
|
1694 |
-
#: includes/fields/class-acf-field-
|
|
|
1695 |
msgid "Append"
|
1696 |
msgstr "Suceder"
|
1697 |
|
1698 |
-
#: includes/fields/class-acf-field-email.php:
|
1699 |
-
#: includes/fields/class-acf-field-number.php:
|
1700 |
#: includes/fields/class-acf-field-password.php:90
|
1701 |
-
#: includes/fields/class-acf-field-
|
|
|
1702 |
msgid "Appears after the input"
|
1703 |
msgstr "Aparece depois do campo"
|
1704 |
|
@@ -1720,92 +1755,100 @@ msgstr "Actualizar ficheiro"
|
|
1720 |
msgid "Uploaded to this post"
|
1721 |
msgstr "Carregados neste artigo"
|
1722 |
|
1723 |
-
#: includes/fields/class-acf-field-file.php:
|
1724 |
msgid "File name"
|
1725 |
msgstr "Nome do ficheiro"
|
1726 |
|
1727 |
-
#: includes/fields/class-acf-field-file.php:
|
1728 |
-
#: includes/fields/class-acf-field-file.php:
|
1729 |
-
#: includes/fields/class-acf-field-file.php:
|
1730 |
-
#: includes/fields/class-acf-field-image.php:
|
1731 |
-
#: includes/fields/class-acf-field-image.php:
|
1732 |
#: pro/fields/class-acf-field-gallery.php:690
|
1733 |
#: pro/fields/class-acf-field-gallery.php:719
|
1734 |
msgid "File size"
|
1735 |
msgstr "Tamanho do ficheiro"
|
1736 |
|
1737 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1738 |
msgid "Add File"
|
1739 |
msgstr "Adicionar ficheiro"
|
1740 |
|
1741 |
-
#: includes/fields/class-acf-field-file.php:
|
1742 |
msgid "File Array"
|
1743 |
msgstr "Array do ficheiro"
|
1744 |
|
1745 |
-
#: includes/fields/class-acf-field-file.php:
|
1746 |
msgid "File URL"
|
1747 |
msgstr "URL do ficheiro"
|
1748 |
|
1749 |
-
#: includes/fields/class-acf-field-file.php:
|
1750 |
msgid "File ID"
|
1751 |
msgstr "ID do ficheiro"
|
1752 |
|
1753 |
-
#: includes/fields/class-acf-field-file.php:
|
1754 |
-
#: includes/fields/class-acf-field-image.php:
|
1755 |
#: pro/fields/class-acf-field-gallery.php:655
|
1756 |
msgid "Library"
|
1757 |
msgstr "Biblioteca"
|
1758 |
|
1759 |
-
#: includes/fields/class-acf-field-file.php:
|
1760 |
-
#: includes/fields/class-acf-field-image.php:
|
1761 |
#: pro/fields/class-acf-field-gallery.php:656
|
1762 |
msgid "Limit the media library choice"
|
1763 |
msgstr "Limita a escolha da biblioteca de media."
|
1764 |
|
1765 |
-
#: includes/fields/class-acf-field-file.php:
|
1766 |
-
#: includes/fields/class-acf-field-image.php:
|
1767 |
#: includes/locations/class-acf-location-attachment.php:101
|
1768 |
#: includes/locations/class-acf-location-comment.php:79
|
1769 |
#: includes/locations/class-acf-location-nav-menu.php:102
|
1770 |
#: includes/locations/class-acf-location-taxonomy.php:79
|
1771 |
#: includes/locations/class-acf-location-user-form.php:87
|
1772 |
-
#: includes/locations/class-acf-location-user-role.php:
|
1773 |
#: includes/locations/class-acf-location-widget.php:83
|
1774 |
#: pro/fields/class-acf-field-gallery.php:661
|
1775 |
msgid "All"
|
1776 |
msgstr "Todos"
|
1777 |
|
1778 |
-
#: includes/fields/class-acf-field-file.php:
|
1779 |
-
#: includes/fields/class-acf-field-image.php:
|
1780 |
#: pro/fields/class-acf-field-gallery.php:662
|
1781 |
msgid "Uploaded to post"
|
1782 |
msgstr "Carregados no artigo"
|
1783 |
|
1784 |
-
#: includes/fields/class-acf-field-file.php:
|
1785 |
-
#: includes/fields/class-acf-field-image.php:
|
1786 |
#: pro/fields/class-acf-field-gallery.php:669
|
1787 |
msgid "Minimum"
|
1788 |
msgstr "Mínimo"
|
1789 |
|
1790 |
-
#: includes/fields/class-acf-field-file.php:
|
1791 |
-
#: includes/fields/class-acf-field-file.php:
|
1792 |
msgid "Restrict which files can be uploaded"
|
1793 |
msgstr "Restringe que ficheiros podem ser carregados."
|
1794 |
|
1795 |
-
#: includes/fields/class-acf-field-file.php:
|
1796 |
-
#: includes/fields/class-acf-field-image.php:
|
1797 |
#: pro/fields/class-acf-field-gallery.php:698
|
1798 |
msgid "Maximum"
|
1799 |
msgstr "Máximo"
|
1800 |
|
1801 |
-
#: includes/fields/class-acf-field-file.php:
|
1802 |
-
#: includes/fields/class-acf-field-image.php:
|
1803 |
#: pro/fields/class-acf-field-gallery.php:727
|
1804 |
msgid "Allowed file types"
|
1805 |
msgstr "Tipos de ficheiros permitidos"
|
1806 |
|
1807 |
-
#: includes/fields/class-acf-field-file.php:
|
1808 |
-
#: includes/fields/class-acf-field-image.php:
|
1809 |
#: pro/fields/class-acf-field-gallery.php:728
|
1810 |
msgid "Comma separated list. Leave blank for all types"
|
1811 |
msgstr ""
|
@@ -1823,46 +1866,46 @@ msgstr "A obter localização"
|
|
1823 |
msgid "Sorry, this browser does not support geolocation"
|
1824 |
msgstr "Desculpe, este navegador não suporta geolocalização."
|
1825 |
|
1826 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1827 |
msgid "Clear location"
|
1828 |
msgstr "Limpar localização"
|
1829 |
|
1830 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1831 |
msgid "Find current location"
|
1832 |
msgstr "Encontrar a localização actual"
|
1833 |
|
1834 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1835 |
msgid "Search for address..."
|
1836 |
msgstr "Pesquisar endereço..."
|
1837 |
|
1838 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1839 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1840 |
msgid "Center"
|
1841 |
msgstr "Centrar"
|
1842 |
|
1843 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1844 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1845 |
msgid "Center the initial map"
|
1846 |
msgstr "Centrar o mapa inicial"
|
1847 |
|
1848 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1849 |
msgid "Zoom"
|
1850 |
msgstr "Zoom"
|
1851 |
|
1852 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1853 |
msgid "Set the initial zoom level"
|
1854 |
msgstr "Definir o nível de zoom inicial"
|
1855 |
|
1856 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1857 |
-
#: includes/fields/class-acf-field-image.php:
|
1858 |
-
#: includes/fields/class-acf-field-image.php:
|
1859 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1860 |
#: pro/fields/class-acf-field-gallery.php:681
|
1861 |
#: pro/fields/class-acf-field-gallery.php:710
|
1862 |
msgid "Height"
|
1863 |
msgstr "Altura"
|
1864 |
|
1865 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1866 |
msgid "Customise the map height"
|
1867 |
msgstr "Personalizar a altura do mapa"
|
1868 |
|
@@ -1870,34 +1913,34 @@ msgstr "Personalizar a altura do mapa"
|
|
1870 |
msgid "Group"
|
1871 |
msgstr "Grupo"
|
1872 |
|
1873 |
-
#: includes/fields/class-acf-field-group.php:
|
1874 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1875 |
msgid "Sub Fields"
|
1876 |
msgstr "Subcampos"
|
1877 |
|
1878 |
-
#: includes/fields/class-acf-field-group.php:
|
1879 |
-
#: pro/fields/class-acf-field-clone.php:
|
1880 |
msgid "Specify the style used to render the selected fields"
|
1881 |
msgstr "Especifica o estilo usado para mostrar os campos seleccionados."
|
1882 |
|
1883 |
-
#: includes/fields/class-acf-field-group.php:
|
1884 |
-
#: pro/fields/class-acf-field-clone.php:
|
1885 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1886 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1887 |
msgid "Block"
|
1888 |
msgstr "Bloco"
|
1889 |
|
1890 |
-
#: includes/fields/class-acf-field-group.php:
|
1891 |
-
#: pro/fields/class-acf-field-clone.php:
|
1892 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1893 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1894 |
msgid "Table"
|
1895 |
msgstr "Tabela"
|
1896 |
|
1897 |
-
#: includes/fields/class-acf-field-group.php:
|
1898 |
-
#: pro/fields/class-acf-field-clone.php:
|
1899 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1900 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1901 |
msgid "Row"
|
1902 |
msgstr "Linha"
|
1903 |
|
@@ -1923,51 +1966,44 @@ msgstr "Actualizar imagem"
|
|
1923 |
msgid "All images"
|
1924 |
msgstr "Todas as imagens"
|
1925 |
|
1926 |
-
#: includes/fields/class-acf-field-image.php:
|
1927 |
-
#: includes/fields/class-acf-field-link.php:140 includes/input.php:268
|
1928 |
-
#: pro/fields/class-acf-field-gallery.php:343
|
1929 |
-
#: pro/fields/class-acf-field-gallery.php:531
|
1930 |
-
msgid "Remove"
|
1931 |
-
msgstr "Remover"
|
1932 |
-
|
1933 |
-
#: includes/fields/class-acf-field-image.php:143
|
1934 |
msgid "No image selected"
|
1935 |
msgstr "Nenhuma imagem seleccionada"
|
1936 |
|
1937 |
-
#: includes/fields/class-acf-field-image.php:
|
1938 |
msgid "Add Image"
|
1939 |
msgstr "Adicionar imagem"
|
1940 |
|
1941 |
-
#: includes/fields/class-acf-field-image.php:
|
1942 |
msgid "Image Array"
|
1943 |
msgstr "Array da imagem"
|
1944 |
|
1945 |
-
#: includes/fields/class-acf-field-image.php:
|
1946 |
msgid "Image URL"
|
1947 |
msgstr "URL da imagem"
|
1948 |
|
1949 |
-
#: includes/fields/class-acf-field-image.php:
|
1950 |
msgid "Image ID"
|
1951 |
msgstr "ID da imagem"
|
1952 |
|
1953 |
-
#: includes/fields/class-acf-field-image.php:
|
1954 |
msgid "Preview Size"
|
1955 |
msgstr "Tamanho da pré-visualização"
|
1956 |
|
1957 |
-
#: includes/fields/class-acf-field-image.php:
|
1958 |
msgid "Shown when entering data"
|
1959 |
msgstr "Mostrado ao introduzir dados"
|
1960 |
|
1961 |
-
#: includes/fields/class-acf-field-image.php:
|
1962 |
-
#: includes/fields/class-acf-field-image.php:
|
1963 |
#: pro/fields/class-acf-field-gallery.php:670
|
1964 |
#: pro/fields/class-acf-field-gallery.php:699
|
1965 |
msgid "Restrict which images can be uploaded"
|
1966 |
msgstr "Restringir que imagens que ser carregadas"
|
1967 |
|
1968 |
-
#: includes/fields/class-acf-field-image.php:
|
1969 |
-
#: includes/fields/class-acf-field-image.php:
|
1970 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1971 |
#: pro/fields/class-acf-field-gallery.php:673
|
1972 |
#: pro/fields/class-acf-field-gallery.php:702
|
1973 |
msgid "Width"
|
@@ -2000,27 +2036,27 @@ msgid "Message"
|
|
2000 |
msgstr "Mensagem"
|
2001 |
|
2002 |
#: includes/fields/class-acf-field-message.php:110
|
2003 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2004 |
msgid "New Lines"
|
2005 |
msgstr "Novas linhas"
|
2006 |
|
2007 |
#: includes/fields/class-acf-field-message.php:111
|
2008 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2009 |
msgid "Controls how new lines are rendered"
|
2010 |
msgstr "Controla como serão visualizadas novas linhas."
|
2011 |
|
2012 |
#: includes/fields/class-acf-field-message.php:115
|
2013 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2014 |
msgid "Automatically add paragraphs"
|
2015 |
msgstr "Adicionar parágrafos automaticamente"
|
2016 |
|
2017 |
#: includes/fields/class-acf-field-message.php:116
|
2018 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2019 |
msgid "Automatically add <br>"
|
2020 |
msgstr "Adicionar <br> automaticamente"
|
2021 |
|
2022 |
#: includes/fields/class-acf-field-message.php:117
|
2023 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2024 |
msgid "No Formatting"
|
2025 |
msgstr "Sem formatação"
|
2026 |
|
@@ -2037,28 +2073,31 @@ msgstr ""
|
|
2037 |
msgid "Number"
|
2038 |
msgstr "Número"
|
2039 |
|
2040 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2041 |
msgid "Minimum Value"
|
2042 |
msgstr "Valor mínimo"
|
2043 |
|
2044 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2045 |
msgid "Maximum Value"
|
2046 |
msgstr "Valor máximo"
|
2047 |
|
2048 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
2049 |
msgid "Step Size"
|
2050 |
msgstr "Valor dos passos"
|
2051 |
|
2052 |
-
#: includes/fields/class-acf-field-number.php:
|
2053 |
msgid "Value must be a number"
|
2054 |
msgstr "O valor deve ser um número"
|
2055 |
|
2056 |
-
#: includes/fields/class-acf-field-number.php:
|
2057 |
#, php-format
|
2058 |
msgid "Value must be equal to or higher than %d"
|
2059 |
msgstr "O valor deve ser igual ou superior a %d"
|
2060 |
|
2061 |
-
#: includes/fields/class-acf-field-number.php:
|
2062 |
#, php-format
|
2063 |
msgid "Value must be equal to or lower than %d"
|
2064 |
msgstr "O valor deve ser igual ou inferior a %d"
|
@@ -2067,21 +2106,21 @@ msgstr "O valor deve ser igual ou inferior a %d"
|
|
2067 |
msgid "oEmbed"
|
2068 |
msgstr "oEmbed"
|
2069 |
|
2070 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2071 |
msgid "Enter URL"
|
2072 |
msgstr "Introduza o URL"
|
2073 |
|
2074 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2075 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2076 |
msgid "Error."
|
2077 |
msgstr "Erro."
|
2078 |
|
2079 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2080 |
msgid "No embed found for the given URL."
|
2081 |
msgstr "Nenhuma incorporação encontrada para o URL introduzido."
|
2082 |
|
2083 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2084 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2085 |
msgid "Embed Size"
|
2086 |
msgstr "Tamanho da incorporação"
|
2087 |
|
@@ -2113,15 +2152,6 @@ msgstr "Filtrar por taxonomia"
|
|
2113 |
msgid "All taxonomies"
|
2114 |
msgstr "Todas as taxonomias"
|
2115 |
|
2116 |
-
#: includes/fields/class-acf-field-page_link.php:513
|
2117 |
-
#: includes/fields/class-acf-field-post_object.php:412
|
2118 |
-
#: includes/fields/class-acf-field-radio.php:244
|
2119 |
-
#: includes/fields/class-acf-field-select.php:386
|
2120 |
-
#: includes/fields/class-acf-field-taxonomy.php:786
|
2121 |
-
#: includes/fields/class-acf-field-user.php:408
|
2122 |
-
msgid "Allow Null?"
|
2123 |
-
msgstr "Permitir nulo?"
|
2124 |
-
|
2125 |
#: includes/fields/class-acf-field-page_link.php:523
|
2126 |
msgid "Allow Archives URLs"
|
2127 |
msgstr "Permitir URL do arquivo"
|
@@ -2169,6 +2199,10 @@ msgstr "Guardar outros"
|
|
2169 |
msgid "Save 'other' values to the field's choices"
|
2170 |
msgstr "Guardar 'outros' valores nas opções do campo"
|
2171 |
|
|
|
|
|
|
|
|
|
2172 |
#: includes/fields/class-acf-field-relationship.php:25
|
2173 |
msgid "Relationship"
|
2174 |
msgstr "Relação"
|
@@ -2212,7 +2246,7 @@ msgstr "Tipo de conteúdo"
|
|
2212 |
|
2213 |
#: includes/fields/class-acf-field-relationship.php:658
|
2214 |
#: includes/fields/class-acf-field-taxonomy.php:28
|
2215 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2216 |
msgid "Taxonomy"
|
2217 |
msgstr "Taxonomia"
|
2218 |
|
@@ -2241,7 +2275,7 @@ msgstr[0] "%s requer pelo menos %s selecção"
|
|
2241 |
msgstr[1] "%s requer pelo menos %s selecções"
|
2242 |
|
2243 |
#: includes/fields/class-acf-field-select.php:25
|
2244 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2245 |
msgctxt "noun"
|
2246 |
msgid "Select"
|
2247 |
msgstr "Selecção"
|
@@ -2376,93 +2410,92 @@ msgid "Use this field as an end-point and start a new group of tabs"
|
|
2376 |
msgstr ""
|
2377 |
"Utilize este campo para interromper e começar um novo grupo de separadores."
|
2378 |
|
2379 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
msgstr "Não"
|
2385 |
|
2386 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2387 |
msgid "None"
|
2388 |
msgstr "Nenhuma"
|
2389 |
|
2390 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2391 |
msgid "Select the taxonomy to be displayed"
|
2392 |
msgstr "Seleccione a taxonomia que será mostrada."
|
2393 |
|
2394 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2395 |
msgid "Appearance"
|
2396 |
msgstr "Aparência"
|
2397 |
|
2398 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2399 |
msgid "Select the appearance of this field"
|
2400 |
msgstr "Seleccione a aparência deste campo."
|
2401 |
|
2402 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2403 |
msgid "Multiple Values"
|
2404 |
msgstr "Valores múltiplos"
|
2405 |
|
2406 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2407 |
msgid "Multi Select"
|
2408 |
msgstr "Selecção múltipla"
|
2409 |
|
2410 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2411 |
msgid "Single Value"
|
2412 |
msgstr "Valor único"
|
2413 |
|
2414 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2415 |
msgid "Radio Buttons"
|
2416 |
msgstr "Botões de opções"
|
2417 |
|
2418 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2419 |
msgid "Create Terms"
|
2420 |
msgstr "Criar termos"
|
2421 |
|
2422 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2423 |
msgid "Allow new terms to be created whilst editing"
|
2424 |
msgstr "Permite a criação de novos termos durante a edição."
|
2425 |
|
2426 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2427 |
msgid "Save Terms"
|
2428 |
msgstr "Guardar termos"
|
2429 |
|
2430 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2431 |
msgid "Connect selected terms to the post"
|
2432 |
msgstr "Liga os termos seleccionados ao conteúdo."
|
2433 |
|
2434 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2435 |
msgid "Load Terms"
|
2436 |
msgstr "Carregar termos"
|
2437 |
|
2438 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2439 |
msgid "Load value from posts terms"
|
2440 |
msgstr "Carrega os termos a partir dos termos dos conteúdos."
|
2441 |
|
2442 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2443 |
msgid "Term Object"
|
2444 |
msgstr "Termo"
|
2445 |
|
2446 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2447 |
msgid "Term ID"
|
2448 |
msgstr "ID do termo"
|
2449 |
|
2450 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2451 |
#, php-format
|
2452 |
msgid "User unable to add new %s"
|
2453 |
msgstr "O utilizador não pôde adicionar novo(a) %s"
|
2454 |
|
2455 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2456 |
#, php-format
|
2457 |
msgid "%s already exists"
|
2458 |
msgstr "%s já existe"
|
2459 |
|
2460 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2461 |
#, php-format
|
2462 |
msgid "%s added"
|
2463 |
msgstr "%s adicionado(a)"
|
2464 |
|
2465 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2466 |
msgid "Add"
|
2467 |
msgstr "Adicionar"
|
2468 |
|
@@ -2470,13 +2503,13 @@ msgstr "Adicionar"
|
|
2470 |
msgid "Text"
|
2471 |
msgstr "Texto"
|
2472 |
|
2473 |
-
#: includes/fields/class-acf-field-text.php:
|
2474 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2475 |
msgid "Character Limit"
|
2476 |
msgstr "Limite de caracteres"
|
2477 |
|
2478 |
-
#: includes/fields/class-acf-field-text.php:
|
2479 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2480 |
msgid "Leave blank for no limit"
|
2481 |
msgstr "Deixe em branco para nenhum limite"
|
2482 |
|
@@ -2484,11 +2517,11 @@ msgstr "Deixe em branco para nenhum limite"
|
|
2484 |
msgid "Text Area"
|
2485 |
msgstr "Área de texto"
|
2486 |
|
2487 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2488 |
msgid "Rows"
|
2489 |
msgstr "Linhas"
|
2490 |
|
2491 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2492 |
msgid "Sets the textarea height"
|
2493 |
msgstr "Define a altura da área de texto"
|
2494 |
|
@@ -2501,11 +2534,17 @@ msgid "True / False"
|
|
2501 |
msgstr "Verdadeiro / Falso"
|
2502 |
|
2503 |
#: includes/fields/class-acf-field-true_false.php:79
|
2504 |
-
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:
|
2505 |
-
#: pro/admin/views/html-settings-updates.php:
|
2506 |
msgid "Yes"
|
2507 |
msgstr "Sim"
|
2508 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2509 |
#: includes/fields/class-acf-field-true_false.php:127
|
2510 |
msgid "Displays text alongside the checkbox"
|
2511 |
msgstr "Texto mostrado ao lado da caixa de selecção"
|
@@ -2530,7 +2569,7 @@ msgstr "Texto mostrado quando inactivo"
|
|
2530 |
msgid "Url"
|
2531 |
msgstr "URL"
|
2532 |
|
2533 |
-
#: includes/fields/class-acf-field-url.php:
|
2534 |
msgid "Value must be a valid URL"
|
2535 |
msgstr "O valor deve ser um URL válido"
|
2536 |
|
@@ -2550,53 +2589,53 @@ msgstr "Todos os papéis de utilizador"
|
|
2550 |
msgid "Wysiwyg Editor"
|
2551 |
msgstr "Editor wysiwyg"
|
2552 |
|
2553 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2554 |
msgid "Visual"
|
2555 |
msgstr "Visual"
|
2556 |
|
2557 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2558 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2559 |
msgid "Text"
|
2560 |
msgstr "HTML"
|
2561 |
|
2562 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2563 |
msgid "Click to initialize TinyMCE"
|
2564 |
msgstr "Clique para inicializar o TinyMCE"
|
2565 |
|
2566 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2567 |
msgid "Tabs"
|
2568 |
msgstr "Separadores"
|
2569 |
|
2570 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2571 |
msgid "Visual & Text"
|
2572 |
msgstr "Visual e HTML"
|
2573 |
|
2574 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2575 |
msgid "Visual Only"
|
2576 |
msgstr "Apenas visual"
|
2577 |
|
2578 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2579 |
msgid "Text Only"
|
2580 |
msgstr "Apenas HTML"
|
2581 |
|
2582 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2583 |
msgid "Toolbar"
|
2584 |
msgstr "Barra de ferramentas"
|
2585 |
|
2586 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2587 |
msgid "Show Media Upload Buttons?"
|
2588 |
msgstr "Mostrar botões de carregar multimédia?"
|
2589 |
|
2590 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2591 |
msgid "Delay initialization?"
|
2592 |
msgstr "Atrasar a inicialização?"
|
2593 |
|
2594 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2595 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2596 |
msgstr "O TinyMCE não será inicializado até que clique no campo"
|
2597 |
|
2598 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2599 |
-
#: pro/admin/admin-options-page.php:
|
2600 |
msgid "Edit field group"
|
2601 |
msgstr "Editar grupo de campos"
|
2602 |
|
@@ -2647,7 +2686,11 @@ msgstr "%d campos requerem a sua atenção."
|
|
2647 |
msgid "Restricted"
|
2648 |
msgstr "Restrito"
|
2649 |
|
2650 |
-
#: includes/input.php:
|
|
|
|
|
|
|
|
|
2651 |
msgid "Cancel"
|
2652 |
msgstr "Cancelar"
|
2653 |
|
@@ -2725,7 +2768,7 @@ msgid "Page Template"
|
|
2725 |
msgstr "Modelo de página"
|
2726 |
|
2727 |
#: includes/locations/class-acf-location-page-template.php:98
|
2728 |
-
#: includes/locations/class-acf-location-post-template.php:
|
2729 |
msgid "Default Template"
|
2730 |
msgstr "Modelo por omissão"
|
2731 |
|
@@ -2769,7 +2812,7 @@ msgstr "Estado do conteúdo"
|
|
2769 |
msgid "Post Taxonomy"
|
2770 |
msgstr "Taxonomia do artigo"
|
2771 |
|
2772 |
-
#: includes/locations/class-acf-location-post-template.php:
|
2773 |
msgid "Post Template"
|
2774 |
msgstr "Modelo de conteúdo"
|
2775 |
|
@@ -2817,11 +2860,11 @@ msgstr "O valor %s é obrigatório"
|
|
2817 |
msgid "Advanced Custom Fields PRO"
|
2818 |
msgstr "Advanced Custom Fields PRO"
|
2819 |
|
2820 |
-
#: pro/admin/admin-options-page.php:
|
2821 |
msgid "Publish"
|
2822 |
msgstr "Publicado"
|
2823 |
|
2824 |
-
#: pro/admin/admin-options-page.php:
|
2825 |
#, php-format
|
2826 |
msgid ""
|
2827 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
@@ -2835,23 +2878,23 @@ msgid "<b>Error</b>. Could not connect to update server"
|
|
2835 |
msgstr "<b>Erro</b>. Não foi possível ligar ao servidor de actualização."
|
2836 |
|
2837 |
#: pro/admin/admin-settings-updates.php:162
|
2838 |
-
#: pro/admin/views/html-settings-updates.php:
|
2839 |
msgid "Updates"
|
2840 |
msgstr "Actualizações"
|
2841 |
|
2842 |
-
#: pro/admin/views/html-settings-updates.php:
|
2843 |
msgid "Deactivate License"
|
2844 |
msgstr "Desactivar licença"
|
2845 |
|
2846 |
-
#: pro/admin/views/html-settings-updates.php:
|
2847 |
msgid "Activate License"
|
2848 |
msgstr "Activar licença"
|
2849 |
|
2850 |
-
#: pro/admin/views/html-settings-updates.php:
|
2851 |
msgid "License Information"
|
2852 |
msgstr "Informações da licença"
|
2853 |
|
2854 |
-
#: pro/admin/views/html-settings-updates.php:
|
2855 |
#, php-format
|
2856 |
msgid ""
|
2857 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -2862,41 +2905,41 @@ msgstr ""
|
|
2862 |
"licença. Se não tiver uma chave de licença, por favor veja os <a href=\"%s\" "
|
2863 |
"target=\"_blank\">detalhes e preços</a>."
|
2864 |
|
2865 |
-
#: pro/admin/views/html-settings-updates.php:
|
2866 |
msgid "License Key"
|
2867 |
msgstr "Chave de licença"
|
2868 |
|
2869 |
-
#: pro/admin/views/html-settings-updates.php:
|
2870 |
msgid "Update Information"
|
2871 |
msgstr "Informações de actualização"
|
2872 |
|
2873 |
-
#: pro/admin/views/html-settings-updates.php:
|
2874 |
msgid "Current Version"
|
2875 |
msgstr "Versão actual"
|
2876 |
|
2877 |
-
#: pro/admin/views/html-settings-updates.php:
|
2878 |
msgid "Latest Version"
|
2879 |
msgstr "Última versão"
|
2880 |
|
2881 |
-
#: pro/admin/views/html-settings-updates.php:
|
2882 |
msgid "Update Available"
|
2883 |
msgstr "Actualização disponível"
|
2884 |
|
2885 |
-
#: pro/admin/views/html-settings-updates.php:
|
2886 |
msgid "Update Plugin"
|
2887 |
msgstr "Actualizar plugin"
|
2888 |
|
2889 |
-
#: pro/admin/views/html-settings-updates.php:
|
2890 |
msgid "Please enter your license key above to unlock updates"
|
2891 |
msgstr ""
|
2892 |
"Por favor introduza a sua chave de licença acima para desbloquear as "
|
2893 |
"actualizações"
|
2894 |
|
2895 |
-
#: pro/admin/views/html-settings-updates.php:
|
2896 |
msgid "Check Again"
|
2897 |
msgstr "Verificar de novo"
|
2898 |
|
2899 |
-
#: pro/admin/views/html-settings-updates.php:
|
2900 |
msgid "Upgrade Notice"
|
2901 |
msgstr "Aviso de actualização"
|
2902 |
|
@@ -2905,60 +2948,60 @@ msgctxt "noun"
|
|
2905 |
msgid "Clone"
|
2906 |
msgstr "Clone"
|
2907 |
|
2908 |
-
#: pro/fields/class-acf-field-clone.php:
|
2909 |
msgid "Select one or more fields you wish to clone"
|
2910 |
msgstr "Seleccione um ou mais campos que deseje clonar."
|
2911 |
|
2912 |
-
#: pro/fields/class-acf-field-clone.php:
|
2913 |
msgid "Display"
|
2914 |
msgstr "Visualização"
|
2915 |
|
2916 |
-
#: pro/fields/class-acf-field-clone.php:
|
2917 |
msgid "Specify the style used to render the clone field"
|
2918 |
msgstr "Especifica o estilo usado para mostrar o campo de clone."
|
2919 |
|
2920 |
-
#: pro/fields/class-acf-field-clone.php:
|
2921 |
msgid "Group (displays selected fields in a group within this field)"
|
2922 |
msgstr "Grupo (mostra os campos seleccionados num grupo dentro deste campo)"
|
2923 |
|
2924 |
-
#: pro/fields/class-acf-field-clone.php:
|
2925 |
msgid "Seamless (replaces this field with selected fields)"
|
2926 |
msgstr "Simples (substitui este campo pelos campos seleccionados)"
|
2927 |
|
2928 |
-
#: pro/fields/class-acf-field-clone.php:
|
2929 |
#, php-format
|
2930 |
msgid "Labels will be displayed as %s"
|
2931 |
msgstr "As legendas serão mostradas com %s"
|
2932 |
|
2933 |
-
#: pro/fields/class-acf-field-clone.php:
|
2934 |
msgid "Prefix Field Labels"
|
2935 |
msgstr "Prefixo nas legendas dos campos"
|
2936 |
|
2937 |
-
#: pro/fields/class-acf-field-clone.php:
|
2938 |
#, php-format
|
2939 |
msgid "Values will be saved as %s"
|
2940 |
msgstr "Os valores serão guardados como %s"
|
2941 |
|
2942 |
-
#: pro/fields/class-acf-field-clone.php:
|
2943 |
msgid "Prefix Field Names"
|
2944 |
msgstr "Prefixos nos nomes dos campos"
|
2945 |
|
2946 |
-
#: pro/fields/class-acf-field-clone.php:
|
2947 |
msgid "Unknown field"
|
2948 |
msgstr "Campo desconhecido"
|
2949 |
|
2950 |
-
#: pro/fields/class-acf-field-clone.php:
|
2951 |
msgid "Unknown field group"
|
2952 |
msgstr "Grupo de campos desconhecido"
|
2953 |
|
2954 |
-
#: pro/fields/class-acf-field-clone.php:
|
2955 |
#, php-format
|
2956 |
msgid "All fields from %s field group"
|
2957 |
msgstr "Todos os campos do grupo de campos %s"
|
2958 |
|
2959 |
#: pro/fields/class-acf-field-flexible-content.php:31
|
2960 |
#: pro/fields/class-acf-field-repeater.php:174
|
2961 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2962 |
msgid "Add Row"
|
2963 |
msgstr "Adicionar linha"
|
2964 |
|
@@ -3007,57 +3050,57 @@ msgstr "O conteúdo flexível requer pelo menos 1 layout"
|
|
3007 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3008 |
msgstr "Clique no botão \"%s\" abaixo para começar a criar o seu layout"
|
3009 |
|
3010 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3011 |
msgid "Add layout"
|
3012 |
msgstr "Adicionar layout"
|
3013 |
|
3014 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3015 |
msgid "Remove layout"
|
3016 |
msgstr "Remover layout"
|
3017 |
|
3018 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3019 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3020 |
msgid "Click to toggle"
|
3021 |
msgstr "Clique para alternar"
|
3022 |
|
3023 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3024 |
msgid "Reorder Layout"
|
3025 |
msgstr "Reordenar layout"
|
3026 |
|
3027 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3028 |
msgid "Reorder"
|
3029 |
msgstr "Reordenar"
|
3030 |
|
3031 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3032 |
msgid "Delete Layout"
|
3033 |
msgstr "Eliminar layout"
|
3034 |
|
3035 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3036 |
msgid "Duplicate Layout"
|
3037 |
msgstr "Duplicar layout"
|
3038 |
|
3039 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3040 |
msgid "Add New Layout"
|
3041 |
msgstr "Adicionar novo layout"
|
3042 |
|
3043 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3044 |
msgid "Min"
|
3045 |
msgstr "Mín"
|
3046 |
|
3047 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3048 |
msgid "Max"
|
3049 |
msgstr "Máx"
|
3050 |
|
3051 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3052 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3053 |
msgid "Button Label"
|
3054 |
msgstr "Legenda do botão"
|
3055 |
|
3056 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3057 |
msgid "Minimum Layouts"
|
3058 |
msgstr "Mínimo de layouts"
|
3059 |
|
3060 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
3061 |
msgid "Maximum Layouts"
|
3062 |
msgstr "Máximo de layouts"
|
3063 |
|
@@ -3141,27 +3184,27 @@ msgstr "Mínimo de linhas alcançado ({min} linhas)"
|
|
3141 |
msgid "Maximum rows reached ({max} rows)"
|
3142 |
msgstr "Máximo de linhas alcançado ({max} linhas)"
|
3143 |
|
3144 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3145 |
msgid "Add row"
|
3146 |
msgstr "Adicionar linha"
|
3147 |
|
3148 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3149 |
msgid "Remove row"
|
3150 |
msgstr "Remover linha"
|
3151 |
|
3152 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3153 |
msgid "Collapsed"
|
3154 |
msgstr "Minimizado"
|
3155 |
|
3156 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3157 |
msgid "Select a sub field to show when row is collapsed"
|
3158 |
msgstr "Seleccione o subcampo a mostrar ao minimizar a linha."
|
3159 |
|
3160 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3161 |
msgid "Minimum Rows"
|
3162 |
msgstr "Mínimo de linhas"
|
3163 |
|
3164 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3165 |
msgid "Maximum Rows"
|
3166 |
msgstr "Máximo de linhas"
|
3167 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields PRO\n"
|
6 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
7 |
+
"POT-Creation-Date: 2017-10-04 08:32+0100\n"
|
8 |
+
"PO-Revision-Date: 2017-10-04 08:32+0100\n"
|
9 |
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
10 |
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
11 |
"Language: pt_PT\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 2.0.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
19 |
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
26 |
|
27 |
+
#: acf.php:67
|
28 |
msgid "Advanced Custom Fields"
|
29 |
msgstr "Advanced Custom Fields"
|
30 |
|
31 |
+
#: acf.php:369 includes/admin/admin.php:117
|
32 |
msgid "Field Groups"
|
33 |
msgstr "Grupos de campos"
|
34 |
|
35 |
+
#: acf.php:370
|
36 |
msgid "Field Group"
|
37 |
msgstr "Grupo de campos"
|
38 |
|
39 |
+
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
40 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
41 |
msgid "Add New"
|
42 |
msgstr "Adicionar novo"
|
43 |
|
44 |
+
#: acf.php:372
|
45 |
msgid "Add New Field Group"
|
46 |
msgstr "Adicionar novo grupo de campos"
|
47 |
|
48 |
+
#: acf.php:373
|
49 |
msgid "Edit Field Group"
|
50 |
msgstr "Editar grupo de campos"
|
51 |
|
52 |
+
#: acf.php:374
|
53 |
msgid "New Field Group"
|
54 |
msgstr "Novo grupo de campos"
|
55 |
|
56 |
+
#: acf.php:375
|
57 |
msgid "View Field Group"
|
58 |
msgstr "Ver grupo de campos"
|
59 |
|
60 |
+
#: acf.php:376
|
61 |
msgid "Search Field Groups"
|
62 |
msgstr "Pesquisar grupos de campos"
|
63 |
|
64 |
+
#: acf.php:377
|
65 |
msgid "No Field Groups found"
|
66 |
msgstr "Nenhum grupo de campos encontrado"
|
67 |
|
68 |
+
#: acf.php:378
|
69 |
msgid "No Field Groups found in Trash"
|
70 |
msgstr "Nenhum grupo de campos encontrado no lixo"
|
71 |
|
72 |
+
#: acf.php:401 includes/admin/admin-field-group.php:182
|
73 |
#: includes/admin/admin-field-group.php:275
|
74 |
#: includes/admin/admin-field-groups.php:510
|
75 |
+
#: pro/fields/class-acf-field-clone.php:807
|
76 |
msgid "Fields"
|
77 |
msgstr "Campos"
|
78 |
|
79 |
+
#: acf.php:402
|
80 |
msgid "Field"
|
81 |
msgstr "Campo"
|
82 |
|
83 |
+
#: acf.php:404
|
84 |
msgid "Add New Field"
|
85 |
msgstr "Adicionar novo campo"
|
86 |
|
87 |
+
#: acf.php:405
|
88 |
msgid "Edit Field"
|
89 |
msgstr "Editar campo"
|
90 |
|
91 |
+
#: acf.php:406 includes/admin/views/field-group-fields.php:41
|
92 |
#: includes/admin/views/settings-info.php:105
|
93 |
msgid "New Field"
|
94 |
msgstr "Novo campo"
|
95 |
|
96 |
+
#: acf.php:407
|
97 |
msgid "View Field"
|
98 |
msgstr "Ver campo"
|
99 |
|
100 |
+
#: acf.php:408
|
101 |
msgid "Search Fields"
|
102 |
msgstr "Pesquisar campos"
|
103 |
|
104 |
+
#: acf.php:409
|
105 |
msgid "No Fields found"
|
106 |
msgstr "Nenhum campo encontrado"
|
107 |
|
108 |
+
#: acf.php:410
|
109 |
msgid "No Fields found in Trash"
|
110 |
msgstr "Nenhum campo encontrado no lixo"
|
111 |
|
112 |
+
#: acf.php:449 includes/admin/admin-field-group.php:390
|
113 |
#: includes/admin/admin-field-groups.php:567
|
114 |
msgid "Inactive"
|
115 |
msgstr "Inactivo"
|
116 |
|
117 |
+
#: acf.php:454
|
118 |
#, php-format
|
119 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
120 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
176 |
msgstr "O título do grupo de campos é obrigatório"
|
177 |
|
178 |
#: includes/admin/admin-field-group.php:273
|
179 |
+
#: includes/api/api-field-group.php:751
|
180 |
msgid "copy"
|
181 |
msgstr "cópia"
|
182 |
|
311 |
|
312 |
#: includes/admin/admin-field-groups.php:609
|
313 |
#: includes/admin/settings-info.php:76
|
314 |
+
#: pro/admin/views/html-settings-updates.php:107
|
315 |
msgid "Changelog"
|
316 |
msgstr "Registo de alterações"
|
317 |
|
352 |
#: includes/admin/admin-field-groups.php:668
|
353 |
#: includes/admin/admin-field-groups.php:684
|
354 |
#: includes/admin/views/field-group-field.php:49
|
355 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
356 |
msgid "Duplicate"
|
357 |
msgstr "Duplicar"
|
358 |
|
359 |
#: includes/admin/admin-field-groups.php:701
|
360 |
+
#: includes/fields/class-acf-field-google-map.php:112
|
361 |
#: includes/fields/class-acf-field-relationship.php:656
|
362 |
msgid "Search"
|
363 |
msgstr "Pesquisa"
|
434 |
msgstr "Nenhum grupo de campos seleccionado"
|
435 |
|
436 |
#: includes/admin/settings-tools.php:184
|
437 |
+
#: includes/fields/class-acf-field-file.php:155
|
438 |
msgid "No file selected"
|
439 |
msgstr "Nenhum ficheiro seleccionado"
|
440 |
|
466 |
msgstr "Mostrar este campo se"
|
467 |
|
468 |
#: includes/admin/views/field-group-field-conditional-logic.php:103
|
469 |
+
#: includes/locations.php:247
|
470 |
msgid "is equal to"
|
471 |
msgstr "é igual a"
|
472 |
|
473 |
#: includes/admin/views/field-group-field-conditional-logic.php:104
|
474 |
+
#: includes/locations.php:248
|
475 |
msgid "is not equal to"
|
476 |
msgstr "não é igual a"
|
477 |
|
486 |
msgstr "Adicionar grupo de regras"
|
487 |
|
488 |
#: includes/admin/views/field-group-field.php:41
|
489 |
+
#: pro/fields/class-acf-field-flexible-content.php:403
|
490 |
+
#: pro/fields/class-acf-field-repeater.php:296
|
491 |
msgid "Drag to reorder"
|
492 |
msgstr "Arraste para reordenar"
|
493 |
|
497 |
msgstr "Editar campo"
|
498 |
|
499 |
#: includes/admin/views/field-group-field.php:48
|
500 |
+
#: includes/fields/class-acf-field-file.php:137
|
501 |
+
#: includes/fields/class-acf-field-image.php:122
|
502 |
#: includes/fields/class-acf-field-link.php:139
|
503 |
#: pro/fields/class-acf-field-gallery.php:342
|
504 |
msgid "Edit"
|
521 |
msgstr "Eliminar campo"
|
522 |
|
523 |
#: includes/admin/views/field-group-field.php:51
|
524 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
525 |
msgid "Delete"
|
526 |
msgstr "Eliminar"
|
527 |
|
533 |
msgid "This is the name which will appear on the EDIT page"
|
534 |
msgstr "Este é o nome que irá aparecer na página EDITAR."
|
535 |
|
536 |
+
#: includes/admin/views/field-group-field.php:77
|
537 |
msgid "Field Name"
|
538 |
msgstr "Nome do campo"
|
539 |
|
540 |
+
#: includes/admin/views/field-group-field.php:78
|
541 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
542 |
msgstr ""
|
543 |
"Uma única palavra, sem espaços. São permitidos underscores (_) e traços (-)."
|
544 |
|
545 |
+
#: includes/admin/views/field-group-field.php:87
|
546 |
msgid "Field Type"
|
547 |
msgstr "Tipo de campo"
|
548 |
|
549 |
+
#: includes/admin/views/field-group-field.php:98
|
550 |
#: includes/fields/class-acf-field-tab.php:88
|
551 |
msgid "Instructions"
|
552 |
msgstr "Instruções"
|
553 |
|
554 |
+
#: includes/admin/views/field-group-field.php:99
|
555 |
msgid "Instructions for authors. Shown when submitting data"
|
556 |
msgstr "Instruções para os autores. São mostradas quando submeter dados."
|
557 |
|
558 |
+
#: includes/admin/views/field-group-field.php:108
|
559 |
msgid "Required?"
|
560 |
msgstr "Obrigatório?"
|
561 |
|
562 |
+
#: includes/admin/views/field-group-field.php:131
|
563 |
msgid "Wrapper Attributes"
|
564 |
msgstr "Atributos do wrapper"
|
565 |
|
566 |
+
#: includes/admin/views/field-group-field.php:137
|
567 |
msgid "width"
|
568 |
msgstr "largura"
|
569 |
|
570 |
+
#: includes/admin/views/field-group-field.php:152
|
571 |
msgid "class"
|
572 |
msgstr "classe"
|
573 |
|
574 |
+
#: includes/admin/views/field-group-field.php:165
|
575 |
msgid "id"
|
576 |
msgstr "id"
|
577 |
|
578 |
+
#: includes/admin/views/field-group-field.php:177
|
579 |
msgid "Close Field"
|
580 |
msgstr "Fechar campo"
|
581 |
|
584 |
msgstr "Ordem"
|
585 |
|
586 |
#: includes/admin/views/field-group-fields.php:5
|
587 |
+
#: includes/fields/class-acf-field-button-group.php:198
|
588 |
#: includes/fields/class-acf-field-checkbox.php:415
|
589 |
#: includes/fields/class-acf-field-radio.php:306
|
590 |
#: includes/fields/class-acf-field-select.php:432
|
591 |
+
#: pro/fields/class-acf-field-flexible-content.php:582
|
592 |
msgid "Label"
|
593 |
msgstr "Legenda"
|
594 |
|
595 |
#: includes/admin/views/field-group-fields.php:6
|
596 |
+
#: includes/fields/class-acf-field-taxonomy.php:964
|
597 |
+
#: pro/fields/class-acf-field-flexible-content.php:595
|
598 |
msgid "Name"
|
599 |
msgstr "Nome"
|
600 |
|
1262 |
msgstr "Tamanho original"
|
1263 |
|
1264 |
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1265 |
+
#: pro/fields/class-acf-field-clone.php:992
|
1266 |
msgid "(no title)"
|
1267 |
msgstr "(sem título)"
|
1268 |
|
1269 |
#: includes/api/api-helpers.php:1868
|
1270 |
#: includes/fields/class-acf-field-page_link.php:269
|
1271 |
#: includes/fields/class-acf-field-post_object.php:268
|
1272 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
1273 |
msgid "Parent"
|
1274 |
msgstr "Superior"
|
1275 |
|
1328 |
msgid "jQuery"
|
1329 |
msgstr "jQuery"
|
1330 |
|
1331 |
+
#: includes/fields.php:149 includes/fields/class-acf-field-button-group.php:177
|
1332 |
+
#: includes/fields/class-acf-field-checkbox.php:384
|
1333 |
+
#: includes/fields/class-acf-field-group.php:474
|
1334 |
#: includes/fields/class-acf-field-radio.php:285
|
1335 |
+
#: pro/fields/class-acf-field-clone.php:839
|
1336 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
1337 |
+
#: pro/fields/class-acf-field-flexible-content.php:601
|
1338 |
+
#: pro/fields/class-acf-field-repeater.php:450
|
1339 |
msgid "Layout"
|
1340 |
msgstr "Layout"
|
1341 |
|
1347 |
msgid "Unknown"
|
1348 |
msgstr "Desconhecido"
|
1349 |
|
1350 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
1351 |
+
msgid "Button Group"
|
1352 |
+
msgstr "Grupo de botões"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1353 |
|
1354 |
+
#: includes/fields/class-acf-field-button-group.php:149
|
1355 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1356 |
#: includes/fields/class-acf-field-radio.php:235
|
1357 |
#: includes/fields/class-acf-field-select.php:368
|
1358 |
msgid "Choices"
|
1359 |
msgstr "Opções"
|
1360 |
|
1361 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1362 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1363 |
#: includes/fields/class-acf-field-radio.php:236
|
1364 |
#: includes/fields/class-acf-field-select.php:369
|
1365 |
msgid "Enter each choice on a new line."
|
1366 |
msgstr "Introduza cada opção numa linha separada."
|
1367 |
|
1368 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1369 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1370 |
#: includes/fields/class-acf-field-radio.php:236
|
1371 |
#: includes/fields/class-acf-field-select.php:369
|
1373 |
msgstr ""
|
1374 |
"Para maior controlo, pode especificar tanto os valores como as legendas:"
|
1375 |
|
1376 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1377 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1378 |
#: includes/fields/class-acf-field-radio.php:236
|
1379 |
#: includes/fields/class-acf-field-select.php:369
|
1380 |
msgid "red : Red"
|
1381 |
msgstr "vermelho : Vermelho"
|
1382 |
|
1383 |
+
#: includes/fields/class-acf-field-button-group.php:158
|
1384 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
1385 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
1386 |
+
#: includes/fields/class-acf-field-radio.php:244
|
1387 |
+
#: includes/fields/class-acf-field-select.php:386
|
1388 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
1389 |
+
#: includes/fields/class-acf-field-user.php:408
|
1390 |
+
msgid "Allow Null?"
|
1391 |
+
msgstr "Permitir nulo?"
|
|
|
|
|
|
|
|
|
|
|
|
|
1392 |
|
1393 |
+
#: includes/fields/class-acf-field-button-group.php:168
|
1394 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1395 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1396 |
+
#: includes/fields/class-acf-field-email.php:118
|
1397 |
+
#: includes/fields/class-acf-field-number.php:127
|
1398 |
#: includes/fields/class-acf-field-radio.php:276
|
1399 |
+
#: includes/fields/class-acf-field-range.php:148
|
1400 |
#: includes/fields/class-acf-field-select.php:377
|
1401 |
+
#: includes/fields/class-acf-field-text.php:119
|
1402 |
+
#: includes/fields/class-acf-field-textarea.php:102
|
1403 |
#: includes/fields/class-acf-field-true_false.php:135
|
1404 |
+
#: includes/fields/class-acf-field-url.php:100
|
1405 |
+
#: includes/fields/class-acf-field-wysiwyg.php:410
|
1406 |
msgid "Default Value"
|
1407 |
msgstr "Valor por omissão"
|
1408 |
|
1409 |
+
#: includes/fields/class-acf-field-button-group.php:169
|
1410 |
+
#: includes/fields/class-acf-field-email.php:119
|
1411 |
+
#: includes/fields/class-acf-field-number.php:128
|
1412 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1413 |
+
#: includes/fields/class-acf-field-range.php:149
|
1414 |
+
#: includes/fields/class-acf-field-text.php:120
|
1415 |
+
#: includes/fields/class-acf-field-textarea.php:103
|
1416 |
+
#: includes/fields/class-acf-field-url.php:101
|
1417 |
+
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1418 |
+
msgid "Appears when creating a new post"
|
1419 |
+
msgstr "Aparece quando é criado um novo conteúdo."
|
1420 |
|
1421 |
+
#: includes/fields/class-acf-field-button-group.php:183
|
1422 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1423 |
#: includes/fields/class-acf-field-radio.php:292
|
1424 |
msgid "Horizontal"
|
1425 |
msgstr "Horizontal"
|
1426 |
|
1427 |
+
#: includes/fields/class-acf-field-button-group.php:184
|
1428 |
+
#: includes/fields/class-acf-field-checkbox.php:390
|
1429 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1430 |
+
msgid "Vertical"
|
1431 |
+
msgstr "Vertical"
|
|
|
|
|
|
|
1432 |
|
1433 |
+
#: includes/fields/class-acf-field-button-group.php:191
|
1434 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1435 |
+
#: includes/fields/class-acf-field-file.php:200
|
1436 |
+
#: includes/fields/class-acf-field-image.php:188
|
1437 |
#: includes/fields/class-acf-field-link.php:166
|
1438 |
#: includes/fields/class-acf-field-radio.php:299
|
1439 |
+
#: includes/fields/class-acf-field-taxonomy.php:833
|
1440 |
msgid "Return Value"
|
1441 |
msgstr "Valor devolvido"
|
1442 |
|
1443 |
+
#: includes/fields/class-acf-field-button-group.php:192
|
1444 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1445 |
+
#: includes/fields/class-acf-field-file.php:201
|
1446 |
+
#: includes/fields/class-acf-field-image.php:189
|
1447 |
#: includes/fields/class-acf-field-link.php:167
|
1448 |
#: includes/fields/class-acf-field-radio.php:300
|
1449 |
msgid "Specify the returned value on front end"
|
1450 |
msgstr "Especifica o valor devolvido na frente do site."
|
1451 |
|
1452 |
+
#: includes/fields/class-acf-field-button-group.php:197
|
1453 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1454 |
#: includes/fields/class-acf-field-radio.php:305
|
1455 |
#: includes/fields/class-acf-field-select.php:431
|
1456 |
msgid "Value"
|
1457 |
msgstr "Valor"
|
1458 |
|
1459 |
+
#: includes/fields/class-acf-field-button-group.php:199
|
1460 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1461 |
#: includes/fields/class-acf-field-radio.php:307
|
1462 |
#: includes/fields/class-acf-field-select.php:433
|
1463 |
msgid "Both (Array)"
|
1464 |
msgstr "Ambos (Array)"
|
1465 |
|
1466 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1467 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1468 |
+
msgid "Checkbox"
|
1469 |
+
msgstr "Caixa de selecção"
|
1470 |
+
|
1471 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1472 |
+
msgid "Toggle All"
|
1473 |
+
msgstr "Seleccionar tudo"
|
1474 |
+
|
1475 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1476 |
+
msgid "Add new choice"
|
1477 |
+
msgstr "Adicionar nova opção"
|
1478 |
+
|
1479 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1480 |
+
msgid "Allow Custom"
|
1481 |
+
msgstr "Permitir personalização"
|
1482 |
+
|
1483 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
1484 |
+
msgid "Allow 'custom' values to be added"
|
1485 |
+
msgstr "Permite adicionar valores personalizados"
|
1486 |
+
|
1487 |
+
#: includes/fields/class-acf-field-checkbox.php:364
|
1488 |
+
msgid "Save Custom"
|
1489 |
+
msgstr "Guardar personalização"
|
1490 |
+
|
1491 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1492 |
+
msgid "Save 'custom' values to the field's choices"
|
1493 |
+
msgstr "Guarda valores personalizados nas opções do campo"
|
1494 |
+
|
1495 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1496 |
+
#: includes/fields/class-acf-field-select.php:378
|
1497 |
+
msgid "Enter each default value on a new line"
|
1498 |
+
msgstr "Introduza cada valor por omissão numa linha separada"
|
1499 |
+
|
1500 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1501 |
+
msgid "Toggle"
|
1502 |
+
msgstr "Selecção"
|
1503 |
+
|
1504 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
1505 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
1506 |
+
msgstr ""
|
1507 |
+
"Preceder com caixa de selecção adicional para seleccionar todas as opções"
|
1508 |
+
|
1509 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1510 |
msgid "Color Picker"
|
1511 |
msgstr "Selecção de cor"
|
1687 |
msgid "Email"
|
1688 |
msgstr "Email"
|
1689 |
|
1690 |
+
#: includes/fields/class-acf-field-email.php:127
|
1691 |
+
#: includes/fields/class-acf-field-number.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1692 |
#: includes/fields/class-acf-field-password.php:71
|
1693 |
+
#: includes/fields/class-acf-field-text.php:128
|
1694 |
+
#: includes/fields/class-acf-field-textarea.php:111
|
1695 |
+
#: includes/fields/class-acf-field-url.php:109
|
1696 |
msgid "Placeholder Text"
|
1697 |
msgstr "Texto predefinido"
|
1698 |
|
1699 |
+
#: includes/fields/class-acf-field-email.php:128
|
1700 |
+
#: includes/fields/class-acf-field-number.php:137
|
1701 |
#: includes/fields/class-acf-field-password.php:72
|
1702 |
+
#: includes/fields/class-acf-field-text.php:129
|
1703 |
+
#: includes/fields/class-acf-field-textarea.php:112
|
1704 |
+
#: includes/fields/class-acf-field-url.php:110
|
1705 |
msgid "Appears within the input"
|
1706 |
msgstr "Aparece dentro do campo"
|
1707 |
|
1708 |
+
#: includes/fields/class-acf-field-email.php:136
|
1709 |
+
#: includes/fields/class-acf-field-number.php:145
|
1710 |
#: includes/fields/class-acf-field-password.php:80
|
1711 |
+
#: includes/fields/class-acf-field-range.php:187
|
1712 |
+
#: includes/fields/class-acf-field-text.php:137
|
1713 |
msgid "Prepend"
|
1714 |
msgstr "Preceder"
|
1715 |
|
1716 |
+
#: includes/fields/class-acf-field-email.php:137
|
1717 |
+
#: includes/fields/class-acf-field-number.php:146
|
1718 |
#: includes/fields/class-acf-field-password.php:81
|
1719 |
+
#: includes/fields/class-acf-field-range.php:188
|
1720 |
+
#: includes/fields/class-acf-field-text.php:138
|
1721 |
msgid "Appears before the input"
|
1722 |
msgstr "Aparece antes do campo"
|
1723 |
|
1724 |
+
#: includes/fields/class-acf-field-email.php:145
|
1725 |
+
#: includes/fields/class-acf-field-number.php:154
|
1726 |
#: includes/fields/class-acf-field-password.php:89
|
1727 |
+
#: includes/fields/class-acf-field-range.php:196
|
1728 |
+
#: includes/fields/class-acf-field-text.php:146
|
1729 |
msgid "Append"
|
1730 |
msgstr "Suceder"
|
1731 |
|
1732 |
+
#: includes/fields/class-acf-field-email.php:146
|
1733 |
+
#: includes/fields/class-acf-field-number.php:155
|
1734 |
#: includes/fields/class-acf-field-password.php:90
|
1735 |
+
#: includes/fields/class-acf-field-range.php:197
|
1736 |
+
#: includes/fields/class-acf-field-text.php:147
|
1737 |
msgid "Appears after the input"
|
1738 |
msgstr "Aparece depois do campo"
|
1739 |
|
1755 |
msgid "Uploaded to this post"
|
1756 |
msgstr "Carregados neste artigo"
|
1757 |
|
1758 |
+
#: includes/fields/class-acf-field-file.php:126
|
1759 |
msgid "File name"
|
1760 |
msgstr "Nome do ficheiro"
|
1761 |
|
1762 |
+
#: includes/fields/class-acf-field-file.php:130
|
1763 |
+
#: includes/fields/class-acf-field-file.php:233
|
1764 |
+
#: includes/fields/class-acf-field-file.php:244
|
1765 |
+
#: includes/fields/class-acf-field-image.php:248
|
1766 |
+
#: includes/fields/class-acf-field-image.php:277
|
1767 |
#: pro/fields/class-acf-field-gallery.php:690
|
1768 |
#: pro/fields/class-acf-field-gallery.php:719
|
1769 |
msgid "File size"
|
1770 |
msgstr "Tamanho do ficheiro"
|
1771 |
|
1772 |
+
#: includes/fields/class-acf-field-file.php:139
|
1773 |
+
#: includes/fields/class-acf-field-image.php:124
|
1774 |
+
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
1775 |
+
#: pro/fields/class-acf-field-gallery.php:343
|
1776 |
+
#: pro/fields/class-acf-field-gallery.php:531
|
1777 |
+
msgid "Remove"
|
1778 |
+
msgstr "Remover"
|
1779 |
+
|
1780 |
+
#: includes/fields/class-acf-field-file.php:155
|
1781 |
msgid "Add File"
|
1782 |
msgstr "Adicionar ficheiro"
|
1783 |
|
1784 |
+
#: includes/fields/class-acf-field-file.php:206
|
1785 |
msgid "File Array"
|
1786 |
msgstr "Array do ficheiro"
|
1787 |
|
1788 |
+
#: includes/fields/class-acf-field-file.php:207
|
1789 |
msgid "File URL"
|
1790 |
msgstr "URL do ficheiro"
|
1791 |
|
1792 |
+
#: includes/fields/class-acf-field-file.php:208
|
1793 |
msgid "File ID"
|
1794 |
msgstr "ID do ficheiro"
|
1795 |
|
1796 |
+
#: includes/fields/class-acf-field-file.php:215
|
1797 |
+
#: includes/fields/class-acf-field-image.php:213
|
1798 |
#: pro/fields/class-acf-field-gallery.php:655
|
1799 |
msgid "Library"
|
1800 |
msgstr "Biblioteca"
|
1801 |
|
1802 |
+
#: includes/fields/class-acf-field-file.php:216
|
1803 |
+
#: includes/fields/class-acf-field-image.php:214
|
1804 |
#: pro/fields/class-acf-field-gallery.php:656
|
1805 |
msgid "Limit the media library choice"
|
1806 |
msgstr "Limita a escolha da biblioteca de media."
|
1807 |
|
1808 |
+
#: includes/fields/class-acf-field-file.php:221
|
1809 |
+
#: includes/fields/class-acf-field-image.php:219
|
1810 |
#: includes/locations/class-acf-location-attachment.php:101
|
1811 |
#: includes/locations/class-acf-location-comment.php:79
|
1812 |
#: includes/locations/class-acf-location-nav-menu.php:102
|
1813 |
#: includes/locations/class-acf-location-taxonomy.php:79
|
1814 |
#: includes/locations/class-acf-location-user-form.php:87
|
1815 |
+
#: includes/locations/class-acf-location-user-role.php:111
|
1816 |
#: includes/locations/class-acf-location-widget.php:83
|
1817 |
#: pro/fields/class-acf-field-gallery.php:661
|
1818 |
msgid "All"
|
1819 |
msgstr "Todos"
|
1820 |
|
1821 |
+
#: includes/fields/class-acf-field-file.php:222
|
1822 |
+
#: includes/fields/class-acf-field-image.php:220
|
1823 |
#: pro/fields/class-acf-field-gallery.php:662
|
1824 |
msgid "Uploaded to post"
|
1825 |
msgstr "Carregados no artigo"
|
1826 |
|
1827 |
+
#: includes/fields/class-acf-field-file.php:229
|
1828 |
+
#: includes/fields/class-acf-field-image.php:227
|
1829 |
#: pro/fields/class-acf-field-gallery.php:669
|
1830 |
msgid "Minimum"
|
1831 |
msgstr "Mínimo"
|
1832 |
|
1833 |
+
#: includes/fields/class-acf-field-file.php:230
|
1834 |
+
#: includes/fields/class-acf-field-file.php:241
|
1835 |
msgid "Restrict which files can be uploaded"
|
1836 |
msgstr "Restringe que ficheiros podem ser carregados."
|
1837 |
|
1838 |
+
#: includes/fields/class-acf-field-file.php:240
|
1839 |
+
#: includes/fields/class-acf-field-image.php:256
|
1840 |
#: pro/fields/class-acf-field-gallery.php:698
|
1841 |
msgid "Maximum"
|
1842 |
msgstr "Máximo"
|
1843 |
|
1844 |
+
#: includes/fields/class-acf-field-file.php:251
|
1845 |
+
#: includes/fields/class-acf-field-image.php:285
|
1846 |
#: pro/fields/class-acf-field-gallery.php:727
|
1847 |
msgid "Allowed file types"
|
1848 |
msgstr "Tipos de ficheiros permitidos"
|
1849 |
|
1850 |
+
#: includes/fields/class-acf-field-file.php:252
|
1851 |
+
#: includes/fields/class-acf-field-image.php:286
|
1852 |
#: pro/fields/class-acf-field-gallery.php:728
|
1853 |
msgid "Comma separated list. Leave blank for all types"
|
1854 |
msgstr ""
|
1866 |
msgid "Sorry, this browser does not support geolocation"
|
1867 |
msgstr "Desculpe, este navegador não suporta geolocalização."
|
1868 |
|
1869 |
+
#: includes/fields/class-acf-field-google-map.php:113
|
1870 |
msgid "Clear location"
|
1871 |
msgstr "Limpar localização"
|
1872 |
|
1873 |
+
#: includes/fields/class-acf-field-google-map.php:114
|
1874 |
msgid "Find current location"
|
1875 |
msgstr "Encontrar a localização actual"
|
1876 |
|
1877 |
+
#: includes/fields/class-acf-field-google-map.php:117
|
1878 |
msgid "Search for address..."
|
1879 |
msgstr "Pesquisar endereço..."
|
1880 |
|
1881 |
+
#: includes/fields/class-acf-field-google-map.php:147
|
1882 |
+
#: includes/fields/class-acf-field-google-map.php:158
|
1883 |
msgid "Center"
|
1884 |
msgstr "Centrar"
|
1885 |
|
1886 |
+
#: includes/fields/class-acf-field-google-map.php:148
|
1887 |
+
#: includes/fields/class-acf-field-google-map.php:159
|
1888 |
msgid "Center the initial map"
|
1889 |
msgstr "Centrar o mapa inicial"
|
1890 |
|
1891 |
+
#: includes/fields/class-acf-field-google-map.php:170
|
1892 |
msgid "Zoom"
|
1893 |
msgstr "Zoom"
|
1894 |
|
1895 |
+
#: includes/fields/class-acf-field-google-map.php:171
|
1896 |
msgid "Set the initial zoom level"
|
1897 |
msgstr "Definir o nível de zoom inicial"
|
1898 |
|
1899 |
+
#: includes/fields/class-acf-field-google-map.php:180
|
1900 |
+
#: includes/fields/class-acf-field-image.php:239
|
1901 |
+
#: includes/fields/class-acf-field-image.php:268
|
1902 |
+
#: includes/fields/class-acf-field-oembed.php:281
|
1903 |
#: pro/fields/class-acf-field-gallery.php:681
|
1904 |
#: pro/fields/class-acf-field-gallery.php:710
|
1905 |
msgid "Height"
|
1906 |
msgstr "Altura"
|
1907 |
|
1908 |
+
#: includes/fields/class-acf-field-google-map.php:181
|
1909 |
msgid "Customise the map height"
|
1910 |
msgstr "Personalizar a altura do mapa"
|
1911 |
|
1913 |
msgid "Group"
|
1914 |
msgstr "Grupo"
|
1915 |
|
1916 |
+
#: includes/fields/class-acf-field-group.php:459
|
1917 |
+
#: pro/fields/class-acf-field-repeater.php:389
|
1918 |
msgid "Sub Fields"
|
1919 |
msgstr "Subcampos"
|
1920 |
|
1921 |
+
#: includes/fields/class-acf-field-group.php:475
|
1922 |
+
#: pro/fields/class-acf-field-clone.php:840
|
1923 |
msgid "Specify the style used to render the selected fields"
|
1924 |
msgstr "Especifica o estilo usado para mostrar os campos seleccionados."
|
1925 |
|
1926 |
+
#: includes/fields/class-acf-field-group.php:480
|
1927 |
+
#: pro/fields/class-acf-field-clone.php:845
|
1928 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
1929 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
1930 |
msgid "Block"
|
1931 |
msgstr "Bloco"
|
1932 |
|
1933 |
+
#: includes/fields/class-acf-field-group.php:481
|
1934 |
+
#: pro/fields/class-acf-field-clone.php:846
|
1935 |
+
#: pro/fields/class-acf-field-flexible-content.php:611
|
1936 |
+
#: pro/fields/class-acf-field-repeater.php:457
|
1937 |
msgid "Table"
|
1938 |
msgstr "Tabela"
|
1939 |
|
1940 |
+
#: includes/fields/class-acf-field-group.php:482
|
1941 |
+
#: pro/fields/class-acf-field-clone.php:847
|
1942 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
1943 |
+
#: pro/fields/class-acf-field-repeater.php:459
|
1944 |
msgid "Row"
|
1945 |
msgstr "Linha"
|
1946 |
|
1966 |
msgid "All images"
|
1967 |
msgstr "Todas as imagens"
|
1968 |
|
1969 |
+
#: includes/fields/class-acf-field-image.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1970 |
msgid "No image selected"
|
1971 |
msgstr "Nenhuma imagem seleccionada"
|
1972 |
|
1973 |
+
#: includes/fields/class-acf-field-image.php:140
|
1974 |
msgid "Add Image"
|
1975 |
msgstr "Adicionar imagem"
|
1976 |
|
1977 |
+
#: includes/fields/class-acf-field-image.php:194
|
1978 |
msgid "Image Array"
|
1979 |
msgstr "Array da imagem"
|
1980 |
|
1981 |
+
#: includes/fields/class-acf-field-image.php:195
|
1982 |
msgid "Image URL"
|
1983 |
msgstr "URL da imagem"
|
1984 |
|
1985 |
+
#: includes/fields/class-acf-field-image.php:196
|
1986 |
msgid "Image ID"
|
1987 |
msgstr "ID da imagem"
|
1988 |
|
1989 |
+
#: includes/fields/class-acf-field-image.php:203
|
1990 |
msgid "Preview Size"
|
1991 |
msgstr "Tamanho da pré-visualização"
|
1992 |
|
1993 |
+
#: includes/fields/class-acf-field-image.php:204
|
1994 |
msgid "Shown when entering data"
|
1995 |
msgstr "Mostrado ao introduzir dados"
|
1996 |
|
1997 |
+
#: includes/fields/class-acf-field-image.php:228
|
1998 |
+
#: includes/fields/class-acf-field-image.php:257
|
1999 |
#: pro/fields/class-acf-field-gallery.php:670
|
2000 |
#: pro/fields/class-acf-field-gallery.php:699
|
2001 |
msgid "Restrict which images can be uploaded"
|
2002 |
msgstr "Restringir que imagens que ser carregadas"
|
2003 |
|
2004 |
+
#: includes/fields/class-acf-field-image.php:231
|
2005 |
+
#: includes/fields/class-acf-field-image.php:260
|
2006 |
+
#: includes/fields/class-acf-field-oembed.php:270
|
2007 |
#: pro/fields/class-acf-field-gallery.php:673
|
2008 |
#: pro/fields/class-acf-field-gallery.php:702
|
2009 |
msgid "Width"
|
2036 |
msgstr "Mensagem"
|
2037 |
|
2038 |
#: includes/fields/class-acf-field-message.php:110
|
2039 |
+
#: includes/fields/class-acf-field-textarea.php:139
|
2040 |
msgid "New Lines"
|
2041 |
msgstr "Novas linhas"
|
2042 |
|
2043 |
#: includes/fields/class-acf-field-message.php:111
|
2044 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
2045 |
msgid "Controls how new lines are rendered"
|
2046 |
msgstr "Controla como serão visualizadas novas linhas."
|
2047 |
|
2048 |
#: includes/fields/class-acf-field-message.php:115
|
2049 |
+
#: includes/fields/class-acf-field-textarea.php:144
|
2050 |
msgid "Automatically add paragraphs"
|
2051 |
msgstr "Adicionar parágrafos automaticamente"
|
2052 |
|
2053 |
#: includes/fields/class-acf-field-message.php:116
|
2054 |
+
#: includes/fields/class-acf-field-textarea.php:145
|
2055 |
msgid "Automatically add <br>"
|
2056 |
msgstr "Adicionar <br> automaticamente"
|
2057 |
|
2058 |
#: includes/fields/class-acf-field-message.php:117
|
2059 |
+
#: includes/fields/class-acf-field-textarea.php:146
|
2060 |
msgid "No Formatting"
|
2061 |
msgstr "Sem formatação"
|
2062 |
|
2073 |
msgid "Number"
|
2074 |
msgstr "Número"
|
2075 |
|
2076 |
+
#: includes/fields/class-acf-field-number.php:163
|
2077 |
+
#: includes/fields/class-acf-field-range.php:157
|
2078 |
msgid "Minimum Value"
|
2079 |
msgstr "Valor mínimo"
|
2080 |
|
2081 |
+
#: includes/fields/class-acf-field-number.php:172
|
2082 |
+
#: includes/fields/class-acf-field-range.php:167
|
2083 |
msgid "Maximum Value"
|
2084 |
msgstr "Valor máximo"
|
2085 |
|
2086 |
+
#: includes/fields/class-acf-field-number.php:181
|
2087 |
+
#: includes/fields/class-acf-field-range.php:177
|
2088 |
msgid "Step Size"
|
2089 |
msgstr "Valor dos passos"
|
2090 |
|
2091 |
+
#: includes/fields/class-acf-field-number.php:219
|
2092 |
msgid "Value must be a number"
|
2093 |
msgstr "O valor deve ser um número"
|
2094 |
|
2095 |
+
#: includes/fields/class-acf-field-number.php:237
|
2096 |
#, php-format
|
2097 |
msgid "Value must be equal to or higher than %d"
|
2098 |
msgstr "O valor deve ser igual ou superior a %d"
|
2099 |
|
2100 |
+
#: includes/fields/class-acf-field-number.php:245
|
2101 |
#, php-format
|
2102 |
msgid "Value must be equal to or lower than %d"
|
2103 |
msgstr "O valor deve ser igual ou inferior a %d"
|
2106 |
msgid "oEmbed"
|
2107 |
msgstr "oEmbed"
|
2108 |
|
2109 |
+
#: includes/fields/class-acf-field-oembed.php:219
|
2110 |
msgid "Enter URL"
|
2111 |
msgstr "Introduza o URL"
|
2112 |
|
2113 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2114 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2115 |
msgid "Error."
|
2116 |
msgstr "Erro."
|
2117 |
|
2118 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2119 |
msgid "No embed found for the given URL."
|
2120 |
msgstr "Nenhuma incorporação encontrada para o URL introduzido."
|
2121 |
|
2122 |
+
#: includes/fields/class-acf-field-oembed.php:267
|
2123 |
+
#: includes/fields/class-acf-field-oembed.php:278
|
2124 |
msgid "Embed Size"
|
2125 |
msgstr "Tamanho da incorporação"
|
2126 |
|
2152 |
msgid "All taxonomies"
|
2153 |
msgstr "Todas as taxonomias"
|
2154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2155 |
#: includes/fields/class-acf-field-page_link.php:523
|
2156 |
msgid "Allow Archives URLs"
|
2157 |
msgstr "Permitir URL do arquivo"
|
2199 |
msgid "Save 'other' values to the field's choices"
|
2200 |
msgstr "Guardar 'outros' valores nas opções do campo"
|
2201 |
|
2202 |
+
#: includes/fields/class-acf-field-range.php:25
|
2203 |
+
msgid "Range"
|
2204 |
+
msgstr "Intervalo"
|
2205 |
+
|
2206 |
#: includes/fields/class-acf-field-relationship.php:25
|
2207 |
msgid "Relationship"
|
2208 |
msgstr "Relação"
|
2246 |
|
2247 |
#: includes/fields/class-acf-field-relationship.php:658
|
2248 |
#: includes/fields/class-acf-field-taxonomy.php:28
|
2249 |
+
#: includes/fields/class-acf-field-taxonomy.php:763
|
2250 |
msgid "Taxonomy"
|
2251 |
msgstr "Taxonomia"
|
2252 |
|
2275 |
msgstr[1] "%s requer pelo menos %s selecções"
|
2276 |
|
2277 |
#: includes/fields/class-acf-field-select.php:25
|
2278 |
+
#: includes/fields/class-acf-field-taxonomy.php:785
|
2279 |
msgctxt "noun"
|
2280 |
msgid "Select"
|
2281 |
msgstr "Selecção"
|
2410 |
msgstr ""
|
2411 |
"Utilize este campo para interromper e começar um novo grupo de separadores."
|
2412 |
|
2413 |
+
#: includes/fields/class-acf-field-taxonomy.php:713
|
2414 |
+
#, php-format
|
2415 |
+
msgctxt "No terms"
|
2416 |
+
msgid "No %s"
|
2417 |
+
msgstr "Sem %s"
|
|
|
2418 |
|
2419 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
2420 |
msgid "None"
|
2421 |
msgstr "Nenhuma"
|
2422 |
|
2423 |
+
#: includes/fields/class-acf-field-taxonomy.php:764
|
2424 |
msgid "Select the taxonomy to be displayed"
|
2425 |
msgstr "Seleccione a taxonomia que será mostrada."
|
2426 |
|
2427 |
+
#: includes/fields/class-acf-field-taxonomy.php:773
|
2428 |
msgid "Appearance"
|
2429 |
msgstr "Aparência"
|
2430 |
|
2431 |
+
#: includes/fields/class-acf-field-taxonomy.php:774
|
2432 |
msgid "Select the appearance of this field"
|
2433 |
msgstr "Seleccione a aparência deste campo."
|
2434 |
|
2435 |
+
#: includes/fields/class-acf-field-taxonomy.php:779
|
2436 |
msgid "Multiple Values"
|
2437 |
msgstr "Valores múltiplos"
|
2438 |
|
2439 |
+
#: includes/fields/class-acf-field-taxonomy.php:781
|
2440 |
msgid "Multi Select"
|
2441 |
msgstr "Selecção múltipla"
|
2442 |
|
2443 |
+
#: includes/fields/class-acf-field-taxonomy.php:783
|
2444 |
msgid "Single Value"
|
2445 |
msgstr "Valor único"
|
2446 |
|
2447 |
+
#: includes/fields/class-acf-field-taxonomy.php:784
|
2448 |
msgid "Radio Buttons"
|
2449 |
msgstr "Botões de opções"
|
2450 |
|
2451 |
+
#: includes/fields/class-acf-field-taxonomy.php:803
|
2452 |
msgid "Create Terms"
|
2453 |
msgstr "Criar termos"
|
2454 |
|
2455 |
+
#: includes/fields/class-acf-field-taxonomy.php:804
|
2456 |
msgid "Allow new terms to be created whilst editing"
|
2457 |
msgstr "Permite a criação de novos termos durante a edição."
|
2458 |
|
2459 |
+
#: includes/fields/class-acf-field-taxonomy.php:813
|
2460 |
msgid "Save Terms"
|
2461 |
msgstr "Guardar termos"
|
2462 |
|
2463 |
+
#: includes/fields/class-acf-field-taxonomy.php:814
|
2464 |
msgid "Connect selected terms to the post"
|
2465 |
msgstr "Liga os termos seleccionados ao conteúdo."
|
2466 |
|
2467 |
+
#: includes/fields/class-acf-field-taxonomy.php:823
|
2468 |
msgid "Load Terms"
|
2469 |
msgstr "Carregar termos"
|
2470 |
|
2471 |
+
#: includes/fields/class-acf-field-taxonomy.php:824
|
2472 |
msgid "Load value from posts terms"
|
2473 |
msgstr "Carrega os termos a partir dos termos dos conteúdos."
|
2474 |
|
2475 |
+
#: includes/fields/class-acf-field-taxonomy.php:838
|
2476 |
msgid "Term Object"
|
2477 |
msgstr "Termo"
|
2478 |
|
2479 |
+
#: includes/fields/class-acf-field-taxonomy.php:839
|
2480 |
msgid "Term ID"
|
2481 |
msgstr "ID do termo"
|
2482 |
|
2483 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2484 |
#, php-format
|
2485 |
msgid "User unable to add new %s"
|
2486 |
msgstr "O utilizador não pôde adicionar novo(a) %s"
|
2487 |
|
2488 |
+
#: includes/fields/class-acf-field-taxonomy.php:911
|
2489 |
#, php-format
|
2490 |
msgid "%s already exists"
|
2491 |
msgstr "%s já existe"
|
2492 |
|
2493 |
+
#: includes/fields/class-acf-field-taxonomy.php:952
|
2494 |
#, php-format
|
2495 |
msgid "%s added"
|
2496 |
msgstr "%s adicionado(a)"
|
2497 |
|
2498 |
+
#: includes/fields/class-acf-field-taxonomy.php:997
|
2499 |
msgid "Add"
|
2500 |
msgstr "Adicionar"
|
2501 |
|
2503 |
msgid "Text"
|
2504 |
msgstr "Texto"
|
2505 |
|
2506 |
+
#: includes/fields/class-acf-field-text.php:155
|
2507 |
+
#: includes/fields/class-acf-field-textarea.php:120
|
2508 |
msgid "Character Limit"
|
2509 |
msgstr "Limite de caracteres"
|
2510 |
|
2511 |
+
#: includes/fields/class-acf-field-text.php:156
|
2512 |
+
#: includes/fields/class-acf-field-textarea.php:121
|
2513 |
msgid "Leave blank for no limit"
|
2514 |
msgstr "Deixe em branco para nenhum limite"
|
2515 |
|
2517 |
msgid "Text Area"
|
2518 |
msgstr "Área de texto"
|
2519 |
|
2520 |
+
#: includes/fields/class-acf-field-textarea.php:129
|
2521 |
msgid "Rows"
|
2522 |
msgstr "Linhas"
|
2523 |
|
2524 |
+
#: includes/fields/class-acf-field-textarea.php:130
|
2525 |
msgid "Sets the textarea height"
|
2526 |
msgstr "Define a altura da área de texto"
|
2527 |
|
2534 |
msgstr "Verdadeiro / Falso"
|
2535 |
|
2536 |
#: includes/fields/class-acf-field-true_false.php:79
|
2537 |
+
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2538 |
+
#: pro/admin/views/html-settings-updates.php:89
|
2539 |
msgid "Yes"
|
2540 |
msgstr "Sim"
|
2541 |
|
2542 |
+
#: includes/fields/class-acf-field-true_false.php:80
|
2543 |
+
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2544 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2545 |
+
msgid "No"
|
2546 |
+
msgstr "Não"
|
2547 |
+
|
2548 |
#: includes/fields/class-acf-field-true_false.php:127
|
2549 |
msgid "Displays text alongside the checkbox"
|
2550 |
msgstr "Texto mostrado ao lado da caixa de selecção"
|
2569 |
msgid "Url"
|
2570 |
msgstr "URL"
|
2571 |
|
2572 |
+
#: includes/fields/class-acf-field-url.php:151
|
2573 |
msgid "Value must be a valid URL"
|
2574 |
msgstr "O valor deve ser um URL válido"
|
2575 |
|
2589 |
msgid "Wysiwyg Editor"
|
2590 |
msgstr "Editor wysiwyg"
|
2591 |
|
2592 |
+
#: includes/fields/class-acf-field-wysiwyg.php:359
|
2593 |
msgid "Visual"
|
2594 |
msgstr "Visual"
|
2595 |
|
2596 |
+
#: includes/fields/class-acf-field-wysiwyg.php:360
|
2597 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2598 |
msgid "Text"
|
2599 |
msgstr "HTML"
|
2600 |
|
2601 |
+
#: includes/fields/class-acf-field-wysiwyg.php:366
|
2602 |
msgid "Click to initialize TinyMCE"
|
2603 |
msgstr "Clique para inicializar o TinyMCE"
|
2604 |
|
2605 |
+
#: includes/fields/class-acf-field-wysiwyg.php:419
|
2606 |
msgid "Tabs"
|
2607 |
msgstr "Separadores"
|
2608 |
|
2609 |
+
#: includes/fields/class-acf-field-wysiwyg.php:424
|
2610 |
msgid "Visual & Text"
|
2611 |
msgstr "Visual e HTML"
|
2612 |
|
2613 |
+
#: includes/fields/class-acf-field-wysiwyg.php:425
|
2614 |
msgid "Visual Only"
|
2615 |
msgstr "Apenas visual"
|
2616 |
|
2617 |
+
#: includes/fields/class-acf-field-wysiwyg.php:426
|
2618 |
msgid "Text Only"
|
2619 |
msgstr "Apenas HTML"
|
2620 |
|
2621 |
+
#: includes/fields/class-acf-field-wysiwyg.php:433
|
2622 |
msgid "Toolbar"
|
2623 |
msgstr "Barra de ferramentas"
|
2624 |
|
2625 |
+
#: includes/fields/class-acf-field-wysiwyg.php:443
|
2626 |
msgid "Show Media Upload Buttons?"
|
2627 |
msgstr "Mostrar botões de carregar multimédia?"
|
2628 |
|
2629 |
+
#: includes/fields/class-acf-field-wysiwyg.php:453
|
2630 |
msgid "Delay initialization?"
|
2631 |
msgstr "Atrasar a inicialização?"
|
2632 |
|
2633 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
2634 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2635 |
msgstr "O TinyMCE não será inicializado até que clique no campo"
|
2636 |
|
2637 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2638 |
+
#: pro/admin/admin-options-page.php:308
|
2639 |
msgid "Edit field group"
|
2640 |
msgstr "Editar grupo de campos"
|
2641 |
|
2686 |
msgid "Restricted"
|
2687 |
msgstr "Restrito"
|
2688 |
|
2689 |
+
#: includes/input.php:266
|
2690 |
+
msgid "Are you sure?"
|
2691 |
+
msgstr "Tem a certeza?"
|
2692 |
+
|
2693 |
+
#: includes/input.php:270
|
2694 |
msgid "Cancel"
|
2695 |
msgstr "Cancelar"
|
2696 |
|
2768 |
msgstr "Modelo de página"
|
2769 |
|
2770 |
#: includes/locations/class-acf-location-page-template.php:98
|
2771 |
+
#: includes/locations/class-acf-location-post-template.php:151
|
2772 |
msgid "Default Template"
|
2773 |
msgstr "Modelo por omissão"
|
2774 |
|
2812 |
msgid "Post Taxonomy"
|
2813 |
msgstr "Taxonomia do artigo"
|
2814 |
|
2815 |
+
#: includes/locations/class-acf-location-post-template.php:27
|
2816 |
msgid "Post Template"
|
2817 |
msgstr "Modelo de conteúdo"
|
2818 |
|
2860 |
msgid "Advanced Custom Fields PRO"
|
2861 |
msgstr "Advanced Custom Fields PRO"
|
2862 |
|
2863 |
+
#: pro/admin/admin-options-page.php:200
|
2864 |
msgid "Publish"
|
2865 |
msgstr "Publicado"
|
2866 |
|
2867 |
+
#: pro/admin/admin-options-page.php:206
|
2868 |
#, php-format
|
2869 |
msgid ""
|
2870 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
2878 |
msgstr "<b>Erro</b>. Não foi possível ligar ao servidor de actualização."
|
2879 |
|
2880 |
#: pro/admin/admin-settings-updates.php:162
|
2881 |
+
#: pro/admin/views/html-settings-updates.php:13
|
2882 |
msgid "Updates"
|
2883 |
msgstr "Actualizações"
|
2884 |
|
2885 |
+
#: pro/admin/views/html-settings-updates.php:7
|
2886 |
msgid "Deactivate License"
|
2887 |
msgstr "Desactivar licença"
|
2888 |
|
2889 |
+
#: pro/admin/views/html-settings-updates.php:7
|
2890 |
msgid "Activate License"
|
2891 |
msgstr "Activar licença"
|
2892 |
|
2893 |
+
#: pro/admin/views/html-settings-updates.php:17
|
2894 |
msgid "License Information"
|
2895 |
msgstr "Informações da licença"
|
2896 |
|
2897 |
+
#: pro/admin/views/html-settings-updates.php:20
|
2898 |
#, php-format
|
2899 |
msgid ""
|
2900 |
"To unlock updates, please enter your license key below. If you don't have a "
|
2905 |
"licença. Se não tiver uma chave de licença, por favor veja os <a href=\"%s\" "
|
2906 |
"target=\"_blank\">detalhes e preços</a>."
|
2907 |
|
2908 |
+
#: pro/admin/views/html-settings-updates.php:29
|
2909 |
msgid "License Key"
|
2910 |
msgstr "Chave de licença"
|
2911 |
|
2912 |
+
#: pro/admin/views/html-settings-updates.php:61
|
2913 |
msgid "Update Information"
|
2914 |
msgstr "Informações de actualização"
|
2915 |
|
2916 |
+
#: pro/admin/views/html-settings-updates.php:68
|
2917 |
msgid "Current Version"
|
2918 |
msgstr "Versão actual"
|
2919 |
|
2920 |
+
#: pro/admin/views/html-settings-updates.php:76
|
2921 |
msgid "Latest Version"
|
2922 |
msgstr "Última versão"
|
2923 |
|
2924 |
+
#: pro/admin/views/html-settings-updates.php:84
|
2925 |
msgid "Update Available"
|
2926 |
msgstr "Actualização disponível"
|
2927 |
|
2928 |
+
#: pro/admin/views/html-settings-updates.php:92
|
2929 |
msgid "Update Plugin"
|
2930 |
msgstr "Actualizar plugin"
|
2931 |
|
2932 |
+
#: pro/admin/views/html-settings-updates.php:94
|
2933 |
msgid "Please enter your license key above to unlock updates"
|
2934 |
msgstr ""
|
2935 |
"Por favor introduza a sua chave de licença acima para desbloquear as "
|
2936 |
"actualizações"
|
2937 |
|
2938 |
+
#: pro/admin/views/html-settings-updates.php:100
|
2939 |
msgid "Check Again"
|
2940 |
msgstr "Verificar de novo"
|
2941 |
|
2942 |
+
#: pro/admin/views/html-settings-updates.php:117
|
2943 |
msgid "Upgrade Notice"
|
2944 |
msgstr "Aviso de actualização"
|
2945 |
|
2948 |
msgid "Clone"
|
2949 |
msgstr "Clone"
|
2950 |
|
2951 |
+
#: pro/fields/class-acf-field-clone.php:808
|
2952 |
msgid "Select one or more fields you wish to clone"
|
2953 |
msgstr "Seleccione um ou mais campos que deseje clonar."
|
2954 |
|
2955 |
+
#: pro/fields/class-acf-field-clone.php:825
|
2956 |
msgid "Display"
|
2957 |
msgstr "Visualização"
|
2958 |
|
2959 |
+
#: pro/fields/class-acf-field-clone.php:826
|
2960 |
msgid "Specify the style used to render the clone field"
|
2961 |
msgstr "Especifica o estilo usado para mostrar o campo de clone."
|
2962 |
|
2963 |
+
#: pro/fields/class-acf-field-clone.php:831
|
2964 |
msgid "Group (displays selected fields in a group within this field)"
|
2965 |
msgstr "Grupo (mostra os campos seleccionados num grupo dentro deste campo)"
|
2966 |
|
2967 |
+
#: pro/fields/class-acf-field-clone.php:832
|
2968 |
msgid "Seamless (replaces this field with selected fields)"
|
2969 |
msgstr "Simples (substitui este campo pelos campos seleccionados)"
|
2970 |
|
2971 |
+
#: pro/fields/class-acf-field-clone.php:853
|
2972 |
#, php-format
|
2973 |
msgid "Labels will be displayed as %s"
|
2974 |
msgstr "As legendas serão mostradas com %s"
|
2975 |
|
2976 |
+
#: pro/fields/class-acf-field-clone.php:856
|
2977 |
msgid "Prefix Field Labels"
|
2978 |
msgstr "Prefixo nas legendas dos campos"
|
2979 |
|
2980 |
+
#: pro/fields/class-acf-field-clone.php:867
|
2981 |
#, php-format
|
2982 |
msgid "Values will be saved as %s"
|
2983 |
msgstr "Os valores serão guardados como %s"
|
2984 |
|
2985 |
+
#: pro/fields/class-acf-field-clone.php:870
|
2986 |
msgid "Prefix Field Names"
|
2987 |
msgstr "Prefixos nos nomes dos campos"
|
2988 |
|
2989 |
+
#: pro/fields/class-acf-field-clone.php:988
|
2990 |
msgid "Unknown field"
|
2991 |
msgstr "Campo desconhecido"
|
2992 |
|
2993 |
+
#: pro/fields/class-acf-field-clone.php:1027
|
2994 |
msgid "Unknown field group"
|
2995 |
msgstr "Grupo de campos desconhecido"
|
2996 |
|
2997 |
+
#: pro/fields/class-acf-field-clone.php:1031
|
2998 |
#, php-format
|
2999 |
msgid "All fields from %s field group"
|
3000 |
msgstr "Todos os campos do grupo de campos %s"
|
3001 |
|
3002 |
#: pro/fields/class-acf-field-flexible-content.php:31
|
3003 |
#: pro/fields/class-acf-field-repeater.php:174
|
3004 |
+
#: pro/fields/class-acf-field-repeater.php:470
|
3005 |
msgid "Add Row"
|
3006 |
msgstr "Adicionar linha"
|
3007 |
|
3050 |
msgid "Click the \"%s\" button below to start creating your layout"
|
3051 |
msgstr "Clique no botão \"%s\" abaixo para começar a criar o seu layout"
|
3052 |
|
3053 |
+
#: pro/fields/class-acf-field-flexible-content.php:406
|
3054 |
msgid "Add layout"
|
3055 |
msgstr "Adicionar layout"
|
3056 |
|
3057 |
+
#: pro/fields/class-acf-field-flexible-content.php:407
|
3058 |
msgid "Remove layout"
|
3059 |
msgstr "Remover layout"
|
3060 |
|
3061 |
+
#: pro/fields/class-acf-field-flexible-content.php:408
|
3062 |
+
#: pro/fields/class-acf-field-repeater.php:298
|
3063 |
msgid "Click to toggle"
|
3064 |
msgstr "Clique para alternar"
|
3065 |
|
3066 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3067 |
msgid "Reorder Layout"
|
3068 |
msgstr "Reordenar layout"
|
3069 |
|
3070 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
3071 |
msgid "Reorder"
|
3072 |
msgstr "Reordenar"
|
3073 |
|
3074 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
3075 |
msgid "Delete Layout"
|
3076 |
msgstr "Eliminar layout"
|
3077 |
|
3078 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
3079 |
msgid "Duplicate Layout"
|
3080 |
msgstr "Duplicar layout"
|
3081 |
|
3082 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
3083 |
msgid "Add New Layout"
|
3084 |
msgstr "Adicionar novo layout"
|
3085 |
|
3086 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
3087 |
msgid "Min"
|
3088 |
msgstr "Mín"
|
3089 |
|
3090 |
+
#: pro/fields/class-acf-field-flexible-content.php:641
|
3091 |
msgid "Max"
|
3092 |
msgstr "Máx"
|
3093 |
|
3094 |
+
#: pro/fields/class-acf-field-flexible-content.php:668
|
3095 |
+
#: pro/fields/class-acf-field-repeater.php:466
|
3096 |
msgid "Button Label"
|
3097 |
msgstr "Legenda do botão"
|
3098 |
|
3099 |
+
#: pro/fields/class-acf-field-flexible-content.php:677
|
3100 |
msgid "Minimum Layouts"
|
3101 |
msgstr "Mínimo de layouts"
|
3102 |
|
3103 |
+
#: pro/fields/class-acf-field-flexible-content.php:686
|
3104 |
msgid "Maximum Layouts"
|
3105 |
msgstr "Máximo de layouts"
|
3106 |
|
3184 |
msgid "Maximum rows reached ({max} rows)"
|
3185 |
msgstr "Máximo de linhas alcançado ({max} linhas)"
|
3186 |
|
3187 |
+
#: pro/fields/class-acf-field-repeater.php:343
|
3188 |
msgid "Add row"
|
3189 |
msgstr "Adicionar linha"
|
3190 |
|
3191 |
+
#: pro/fields/class-acf-field-repeater.php:344
|
3192 |
msgid "Remove row"
|
3193 |
msgstr "Remover linha"
|
3194 |
|
3195 |
+
#: pro/fields/class-acf-field-repeater.php:419
|
3196 |
msgid "Collapsed"
|
3197 |
msgstr "Minimizado"
|
3198 |
|
3199 |
+
#: pro/fields/class-acf-field-repeater.php:420
|
3200 |
msgid "Select a sub field to show when row is collapsed"
|
3201 |
msgstr "Seleccione o subcampo a mostrar ao minimizar a linha."
|
3202 |
|
3203 |
+
#: pro/fields/class-acf-field-repeater.php:430
|
3204 |
msgid "Minimum Rows"
|
3205 |
msgstr "Mínimo de linhas"
|
3206 |
|
3207 |
+
#: pro/fields/class-acf-field-repeater.php:440
|
3208 |
msgid "Maximum Rows"
|
3209 |
msgstr "Máximo de linhas"
|
3210 |
|
lang/acf.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Advanced Custom Fields\n"
|
5 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
6 |
-
"POT-Creation-Date: 2017-
|
7 |
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
8 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
@@ -22,97 +22,97 @@ msgstr ""
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
-
#: acf.php:
|
26 |
msgid "Advanced Custom Fields"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: acf.php:
|
30 |
msgid "Field Groups"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: acf.php:
|
34 |
msgid "Field Group"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: acf.php:
|
38 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
39 |
msgid "Add New"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: acf.php:
|
43 |
msgid "Add New Field Group"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: acf.php:
|
47 |
msgid "Edit Field Group"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: acf.php:
|
51 |
msgid "New Field Group"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: acf.php:
|
55 |
msgid "View Field Group"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: acf.php:
|
59 |
msgid "Search Field Groups"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: acf.php:
|
63 |
msgid "No Field Groups found"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: acf.php:
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: acf.php:
|
71 |
#: includes/admin/admin-field-group.php:275
|
72 |
#: includes/admin/admin-field-groups.php:510
|
73 |
-
#: pro/fields/class-acf-field-clone.php:
|
74 |
msgid "Fields"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: acf.php:
|
78 |
msgid "Field"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: acf.php:
|
82 |
msgid "Add New Field"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: acf.php:
|
86 |
msgid "Edit Field"
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: acf.php:
|
90 |
#: includes/admin/views/settings-info.php:105
|
91 |
msgid "New Field"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: acf.php:
|
95 |
msgid "View Field"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: acf.php:
|
99 |
msgid "Search Fields"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: acf.php:
|
103 |
msgid "No Fields found"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: acf.php:
|
107 |
msgid "No Fields found in Trash"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: acf.php:
|
111 |
#: includes/admin/admin-field-groups.php:567
|
112 |
msgid "Inactive"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: acf.php:
|
116 |
#, php-format
|
117 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
118 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
@@ -174,7 +174,7 @@ msgid "Field group title is required"
|
|
174 |
msgstr ""
|
175 |
|
176 |
#: includes/admin/admin-field-group.php:273
|
177 |
-
#: includes/api/api-field-group.php:
|
178 |
msgid "copy"
|
179 |
msgstr ""
|
180 |
|
@@ -305,7 +305,7 @@ msgstr ""
|
|
305 |
|
306 |
#: includes/admin/admin-field-groups.php:609
|
307 |
#: includes/admin/settings-info.php:76
|
308 |
-
#: pro/admin/views/html-settings-updates.php:
|
309 |
msgid "Changelog"
|
310 |
msgstr ""
|
311 |
|
@@ -346,12 +346,12 @@ msgstr ""
|
|
346 |
#: includes/admin/admin-field-groups.php:668
|
347 |
#: includes/admin/admin-field-groups.php:684
|
348 |
#: includes/admin/views/field-group-field.php:49
|
349 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
350 |
msgid "Duplicate"
|
351 |
msgstr ""
|
352 |
|
353 |
#: includes/admin/admin-field-groups.php:701
|
354 |
-
#: includes/fields/class-acf-field-google-map.php:
|
355 |
#: includes/fields/class-acf-field-relationship.php:656
|
356 |
msgid "Search"
|
357 |
msgstr ""
|
@@ -428,7 +428,7 @@ msgid "No field groups selected"
|
|
428 |
msgstr ""
|
429 |
|
430 |
#: includes/admin/settings-tools.php:184
|
431 |
-
#: includes/fields/class-acf-field-file.php:
|
432 |
msgid "No file selected"
|
433 |
msgstr ""
|
434 |
|
@@ -480,8 +480,8 @@ msgid "Add rule group"
|
|
480 |
msgstr ""
|
481 |
|
482 |
#: includes/admin/views/field-group-field.php:41
|
483 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
484 |
-
#: pro/fields/class-acf-field-repeater.php:
|
485 |
msgid "Drag to reorder"
|
486 |
msgstr ""
|
487 |
|
@@ -491,7 +491,8 @@ msgid "Edit field"
|
|
491 |
msgstr ""
|
492 |
|
493 |
#: includes/admin/views/field-group-field.php:48
|
494 |
-
#: includes/fields/class-acf-field-
|
|
|
495 |
#: includes/fields/class-acf-field-link.php:139
|
496 |
#: pro/fields/class-acf-field-gallery.php:342
|
497 |
msgid "Edit"
|
@@ -514,7 +515,7 @@ msgid "Delete field"
|
|
514 |
msgstr ""
|
515 |
|
516 |
#: includes/admin/views/field-group-field.php:51
|
517 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
518 |
msgid "Delete"
|
519 |
msgstr ""
|
520 |
|
@@ -526,48 +527,48 @@ msgstr ""
|
|
526 |
msgid "This is the name which will appear on the EDIT page"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/admin/views/field-group-field.php:
|
530 |
msgid "Field Name"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/admin/views/field-group-field.php:
|
534 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: includes/admin/views/field-group-field.php:
|
538 |
msgid "Field Type"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: includes/admin/views/field-group-field.php:
|
542 |
#: includes/fields/class-acf-field-tab.php:88
|
543 |
msgid "Instructions"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: includes/admin/views/field-group-field.php:
|
547 |
msgid "Instructions for authors. Shown when submitting data"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: includes/admin/views/field-group-field.php:
|
551 |
msgid "Required?"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: includes/admin/views/field-group-field.php:
|
555 |
msgid "Wrapper Attributes"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: includes/admin/views/field-group-field.php:
|
559 |
msgid "width"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: includes/admin/views/field-group-field.php:
|
563 |
msgid "class"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: includes/admin/views/field-group-field.php:
|
567 |
msgid "id"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/admin/views/field-group-field.php:
|
571 |
msgid "Close Field"
|
572 |
msgstr ""
|
573 |
|
@@ -576,16 +577,17 @@ msgid "Order"
|
|
576 |
msgstr ""
|
577 |
|
578 |
#: includes/admin/views/field-group-fields.php:5
|
|
|
579 |
#: includes/fields/class-acf-field-checkbox.php:415
|
580 |
#: includes/fields/class-acf-field-radio.php:306
|
581 |
#: includes/fields/class-acf-field-select.php:432
|
582 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
583 |
msgid "Label"
|
584 |
msgstr ""
|
585 |
|
586 |
#: includes/admin/views/field-group-fields.php:6
|
587 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
588 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
589 |
msgid "Name"
|
590 |
msgstr ""
|
591 |
|
@@ -1182,14 +1184,14 @@ msgid "Full Size"
|
|
1182 |
msgstr ""
|
1183 |
|
1184 |
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1185 |
-
#: pro/fields/class-acf-field-clone.php:
|
1186 |
msgid "(no title)"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
#: includes/api/api-helpers.php:1868
|
1190 |
#: includes/fields/class-acf-field-page_link.php:269
|
1191 |
#: includes/fields/class-acf-field-post_object.php:268
|
1192 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1193 |
msgid "Parent"
|
1194 |
msgstr ""
|
1195 |
|
@@ -1248,13 +1250,15 @@ msgstr ""
|
|
1248 |
msgid "jQuery"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: includes/fields.php:149
|
1252 |
-
#: includes/fields/class-acf-field-group.php:
|
|
|
|
|
1253 |
#: includes/fields/class-acf-field-radio.php:285
|
1254 |
-
#: pro/fields/class-acf-field-clone.php:
|
1255 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1256 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1257 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1258 |
msgid "Layout"
|
1259 |
msgstr ""
|
1260 |
|
@@ -1266,125 +1270,163 @@ msgstr ""
|
|
1266 |
msgid "Unknown"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/fields/class-acf-field-
|
1270 |
-
|
1271 |
-
msgid "Checkbox"
|
1272 |
-
msgstr ""
|
1273 |
-
|
1274 |
-
#: includes/fields/class-acf-field-checkbox.php:154
|
1275 |
-
msgid "Toggle All"
|
1276 |
-
msgstr ""
|
1277 |
-
|
1278 |
-
#: includes/fields/class-acf-field-checkbox.php:221
|
1279 |
-
msgid "Add new choice"
|
1280 |
msgstr ""
|
1281 |
|
|
|
1282 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1283 |
#: includes/fields/class-acf-field-radio.php:235
|
1284 |
#: includes/fields/class-acf-field-select.php:368
|
1285 |
msgid "Choices"
|
1286 |
msgstr ""
|
1287 |
|
|
|
1288 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1289 |
#: includes/fields/class-acf-field-radio.php:236
|
1290 |
#: includes/fields/class-acf-field-select.php:369
|
1291 |
msgid "Enter each choice on a new line."
|
1292 |
msgstr ""
|
1293 |
|
|
|
1294 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1295 |
#: includes/fields/class-acf-field-radio.php:236
|
1296 |
#: includes/fields/class-acf-field-select.php:369
|
1297 |
msgid "For more control, you may specify both a value and label like this:"
|
1298 |
msgstr ""
|
1299 |
|
|
|
1300 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1301 |
#: includes/fields/class-acf-field-radio.php:236
|
1302 |
#: includes/fields/class-acf-field-select.php:369
|
1303 |
msgid "red : Red"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: includes/fields/class-acf-field-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
#: includes/fields/class-acf-field-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
#: includes/fields/class-acf-field-checkbox.php:364
|
1315 |
-
msgid "Save Custom"
|
1316 |
-
msgstr ""
|
1317 |
-
|
1318 |
-
#: includes/fields/class-acf-field-checkbox.php:369
|
1319 |
-
msgid "Save 'custom' values to the field's choices"
|
1320 |
msgstr ""
|
1321 |
|
|
|
1322 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1323 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1324 |
-
#: includes/fields/class-acf-field-email.php:
|
1325 |
-
#: includes/fields/class-acf-field-number.php:
|
1326 |
#: includes/fields/class-acf-field-radio.php:276
|
|
|
1327 |
#: includes/fields/class-acf-field-select.php:377
|
1328 |
-
#: includes/fields/class-acf-field-text.php:
|
1329 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1330 |
#: includes/fields/class-acf-field-true_false.php:135
|
1331 |
-
#: includes/fields/class-acf-field-url.php:
|
1332 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
1333 |
msgid "Default Value"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: includes/fields/class-acf-field-
|
1337 |
-
#: includes/fields/class-acf-field-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
#: includes/fields/class-acf-field-
|
1342 |
-
#: includes/fields/class-acf-field-
|
1343 |
-
|
|
|
|
|
1344 |
msgstr ""
|
1345 |
|
|
|
1346 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1347 |
#: includes/fields/class-acf-field-radio.php:292
|
1348 |
msgid "Horizontal"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: includes/fields/class-acf-field-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
#: includes/fields/class-acf-field-checkbox.php:399
|
1356 |
-
msgid "Prepend an extra checkbox to toggle all choices"
|
1357 |
msgstr ""
|
1358 |
|
|
|
1359 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1360 |
-
#: includes/fields/class-acf-field-file.php:
|
1361 |
-
#: includes/fields/class-acf-field-image.php:
|
1362 |
#: includes/fields/class-acf-field-link.php:166
|
1363 |
#: includes/fields/class-acf-field-radio.php:299
|
1364 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1365 |
msgid "Return Value"
|
1366 |
msgstr ""
|
1367 |
|
|
|
1368 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1369 |
-
#: includes/fields/class-acf-field-file.php:
|
1370 |
-
#: includes/fields/class-acf-field-image.php:
|
1371 |
#: includes/fields/class-acf-field-link.php:167
|
1372 |
#: includes/fields/class-acf-field-radio.php:300
|
1373 |
msgid "Specify the returned value on front end"
|
1374 |
msgstr ""
|
1375 |
|
|
|
1376 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1377 |
#: includes/fields/class-acf-field-radio.php:305
|
1378 |
#: includes/fields/class-acf-field-select.php:431
|
1379 |
msgid "Value"
|
1380 |
msgstr ""
|
1381 |
|
|
|
1382 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1383 |
#: includes/fields/class-acf-field-radio.php:307
|
1384 |
#: includes/fields/class-acf-field-select.php:433
|
1385 |
msgid "Both (Array)"
|
1386 |
msgstr ""
|
1387 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1388 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1389 |
msgid "Color Picker"
|
1390 |
msgstr ""
|
@@ -1566,59 +1608,53 @@ msgstr ""
|
|
1566 |
msgid "Email"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: includes/fields/class-acf-field-email.php:
|
1570 |
-
#: includes/fields/class-acf-field-number.php:
|
1571 |
-
#: includes/fields/class-acf-field-radio.php:277
|
1572 |
-
#: includes/fields/class-acf-field-text.php:116
|
1573 |
-
#: includes/fields/class-acf-field-textarea.php:99
|
1574 |
-
#: includes/fields/class-acf-field-url.php:97
|
1575 |
-
#: includes/fields/class-acf-field-wysiwyg.php:422
|
1576 |
-
msgid "Appears when creating a new post"
|
1577 |
-
msgstr ""
|
1578 |
-
|
1579 |
-
#: includes/fields/class-acf-field-email.php:123
|
1580 |
-
#: includes/fields/class-acf-field-number.php:132
|
1581 |
#: includes/fields/class-acf-field-password.php:71
|
1582 |
-
#: includes/fields/class-acf-field-text.php:
|
1583 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1584 |
-
#: includes/fields/class-acf-field-url.php:
|
1585 |
msgid "Placeholder Text"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: includes/fields/class-acf-field-email.php:
|
1589 |
-
#: includes/fields/class-acf-field-number.php:
|
1590 |
#: includes/fields/class-acf-field-password.php:72
|
1591 |
-
#: includes/fields/class-acf-field-text.php:
|
1592 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1593 |
-
#: includes/fields/class-acf-field-url.php:
|
1594 |
msgid "Appears within the input"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: includes/fields/class-acf-field-email.php:
|
1598 |
-
#: includes/fields/class-acf-field-number.php:
|
1599 |
#: includes/fields/class-acf-field-password.php:80
|
1600 |
-
#: includes/fields/class-acf-field-
|
|
|
1601 |
msgid "Prepend"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: includes/fields/class-acf-field-email.php:
|
1605 |
-
#: includes/fields/class-acf-field-number.php:
|
1606 |
#: includes/fields/class-acf-field-password.php:81
|
1607 |
-
#: includes/fields/class-acf-field-
|
|
|
1608 |
msgid "Appears before the input"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: includes/fields/class-acf-field-email.php:
|
1612 |
-
#: includes/fields/class-acf-field-number.php:
|
1613 |
#: includes/fields/class-acf-field-password.php:89
|
1614 |
-
#: includes/fields/class-acf-field-
|
|
|
1615 |
msgid "Append"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: includes/fields/class-acf-field-email.php:
|
1619 |
-
#: includes/fields/class-acf-field-number.php:
|
1620 |
#: includes/fields/class-acf-field-password.php:90
|
1621 |
-
#: includes/fields/class-acf-field-
|
|
|
1622 |
msgid "Appears after the input"
|
1623 |
msgstr ""
|
1624 |
|
@@ -1640,92 +1676,100 @@ msgstr ""
|
|
1640 |
msgid "Uploaded to this post"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: includes/fields/class-acf-field-file.php:
|
1644 |
msgid "File name"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: includes/fields/class-acf-field-file.php:
|
1648 |
-
#: includes/fields/class-acf-field-file.php:
|
1649 |
-
#: includes/fields/class-acf-field-file.php:
|
1650 |
-
#: includes/fields/class-acf-field-image.php:
|
1651 |
-
#: includes/fields/class-acf-field-image.php:
|
1652 |
#: pro/fields/class-acf-field-gallery.php:690
|
1653 |
#: pro/fields/class-acf-field-gallery.php:719
|
1654 |
msgid "File size"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: includes/fields/class-acf-field-file.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1658 |
msgid "Add File"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: includes/fields/class-acf-field-file.php:
|
1662 |
msgid "File Array"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: includes/fields/class-acf-field-file.php:
|
1666 |
msgid "File URL"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: includes/fields/class-acf-field-file.php:
|
1670 |
msgid "File ID"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: includes/fields/class-acf-field-file.php:
|
1674 |
-
#: includes/fields/class-acf-field-image.php:
|
1675 |
#: pro/fields/class-acf-field-gallery.php:655
|
1676 |
msgid "Library"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: includes/fields/class-acf-field-file.php:
|
1680 |
-
#: includes/fields/class-acf-field-image.php:
|
1681 |
#: pro/fields/class-acf-field-gallery.php:656
|
1682 |
msgid "Limit the media library choice"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: includes/fields/class-acf-field-file.php:
|
1686 |
-
#: includes/fields/class-acf-field-image.php:
|
1687 |
#: includes/locations/class-acf-location-attachment.php:101
|
1688 |
#: includes/locations/class-acf-location-comment.php:79
|
1689 |
#: includes/locations/class-acf-location-nav-menu.php:102
|
1690 |
#: includes/locations/class-acf-location-taxonomy.php:79
|
1691 |
#: includes/locations/class-acf-location-user-form.php:87
|
1692 |
-
#: includes/locations/class-acf-location-user-role.php:
|
1693 |
#: includes/locations/class-acf-location-widget.php:83
|
1694 |
#: pro/fields/class-acf-field-gallery.php:661
|
1695 |
msgid "All"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: includes/fields/class-acf-field-file.php:
|
1699 |
-
#: includes/fields/class-acf-field-image.php:
|
1700 |
#: pro/fields/class-acf-field-gallery.php:662
|
1701 |
msgid "Uploaded to post"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: includes/fields/class-acf-field-file.php:
|
1705 |
-
#: includes/fields/class-acf-field-image.php:
|
1706 |
#: pro/fields/class-acf-field-gallery.php:669
|
1707 |
msgid "Minimum"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
-
#: includes/fields/class-acf-field-file.php:
|
1711 |
-
#: includes/fields/class-acf-field-file.php:
|
1712 |
msgid "Restrict which files can be uploaded"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: includes/fields/class-acf-field-file.php:
|
1716 |
-
#: includes/fields/class-acf-field-image.php:
|
1717 |
#: pro/fields/class-acf-field-gallery.php:698
|
1718 |
msgid "Maximum"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: includes/fields/class-acf-field-file.php:
|
1722 |
-
#: includes/fields/class-acf-field-image.php:
|
1723 |
#: pro/fields/class-acf-field-gallery.php:727
|
1724 |
msgid "Allowed file types"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: includes/fields/class-acf-field-file.php:
|
1728 |
-
#: includes/fields/class-acf-field-image.php:
|
1729 |
#: pro/fields/class-acf-field-gallery.php:728
|
1730 |
msgid "Comma separated list. Leave blank for all types"
|
1731 |
msgstr ""
|
@@ -1742,46 +1786,46 @@ msgstr ""
|
|
1742 |
msgid "Sorry, this browser does not support geolocation"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1746 |
msgid "Clear location"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1750 |
msgid "Find current location"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1754 |
msgid "Search for address..."
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1758 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1759 |
msgid "Center"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1763 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1764 |
msgid "Center the initial map"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1768 |
msgid "Zoom"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1772 |
msgid "Set the initial zoom level"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1776 |
-
#: includes/fields/class-acf-field-image.php:
|
1777 |
-
#: includes/fields/class-acf-field-image.php:
|
1778 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1779 |
#: pro/fields/class-acf-field-gallery.php:681
|
1780 |
#: pro/fields/class-acf-field-gallery.php:710
|
1781 |
msgid "Height"
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: includes/fields/class-acf-field-google-map.php:
|
1785 |
msgid "Customise the map height"
|
1786 |
msgstr ""
|
1787 |
|
@@ -1789,34 +1833,34 @@ msgstr ""
|
|
1789 |
msgid "Group"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: includes/fields/class-acf-field-group.php:
|
1793 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1794 |
msgid "Sub Fields"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: includes/fields/class-acf-field-group.php:
|
1798 |
-
#: pro/fields/class-acf-field-clone.php:
|
1799 |
msgid "Specify the style used to render the selected fields"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: includes/fields/class-acf-field-group.php:
|
1803 |
-
#: pro/fields/class-acf-field-clone.php:
|
1804 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1805 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1806 |
msgid "Block"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: includes/fields/class-acf-field-group.php:
|
1810 |
-
#: pro/fields/class-acf-field-clone.php:
|
1811 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1812 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1813 |
msgid "Table"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: includes/fields/class-acf-field-group.php:
|
1817 |
-
#: pro/fields/class-acf-field-clone.php:
|
1818 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
1819 |
-
#: pro/fields/class-acf-field-repeater.php:
|
1820 |
msgid "Row"
|
1821 |
msgstr ""
|
1822 |
|
@@ -1842,51 +1886,44 @@ msgstr ""
|
|
1842 |
msgid "All images"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: includes/fields/class-acf-field-image.php:
|
1846 |
-
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
1847 |
-
#: pro/fields/class-acf-field-gallery.php:343
|
1848 |
-
#: pro/fields/class-acf-field-gallery.php:531
|
1849 |
-
msgid "Remove"
|
1850 |
-
msgstr ""
|
1851 |
-
|
1852 |
-
#: includes/fields/class-acf-field-image.php:143
|
1853 |
msgid "No image selected"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: includes/fields/class-acf-field-image.php:
|
1857 |
msgid "Add Image"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#: includes/fields/class-acf-field-image.php:
|
1861 |
msgid "Image Array"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: includes/fields/class-acf-field-image.php:
|
1865 |
msgid "Image URL"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: includes/fields/class-acf-field-image.php:
|
1869 |
msgid "Image ID"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: includes/fields/class-acf-field-image.php:
|
1873 |
msgid "Preview Size"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: includes/fields/class-acf-field-image.php:
|
1877 |
msgid "Shown when entering data"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: includes/fields/class-acf-field-image.php:
|
1881 |
-
#: includes/fields/class-acf-field-image.php:
|
1882 |
#: pro/fields/class-acf-field-gallery.php:670
|
1883 |
#: pro/fields/class-acf-field-gallery.php:699
|
1884 |
msgid "Restrict which images can be uploaded"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: includes/fields/class-acf-field-image.php:
|
1888 |
-
#: includes/fields/class-acf-field-image.php:
|
1889 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1890 |
#: pro/fields/class-acf-field-gallery.php:673
|
1891 |
#: pro/fields/class-acf-field-gallery.php:702
|
1892 |
msgid "Width"
|
@@ -1919,27 +1956,27 @@ msgid "Message"
|
|
1919 |
msgstr ""
|
1920 |
|
1921 |
#: includes/fields/class-acf-field-message.php:110
|
1922 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1923 |
msgid "New Lines"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
#: includes/fields/class-acf-field-message.php:111
|
1927 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1928 |
msgid "Controls how new lines are rendered"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
#: includes/fields/class-acf-field-message.php:115
|
1932 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1933 |
msgid "Automatically add paragraphs"
|
1934 |
msgstr ""
|
1935 |
|
1936 |
#: includes/fields/class-acf-field-message.php:116
|
1937 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1938 |
msgid "Automatically add <br>"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
#: includes/fields/class-acf-field-message.php:117
|
1942 |
-
#: includes/fields/class-acf-field-textarea.php:
|
1943 |
msgid "No Formatting"
|
1944 |
msgstr ""
|
1945 |
|
@@ -1955,28 +1992,31 @@ msgstr ""
|
|
1955 |
msgid "Number"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
1959 |
msgid "Minimum Value"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
1963 |
msgid "Maximum Value"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: includes/fields/class-acf-field-number.php:
|
|
|
1967 |
msgid "Step Size"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: includes/fields/class-acf-field-number.php:
|
1971 |
msgid "Value must be a number"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: includes/fields/class-acf-field-number.php:
|
1975 |
#, php-format
|
1976 |
msgid "Value must be equal to or higher than %d"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: includes/fields/class-acf-field-number.php:
|
1980 |
#, php-format
|
1981 |
msgid "Value must be equal to or lower than %d"
|
1982 |
msgstr ""
|
@@ -1985,21 +2025,21 @@ msgstr ""
|
|
1985 |
msgid "oEmbed"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1989 |
msgid "Enter URL"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1993 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
1994 |
msgid "Error."
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: includes/fields/class-acf-field-oembed.php:
|
1998 |
msgid "No embed found for the given URL."
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2002 |
-
#: includes/fields/class-acf-field-oembed.php:
|
2003 |
msgid "Embed Size"
|
2004 |
msgstr ""
|
2005 |
|
@@ -2031,15 +2071,6 @@ msgstr ""
|
|
2031 |
msgid "All taxonomies"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: includes/fields/class-acf-field-page_link.php:513
|
2035 |
-
#: includes/fields/class-acf-field-post_object.php:412
|
2036 |
-
#: includes/fields/class-acf-field-radio.php:244
|
2037 |
-
#: includes/fields/class-acf-field-select.php:386
|
2038 |
-
#: includes/fields/class-acf-field-taxonomy.php:786
|
2039 |
-
#: includes/fields/class-acf-field-user.php:408
|
2040 |
-
msgid "Allow Null?"
|
2041 |
-
msgstr ""
|
2042 |
-
|
2043 |
#: includes/fields/class-acf-field-page_link.php:523
|
2044 |
msgid "Allow Archives URLs"
|
2045 |
msgstr ""
|
@@ -2086,6 +2117,10 @@ msgstr ""
|
|
2086 |
msgid "Save 'other' values to the field's choices"
|
2087 |
msgstr ""
|
2088 |
|
|
|
|
|
|
|
|
|
2089 |
#: includes/fields/class-acf-field-relationship.php:25
|
2090 |
msgid "Relationship"
|
2091 |
msgstr ""
|
@@ -2129,7 +2164,7 @@ msgstr ""
|
|
2129 |
|
2130 |
#: includes/fields/class-acf-field-relationship.php:658
|
2131 |
#: includes/fields/class-acf-field-taxonomy.php:28
|
2132 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2133 |
msgid "Taxonomy"
|
2134 |
msgstr ""
|
2135 |
|
@@ -2158,7 +2193,7 @@ msgstr[0] ""
|
|
2158 |
msgstr[1] ""
|
2159 |
|
2160 |
#: includes/fields/class-acf-field-select.php:25
|
2161 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2162 |
msgctxt "noun"
|
2163 |
msgid "Select"
|
2164 |
msgstr ""
|
@@ -2284,93 +2319,92 @@ msgstr ""
|
|
2284 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
msgid "No"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2295 |
msgid "None"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2299 |
msgid "Select the taxonomy to be displayed"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2303 |
msgid "Appearance"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2307 |
msgid "Select the appearance of this field"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2311 |
msgid "Multiple Values"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2315 |
msgid "Multi Select"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2319 |
msgid "Single Value"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2323 |
msgid "Radio Buttons"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2327 |
msgid "Create Terms"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2331 |
msgid "Allow new terms to be created whilst editing"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2335 |
msgid "Save Terms"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2339 |
msgid "Connect selected terms to the post"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2343 |
msgid "Load Terms"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2347 |
msgid "Load value from posts terms"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2351 |
msgid "Term Object"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2355 |
msgid "Term ID"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2359 |
#, php-format
|
2360 |
msgid "User unable to add new %s"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2364 |
#, php-format
|
2365 |
msgid "%s already exists"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2369 |
#, php-format
|
2370 |
msgid "%s added"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: includes/fields/class-acf-field-taxonomy.php:
|
2374 |
msgid "Add"
|
2375 |
msgstr ""
|
2376 |
|
@@ -2378,13 +2412,13 @@ msgstr ""
|
|
2378 |
msgid "Text"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: includes/fields/class-acf-field-text.php:
|
2382 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2383 |
msgid "Character Limit"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: includes/fields/class-acf-field-text.php:
|
2387 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2388 |
msgid "Leave blank for no limit"
|
2389 |
msgstr ""
|
2390 |
|
@@ -2392,11 +2426,11 @@ msgstr ""
|
|
2392 |
msgid "Text Area"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2396 |
msgid "Rows"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: includes/fields/class-acf-field-textarea.php:
|
2400 |
msgid "Sets the textarea height"
|
2401 |
msgstr ""
|
2402 |
|
@@ -2410,10 +2444,16 @@ msgstr ""
|
|
2410 |
|
2411 |
#: includes/fields/class-acf-field-true_false.php:79
|
2412 |
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2413 |
-
#: pro/admin/views/html-settings-updates.php:
|
2414 |
msgid "Yes"
|
2415 |
msgstr ""
|
2416 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2417 |
#: includes/fields/class-acf-field-true_false.php:127
|
2418 |
msgid "Displays text alongside the checkbox"
|
2419 |
msgstr ""
|
@@ -2438,7 +2478,7 @@ msgstr ""
|
|
2438 |
msgid "Url"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: includes/fields/class-acf-field-url.php:
|
2442 |
msgid "Value must be a valid URL"
|
2443 |
msgstr ""
|
2444 |
|
@@ -2458,53 +2498,53 @@ msgstr ""
|
|
2458 |
msgid "Wysiwyg Editor"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2462 |
msgid "Visual"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2466 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2467 |
msgid "Text"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2471 |
msgid "Click to initialize TinyMCE"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2475 |
msgid "Tabs"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2479 |
msgid "Visual & Text"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2483 |
msgid "Visual Only"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2487 |
msgid "Text Only"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2491 |
msgid "Toolbar"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2495 |
msgid "Show Media Upload Buttons?"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2499 |
msgid "Delay initialization?"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: includes/fields/class-acf-field-wysiwyg.php:
|
2503 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2507 |
-
#: pro/admin/admin-options-page.php:
|
2508 |
msgid "Edit field group"
|
2509 |
msgstr ""
|
2510 |
|
@@ -2729,11 +2769,11 @@ msgstr ""
|
|
2729 |
msgid "Advanced Custom Fields PRO"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: pro/admin/admin-options-page.php:
|
2733 |
msgid "Publish"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: pro/admin/admin-options-page.php:
|
2737 |
#, php-format
|
2738 |
msgid ""
|
2739 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
@@ -2745,23 +2785,23 @@ msgid "<b>Error</b>. Could not connect to update server"
|
|
2745 |
msgstr ""
|
2746 |
|
2747 |
#: pro/admin/admin-settings-updates.php:162
|
2748 |
-
#: pro/admin/views/html-settings-updates.php:
|
2749 |
msgid "Updates"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: pro/admin/views/html-settings-updates.php:
|
2753 |
msgid "Deactivate License"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: pro/admin/views/html-settings-updates.php:
|
2757 |
msgid "Activate License"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: pro/admin/views/html-settings-updates.php:
|
2761 |
msgid "License Information"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: pro/admin/views/html-settings-updates.php:
|
2765 |
#, php-format
|
2766 |
msgid ""
|
2767 |
"To unlock updates, please enter your license key below. If you don't have a "
|
@@ -2769,39 +2809,39 @@ msgid ""
|
|
2769 |
"a>."
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: pro/admin/views/html-settings-updates.php:
|
2773 |
msgid "License Key"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: pro/admin/views/html-settings-updates.php:
|
2777 |
msgid "Update Information"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: pro/admin/views/html-settings-updates.php:
|
2781 |
msgid "Current Version"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: pro/admin/views/html-settings-updates.php:
|
2785 |
msgid "Latest Version"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: pro/admin/views/html-settings-updates.php:
|
2789 |
msgid "Update Available"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: pro/admin/views/html-settings-updates.php:
|
2793 |
msgid "Update Plugin"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: pro/admin/views/html-settings-updates.php:
|
2797 |
msgid "Please enter your license key above to unlock updates"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: pro/admin/views/html-settings-updates.php:
|
2801 |
msgid "Check Again"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: pro/admin/views/html-settings-updates.php:
|
2805 |
msgid "Upgrade Notice"
|
2806 |
msgstr ""
|
2807 |
|
@@ -2810,60 +2850,60 @@ msgctxt "noun"
|
|
2810 |
msgid "Clone"
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#: pro/fields/class-acf-field-clone.php:
|
2814 |
msgid "Select one or more fields you wish to clone"
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#: pro/fields/class-acf-field-clone.php:
|
2818 |
msgid "Display"
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#: pro/fields/class-acf-field-clone.php:
|
2822 |
msgid "Specify the style used to render the clone field"
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#: pro/fields/class-acf-field-clone.php:
|
2826 |
msgid "Group (displays selected fields in a group within this field)"
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#: pro/fields/class-acf-field-clone.php:
|
2830 |
msgid "Seamless (replaces this field with selected fields)"
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#: pro/fields/class-acf-field-clone.php:
|
2834 |
#, php-format
|
2835 |
msgid "Labels will be displayed as %s"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: pro/fields/class-acf-field-clone.php:
|
2839 |
msgid "Prefix Field Labels"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: pro/fields/class-acf-field-clone.php:
|
2843 |
#, php-format
|
2844 |
msgid "Values will be saved as %s"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: pro/fields/class-acf-field-clone.php:
|
2848 |
msgid "Prefix Field Names"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: pro/fields/class-acf-field-clone.php:
|
2852 |
msgid "Unknown field"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: pro/fields/class-acf-field-clone.php:
|
2856 |
msgid "Unknown field group"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: pro/fields/class-acf-field-clone.php:
|
2860 |
#, php-format
|
2861 |
msgid "All fields from %s field group"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#: pro/fields/class-acf-field-flexible-content.php:31
|
2865 |
#: pro/fields/class-acf-field-repeater.php:174
|
2866 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2867 |
msgid "Add Row"
|
2868 |
msgstr ""
|
2869 |
|
@@ -2912,57 +2952,57 @@ msgstr ""
|
|
2912 |
msgid "Click the \"%s\" button below to start creating your layout"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2916 |
msgid "Add layout"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2920 |
msgid "Remove layout"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2924 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2925 |
msgid "Click to toggle"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2929 |
msgid "Reorder Layout"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2933 |
msgid "Reorder"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2937 |
msgid "Delete Layout"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2941 |
msgid "Duplicate Layout"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2945 |
msgid "Add New Layout"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2949 |
msgid "Min"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2953 |
msgid "Max"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2957 |
-
#: pro/fields/class-acf-field-repeater.php:
|
2958 |
msgid "Button Label"
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2962 |
msgid "Minimum Layouts"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: pro/fields/class-acf-field-flexible-content.php:
|
2966 |
msgid "Maximum Layouts"
|
2967 |
msgstr ""
|
2968 |
|
@@ -3046,27 +3086,27 @@ msgstr ""
|
|
3046 |
msgid "Maximum rows reached ({max} rows)"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3050 |
msgid "Add row"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3054 |
msgid "Remove row"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3058 |
msgid "Collapsed"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3062 |
msgid "Select a sub field to show when row is collapsed"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3066 |
msgid "Minimum Rows"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: pro/fields/class-acf-field-repeater.php:
|
3070 |
msgid "Maximum Rows"
|
3071 |
msgstr ""
|
3072 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Advanced Custom Fields\n"
|
5 |
"Report-Msgid-Bugs-To: http://support.advancedcustomfields.com\n"
|
6 |
+
"POT-Creation-Date: 2017-10-04 14:50+1000\n"
|
7 |
"PO-Revision-Date: 2015-06-11 13:00+1000\n"
|
8 |
"Last-Translator: Elliot Condon <e@elliotcondon.com>\n"
|
9 |
"Language-Team: Elliot Condon <e@elliotcondon.com>\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
|
25 |
+
#: acf.php:67
|
26 |
msgid "Advanced Custom Fields"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: acf.php:369 includes/admin/admin.php:117
|
30 |
msgid "Field Groups"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: acf.php:370
|
34 |
msgid "Field Group"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: acf.php:371 acf.php:403 includes/admin/admin.php:118
|
38 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
39 |
msgid "Add New"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: acf.php:372
|
43 |
msgid "Add New Field Group"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: acf.php:373
|
47 |
msgid "Edit Field Group"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: acf.php:374
|
51 |
msgid "New Field Group"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: acf.php:375
|
55 |
msgid "View Field Group"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: acf.php:376
|
59 |
msgid "Search Field Groups"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: acf.php:377
|
63 |
msgid "No Field Groups found"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: acf.php:378
|
67 |
msgid "No Field Groups found in Trash"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: acf.php:401 includes/admin/admin-field-group.php:182
|
71 |
#: includes/admin/admin-field-group.php:275
|
72 |
#: includes/admin/admin-field-groups.php:510
|
73 |
+
#: pro/fields/class-acf-field-clone.php:807
|
74 |
msgid "Fields"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: acf.php:402
|
78 |
msgid "Field"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: acf.php:404
|
82 |
msgid "Add New Field"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: acf.php:405
|
86 |
msgid "Edit Field"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: acf.php:406 includes/admin/views/field-group-fields.php:41
|
90 |
#: includes/admin/views/settings-info.php:105
|
91 |
msgid "New Field"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: acf.php:407
|
95 |
msgid "View Field"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: acf.php:408
|
99 |
msgid "Search Fields"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: acf.php:409
|
103 |
msgid "No Fields found"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: acf.php:410
|
107 |
msgid "No Fields found in Trash"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: acf.php:449 includes/admin/admin-field-group.php:390
|
111 |
#: includes/admin/admin-field-groups.php:567
|
112 |
msgid "Inactive"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: acf.php:454
|
116 |
#, php-format
|
117 |
msgid "Inactive <span class=\"count\">(%s)</span>"
|
118 |
msgid_plural "Inactive <span class=\"count\">(%s)</span>"
|
174 |
msgstr ""
|
175 |
|
176 |
#: includes/admin/admin-field-group.php:273
|
177 |
+
#: includes/api/api-field-group.php:751
|
178 |
msgid "copy"
|
179 |
msgstr ""
|
180 |
|
305 |
|
306 |
#: includes/admin/admin-field-groups.php:609
|
307 |
#: includes/admin/settings-info.php:76
|
308 |
+
#: pro/admin/views/html-settings-updates.php:107
|
309 |
msgid "Changelog"
|
310 |
msgstr ""
|
311 |
|
346 |
#: includes/admin/admin-field-groups.php:668
|
347 |
#: includes/admin/admin-field-groups.php:684
|
348 |
#: includes/admin/views/field-group-field.php:49
|
349 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
350 |
msgid "Duplicate"
|
351 |
msgstr ""
|
352 |
|
353 |
#: includes/admin/admin-field-groups.php:701
|
354 |
+
#: includes/fields/class-acf-field-google-map.php:112
|
355 |
#: includes/fields/class-acf-field-relationship.php:656
|
356 |
msgid "Search"
|
357 |
msgstr ""
|
428 |
msgstr ""
|
429 |
|
430 |
#: includes/admin/settings-tools.php:184
|
431 |
+
#: includes/fields/class-acf-field-file.php:155
|
432 |
msgid "No file selected"
|
433 |
msgstr ""
|
434 |
|
480 |
msgstr ""
|
481 |
|
482 |
#: includes/admin/views/field-group-field.php:41
|
483 |
+
#: pro/fields/class-acf-field-flexible-content.php:403
|
484 |
+
#: pro/fields/class-acf-field-repeater.php:296
|
485 |
msgid "Drag to reorder"
|
486 |
msgstr ""
|
487 |
|
491 |
msgstr ""
|
492 |
|
493 |
#: includes/admin/views/field-group-field.php:48
|
494 |
+
#: includes/fields/class-acf-field-file.php:137
|
495 |
+
#: includes/fields/class-acf-field-image.php:122
|
496 |
#: includes/fields/class-acf-field-link.php:139
|
497 |
#: pro/fields/class-acf-field-gallery.php:342
|
498 |
msgid "Edit"
|
515 |
msgstr ""
|
516 |
|
517 |
#: includes/admin/views/field-group-field.php:51
|
518 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
519 |
msgid "Delete"
|
520 |
msgstr ""
|
521 |
|
527 |
msgid "This is the name which will appear on the EDIT page"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: includes/admin/views/field-group-field.php:77
|
531 |
msgid "Field Name"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: includes/admin/views/field-group-field.php:78
|
535 |
msgid "Single word, no spaces. Underscores and dashes allowed"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/admin/views/field-group-field.php:87
|
539 |
msgid "Field Type"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: includes/admin/views/field-group-field.php:98
|
543 |
#: includes/fields/class-acf-field-tab.php:88
|
544 |
msgid "Instructions"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/admin/views/field-group-field.php:99
|
548 |
msgid "Instructions for authors. Shown when submitting data"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/admin/views/field-group-field.php:108
|
552 |
msgid "Required?"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: includes/admin/views/field-group-field.php:131
|
556 |
msgid "Wrapper Attributes"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: includes/admin/views/field-group-field.php:137
|
560 |
msgid "width"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: includes/admin/views/field-group-field.php:152
|
564 |
msgid "class"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: includes/admin/views/field-group-field.php:165
|
568 |
msgid "id"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: includes/admin/views/field-group-field.php:177
|
572 |
msgid "Close Field"
|
573 |
msgstr ""
|
574 |
|
577 |
msgstr ""
|
578 |
|
579 |
#: includes/admin/views/field-group-fields.php:5
|
580 |
+
#: includes/fields/class-acf-field-button-group.php:198
|
581 |
#: includes/fields/class-acf-field-checkbox.php:415
|
582 |
#: includes/fields/class-acf-field-radio.php:306
|
583 |
#: includes/fields/class-acf-field-select.php:432
|
584 |
+
#: pro/fields/class-acf-field-flexible-content.php:582
|
585 |
msgid "Label"
|
586 |
msgstr ""
|
587 |
|
588 |
#: includes/admin/views/field-group-fields.php:6
|
589 |
+
#: includes/fields/class-acf-field-taxonomy.php:964
|
590 |
+
#: pro/fields/class-acf-field-flexible-content.php:595
|
591 |
msgid "Name"
|
592 |
msgstr ""
|
593 |
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: includes/api/api-helpers.php:1248 includes/api/api-helpers.php:1831
|
1187 |
+
#: pro/fields/class-acf-field-clone.php:992
|
1188 |
msgid "(no title)"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
#: includes/api/api-helpers.php:1868
|
1192 |
#: includes/fields/class-acf-field-page_link.php:269
|
1193 |
#: includes/fields/class-acf-field-post_object.php:268
|
1194 |
+
#: includes/fields/class-acf-field-taxonomy.php:986
|
1195 |
msgid "Parent"
|
1196 |
msgstr ""
|
1197 |
|
1250 |
msgid "jQuery"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: includes/fields.php:149
|
1254 |
+
#: includes/fields/class-acf-field-button-group.php:177
|
1255 |
+
#: includes/fields/class-acf-field-checkbox.php:384
|
1256 |
+
#: includes/fields/class-acf-field-group.php:474
|
1257 |
#: includes/fields/class-acf-field-radio.php:285
|
1258 |
+
#: pro/fields/class-acf-field-clone.php:839
|
1259 |
+
#: pro/fields/class-acf-field-flexible-content.php:552
|
1260 |
+
#: pro/fields/class-acf-field-flexible-content.php:601
|
1261 |
+
#: pro/fields/class-acf-field-repeater.php:450
|
1262 |
msgid "Layout"
|
1263 |
msgstr ""
|
1264 |
|
1270 |
msgid "Unknown"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/fields/class-acf-field-button-group.php:24
|
1274 |
+
msgid "Button Group"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/fields/class-acf-field-button-group.php:149
|
1278 |
#: includes/fields/class-acf-field-checkbox.php:344
|
1279 |
#: includes/fields/class-acf-field-radio.php:235
|
1280 |
#: includes/fields/class-acf-field-select.php:368
|
1281 |
msgid "Choices"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1285 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1286 |
#: includes/fields/class-acf-field-radio.php:236
|
1287 |
#: includes/fields/class-acf-field-select.php:369
|
1288 |
msgid "Enter each choice on a new line."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1292 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1293 |
#: includes/fields/class-acf-field-radio.php:236
|
1294 |
#: includes/fields/class-acf-field-select.php:369
|
1295 |
msgid "For more control, you may specify both a value and label like this:"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/fields/class-acf-field-button-group.php:150
|
1299 |
#: includes/fields/class-acf-field-checkbox.php:345
|
1300 |
#: includes/fields/class-acf-field-radio.php:236
|
1301 |
#: includes/fields/class-acf-field-select.php:369
|
1302 |
msgid "red : Red"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/fields/class-acf-field-button-group.php:158
|
1306 |
+
#: includes/fields/class-acf-field-page_link.php:513
|
1307 |
+
#: includes/fields/class-acf-field-post_object.php:412
|
1308 |
+
#: includes/fields/class-acf-field-radio.php:244
|
1309 |
+
#: includes/fields/class-acf-field-select.php:386
|
1310 |
+
#: includes/fields/class-acf-field-taxonomy.php:793
|
1311 |
+
#: includes/fields/class-acf-field-user.php:408
|
1312 |
+
msgid "Allow Null?"
|
|
|
|
|
|
|
|
|
|
|
|
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/fields/class-acf-field-button-group.php:168
|
1316 |
#: includes/fields/class-acf-field-checkbox.php:375
|
1317 |
#: includes/fields/class-acf-field-color_picker.php:131
|
1318 |
+
#: includes/fields/class-acf-field-email.php:118
|
1319 |
+
#: includes/fields/class-acf-field-number.php:127
|
1320 |
#: includes/fields/class-acf-field-radio.php:276
|
1321 |
+
#: includes/fields/class-acf-field-range.php:148
|
1322 |
#: includes/fields/class-acf-field-select.php:377
|
1323 |
+
#: includes/fields/class-acf-field-text.php:119
|
1324 |
+
#: includes/fields/class-acf-field-textarea.php:102
|
1325 |
#: includes/fields/class-acf-field-true_false.php:135
|
1326 |
+
#: includes/fields/class-acf-field-url.php:100
|
1327 |
+
#: includes/fields/class-acf-field-wysiwyg.php:410
|
1328 |
msgid "Default Value"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/fields/class-acf-field-button-group.php:169
|
1332 |
+
#: includes/fields/class-acf-field-email.php:119
|
1333 |
+
#: includes/fields/class-acf-field-number.php:128
|
1334 |
+
#: includes/fields/class-acf-field-radio.php:277
|
1335 |
+
#: includes/fields/class-acf-field-range.php:149
|
1336 |
+
#: includes/fields/class-acf-field-text.php:120
|
1337 |
+
#: includes/fields/class-acf-field-textarea.php:103
|
1338 |
+
#: includes/fields/class-acf-field-url.php:101
|
1339 |
+
#: includes/fields/class-acf-field-wysiwyg.php:411
|
1340 |
+
msgid "Appears when creating a new post"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: includes/fields/class-acf-field-button-group.php:183
|
1344 |
#: includes/fields/class-acf-field-checkbox.php:391
|
1345 |
#: includes/fields/class-acf-field-radio.php:292
|
1346 |
msgid "Horizontal"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/fields/class-acf-field-button-group.php:184
|
1350 |
+
#: includes/fields/class-acf-field-checkbox.php:390
|
1351 |
+
#: includes/fields/class-acf-field-radio.php:291
|
1352 |
+
msgid "Vertical"
|
|
|
|
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: includes/fields/class-acf-field-button-group.php:191
|
1356 |
#: includes/fields/class-acf-field-checkbox.php:408
|
1357 |
+
#: includes/fields/class-acf-field-file.php:200
|
1358 |
+
#: includes/fields/class-acf-field-image.php:188
|
1359 |
#: includes/fields/class-acf-field-link.php:166
|
1360 |
#: includes/fields/class-acf-field-radio.php:299
|
1361 |
+
#: includes/fields/class-acf-field-taxonomy.php:833
|
1362 |
msgid "Return Value"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/fields/class-acf-field-button-group.php:192
|
1366 |
#: includes/fields/class-acf-field-checkbox.php:409
|
1367 |
+
#: includes/fields/class-acf-field-file.php:201
|
1368 |
+
#: includes/fields/class-acf-field-image.php:189
|
1369 |
#: includes/fields/class-acf-field-link.php:167
|
1370 |
#: includes/fields/class-acf-field-radio.php:300
|
1371 |
msgid "Specify the returned value on front end"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/fields/class-acf-field-button-group.php:197
|
1375 |
#: includes/fields/class-acf-field-checkbox.php:414
|
1376 |
#: includes/fields/class-acf-field-radio.php:305
|
1377 |
#: includes/fields/class-acf-field-select.php:431
|
1378 |
msgid "Value"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: includes/fields/class-acf-field-button-group.php:199
|
1382 |
#: includes/fields/class-acf-field-checkbox.php:416
|
1383 |
#: includes/fields/class-acf-field-radio.php:307
|
1384 |
#: includes/fields/class-acf-field-select.php:433
|
1385 |
msgid "Both (Array)"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/fields/class-acf-field-checkbox.php:25
|
1389 |
+
#: includes/fields/class-acf-field-taxonomy.php:780
|
1390 |
+
msgid "Checkbox"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: includes/fields/class-acf-field-checkbox.php:154
|
1394 |
+
msgid "Toggle All"
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: includes/fields/class-acf-field-checkbox.php:221
|
1398 |
+
msgid "Add new choice"
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: includes/fields/class-acf-field-checkbox.php:353
|
1402 |
+
msgid "Allow Custom"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: includes/fields/class-acf-field-checkbox.php:358
|
1406 |
+
msgid "Allow 'custom' values to be added"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: includes/fields/class-acf-field-checkbox.php:364
|
1410 |
+
msgid "Save Custom"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: includes/fields/class-acf-field-checkbox.php:369
|
1414 |
+
msgid "Save 'custom' values to the field's choices"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: includes/fields/class-acf-field-checkbox.php:376
|
1418 |
+
#: includes/fields/class-acf-field-select.php:378
|
1419 |
+
msgid "Enter each default value on a new line"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/fields/class-acf-field-checkbox.php:398
|
1423 |
+
msgid "Toggle"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/fields/class-acf-field-checkbox.php:399
|
1427 |
+
msgid "Prepend an extra checkbox to toggle all choices"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
#: includes/fields/class-acf-field-color_picker.php:25
|
1431 |
msgid "Color Picker"
|
1432 |
msgstr ""
|
1608 |
msgid "Email"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: includes/fields/class-acf-field-email.php:127
|
1612 |
+
#: includes/fields/class-acf-field-number.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1613 |
#: includes/fields/class-acf-field-password.php:71
|
1614 |
+
#: includes/fields/class-acf-field-text.php:128
|
1615 |
+
#: includes/fields/class-acf-field-textarea.php:111
|
1616 |
+
#: includes/fields/class-acf-field-url.php:109
|
1617 |
msgid "Placeholder Text"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: includes/fields/class-acf-field-email.php:128
|
1621 |
+
#: includes/fields/class-acf-field-number.php:137
|
1622 |
#: includes/fields/class-acf-field-password.php:72
|
1623 |
+
#: includes/fields/class-acf-field-text.php:129
|
1624 |
+
#: includes/fields/class-acf-field-textarea.php:112
|
1625 |
+
#: includes/fields/class-acf-field-url.php:110
|
1626 |
msgid "Appears within the input"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/fields/class-acf-field-email.php:136
|
1630 |
+
#: includes/fields/class-acf-field-number.php:145
|
1631 |
#: includes/fields/class-acf-field-password.php:80
|
1632 |
+
#: includes/fields/class-acf-field-range.php:187
|
1633 |
+
#: includes/fields/class-acf-field-text.php:137
|
1634 |
msgid "Prepend"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: includes/fields/class-acf-field-email.php:137
|
1638 |
+
#: includes/fields/class-acf-field-number.php:146
|
1639 |
#: includes/fields/class-acf-field-password.php:81
|
1640 |
+
#: includes/fields/class-acf-field-range.php:188
|
1641 |
+
#: includes/fields/class-acf-field-text.php:138
|
1642 |
msgid "Appears before the input"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: includes/fields/class-acf-field-email.php:145
|
1646 |
+
#: includes/fields/class-acf-field-number.php:154
|
1647 |
#: includes/fields/class-acf-field-password.php:89
|
1648 |
+
#: includes/fields/class-acf-field-range.php:196
|
1649 |
+
#: includes/fields/class-acf-field-text.php:146
|
1650 |
msgid "Append"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: includes/fields/class-acf-field-email.php:146
|
1654 |
+
#: includes/fields/class-acf-field-number.php:155
|
1655 |
#: includes/fields/class-acf-field-password.php:90
|
1656 |
+
#: includes/fields/class-acf-field-range.php:197
|
1657 |
+
#: includes/fields/class-acf-field-text.php:147
|
1658 |
msgid "Appears after the input"
|
1659 |
msgstr ""
|
1660 |
|
1676 |
msgid "Uploaded to this post"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: includes/fields/class-acf-field-file.php:126
|
1680 |
msgid "File name"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: includes/fields/class-acf-field-file.php:130
|
1684 |
+
#: includes/fields/class-acf-field-file.php:233
|
1685 |
+
#: includes/fields/class-acf-field-file.php:244
|
1686 |
+
#: includes/fields/class-acf-field-image.php:248
|
1687 |
+
#: includes/fields/class-acf-field-image.php:277
|
1688 |
#: pro/fields/class-acf-field-gallery.php:690
|
1689 |
#: pro/fields/class-acf-field-gallery.php:719
|
1690 |
msgid "File size"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: includes/fields/class-acf-field-file.php:139
|
1694 |
+
#: includes/fields/class-acf-field-image.php:124
|
1695 |
+
#: includes/fields/class-acf-field-link.php:140 includes/input.php:269
|
1696 |
+
#: pro/fields/class-acf-field-gallery.php:343
|
1697 |
+
#: pro/fields/class-acf-field-gallery.php:531
|
1698 |
+
msgid "Remove"
|
1699 |
+
msgstr ""
|
1700 |
+
|
1701 |
+
#: includes/fields/class-acf-field-file.php:155
|
1702 |
msgid "Add File"
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: includes/fields/class-acf-field-file.php:206
|
1706 |
msgid "File Array"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
+
#: includes/fields/class-acf-field-file.php:207
|
1710 |
msgid "File URL"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: includes/fields/class-acf-field-file.php:208
|
1714 |
msgid "File ID"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/fields/class-acf-field-file.php:215
|
1718 |
+
#: includes/fields/class-acf-field-image.php:213
|
1719 |
#: pro/fields/class-acf-field-gallery.php:655
|
1720 |
msgid "Library"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: includes/fields/class-acf-field-file.php:216
|
1724 |
+
#: includes/fields/class-acf-field-image.php:214
|
1725 |
#: pro/fields/class-acf-field-gallery.php:656
|
1726 |
msgid "Limit the media library choice"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: includes/fields/class-acf-field-file.php:221
|
1730 |
+
#: includes/fields/class-acf-field-image.php:219
|
1731 |
#: includes/locations/class-acf-location-attachment.php:101
|
1732 |
#: includes/locations/class-acf-location-comment.php:79
|
1733 |
#: includes/locations/class-acf-location-nav-menu.php:102
|
1734 |
#: includes/locations/class-acf-location-taxonomy.php:79
|
1735 |
#: includes/locations/class-acf-location-user-form.php:87
|
1736 |
+
#: includes/locations/class-acf-location-user-role.php:111
|
1737 |
#: includes/locations/class-acf-location-widget.php:83
|
1738 |
#: pro/fields/class-acf-field-gallery.php:661
|
1739 |
msgid "All"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
+
#: includes/fields/class-acf-field-file.php:222
|
1743 |
+
#: includes/fields/class-acf-field-image.php:220
|
1744 |
#: pro/fields/class-acf-field-gallery.php:662
|
1745 |
msgid "Uploaded to post"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: includes/fields/class-acf-field-file.php:229
|
1749 |
+
#: includes/fields/class-acf-field-image.php:227
|
1750 |
#: pro/fields/class-acf-field-gallery.php:669
|
1751 |
msgid "Minimum"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: includes/fields/class-acf-field-file.php:230
|
1755 |
+
#: includes/fields/class-acf-field-file.php:241
|
1756 |
msgid "Restrict which files can be uploaded"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: includes/fields/class-acf-field-file.php:240
|
1760 |
+
#: includes/fields/class-acf-field-image.php:256
|
1761 |
#: pro/fields/class-acf-field-gallery.php:698
|
1762 |
msgid "Maximum"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: includes/fields/class-acf-field-file.php:251
|
1766 |
+
#: includes/fields/class-acf-field-image.php:285
|
1767 |
#: pro/fields/class-acf-field-gallery.php:727
|
1768 |
msgid "Allowed file types"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: includes/fields/class-acf-field-file.php:252
|
1772 |
+
#: includes/fields/class-acf-field-image.php:286
|
1773 |
#: pro/fields/class-acf-field-gallery.php:728
|
1774 |
msgid "Comma separated list. Leave blank for all types"
|
1775 |
msgstr ""
|
1786 |
msgid "Sorry, this browser does not support geolocation"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: includes/fields/class-acf-field-google-map.php:113
|
1790 |
msgid "Clear location"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: includes/fields/class-acf-field-google-map.php:114
|
1794 |
msgid "Find current location"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: includes/fields/class-acf-field-google-map.php:117
|
1798 |
msgid "Search for address..."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: includes/fields/class-acf-field-google-map.php:147
|
1802 |
+
#: includes/fields/class-acf-field-google-map.php:158
|
1803 |
msgid "Center"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: includes/fields/class-acf-field-google-map.php:148
|
1807 |
+
#: includes/fields/class-acf-field-google-map.php:159
|
1808 |
msgid "Center the initial map"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: includes/fields/class-acf-field-google-map.php:170
|
1812 |
msgid "Zoom"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: includes/fields/class-acf-field-google-map.php:171
|
1816 |
msgid "Set the initial zoom level"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: includes/fields/class-acf-field-google-map.php:180
|
1820 |
+
#: includes/fields/class-acf-field-image.php:239
|
1821 |
+
#: includes/fields/class-acf-field-image.php:268
|
1822 |
+
#: includes/fields/class-acf-field-oembed.php:281
|
1823 |
#: pro/fields/class-acf-field-gallery.php:681
|
1824 |
#: pro/fields/class-acf-field-gallery.php:710
|
1825 |
msgid "Height"
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: includes/fields/class-acf-field-google-map.php:181
|
1829 |
msgid "Customise the map height"
|
1830 |
msgstr ""
|
1831 |
|
1833 |
msgid "Group"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: includes/fields/class-acf-field-group.php:459
|
1837 |
+
#: pro/fields/class-acf-field-repeater.php:389
|
1838 |
msgid "Sub Fields"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
+
#: includes/fields/class-acf-field-group.php:475
|
1842 |
+
#: pro/fields/class-acf-field-clone.php:840
|
1843 |
msgid "Specify the style used to render the selected fields"
|
1844 |
msgstr ""
|
1845 |
|
1846 |
+
#: includes/fields/class-acf-field-group.php:480
|
1847 |
+
#: pro/fields/class-acf-field-clone.php:845
|
1848 |
+
#: pro/fields/class-acf-field-flexible-content.php:612
|
1849 |
+
#: pro/fields/class-acf-field-repeater.php:458
|
1850 |
msgid "Block"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: includes/fields/class-acf-field-group.php:481
|
1854 |
+
#: pro/fields/class-acf-field-clone.php:846
|
1855 |
+
#: pro/fields/class-acf-field-flexible-content.php:611
|
1856 |
+
#: pro/fields/class-acf-field-repeater.php:457
|
1857 |
msgid "Table"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: includes/fields/class-acf-field-group.php:482
|
1861 |
+
#: pro/fields/class-acf-field-clone.php:847
|
1862 |
+
#: pro/fields/class-acf-field-flexible-content.php:613
|
1863 |
+
#: pro/fields/class-acf-field-repeater.php:459
|
1864 |
msgid "Row"
|
1865 |
msgstr ""
|
1866 |
|
1886 |
msgid "All images"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: includes/fields/class-acf-field-image.php:140
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1890 |
msgid "No image selected"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: includes/fields/class-acf-field-image.php:140
|
1894 |
msgid "Add Image"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
+
#: includes/fields/class-acf-field-image.php:194
|
1898 |
msgid "Image Array"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
+
#: includes/fields/class-acf-field-image.php:195
|
1902 |
msgid "Image URL"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: includes/fields/class-acf-field-image.php:196
|
1906 |
msgid "Image ID"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: includes/fields/class-acf-field-image.php:203
|
1910 |
msgid "Preview Size"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: includes/fields/class-acf-field-image.php:204
|
1914 |
msgid "Shown when entering data"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: includes/fields/class-acf-field-image.php:228
|
1918 |
+
#: includes/fields/class-acf-field-image.php:257
|
1919 |
#: pro/fields/class-acf-field-gallery.php:670
|
1920 |
#: pro/fields/class-acf-field-gallery.php:699
|
1921 |
msgid "Restrict which images can be uploaded"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
+
#: includes/fields/class-acf-field-image.php:231
|
1925 |
+
#: includes/fields/class-acf-field-image.php:260
|
1926 |
+
#: includes/fields/class-acf-field-oembed.php:270
|
1927 |
#: pro/fields/class-acf-field-gallery.php:673
|
1928 |
#: pro/fields/class-acf-field-gallery.php:702
|
1929 |
msgid "Width"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
#: includes/fields/class-acf-field-message.php:110
|
1959 |
+
#: includes/fields/class-acf-field-textarea.php:139
|
1960 |
msgid "New Lines"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
#: includes/fields/class-acf-field-message.php:111
|
1964 |
+
#: includes/fields/class-acf-field-textarea.php:140
|
1965 |
msgid "Controls how new lines are rendered"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
#: includes/fields/class-acf-field-message.php:115
|
1969 |
+
#: includes/fields/class-acf-field-textarea.php:144
|
1970 |
msgid "Automatically add paragraphs"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
#: includes/fields/class-acf-field-message.php:116
|
1974 |
+
#: includes/fields/class-acf-field-textarea.php:145
|
1975 |
msgid "Automatically add <br>"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
#: includes/fields/class-acf-field-message.php:117
|
1979 |
+
#: includes/fields/class-acf-field-textarea.php:146
|
1980 |
msgid "No Formatting"
|
1981 |
msgstr ""
|
1982 |
|
1992 |
msgid "Number"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/fields/class-acf-field-number.php:163
|
1996 |
+
#: includes/fields/class-acf-field-range.php:157
|
1997 |
msgid "Minimum Value"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: includes/fields/class-acf-field-number.php:172
|
2001 |
+
#: includes/fields/class-acf-field-range.php:167
|
2002 |
msgid "Maximum Value"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: includes/fields/class-acf-field-number.php:181
|
2006 |
+
#: includes/fields/class-acf-field-range.php:177
|
2007 |
msgid "Step Size"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
+
#: includes/fields/class-acf-field-number.php:219
|
2011 |
msgid "Value must be a number"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
+
#: includes/fields/class-acf-field-number.php:237
|
2015 |
#, php-format
|
2016 |
msgid "Value must be equal to or higher than %d"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: includes/fields/class-acf-field-number.php:245
|
2020 |
#, php-format
|
2021 |
msgid "Value must be equal to or lower than %d"
|
2022 |
msgstr ""
|
2025 |
msgid "oEmbed"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: includes/fields/class-acf-field-oembed.php:219
|
2029 |
msgid "Enter URL"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2033 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2034 |
msgid "Error."
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: includes/fields/class-acf-field-oembed.php:234
|
2038 |
msgid "No embed found for the given URL."
|
2039 |
msgstr ""
|
2040 |
|
2041 |
+
#: includes/fields/class-acf-field-oembed.php:267
|
2042 |
+
#: includes/fields/class-acf-field-oembed.php:278
|
2043 |
msgid "Embed Size"
|
2044 |
msgstr ""
|
2045 |
|
2071 |
msgid "All taxonomies"
|
2072 |
msgstr ""
|
2073 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2074 |
#: includes/fields/class-acf-field-page_link.php:523
|
2075 |
msgid "Allow Archives URLs"
|
2076 |
msgstr ""
|
2117 |
msgid "Save 'other' values to the field's choices"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: includes/fields/class-acf-field-range.php:25
|
2121 |
+
msgid "Range"
|
2122 |
+
msgstr ""
|
2123 |
+
|
2124 |
#: includes/fields/class-acf-field-relationship.php:25
|
2125 |
msgid "Relationship"
|
2126 |
msgstr ""
|
2164 |
|
2165 |
#: includes/fields/class-acf-field-relationship.php:658
|
2166 |
#: includes/fields/class-acf-field-taxonomy.php:28
|
2167 |
+
#: includes/fields/class-acf-field-taxonomy.php:763
|
2168 |
msgid "Taxonomy"
|
2169 |
msgstr ""
|
2170 |
|
2193 |
msgstr[1] ""
|
2194 |
|
2195 |
#: includes/fields/class-acf-field-select.php:25
|
2196 |
+
#: includes/fields/class-acf-field-taxonomy.php:785
|
2197 |
msgctxt "noun"
|
2198 |
msgid "Select"
|
2199 |
msgstr ""
|
2319 |
msgid "Use this field as an end-point and start a new group of tabs"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/fields/class-acf-field-taxonomy.php:713
|
2323 |
+
#, php-format
|
2324 |
+
msgctxt "No terms"
|
2325 |
+
msgid "No %s"
|
|
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: includes/fields/class-acf-field-taxonomy.php:732
|
2329 |
msgid "None"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: includes/fields/class-acf-field-taxonomy.php:764
|
2333 |
msgid "Select the taxonomy to be displayed"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: includes/fields/class-acf-field-taxonomy.php:773
|
2337 |
msgid "Appearance"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: includes/fields/class-acf-field-taxonomy.php:774
|
2341 |
msgid "Select the appearance of this field"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: includes/fields/class-acf-field-taxonomy.php:779
|
2345 |
msgid "Multiple Values"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: includes/fields/class-acf-field-taxonomy.php:781
|
2349 |
msgid "Multi Select"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: includes/fields/class-acf-field-taxonomy.php:783
|
2353 |
msgid "Single Value"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: includes/fields/class-acf-field-taxonomy.php:784
|
2357 |
msgid "Radio Buttons"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: includes/fields/class-acf-field-taxonomy.php:803
|
2361 |
msgid "Create Terms"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: includes/fields/class-acf-field-taxonomy.php:804
|
2365 |
msgid "Allow new terms to be created whilst editing"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: includes/fields/class-acf-field-taxonomy.php:813
|
2369 |
msgid "Save Terms"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: includes/fields/class-acf-field-taxonomy.php:814
|
2373 |
msgid "Connect selected terms to the post"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: includes/fields/class-acf-field-taxonomy.php:823
|
2377 |
msgid "Load Terms"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: includes/fields/class-acf-field-taxonomy.php:824
|
2381 |
msgid "Load value from posts terms"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: includes/fields/class-acf-field-taxonomy.php:838
|
2385 |
msgid "Term Object"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: includes/fields/class-acf-field-taxonomy.php:839
|
2389 |
msgid "Term ID"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: includes/fields/class-acf-field-taxonomy.php:898
|
2393 |
#, php-format
|
2394 |
msgid "User unable to add new %s"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: includes/fields/class-acf-field-taxonomy.php:911
|
2398 |
#, php-format
|
2399 |
msgid "%s already exists"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: includes/fields/class-acf-field-taxonomy.php:952
|
2403 |
#, php-format
|
2404 |
msgid "%s added"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: includes/fields/class-acf-field-taxonomy.php:997
|
2408 |
msgid "Add"
|
2409 |
msgstr ""
|
2410 |
|
2412 |
msgid "Text"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: includes/fields/class-acf-field-text.php:155
|
2416 |
+
#: includes/fields/class-acf-field-textarea.php:120
|
2417 |
msgid "Character Limit"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: includes/fields/class-acf-field-text.php:156
|
2421 |
+
#: includes/fields/class-acf-field-textarea.php:121
|
2422 |
msgid "Leave blank for no limit"
|
2423 |
msgstr ""
|
2424 |
|
2426 |
msgid "Text Area"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: includes/fields/class-acf-field-textarea.php:129
|
2430 |
msgid "Rows"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: includes/fields/class-acf-field-textarea.php:130
|
2434 |
msgid "Sets the textarea height"
|
2435 |
msgstr ""
|
2436 |
|
2444 |
|
2445 |
#: includes/fields/class-acf-field-true_false.php:79
|
2446 |
#: includes/fields/class-acf-field-true_false.php:159 includes/input.php:267
|
2447 |
+
#: pro/admin/views/html-settings-updates.php:89
|
2448 |
msgid "Yes"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: includes/fields/class-acf-field-true_false.php:80
|
2452 |
+
#: includes/fields/class-acf-field-true_false.php:169 includes/input.php:268
|
2453 |
+
#: pro/admin/views/html-settings-updates.php:99
|
2454 |
+
msgid "No"
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
#: includes/fields/class-acf-field-true_false.php:127
|
2458 |
msgid "Displays text alongside the checkbox"
|
2459 |
msgstr ""
|
2478 |
msgid "Url"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: includes/fields/class-acf-field-url.php:151
|
2482 |
msgid "Value must be a valid URL"
|
2483 |
msgstr ""
|
2484 |
|
2498 |
msgid "Wysiwyg Editor"
|
2499 |
msgstr ""
|
2500 |
|
2501 |
+
#: includes/fields/class-acf-field-wysiwyg.php:359
|
2502 |
msgid "Visual"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: includes/fields/class-acf-field-wysiwyg.php:360
|
2506 |
msgctxt "Name for the Text editor tab (formerly HTML)"
|
2507 |
msgid "Text"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: includes/fields/class-acf-field-wysiwyg.php:366
|
2511 |
msgid "Click to initialize TinyMCE"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: includes/fields/class-acf-field-wysiwyg.php:419
|
2515 |
msgid "Tabs"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: includes/fields/class-acf-field-wysiwyg.php:424
|
2519 |
msgid "Visual & Text"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: includes/fields/class-acf-field-wysiwyg.php:425
|
2523 |
msgid "Visual Only"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: includes/fields/class-acf-field-wysiwyg.php:426
|
2527 |
msgid "Text Only"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: includes/fields/class-acf-field-wysiwyg.php:433
|
2531 |
msgid "Toolbar"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: includes/fields/class-acf-field-wysiwyg.php:443
|
2535 |
msgid "Show Media Upload Buttons?"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: includes/fields/class-acf-field-wysiwyg.php:453
|
2539 |
msgid "Delay initialization?"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: includes/fields/class-acf-field-wysiwyg.php:454
|
2543 |
msgid "TinyMCE will not be initalized until field is clicked"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
#: includes/forms/form-comment.php:166 includes/forms/form-post.php:303
|
2547 |
+
#: pro/admin/admin-options-page.php:308
|
2548 |
msgid "Edit field group"
|
2549 |
msgstr ""
|
2550 |
|
2769 |
msgid "Advanced Custom Fields PRO"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: pro/admin/admin-options-page.php:200
|
2773 |
msgid "Publish"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: pro/admin/admin-options-page.php:206
|
2777 |
#, php-format
|
2778 |
msgid ""
|
2779 |
"No Custom Field Groups found for this options page. <a href=\"%s\">Create a "
|
2785 |
msgstr ""
|
2786 |
|
2787 |
#: pro/admin/admin-settings-updates.php:162
|
2788 |
+
#: pro/admin/views/html-settings-updates.php:13
|
2789 |
msgid "Updates"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: pro/admin/views/html-settings-updates.php:7
|
2793 |
msgid "Deactivate License"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: pro/admin/views/html-settings-updates.php:7
|
2797 |
msgid "Activate License"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: pro/admin/views/html-settings-updates.php:17
|
2801 |
msgid "License Information"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: pro/admin/views/html-settings-updates.php:20
|
2805 |
#, php-format
|
2806 |
msgid ""
|
2807 |
"To unlock updates, please enter your license key below. If you don't have a "
|
2809 |
"a>."
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: pro/admin/views/html-settings-updates.php:29
|
2813 |
msgid "License Key"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: pro/admin/views/html-settings-updates.php:61
|
2817 |
msgid "Update Information"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: pro/admin/views/html-settings-updates.php:68
|
2821 |
msgid "Current Version"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: pro/admin/views/html-settings-updates.php:76
|
2825 |
msgid "Latest Version"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: pro/admin/views/html-settings-updates.php:84
|
2829 |
msgid "Update Available"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: pro/admin/views/html-settings-updates.php:92
|
2833 |
msgid "Update Plugin"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: pro/admin/views/html-settings-updates.php:94
|
2837 |
msgid "Please enter your license key above to unlock updates"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: pro/admin/views/html-settings-updates.php:100
|
2841 |
msgid "Check Again"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: pro/admin/views/html-settings-updates.php:117
|
2845 |
msgid "Upgrade Notice"
|
2846 |
msgstr ""
|
2847 |
|
2850 |
msgid "Clone"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: pro/fields/class-acf-field-clone.php:808
|
2854 |
msgid "Select one or more fields you wish to clone"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: pro/fields/class-acf-field-clone.php:825
|
2858 |
msgid "Display"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: pro/fields/class-acf-field-clone.php:826
|
2862 |
msgid "Specify the style used to render the clone field"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: pro/fields/class-acf-field-clone.php:831
|
2866 |
msgid "Group (displays selected fields in a group within this field)"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: pro/fields/class-acf-field-clone.php:832
|
2870 |
msgid "Seamless (replaces this field with selected fields)"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: pro/fields/class-acf-field-clone.php:853
|
2874 |
#, php-format
|
2875 |
msgid "Labels will be displayed as %s"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: pro/fields/class-acf-field-clone.php:856
|
2879 |
msgid "Prefix Field Labels"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: pro/fields/class-acf-field-clone.php:867
|
2883 |
#, php-format
|
2884 |
msgid "Values will be saved as %s"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: pro/fields/class-acf-field-clone.php:870
|
2888 |
msgid "Prefix Field Names"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: pro/fields/class-acf-field-clone.php:988
|
2892 |
msgid "Unknown field"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
+
#: pro/fields/class-acf-field-clone.php:1027
|
2896 |
msgid "Unknown field group"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
+
#: pro/fields/class-acf-field-clone.php:1031
|
2900 |
#, php-format
|
2901 |
msgid "All fields from %s field group"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
#: pro/fields/class-acf-field-flexible-content.php:31
|
2905 |
#: pro/fields/class-acf-field-repeater.php:174
|
2906 |
+
#: pro/fields/class-acf-field-repeater.php:470
|
2907 |
msgid "Add Row"
|
2908 |
msgstr ""
|
2909 |
|
2952 |
msgid "Click the \"%s\" button below to start creating your layout"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: pro/fields/class-acf-field-flexible-content.php:406
|
2956 |
msgid "Add layout"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: pro/fields/class-acf-field-flexible-content.php:407
|
2960 |
msgid "Remove layout"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: pro/fields/class-acf-field-flexible-content.php:408
|
2964 |
+
#: pro/fields/class-acf-field-repeater.php:298
|
2965 |
msgid "Click to toggle"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
2969 |
msgid "Reorder Layout"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: pro/fields/class-acf-field-flexible-content.php:554
|
2973 |
msgid "Reorder"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: pro/fields/class-acf-field-flexible-content.php:555
|
2977 |
msgid "Delete Layout"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: pro/fields/class-acf-field-flexible-content.php:556
|
2981 |
msgid "Duplicate Layout"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: pro/fields/class-acf-field-flexible-content.php:557
|
2985 |
msgid "Add New Layout"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: pro/fields/class-acf-field-flexible-content.php:628
|
2989 |
msgid "Min"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: pro/fields/class-acf-field-flexible-content.php:641
|
2993 |
msgid "Max"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: pro/fields/class-acf-field-flexible-content.php:668
|
2997 |
+
#: pro/fields/class-acf-field-repeater.php:466
|
2998 |
msgid "Button Label"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: pro/fields/class-acf-field-flexible-content.php:677
|
3002 |
msgid "Minimum Layouts"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: pro/fields/class-acf-field-flexible-content.php:686
|
3006 |
msgid "Maximum Layouts"
|
3007 |
msgstr ""
|
3008 |
|
3086 |
msgid "Maximum rows reached ({max} rows)"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: pro/fields/class-acf-field-repeater.php:343
|
3090 |
msgid "Add row"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: pro/fields/class-acf-field-repeater.php:344
|
3094 |
msgid "Remove row"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: pro/fields/class-acf-field-repeater.php:419
|
3098 |
msgid "Collapsed"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: pro/fields/class-acf-field-repeater.php:420
|
3102 |
msgid "Select a sub field to show when row is collapsed"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: pro/fields/class-acf-field-repeater.php:430
|
3106 |
msgid "Minimum Rows"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: pro/fields/class-acf-field-repeater.php:440
|
3110 |
msgid "Maximum Rows"
|
3111 |
msgstr ""
|
3112 |
|
readme.txt
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
=== Advanced Custom Fields ===
|
2 |
Contributors: elliotcondon
|
3 |
-
Tags: acf, advanced, custom, field, fields,
|
4 |
Requires at least: 3.6.0
|
5 |
-
Tested up to: 4.
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
@@ -10,102 +10,75 @@ Customise WordPress with powerful, professional and intuitive fields.
|
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
Advanced Custom Fields
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
*
|
24 |
-
*
|
25 |
-
*
|
26 |
-
*
|
27 |
-
|
28 |
-
|
29 |
-
*
|
30 |
-
*
|
31 |
-
*
|
32 |
-
*
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
* Post Object (select 1 or more page, post or custom post types, api returns the selected post objects)
|
37 |
-
* Relationship (search, select and order post objects with a tidy interface, api returns the selected post objects)
|
38 |
-
* Taxonomy (select taxonomy terms with options to load, display and save, api returns the selected term objects)
|
39 |
-
* User (select 1 or more WP users, api returns the selected user objects)
|
40 |
-
* Google Maps (interactive map, api returns lat,lng,address data)
|
41 |
-
* Date Picker (jquery date picker, options for format, api returns string)
|
42 |
-
* Color Picker (WP color swatch picker)
|
43 |
-
* Tab (Group fields into tabs)
|
44 |
-
* Message (Render custom messages into the fields)
|
45 |
-
* Repeater (ability to create repeatable blocks of fields!)
|
46 |
-
* Flexible Content (ability to create flexible blocks of fields!)
|
47 |
-
* Gallery (Add, edit and order multiple images in 1 simple field)
|
48 |
-
* [Custom](https://www.advancedcustomfields.com/resources/tutorials/creating-a-new-field-type/) (Create your own field type!)
|
49 |
-
|
50 |
-
= Tested on =
|
51 |
-
* Mac Firefox :)
|
52 |
-
* Mac Safari :)
|
53 |
-
* Mac Chrome :)
|
54 |
-
* PC Safari :)
|
55 |
-
* PC Chrome :)
|
56 |
-
* PC Firefox :)
|
57 |
-
* iPhone Safari :)
|
58 |
-
* iPad Safari :)
|
59 |
-
* PC ie7 :S
|
60 |
-
|
61 |
-
= Website =
|
62 |
-
https://www.advancedcustomfields.com/
|
63 |
-
|
64 |
-
= Documentation =
|
65 |
-
* [Getting Started](https://www.advancedcustomfields.com/resources/#getting-started)
|
66 |
-
* [Field Types](https://www.advancedcustomfields.com/resources/#field-types)
|
67 |
-
* [Functions](https://www.advancedcustomfields.com/resources/#functions)
|
68 |
-
* [Actions](https://www.advancedcustomfields.com/resources/#actions)
|
69 |
-
* [Filters](https://www.advancedcustomfields.com/resources/#filters)
|
70 |
-
* [How to guides](https://www.advancedcustomfields.com/resources/#how-to)
|
71 |
-
* [Tutorials](https://www.advancedcustomfields.com/resources/#tutorials)
|
72 |
-
|
73 |
-
= Bug Submission and Forum Support =
|
74 |
-
http://support.advancedcustomfields.com/
|
75 |
-
|
76 |
-
= Please Vote and Enjoy =
|
77 |
-
Your votes really make a difference! Thanks.
|
78 |
|
79 |
|
80 |
== Installation ==
|
81 |
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
|
|
|
|
87 |
|
88 |
|
89 |
== Frequently Asked Questions ==
|
90 |
|
91 |
-
=
|
92 |
-
A. Chances are, someone else has asked it. Check out the support forum at:
|
93 |
-
http://support.advancedcustomfields.com/
|
94 |
|
|
|
95 |
|
96 |
-
|
97 |
|
98 |
-
1. Creating the Advanced Custom Fields
|
99 |
|
100 |
-
|
|
|
|
|
101 |
|
102 |
-
|
103 |
|
104 |
-
|
105 |
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
= 5.6.2 =
|
110 |
* Range field: Added new field type
|
111 |
* Clone field: Fixed bug causing value update issues for 'seamless' + widgets / nave menu items
|
1 |
=== Advanced Custom Fields ===
|
2 |
Contributors: elliotcondon
|
3 |
+
Tags: acf, advanced, custom, field, fields, form, repeater, content
|
4 |
Requires at least: 3.6.0
|
5 |
+
Tested up to: 4.9.0
|
6 |
License: GPLv2 or later
|
7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
8 |
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
Use the Advanced Custom Fields plugin to take full control of your WordPress edit screens & custom field data.
|
14 |
+
|
15 |
+
**Add fields on demand.** Our field builder allows you to quickly and easily add fields to WP edit screens with only the click of a few buttons!
|
16 |
+
|
17 |
+
**Add them anywhere.** Fields can be added all over WP including posts, users, taxonomy terms, media, comments and even custom options pages!
|
18 |
+
|
19 |
+
**Show them everywhere.** Load and display your custom field values in any theme template file with our hassle free developer friendly functions!
|
20 |
+
|
21 |
+
= Features =
|
22 |
+
* Simple & Intuitive
|
23 |
+
* Powerful Functions
|
24 |
+
* Over 30 Field Types
|
25 |
+
* Extensive Documentation
|
26 |
+
* Millions of Users
|
27 |
+
|
28 |
+
= Links =
|
29 |
+
* [Website](https://www.advancedcustomfields.com)
|
30 |
+
* [Documentation](https://www.advancedcustomfields.com/resources/)
|
31 |
+
* [Support](https://support.advancedcustomfields.com)
|
32 |
+
* [ACF PRO](https://www.advancedcustomfields.com/pro/)
|
33 |
+
|
34 |
+
= PRO =
|
35 |
+
The Advanced Custom Fields plugin is also available in a professional version which includes more fields, more functionality, and more flexibility! [Learn more](https://www.advancedcustomfields.com/pro/)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
|
38 |
== Installation ==
|
39 |
|
40 |
+
From your WordPress dashboard
|
41 |
+
|
42 |
+
1. **Visit** Plugins > Add New
|
43 |
+
2. **Search** for "Advanced Custom Fields"
|
44 |
+
3. **Activate** Advanced Custom Fields from your Plugins page
|
45 |
+
4. **Click** on the new menu item "Custom Fields" and create your first Custom Field Group!
|
46 |
+
5. **Read** the documentation to [get started](https://www.advancedcustomfields.com/resources/getting-started-with-acf/)
|
47 |
|
48 |
|
49 |
== Frequently Asked Questions ==
|
50 |
|
51 |
+
= What kind of support do you provide? =
|
|
|
|
|
52 |
|
53 |
+
**Help Desk.** Support is currently provided via our email help desk. Questions are generally answered within 24 hours, with the exception of weekends and holidays. We answer questions related to ACF, it’s usage and provide minor customization guidance. We cannot guarantee support for questions which include custom theme code, or 3rd party plugin conflicts & compatibility. [Open a Support Ticket](http://support.advancedcustomfields.com/new-ticket/)
|
54 |
|
55 |
+
**Support Forums.** Our Community Forums provide a great resource for searching and finding previously answered and asked support questions. You may create a new thread on these forums, however, it is not guaranteed that you will receive an answer from our support team. This is more of an area for developers to talk to one another, post ideas, plugins and provide basic help. [View the Support Forum](http://support.advancedcustomfields.com)
|
56 |
|
|
|
57 |
|
58 |
+
== Screenshots ==
|
59 |
+
|
60 |
+
1. Simple & Intuitive
|
61 |
|
62 |
+
2. Made for developers
|
63 |
|
64 |
+
3. All about fields
|
65 |
|
66 |
|
67 |
== Changelog ==
|
68 |
|
69 |
+
= 5.6.3 =
|
70 |
+
* Button Group field: Added new field type
|
71 |
+
* Range field: Added missing 'step' attribute to number input
|
72 |
+
* Range field: Added width to number input based on max setting
|
73 |
+
* Basic fields: Added missing 'required' attribute to inputs
|
74 |
+
* Basic fields: Removed empty attributes from inputs
|
75 |
+
* API: Fixed `get_fields()` bug ignoring fields starting with an underscore
|
76 |
+
* Core: Minor fixes and improvements
|
77 |
+
* Language: Updated Portuguese translation - thanks to Pedro Mendonça
|
78 |
+
* Language: Updated French translation - thanks to Maxime Bernard-Jacquet
|
79 |
+
* Language: Updated Finnish translation - thanks to Sauli Rajala
|
80 |
+
* Language: Updated German translation - thanks to Ralf Koller
|
81 |
+
|
82 |
= 5.6.2 =
|
83 |
* Range field: Added new field type
|
84 |
* Clone field: Fixed bug causing value update issues for 'seamless' + widgets / nave menu items
|