Version Description
- [Fixed] Relationship field: Fix bug causing sub field to not load $field object / use elements option correctly
- [Updated] Update German translations
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 4.1.1 |
Comparing to | |
See all releases |
Code changes from version 4.1.0 to 4.1.1
- acf.php +2 -2
- core/controllers/field_group.php +3 -3
- core/fields/relationship.php +39 -4
- css/input.css +1 -0
- lang/acf-de_DE.mo +0 -0
- lang/acf-de_DE.po +1419 -767
- lang/acf.pot +858 -619
- readme.txt +4 -0
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
|
6 |
-
Version: 4.1.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
@@ -66,7 +66,7 @@ class Acf
|
|
66 |
$this->settings = array(
|
67 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
68 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
69 |
-
'version' => '4.1.
|
70 |
'upgrade_version' => '3.4.1',
|
71 |
);
|
72 |
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Fully customise WordPress edit screens with powerful fields. Boasting a professional interface and a powerfull API, it’s a must have for any web developer working with WordPress. Field types include: Wysiwyg, text, textarea, image, file, select, checkbox, page link, post object, date picker, color picker, repeater, flexible content, gallery and more!
|
6 |
+
Version: 4.1.1
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
66 |
$this->settings = array(
|
67 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
68 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
69 |
+
'version' => '4.1.1',
|
70 |
'upgrade_version' => '3.4.1',
|
71 |
);
|
72 |
|
core/controllers/field_group.php
CHANGED
@@ -426,9 +426,9 @@ class acf_field_group
|
|
426 |
{
|
427 |
$current .= '<h5>' . __("Fields",'acf') . '</h5>';
|
428 |
|
429 |
-
$current .= '<div class="show-field_key">Show Field Key:';
|
430 |
-
|
431 |
-
|
432 |
$current .= '</div>';
|
433 |
|
434 |
return $current;
|
426 |
{
|
427 |
$current .= '<h5>' . __("Fields",'acf') . '</h5>';
|
428 |
|
429 |
+
$current .= '<div class="show-field_key">' . __("Show Field Key:",'acf');
|
430 |
+
$current .= '<label class="show-field_key-no"><input checked="checked" type="radio" value="0" name="show-field_key" />' . __("No",'acf') . '</label>';
|
431 |
+
$current .= '<label class="show-field_key-yes"><input type="radio" value="1" name="show-field_key" />' . __("Yes",'acf') . '</label>';
|
432 |
$current .= '</div>';
|
433 |
|
434 |
return $current;
|
core/fields/relationship.php
CHANGED
@@ -84,7 +84,8 @@ class acf_field_relationship extends acf_field
|
|
84 |
'lang' => false,
|
85 |
'update_post_meta_cache' => false,
|
86 |
'field_key' => '',
|
87 |
-
'nonce' => ''
|
|
|
88 |
);
|
89 |
|
90 |
$options = array_merge( $options, $_POST );
|
@@ -179,7 +180,17 @@ class acf_field_relationship extends acf_field
|
|
179 |
|
180 |
|
181 |
// load field
|
182 |
-
$field =
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
$field = array_merge( $this->defaults, $field );
|
184 |
|
185 |
$the_post = get_post( $options['post_id'] );
|
@@ -270,7 +281,7 @@ class acf_field_relationship extends acf_field
|
|
270 |
// vars
|
271 |
$field = array_merge($this->defaults, $field);
|
272 |
|
273 |
-
|
274 |
// no row limit?
|
275 |
if( !$field['max'] || $field['max'] < 1 )
|
276 |
{
|
@@ -301,9 +312,33 @@ class acf_field_relationship extends acf_field
|
|
301 |
$class .= ' has-' . $filter;
|
302 |
}
|
303 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
304 |
|
305 |
?>
|
306 |
-
<div class="acf_relationship<?php echo $class; ?>"
|
307 |
|
308 |
<!-- Hidden Blank default value -->
|
309 |
<input type="hidden" name="<?php echo $field['name']; ?>" value="" />
|
84 |
'lang' => false,
|
85 |
'update_post_meta_cache' => false,
|
86 |
'field_key' => '',
|
87 |
+
'nonce' => '',
|
88 |
+
'ancestor' => false,
|
89 |
);
|
90 |
|
91 |
$options = array_merge( $options, $_POST );
|
180 |
|
181 |
|
182 |
// load field
|
183 |
+
$field = array();
|
184 |
+
if( $options['ancestor'] )
|
185 |
+
{
|
186 |
+
$ancestor = apply_filters('acf/load_field', array(), $options['ancestor'] );
|
187 |
+
$field = acf_get_child_field_from_parent_field( $options['field_key'], $ancestor );
|
188 |
+
}
|
189 |
+
else
|
190 |
+
{
|
191 |
+
$field = apply_filters('acf/load_field', array(), $options['field_key'] );
|
192 |
+
}
|
193 |
+
|
194 |
$field = array_merge( $this->defaults, $field );
|
195 |
|
196 |
$the_post = get_post( $options['post_id'] );
|
281 |
// vars
|
282 |
$field = array_merge($this->defaults, $field);
|
283 |
|
284 |
+
|
285 |
// no row limit?
|
286 |
if( !$field['max'] || $field['max'] < 1 )
|
287 |
{
|
312 |
$class .= ' has-' . $filter;
|
313 |
}
|
314 |
}
|
315 |
+
|
316 |
+
$attributes = array(
|
317 |
+
'max' => $field['max'],
|
318 |
+
's' => '',
|
319 |
+
'paged' => 1,
|
320 |
+
'post_type' => implode(',', $field['post_type']),
|
321 |
+
'taxonomy' => implode(',', $field['taxonomy']),
|
322 |
+
'field_key' => $field['key']
|
323 |
+
);
|
324 |
+
|
325 |
+
|
326 |
+
// Lang
|
327 |
+
if( defined('ICL_LANGUAGE_CODE') )
|
328 |
+
{
|
329 |
+
$attributes['lang'] = ICL_LANGUAGE_CODE;
|
330 |
+
}
|
331 |
+
|
332 |
+
|
333 |
+
// parent
|
334 |
+
preg_match('/\[(field_.*?)\]/', $field['name'], $ancestor);
|
335 |
+
if( isset($ancestor[1]) && $ancestor[1] != $field['key'])
|
336 |
+
{
|
337 |
+
$attributes['ancestor'] = $ancestor[1];
|
338 |
+
}
|
339 |
|
340 |
?>
|
341 |
+
<div class="acf_relationship<?php echo $class; ?>"<?php foreach( $attributes as $k => $v ): ?> data-<?php echo $k; ?>="<?php echo $v; ?>"<?php endforeach; ?>>
|
342 |
|
343 |
<!-- Hidden Blank default value -->
|
344 |
<input type="hidden" name="<?php echo $field['name']; ?>" value="" />
|
css/input.css
CHANGED
@@ -657,6 +657,7 @@ td.acf_input-wrap {
|
|
657 |
position: relative;
|
658 |
padding: 7px 9px;
|
659 |
text-decoration: none;
|
|
|
660 |
}
|
661 |
|
662 |
.acf_relationship .relationship_list li a .relationship-item-info {
|
657 |
position: relative;
|
658 |
padding: 7px 9px;
|
659 |
text-decoration: none;
|
660 |
+
min-height: 17px;
|
661 |
}
|
662 |
|
663 |
.acf_relationship .relationship_list li a .relationship-item-info {
|
lang/acf-de_DE.mo
CHANGED
Binary file
|
lang/acf-de_DE.po
CHANGED
@@ -4,376 +4,435 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
-
"PO-Revision-Date:
|
9 |
"Last-Translator: Martin Lettner <m.lettner@gmail.com>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: de\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Poedit 1.5.
|
|
|
|
|
|
|
|
|
16 |
|
17 |
-
#: acf.php:
|
18 |
-
msgid "Custom Fields"
|
19 |
-
msgstr "Eigene Felder"
|
20 |
-
|
21 |
-
#: acf.php:307
|
22 |
msgid "Field Groups"
|
23 |
msgstr "Felder-Gruppen"
|
24 |
|
25 |
-
#: acf.php:
|
26 |
-
#: core/controllers/upgrade.php:70
|
27 |
msgid "Advanced Custom Fields"
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#: acf.php:
|
31 |
msgid "Add New"
|
32 |
msgstr "Neu erstellen"
|
33 |
|
34 |
-
#: acf.php:
|
35 |
msgid "Add New Field Group"
|
36 |
msgstr "Neue Felder-Gruppe erstellen"
|
37 |
|
38 |
-
#: acf.php:
|
39 |
msgid "Edit Field Group"
|
40 |
msgstr "Felder-Gruppe bearbeiten"
|
41 |
|
42 |
-
#: acf.php:
|
43 |
msgid "New Field Group"
|
44 |
msgstr "Neue Felder-Gruppe"
|
45 |
|
46 |
-
#: acf.php:
|
47 |
msgid "View Field Group"
|
48 |
msgstr "Felder-Gruppe anzeigen"
|
49 |
|
50 |
-
#: acf.php:
|
51 |
msgid "Search Field Groups"
|
52 |
msgstr "Felder-Gruppe suchen"
|
53 |
|
54 |
-
#: acf.php:
|
55 |
msgid "No Field Groups found"
|
56 |
msgstr "Keine Felder-Gruppen gefunden"
|
57 |
|
58 |
-
#: acf.php:
|
59 |
msgid "No Field Groups found in Trash"
|
60 |
msgstr "Keine Felder-Gruppen im Papierkorb gefunden"
|
61 |
|
62 |
-
#: acf.php:
|
|
|
|
|
|
|
|
|
63 |
msgid "Field group updated."
|
64 |
msgstr "Felder-Gruppe aktualisiert"
|
65 |
|
66 |
-
#: acf.php:
|
67 |
msgid "Custom field updated."
|
68 |
msgstr "Eigenes Feld aktualisiert"
|
69 |
|
70 |
-
#: acf.php:
|
71 |
msgid "Custom field deleted."
|
72 |
msgstr "Eigenes Feld gelöscht"
|
73 |
|
74 |
-
#: acf.php:
|
75 |
#, php-format
|
76 |
msgid "Field group restored to revision from %s"
|
77 |
msgstr "Felder-Gruppe wiederhergestellt von Revision vom %s"
|
78 |
|
79 |
-
#: acf.php:
|
80 |
msgid "Field group published."
|
81 |
msgstr "Felder-Gruppe veröffentlicht"
|
82 |
|
83 |
-
#: acf.php:
|
84 |
msgid "Field group saved."
|
85 |
msgstr "Felder-Gruppe gespeichert"
|
86 |
|
87 |
-
#: acf.php:
|
88 |
msgid "Field group submitted."
|
89 |
msgstr "Felder-Gruppe übertragen"
|
90 |
|
91 |
-
#: acf.php:
|
92 |
msgid "Field group scheduled for."
|
93 |
msgstr "Felder-Gruppe geplant für"
|
94 |
|
95 |
-
#: acf.php:
|
96 |
msgid "Field group draft updated."
|
97 |
msgstr "Entwurf der Felder-Gruppe aktualisiert"
|
98 |
|
99 |
-
#: acf.php:
|
100 |
-
msgid "Title"
|
101 |
-
msgstr "Titel"
|
102 |
-
|
103 |
-
#: acf.php:623
|
104 |
-
msgid "Error: Field Type does not exist!"
|
105 |
-
msgstr "Fehler: Feld-Typ existiert nicht!"
|
106 |
-
|
107 |
-
#: acf.php:1709
|
108 |
msgid "Thumbnail"
|
109 |
msgstr "Miniaturbild"
|
110 |
|
111 |
-
#: acf.php:
|
112 |
msgid "Medium"
|
113 |
msgstr "Mittel"
|
114 |
|
115 |
-
#: acf.php:
|
116 |
msgid "Large"
|
117 |
msgstr "Groß"
|
118 |
|
119 |
-
#: acf.php:
|
120 |
msgid "Full"
|
121 |
msgstr "Volle Größe"
|
122 |
|
123 |
-
#:
|
124 |
-
|
125 |
-
|
|
|
126 |
|
127 |
-
#:
|
128 |
-
#: core/controllers/
|
129 |
-
|
130 |
-
|
|
|
131 |
|
132 |
-
#:
|
133 |
-
msgid "
|
134 |
-
msgstr "
|
135 |
|
136 |
-
#:
|
137 |
-
|
138 |
-
|
139 |
-
msgid "Options"
|
140 |
-
msgstr "Optionen"
|
141 |
|
142 |
-
#:
|
143 |
-
msgid "
|
144 |
-
msgstr "
|
145 |
|
146 |
-
#:
|
147 |
-
msgid "
|
148 |
-
msgstr "
|
149 |
|
150 |
-
#:
|
151 |
-
msgid "
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#:
|
155 |
-
|
156 |
-
|
157 |
-
#: core/fields/relationship.php:392 core/fields/relationship.php:421
|
158 |
-
msgid "All"
|
159 |
-
msgstr "Alle"
|
160 |
|
161 |
-
#:
|
162 |
-
|
163 |
-
|
|
|
|
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#:
|
174 |
-
msgid "
|
175 |
-
msgstr "
|
176 |
|
177 |
-
#:
|
178 |
-
msgid "
|
179 |
-
msgstr "
|
180 |
|
181 |
-
#: core/
|
182 |
-
msgid "
|
183 |
-
msgstr "
|
184 |
|
185 |
-
#:
|
186 |
-
|
187 |
-
|
|
|
188 |
|
189 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
msgid ""
|
191 |
-
"
|
192 |
-
"your next web project."
|
193 |
msgstr ""
|
194 |
-
"
|
195 |
-
"
|
196 |
|
197 |
-
#:
|
198 |
-
|
199 |
-
|
|
|
200 |
|
201 |
-
#: core/
|
202 |
-
|
203 |
-
|
|
|
204 |
|
205 |
-
#: core/
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
|
209 |
-
#: core/
|
210 |
-
msgid "
|
211 |
-
msgstr "
|
212 |
|
213 |
-
#: core/
|
214 |
-
msgid "
|
215 |
-
msgstr "
|
216 |
|
217 |
-
#: core/
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
|
221 |
-
#: core/
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#: core/
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#:
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
-
#: core/
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
|
|
236 |
|
237 |
-
#: core/
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
240 |
|
241 |
-
#:
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
|
245 |
-
#:
|
246 |
-
msgid "
|
247 |
-
msgstr "
|
248 |
|
249 |
-
#:
|
250 |
-
msgid "
|
251 |
-
msgstr "
|
252 |
|
253 |
-
#: core/
|
254 |
-
msgid "
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#:
|
258 |
-
msgid "
|
259 |
-
msgstr "
|
260 |
|
261 |
-
#: core/
|
262 |
-
msgid "
|
263 |
-
msgstr "
|
|
|
|
|
|
|
|
|
264 |
|
265 |
-
#:
|
266 |
-
msgid "
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#:
|
270 |
-
msgid "
|
271 |
-
msgstr "
|
272 |
|
273 |
-
#:
|
274 |
-
msgid "
|
275 |
-
msgstr "
|
276 |
|
277 |
-
#:
|
278 |
-
msgid "
|
279 |
-
msgstr "
|
280 |
|
281 |
-
#:
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#: core/
|
286 |
-
msgid "
|
287 |
-
msgstr "
|
288 |
|
289 |
-
#: core/
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: core/controllers/
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: core/controllers/
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: core/controllers/
|
302 |
-
msgid "
|
303 |
-
msgstr "
|
|
|
|
|
304 |
|
305 |
-
#: core/controllers/
|
306 |
-
msgid "
|
307 |
-
msgstr "
|
308 |
|
309 |
-
#: core/controllers/
|
310 |
-
msgid ""
|
311 |
-
"Add-ons can be unlocked by purchasing a license key. Each key can be used on "
|
312 |
-
"multiple sites."
|
313 |
msgstr ""
|
314 |
-
"
|
315 |
-
"
|
316 |
|
317 |
-
#: core/controllers/
|
318 |
-
msgid "
|
319 |
-
msgstr "
|
|
|
320 |
|
321 |
-
#: core/controllers/
|
322 |
-
|
323 |
-
|
324 |
-
#: core/views/meta_box_fields.php:138
|
325 |
-
msgid "Field Type"
|
326 |
-
msgstr "Feld-Typ"
|
327 |
|
328 |
-
#: core/controllers/
|
329 |
-
msgid "
|
330 |
-
msgstr "
|
|
|
|
|
331 |
|
332 |
-
#: core/controllers/
|
333 |
-
msgid "
|
334 |
-
msgstr "
|
335 |
|
336 |
-
#: core/controllers/
|
337 |
-
msgid "
|
338 |
-
msgstr "
|
339 |
|
340 |
-
#: core/controllers/
|
341 |
-
|
342 |
-
|
343 |
-
msgstr "Aktiv"
|
344 |
|
345 |
-
#: core/controllers/
|
346 |
-
|
347 |
-
|
348 |
-
msgstr "Inaktiv"
|
349 |
|
350 |
-
#: core/controllers/
|
351 |
-
|
352 |
-
|
353 |
-
msgstr "Deaktivieren"
|
354 |
|
355 |
-
#: core/controllers/
|
356 |
-
|
357 |
-
|
358 |
-
msgstr "Aktivieren"
|
359 |
|
360 |
-
#: core/controllers/
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: core/controllers/
|
365 |
-
msgid "
|
366 |
-
msgstr "
|
367 |
|
368 |
-
#: core/controllers/
|
369 |
-
msgid "
|
370 |
-
msgstr "
|
371 |
|
372 |
-
#: core/controllers/
|
373 |
-
msgid "
|
374 |
-
|
|
|
|
|
|
|
|
|
375 |
|
376 |
-
#: core/controllers/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
msgid ""
|
378 |
"ACF will create a .xml export file which is compatible with the native WP "
|
379 |
"import plugin."
|
@@ -381,15 +440,7 @@ msgstr ""
|
|
381 |
"ACF erstellt eine .xml-Export-Datei welche kompatibel ist zum Standard-WP-"
|
382 |
"Import-Plugin."
|
383 |
|
384 |
-
#: core/controllers/
|
385 |
-
msgid "Instructions"
|
386 |
-
msgstr "Anweisungen"
|
387 |
-
|
388 |
-
#: core/controllers/settings.php:318
|
389 |
-
msgid "Import Field Groups"
|
390 |
-
msgstr "Felder-Gruppen importieren"
|
391 |
-
|
392 |
-
#: core/controllers/settings.php:319
|
393 |
msgid ""
|
394 |
"Imported field groups <b>will</b> appear in the list of editable field "
|
395 |
"groups. This is useful for migrating fields groups between Wp websites."
|
@@ -398,759 +449,1083 @@ msgstr ""
|
|
398 |
"Felder-Gruppen <b>angezeigt</b> um Felder-Gruppen zwischen WP-Websites "
|
399 |
"auszutauschen."
|
400 |
|
401 |
-
#: core/controllers/
|
402 |
msgid "Select field group(s) from the list and click \"Export XML\""
|
403 |
msgstr ""
|
404 |
"Wählen Sie die Felder-Gruppen aus der Liste und wählen Sie \"XML exportieren"
|
405 |
"\""
|
406 |
|
407 |
-
#: core/controllers/
|
408 |
msgid "Save the .xml file when prompted"
|
409 |
msgstr "Speichern Sie die .xml-Datei bei Nachfrage"
|
410 |
|
411 |
-
#: core/controllers/
|
412 |
msgid "Navigate to Tools » Import and select WordPress"
|
413 |
msgstr "Wechseln Sie zu Werkzeuge » Importieren und wählen Sie WordPress"
|
414 |
|
415 |
-
#: core/controllers/
|
416 |
msgid "Install WP import plugin if prompted"
|
417 |
msgstr "Installieren Sie das WP-Import-Plugin falls nötig"
|
418 |
|
419 |
-
#: core/controllers/
|
420 |
msgid "Upload and import your exported .xml file"
|
421 |
msgstr "Importieren Sie Ihre exportierte .xml-Datei"
|
422 |
|
423 |
-
#: core/controllers/
|
424 |
msgid "Select your user and ignore Import Attachments"
|
425 |
msgstr "Wählen Sie Ihren Benutzer und ignorieren Sie \"Anhänge importieren\""
|
426 |
|
427 |
-
#: core/controllers/
|
428 |
msgid "That's it! Happy WordPressing"
|
429 |
msgstr "Das war's! Viel Spaß mit Wordpress!"
|
430 |
|
431 |
-
#: core/controllers/
|
432 |
-
msgid "Export XML"
|
433 |
-
msgstr "XML exportieren"
|
434 |
-
|
435 |
-
#: core/controllers/settings.php:353
|
436 |
-
msgid "Export Field Groups to PHP"
|
437 |
-
msgstr "Felder-Gruppen als PHP exportieren"
|
438 |
-
|
439 |
-
#: core/controllers/settings.php:354
|
440 |
msgid "ACF will create the PHP code to include in your theme."
|
441 |
-
msgstr "
|
442 |
-
|
443 |
-
|
444 |
-
msgid "Register Field Groups"
|
445 |
-
msgstr "Felder-Gruppen registrieren"
|
446 |
|
447 |
-
#: core/controllers/
|
448 |
msgid ""
|
449 |
"Registered field groups <b>will not</b> appear in the list of editable field "
|
450 |
"groups. This is useful for including fields in themes."
|
451 |
msgstr ""
|
|
|
|
|
|
|
452 |
|
453 |
-
#: core/controllers/
|
454 |
msgid ""
|
455 |
"Please note that if you export and register field groups within the same WP, "
|
456 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
457 |
"the origional field group to the trash or remove the code from your "
|
458 |
"functions.php file."
|
459 |
msgstr ""
|
|
|
|
|
|
|
|
|
460 |
|
461 |
-
#: core/controllers/
|
462 |
msgid "Select field group(s) from the list and click \"Create PHP\""
|
463 |
msgstr ""
|
464 |
"Felder-Gruppen aus der Liste auswählen und \"PHP-Code erzeugen\" anklicken"
|
465 |
|
466 |
-
#: core/controllers/
|
467 |
msgid "Copy the PHP code generated"
|
468 |
msgstr "Den generierten PHP-Code kopieren"
|
469 |
|
470 |
-
#: core/controllers/
|
471 |
msgid "Paste into your functions.php file"
|
472 |
msgstr "In der Datei functions.php einfügen"
|
473 |
|
474 |
-
#: core/controllers/
|
475 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
476 |
msgstr ""
|
|
|
|
|
477 |
|
478 |
-
#: core/controllers/
|
479 |
-
msgid "
|
480 |
-
msgstr "
|
|
|
|
|
|
|
|
|
481 |
|
482 |
-
#: core/controllers/
|
483 |
-
msgid "
|
484 |
-
msgstr "
|
485 |
|
486 |
-
#: core/controllers/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
msgid ""
|
488 |
"/**\n"
|
489 |
-
" *
|
490 |
-
" *
|
491 |
-
"theme
|
492 |
-
" *
|
493 |
-
"
|
494 |
-
" *
|
495 |
-
"
|
496 |
-
" *
|
497 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
" */"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: core/controllers/
|
|
|
|
|
|
|
|
|
|
|
502 |
msgid ""
|
503 |
"/**\n"
|
504 |
-
" *
|
505 |
-
"
|
|
|
506 |
"relevant data to register a field group\n"
|
507 |
-
" *
|
508 |
-
"if the array is not compatible with ACF\n"
|
509 |
-
" * This code must run every time the functions.php file is read\n"
|
510 |
" */"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: core/controllers/
|
514 |
msgid "No field groups were selected"
|
515 |
msgstr "Keine Felder-Gruppe ausgewählt"
|
516 |
|
517 |
-
#: core/controllers/
|
518 |
-
msgid "
|
519 |
-
msgstr "
|
520 |
|
521 |
-
#: core/controllers/
|
522 |
-
msgid "
|
523 |
-
msgstr "
|
524 |
|
525 |
-
#: core/controllers/
|
526 |
-
|
527 |
-
|
|
|
|
|
|
|
|
|
|
|
528 |
|
529 |
-
#: core/controllers/
|
530 |
-
|
531 |
-
|
|
|
|
|
|
|
|
|
|
|
532 |
|
533 |
-
#: core/controllers/
|
534 |
-
msgid "
|
535 |
-
msgstr "
|
536 |
|
537 |
-
#: core/controllers/
|
538 |
-
msgid "
|
539 |
-
msgstr "
|
540 |
|
541 |
-
#: core/controllers/
|
542 |
-
msgid "
|
543 |
-
msgstr "
|
544 |
|
545 |
-
#: core/controllers/
|
546 |
-
msgid "
|
547 |
-
msgstr "
|
548 |
|
549 |
-
#: core/controllers/
|
550 |
-
msgid "
|
551 |
-
msgstr ""
|
552 |
|
553 |
-
#: core/controllers/
|
554 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
msgstr ""
|
|
|
|
|
|
|
|
|
556 |
|
557 |
-
#: core/controllers/
|
558 |
-
msgid "
|
|
|
|
|
|
|
|
|
559 |
msgstr ""
|
|
|
|
|
560 |
|
561 |
-
#: core/
|
562 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
563 |
msgstr ""
|
|
|
|
|
564 |
|
565 |
-
#: core/
|
566 |
-
|
567 |
-
|
568 |
-
msgstr "Keine Auswahlmöglichkeiten"
|
569 |
|
570 |
-
#: core/
|
571 |
-
|
572 |
-
|
573 |
-
msgstr "Auswahlmöglichkeiten"
|
574 |
|
575 |
-
#: core/
|
576 |
-
|
577 |
-
|
578 |
-
msgstr "Eine Auswahlmöglichkeit pro Zeile"
|
579 |
|
580 |
-
#: core/
|
581 |
-
|
582 |
-
|
583 |
-
msgstr "Rot"
|
584 |
|
585 |
-
#: core/
|
586 |
-
|
587 |
-
|
588 |
-
msgstr "Blau"
|
589 |
|
590 |
-
#: core/
|
591 |
-
|
592 |
-
|
593 |
-
msgstr "rot : Rot"
|
594 |
|
595 |
-
#: core/
|
596 |
-
|
597 |
-
|
598 |
-
msgstr "blau : Blau"
|
599 |
|
600 |
-
#: core/
|
601 |
-
msgid "
|
602 |
-
|
|
|
|
|
|
|
|
|
603 |
|
604 |
-
#: core/
|
605 |
-
|
606 |
-
|
607 |
-
#: core/fields/wysiwyg.php:81
|
608 |
-
msgid "Default Value"
|
609 |
-
msgstr "Standardwert"
|
610 |
|
611 |
-
#: core/
|
612 |
-
msgid "
|
613 |
-
msgstr "
|
614 |
|
615 |
-
#: core/
|
616 |
-
msgid "
|
617 |
-
msgstr "
|
618 |
|
619 |
-
#: core/
|
620 |
-
msgid "
|
621 |
-
msgstr "
|
622 |
|
623 |
-
#: core/
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
|
|
629 |
|
630 |
-
#: core/
|
631 |
-
|
632 |
-
|
633 |
-
msgstr "Entfernen"
|
634 |
|
635 |
-
#: core/
|
636 |
-
msgid "
|
637 |
-
msgstr "
|
638 |
|
639 |
-
#: core/
|
640 |
-
msgid "
|
641 |
-
msgstr "
|
642 |
|
643 |
-
#: core/
|
644 |
-
msgid "
|
645 |
-
msgstr "
|
646 |
|
647 |
-
#: core/
|
648 |
-
msgid "
|
649 |
-
msgstr "
|
650 |
|
651 |
-
#: core/
|
652 |
-
msgid "
|
653 |
-
msgstr "
|
654 |
|
655 |
-
#: core/
|
656 |
-
msgid "
|
657 |
-
msgstr "
|
658 |
|
659 |
-
#: core/
|
660 |
-
msgid "
|
661 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
|
663 |
-
#: core/
|
664 |
-
msgid "
|
665 |
-
msgstr "
|
666 |
|
667 |
-
#: core/
|
668 |
-
msgid "
|
669 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
670 |
|
671 |
-
#: core/
|
672 |
-
msgid "
|
673 |
-
msgstr "
|
674 |
|
675 |
-
#: core/
|
676 |
-
msgid "
|
677 |
-
msgstr "
|
678 |
|
679 |
-
#: core/
|
680 |
-
msgid "
|
681 |
-
msgstr "
|
682 |
|
683 |
-
#: core/
|
684 |
-
msgid "
|
685 |
-
|
|
|
|
|
|
|
|
|
686 |
|
687 |
-
#: core/
|
688 |
-
|
689 |
-
|
690 |
-
msgstr "Neues Feld"
|
691 |
|
692 |
-
#: core/
|
693 |
-
|
694 |
-
|
695 |
-
|
|
|
|
|
|
|
696 |
|
697 |
-
#: core/
|
698 |
-
msgid "
|
699 |
-
|
|
|
|
|
|
|
|
|
|
|
700 |
|
701 |
-
#: core/
|
702 |
-
msgid "
|
703 |
-
msgstr "
|
704 |
|
705 |
-
#: core/
|
706 |
-
msgid "
|
707 |
-
msgstr "
|
708 |
|
709 |
-
#: core/
|
710 |
-
msgid "
|
711 |
-
msgstr "
|
712 |
|
713 |
-
#: core/
|
714 |
-
|
715 |
-
|
716 |
-
msgstr "Löschen"
|
717 |
|
718 |
-
#: core/
|
719 |
-
msgid "
|
720 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
721 |
|
722 |
-
#: core/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
723 |
msgid "Name"
|
724 |
msgstr "Name"
|
725 |
|
726 |
-
#: core/
|
727 |
-
msgid "
|
728 |
-
msgstr "
|
729 |
|
730 |
-
#: core/
|
731 |
-
msgid "
|
732 |
-
msgstr "
|
733 |
|
734 |
-
#: core/
|
735 |
-
msgid "
|
736 |
-
msgstr "
|
737 |
|
738 |
-
#: core/
|
739 |
-
|
740 |
-
|
741 |
-
msgstr "Sortierung"
|
742 |
|
743 |
-
#: core/
|
744 |
-
|
745 |
-
|
746 |
-
msgid "Field Label"
|
747 |
-
msgstr "Bezeichnung"
|
748 |
|
749 |
-
#: core/
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
754 |
|
755 |
-
#: core/
|
756 |
msgid ""
|
757 |
-
"
|
|
|
758 |
msgstr ""
|
759 |
-
"
|
760 |
-
"
|
761 |
|
762 |
-
#: core/
|
763 |
-
|
764 |
-
|
765 |
-
msgid "Edit this Field"
|
766 |
-
msgstr "Dieses Feld bearbeiten"
|
767 |
|
768 |
-
#: core/
|
769 |
-
|
770 |
-
|
771 |
-
msgstr "Dokumentation für dieses Feld lesen"
|
772 |
|
773 |
-
#: core/
|
774 |
-
|
775 |
-
|
776 |
-
msgstr "Dokumentation"
|
777 |
|
778 |
-
#: core/
|
779 |
-
|
780 |
-
|
781 |
-
msgstr "Dieses Feld duplizieren"
|
782 |
|
783 |
-
#: core/
|
784 |
-
|
785 |
-
|
786 |
-
msgstr "Duplizieren"
|
787 |
|
788 |
-
#: core/
|
789 |
-
|
790 |
-
|
791 |
-
msgstr "Dieses Feld löschen"
|
792 |
|
793 |
-
#: core/
|
794 |
-
|
795 |
-
|
796 |
-
msgstr "Diese Bezeichnung wird im Bearbeiten-Fenster angezeigt."
|
797 |
|
798 |
-
#: core/
|
799 |
-
|
800 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
801 |
msgstr ""
|
802 |
-
"
|
|
|
803 |
|
804 |
-
#: core/fields/
|
805 |
-
|
806 |
-
|
|
|
807 |
|
808 |
-
#: core/fields/
|
809 |
-
#: core/
|
810 |
-
msgid "
|
811 |
-
msgstr "
|
812 |
|
813 |
-
#: core/fields/
|
814 |
-
|
815 |
-
|
|
|
|
|
|
|
|
|
816 |
|
817 |
-
#: core/fields/
|
818 |
-
|
819 |
-
|
820 |
-
|
|
|
821 |
|
822 |
-
#: core/fields/
|
823 |
-
msgid "
|
824 |
-
msgstr "
|
825 |
|
826 |
-
#: core/fields/
|
827 |
-
msgid "
|
828 |
-
msgstr "
|
|
|
|
|
|
|
|
|
829 |
|
830 |
-
#: core/fields/
|
831 |
-
msgid "
|
832 |
-
msgstr "
|
833 |
|
834 |
-
#: core/fields/
|
835 |
-
msgid "
|
836 |
-
msgstr "
|
837 |
|
838 |
-
#: core/fields/
|
839 |
-
msgid "
|
840 |
-
msgstr "
|
841 |
|
842 |
-
#: core/fields/
|
843 |
-
msgid "
|
844 |
-
msgstr "
|
845 |
|
846 |
-
#: core/fields/
|
847 |
-
msgid "
|
848 |
-
msgstr "
|
849 |
|
850 |
-
#: core/fields/
|
851 |
-
msgid "
|
852 |
-
msgstr "
|
853 |
|
854 |
-
#: core/fields/
|
855 |
-
msgid "
|
856 |
-
msgstr "
|
857 |
|
858 |
-
#: core/fields/
|
859 |
-
#: core/fields/
|
860 |
-
msgid "
|
861 |
-
msgstr "
|
862 |
|
863 |
-
#: core/fields/
|
864 |
-
msgid "
|
865 |
-
msgstr "
|
866 |
|
867 |
-
#: core/fields/
|
868 |
-
msgid "
|
869 |
-
msgstr "
|
870 |
|
871 |
-
#: core/fields/
|
872 |
-
msgid "
|
873 |
-
msgstr "
|
874 |
|
875 |
-
#: core/fields/
|
876 |
-
msgid "
|
877 |
-
msgstr "
|
878 |
|
879 |
-
#: core/fields/
|
880 |
-
msgid "
|
881 |
-
msgstr "
|
882 |
|
883 |
-
#: core/fields/
|
884 |
-
msgid "
|
885 |
-
msgstr "
|
886 |
|
887 |
-
#: core/fields/
|
888 |
-
msgid "
|
889 |
-
msgstr "
|
890 |
|
891 |
-
#: core/fields/
|
892 |
-
msgid "
|
893 |
-
msgstr "
|
894 |
|
895 |
-
#: core/fields/
|
896 |
-
msgid "Update
|
897 |
-
msgstr "
|
898 |
|
899 |
-
#: core/fields/image.php:
|
900 |
msgid "Image"
|
901 |
msgstr "Bild"
|
902 |
|
903 |
-
#: core/fields/image.php:
|
904 |
-
msgid "Image Updated."
|
905 |
-
msgstr "Bild aktualisiert"
|
906 |
-
|
907 |
-
#: core/fields/image.php:193
|
908 |
msgid "No image selected"
|
909 |
msgstr "Kein Bild ausgewählt"
|
910 |
|
911 |
-
#: core/fields/image.php:
|
|
|
|
|
|
|
|
|
912 |
msgid "Image Object"
|
913 |
msgstr "Bild"
|
914 |
|
915 |
-
#: core/fields/image.php:
|
916 |
msgid "Image URL"
|
917 |
msgstr "Bild-URL"
|
918 |
|
919 |
-
#: core/fields/image.php:
|
920 |
msgid "Image ID"
|
921 |
msgstr "Bild-ID"
|
922 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
923 |
#: core/fields/image.php:525
|
924 |
-
msgid "
|
|
|
|
|
|
|
|
|
925 |
msgstr "Ausgewählte Bilder hinzufügen"
|
926 |
|
927 |
-
#: core/fields/image.php:
|
928 |
msgid "Select Image"
|
929 |
msgstr "Bild auswählen"
|
930 |
|
931 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
msgid "Number"
|
933 |
msgstr "Nummer"
|
934 |
|
935 |
-
#: core/fields/page_link.php:
|
936 |
msgid "Page Link"
|
937 |
msgstr "Link zu Seite"
|
938 |
|
939 |
-
#: core/fields/page_link.php:
|
940 |
-
#: core/fields/relationship.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
msgid "Post Type"
|
942 |
msgstr "Artikel-Typ"
|
943 |
|
944 |
-
#: core/fields/page_link.php:
|
945 |
-
#: core/fields/select.php:
|
|
|
946 |
msgid "Allow Null?"
|
947 |
msgstr "Nichts (NULL) erlauben?"
|
948 |
|
949 |
-
#: core/fields/page_link.php:
|
950 |
-
#: core/fields/
|
951 |
-
#: core/fields/select.php:213 core/fields/select.php:232
|
952 |
-
#: core/fields/wysiwyg.php:124 core/fields/wysiwyg.php:145
|
953 |
-
#: core/views/meta_box_fields.php:172
|
954 |
-
msgid "Yes"
|
955 |
-
msgstr "Ja"
|
956 |
-
|
957 |
-
#: core/fields/page_link.php:108 core/fields/page_link.php:127
|
958 |
-
#: core/fields/post_object.php:278 core/fields/post_object.php:297
|
959 |
-
#: core/fields/select.php:214 core/fields/select.php:233
|
960 |
-
#: core/fields/wysiwyg.php:125 core/fields/wysiwyg.php:146
|
961 |
-
#: core/views/meta_box_fields.php:173
|
962 |
-
msgid "No"
|
963 |
-
msgstr "Nein"
|
964 |
-
|
965 |
-
#: core/fields/page_link.php:117 core/fields/post_object.php:287
|
966 |
-
#: core/fields/select.php:223
|
967 |
msgid "Select multiple values?"
|
968 |
msgstr "Mehrere Werte auswählen?"
|
969 |
|
970 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
971 |
msgid "Post Object"
|
972 |
msgstr "Artikel"
|
973 |
|
974 |
-
#: core/fields/post_object.php:
|
975 |
msgid "Filter from Taxonomy"
|
976 |
msgstr "Mit Beziehung filtern"
|
977 |
|
978 |
-
#: core/fields/radio.php:
|
979 |
msgid "Radio Button"
|
980 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
981 |
|
982 |
-
#: core/fields/radio.php:
|
983 |
msgid "Vertical"
|
984 |
msgstr "Vertikal"
|
985 |
|
986 |
-
#: core/fields/radio.php:
|
987 |
msgid "Horizontal"
|
988 |
msgstr "Horizontal"
|
989 |
|
990 |
-
#: core/fields/relationship.php:
|
991 |
msgid "Relationship"
|
992 |
msgstr "Beziehung"
|
993 |
|
994 |
-
#: core/fields/relationship.php:
|
995 |
msgid "Search"
|
996 |
msgstr "Suchen"
|
997 |
|
998 |
-
#: core/fields/relationship.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
999 |
msgid "Maximum posts"
|
1000 |
msgstr "Max. Artikel"
|
1001 |
|
1002 |
-
#: core/fields/
|
1003 |
-
|
1004 |
-
|
|
|
1005 |
|
1006 |
-
#: core/fields/
|
1007 |
-
msgid "
|
1008 |
-
msgstr "
|
1009 |
|
1010 |
-
#: core/fields/
|
1011 |
-
msgid "
|
1012 |
-
|
|
|
|
|
|
|
|
|
1013 |
|
1014 |
-
#: core/fields/
|
1015 |
-
msgid "
|
1016 |
-
msgstr "
|
|
|
|
|
1017 |
|
1018 |
-
#: core/fields/
|
1019 |
-
msgid "
|
1020 |
-
msgstr "
|
1021 |
|
1022 |
-
#: core/fields/
|
1023 |
-
|
1024 |
-
|
|
|
1025 |
|
1026 |
-
#: core/fields/
|
1027 |
-
msgid "
|
1028 |
-
msgstr "
|
1029 |
|
1030 |
-
#: core/fields/
|
1031 |
-
msgid "
|
1032 |
-
msgstr "
|
1033 |
|
1034 |
-
#: core/fields/
|
1035 |
-
msgid "
|
1036 |
-
msgstr "
|
1037 |
|
1038 |
-
#: core/fields/
|
1039 |
-
msgid "
|
1040 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
|
1042 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
1043 |
msgid "Text"
|
1044 |
msgstr "Text"
|
1045 |
|
1046 |
-
#: core/fields/text.php:
|
1047 |
msgid "Formatting"
|
1048 |
msgstr "Formatierung"
|
1049 |
|
1050 |
-
#: core/fields/text.php:
|
1051 |
msgid "Define how to render html tags"
|
1052 |
msgstr "Wie soll HTML-Inhalt dargestellt werden:"
|
1053 |
|
1054 |
-
#: core/fields/text.php:
|
1055 |
-
msgid "None"
|
1056 |
-
msgstr "Nur Text"
|
1057 |
-
|
1058 |
-
#: core/fields/text.php:90 core/fields/textarea.php:88
|
1059 |
msgid "HTML"
|
1060 |
msgstr "HTML"
|
1061 |
|
1062 |
-
#: core/fields/textarea.php:
|
1063 |
msgid "Text Area"
|
1064 |
msgstr "Textfeld"
|
1065 |
|
1066 |
-
#: core/fields/textarea.php:
|
1067 |
msgid "Define how to render html tags / new lines"
|
1068 |
msgstr "Wie sollen HTML-Inhalt und neue Zeilen dargestellt werden:"
|
1069 |
|
1070 |
-
#: core/fields/textarea.php:
|
1071 |
msgid "auto <br />"
|
1072 |
msgstr "automatisch <br /> einfügen"
|
1073 |
|
1074 |
-
#: core/fields/true_false.php:
|
1075 |
msgid "True / False"
|
1076 |
msgstr "Ja/Nein"
|
1077 |
|
1078 |
-
#: core/fields/true_false.php:
|
1079 |
-
msgid "Message"
|
1080 |
-
msgstr "Nachricht"
|
1081 |
-
|
1082 |
-
#: core/fields/true_false.php:69
|
1083 |
msgid "eg. Show extra content"
|
1084 |
msgstr "z.B. Mehr Inhalt anzeigen"
|
1085 |
|
1086 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 |
msgid "Wysiwyg Editor"
|
1088 |
msgstr "WYSIWYG-Editor"
|
1089 |
|
1090 |
-
#: core/fields/wysiwyg.php:
|
1091 |
msgid "Toolbar"
|
1092 |
msgstr "Werkzeugleiste"
|
1093 |
|
1094 |
-
#: core/fields/wysiwyg.php:
|
1095 |
-
msgid "Basic"
|
1096 |
-
msgstr "Grundlegend"
|
1097 |
-
|
1098 |
-
#: core/fields/wysiwyg.php:114
|
1099 |
msgid "Show Media Upload Buttons?"
|
1100 |
-
msgstr "
|
1101 |
|
1102 |
-
#: core/fields/
|
1103 |
-
msgid "
|
1104 |
-
msgstr "
|
1105 |
|
1106 |
-
#: core/fields/
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
"können."
|
1111 |
|
1112 |
-
#: core/fields/
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
msgstr ""
|
1117 |
-
"Deaktivieren Sie diesen Filter wenn Sie Probleme mit rekursiven Vorlagen mit "
|
1118 |
-
"Plugins oder Themse haben."
|
1119 |
|
1120 |
-
#: core/fields/date_picker/date_picker.php:
|
1121 |
-
|
1122 |
-
|
|
|
1123 |
|
1124 |
-
#: core/fields/date_picker/date_picker.php:
|
1125 |
msgid "Save format"
|
1126 |
msgstr "Daten-Format"
|
1127 |
|
1128 |
-
#: core/fields/date_picker/date_picker.php:
|
1129 |
msgid ""
|
1130 |
"This format will determin the value saved to the database and returned via "
|
1131 |
"the API"
|
1132 |
msgstr ""
|
1133 |
"Dieses Format wird in der Datenbank gespeichert und per API zurückgegeben."
|
1134 |
|
1135 |
-
#: core/fields/date_picker/date_picker.php:
|
1136 |
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1137 |
msgstr ""
|
1138 |
"\"yymmdd\" ist das gebräuchlichste Format zum Speichern. Lesen Sie mehr über"
|
1139 |
|
1140 |
-
#: core/fields/date_picker/date_picker.php:
|
1141 |
-
#: core/fields/date_picker/date_picker.php:
|
1142 |
msgid "jQuery date formats"
|
1143 |
msgstr "jQuery-Datums-Format"
|
1144 |
|
1145 |
-
#: core/fields/date_picker/date_picker.php:
|
1146 |
msgid "Display format"
|
1147 |
msgstr "Darstellungs-Format"
|
1148 |
|
1149 |
-
#: core/fields/date_picker/date_picker.php:
|
1150 |
msgid "This format will be seen by the user when entering a value"
|
1151 |
msgstr "Dieses Format wird dem Benutzer angezeigt."
|
1152 |
|
1153 |
-
#: core/fields/date_picker/date_picker.php:
|
1154 |
msgid ""
|
1155 |
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1156 |
"about"
|
@@ -1158,19 +1533,35 @@ msgstr ""
|
|
1158 |
"\"dd/mm/yy\" oder \"dd.mm.yy\" sind häufig verwendete Formate. Lesen Sie "
|
1159 |
"mehr über"
|
1160 |
|
1161 |
-
#: core/
|
1162 |
-
msgid "
|
1163 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1164 |
|
1165 |
-
#: core/views/meta_box_fields.php:
|
1166 |
msgid "Move to trash. Are you sure?"
|
1167 |
msgstr "Wirklich in den Papierkorb verschieben?"
|
1168 |
|
1169 |
-
#: core/views/meta_box_fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1170 |
msgid "Field Key"
|
1171 |
msgstr "Feld-Schlüssel"
|
1172 |
|
1173 |
-
#: core/views/meta_box_fields.php:
|
1174 |
msgid ""
|
1175 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1176 |
"first field."
|
@@ -1178,23 +1569,51 @@ msgstr ""
|
|
1178 |
"Keine Felder vorhanden. Wählen Sie <strong>+ Feld hinzufügen</strong> und "
|
1179 |
"erstellen Sie das erste Feld."
|
1180 |
|
1181 |
-
#: core/views/meta_box_fields.php:
|
1182 |
msgid "Instructions for authors. Shown when submitting data"
|
1183 |
msgstr "Anweisungen für Autoren, wird beim Absenden von Daten angezeigt."
|
1184 |
|
1185 |
-
#: core/views/meta_box_fields.php:
|
1186 |
msgid "Required?"
|
1187 |
msgstr "Erforderlich?"
|
1188 |
|
1189 |
-
#: core/views/meta_box_fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1190 |
msgid "+ Add Field"
|
1191 |
msgstr "+ Feld hinzufügen"
|
1192 |
|
1193 |
-
#: core/views/meta_box_location.php:
|
1194 |
msgid "Rules"
|
1195 |
msgstr "Regeln"
|
1196 |
|
1197 |
-
#: core/views/meta_box_location.php:
|
1198 |
msgid ""
|
1199 |
"Create a set of rules to determine which edit screens will use these "
|
1200 |
"advanced custom fields"
|
@@ -1202,91 +1621,76 @@ msgstr ""
|
|
1202 |
"Legen Sie mit diesen Regeln fest auf welchen Bearbeitungs-Seiten diese "
|
1203 |
"eigenen Felder angezeigt werden sollen."
|
1204 |
|
1205 |
-
#: core/views/meta_box_location.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1206 |
msgid "Logged in User Type"
|
1207 |
msgstr "Angemeldete Benutzer-Rolle"
|
1208 |
|
1209 |
-
#: core/views/meta_box_location.php:
|
1210 |
-
msgid "Page Specific"
|
1211 |
-
msgstr "Seiten"
|
1212 |
-
|
1213 |
-
#: core/views/meta_box_location.php:52
|
1214 |
msgid "Page"
|
1215 |
msgstr "Seite"
|
1216 |
|
1217 |
-
#: core/views/meta_box_location.php:
|
1218 |
msgid "Page Type"
|
1219 |
msgstr "Seiten-Typ"
|
1220 |
|
1221 |
-
#: core/views/meta_box_location.php:
|
1222 |
msgid "Page Parent"
|
1223 |
msgstr "Übergeordnete Seite"
|
1224 |
|
1225 |
-
#: core/views/meta_box_location.php:
|
1226 |
msgid "Page Template"
|
1227 |
msgstr "Seiten-Vorlage"
|
1228 |
|
1229 |
-
#: core/views/meta_box_location.php:
|
1230 |
-
msgid "Post Specific"
|
1231 |
-
msgstr "Artikel"
|
1232 |
-
|
1233 |
-
#: core/views/meta_box_location.php:58
|
1234 |
msgid "Post"
|
1235 |
msgstr "Artikel"
|
1236 |
|
1237 |
-
#: core/views/meta_box_location.php:
|
1238 |
msgid "Post Category"
|
1239 |
msgstr "Artikel-Kategorie"
|
1240 |
|
1241 |
-
#: core/views/meta_box_location.php:
|
1242 |
msgid "Post Format"
|
1243 |
msgstr "Artikel-Format"
|
1244 |
|
1245 |
-
#: core/views/meta_box_location.php:
|
1246 |
msgid "Post Taxonomy"
|
1247 |
msgstr "Artikel-Beziehung"
|
1248 |
|
1249 |
-
#: core/views/meta_box_location.php:
|
1250 |
msgid "Other"
|
1251 |
msgstr "Sonstige"
|
1252 |
|
1253 |
-
#: core/views/meta_box_location.php:
|
1254 |
-
msgid "Taxonomy (Add / Edit)"
|
1255 |
msgstr "Beziehung (Hinzufügen/Bearbeiten)"
|
1256 |
|
1257 |
-
#: core/views/meta_box_location.php:
|
1258 |
msgid "User (Add / Edit)"
|
1259 |
msgstr "Benutzer (Hinzufügen/Bearbeiten)"
|
1260 |
|
1261 |
-
#: core/views/meta_box_location.php:
|
1262 |
-
msgid "Media (Edit)"
|
1263 |
-
msgstr "Medien (Bearbeiten)"
|
1264 |
-
|
1265 |
-
#: core/views/meta_box_location.php:96
|
1266 |
-
msgid "is equal to"
|
1267 |
-
msgstr "ist gleich"
|
1268 |
-
|
1269 |
-
#: core/views/meta_box_location.php:97
|
1270 |
-
msgid "is not equal to"
|
1271 |
-
msgstr "ist nicht gleich"
|
1272 |
-
|
1273 |
-
#: core/views/meta_box_location.php:121
|
1274 |
-
msgid "match"
|
1275 |
-
msgstr "Von den Bedingungen müssen"
|
1276 |
-
|
1277 |
-
#: core/views/meta_box_location.php:127
|
1278 |
-
msgid "all"
|
1279 |
-
msgstr "alle"
|
1280 |
|
1281 |
-
#: core/views/meta_box_location.php:
|
1282 |
-
msgid "
|
1283 |
-
msgstr "
|
1284 |
|
1285 |
-
#: core/views/meta_box_location.php:
|
1286 |
-
msgid "
|
1287 |
-
msgstr "
|
1288 |
|
1289 |
-
#: core/views/meta_box_location.php:
|
1290 |
msgid "Unlock options add-on with an activation code"
|
1291 |
msgstr "Optionen-Add-On per Aktivierungs-Code freischalten"
|
1292 |
|
@@ -1304,10 +1708,26 @@ msgstr ""
|
|
1304 |
msgid "Position"
|
1305 |
msgstr "Position"
|
1306 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1307 |
#: core/views/meta_box_options.php:60
|
1308 |
msgid "Style"
|
1309 |
msgstr "Stil"
|
1310 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1311 |
#: core/views/meta_box_options.php:80
|
1312 |
msgid "Hide on screen"
|
1313 |
msgstr "Verstecken"
|
@@ -1315,13 +1735,16 @@ msgstr "Verstecken"
|
|
1315 |
#: core/views/meta_box_options.php:81
|
1316 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1317 |
msgstr ""
|
1318 |
-
"<strong>Ausgewählte</strong> Elemente
|
1319 |
|
1320 |
#: core/views/meta_box_options.php:82
|
1321 |
msgid ""
|
1322 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1323 |
"options will be used. (the one with the lowest order number)"
|
1324 |
msgstr ""
|
|
|
|
|
|
|
1325 |
|
1326 |
#: core/views/meta_box_options.php:92
|
1327 |
msgid "Content Editor"
|
@@ -1355,9 +1778,238 @@ msgstr "Autor"
|
|
1355 |
msgid "Format"
|
1356 |
msgstr "Format"
|
1357 |
|
1358 |
-
#: core/views/meta_box_options.php:
|
1359 |
-
msgid "
|
1360 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1361 |
|
1362 |
#~ msgid "Add Fields to Edit Screens"
|
1363 |
#~ msgstr "Felder den Bearbeiten-Fenstern hinzufügen"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Advanced Custom Fields\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2013-04-27 17:35+0100\n"
|
8 |
+
"PO-Revision-Date: 2013-04-27 19:50+0100\n"
|
9 |
"Last-Translator: Martin Lettner <m.lettner@gmail.com>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: de\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Poedit 1.5.5\n"
|
16 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
18 |
+
"X-Poedit-Basepath: .\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: acf.php:264
|
|
|
|
|
|
|
|
|
22 |
msgid "Field Groups"
|
23 |
msgstr "Felder-Gruppen"
|
24 |
|
25 |
+
#: acf.php:265 core/controllers/field_groups.php:214
|
|
|
26 |
msgid "Advanced Custom Fields"
|
27 |
+
msgstr "Eigene Felder"
|
28 |
|
29 |
+
#: acf.php:266
|
30 |
msgid "Add New"
|
31 |
msgstr "Neu erstellen"
|
32 |
|
33 |
+
#: acf.php:267
|
34 |
msgid "Add New Field Group"
|
35 |
msgstr "Neue Felder-Gruppe erstellen"
|
36 |
|
37 |
+
#: acf.php:268
|
38 |
msgid "Edit Field Group"
|
39 |
msgstr "Felder-Gruppe bearbeiten"
|
40 |
|
41 |
+
#: acf.php:269
|
42 |
msgid "New Field Group"
|
43 |
msgstr "Neue Felder-Gruppe"
|
44 |
|
45 |
+
#: acf.php:270
|
46 |
msgid "View Field Group"
|
47 |
msgstr "Felder-Gruppe anzeigen"
|
48 |
|
49 |
+
#: acf.php:271
|
50 |
msgid "Search Field Groups"
|
51 |
msgstr "Felder-Gruppe suchen"
|
52 |
|
53 |
+
#: acf.php:272
|
54 |
msgid "No Field Groups found"
|
55 |
msgstr "Keine Felder-Gruppen gefunden"
|
56 |
|
57 |
+
#: acf.php:273
|
58 |
msgid "No Field Groups found in Trash"
|
59 |
msgstr "Keine Felder-Gruppen im Papierkorb gefunden"
|
60 |
|
61 |
+
#: acf.php:386 core/views/meta_box_options.php:94
|
62 |
+
msgid "Custom Fields"
|
63 |
+
msgstr "Eigene Felder"
|
64 |
+
|
65 |
+
#: acf.php:404 acf.php:407
|
66 |
msgid "Field group updated."
|
67 |
msgstr "Felder-Gruppe aktualisiert"
|
68 |
|
69 |
+
#: acf.php:405
|
70 |
msgid "Custom field updated."
|
71 |
msgstr "Eigenes Feld aktualisiert"
|
72 |
|
73 |
+
#: acf.php:406
|
74 |
msgid "Custom field deleted."
|
75 |
msgstr "Eigenes Feld gelöscht"
|
76 |
|
77 |
+
#: acf.php:409
|
78 |
#, php-format
|
79 |
msgid "Field group restored to revision from %s"
|
80 |
msgstr "Felder-Gruppe wiederhergestellt von Revision vom %s"
|
81 |
|
82 |
+
#: acf.php:410
|
83 |
msgid "Field group published."
|
84 |
msgstr "Felder-Gruppe veröffentlicht"
|
85 |
|
86 |
+
#: acf.php:411
|
87 |
msgid "Field group saved."
|
88 |
msgstr "Felder-Gruppe gespeichert"
|
89 |
|
90 |
+
#: acf.php:412
|
91 |
msgid "Field group submitted."
|
92 |
msgstr "Felder-Gruppe übertragen"
|
93 |
|
94 |
+
#: acf.php:413
|
95 |
msgid "Field group scheduled for."
|
96 |
msgstr "Felder-Gruppe geplant für"
|
97 |
|
98 |
+
#: acf.php:414
|
99 |
msgid "Field group draft updated."
|
100 |
msgstr "Entwurf der Felder-Gruppe aktualisiert"
|
101 |
|
102 |
+
#: acf.php:549
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
msgid "Thumbnail"
|
104 |
msgstr "Miniaturbild"
|
105 |
|
106 |
+
#: acf.php:550
|
107 |
msgid "Medium"
|
108 |
msgstr "Mittel"
|
109 |
|
110 |
+
#: acf.php:551
|
111 |
msgid "Large"
|
112 |
msgstr "Groß"
|
113 |
|
114 |
+
#: acf.php:552
|
115 |
msgid "Full"
|
116 |
msgstr "Volle Größe"
|
117 |
|
118 |
+
#: add-ons/acf-options-page/acf-options-page.php:30
|
119 |
+
#: core/controllers/field_group.php:367 core/views/meta_box_location.php:167
|
120 |
+
msgid "Options"
|
121 |
+
msgstr "Optionen"
|
122 |
|
123 |
+
#: add-ons/acf-options-page/acf-options-page.php:96
|
124 |
+
#: core/controllers/addons.php:144 core/controllers/export.php:380
|
125 |
+
#: core/controllers/field_groups.php:448
|
126 |
+
msgid "Options Page"
|
127 |
+
msgstr "Optionen-Seite"
|
128 |
|
129 |
+
#: add-ons/acf-options-page/acf-options-page.php:229
|
130 |
+
msgid "Options Updated"
|
131 |
+
msgstr "Optionen aktualisiert"
|
132 |
|
133 |
+
#: add-ons/acf-options-page/acf-options-page.php:374
|
134 |
+
msgid "No Custom Field Group found for the options page"
|
135 |
+
msgstr "Keine eigene Felder-Gruppe für die Options-Seite gefunden"
|
|
|
|
|
136 |
|
137 |
+
#: add-ons/acf-options-page/acf-options-page.php:374
|
138 |
+
msgid "Create a Custom Field Group"
|
139 |
+
msgstr "Eigene Felder-Gruppe erstellen"
|
140 |
|
141 |
+
#: add-ons/acf-options-page/acf-options-page.php:385
|
142 |
+
msgid "Publish"
|
143 |
+
msgstr "Veröffentlichen"
|
144 |
|
145 |
+
#: add-ons/acf-options-page/acf-options-page.php:389
|
146 |
+
msgid "Save Options"
|
147 |
+
msgstr "Optionen speichern"
|
148 |
|
149 |
+
#: add-ons/acf-repeater/repeater.php:22
|
150 |
+
msgid "Repeater"
|
151 |
+
msgstr "Wiederholung"
|
|
|
|
|
|
|
152 |
|
153 |
+
#: add-ons/acf-repeater/repeater.php:23 add-ons/acf-repeater/repeater.php:428
|
154 |
+
#: add-ons/acf-repeater/repeater.php:640 core/fields/message.php:20
|
155 |
+
#: core/fields/radio.php:162 core/fields/tab.php:20
|
156 |
+
msgid "Layout"
|
157 |
+
msgstr "Layout"
|
158 |
|
159 |
+
#: add-ons/acf-repeater/repeater.php:160 add-ons/acf-repeater/repeater.php:405
|
160 |
+
msgid "Add Row"
|
161 |
+
msgstr "Zeile hinzufügen"
|
162 |
|
163 |
+
#: add-ons/acf-repeater/repeater.php:420 core/views/meta_box_fields.php:23
|
164 |
+
msgid "New Field"
|
165 |
+
msgstr "Neues Feld"
|
166 |
|
167 |
+
#: add-ons/acf-repeater/repeater.php:421 core/views/meta_box_fields.php:24
|
168 |
+
msgid "new_field"
|
169 |
+
msgstr "neues_Feld"
|
170 |
|
171 |
+
#: add-ons/acf-repeater/repeater.php:433
|
172 |
+
msgid "Repeater Fields"
|
173 |
+
msgstr "Wiederholungs-Felder"
|
174 |
|
175 |
+
#: add-ons/acf-repeater/repeater.php:441 core/views/meta_box_fields.php:79
|
176 |
+
msgid "Field Order"
|
177 |
+
msgstr "Sortierung"
|
178 |
|
179 |
+
#: add-ons/acf-repeater/repeater.php:442 add-ons/acf-repeater/repeater.php:490
|
180 |
+
#: core/views/meta_box_fields.php:80 core/views/meta_box_fields.php:132
|
181 |
+
msgid "Field Label"
|
182 |
+
msgstr "Bezeichnung"
|
183 |
|
184 |
+
#: add-ons/acf-repeater/repeater.php:443 add-ons/acf-repeater/repeater.php:506
|
185 |
+
#: core/views/meta_box_fields.php:81 core/views/meta_box_fields.php:148
|
186 |
+
msgid "Field Name"
|
187 |
+
msgstr "Name"
|
188 |
+
|
189 |
+
#: add-ons/acf-repeater/repeater.php:444 add-ons/acf-repeater/repeater.php:521
|
190 |
+
#: core/fields/taxonomy.php:317 core/fields/user.php:260
|
191 |
+
#: core/views/meta_box_fields.php:82 core/views/meta_box_fields.php:163
|
192 |
+
msgid "Field Type"
|
193 |
+
msgstr "Feld-Typ"
|
194 |
+
|
195 |
+
#: add-ons/acf-repeater/repeater.php:452
|
196 |
msgid ""
|
197 |
+
"No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
|
|
198 |
msgstr ""
|
199 |
+
"Keine Felder vorhanden. Klicken Sie die Schaltfläche zum Erstellen neuer "
|
200 |
+
"Felder um zu beginnen."
|
201 |
|
202 |
+
#: add-ons/acf-repeater/repeater.php:468 add-ons/acf-repeater/repeater.php:471
|
203 |
+
#: core/views/meta_box_fields.php:110 core/views/meta_box_fields.php:113
|
204 |
+
msgid "Edit this Field"
|
205 |
+
msgstr "Dieses Feld bearbeiten"
|
206 |
|
207 |
+
#: add-ons/acf-repeater/repeater.php:471 core/fields/file.php:76
|
208 |
+
#: core/fields/image.php:76 core/views/meta_box_fields.php:113
|
209 |
+
msgid "Edit"
|
210 |
+
msgstr "Bearbeiten"
|
211 |
|
212 |
+
#: add-ons/acf-repeater/repeater.php:472 core/views/meta_box_fields.php:114
|
213 |
+
msgid "Read documentation for this field"
|
214 |
+
msgstr "Dokumentation für dieses Feld"
|
215 |
|
216 |
+
#: add-ons/acf-repeater/repeater.php:472 core/views/meta_box_fields.php:114
|
217 |
+
msgid "Docs"
|
218 |
+
msgstr "Hilfe"
|
219 |
|
220 |
+
#: add-ons/acf-repeater/repeater.php:473 core/views/meta_box_fields.php:115
|
221 |
+
msgid "Duplicate this Field"
|
222 |
+
msgstr "Dieses Feld duplizieren"
|
223 |
|
224 |
+
#: add-ons/acf-repeater/repeater.php:473 core/views/meta_box_fields.php:115
|
225 |
+
msgid "Duplicate"
|
226 |
+
msgstr "Duplizieren"
|
227 |
|
228 |
+
#: add-ons/acf-repeater/repeater.php:474 core/views/meta_box_fields.php:116
|
229 |
+
msgid "Delete this Field"
|
230 |
+
msgstr "Dieses Feld löschen"
|
231 |
|
232 |
+
#: add-ons/acf-repeater/repeater.php:474 core/views/meta_box_fields.php:116
|
233 |
+
msgid "Delete"
|
234 |
+
msgstr "Löschen"
|
235 |
|
236 |
+
#: add-ons/acf-repeater/repeater.php:491 core/views/meta_box_fields.php:133
|
237 |
+
msgid "This is the name which will appear on the EDIT page"
|
238 |
+
msgstr "Diese Bezeichnung wird im Bearbeiten-Fenster angezeigt."
|
239 |
|
240 |
+
#: add-ons/acf-repeater/repeater.php:507 core/views/meta_box_fields.php:149
|
241 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
242 |
+
msgstr ""
|
243 |
+
"Ein Wort, keine Leerzeichen, Unterstrich (_) und Bindestrich (-) erlaubt."
|
244 |
|
245 |
+
#: add-ons/acf-repeater/repeater.php:536 core/views/meta_box_fields.php:176
|
246 |
+
msgid "Field Instructions"
|
247 |
+
msgstr "Feld-Anweisungen"
|
248 |
|
249 |
+
#: add-ons/acf-repeater/repeater.php:556
|
250 |
+
msgid "Column Width"
|
251 |
+
msgstr "Spaltenbreite"
|
252 |
|
253 |
+
#: add-ons/acf-repeater/repeater.php:557
|
254 |
+
msgid "Leave blank for auto"
|
255 |
+
msgstr "Leer lassen für automatisch"
|
256 |
|
257 |
+
#: add-ons/acf-repeater/repeater.php:584
|
258 |
+
msgid "Save Field"
|
259 |
+
msgstr "Feld speichern"
|
260 |
|
261 |
+
#: add-ons/acf-repeater/repeater.php:589 core/views/meta_box_fields.php:306
|
262 |
+
msgid "Close Field"
|
263 |
+
msgstr "Feld schließen"
|
264 |
|
265 |
+
#: add-ons/acf-repeater/repeater.php:589
|
266 |
+
msgid "Close Sub Field"
|
267 |
+
msgstr "Unter-Feld schließen"
|
268 |
|
269 |
+
#: add-ons/acf-repeater/repeater.php:604 core/views/meta_box_fields.php:319
|
270 |
+
msgid "Drag and drop to reorder"
|
271 |
+
msgstr "Mit Drag&Drop anordnen"
|
272 |
+
|
273 |
+
#: add-ons/acf-repeater/repeater.php:605
|
274 |
+
msgid "+ Add Sub Field"
|
275 |
+
msgstr "+ Wiederholungs-Feld hinzufügen"
|
276 |
|
277 |
+
#: add-ons/acf-repeater/repeater.php:612
|
278 |
+
msgid "Minimum Rows"
|
279 |
+
msgstr "Min. Anzahl Zeilen"
|
280 |
|
281 |
+
#: add-ons/acf-repeater/repeater.php:626
|
282 |
+
msgid "Maximum Rows"
|
283 |
+
msgstr "Max. Anzahl Zeilen"
|
284 |
|
285 |
+
#: add-ons/acf-repeater/repeater.php:650
|
286 |
+
msgid "Table (default)"
|
287 |
+
msgstr "Tabelle (Standard)"
|
288 |
|
289 |
+
#: add-ons/acf-repeater/repeater.php:651
|
290 |
+
msgid "Row"
|
291 |
+
msgstr "Zeile"
|
292 |
|
293 |
+
#: add-ons/acf-repeater/repeater.php:659
|
294 |
+
msgid "Button Label"
|
295 |
+
msgstr "Beschriftung der Schalftfläche"
|
296 |
|
297 |
+
#: core/actions/export.php:23 core/views/meta_box_fields.php:57
|
298 |
+
msgid "Error"
|
299 |
+
msgstr "Fehler"
|
300 |
|
301 |
+
#: core/actions/export.php:30
|
302 |
+
msgid "No ACF groups selected"
|
303 |
+
msgstr "Keine ACF-Gruppen ausgewählt"
|
304 |
|
305 |
+
#: core/controllers/addons.php:42 core/controllers/field_groups.php:311
|
306 |
+
msgid "Add-ons"
|
307 |
+
msgstr "Zusatz-Module"
|
308 |
|
309 |
+
#: core/controllers/addons.php:130 core/controllers/field_groups.php:432
|
310 |
+
msgid "Repeater Field"
|
311 |
+
msgstr "Wiederholungs-Feld"
|
312 |
|
313 |
+
#: core/controllers/addons.php:131
|
314 |
+
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
315 |
+
msgstr ""
|
316 |
+
"Ermöglicht das Erstellen von wiederholbaren Feldern innerhalb einer Felder-"
|
317 |
+
"Gruppe!"
|
318 |
|
319 |
+
#: core/controllers/addons.php:137 core/controllers/field_groups.php:440
|
320 |
+
msgid "Gallery Field"
|
321 |
+
msgstr "Galerie-Feld"
|
322 |
|
323 |
+
#: core/controllers/addons.php:138
|
324 |
+
msgid "Create image galleries in a simple and intuitive interface!"
|
|
|
|
|
325 |
msgstr ""
|
326 |
+
"Erstellen Sie Bildergalerien in einer einfachen und intuitiven "
|
327 |
+
"Benutzeroberfläche!"
|
328 |
|
329 |
+
#: core/controllers/addons.php:145
|
330 |
+
msgid "Create global data to use throughout your website!"
|
331 |
+
msgstr ""
|
332 |
+
"Erstellen Sie Optionen, die Sie überall in Ihrem Theme verwenden können!"
|
333 |
|
334 |
+
#: core/controllers/addons.php:151
|
335 |
+
msgid "Flexible Content Field"
|
336 |
+
msgstr "Flexibles Inhalts-Feld"
|
|
|
|
|
|
|
337 |
|
338 |
+
#: core/controllers/addons.php:152
|
339 |
+
msgid "Create unique designs with a flexible content layout manager!"
|
340 |
+
msgstr ""
|
341 |
+
"Erstellen Sie einzigartige Designs mit einem flexiblen Content-Layout-"
|
342 |
+
"Manager!"
|
343 |
|
344 |
+
#: core/controllers/addons.php:161
|
345 |
+
msgid "Gravity Forms Field"
|
346 |
+
msgstr "Gravity Forms Feld"
|
347 |
|
348 |
+
#: core/controllers/addons.php:162
|
349 |
+
msgid "Creates a select field populated with Gravity Forms!"
|
350 |
+
msgstr "Erstellt ein Auswahlfeld mit Formularen aus Gravity Forms!"
|
351 |
|
352 |
+
#: core/controllers/addons.php:168
|
353 |
+
msgid "Date & Time Picker"
|
354 |
+
msgstr "Datum & Zeit Auswahl"
|
|
|
355 |
|
356 |
+
#: core/controllers/addons.php:169
|
357 |
+
msgid "jQuery date & time picker"
|
358 |
+
msgstr "Ein jQuery Datum & Zeit Modul"
|
|
|
359 |
|
360 |
+
#: core/controllers/addons.php:175
|
361 |
+
msgid "Location Field"
|
362 |
+
msgstr "Adress-Felder"
|
|
|
363 |
|
364 |
+
#: core/controllers/addons.php:176
|
365 |
+
msgid "Find addresses and coordinates of a desired location"
|
366 |
+
msgstr "Finden Sie Adressen und Koordinaten eines Ortes!"
|
|
|
367 |
|
368 |
+
#: core/controllers/addons.php:182
|
369 |
+
msgid "Contact Form 7 Field"
|
370 |
+
msgstr "Contact Form 7 Felder"
|
371 |
|
372 |
+
#: core/controllers/addons.php:183
|
373 |
+
msgid "Assign one or more contact form 7 forms to a post"
|
374 |
+
msgstr "Binden Sie Contact Form 7 Formulare ein!"
|
375 |
|
376 |
+
#: core/controllers/addons.php:193
|
377 |
+
msgid "Advanced Custom Fields Add-Ons"
|
378 |
+
msgstr "Eigene Felder Zusatz-Module"
|
379 |
|
380 |
+
#: core/controllers/addons.php:196
|
381 |
+
msgid ""
|
382 |
+
"The following Add-ons are available to increase the functionality of the "
|
383 |
+
"Advanced Custom Fields plugin."
|
384 |
+
msgstr ""
|
385 |
+
"Die folgenden Zusatz-Module erweitern die Funktionalität des Eigene Felder "
|
386 |
+
"Plugins."
|
387 |
|
388 |
+
#: core/controllers/addons.php:197
|
389 |
+
msgid ""
|
390 |
+
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
391 |
+
"included in your theme (does not receive updates)."
|
392 |
+
msgstr ""
|
393 |
+
"Jedes Zusatz-Modul kann als eigenes Plugin installiert werden (inkl. Update-"
|
394 |
+
"Möglichkeit) oder kann in ein Theme eingebunden werden (ohne Update-"
|
395 |
+
"Möglichkeit)."
|
396 |
+
|
397 |
+
#: core/controllers/addons.php:218 core/controllers/addons.php:239
|
398 |
+
msgid "Installed"
|
399 |
+
msgstr "Installiert"
|
400 |
+
|
401 |
+
#: core/controllers/addons.php:220
|
402 |
+
msgid "Purchase & Install"
|
403 |
+
msgstr "Kaufen & Installieren"
|
404 |
+
|
405 |
+
#: core/controllers/addons.php:241 core/controllers/field_groups.php:425
|
406 |
+
#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
|
407 |
+
#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
|
408 |
+
msgid "Download"
|
409 |
+
msgstr "Herunterladen"
|
410 |
+
|
411 |
+
#: core/controllers/export.php:50 core/controllers/export.php:159
|
412 |
+
msgid "Export"
|
413 |
+
msgstr "Export"
|
414 |
+
|
415 |
+
#: core/controllers/export.php:216
|
416 |
+
msgid "Export Field Groups"
|
417 |
+
msgstr "Felder-Gruppen exportieren"
|
418 |
+
|
419 |
+
#: core/controllers/export.php:221
|
420 |
+
msgid "Field Groups"
|
421 |
+
msgstr "Felder-Gruppe"
|
422 |
+
|
423 |
+
#: core/controllers/export.php:222
|
424 |
+
msgid "Select the field groups to be exported"
|
425 |
+
msgstr "Auswahl der zu exportierenden Felder-Gruppen"
|
426 |
+
|
427 |
+
#: core/controllers/export.php:239 core/controllers/export.php:252
|
428 |
+
msgid "Export to XML"
|
429 |
+
msgstr "Export als XML"
|
430 |
+
|
431 |
+
#: core/controllers/export.php:242 core/controllers/export.php:267
|
432 |
+
msgid "Export to PHP"
|
433 |
+
msgstr "Export als PHP"
|
434 |
+
|
435 |
+
#: core/controllers/export.php:253
|
436 |
msgid ""
|
437 |
"ACF will create a .xml export file which is compatible with the native WP "
|
438 |
"import plugin."
|
440 |
"ACF erstellt eine .xml-Export-Datei welche kompatibel ist zum Standard-WP-"
|
441 |
"Import-Plugin."
|
442 |
|
443 |
+
#: core/controllers/export.php:254
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
msgid ""
|
445 |
"Imported field groups <b>will</b> appear in the list of editable field "
|
446 |
"groups. This is useful for migrating fields groups between Wp websites."
|
449 |
"Felder-Gruppen <b>angezeigt</b> um Felder-Gruppen zwischen WP-Websites "
|
450 |
"auszutauschen."
|
451 |
|
452 |
+
#: core/controllers/export.php:256
|
453 |
msgid "Select field group(s) from the list and click \"Export XML\""
|
454 |
msgstr ""
|
455 |
"Wählen Sie die Felder-Gruppen aus der Liste und wählen Sie \"XML exportieren"
|
456 |
"\""
|
457 |
|
458 |
+
#: core/controllers/export.php:257
|
459 |
msgid "Save the .xml file when prompted"
|
460 |
msgstr "Speichern Sie die .xml-Datei bei Nachfrage"
|
461 |
|
462 |
+
#: core/controllers/export.php:258
|
463 |
msgid "Navigate to Tools » Import and select WordPress"
|
464 |
msgstr "Wechseln Sie zu Werkzeuge » Importieren und wählen Sie WordPress"
|
465 |
|
466 |
+
#: core/controllers/export.php:259
|
467 |
msgid "Install WP import plugin if prompted"
|
468 |
msgstr "Installieren Sie das WP-Import-Plugin falls nötig"
|
469 |
|
470 |
+
#: core/controllers/export.php:260
|
471 |
msgid "Upload and import your exported .xml file"
|
472 |
msgstr "Importieren Sie Ihre exportierte .xml-Datei"
|
473 |
|
474 |
+
#: core/controllers/export.php:261
|
475 |
msgid "Select your user and ignore Import Attachments"
|
476 |
msgstr "Wählen Sie Ihren Benutzer und ignorieren Sie \"Anhänge importieren\""
|
477 |
|
478 |
+
#: core/controllers/export.php:262
|
479 |
msgid "That's it! Happy WordPressing"
|
480 |
msgstr "Das war's! Viel Spaß mit Wordpress!"
|
481 |
|
482 |
+
#: core/controllers/export.php:268
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
msgid "ACF will create the PHP code to include in your theme."
|
484 |
+
msgstr ""
|
485 |
+
"ACF erstellt einen PHP-Code der in einem Theme verwendet werden kann. Diese "
|
486 |
+
"Felder-Gruppen werden als <i>Registrierte Felder-Gruppen</i> bezeichnet."
|
|
|
|
|
487 |
|
488 |
+
#: core/controllers/export.php:269 core/controllers/export.php:310
|
489 |
msgid ""
|
490 |
"Registered field groups <b>will not</b> appear in the list of editable field "
|
491 |
"groups. This is useful for including fields in themes."
|
492 |
msgstr ""
|
493 |
+
"<i>Registrierte Felder-Gruppen</i> <b>werden nicht</b> in der Liste der zu "
|
494 |
+
"bearbeitenden Felder-Gruppen angezeigt. Dies ist besonders für die "
|
495 |
+
"Einbindung in Themes nützlich."
|
496 |
|
497 |
+
#: core/controllers/export.php:270 core/controllers/export.php:311
|
498 |
msgid ""
|
499 |
"Please note that if you export and register field groups within the same WP, "
|
500 |
"you will see duplicate fields on your edit screens. To fix this, please move "
|
501 |
"the origional field group to the trash or remove the code from your "
|
502 |
"functions.php file."
|
503 |
msgstr ""
|
504 |
+
"Wenn Sie die exportierte Felder-Gruppe und gleichzeitig die <i>Registrierte "
|
505 |
+
"Felder-Gruppe</i> verwenden, werden die Felder im Bearbeitungs-Fenster "
|
506 |
+
"doppelt angezeigt. Um dies zu verhindern, löschen Sie bitte die Felder-"
|
507 |
+
"Gruppe oder entfernen den PHP-Code aus der Datei functions.php."
|
508 |
|
509 |
+
#: core/controllers/export.php:272
|
510 |
msgid "Select field group(s) from the list and click \"Create PHP\""
|
511 |
msgstr ""
|
512 |
"Felder-Gruppen aus der Liste auswählen und \"PHP-Code erzeugen\" anklicken"
|
513 |
|
514 |
+
#: core/controllers/export.php:273 core/controllers/export.php:302
|
515 |
msgid "Copy the PHP code generated"
|
516 |
msgstr "Den generierten PHP-Code kopieren"
|
517 |
|
518 |
+
#: core/controllers/export.php:274 core/controllers/export.php:303
|
519 |
msgid "Paste into your functions.php file"
|
520 |
msgstr "In der Datei functions.php einfügen"
|
521 |
|
522 |
+
#: core/controllers/export.php:275 core/controllers/export.php:304
|
523 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
524 |
msgstr ""
|
525 |
+
"Um ein Zusatz-Modul zu aktivieren, editieren Sie den PHP-Code in den ersten "
|
526 |
+
"Zeilen des PHP-Codes in der Datei functions.php"
|
527 |
|
528 |
+
#: core/controllers/export.php:295
|
529 |
+
msgid "Export Field Groups to PHP"
|
530 |
+
msgstr "Felder-Gruppen als PHP exportieren"
|
531 |
+
|
532 |
+
#: core/controllers/export.php:300 core/fields/tab.php:64
|
533 |
+
msgid "Instructions"
|
534 |
+
msgstr "Anweisungen"
|
535 |
|
536 |
+
#: core/controllers/export.php:309
|
537 |
+
msgid "Notes"
|
538 |
+
msgstr "Hinweise"
|
539 |
|
540 |
+
#: core/controllers/export.php:316
|
541 |
+
msgid "Include in theme"
|
542 |
+
msgstr "Im Theme einbinden"
|
543 |
+
|
544 |
+
#: core/controllers/export.php:317
|
545 |
+
msgid ""
|
546 |
+
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
547 |
+
"move the ACF plugin inside your theme and add the following code to your "
|
548 |
+
"functions.php file:"
|
549 |
+
msgstr ""
|
550 |
+
"Das Eigene Felder Plugin kann in ein Theme eingebunden werden. Kopieren Sie "
|
551 |
+
"den Ordner des Eigene Felder Plugins in Ihren Theme Ordner und fügen den "
|
552 |
+
"folgenden Code in Ihre Datei functions.php:"
|
553 |
+
|
554 |
+
#: core/controllers/export.php:323
|
555 |
+
msgid ""
|
556 |
+
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
557 |
+
"to enable lite mode. Add the following code to you functions.php file "
|
558 |
+
"<b>before</b> the include_once code:"
|
559 |
+
msgstr ""
|
560 |
+
"Um alle Benutzeroberflächen des Eigene Felder Plugins zu entfernen, können "
|
561 |
+
"Sie eine Konstante verwenden, um den <i>Lite-Modus</i> zu aktivieren. Fügen "
|
562 |
+
"Sie dazu den folgenden PHP-Code in die Datei functions.php <b>vor dem</b> "
|
563 |
+
"<i>include_once</i> PHP-Code ein."
|
564 |
+
|
565 |
+
#: core/controllers/export.php:331
|
566 |
+
msgid "Back to export"
|
567 |
+
msgstr "Zurück zum Export"
|
568 |
+
|
569 |
+
#: core/controllers/export.php:352
|
570 |
msgid ""
|
571 |
"/**\n"
|
572 |
+
" * Install Add-ons\n"
|
573 |
+
" * \n"
|
574 |
+
" * The following code will include all 4 premium Add-Ons in your theme.\n"
|
575 |
+
" * Please do not attempt to include a file which does not exist. This will "
|
576 |
+
"produce an error.\n"
|
577 |
+
" * \n"
|
578 |
+
" * All fields must be included during the 'acf/register_fields' action.\n"
|
579 |
+
" * Other types of Add-ons (like the options page) can be included outside "
|
580 |
+
"of this action.\n"
|
581 |
+
" * \n"
|
582 |
+
" * The following code assumes you have a folder 'add-ons' inside your "
|
583 |
+
"theme.\n"
|
584 |
+
" *\n"
|
585 |
+
" * IMPORTANT\n"
|
586 |
+
" * Add-ons may be included in a premium theme as outlined in the terms and "
|
587 |
+
"conditions.\n"
|
588 |
+
" * However, they are NOT to be included in a premium / free plugin.\n"
|
589 |
+
" * For more information, please read http://www.advancedcustomfields.com/"
|
590 |
+
"terms-conditions/\n"
|
591 |
" */"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: core/controllers/export.php:370 core/controllers/field_group.php:365
|
595 |
+
#: core/controllers/field_group.php:427 core/controllers/field_groups.php:148
|
596 |
+
msgid "Fields"
|
597 |
+
msgstr "Felder"
|
598 |
+
|
599 |
+
#: core/controllers/export.php:384
|
600 |
msgid ""
|
601 |
"/**\n"
|
602 |
+
" * Register Field Groups\n"
|
603 |
+
" *\n"
|
604 |
+
" * The register_field_group function accepts 1 array which holds the "
|
605 |
"relevant data to register a field group\n"
|
606 |
+
" * You may edit the array as you see fit. However, this may result in "
|
607 |
+
"errors if the array is not compatible with ACF\n"
|
|
|
608 |
" */"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: core/controllers/export.php:435
|
612 |
msgid "No field groups were selected"
|
613 |
msgstr "Keine Felder-Gruppe ausgewählt"
|
614 |
|
615 |
+
#: core/controllers/field_group.php:366
|
616 |
+
msgid "Location"
|
617 |
+
msgstr "Position"
|
618 |
|
619 |
+
#: core/controllers/field_group.php:429
|
620 |
+
msgid "Show Field Key:"
|
621 |
+
msgstr "Zeige Feld-Schlüssel:"
|
622 |
|
623 |
+
#: core/controllers/field_group.php:430 core/fields/page_link.php:113
|
624 |
+
#: core/fields/page_link.php:134 core/fields/post_object.php:288
|
625 |
+
#: core/fields/post_object.php:309 core/fields/select.php:230
|
626 |
+
#: core/fields/select.php:249 core/fields/taxonomy.php:352
|
627 |
+
#: core/fields/user.php:294 core/fields/wysiwyg.php:236
|
628 |
+
#: core/views/meta_box_fields.php:198 core/views/meta_box_fields.php:221
|
629 |
+
msgid "No"
|
630 |
+
msgstr "Nein"
|
631 |
|
632 |
+
#: core/controllers/field_group.php:431 core/fields/page_link.php:112
|
633 |
+
#: core/fields/page_link.php:133 core/fields/post_object.php:287
|
634 |
+
#: core/fields/post_object.php:308 core/fields/select.php:229
|
635 |
+
#: core/fields/select.php:248 core/fields/taxonomy.php:351
|
636 |
+
#: core/fields/user.php:293 core/fields/wysiwyg.php:235
|
637 |
+
#: core/views/meta_box_fields.php:197 core/views/meta_box_fields.php:220
|
638 |
+
msgid "Yes"
|
639 |
+
msgstr "Ja"
|
640 |
|
641 |
+
#: core/controllers/field_group.php:608
|
642 |
+
msgid "Front Page"
|
643 |
+
msgstr "Startseite"
|
644 |
|
645 |
+
#: core/controllers/field_group.php:609
|
646 |
+
msgid "Posts Page"
|
647 |
+
msgstr "Beitragseite"
|
648 |
|
649 |
+
#: core/controllers/field_group.php:610
|
650 |
+
msgid "Top Level Page (parent of 0)"
|
651 |
+
msgstr "Hauptseite (keine Übergeordnete)"
|
652 |
|
653 |
+
#: core/controllers/field_group.php:611
|
654 |
+
msgid "Parent Page (has children)"
|
655 |
+
msgstr "Eltern-Seite (hat Unterseiten)"
|
656 |
|
657 |
+
#: core/controllers/field_group.php:612
|
658 |
+
msgid "Child Page (has parent)"
|
659 |
+
msgstr "Kinder-Seite (hat übergeordnete Seite)"
|
660 |
|
661 |
+
#: core/controllers/field_group.php:620
|
662 |
+
msgid "Default Template"
|
663 |
+
msgstr "Standard-Vorlage"
|
664 |
+
|
665 |
+
#: core/controllers/field_group.php:712 core/controllers/field_group.php:733
|
666 |
+
#: core/controllers/field_group.php:740 core/fields/page_link.php:84
|
667 |
+
#: core/fields/post_object.php:234 core/fields/post_object.php:258
|
668 |
+
#: core/fields/relationship.php:483 core/fields/relationship.php:507
|
669 |
+
#: core/fields/user.php:238
|
670 |
+
msgid "All"
|
671 |
+
msgstr "Alle"
|
672 |
+
|
673 |
+
#: core/controllers/field_groups.php:147
|
674 |
+
msgid "Title"
|
675 |
+
msgstr "Titel"
|
676 |
+
|
677 |
+
#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
|
678 |
+
msgid "Changelog"
|
679 |
+
msgstr "Versionshinweise"
|
680 |
+
|
681 |
+
#: core/controllers/field_groups.php:217
|
682 |
+
msgid "See what's new in"
|
683 |
+
msgstr "Neuerungen von"
|
684 |
+
|
685 |
+
#: core/controllers/field_groups.php:217
|
686 |
+
msgid "version"
|
687 |
+
msgstr "Version"
|
688 |
+
|
689 |
+
#: core/controllers/field_groups.php:219
|
690 |
+
msgid "Resources"
|
691 |
+
msgstr "Ressourcen (engl.)"
|
692 |
+
|
693 |
+
#: core/controllers/field_groups.php:221
|
694 |
+
msgid "Getting Started"
|
695 |
+
msgstr "Erste Schritte"
|
696 |
+
|
697 |
+
#: core/controllers/field_groups.php:222
|
698 |
+
msgid "Field Types"
|
699 |
+
msgstr "Feld Typen"
|
700 |
+
|
701 |
+
#: core/controllers/field_groups.php:223
|
702 |
+
msgid "Functions"
|
703 |
+
msgstr "Funktionen"
|
704 |
+
|
705 |
+
#: core/controllers/field_groups.php:224
|
706 |
+
msgid "Actions"
|
707 |
+
msgstr "Aktionen"
|
708 |
+
|
709 |
+
#: core/controllers/field_groups.php:225 core/fields/relationship.php:526
|
710 |
+
msgid "Filters"
|
711 |
+
msgstr "Filter"
|
712 |
+
|
713 |
+
#: core/controllers/field_groups.php:226
|
714 |
+
msgid "'How to' guides"
|
715 |
+
msgstr "'How to' Anleitungen"
|
716 |
+
|
717 |
+
#: core/controllers/field_groups.php:227
|
718 |
+
msgid "Tutorials"
|
719 |
+
msgstr "Tutorials"
|
720 |
+
|
721 |
+
#: core/controllers/field_groups.php:232
|
722 |
+
msgid "Created by"
|
723 |
+
msgstr "Erstellt von"
|
724 |
+
|
725 |
+
#: core/controllers/field_groups.php:235
|
726 |
+
msgid "Vote"
|
727 |
+
msgstr "Bewerten"
|
728 |
+
|
729 |
+
#: core/controllers/field_groups.php:236
|
730 |
+
msgid "Follow"
|
731 |
+
msgstr "Folgen"
|
732 |
+
|
733 |
+
#: core/controllers/field_groups.php:248
|
734 |
+
msgid "Welcome to Advanced Custom Fields"
|
735 |
+
msgstr "Willkommen zu Eigene Felder (ACF)"
|
736 |
+
|
737 |
+
#: core/controllers/field_groups.php:249
|
738 |
+
msgid "Thank you for updating to the latest version!"
|
739 |
+
msgstr "Danke für das Update auf die aktuellste Version!"
|
740 |
+
|
741 |
+
#: core/controllers/field_groups.php:249
|
742 |
+
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
743 |
+
msgstr "ist besser und attraktiver als je zuvor. Wir hoffen es gefällt!"
|
744 |
+
|
745 |
+
#: core/controllers/field_groups.php:256
|
746 |
+
msgid "What’s New"
|
747 |
+
msgstr "Was ist neu"
|
748 |
+
|
749 |
+
#: core/controllers/field_groups.php:259
|
750 |
+
msgid "Download Add-ons"
|
751 |
+
msgstr "Zusatz-Module herunterladen"
|
752 |
+
|
753 |
+
#: core/controllers/field_groups.php:313
|
754 |
+
msgid "Activation codes have grown into plugins!"
|
755 |
+
msgstr "Aktivierungs-Codes sind Schnee von gestern!"
|
756 |
+
|
757 |
+
#: core/controllers/field_groups.php:314
|
758 |
+
msgid ""
|
759 |
+
"Add-ons are now activated by downloading and installing individual plugins. "
|
760 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
761 |
+
"each Add-on will continue to receive updates in the usual way."
|
762 |
msgstr ""
|
763 |
+
"Zusatz-Module werden nun als eigenständige Plugins angeboten und nach der "
|
764 |
+
"Installation aktiviert. Und obwohl die Zusatz-Module nicht im WordPress "
|
765 |
+
"Plugin-Verzeichnis aufgeführt sind, können Sie dennoch über die Update-"
|
766 |
+
"Funktion aktuell gehalten werden."
|
767 |
|
768 |
+
#: core/controllers/field_groups.php:320
|
769 |
+
msgid "All previous Add-ons have been successfully installed"
|
770 |
+
msgstr "Alle bisherigen Zusatz-Module wurden erfolgreich aktualisiert"
|
771 |
+
|
772 |
+
#: core/controllers/field_groups.php:324
|
773 |
+
msgid "This website uses premium Add-ons which need to be downloaded"
|
774 |
msgstr ""
|
775 |
+
"Diese Webseite nutzt Zusatz-Module mit Aktivierungs-Code, die nun "
|
776 |
+
"heruntergeladen werden müssen."
|
777 |
|
778 |
+
#: core/controllers/field_groups.php:324
|
779 |
+
msgid "Download your activated Add-ons"
|
780 |
+
msgstr "Lade die aktivierten Zusatz-Module"
|
781 |
+
|
782 |
+
#: core/controllers/field_groups.php:329
|
783 |
+
msgid ""
|
784 |
+
"This website does not use premium Add-ons and will not be affected by this "
|
785 |
+
"change."
|
786 |
msgstr ""
|
787 |
+
"Diese Webseite nutzt keine Zusatz-Module mit Aktivierungs-Code und ist "
|
788 |
+
"dadurch nicht betroffen."
|
789 |
|
790 |
+
#: core/controllers/field_groups.php:339
|
791 |
+
msgid "Easier Development"
|
792 |
+
msgstr "Noch einfachere Entwicklungsmöglichkeiten"
|
|
|
793 |
|
794 |
+
#: core/controllers/field_groups.php:341
|
795 |
+
msgid "New Field Types"
|
796 |
+
msgstr "Neue Feld-Typen"
|
|
|
797 |
|
798 |
+
#: core/controllers/field_groups.php:343
|
799 |
+
msgid "Taxonomy Field"
|
800 |
+
msgstr "Artikel-Beziehung"
|
|
|
801 |
|
802 |
+
#: core/controllers/field_groups.php:344
|
803 |
+
msgid "User Field"
|
804 |
+
msgstr "Benutzer Feld"
|
|
|
805 |
|
806 |
+
#: core/controllers/field_groups.php:345
|
807 |
+
msgid "Email Field"
|
808 |
+
msgstr "E-Mail Feld"
|
|
|
809 |
|
810 |
+
#: core/controllers/field_groups.php:346
|
811 |
+
msgid "Password Field"
|
812 |
+
msgstr "Passwort Feld"
|
|
|
813 |
|
814 |
+
#: core/controllers/field_groups.php:348
|
815 |
+
msgid "Custom Field Types"
|
816 |
+
msgstr "Eigene Felder"
|
|
|
817 |
|
818 |
+
#: core/controllers/field_groups.php:349
|
819 |
+
msgid ""
|
820 |
+
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
821 |
+
"field types are not compatible with version 4."
|
822 |
+
msgstr ""
|
823 |
+
"Nie war es einfacher benutzerdefinierte Felder zu erstellen. Leider sind die "
|
824 |
+
"Feld-Typen der Version 3 nicht kompatibel mit den Feld-Typen der Version 4."
|
825 |
|
826 |
+
#: core/controllers/field_groups.php:350
|
827 |
+
msgid "Migrating your field types is easy, please"
|
828 |
+
msgstr "Das Anpassen der Feld-Typen ist einfach: Bitte nutzen Sie"
|
|
|
|
|
|
|
829 |
|
830 |
+
#: core/controllers/field_groups.php:350
|
831 |
+
msgid "follow this tutorial"
|
832 |
+
msgstr "dieses Tutorial (engl.)"
|
833 |
|
834 |
+
#: core/controllers/field_groups.php:350
|
835 |
+
msgid "to learn more."
|
836 |
+
msgstr ", um mehr darüber zu erfahren."
|
837 |
|
838 |
+
#: core/controllers/field_groups.php:352
|
839 |
+
msgid "Actions & Filters"
|
840 |
+
msgstr "Actions & Filters"
|
841 |
|
842 |
+
#: core/controllers/field_groups.php:353
|
843 |
+
msgid ""
|
844 |
+
"All actions & filters have recieved a major facelift to make customizing ACF "
|
845 |
+
"even easier! Please"
|
846 |
+
msgstr ""
|
847 |
+
"Alle <i>Actions</i> und <i>Filters</i> wurden angepasst, um die Anpassungen "
|
848 |
+
"für ACF noch einfacher zu machen! Bitte lesen Sie"
|
849 |
|
850 |
+
#: core/controllers/field_groups.php:353
|
851 |
+
msgid "read this guide"
|
852 |
+
msgstr "diese Hinweise (engl.)"
|
|
|
853 |
|
854 |
+
#: core/controllers/field_groups.php:353
|
855 |
+
msgid "to find the updated naming convention."
|
856 |
+
msgstr "für detaillierte Informationen."
|
857 |
|
858 |
+
#: core/controllers/field_groups.php:355
|
859 |
+
msgid "Preview draft is now working!"
|
860 |
+
msgstr "Die Vorschau funktioniert jetzt auch!"
|
861 |
|
862 |
+
#: core/controllers/field_groups.php:356
|
863 |
+
msgid "This bug has been squashed along with many other little critters!"
|
864 |
+
msgstr "Dieser Fehler wurde zusammen mit vielen anderen behoben!"
|
865 |
|
866 |
+
#: core/controllers/field_groups.php:356
|
867 |
+
msgid "See the full changelog"
|
868 |
+
msgstr "Alle Anpassungen (engl.)"
|
869 |
|
870 |
+
#: core/controllers/field_groups.php:360
|
871 |
+
msgid "Important"
|
872 |
+
msgstr "Wichtig"
|
873 |
|
874 |
+
#: core/controllers/field_groups.php:362
|
875 |
+
msgid "Database Changes"
|
876 |
+
msgstr "Datenbank Anpassungen"
|
877 |
|
878 |
+
#: core/controllers/field_groups.php:363
|
879 |
+
msgid ""
|
880 |
+
"Absolutely <strong>no</strong> changes have been made to the database "
|
881 |
+
"between versions 3 and 4. This means you can roll back to version 3 without "
|
882 |
+
"any issues."
|
883 |
+
msgstr ""
|
884 |
+
"Es wurden <strong>keine</strong> Änderungen in der Datenbank-Struktur "
|
885 |
+
"zwischen Version 3 und 4 vorgenommen. Das bedeutet, dass Sie jederzeit "
|
886 |
+
"zurück zu Version 3 wechseln können."
|
887 |
|
888 |
+
#: core/controllers/field_groups.php:365
|
889 |
+
msgid "Potential Issues"
|
890 |
+
msgstr "Mögliche Probleme"
|
891 |
|
892 |
+
#: core/controllers/field_groups.php:366
|
893 |
+
msgid ""
|
894 |
+
"Do to the sizable changes surounding Add-ons, field types and action/"
|
895 |
+
"filters, your website may not operate correctly. It is important that you "
|
896 |
+
"read the full"
|
897 |
+
msgstr ""
|
898 |
+
"Durch die umfänglichen Änderungen hinsichtlich der Zusatz-Module, der Feld-"
|
899 |
+
"Typen und der <i>Actions/Filters</i>, kann es passieren, dass Ihre Webseite "
|
900 |
+
"nicht hundertprozentig funktioniert. Von daher ist es wichtig, dass Sie den"
|
901 |
|
902 |
+
#: core/controllers/field_groups.php:366
|
903 |
+
msgid "Migrating from v3 to v4"
|
904 |
+
msgstr "Leitfaden Migration von v3 zu v4 (engl.)"
|
905 |
|
906 |
+
#: core/controllers/field_groups.php:366
|
907 |
+
msgid "guide to view the full list of changes."
|
908 |
+
msgstr "unbedingt lesen, um einen Überblick über alle Änderungen zu erhalten."
|
909 |
|
910 |
+
#: core/controllers/field_groups.php:369
|
911 |
+
msgid "Really Important!"
|
912 |
+
msgstr "Wirklich wichtig!"
|
913 |
|
914 |
+
#: core/controllers/field_groups.php:369
|
915 |
+
msgid ""
|
916 |
+
"If you updated the ACF plugin without prior knowledge of such changes, "
|
917 |
+
"Please roll back to the latest"
|
918 |
+
msgstr ""
|
919 |
+
"Wenn Sie ein Update ohne Kenntnisse über diese Änderungen durchführen, ist "
|
920 |
+
"es ratsam, dass Sie auf"
|
921 |
|
922 |
+
#: core/controllers/field_groups.php:369
|
923 |
+
msgid "version 3"
|
924 |
+
msgstr "Version 3"
|
|
|
925 |
|
926 |
+
#: core/controllers/field_groups.php:369
|
927 |
+
msgid "of this plugin."
|
928 |
+
msgstr "dieses Plugins zurückwechseln."
|
929 |
+
|
930 |
+
#: core/controllers/field_groups.php:374
|
931 |
+
msgid "Thank You"
|
932 |
+
msgstr "Danke!"
|
933 |
|
934 |
+
#: core/controllers/field_groups.php:375
|
935 |
+
msgid ""
|
936 |
+
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
937 |
+
"4 beta and for all the support I have received."
|
938 |
+
msgstr ""
|
939 |
+
"Mein <strong>besonderer</strong> Dank geht an all diejenigen, die beim "
|
940 |
+
"Testen der Version geholfen haben und für all die Unterstützung die ich "
|
941 |
+
"erhalten habe."
|
942 |
|
943 |
+
#: core/controllers/field_groups.php:376
|
944 |
+
msgid "Without you all, this release would not have been possible!"
|
945 |
+
msgstr "Ohne diese Unterstützung wäre diese Version nie entstanden!"
|
946 |
|
947 |
+
#: core/controllers/field_groups.php:380
|
948 |
+
msgid "Changelog for"
|
949 |
+
msgstr "Versionshinweise für"
|
950 |
|
951 |
+
#: core/controllers/field_groups.php:396
|
952 |
+
msgid "Learn more"
|
953 |
+
msgstr "Ich möchte mehr wissen"
|
954 |
|
955 |
+
#: core/controllers/field_groups.php:402
|
956 |
+
msgid "Overview"
|
957 |
+
msgstr "Übersicht"
|
|
|
958 |
|
959 |
+
#: core/controllers/field_groups.php:404
|
960 |
+
msgid ""
|
961 |
+
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
962 |
+
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
963 |
+
"need to be individually downloaded, installed and updated."
|
964 |
+
msgstr ""
|
965 |
+
"Bisher wurden alle Zusatz-Module über einen Aktivierungscode (gekauft im ACF "
|
966 |
+
"Store) aktiviert. In Version 4 werden alle Zusatz-Module als separate "
|
967 |
+
"Plugins angeboten, die einzeln heruntergeladen, installiert und aktualisiert "
|
968 |
+
"werden müssen."
|
969 |
|
970 |
+
#: core/controllers/field_groups.php:406
|
971 |
+
msgid ""
|
972 |
+
"This page will assist you in downloading and installing each available Add-"
|
973 |
+
"on."
|
974 |
+
msgstr ""
|
975 |
+
"Diese Seite soll Ihnen beim Herunterladen und bei der Installation Ihrer "
|
976 |
+
"Zusatz-Module helfen."
|
977 |
+
|
978 |
+
#: core/controllers/field_groups.php:408
|
979 |
+
msgid "Available Add-ons"
|
980 |
+
msgstr "Verfügbare Zusatz-Module"
|
981 |
+
|
982 |
+
#: core/controllers/field_groups.php:410
|
983 |
+
msgid "The following Add-ons have been detected as activated on this website."
|
984 |
+
msgstr "Die folgenden Zusatz-Module wurde als aktive Zusatz-Module erkannt."
|
985 |
+
|
986 |
+
#: core/controllers/field_groups.php:423
|
987 |
msgid "Name"
|
988 |
msgstr "Name"
|
989 |
|
990 |
+
#: core/controllers/field_groups.php:424
|
991 |
+
msgid "Activation Code"
|
992 |
+
msgstr "Aktivierungs-Code"
|
993 |
|
994 |
+
#: core/controllers/field_groups.php:456
|
995 |
+
msgid "Flexible Content"
|
996 |
+
msgstr "Flexibler Inhalt"
|
997 |
|
998 |
+
#: core/controllers/field_groups.php:466
|
999 |
+
msgid "Installation"
|
1000 |
+
msgstr "Installation"
|
1001 |
|
1002 |
+
#: core/controllers/field_groups.php:468
|
1003 |
+
msgid "For each Add-on available, please perform the following:"
|
1004 |
+
msgstr "Für jedes Zusatz-Modul gehen Sie wie folgt vor:"
|
|
|
1005 |
|
1006 |
+
#: core/controllers/field_groups.php:470
|
1007 |
+
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
1008 |
+
msgstr "Laden Sie das Zusatz-Modul Plugin (.zip Datei) herunter"
|
|
|
|
|
1009 |
|
1010 |
+
#: core/controllers/field_groups.php:471
|
1011 |
+
msgid "Navigate to"
|
1012 |
+
msgstr "Gehen Sie zu"
|
1013 |
+
|
1014 |
+
#: core/controllers/field_groups.php:471
|
1015 |
+
msgid "Plugins > Add New > Upload"
|
1016 |
+
msgstr "Plugins > Installieren > Hochladen"
|
1017 |
+
|
1018 |
+
#: core/controllers/field_groups.php:472
|
1019 |
+
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
1020 |
+
msgstr ""
|
1021 |
+
"Wählen Sie über \"Durchsuchen\" die .zip-Datei und laden so das Zusatz-Modul "
|
1022 |
+
"in WordPress"
|
1023 |
|
1024 |
+
#: core/controllers/field_groups.php:473
|
1025 |
msgid ""
|
1026 |
+
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
1027 |
+
"link"
|
1028 |
msgstr ""
|
1029 |
+
"Wenn das Plugin hochgeladen und installiert wurde, aktivieren Sie das Plugin "
|
1030 |
+
"über den \"Aktivieren\"-Link"
|
1031 |
|
1032 |
+
#: core/controllers/field_groups.php:474
|
1033 |
+
msgid "The Add-on is now installed and activated!"
|
1034 |
+
msgstr "Das Zusatz-Modul ist nun installiert und aktiviert!"
|
|
|
|
|
1035 |
|
1036 |
+
#: core/controllers/field_groups.php:488
|
1037 |
+
msgid "Awesome. Let's get to work"
|
1038 |
+
msgstr "Toll. Dann mal los!"
|
|
|
1039 |
|
1040 |
+
#: core/controllers/input.php:480
|
1041 |
+
msgid "Validation Failed. One or more fields below are required."
|
1042 |
+
msgstr "Fehler bei Überprüfung: Ein oder mehrere Felder werden benötigt."
|
|
|
1043 |
|
1044 |
+
#: core/controllers/input.php:482
|
1045 |
+
msgid "Maximum values reached ( {max} values )"
|
1046 |
+
msgstr "Max. Werte erreicht ( {max} Werte )"
|
|
|
1047 |
|
1048 |
+
#: core/controllers/upgrade.php:72
|
1049 |
+
msgid "Upgrade"
|
1050 |
+
msgstr "Aktualisieren"
|
|
|
1051 |
|
1052 |
+
#: core/controllers/upgrade.php:616
|
1053 |
+
msgid "Modifying field group options 'show on page'"
|
1054 |
+
msgstr "Anpassung Feld-Gruppe Optionen 'Zeige auf Seite'"
|
|
|
1055 |
|
1056 |
+
#: core/controllers/upgrade.php:670
|
1057 |
+
msgid "Modifying field option 'taxonomy'"
|
1058 |
+
msgstr "Anpassung Feld-Optionen 'Taxonomie'"
|
|
|
1059 |
|
1060 |
+
#: core/controllers/upgrade.php:767
|
1061 |
+
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
1062 |
+
msgstr "Bewege Benutzer Felder von 'wp_options' nach 'wp_usermeta'"
|
1063 |
+
|
1064 |
+
#: core/fields/_base.php:120 core/views/meta_box_location.php:71
|
1065 |
+
msgid "Basic"
|
1066 |
+
msgstr "Grundlegend"
|
1067 |
+
|
1068 |
+
#: core/fields/checkbox.php:19 core/fields/taxonomy.php:328
|
1069 |
+
msgid "Checkbox"
|
1070 |
+
msgstr "Checkbox"
|
1071 |
+
|
1072 |
+
#: core/fields/checkbox.php:20 core/fields/radio.php:20
|
1073 |
+
#: core/fields/select.php:23 core/fields/true_false.php:20
|
1074 |
+
msgid "Choice"
|
1075 |
+
msgstr "Auswahlmöglichkeiten"
|
1076 |
+
|
1077 |
+
#: core/fields/checkbox.php:138 core/fields/radio.php:121
|
1078 |
+
#: core/fields/select.php:183
|
1079 |
+
msgid "Choices"
|
1080 |
+
msgstr "Auswahlmöglichkeiten"
|
1081 |
+
|
1082 |
+
#: core/fields/checkbox.php:139 core/fields/select.php:184
|
1083 |
+
msgid "Enter each choice on a new line."
|
1084 |
+
msgstr "Eine Auswahlmöglichkeit pro Zeile"
|
1085 |
+
|
1086 |
+
#: core/fields/checkbox.php:140 core/fields/select.php:185
|
1087 |
+
msgid "For more control, you may specify both a value and label like this:"
|
1088 |
msgstr ""
|
1089 |
+
"Für eine einfachere Bearbeitung, kann auch der Wert und eine Beschreibung "
|
1090 |
+
"wie in diesem Beispiel angeben werden:"
|
1091 |
|
1092 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:127
|
1093 |
+
#: core/fields/select.php:186
|
1094 |
+
msgid "red : Red"
|
1095 |
+
msgstr "rot : Rot"
|
1096 |
|
1097 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:128
|
1098 |
+
#: core/fields/select.php:186
|
1099 |
+
msgid "blue : Blue"
|
1100 |
+
msgstr "blau : Blau"
|
1101 |
|
1102 |
+
#: core/fields/checkbox.php:158 core/fields/color_picker.php:73
|
1103 |
+
#: core/fields/email.php:71 core/fields/number.php:71
|
1104 |
+
#: core/fields/radio.php:146 core/fields/select.php:203
|
1105 |
+
#: core/fields/text.php:73 core/fields/textarea.php:73
|
1106 |
+
#: core/fields/true_false.php:104 core/fields/wysiwyg.php:179
|
1107 |
+
msgid "Default Value"
|
1108 |
+
msgstr "Standardwert"
|
1109 |
|
1110 |
+
#: core/fields/checkbox.php:159 core/fields/select.php:204
|
1111 |
+
msgid "Enter each default value on a new line"
|
1112 |
+
msgstr ""
|
1113 |
+
"Einen Standardwert pro Zeile. Erfordert, dass die Option 'Mehrere Werte "
|
1114 |
+
"auswählen?' aktiviert ist."
|
1115 |
|
1116 |
+
#: core/fields/color_picker.php:19
|
1117 |
+
msgid "Color Picker"
|
1118 |
+
msgstr "Farbe"
|
1119 |
|
1120 |
+
#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
|
1121 |
+
msgid "jQuery"
|
1122 |
+
msgstr "jQuery"
|
1123 |
+
|
1124 |
+
#: core/fields/color_picker.php:74
|
1125 |
+
msgid "eg: #ffffff"
|
1126 |
+
msgstr "z.B.: #ffffff"
|
1127 |
|
1128 |
+
#: core/fields/dummy.php:19
|
1129 |
+
msgid "Dummy"
|
1130 |
+
msgstr "Dummy"
|
1131 |
|
1132 |
+
#: core/fields/email.php:19
|
1133 |
+
msgid "Email"
|
1134 |
+
msgstr "E-Mail"
|
1135 |
|
1136 |
+
#: core/fields/file.php:19
|
1137 |
+
msgid "File"
|
1138 |
+
msgstr "Datei"
|
1139 |
|
1140 |
+
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
|
1141 |
+
msgid "Content"
|
1142 |
+
msgstr "Inhalt"
|
1143 |
|
1144 |
+
#: core/fields/file.php:77 core/fields/image.php:75
|
1145 |
+
msgid "Remove"
|
1146 |
+
msgstr "Entfernen"
|
1147 |
|
1148 |
+
#: core/fields/file.php:84
|
1149 |
+
msgid "No File Selected"
|
1150 |
+
msgstr "Keine Datei ausgewählt"
|
1151 |
|
1152 |
+
#: core/fields/file.php:84
|
1153 |
+
msgid "Add File"
|
1154 |
+
msgstr "Datei hinzufügen"
|
1155 |
|
1156 |
+
#: core/fields/file.php:119 core/fields/image.php:116
|
1157 |
+
#: core/fields/taxonomy.php:376
|
1158 |
+
msgid "Return Value"
|
1159 |
+
msgstr "Rückgabewert"
|
1160 |
|
1161 |
+
#: core/fields/file.php:130
|
1162 |
+
msgid "File Object"
|
1163 |
+
msgstr "Datei"
|
1164 |
|
1165 |
+
#: core/fields/file.php:131
|
1166 |
+
msgid "File URL"
|
1167 |
+
msgstr "Datei-URL"
|
1168 |
|
1169 |
+
#: core/fields/file.php:132
|
1170 |
+
msgid "File ID"
|
1171 |
+
msgstr "Datei-ID"
|
1172 |
|
1173 |
+
#: core/fields/file.php:243
|
1174 |
+
msgid "File Updated."
|
1175 |
+
msgstr "Datei aktualisiert"
|
1176 |
|
1177 |
+
#: core/fields/file.php:335 core/fields/image.php:374
|
1178 |
+
msgid "Media attachment updated."
|
1179 |
+
msgstr "Medien-Anhang aktualisiert"
|
1180 |
|
1181 |
+
#: core/fields/file.php:493
|
1182 |
+
msgid "No files selected"
|
1183 |
+
msgstr "Keine Datei ausgewählt"
|
1184 |
|
1185 |
+
#: core/fields/file.php:634
|
1186 |
+
msgid "Add Selected Files"
|
1187 |
+
msgstr "Gewählte Dateien hinzufügen"
|
1188 |
|
1189 |
+
#: core/fields/file.php:667
|
1190 |
+
msgid "Select File"
|
1191 |
+
msgstr "Datei auswählen"
|
1192 |
|
1193 |
+
#: core/fields/file.php:670
|
1194 |
+
msgid "Update File"
|
1195 |
+
msgstr "Datei aktualisieren"
|
1196 |
|
1197 |
+
#: core/fields/image.php:19
|
1198 |
msgid "Image"
|
1199 |
msgstr "Bild"
|
1200 |
|
1201 |
+
#: core/fields/image.php:82
|
|
|
|
|
|
|
|
|
1202 |
msgid "No image selected"
|
1203 |
msgstr "Kein Bild ausgewählt"
|
1204 |
|
1205 |
+
#: core/fields/image.php:82
|
1206 |
+
msgid "Add Image"
|
1207 |
+
msgstr "Bild hinzufügen"
|
1208 |
+
|
1209 |
+
#: core/fields/image.php:126
|
1210 |
msgid "Image Object"
|
1211 |
msgstr "Bild"
|
1212 |
|
1213 |
+
#: core/fields/image.php:127
|
1214 |
msgid "Image URL"
|
1215 |
msgstr "Bild-URL"
|
1216 |
|
1217 |
+
#: core/fields/image.php:128
|
1218 |
msgid "Image ID"
|
1219 |
msgstr "Bild-ID"
|
1220 |
|
1221 |
+
#: core/fields/image.php:136
|
1222 |
+
msgid "Preview Size"
|
1223 |
+
msgstr "Größe der Vorschau"
|
1224 |
+
|
1225 |
+
#: core/fields/image.php:283
|
1226 |
+
msgid "Image Updated."
|
1227 |
+
msgstr "Bild aktualisiert"
|
1228 |
+
|
1229 |
#: core/fields/image.php:525
|
1230 |
+
msgid "No images selected"
|
1231 |
+
msgstr "Kein Bild ausgewählt"
|
1232 |
+
|
1233 |
+
#: core/fields/image.php:667
|
1234 |
+
msgid "Add Selected Images"
|
1235 |
msgstr "Ausgewählte Bilder hinzufügen"
|
1236 |
|
1237 |
+
#: core/fields/image.php:696
|
1238 |
msgid "Select Image"
|
1239 |
msgstr "Bild auswählen"
|
1240 |
|
1241 |
+
#: core/fields/image.php:699
|
1242 |
+
msgid "Update Image"
|
1243 |
+
msgstr "Bild aktualisieren"
|
1244 |
+
|
1245 |
+
#: core/fields/message.php:19 core/fields/message.php:71
|
1246 |
+
#: core/fields/true_false.php:89
|
1247 |
+
msgid "Message"
|
1248 |
+
msgstr "Nachricht"
|
1249 |
+
|
1250 |
+
#: core/fields/message.php:72
|
1251 |
+
msgid "Text & HTML entered here will appear inline with the fields"
|
1252 |
+
msgstr "Der Text & HTML wird vor dem nächsten Feld angezeigt"
|
1253 |
+
|
1254 |
+
#: core/fields/message.php:73
|
1255 |
+
msgid "Please note that all text will first be passed through the wp function "
|
1256 |
+
msgstr "Der gesamte Text wird zuerst gefiltert durch die WP Funktion "
|
1257 |
+
|
1258 |
+
#: core/fields/number.php:19
|
1259 |
msgid "Number"
|
1260 |
msgstr "Nummer"
|
1261 |
|
1262 |
+
#: core/fields/page_link.php:19
|
1263 |
msgid "Page Link"
|
1264 |
msgstr "Link zu Seite"
|
1265 |
|
1266 |
+
#: core/fields/page_link.php:20 core/fields/post_object.php:20
|
1267 |
+
#: core/fields/relationship.php:23 core/fields/taxonomy.php:23
|
1268 |
+
#: core/fields/user.php:23
|
1269 |
+
msgid "Relational"
|
1270 |
+
msgstr "Beziehung"
|
1271 |
+
|
1272 |
+
#: core/fields/page_link.php:78 core/fields/post_object.php:228
|
1273 |
+
#: core/fields/relationship.php:477 core/fields/relationship.php:556
|
1274 |
+
#: core/views/meta_box_location.php:72
|
1275 |
msgid "Post Type"
|
1276 |
msgstr "Artikel-Typ"
|
1277 |
|
1278 |
+
#: core/fields/page_link.php:102 core/fields/post_object.php:277
|
1279 |
+
#: core/fields/select.php:220 core/fields/taxonomy.php:342
|
1280 |
+
#: core/fields/user.php:284
|
1281 |
msgid "Allow Null?"
|
1282 |
msgstr "Nichts (NULL) erlauben?"
|
1283 |
|
1284 |
+
#: core/fields/page_link.php:123 core/fields/post_object.php:298
|
1285 |
+
#: core/fields/select.php:239
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1286 |
msgid "Select multiple values?"
|
1287 |
msgstr "Mehrere Werte auswählen?"
|
1288 |
|
1289 |
+
#: core/fields/password.php:19
|
1290 |
+
msgid "Password"
|
1291 |
+
msgstr "Passwort"
|
1292 |
+
|
1293 |
+
#: core/fields/post_object.php:19
|
1294 |
msgid "Post Object"
|
1295 |
msgstr "Artikel"
|
1296 |
|
1297 |
+
#: core/fields/post_object.php:252 core/fields/relationship.php:501
|
1298 |
msgid "Filter from Taxonomy"
|
1299 |
msgstr "Mit Beziehung filtern"
|
1300 |
|
1301 |
+
#: core/fields/radio.php:19
|
1302 |
msgid "Radio Button"
|
1303 |
+
msgstr "Radio Button"
|
1304 |
+
|
1305 |
+
#: core/fields/radio.php:122
|
1306 |
+
msgid "Enter your choices one per line"
|
1307 |
+
msgstr "Eine Auswahlmöglichkeit pro Zeile"
|
1308 |
+
|
1309 |
+
#: core/fields/radio.php:124
|
1310 |
+
msgid "Red"
|
1311 |
+
msgstr "Rot"
|
1312 |
+
|
1313 |
+
#: core/fields/radio.php:125
|
1314 |
+
msgid "Blue"
|
1315 |
+
msgstr "Blau"
|
1316 |
|
1317 |
+
#: core/fields/radio.php:173
|
1318 |
msgid "Vertical"
|
1319 |
msgstr "Vertikal"
|
1320 |
|
1321 |
+
#: core/fields/radio.php:174
|
1322 |
msgid "Horizontal"
|
1323 |
msgstr "Horizontal"
|
1324 |
|
1325 |
+
#: core/fields/relationship.php:22
|
1326 |
msgid "Relationship"
|
1327 |
msgstr "Beziehung"
|
1328 |
|
1329 |
+
#: core/fields/relationship.php:326 core/fields/relationship.php:535
|
1330 |
msgid "Search"
|
1331 |
msgstr "Suchen"
|
1332 |
|
1333 |
+
#: core/fields/relationship.php:536
|
1334 |
+
msgid "Post Type Select"
|
1335 |
+
msgstr "Auswahl Artikel-Typ"
|
1336 |
+
|
1337 |
+
#: core/fields/relationship.php:544
|
1338 |
+
msgid "Elements"
|
1339 |
+
msgstr "Zeige Spalten"
|
1340 |
+
|
1341 |
+
#: core/fields/relationship.php:545
|
1342 |
+
msgid "Selected elements will be displayed in each result"
|
1343 |
+
msgstr "Ausgewählte Optionen werden in der Liste als Spalten angezeigt"
|
1344 |
+
|
1345 |
+
#: core/fields/relationship.php:554 core/views/meta_box_options.php:101
|
1346 |
+
msgid "Featured Image"
|
1347 |
+
msgstr "Artikelbild"
|
1348 |
+
|
1349 |
+
#: core/fields/relationship.php:555
|
1350 |
+
msgid "Post Title"
|
1351 |
+
msgstr "Beitrag-/Seiten-Titel"
|
1352 |
+
|
1353 |
+
#: core/fields/relationship.php:567
|
1354 |
msgid "Maximum posts"
|
1355 |
msgstr "Max. Artikel"
|
1356 |
|
1357 |
+
#: core/fields/select.php:22 core/fields/taxonomy.php:333
|
1358 |
+
#: core/fields/user.php:275
|
1359 |
+
msgid "Select"
|
1360 |
+
msgstr "Auswahlmenü"
|
1361 |
|
1362 |
+
#: core/fields/tab.php:19
|
1363 |
+
msgid "Tab"
|
1364 |
+
msgstr "Tab"
|
1365 |
|
1366 |
+
#: core/fields/tab.php:67
|
1367 |
+
msgid ""
|
1368 |
+
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1369 |
+
"defined) will appear grouped on the edit screen."
|
1370 |
+
msgstr ""
|
1371 |
+
"Alle Felder nach diesem \"Tab Feld\" (oder bis ein neues \"Tab Feld\" "
|
1372 |
+
"definiert ist) werden innerhalb eines Tabs gruppiert."
|
1373 |
|
1374 |
+
#: core/fields/tab.php:68
|
1375 |
+
msgid "You can use multiple tabs to break up your fields into sections."
|
1376 |
+
msgstr ""
|
1377 |
+
"Es können mehrere Tabs definiert werden, um die Felder in mehrere Tabs "
|
1378 |
+
"aufzuteilen."
|
1379 |
|
1380 |
+
#: core/fields/taxonomy.php:22 core/fields/taxonomy.php:287
|
1381 |
+
msgid "Taxonomy"
|
1382 |
+
msgstr "Artikel-Beziehung"
|
1383 |
|
1384 |
+
#: core/fields/taxonomy.php:221 core/fields/taxonomy.php:230
|
1385 |
+
#: core/fields/text.php:97 core/fields/textarea.php:97
|
1386 |
+
msgid "None"
|
1387 |
+
msgstr "Nur Text"
|
1388 |
|
1389 |
+
#: core/fields/taxonomy.php:327 core/fields/user.php:269
|
1390 |
+
msgid "Multiple Values"
|
1391 |
+
msgstr "Mehrere Werte auswählen?"
|
1392 |
|
1393 |
+
#: core/fields/taxonomy.php:329 core/fields/user.php:271
|
1394 |
+
msgid "Multi Select"
|
1395 |
+
msgstr "Auswahlmenü"
|
1396 |
|
1397 |
+
#: core/fields/taxonomy.php:331 core/fields/user.php:273
|
1398 |
+
msgid "Single Value"
|
1399 |
+
msgstr "Einzelne Werte"
|
1400 |
|
1401 |
+
#: core/fields/taxonomy.php:332
|
1402 |
+
msgid "Radio Buttons"
|
1403 |
+
msgstr "Radio Button"
|
1404 |
+
|
1405 |
+
#: core/fields/taxonomy.php:361
|
1406 |
+
msgid "Load & Save Terms to Post"
|
1407 |
+
msgstr "Lade & Speichere Einträge im Artikel"
|
1408 |
+
|
1409 |
+
#: core/fields/taxonomy.php:369
|
1410 |
+
msgid ""
|
1411 |
+
"Load value based on the post's terms and update the post's terms on save"
|
1412 |
+
msgstr ""
|
1413 |
+
"Lade Einträge basierend auf dem Beitrag und aktualisiere die Einträge beim "
|
1414 |
+
"Speichern"
|
1415 |
+
|
1416 |
+
#: core/fields/taxonomy.php:386
|
1417 |
+
msgid "Term Object"
|
1418 |
+
msgstr "Datei"
|
1419 |
|
1420 |
+
#: core/fields/taxonomy.php:387
|
1421 |
+
msgid "Term ID"
|
1422 |
+
msgstr "Term ID"
|
1423 |
+
|
1424 |
+
#: core/fields/text.php:19
|
1425 |
msgid "Text"
|
1426 |
msgstr "Text"
|
1427 |
|
1428 |
+
#: core/fields/text.php:87 core/fields/textarea.php:87
|
1429 |
msgid "Formatting"
|
1430 |
msgstr "Formatierung"
|
1431 |
|
1432 |
+
#: core/fields/text.php:88
|
1433 |
msgid "Define how to render html tags"
|
1434 |
msgstr "Wie soll HTML-Inhalt dargestellt werden:"
|
1435 |
|
1436 |
+
#: core/fields/text.php:98 core/fields/textarea.php:99
|
|
|
|
|
|
|
|
|
1437 |
msgid "HTML"
|
1438 |
msgstr "HTML"
|
1439 |
|
1440 |
+
#: core/fields/textarea.php:19
|
1441 |
msgid "Text Area"
|
1442 |
msgstr "Textfeld"
|
1443 |
|
1444 |
+
#: core/fields/textarea.php:88
|
1445 |
msgid "Define how to render html tags / new lines"
|
1446 |
msgstr "Wie sollen HTML-Inhalt und neue Zeilen dargestellt werden:"
|
1447 |
|
1448 |
+
#: core/fields/textarea.php:98
|
1449 |
msgid "auto <br />"
|
1450 |
msgstr "automatisch <br /> einfügen"
|
1451 |
|
1452 |
+
#: core/fields/true_false.php:19
|
1453 |
msgid "True / False"
|
1454 |
msgstr "Ja/Nein"
|
1455 |
|
1456 |
+
#: core/fields/true_false.php:90
|
|
|
|
|
|
|
|
|
1457 |
msgid "eg. Show extra content"
|
1458 |
msgstr "z.B. Mehr Inhalt anzeigen"
|
1459 |
|
1460 |
+
#: core/fields/user.php:22
|
1461 |
+
msgid "User"
|
1462 |
+
msgstr "Benutzer"
|
1463 |
+
|
1464 |
+
#: core/fields/user.php:233
|
1465 |
+
msgid "Filter by role"
|
1466 |
+
msgstr "Filter nach Benutzer-Rollen"
|
1467 |
+
|
1468 |
+
#: core/fields/wysiwyg.php:19
|
1469 |
msgid "Wysiwyg Editor"
|
1470 |
msgstr "WYSIWYG-Editor"
|
1471 |
|
1472 |
+
#: core/fields/wysiwyg.php:193
|
1473 |
msgid "Toolbar"
|
1474 |
msgstr "Werkzeugleiste"
|
1475 |
|
1476 |
+
#: core/fields/wysiwyg.php:225
|
|
|
|
|
|
|
|
|
1477 |
msgid "Show Media Upload Buttons?"
|
1478 |
+
msgstr "Schaltflächen zum Hochladen von Medien anzeigen?"
|
1479 |
|
1480 |
+
#: core/fields/date_picker/date_picker.php:19
|
1481 |
+
msgid "Date Picker"
|
1482 |
+
msgstr "Datum"
|
1483 |
|
1484 |
+
#: core/fields/date_picker/date_picker.php:52
|
1485 |
+
#: core/fields/date_picker/date_picker.php:132
|
1486 |
+
msgid "Done"
|
1487 |
+
msgstr "Fertig"
|
|
|
1488 |
|
1489 |
+
#: core/fields/date_picker/date_picker.php:53
|
1490 |
+
#: core/fields/date_picker/date_picker.php:133
|
1491 |
+
msgid "Today"
|
1492 |
+
msgstr "Heute"
|
|
|
|
|
|
|
1493 |
|
1494 |
+
#: core/fields/date_picker/date_picker.php:56
|
1495 |
+
#: core/fields/date_picker/date_picker.php:136
|
1496 |
+
msgid "Show a different month"
|
1497 |
+
msgstr "Zeige einen anderen Monat"
|
1498 |
|
1499 |
+
#: core/fields/date_picker/date_picker.php:146
|
1500 |
msgid "Save format"
|
1501 |
msgstr "Daten-Format"
|
1502 |
|
1503 |
+
#: core/fields/date_picker/date_picker.php:147
|
1504 |
msgid ""
|
1505 |
"This format will determin the value saved to the database and returned via "
|
1506 |
"the API"
|
1507 |
msgstr ""
|
1508 |
"Dieses Format wird in der Datenbank gespeichert und per API zurückgegeben."
|
1509 |
|
1510 |
+
#: core/fields/date_picker/date_picker.php:148
|
1511 |
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
1512 |
msgstr ""
|
1513 |
"\"yymmdd\" ist das gebräuchlichste Format zum Speichern. Lesen Sie mehr über"
|
1514 |
|
1515 |
+
#: core/fields/date_picker/date_picker.php:148
|
1516 |
+
#: core/fields/date_picker/date_picker.php:164
|
1517 |
msgid "jQuery date formats"
|
1518 |
msgstr "jQuery-Datums-Format"
|
1519 |
|
1520 |
+
#: core/fields/date_picker/date_picker.php:162
|
1521 |
msgid "Display format"
|
1522 |
msgstr "Darstellungs-Format"
|
1523 |
|
1524 |
+
#: core/fields/date_picker/date_picker.php:163
|
1525 |
msgid "This format will be seen by the user when entering a value"
|
1526 |
msgstr "Dieses Format wird dem Benutzer angezeigt."
|
1527 |
|
1528 |
+
#: core/fields/date_picker/date_picker.php:164
|
1529 |
msgid ""
|
1530 |
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
1531 |
"about"
|
1533 |
"\"dd/mm/yy\" oder \"dd.mm.yy\" sind häufig verwendete Formate. Lesen Sie "
|
1534 |
"mehr über"
|
1535 |
|
1536 |
+
#: core/fields/date_picker/date_picker.php:178
|
1537 |
+
msgid "Week Starts On"
|
1538 |
+
msgstr "Woche beginnt am"
|
1539 |
+
|
1540 |
+
#: core/views/meta_box_fields.php:57
|
1541 |
+
msgid "Field type does not exist"
|
1542 |
+
msgstr "Fehler: Feld-Typ existiert nicht!"
|
1543 |
|
1544 |
+
#: core/views/meta_box_fields.php:64
|
1545 |
msgid "Move to trash. Are you sure?"
|
1546 |
msgstr "Wirklich in den Papierkorb verschieben?"
|
1547 |
|
1548 |
+
#: core/views/meta_box_fields.php:65
|
1549 |
+
msgid "checked"
|
1550 |
+
msgstr "ausgewählt"
|
1551 |
+
|
1552 |
+
#: core/views/meta_box_fields.php:66
|
1553 |
+
msgid "No toggle fields available"
|
1554 |
+
msgstr "Keine Felder für Bedingungen vorhanden"
|
1555 |
+
|
1556 |
+
#: core/views/meta_box_fields.php:67
|
1557 |
+
msgid "copy"
|
1558 |
+
msgstr "kopiere"
|
1559 |
+
|
1560 |
+
#: core/views/meta_box_fields.php:83
|
1561 |
msgid "Field Key"
|
1562 |
msgstr "Feld-Schlüssel"
|
1563 |
|
1564 |
+
#: core/views/meta_box_fields.php:95
|
1565 |
msgid ""
|
1566 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1567 |
"first field."
|
1569 |
"Keine Felder vorhanden. Wählen Sie <strong>+ Feld hinzufügen</strong> und "
|
1570 |
"erstellen Sie das erste Feld."
|
1571 |
|
1572 |
+
#: core/views/meta_box_fields.php:177
|
1573 |
msgid "Instructions for authors. Shown when submitting data"
|
1574 |
msgstr "Anweisungen für Autoren, wird beim Absenden von Daten angezeigt."
|
1575 |
|
1576 |
+
#: core/views/meta_box_fields.php:189
|
1577 |
msgid "Required?"
|
1578 |
msgstr "Erforderlich?"
|
1579 |
|
1580 |
+
#: core/views/meta_box_fields.php:212
|
1581 |
+
msgid "Conditional Logic"
|
1582 |
+
msgstr "Bedingungen für Anzeige"
|
1583 |
+
|
1584 |
+
#: core/views/meta_box_fields.php:263 core/views/meta_box_location.php:113
|
1585 |
+
msgid "is equal to"
|
1586 |
+
msgstr "ist gleich"
|
1587 |
+
|
1588 |
+
#: core/views/meta_box_fields.php:264 core/views/meta_box_location.php:114
|
1589 |
+
msgid "is not equal to"
|
1590 |
+
msgstr "ist nicht gleich"
|
1591 |
+
|
1592 |
+
#: core/views/meta_box_fields.php:282
|
1593 |
+
msgid "Show this field when"
|
1594 |
+
msgstr "Zeige dieses Feld, wenn"
|
1595 |
+
|
1596 |
+
#: core/views/meta_box_fields.php:288
|
1597 |
+
msgid "all"
|
1598 |
+
msgstr "alle"
|
1599 |
+
|
1600 |
+
#: core/views/meta_box_fields.php:289
|
1601 |
+
msgid "any"
|
1602 |
+
msgstr "mindestens eine"
|
1603 |
+
|
1604 |
+
#: core/views/meta_box_fields.php:292
|
1605 |
+
msgid "these rules are met"
|
1606 |
+
msgstr "diese(r) Regeln erfüllt sind."
|
1607 |
+
|
1608 |
+
#: core/views/meta_box_fields.php:320
|
1609 |
msgid "+ Add Field"
|
1610 |
msgstr "+ Feld hinzufügen"
|
1611 |
|
1612 |
+
#: core/views/meta_box_location.php:45
|
1613 |
msgid "Rules"
|
1614 |
msgstr "Regeln"
|
1615 |
|
1616 |
+
#: core/views/meta_box_location.php:46
|
1617 |
msgid ""
|
1618 |
"Create a set of rules to determine which edit screens will use these "
|
1619 |
"advanced custom fields"
|
1621 |
"Legen Sie mit diesen Regeln fest auf welchen Bearbeitungs-Seiten diese "
|
1622 |
"eigenen Felder angezeigt werden sollen."
|
1623 |
|
1624 |
+
#: core/views/meta_box_location.php:57
|
1625 |
+
msgid "Show this field group if"
|
1626 |
+
msgstr "Zeige diese Felder, wenn"
|
1627 |
+
|
1628 |
+
#: core/views/meta_box_location.php:59 core/views/meta_box_location.php:155
|
1629 |
+
#: core/views/meta_box_location.php:172
|
1630 |
+
msgid "or"
|
1631 |
+
msgstr "oder"
|
1632 |
+
|
1633 |
+
#: core/views/meta_box_location.php:73
|
1634 |
msgid "Logged in User Type"
|
1635 |
msgstr "Angemeldete Benutzer-Rolle"
|
1636 |
|
1637 |
+
#: core/views/meta_box_location.php:75 core/views/meta_box_location.php:76
|
|
|
|
|
|
|
|
|
1638 |
msgid "Page"
|
1639 |
msgstr "Seite"
|
1640 |
|
1641 |
+
#: core/views/meta_box_location.php:77
|
1642 |
msgid "Page Type"
|
1643 |
msgstr "Seiten-Typ"
|
1644 |
|
1645 |
+
#: core/views/meta_box_location.php:78
|
1646 |
msgid "Page Parent"
|
1647 |
msgstr "Übergeordnete Seite"
|
1648 |
|
1649 |
+
#: core/views/meta_box_location.php:79
|
1650 |
msgid "Page Template"
|
1651 |
msgstr "Seiten-Vorlage"
|
1652 |
|
1653 |
+
#: core/views/meta_box_location.php:81 core/views/meta_box_location.php:82
|
|
|
|
|
|
|
|
|
1654 |
msgid "Post"
|
1655 |
msgstr "Artikel"
|
1656 |
|
1657 |
+
#: core/views/meta_box_location.php:83
|
1658 |
msgid "Post Category"
|
1659 |
msgstr "Artikel-Kategorie"
|
1660 |
|
1661 |
+
#: core/views/meta_box_location.php:84
|
1662 |
msgid "Post Format"
|
1663 |
msgstr "Artikel-Format"
|
1664 |
|
1665 |
+
#: core/views/meta_box_location.php:85
|
1666 |
msgid "Post Taxonomy"
|
1667 |
msgstr "Artikel-Beziehung"
|
1668 |
|
1669 |
+
#: core/views/meta_box_location.php:87
|
1670 |
msgid "Other"
|
1671 |
msgstr "Sonstige"
|
1672 |
|
1673 |
+
#: core/views/meta_box_location.php:88
|
1674 |
+
msgid "Taxonomy Term (Add / Edit)"
|
1675 |
msgstr "Beziehung (Hinzufügen/Bearbeiten)"
|
1676 |
|
1677 |
+
#: core/views/meta_box_location.php:89
|
1678 |
msgid "User (Add / Edit)"
|
1679 |
msgstr "Benutzer (Hinzufügen/Bearbeiten)"
|
1680 |
|
1681 |
+
#: core/views/meta_box_location.php:90
|
1682 |
+
msgid "Media Attachment (Edit)"
|
1683 |
+
msgstr "Medien-Datei (Bearbeiten)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1684 |
|
1685 |
+
#: core/views/meta_box_location.php:142
|
1686 |
+
msgid "and"
|
1687 |
+
msgstr "und"
|
1688 |
|
1689 |
+
#: core/views/meta_box_location.php:157
|
1690 |
+
msgid "Add rule group"
|
1691 |
+
msgstr "Regel-Gruppe hinzufügen"
|
1692 |
|
1693 |
+
#: core/views/meta_box_location.php:168
|
1694 |
msgid "Unlock options add-on with an activation code"
|
1695 |
msgstr "Optionen-Add-On per Aktivierungs-Code freischalten"
|
1696 |
|
1708 |
msgid "Position"
|
1709 |
msgstr "Position"
|
1710 |
|
1711 |
+
#: core/views/meta_box_options.php:50
|
1712 |
+
msgid "Normal"
|
1713 |
+
msgstr "Normal"
|
1714 |
+
|
1715 |
+
#: core/views/meta_box_options.php:51
|
1716 |
+
msgid "Side"
|
1717 |
+
msgstr "Seitlich"
|
1718 |
+
|
1719 |
#: core/views/meta_box_options.php:60
|
1720 |
msgid "Style"
|
1721 |
msgstr "Stil"
|
1722 |
|
1723 |
+
#: core/views/meta_box_options.php:70
|
1724 |
+
msgid "No Metabox"
|
1725 |
+
msgstr "Keine Metabox"
|
1726 |
+
|
1727 |
+
#: core/views/meta_box_options.php:71
|
1728 |
+
msgid "Standard Metabox"
|
1729 |
+
msgstr "Normale Metabox"
|
1730 |
+
|
1731 |
#: core/views/meta_box_options.php:80
|
1732 |
msgid "Hide on screen"
|
1733 |
msgstr "Verstecken"
|
1735 |
#: core/views/meta_box_options.php:81
|
1736 |
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1737 |
msgstr ""
|
1738 |
+
"<strong>Ausgewählte</strong> Elemente werden <strong>versteckt</strong>."
|
1739 |
|
1740 |
#: core/views/meta_box_options.php:82
|
1741 |
msgid ""
|
1742 |
"If multiple field groups appear on an edit screen, the first field group's "
|
1743 |
"options will be used. (the one with the lowest order number)"
|
1744 |
msgstr ""
|
1745 |
+
"Sind für einen Bearbeiten-Dialog mehrere Felder-Gruppen definiert, werden "
|
1746 |
+
"die Optionen der ersten Felder-Gruppe angewendet (die mit der niedrigsten "
|
1747 |
+
"Sortierungs-Nummer)."
|
1748 |
|
1749 |
#: core/views/meta_box_options.php:92
|
1750 |
msgid "Content Editor"
|
1778 |
msgid "Format"
|
1779 |
msgstr "Format"
|
1780 |
|
1781 |
+
#: core/views/meta_box_options.php:102
|
1782 |
+
msgid "Categories"
|
1783 |
+
msgstr "Artikel-Kategorie"
|
1784 |
+
|
1785 |
+
#: core/views/meta_box_options.php:103
|
1786 |
+
msgid "Tags"
|
1787 |
+
msgstr "Tags"
|
1788 |
+
|
1789 |
+
#: core/views/meta_box_options.php:104
|
1790 |
+
msgid "Send Trackbacks"
|
1791 |
+
msgstr "Sende Trackbacks"
|
1792 |
+
|
1793 |
+
#~ msgid " No"
|
1794 |
+
#~ msgstr " Nein"
|
1795 |
+
|
1796 |
+
#~ msgid " Yes"
|
1797 |
+
#~ msgstr " Ja"
|
1798 |
+
|
1799 |
+
#~ msgid "Parent Page"
|
1800 |
+
#~ msgstr "Übergeordnete Seite"
|
1801 |
+
|
1802 |
+
#~ msgid ""
|
1803 |
+
#~ "Read documentation, learn the functions and find some tips & tricks "
|
1804 |
+
#~ "for your next web project."
|
1805 |
+
#~ msgstr ""
|
1806 |
+
#~ "Dokumentation, Erklärung der Funktionen und Tipps für Ihr nächstes Web-"
|
1807 |
+
#~ "Projekt."
|
1808 |
+
|
1809 |
+
#~ msgid "Visit the ACF website"
|
1810 |
+
#~ msgstr "Die ACF-Website besuchen"
|
1811 |
+
|
1812 |
+
#~ msgid "Add File to Field"
|
1813 |
+
#~ msgstr "Datei dem Feld hinzufügen"
|
1814 |
+
|
1815 |
+
#~ msgid "Edit File"
|
1816 |
+
#~ msgstr "Datei bearbeiten"
|
1817 |
+
|
1818 |
+
#~ msgid "Add Image to Field"
|
1819 |
+
#~ msgstr "Bild dem Feld hinzufügen"
|
1820 |
+
|
1821 |
+
#~ msgid "Edit Image"
|
1822 |
+
#~ msgstr "Bild bearbeiten"
|
1823 |
+
|
1824 |
+
#~ msgid "Add Image to Gallery"
|
1825 |
+
#~ msgstr "Bild der Galerie hinzufügen"
|
1826 |
+
|
1827 |
+
#~ msgid "Attachment updated"
|
1828 |
+
#~ msgstr "Anhang aktualisiert"
|
1829 |
+
|
1830 |
+
#~ msgid "Settings"
|
1831 |
+
#~ msgstr "Einstellungen"
|
1832 |
+
|
1833 |
+
#~ msgid "Repeater field deactivated"
|
1834 |
+
#~ msgstr "Wiederholungs-Feld deaktiviert"
|
1835 |
+
|
1836 |
+
#~ msgid "Options page deactivated"
|
1837 |
+
#~ msgstr "Optionen-Seite deaktiviert"
|
1838 |
+
|
1839 |
+
#~ msgid "Flexible Content field deactivated"
|
1840 |
+
#~ msgstr "Flexibles Inhalts-Feld deaktiviert"
|
1841 |
+
|
1842 |
+
#~ msgid "Gallery field deactivated"
|
1843 |
+
#~ msgstr "Galerie-Feld deaktiviert"
|
1844 |
+
|
1845 |
+
#~ msgid "Repeater field activated"
|
1846 |
+
#~ msgstr "Wiederholungs-Feld aktiviert"
|
1847 |
+
|
1848 |
+
#~ msgid "Options page activated"
|
1849 |
+
#~ msgstr "Optionen-Seite aktiviert"
|
1850 |
+
|
1851 |
+
#~ msgid "Flexible Content field activated"
|
1852 |
+
#~ msgstr "Flexibles Inhalts-Feld aktiviert"
|
1853 |
+
|
1854 |
+
#~ msgid "Gallery field activated"
|
1855 |
+
#~ msgstr "Galerie-Feld aktiviert"
|
1856 |
+
|
1857 |
+
#~ msgid "License key unrecognised"
|
1858 |
+
#~ msgstr "Lizenzschlüssel nicht erkannt!"
|
1859 |
+
|
1860 |
+
#~ msgid ""
|
1861 |
+
#~ "Add-ons can be unlocked by purchasing a license key. Each key can be used "
|
1862 |
+
#~ "on multiple sites."
|
1863 |
+
#~ msgstr ""
|
1864 |
+
#~ "Zusatz-Module werden durch Kauf eines Lizenz-Schlüssels freigeschalten. "
|
1865 |
+
#~ "Jeder Schlüssel kann auf beliebig vielen Websiten verwendet werden."
|
1866 |
+
|
1867 |
+
#~ msgid "Status"
|
1868 |
+
#~ msgstr "Status"
|
1869 |
+
|
1870 |
+
#~ msgid "Active"
|
1871 |
+
#~ msgstr "Aktiv"
|
1872 |
+
|
1873 |
+
#~ msgid "Inactive"
|
1874 |
+
#~ msgstr "Inaktiv"
|
1875 |
+
|
1876 |
+
#~ msgid "Deactivate"
|
1877 |
+
#~ msgstr "Deaktivieren"
|
1878 |
+
|
1879 |
+
#~ msgid "Activate"
|
1880 |
+
#~ msgstr "Aktivieren"
|
1881 |
+
|
1882 |
+
#~ msgid "Export Field Groups to XML"
|
1883 |
+
#~ msgstr "Felder-Gruppen als XML exportieren"
|
1884 |
+
|
1885 |
+
#~ msgid "Register Field Groups"
|
1886 |
+
#~ msgstr "Felder-Gruppen registrieren"
|
1887 |
+
|
1888 |
+
#~ msgid "Create PHP"
|
1889 |
+
#~ msgstr "PHP-Code erzeugen"
|
1890 |
+
|
1891 |
+
#~ msgid "Advanced Custom Fields Settings"
|
1892 |
+
#~ msgstr "Einstellungen für Eigene Felder"
|
1893 |
+
|
1894 |
+
#~ msgid "requires a database upgrade"
|
1895 |
+
#~ msgstr "benötigt eine Aktualisierung der Datenbank"
|
1896 |
+
|
1897 |
+
#~ msgid "why?"
|
1898 |
+
#~ msgstr "warum?"
|
1899 |
+
|
1900 |
+
#~ msgid "Please"
|
1901 |
+
#~ msgstr "Bitte"
|
1902 |
+
|
1903 |
+
#~ msgid "backup your database"
|
1904 |
+
#~ msgstr "sichern Sie Ihre Datenbank"
|
1905 |
+
|
1906 |
+
#~ msgid "then click"
|
1907 |
+
#~ msgstr "und wählen Sie dann"
|
1908 |
+
|
1909 |
+
#~ msgid "Upgrade Database"
|
1910 |
+
#~ msgstr "Datenbank aktualisieren"
|
1911 |
+
|
1912 |
+
#~ msgid "No choices to choose from"
|
1913 |
+
#~ msgstr "Keine Auswahlmöglichkeiten"
|
1914 |
+
|
1915 |
+
#~ msgid "+ Add Row"
|
1916 |
+
#~ msgstr "+ Zeile hinzufügen"
|
1917 |
+
|
1918 |
+
#~ msgid "Reorder Layout"
|
1919 |
+
#~ msgstr "Layout neu anordnen"
|
1920 |
+
|
1921 |
+
#~ msgid "Reorder"
|
1922 |
+
#~ msgstr "Anordnung"
|
1923 |
+
|
1924 |
+
#~ msgid "Delete Layout"
|
1925 |
+
#~ msgstr "Layout löschen"
|
1926 |
+
|
1927 |
+
#~ msgid "Add New Layout"
|
1928 |
+
#~ msgstr "Neues Layout hinzufügen"
|
1929 |
+
|
1930 |
+
#~ msgid "Duplicate Layout"
|
1931 |
+
#~ msgstr "Layout löschen"
|
1932 |
+
|
1933 |
+
#~ msgid "Label"
|
1934 |
+
#~ msgstr "Bezeichnung"
|
1935 |
+
|
1936 |
+
#~ msgid "Display"
|
1937 |
+
#~ msgstr "Darstellung"
|
1938 |
+
|
1939 |
+
#~ msgid "Gallery"
|
1940 |
+
#~ msgstr "Galerie"
|
1941 |
+
|
1942 |
+
#~ msgid "Alternate Text"
|
1943 |
+
#~ msgstr "Alternativer Text"
|
1944 |
+
|
1945 |
+
#~ msgid "Caption"
|
1946 |
+
#~ msgstr "Bildunterschrift"
|
1947 |
+
|
1948 |
+
#~ msgid "Description"
|
1949 |
+
#~ msgstr "Beschreibung"
|
1950 |
+
|
1951 |
+
#~ msgid "Thumbnail is advised"
|
1952 |
+
#~ msgstr "Miniaturbild wird empfohlen"
|
1953 |
+
|
1954 |
+
#~ msgid "Image Updated"
|
1955 |
+
#~ msgstr "Bild aktualisiert"
|
1956 |
+
|
1957 |
+
#~ msgid "Grid"
|
1958 |
+
#~ msgstr "Raster"
|
1959 |
+
|
1960 |
+
#~ msgid "List"
|
1961 |
+
#~ msgstr "Liste"
|
1962 |
+
|
1963 |
+
#~ msgid "1 image selected"
|
1964 |
+
#~ msgstr "Ein Bild ausgewählt"
|
1965 |
+
|
1966 |
+
#~ msgid "{count} images selected"
|
1967 |
+
#~ msgstr "{count} Bilder ausgewählt"
|
1968 |
+
|
1969 |
+
#~ msgid "Added"
|
1970 |
+
#~ msgstr "Hinzugefügt"
|
1971 |
+
|
1972 |
+
#~ msgid "Image already exists in gallery"
|
1973 |
+
#~ msgstr "Bild ist bereits in der Galerie"
|
1974 |
+
|
1975 |
+
#~ msgid "Image Added"
|
1976 |
+
#~ msgstr "Bild hinzugefügt"
|
1977 |
+
|
1978 |
+
#~ msgid "Run filter \"the_content\"?"
|
1979 |
+
#~ msgstr "Filter \"the_content\" ausführen?"
|
1980 |
+
|
1981 |
+
#~ msgid "Enable this filter to use shortcodes within the WYSIWYG field"
|
1982 |
+
#~ msgstr ""
|
1983 |
+
#~ "Aktivieren Sie diesen Filter um Shortcodes im WYSIWYG-Feld verwenden zu "
|
1984 |
+
#~ "können."
|
1985 |
+
|
1986 |
+
#~ msgid ""
|
1987 |
+
#~ "Disable this filter if you encounter recursive template problems with "
|
1988 |
+
#~ "plugins / themes"
|
1989 |
+
#~ msgstr ""
|
1990 |
+
#~ "Deaktivieren Sie diesen Filter wenn Sie Probleme mit rekursiven Vorlagen "
|
1991 |
+
#~ "mit Plugins oder Themse haben."
|
1992 |
+
|
1993 |
+
#~ msgid "Type"
|
1994 |
+
#~ msgstr "Artikel-Typ"
|
1995 |
+
|
1996 |
+
#~ msgid "Parent"
|
1997 |
+
#~ msgstr "Übergeordnete Seite"
|
1998 |
+
|
1999 |
+
#~ msgid "Media (Edit)"
|
2000 |
+
#~ msgstr "Medien (Bearbeiten)"
|
2001 |
+
|
2002 |
+
#~ msgid "match"
|
2003 |
+
#~ msgstr "Von den Bedingungen müssen"
|
2004 |
+
|
2005 |
+
#~ msgid "of the above"
|
2006 |
+
#~ msgstr "übereinstimmen."
|
2007 |
+
|
2008 |
+
#~ msgid "Page Specific"
|
2009 |
+
#~ msgstr "Seiten"
|
2010 |
+
|
2011 |
+
#~ msgid "Post Specific"
|
2012 |
+
#~ msgstr "Artikel"
|
2013 |
|
2014 |
#~ msgid "Add Fields to Edit Screens"
|
2015 |
#~ msgstr "Felder den Bearbeiten-Fenstern hinzufügen"
|
lang/acf.pot
CHANGED
@@ -1,1290 +1,1509 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: acf.php:
|
16 |
-
#: core/views/meta_box_location.php:143
|
17 |
-
msgid "Options"
|
18 |
-
msgstr ""
|
19 |
-
|
20 |
-
#: acf.php:123
|
21 |
msgid "Field Groups"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: acf.php:
|
25 |
-
#: core/controllers/upgrade.php:70
|
26 |
msgid "Advanced Custom Fields"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: acf.php:
|
30 |
msgid "Add New"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: acf.php:
|
34 |
msgid "Add New Field Group"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: acf.php:
|
38 |
msgid "Edit Field Group"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: acf.php:
|
42 |
msgid "New Field Group"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: acf.php:
|
46 |
msgid "View Field Group"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: acf.php:
|
50 |
msgid "Search Field Groups"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: acf.php:
|
54 |
msgid "No Field Groups found"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: acf.php:
|
58 |
msgid "No Field Groups found in Trash"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: acf.php:
|
62 |
msgid "Custom Fields"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: acf.php:
|
66 |
msgid "Field group updated."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: acf.php:
|
70 |
msgid "Custom field updated."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: acf.php:
|
74 |
msgid "Custom field deleted."
|
75 |
msgstr ""
|
76 |
|
77 |
#. translators: %s: date and time of the revision
|
78 |
-
#: acf.php:
|
79 |
msgid "Field group restored to revision from %s"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: acf.php:
|
83 |
msgid "Field group published."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: acf.php:
|
87 |
msgid "Field group saved."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: acf.php:
|
91 |
msgid "Field group submitted."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: acf.php:
|
95 |
msgid "Field group scheduled for."
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: acf.php:
|
99 |
msgid "Field group draft updated."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: acf.php:
|
103 |
-
msgid "Error: Field Type does not exist!"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: acf.php:1936
|
107 |
msgid "Thumbnail"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: acf.php:
|
111 |
msgid "Medium"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: acf.php:
|
115 |
msgid "Large"
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: acf.php:
|
119 |
msgid "Full"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: core/actions/export.php:
|
|
|
|
|
|
|
|
|
123 |
msgid "No ACF groups selected"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: core/controllers/
|
127 |
-
|
128 |
-
msgid "Fields"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: core/controllers/
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: core/controllers/
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: core/controllers/
|
140 |
-
msgid "
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: core/controllers/
|
144 |
-
msgid "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: core/controllers/
|
148 |
-
|
|
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: core/controllers/
|
152 |
-
msgid "
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: core/controllers/
|
156 |
-
|
157 |
-
#: core/fields/post_object.php:229 core/fields/post_object.php:257
|
158 |
-
#: core/fields/relationship.php:382 core/fields/relationship.php:411
|
159 |
-
msgid "All"
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: core/controllers/
|
163 |
-
|
164 |
-
msgid "Title"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: core/controllers/
|
168 |
-
msgid "
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: core/controllers/
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: core/controllers/
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: core/controllers/
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: core/controllers/
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: core/controllers/
|
188 |
-
msgid "
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: core/controllers/
|
192 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: core/controllers/
|
196 |
msgid ""
|
197 |
-
"
|
198 |
-
"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: core/controllers/
|
202 |
-
msgid "
|
|
|
|
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: core/controllers/
|
206 |
-
msgid "
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: core/controllers/
|
210 |
-
msgid "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: core/controllers/field_groups.php:
|
214 |
-
|
|
|
|
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: core/controllers/
|
218 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: core/controllers/
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: core/controllers/
|
226 |
-
msgid "
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: core/controllers/
|
230 |
-
msgid "
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: core/controllers/
|
234 |
-
msgid "
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: core/controllers/
|
238 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: core/controllers/
|
242 |
-
msgid "
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: core/controllers/
|
246 |
-
msgid "
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: core/controllers/
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: core/controllers/
|
254 |
-
msgid "
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: core/controllers/
|
258 |
-
msgid "
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: core/controllers/
|
262 |
-
msgid "
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: core/controllers/
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: core/controllers/
|
270 |
-
msgid "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: core/controllers/
|
274 |
-
msgid "
|
|
|
|
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: core/controllers/
|
278 |
-
msgid "
|
|
|
|
|
|
|
|
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: core/controllers/
|
282 |
-
msgid "
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: core/controllers/
|
286 |
-
msgid "
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: core/controllers/
|
290 |
-
msgid "
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: core/controllers/
|
294 |
-
msgid "
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: core/controllers/
|
298 |
-
msgid "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: core/controllers/
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: core/controllers/
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: core/controllers/
|
310 |
-
msgid "
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: core/controllers/
|
314 |
msgid ""
|
315 |
-
"
|
316 |
-
"
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: core/controllers/
|
320 |
-
msgid "
|
|
|
|
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: core/controllers/
|
324 |
-
|
325 |
-
#: core/fields/repeater.php:397 core/views/meta_box_fields.php:71
|
326 |
-
#: core/views/meta_box_fields.php:149
|
327 |
-
msgid "Field Type"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: core/controllers/
|
331 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: core/controllers/
|
335 |
-
|
|
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: core/controllers/
|
339 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: core/controllers/
|
343 |
-
|
344 |
-
msgid "Active"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: core/controllers/
|
348 |
-
|
349 |
-
msgid "Inactive"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: core/controllers/
|
353 |
-
|
354 |
-
msgid "Deactivate"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: core/controllers/
|
358 |
-
|
359 |
-
msgid "Activate"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: core/controllers/
|
363 |
-
|
|
|
|
|
|
|
|
|
|
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: core/controllers/
|
367 |
-
|
|
|
|
|
|
|
|
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: core/controllers/
|
371 |
-
msgid "
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: core/controllers/
|
375 |
-
msgid "
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: core/controllers/
|
379 |
-
msgid ""
|
380 |
-
"ACF will create a .xml export file which is compatible with the native WP "
|
381 |
-
"import plugin."
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: core/controllers/
|
385 |
-
msgid "
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: core/controllers/
|
389 |
-
msgid "
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: core/controllers/
|
393 |
-
msgid ""
|
394 |
-
"Imported field groups <b>will</b> appear in the list of editable field "
|
395 |
-
"groups. This is useful for migrating fields groups between Wp websites."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: core/controllers/
|
399 |
-
|
|
|
|
|
|
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: core/controllers/
|
403 |
-
msgid "
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: core/controllers/
|
407 |
-
msgid "
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: core/controllers/
|
411 |
-
msgid "
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: core/controllers/
|
415 |
-
msgid "
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: core/controllers/
|
419 |
-
msgid "
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: core/controllers/
|
423 |
-
msgid "
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: core/controllers/
|
427 |
-
msgid "
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: core/controllers/
|
431 |
-
msgid "
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: core/controllers/
|
435 |
-
msgid "
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: core/controllers/
|
439 |
-
msgid "
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: core/controllers/
|
443 |
-
msgid ""
|
444 |
-
"Registered field groups <b>will not</b> appear in the list of editable field "
|
445 |
-
"groups. This is useful for including fields in themes."
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: core/controllers/
|
449 |
-
msgid ""
|
450 |
-
"Please note that if you export and register field groups within the same WP, "
|
451 |
-
"you will see duplicate fields on your edit screens. To fix this, please move "
|
452 |
-
"the origional field group to the trash or remove the code from your "
|
453 |
-
"functions.php file."
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: core/controllers/
|
457 |
-
msgid "
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: core/controllers/
|
461 |
-
msgid "
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: core/controllers/
|
465 |
-
msgid "
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: core/controllers/
|
469 |
-
msgid "
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: core/controllers/
|
473 |
-
msgid "
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: core/controllers/
|
477 |
-
msgid "
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: core/controllers/
|
481 |
-
msgid ""
|
482 |
-
"/**\n"
|
483 |
-
" * Activate Add-ons\n"
|
484 |
-
" * Here you can enter your activation codes to unlock Add-ons to use in your "
|
485 |
-
"theme. \n"
|
486 |
-
" * Since all activation codes are multi-site licenses, you are allowed to "
|
487 |
-
"include your key in premium themes. \n"
|
488 |
-
" * Use the commented out code to update the database with your activation "
|
489 |
-
"code. \n"
|
490 |
-
" * You may place this code inside an IF statement that only runs on theme "
|
491 |
-
"activation.\n"
|
492 |
-
" */"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: core/controllers/
|
496 |
-
msgid ""
|
497 |
-
"/**\n"
|
498 |
-
" * Register field groups\n"
|
499 |
-
" * The register_field_group function accepts 1 array which holds the "
|
500 |
-
"relevant data to register a field group\n"
|
501 |
-
" * You may edit the array as you see fit. However, this may result in errors "
|
502 |
-
"if the array is not compatible with ACF\n"
|
503 |
-
" * This code must run every time the functions.php file is read\n"
|
504 |
-
" */"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: core/controllers/
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: core/controllers/
|
512 |
-
msgid "
|
|
|
|
|
|
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: core/controllers/
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: core/controllers/
|
520 |
-
msgid "
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: core/controllers/
|
524 |
-
msgid "
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: core/controllers/
|
528 |
-
msgid "
|
|
|
|
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: core/controllers/
|
532 |
-
msgid "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: core/controllers/
|
536 |
-
msgid "
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: core/controllers/
|
540 |
-
msgid "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: core/controllers/
|
544 |
-
msgid "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: core/controllers/
|
548 |
-
msgid "
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: core/controllers/
|
552 |
-
msgid "
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: core/
|
556 |
-
msgid "
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: core/
|
560 |
-
|
561 |
-
|
|
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: core/
|
565 |
-
|
566 |
-
msgid "Choices"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: core/
|
570 |
-
|
571 |
-
msgid "Enter your choices one per line"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: core/
|
575 |
-
|
576 |
-
msgid "Red"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: core/
|
580 |
-
|
581 |
-
msgid "Blue"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: core/
|
585 |
-
|
586 |
-
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: core/
|
590 |
-
|
591 |
-
msgid "blue : Blue"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: core/
|
595 |
-
msgid "
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: core/
|
599 |
-
|
600 |
-
#: core/fields/text.php:65 core/fields/textarea.php:64
|
601 |
-
#: core/fields/wysiwyg.php:81
|
602 |
-
msgid "Default Value"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: core/
|
606 |
-
msgid "
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: core/
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: core/
|
614 |
-
msgid "
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: core/
|
|
|
|
|
|
|
|
|
618 |
msgid ""
|
619 |
-
"
|
620 |
-
"
|
|
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: core/
|
624 |
-
msgid "
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: core/
|
628 |
-
|
629 |
-
|
|
|
|
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: core/
|
633 |
-
msgid "
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: core/
|
637 |
-
msgid "
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: core/
|
641 |
-
msgid ""
|
642 |
-
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
643 |
-
"about"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: core/
|
647 |
-
msgid "
|
|
|
|
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: core/
|
651 |
-
msgid "
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: core/
|
655 |
-
|
656 |
-
#: core/fields/image.php:158 core/fields/repeater.php:347
|
657 |
-
#: core/views/meta_box_fields.php:99
|
658 |
-
msgid "Edit"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: core/
|
662 |
-
|
663 |
-
msgid "Remove"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: core/
|
667 |
-
msgid "
|
|
|
|
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: core/
|
671 |
-
msgid "
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: core/
|
675 |
-
msgid "
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: core/
|
679 |
-
msgid "
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: core/
|
683 |
-
msgid "
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: core/
|
687 |
-
msgid "
|
|
|
|
|
|
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: core/
|
691 |
-
msgid "
|
|
|
|
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: core/
|
695 |
-
msgid "
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: core/
|
699 |
-
msgid "Add
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: core/
|
703 |
-
msgid "
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: core/
|
707 |
-
msgid "
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: core/
|
711 |
msgid "Flexible Content"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: core/
|
715 |
-
msgid "
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: core/
|
719 |
-
|
720 |
-
msgid "Add Row"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: core/
|
724 |
-
|
725 |
-
msgid "New Field"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: core/
|
729 |
-
|
730 |
-
msgid "new_field"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: core/
|
734 |
-
|
735 |
-
msgid "Layout"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: core/
|
739 |
-
msgid "
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: core/
|
743 |
-
msgid "
|
|
|
|
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: core/
|
747 |
-
msgid "
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: core/
|
751 |
-
|
752 |
-
msgid "Delete"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: core/
|
756 |
-
msgid "
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: core/
|
760 |
-
msgid "
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: core/
|
764 |
-
|
765 |
-
msgid "Duplicate"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: core/
|
769 |
-
msgid "
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: core/
|
773 |
-
msgid "
|
774 |
msgstr ""
|
775 |
|
776 |
-
#: core/
|
777 |
-
msgid "
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: core/fields/
|
781 |
-
msgid "
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: core/fields/
|
785 |
-
msgid "
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: core/fields/
|
789 |
-
#: core/
|
790 |
-
msgid "
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: core/fields/
|
794 |
-
#: core/fields/
|
795 |
-
|
796 |
-
msgid "Field Label"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: core/fields/
|
800 |
-
|
801 |
-
#: core/views/meta_box_fields.php:70 core/views/meta_box_fields.php:134
|
802 |
-
msgid "Field Name"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: core/fields/
|
806 |
-
msgid ""
|
807 |
-
"No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: core/fields/
|
811 |
-
#: core/fields/
|
812 |
-
|
813 |
-
msgid "Edit this Field"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: core/fields/
|
817 |
-
#: core/
|
818 |
-
msgid "
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: core/fields/
|
822 |
-
#: core/
|
823 |
-
|
|
|
|
|
|
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: core/fields/
|
827 |
-
|
828 |
-
msgid "Duplicate this Field"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: core/fields/
|
832 |
-
|
833 |
-
msgid "Delete this Field"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: core/fields/
|
837 |
-
|
838 |
-
msgid "This is the name which will appear on the EDIT page"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: core/fields/
|
842 |
-
|
843 |
-
msgid "Single word, no spaces. Underscores and dashes allowed"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: core/fields/
|
847 |
-
|
848 |
-
msgid "Field Instructions"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: core/fields/
|
852 |
-
|
|
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: core/fields/
|
856 |
-
|
|
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: core/fields/
|
860 |
-
|
|
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: core/fields/
|
864 |
-
|
865 |
-
msgid "Close Field"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: core/fields/
|
869 |
-
msgid "
|
|
|
|
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: core/fields/
|
873 |
-
|
874 |
-
msgid "Drag and drop to reorder"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: core/fields/
|
878 |
-
|
|
|
879 |
msgstr ""
|
880 |
|
881 |
-
#: core/fields/
|
882 |
-
msgid "
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: core/fields/
|
886 |
-
msgid "
|
887 |
msgstr ""
|
888 |
|
889 |
-
#: core/fields/
|
890 |
-
msgid "
|
|
|
|
|
891 |
msgstr ""
|
892 |
|
893 |
-
#: core/fields/
|
894 |
-
msgid "
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: core/fields/
|
898 |
-
msgid "
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: core/fields/
|
902 |
-
msgid "
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: core/fields/
|
906 |
-
msgid "
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: core/fields/
|
910 |
-
msgid "
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: core/fields/
|
914 |
-
#: core/
|
915 |
-
msgid "
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: core/fields/
|
919 |
-
msgid "
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: core/fields/
|
923 |
-
msgid "
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: core/fields/
|
927 |
-
msgid "
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: core/fields/
|
931 |
-
|
|
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: core/fields/
|
935 |
-
msgid "
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: core/fields/
|
939 |
-
msgid "
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: core/fields/
|
943 |
-
msgid "
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: core/fields/
|
947 |
-
msgid "
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: core/fields/
|
951 |
-
msgid "
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: core/fields/
|
955 |
-
msgid "
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: core/fields/
|
959 |
-
msgid "
|
|
|
|
|
|
|
|
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
963 |
msgid "No image selected"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: core/fields/image.php:
|
|
|
|
|
|
|
|
|
967 |
msgid "Image Object"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: core/fields/image.php:
|
971 |
msgid "Image URL"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: core/fields/image.php:
|
975 |
msgid "Image ID"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: core/fields/image.php:
|
979 |
-
msgid "
|
|
|
|
|
|
|
|
|
980 |
msgstr ""
|
981 |
|
982 |
#: core/fields/image.php:525
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
983 |
msgid "Select Image"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
987 |
msgid "Number"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: core/fields/page_link.php:
|
991 |
msgid "Page Link"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: core/fields/page_link.php:
|
995 |
-
#: core/fields/relationship.php:
|
996 |
-
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: core/fields/page_link.php:
|
1000 |
-
#: core/fields/
|
1001 |
-
|
|
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: core/fields/page_link.php:
|
1005 |
-
#: core/fields/
|
1006 |
-
#: core/fields/
|
1007 |
-
|
1008 |
-
#: core/views/meta_box_fields.php:183 core/views/meta_box_fields.php:205
|
1009 |
-
msgid "Yes"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: core/fields/page_link.php:
|
1013 |
-
#: core/fields/
|
1014 |
-
|
1015 |
-
#: core/fields/wysiwyg.php:125 core/fields/wysiwyg.php:146
|
1016 |
-
#: core/views/meta_box_fields.php:184 core/views/meta_box_fields.php:206
|
1017 |
-
msgid "No"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: core/fields/
|
1021 |
-
|
1022 |
-
msgid "Select multiple values?"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: core/fields/post_object.php:
|
1026 |
msgid "Post Object"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#: core/fields/post_object.php:
|
1030 |
msgid "Filter from Taxonomy"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: core/fields/radio.php:
|
1034 |
msgid "Radio Button"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: core/fields/radio.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
msgid "Vertical"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: core/fields/radio.php:
|
1042 |
msgid "Horizontal"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: core/fields/relationship.php:
|
1046 |
msgid "Relationship"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: core/fields/relationship.php:
|
1050 |
msgid "Search"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: core/fields/relationship.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
msgid "Maximum posts"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: core/fields/
|
1058 |
-
|
|
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: core/fields/
|
1062 |
-
msgid "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: core/fields/
|
1066 |
-
msgid "
|
|
|
|
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: core/fields/
|
1070 |
-
msgid "
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: core/fields/
|
1074 |
-
msgid "
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: core/fields/
|
1078 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: core/fields/
|
|
|
|
|
|
|
|
|
1082 |
msgid "Text"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#: core/fields/text.php:
|
1086 |
msgid "Formatting"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: core/fields/text.php:
|
1090 |
msgid "Define how to render html tags"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: core/fields/text.php:
|
1094 |
-
msgid "None"
|
1095 |
-
msgstr ""
|
1096 |
-
|
1097 |
-
#: core/fields/text.php:90 core/fields/textarea.php:90
|
1098 |
msgid "HTML"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: core/fields/textarea.php:
|
1102 |
msgid "Text Area"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: core/fields/textarea.php:
|
1106 |
msgid "Define how to render html tags / new lines"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: core/fields/textarea.php:
|
1110 |
msgid "auto <br />"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: core/fields/true_false.php:
|
1114 |
msgid "True / False"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: core/fields/true_false.php:
|
1118 |
-
msgid "
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: core/fields/
|
1122 |
-
msgid "
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: core/fields/
|
1126 |
-
msgid "
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: core/fields/wysiwyg.php:
|
1130 |
-
msgid "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: core/fields/wysiwyg.php:
|
1134 |
-
msgid "
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: core/fields/wysiwyg.php:
|
1138 |
msgid "Show Media Upload Buttons?"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: core/
|
1142 |
-
msgid "
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: core/
|
1146 |
-
msgid "
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: core/
|
1150 |
-
msgid ""
|
1151 |
-
"Disable this filter if you encounter recursive template problems with "
|
1152 |
-
"plugins / themes"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: core/views/meta_box_fields.php:
|
1156 |
msgid "Move to trash. Are you sure?"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: core/views/meta_box_fields.php:
|
1160 |
msgid "checked"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: core/views/meta_box_fields.php:
|
1164 |
msgid "No toggle fields available"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: core/views/meta_box_fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1168 |
msgid "Field Key"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: core/views/meta_box_fields.php:
|
1172 |
msgid ""
|
1173 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1174 |
"first field."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: core/views/meta_box_fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1178 |
msgid "Instructions for authors. Shown when submitting data"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: core/views/meta_box_fields.php:
|
1182 |
msgid "Required?"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: core/views/meta_box_fields.php:
|
1186 |
msgid "Conditional Logic"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: core/views/meta_box_fields.php:
|
1190 |
msgid "is equal to"
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: core/views/meta_box_fields.php:
|
1194 |
msgid "is not equal to"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: core/views/meta_box_fields.php:
|
1198 |
msgid "Show this field when"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
-
#: core/views/meta_box_fields.php:
|
1202 |
msgid "all"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#: core/views/meta_box_fields.php:
|
1206 |
msgid "any"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: core/views/meta_box_fields.php:
|
1210 |
msgid "these rules are met"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: core/views/meta_box_fields.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1214 |
msgid "+ Add Field"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: core/views/meta_box_location.php:
|
1218 |
msgid "Rules"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: core/views/meta_box_location.php:
|
1222 |
msgid ""
|
1223 |
"Create a set of rules to determine which edit screens will use these "
|
1224 |
"advanced custom fields"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: core/views/meta_box_location.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1228 |
msgid "Logged in User Type"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: core/views/meta_box_location.php:
|
1232 |
msgid "Page"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: core/views/meta_box_location.php:
|
1236 |
-
msgid "Type"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: core/views/meta_box_location.php:
|
1240 |
-
msgid "Parent"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: core/views/meta_box_location.php:
|
1244 |
-
msgid "Template"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: core/views/meta_box_location.php:
|
1248 |
msgid "Post"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: core/views/meta_box_location.php:
|
1252 |
-
msgid "Category"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: core/views/meta_box_location.php:
|
1256 |
-
msgid "Format"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: core/views/meta_box_location.php:
|
1260 |
-
msgid "Taxonomy"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: core/views/meta_box_location.php:
|
1264 |
msgid "Other"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: core/views/meta_box_location.php:
|
1268 |
-
msgid "Taxonomy (Add / Edit)"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: core/views/meta_box_location.php:
|
1272 |
msgid "User (Add / Edit)"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: core/views/meta_box_location.php:
|
1276 |
-
msgid "Media (Edit)"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: core/views/meta_box_location.php:
|
1280 |
-
msgid "
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: core/views/meta_box_location.php:
|
1284 |
-
msgid "
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: core/views/meta_box_location.php:
|
1288 |
msgid "Unlock options add-on with an activation code"
|
1289 |
msgstr ""
|
1290 |
|
@@ -1300,10 +1519,26 @@ msgstr ""
|
|
1300 |
msgid "Position"
|
1301 |
msgstr ""
|
1302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1303 |
#: core/views/meta_box_options.php:60
|
1304 |
msgid "Style"
|
1305 |
msgstr ""
|
1306 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1307 |
#: core/views/meta_box_options.php:80
|
1308 |
msgid "Hide on screen"
|
1309 |
msgstr ""
|
@@ -1346,6 +1581,10 @@ msgstr ""
|
|
1346 |
msgid "Author"
|
1347 |
msgstr ""
|
1348 |
|
|
|
|
|
|
|
|
|
1349 |
#: core/views/meta_box_options.php:101
|
1350 |
msgid "Featured Image"
|
1351 |
msgstr ""
|
1 |
+
# Copyright (C) 2013
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/advanced-custom-fields\n"
|
7 |
+
"POT-Creation-Date: 2013-05-02 01:19:51+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: acf.php:264
|
|
|
|
|
|
|
|
|
|
|
16 |
msgid "Field Groups"
|
17 |
msgstr ""
|
18 |
|
19 |
+
#: acf.php:265 core/controllers/field_groups.php:214
|
|
|
20 |
msgid "Advanced Custom Fields"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: acf.php:266
|
24 |
msgid "Add New"
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: acf.php:267
|
28 |
msgid "Add New Field Group"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: acf.php:268
|
32 |
msgid "Edit Field Group"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: acf.php:269
|
36 |
msgid "New Field Group"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: acf.php:270
|
40 |
msgid "View Field Group"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: acf.php:271
|
44 |
msgid "Search Field Groups"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: acf.php:272
|
48 |
msgid "No Field Groups found"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: acf.php:273
|
52 |
msgid "No Field Groups found in Trash"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: acf.php:386 core/views/meta_box_options.php:94
|
56 |
msgid "Custom Fields"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: acf.php:404 acf.php:407
|
60 |
msgid "Field group updated."
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: acf.php:405
|
64 |
msgid "Custom field updated."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: acf.php:406
|
68 |
msgid "Custom field deleted."
|
69 |
msgstr ""
|
70 |
|
71 |
#. translators: %s: date and time of the revision
|
72 |
+
#: acf.php:409
|
73 |
msgid "Field group restored to revision from %s"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: acf.php:410
|
77 |
msgid "Field group published."
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: acf.php:411
|
81 |
msgid "Field group saved."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: acf.php:412
|
85 |
msgid "Field group submitted."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: acf.php:413
|
89 |
msgid "Field group scheduled for."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: acf.php:414
|
93 |
msgid "Field group draft updated."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: acf.php:549
|
|
|
|
|
|
|
|
|
97 |
msgid "Thumbnail"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: acf.php:550
|
101 |
msgid "Medium"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: acf.php:551
|
105 |
msgid "Large"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: acf.php:552
|
109 |
msgid "Full"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: core/actions/export.php:23 core/views/meta_box_fields.php:57
|
113 |
+
msgid "Error"
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: core/actions/export.php:30
|
117 |
msgid "No ACF groups selected"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: core/controllers/addons.php:42 core/controllers/field_groups.php:311
|
121 |
+
msgid "Add-ons"
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: core/controllers/addons.php:130 core/controllers/field_groups.php:432
|
125 |
+
msgid "Repeater Field"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: core/controllers/addons.php:131
|
129 |
+
msgid "Create infinite rows of repeatable data with this versatile interface!"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: core/controllers/addons.php:137 core/controllers/field_groups.php:440
|
133 |
+
msgid "Gallery Field"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: core/controllers/addons.php:138
|
137 |
+
msgid "Create image galleries in a simple and intuitive interface!"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: core/controllers/addons.php:144 core/controllers/export.php:380
|
141 |
+
#: core/controllers/field_groups.php:448
|
142 |
+
msgid "Options Page"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: core/controllers/addons.php:145
|
146 |
+
msgid "Create global data to use throughout your website!"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: core/controllers/addons.php:151
|
150 |
+
msgid "Flexible Content Field"
|
|
|
|
|
|
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: core/controllers/addons.php:152
|
154 |
+
msgid "Create unique designs with a flexible content layout manager!"
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: core/controllers/addons.php:161
|
158 |
+
msgid "Gravity Forms Field"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: core/controllers/addons.php:162
|
162 |
+
msgid "Creates a select field populated with Gravity Forms!"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: core/controllers/addons.php:168
|
166 |
+
msgid "Date & Time Picker"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: core/controllers/addons.php:169
|
170 |
+
msgid "jQuery date & time picker"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: core/controllers/addons.php:175
|
174 |
+
msgid "Location Field"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: core/controllers/addons.php:176
|
178 |
+
msgid "Find addresses and coordinates of a desired location"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: core/controllers/addons.php:182
|
182 |
+
msgid "Contact Form 7 Field"
|
183 |
+
msgstr ""
|
184 |
+
|
185 |
+
#: core/controllers/addons.php:183
|
186 |
+
msgid "Assign one or more contact form 7 forms to a post"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: core/controllers/addons.php:193
|
190 |
+
msgid "Advanced Custom Fields Add-Ons"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: core/controllers/addons.php:196
|
194 |
msgid ""
|
195 |
+
"The following Add-ons are available to increase the functionality of the "
|
196 |
+
"Advanced Custom Fields plugin."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: core/controllers/addons.php:197
|
200 |
+
msgid ""
|
201 |
+
"Each Add-on can be installed as a separate plugin (receives updates) or "
|
202 |
+
"included in your theme (does not receive updates)."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: core/controllers/addons.php:218 core/controllers/addons.php:239
|
206 |
+
msgid "Installed"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: core/controllers/addons.php:220
|
210 |
+
msgid "Purchase & Install"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: core/controllers/addons.php:241 core/controllers/field_groups.php:425
|
214 |
+
#: core/controllers/field_groups.php:434 core/controllers/field_groups.php:442
|
215 |
+
#: core/controllers/field_groups.php:450 core/controllers/field_groups.php:458
|
216 |
+
msgid "Download"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: core/controllers/export.php:50 core/controllers/export.php:159
|
220 |
+
msgid "Export"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: core/controllers/export.php:216
|
224 |
+
msgid "Export Field Groups"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: core/controllers/export.php:221
|
228 |
+
msgid "Field Groups"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: core/controllers/export.php:222
|
232 |
+
msgid "Select the field groups to be exported"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: core/controllers/export.php:239 core/controllers/export.php:252
|
236 |
+
msgid "Export to XML"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: core/controllers/export.php:242 core/controllers/export.php:267
|
240 |
+
msgid "Export to PHP"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: core/controllers/export.php:253
|
244 |
+
msgid ""
|
245 |
+
"ACF will create a .xml export file which is compatible with the native WP "
|
246 |
+
"import plugin."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: core/controllers/export.php:254
|
250 |
+
msgid ""
|
251 |
+
"Imported field groups <b>will</b> appear in the list of editable field "
|
252 |
+
"groups. This is useful for migrating fields groups between Wp websites."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: core/controllers/export.php:256
|
256 |
+
msgid "Select field group(s) from the list and click \"Export XML\""
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: core/controllers/export.php:257
|
260 |
+
msgid "Save the .xml file when prompted"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: core/controllers/export.php:258
|
264 |
+
msgid "Navigate to Tools » Import and select WordPress"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: core/controllers/export.php:259
|
268 |
+
msgid "Install WP import plugin if prompted"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: core/controllers/export.php:260
|
272 |
+
msgid "Upload and import your exported .xml file"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: core/controllers/export.php:261
|
276 |
+
msgid "Select your user and ignore Import Attachments"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: core/controllers/export.php:262
|
280 |
+
msgid "That's it! Happy WordPressing"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: core/controllers/export.php:268
|
284 |
+
msgid "ACF will create the PHP code to include in your theme."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: core/controllers/export.php:269 core/controllers/export.php:310
|
288 |
+
msgid ""
|
289 |
+
"Registered field groups <b>will not</b> appear in the list of editable field "
|
290 |
+
"groups. This is useful for including fields in themes."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: core/controllers/export.php:270 core/controllers/export.php:311
|
294 |
+
msgid ""
|
295 |
+
"Please note that if you export and register field groups within the same WP, "
|
296 |
+
"you will see duplicate fields on your edit screens. To fix this, please move "
|
297 |
+
"the origional field group to the trash or remove the code from your "
|
298 |
+
"functions.php file."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: core/controllers/export.php:272
|
302 |
+
msgid "Select field group(s) from the list and click \"Create PHP\""
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: core/controllers/export.php:273 core/controllers/export.php:302
|
306 |
+
msgid "Copy the PHP code generated"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: core/controllers/export.php:274 core/controllers/export.php:303
|
310 |
+
msgid "Paste into your functions.php file"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: core/controllers/export.php:275 core/controllers/export.php:304
|
314 |
+
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: core/controllers/export.php:295
|
318 |
+
msgid "Export Field Groups to PHP"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: core/controllers/export.php:300 core/fields/tab.php:64
|
322 |
+
msgid "Instructions"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: core/controllers/export.php:309
|
326 |
+
msgid "Notes"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: core/controllers/export.php:316
|
330 |
+
msgid "Include in theme"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: core/controllers/export.php:317
|
334 |
msgid ""
|
335 |
+
"The Advanced Custom Fields plugin can be included within a theme. To do so, "
|
336 |
+
"move the ACF plugin inside your theme and add the following code to your "
|
337 |
+
"functions.php file:"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: core/controllers/export.php:323
|
341 |
+
msgid ""
|
342 |
+
"To remove all visual interfaces from the ACF plugin, you can use a constant "
|
343 |
+
"to enable lite mode. Add the following code to you functions.php file "
|
344 |
+
"<b>before</b> the include_once code:"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: core/controllers/export.php:331
|
348 |
+
msgid "Back to export"
|
|
|
|
|
|
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: core/controllers/export.php:352
|
352 |
+
msgid ""
|
353 |
+
"/**\n"
|
354 |
+
" * Install Add-ons\n"
|
355 |
+
" * \n"
|
356 |
+
" * The following code will include all 4 premium Add-Ons in your theme.\n"
|
357 |
+
" * Please do not attempt to include a file which does not exist. This will "
|
358 |
+
"produce an error.\n"
|
359 |
+
" * \n"
|
360 |
+
" * All fields must be included during the 'acf/register_fields' action.\n"
|
361 |
+
" * Other types of Add-ons (like the options page) can be included outside "
|
362 |
+
"of this action.\n"
|
363 |
+
" * \n"
|
364 |
+
" * The following code assumes you have a folder 'add-ons' inside your "
|
365 |
+
"theme.\n"
|
366 |
+
" *\n"
|
367 |
+
" * IMPORTANT\n"
|
368 |
+
" * Add-ons may be included in a premium theme as outlined in the terms and "
|
369 |
+
"conditions.\n"
|
370 |
+
" * However, they are NOT to be included in a premium / free plugin.\n"
|
371 |
+
" * For more information, please read http://www.advancedcustomfields.com/"
|
372 |
+
"terms-conditions/\n"
|
373 |
+
" */"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: core/controllers/export.php:370 core/controllers/field_group.php:365
|
377 |
+
#: core/controllers/field_group.php:427 core/controllers/field_groups.php:148
|
378 |
+
msgid "Fields"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: core/controllers/export.php:384
|
382 |
+
msgid ""
|
383 |
+
"/**\n"
|
384 |
+
" * Register Field Groups\n"
|
385 |
+
" *\n"
|
386 |
+
" * The register_field_group function accepts 1 array which holds the "
|
387 |
+
"relevant data to register a field group\n"
|
388 |
+
" * You may edit the array as you see fit. However, this may result in "
|
389 |
+
"errors if the array is not compatible with ACF\n"
|
390 |
+
" */"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: core/controllers/export.php:435
|
394 |
+
msgid "No field groups were selected"
|
|
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: core/controllers/field_group.php:366
|
398 |
+
msgid "Location"
|
|
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: core/controllers/field_group.php:367 core/views/meta_box_location.php:167
|
402 |
+
msgid "Options"
|
|
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: core/controllers/field_group.php:429
|
406 |
+
msgid "Show Field Key:"
|
|
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: core/controllers/field_group.php:430 core/fields/page_link.php:113
|
410 |
+
#: core/fields/page_link.php:134 core/fields/post_object.php:288
|
411 |
+
#: core/fields/post_object.php:309 core/fields/select.php:230
|
412 |
+
#: core/fields/select.php:249 core/fields/taxonomy.php:352
|
413 |
+
#: core/fields/user.php:294 core/fields/wysiwyg.php:236
|
414 |
+
#: core/views/meta_box_fields.php:198 core/views/meta_box_fields.php:221
|
415 |
+
msgid "No"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: core/controllers/field_group.php:431 core/fields/page_link.php:112
|
419 |
+
#: core/fields/page_link.php:133 core/fields/post_object.php:287
|
420 |
+
#: core/fields/post_object.php:308 core/fields/select.php:229
|
421 |
+
#: core/fields/select.php:248 core/fields/taxonomy.php:351
|
422 |
+
#: core/fields/user.php:293 core/fields/wysiwyg.php:235
|
423 |
+
#: core/views/meta_box_fields.php:197 core/views/meta_box_fields.php:220
|
424 |
+
msgid "Yes"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: core/controllers/field_group.php:608
|
428 |
+
msgid "Front Page"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: core/controllers/field_group.php:609
|
432 |
+
msgid "Posts Page"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: core/controllers/field_group.php:610
|
436 |
+
msgid "Top Level Page (parent of 0)"
|
|
|
|
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: core/controllers/field_group.php:611
|
440 |
+
msgid "Parent Page (has children)"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: core/controllers/field_group.php:612
|
444 |
+
msgid "Child Page (has parent)"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: core/controllers/field_group.php:620
|
448 |
+
msgid "Default Template"
|
|
|
|
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: core/controllers/field_group.php:712 core/controllers/field_group.php:733
|
452 |
+
#: core/controllers/field_group.php:740 core/fields/page_link.php:84
|
453 |
+
#: core/fields/post_object.php:234 core/fields/post_object.php:258
|
454 |
+
#: core/fields/relationship.php:529 core/fields/relationship.php:553
|
455 |
+
#: core/fields/user.php:238
|
456 |
+
msgid "All"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: core/controllers/field_groups.php:147
|
460 |
+
msgid "Title"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: core/controllers/field_groups.php:216 core/controllers/field_groups.php:257
|
464 |
+
msgid "Changelog"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: core/controllers/field_groups.php:217
|
468 |
+
msgid "See what's new in"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: core/controllers/field_groups.php:217
|
472 |
+
msgid "version"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: core/controllers/field_groups.php:219
|
476 |
+
msgid "Resources"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: core/controllers/field_groups.php:221
|
480 |
+
msgid "Getting Started"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: core/controllers/field_groups.php:222
|
484 |
+
msgid "Field Types"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: core/controllers/field_groups.php:223
|
488 |
+
msgid "Functions"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: core/controllers/field_groups.php:224
|
492 |
+
msgid "Actions"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: core/controllers/field_groups.php:225 core/fields/relationship.php:572
|
496 |
+
msgid "Filters"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: core/controllers/field_groups.php:226
|
500 |
+
msgid "'How to' guides"
|
|
|
|
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: core/controllers/field_groups.php:227
|
504 |
+
msgid "Tutorials"
|
|
|
|
|
|
|
|
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: core/controllers/field_groups.php:232
|
508 |
+
msgid "Created by"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: core/controllers/field_groups.php:235
|
512 |
+
msgid "Vote"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: core/controllers/field_groups.php:236
|
516 |
+
msgid "Follow"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: core/controllers/field_groups.php:248
|
520 |
+
msgid "Welcome to Advanced Custom Fields"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: core/controllers/field_groups.php:249
|
524 |
+
msgid "Thank you for updating to the latest version!"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: core/controllers/field_groups.php:249
|
528 |
+
msgid "is more polished and enjoyable than ever before. We hope you like it."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: core/controllers/field_groups.php:256
|
532 |
+
msgid "What’s New"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: core/controllers/field_groups.php:259
|
536 |
+
msgid "Download Add-ons"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: core/controllers/field_groups.php:313
|
540 |
+
msgid "Activation codes have grown into plugins!"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: core/controllers/field_groups.php:314
|
544 |
+
msgid ""
|
545 |
+
"Add-ons are now activated by downloading and installing individual plugins. "
|
546 |
+
"Although these plugins will not be hosted on the wordpress.org repository, "
|
547 |
+
"each Add-on will continue to receive updates in the usual way."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: core/controllers/field_groups.php:320
|
551 |
+
msgid "All previous Add-ons have been successfully installed"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: core/controllers/field_groups.php:324
|
555 |
+
msgid "This website uses premium Add-ons which need to be downloaded"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: core/controllers/field_groups.php:324
|
559 |
+
msgid "Download your activated Add-ons"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: core/controllers/field_groups.php:329
|
563 |
+
msgid ""
|
564 |
+
"This website does not use premium Add-ons and will not be affected by this "
|
565 |
+
"change."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: core/controllers/field_groups.php:339
|
569 |
+
msgid "Easier Development"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: core/controllers/field_groups.php:341
|
573 |
+
msgid "New Field Types"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: core/controllers/field_groups.php:343
|
577 |
+
msgid "Taxonomy Field"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: core/controllers/field_groups.php:344
|
581 |
+
msgid "User Field"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: core/controllers/field_groups.php:345
|
585 |
+
msgid "Email Field"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: core/controllers/field_groups.php:346
|
589 |
+
msgid "Password Field"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: core/controllers/field_groups.php:348
|
593 |
+
msgid "Custom Field Types"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: core/controllers/field_groups.php:349
|
597 |
+
msgid ""
|
598 |
+
"Creating your own field type has never been easier! Unfortunately, version 3 "
|
599 |
+
"field types are not compatible with version 4."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: core/controllers/field_groups.php:350
|
603 |
+
msgid "Migrating your field types is easy, please"
|
|
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: core/controllers/field_groups.php:350
|
607 |
+
msgid "follow this tutorial"
|
|
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: core/controllers/field_groups.php:350
|
611 |
+
msgid "to learn more."
|
|
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: core/controllers/field_groups.php:352
|
615 |
+
msgid "Actions & Filters"
|
|
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: core/controllers/field_groups.php:353
|
619 |
+
msgid ""
|
620 |
+
"All actions & filters have recieved a major facelift to make customizing ACF "
|
621 |
+
"even easier! Please"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: core/controllers/field_groups.php:353
|
625 |
+
msgid "read this guide"
|
|
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: core/controllers/field_groups.php:353
|
629 |
+
msgid "to find the updated naming convention."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: core/controllers/field_groups.php:355
|
633 |
+
msgid "Preview draft is now working!"
|
|
|
|
|
|
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: core/controllers/field_groups.php:356
|
637 |
+
msgid "This bug has been squashed along with many other little critters!"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: core/controllers/field_groups.php:356
|
641 |
+
msgid "See the full changelog"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: core/controllers/field_groups.php:360
|
645 |
+
msgid "Important"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: core/controllers/field_groups.php:362
|
649 |
+
msgid "Database Changes"
|
650 |
+
msgstr ""
|
651 |
+
|
652 |
+
#: core/controllers/field_groups.php:363
|
653 |
msgid ""
|
654 |
+
"Absolutely <strong>no</strong> changes have been made to the database "
|
655 |
+
"between versions 3 and 4. This means you can roll back to version 3 without "
|
656 |
+
"any issues."
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: core/controllers/field_groups.php:365
|
660 |
+
msgid "Potential Issues"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: core/controllers/field_groups.php:366
|
664 |
+
msgid ""
|
665 |
+
"Do to the sizable changes surounding Add-ons, field types and action/"
|
666 |
+
"filters, your website may not operate correctly. It is important that you "
|
667 |
+
"read the full"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: core/controllers/field_groups.php:366
|
671 |
+
msgid "Migrating from v3 to v4"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: core/controllers/field_groups.php:366
|
675 |
+
msgid "guide to view the full list of changes."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: core/controllers/field_groups.php:369
|
679 |
+
msgid "Really Important!"
|
|
|
|
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: core/controllers/field_groups.php:369
|
683 |
+
msgid ""
|
684 |
+
"If you updated the ACF plugin without prior knowledge of such changes, "
|
685 |
+
"Please roll back to the latest"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: core/controllers/field_groups.php:369
|
689 |
+
msgid "version 3"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: core/controllers/field_groups.php:369
|
693 |
+
msgid "of this plugin."
|
|
|
|
|
|
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: core/controllers/field_groups.php:374
|
697 |
+
msgid "Thank You"
|
|
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: core/controllers/field_groups.php:375
|
701 |
+
msgid ""
|
702 |
+
"A <strong>BIG</strong> thank you to everyone who has helped test the version "
|
703 |
+
"4 beta and for all the support I have received."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: core/controllers/field_groups.php:376
|
707 |
+
msgid "Without you all, this release would not have been possible!"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: core/controllers/field_groups.php:380
|
711 |
+
msgid "Changelog for"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: core/controllers/field_groups.php:396
|
715 |
+
msgid "Learn more"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: core/controllers/field_groups.php:402
|
719 |
+
msgid "Overview"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: core/controllers/field_groups.php:404
|
723 |
+
msgid ""
|
724 |
+
"Previously, all Add-ons were unlocked via an activation code (purchased from "
|
725 |
+
"the ACF Add-ons store). New to v4, all Add-ons act as separate plugins which "
|
726 |
+
"need to be individually downloaded, installed and updated."
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: core/controllers/field_groups.php:406
|
730 |
+
msgid ""
|
731 |
+
"This page will assist you in downloading and installing each available Add-"
|
732 |
+
"on."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: core/controllers/field_groups.php:408
|
736 |
+
msgid "Available Add-ons"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: core/controllers/field_groups.php:410
|
740 |
+
msgid "The following Add-ons have been detected as activated on this website."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: core/controllers/field_groups.php:423
|
744 |
+
msgid "Name"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: core/controllers/field_groups.php:424
|
748 |
+
msgid "Activation Code"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: core/controllers/field_groups.php:456
|
752 |
msgid "Flexible Content"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: core/controllers/field_groups.php:466
|
756 |
+
msgid "Installation"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: core/controllers/field_groups.php:468
|
760 |
+
msgid "For each Add-on available, please perform the following:"
|
|
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: core/controllers/field_groups.php:470
|
764 |
+
msgid "Download the Add-on plugin (.zip file) to your desktop"
|
|
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: core/controllers/field_groups.php:471
|
768 |
+
msgid "Navigate to"
|
|
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: core/controllers/field_groups.php:471
|
772 |
+
msgid "Plugins > Add New > Upload"
|
|
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: core/controllers/field_groups.php:472
|
776 |
+
msgid "Use the uploader to browse, select and install your Add-on (.zip file)"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: core/controllers/field_groups.php:473
|
780 |
+
msgid ""
|
781 |
+
"Once the plugin has been uploaded and installed, click the 'Activate Plugin' "
|
782 |
+
"link"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: core/controllers/field_groups.php:474
|
786 |
+
msgid "The Add-on is now installed and activated!"
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: core/controllers/field_groups.php:488
|
790 |
+
msgid "Awesome. Let's get to work"
|
|
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: core/controllers/input.php:480
|
794 |
+
msgid "Validation Failed. One or more fields below are required."
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: core/controllers/input.php:482
|
798 |
+
msgid "Maximum values reached ( {max} values )"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: core/controllers/upgrade.php:72
|
802 |
+
msgid "Upgrade"
|
|
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: core/controllers/upgrade.php:616
|
806 |
+
msgid "Modifying field group options 'show on page'"
|
807 |
msgstr ""
|
808 |
|
809 |
+
#: core/controllers/upgrade.php:670
|
810 |
+
msgid "Modifying field option 'taxonomy'"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: core/controllers/upgrade.php:767
|
814 |
+
msgid "Moving user custom fields from wp_options to wp_usermeta'"
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: core/fields/_base.php:120 core/views/meta_box_location.php:71
|
818 |
+
msgid "Basic"
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: core/fields/checkbox.php:19 core/fields/taxonomy.php:328
|
822 |
+
msgid "Checkbox"
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: core/fields/checkbox.php:20 core/fields/radio.php:20
|
826 |
+
#: core/fields/select.php:23 core/fields/true_false.php:20
|
827 |
+
msgid "Choice"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: core/fields/checkbox.php:138 core/fields/radio.php:121
|
831 |
+
#: core/fields/select.php:183
|
832 |
+
msgid "Choices"
|
|
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: core/fields/checkbox.php:139 core/fields/select.php:184
|
836 |
+
msgid "Enter each choice on a new line."
|
|
|
|
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: core/fields/checkbox.php:140 core/fields/select.php:185
|
840 |
+
msgid "For more control, you may specify both a value and label like this:"
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:127
|
844 |
+
#: core/fields/select.php:186
|
845 |
+
msgid "red : Red"
|
|
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: core/fields/checkbox.php:141 core/fields/radio.php:128
|
849 |
+
#: core/fields/select.php:186
|
850 |
+
msgid "blue : Blue"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: core/fields/checkbox.php:158 core/fields/color_picker.php:73
|
854 |
+
#: core/fields/email.php:71 core/fields/number.php:71
|
855 |
+
#: core/fields/radio.php:146 core/fields/select.php:203
|
856 |
+
#: core/fields/text.php:73 core/fields/textarea.php:73
|
857 |
+
#: core/fields/true_false.php:104 core/fields/wysiwyg.php:179
|
858 |
+
msgid "Default Value"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: core/fields/checkbox.php:159 core/fields/select.php:204
|
862 |
+
msgid "Enter each default value on a new line"
|
|
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: core/fields/color_picker.php:19
|
866 |
+
msgid "Color Picker"
|
|
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: core/fields/color_picker.php:20 core/fields/date_picker/date_picker.php:20
|
870 |
+
msgid "jQuery"
|
|
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: core/fields/color_picker.php:74
|
874 |
+
msgid "eg: #ffffff"
|
|
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: core/fields/date_picker/date_picker.php:19
|
878 |
+
msgid "Date Picker"
|
|
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: core/fields/date_picker/date_picker.php:52
|
882 |
+
#: core/fields/date_picker/date_picker.php:132
|
883 |
+
msgid "Done"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: core/fields/date_picker/date_picker.php:53
|
887 |
+
#: core/fields/date_picker/date_picker.php:133
|
888 |
+
msgid "Today"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: core/fields/date_picker/date_picker.php:56
|
892 |
+
#: core/fields/date_picker/date_picker.php:136
|
893 |
+
msgid "Show a different month"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: core/fields/date_picker/date_picker.php:146
|
897 |
+
msgid "Save format"
|
|
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: core/fields/date_picker/date_picker.php:147
|
901 |
+
msgid ""
|
902 |
+
"This format will determin the value saved to the database and returned via "
|
903 |
+
"the API"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: core/fields/date_picker/date_picker.php:148
|
907 |
+
msgid "\"yymmdd\" is the most versatile save format. Read more about"
|
|
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: core/fields/date_picker/date_picker.php:148
|
911 |
+
#: core/fields/date_picker/date_picker.php:164
|
912 |
+
msgid "jQuery date formats"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: core/fields/date_picker/date_picker.php:162
|
916 |
+
msgid "Display format"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: core/fields/date_picker/date_picker.php:163
|
920 |
+
msgid "This format will be seen by the user when entering a value"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: core/fields/date_picker/date_picker.php:164
|
924 |
+
msgid ""
|
925 |
+
"\"dd/mm/yy\" or \"mm/dd/yy\" are the most used display formats. Read more "
|
926 |
+
"about"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: core/fields/date_picker/date_picker.php:178
|
930 |
+
msgid "Week Starts On"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: core/fields/dummy.php:19
|
934 |
+
msgid "Dummy"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: core/fields/email.php:19
|
938 |
+
msgid "Email"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: core/fields/file.php:19
|
942 |
+
msgid "File"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: core/fields/file.php:20 core/fields/image.php:20 core/fields/wysiwyg.php:20
|
946 |
+
msgid "Content"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: core/fields/file.php:76 core/fields/image.php:76
|
950 |
+
#: core/views/meta_box_fields.php:113
|
951 |
+
msgid "Edit"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: core/fields/file.php:77 core/fields/image.php:75
|
955 |
+
msgid "Remove"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: core/fields/file.php:84
|
959 |
+
msgid "No File Selected"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: core/fields/file.php:84
|
963 |
+
msgid "Add File"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: core/fields/file.php:119 core/fields/image.php:116
|
967 |
+
#: core/fields/taxonomy.php:376
|
968 |
+
msgid "Return Value"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: core/fields/file.php:130
|
972 |
+
msgid "File Object"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: core/fields/file.php:131
|
976 |
+
msgid "File URL"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: core/fields/file.php:132
|
980 |
+
msgid "File ID"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: core/fields/file.php:243
|
984 |
+
msgid "File Updated."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: core/fields/file.php:335 core/fields/image.php:374
|
988 |
+
msgid "Media attachment updated."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: core/fields/file.php:493
|
992 |
+
msgid "No files selected"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: core/fields/file.php:634
|
996 |
+
msgid "Add Selected Files"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: core/fields/file.php:667
|
1000 |
+
msgid "Select File"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: core/fields/file.php:670
|
1004 |
+
msgid "Update File"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: core/fields/image.php:19
|
1008 |
+
msgid "Image"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: core/fields/image.php:82
|
1012 |
msgid "No image selected"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: core/fields/image.php:82
|
1016 |
+
msgid "Add Image"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: core/fields/image.php:126
|
1020 |
msgid "Image Object"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: core/fields/image.php:127
|
1024 |
msgid "Image URL"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: core/fields/image.php:128
|
1028 |
msgid "Image ID"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: core/fields/image.php:136
|
1032 |
+
msgid "Preview Size"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: core/fields/image.php:283
|
1036 |
+
msgid "Image Updated."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
#: core/fields/image.php:525
|
1040 |
+
msgid "No images selected"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: core/fields/image.php:667
|
1044 |
+
msgid "Add Selected Images"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: core/fields/image.php:696
|
1048 |
msgid "Select Image"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: core/fields/image.php:699
|
1052 |
+
msgid "Update Image"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: core/fields/message.php:19 core/fields/message.php:71
|
1056 |
+
#: core/fields/true_false.php:89
|
1057 |
+
msgid "Message"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: core/fields/message.php:20 core/fields/radio.php:162 core/fields/tab.php:20
|
1061 |
+
msgid "Layout"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: core/fields/message.php:72
|
1065 |
+
msgid "Text & HTML entered here will appear inline with the fields"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: core/fields/message.php:73
|
1069 |
+
msgid "Please note that all text will first be passed through the wp function "
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: core/fields/number.php:19
|
1073 |
msgid "Number"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: core/fields/page_link.php:19
|
1077 |
msgid "Page Link"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: core/fields/page_link.php:20 core/fields/post_object.php:20
|
1081 |
+
#: core/fields/relationship.php:23 core/fields/taxonomy.php:23
|
1082 |
+
#: core/fields/user.php:23
|
1083 |
+
msgid "Relational"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: core/fields/page_link.php:78 core/fields/post_object.php:228
|
1087 |
+
#: core/fields/relationship.php:523 core/fields/relationship.php:602
|
1088 |
+
#: core/views/meta_box_location.php:72
|
1089 |
+
msgid "Post Type"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: core/fields/page_link.php:102 core/fields/post_object.php:277
|
1093 |
+
#: core/fields/select.php:220 core/fields/taxonomy.php:342
|
1094 |
+
#: core/fields/user.php:284
|
1095 |
+
msgid "Allow Null?"
|
|
|
|
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: core/fields/page_link.php:123 core/fields/post_object.php:298
|
1099 |
+
#: core/fields/select.php:239
|
1100 |
+
msgid "Select multiple values?"
|
|
|
|
|
|
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: core/fields/password.php:19
|
1104 |
+
msgid "Password"
|
|
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: core/fields/post_object.php:19
|
1108 |
msgid "Post Object"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: core/fields/post_object.php:252 core/fields/relationship.php:547
|
1112 |
msgid "Filter from Taxonomy"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: core/fields/radio.php:19
|
1116 |
msgid "Radio Button"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: core/fields/radio.php:122
|
1120 |
+
msgid "Enter your choices one per line"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: core/fields/radio.php:124
|
1124 |
+
msgid "Red"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: core/fields/radio.php:125
|
1128 |
+
msgid "Blue"
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
+
#: core/fields/radio.php:173
|
1132 |
msgid "Vertical"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: core/fields/radio.php:174
|
1136 |
msgid "Horizontal"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: core/fields/relationship.php:22
|
1140 |
msgid "Relationship"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: core/fields/relationship.php:362 core/fields/relationship.php:581
|
1144 |
msgid "Search"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: core/fields/relationship.php:582
|
1148 |
+
msgid "Post Type Select"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: core/fields/relationship.php:590
|
1152 |
+
msgid "Elements"
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: core/fields/relationship.php:591
|
1156 |
+
msgid "Selected elements will be displayed in each result"
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: core/fields/relationship.php:601
|
1160 |
+
msgid "Post Title"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: core/fields/relationship.php:613
|
1164 |
msgid "Maximum posts"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: core/fields/select.php:22 core/fields/taxonomy.php:333
|
1168 |
+
#: core/fields/user.php:275
|
1169 |
+
msgid "Select"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: core/fields/tab.php:19
|
1173 |
+
msgid "Tab"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: core/fields/tab.php:67
|
1177 |
+
msgid ""
|
1178 |
+
"All fields proceeding this \"tab field\" (or until another \"tab field\" is "
|
1179 |
+
"defined) will appear grouped on the edit screen."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: core/fields/tab.php:68
|
1183 |
+
msgid "You can use multiple tabs to break up your fields into sections."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: core/fields/taxonomy.php:22 core/fields/taxonomy.php:287
|
1187 |
+
msgid "Taxonomy"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: core/fields/taxonomy.php:221 core/fields/taxonomy.php:230
|
1191 |
+
#: core/fields/text.php:97 core/fields/textarea.php:97
|
1192 |
+
msgid "None"
|
1193 |
+
msgstr ""
|
1194 |
+
|
1195 |
+
#: core/fields/taxonomy.php:317 core/fields/user.php:260
|
1196 |
+
#: core/views/meta_box_fields.php:82 core/views/meta_box_fields.php:163
|
1197 |
+
msgid "Field Type"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: core/fields/taxonomy.php:327 core/fields/user.php:269
|
1201 |
+
msgid "Multiple Values"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: core/fields/taxonomy.php:329 core/fields/user.php:271
|
1205 |
+
msgid "Multi Select"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: core/fields/taxonomy.php:331 core/fields/user.php:273
|
1209 |
+
msgid "Single Value"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: core/fields/taxonomy.php:332
|
1213 |
+
msgid "Radio Buttons"
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: core/fields/taxonomy.php:361
|
1217 |
+
msgid "Load & Save Terms to Post"
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: core/fields/taxonomy.php:369
|
1221 |
+
msgid ""
|
1222 |
+
"Load value based on the post's terms and update the post's terms on save"
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: core/fields/taxonomy.php:386
|
1226 |
+
msgid "Term Object"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: core/fields/taxonomy.php:387
|
1230 |
+
msgid "Term ID"
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: core/fields/text.php:19
|
1234 |
msgid "Text"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: core/fields/text.php:87 core/fields/textarea.php:87
|
1238 |
msgid "Formatting"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: core/fields/text.php:88
|
1242 |
msgid "Define how to render html tags"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
+
#: core/fields/text.php:98 core/fields/textarea.php:99
|
|
|
|
|
|
|
|
|
1246 |
msgid "HTML"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: core/fields/textarea.php:19
|
1250 |
msgid "Text Area"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: core/fields/textarea.php:88
|
1254 |
msgid "Define how to render html tags / new lines"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: core/fields/textarea.php:98
|
1258 |
msgid "auto <br />"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: core/fields/true_false.php:19
|
1262 |
msgid "True / False"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: core/fields/true_false.php:90
|
1266 |
+
msgid "eg. Show extra content"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: core/fields/user.php:22
|
1270 |
+
msgid "User"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: core/fields/user.php:233
|
1274 |
+
msgid "Filter by role"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: core/fields/wysiwyg.php:19
|
1278 |
+
msgid "Wysiwyg Editor"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: core/fields/wysiwyg.php:193
|
1282 |
+
msgid "Toolbar"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: core/fields/wysiwyg.php:225
|
1286 |
msgid "Show Media Upload Buttons?"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: core/views/meta_box_fields.php:23
|
1290 |
+
msgid "New Field"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: core/views/meta_box_fields.php:24
|
1294 |
+
msgid "new_field"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: core/views/meta_box_fields.php:57
|
1298 |
+
msgid "Field type does not exist"
|
|
|
|
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: core/views/meta_box_fields.php:64
|
1302 |
msgid "Move to trash. Are you sure?"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: core/views/meta_box_fields.php:65
|
1306 |
msgid "checked"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: core/views/meta_box_fields.php:66
|
1310 |
msgid "No toggle fields available"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: core/views/meta_box_fields.php:67
|
1314 |
+
msgid "copy"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: core/views/meta_box_fields.php:79
|
1318 |
+
msgid "Field Order"
|
1319 |
+
msgstr ""
|
1320 |
+
|
1321 |
+
#: core/views/meta_box_fields.php:80 core/views/meta_box_fields.php:132
|
1322 |
+
msgid "Field Label"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: core/views/meta_box_fields.php:81 core/views/meta_box_fields.php:148
|
1326 |
+
msgid "Field Name"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: core/views/meta_box_fields.php:83
|
1330 |
msgid "Field Key"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: core/views/meta_box_fields.php:95
|
1334 |
msgid ""
|
1335 |
"No fields. Click the <strong>+ Add Field</strong> button to create your "
|
1336 |
"first field."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: core/views/meta_box_fields.php:110 core/views/meta_box_fields.php:113
|
1340 |
+
msgid "Edit this Field"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: core/views/meta_box_fields.php:114
|
1344 |
+
msgid "Read documentation for this field"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: core/views/meta_box_fields.php:114
|
1348 |
+
msgid "Docs"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: core/views/meta_box_fields.php:115
|
1352 |
+
msgid "Duplicate this Field"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: core/views/meta_box_fields.php:115
|
1356 |
+
msgid "Duplicate"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: core/views/meta_box_fields.php:116
|
1360 |
+
msgid "Delete this Field"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: core/views/meta_box_fields.php:116
|
1364 |
+
msgid "Delete"
|
1365 |
+
msgstr ""
|
1366 |
+
|
1367 |
+
#: core/views/meta_box_fields.php:133
|
1368 |
+
msgid "This is the name which will appear on the EDIT page"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: core/views/meta_box_fields.php:149
|
1372 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: core/views/meta_box_fields.php:176
|
1376 |
+
msgid "Field Instructions"
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: core/views/meta_box_fields.php:177
|
1380 |
msgid "Instructions for authors. Shown when submitting data"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: core/views/meta_box_fields.php:189
|
1384 |
msgid "Required?"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: core/views/meta_box_fields.php:212
|
1388 |
msgid "Conditional Logic"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: core/views/meta_box_fields.php:263 core/views/meta_box_location.php:113
|
1392 |
msgid "is equal to"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: core/views/meta_box_fields.php:264 core/views/meta_box_location.php:114
|
1396 |
msgid "is not equal to"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: core/views/meta_box_fields.php:282
|
1400 |
msgid "Show this field when"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: core/views/meta_box_fields.php:288
|
1404 |
msgid "all"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: core/views/meta_box_fields.php:289
|
1408 |
msgid "any"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: core/views/meta_box_fields.php:292
|
1412 |
msgid "these rules are met"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: core/views/meta_box_fields.php:306
|
1416 |
+
msgid "Close Field"
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: core/views/meta_box_fields.php:319
|
1420 |
+
msgid "Drag and drop to reorder"
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: core/views/meta_box_fields.php:320
|
1424 |
msgid "+ Add Field"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: core/views/meta_box_location.php:45
|
1428 |
msgid "Rules"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: core/views/meta_box_location.php:46
|
1432 |
msgid ""
|
1433 |
"Create a set of rules to determine which edit screens will use these "
|
1434 |
"advanced custom fields"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: core/views/meta_box_location.php:57
|
1438 |
+
msgid "Show this field group if"
|
1439 |
+
msgstr ""
|
1440 |
+
|
1441 |
+
#: core/views/meta_box_location.php:59 core/views/meta_box_location.php:155
|
1442 |
+
#: core/views/meta_box_location.php:172
|
1443 |
+
msgid "or"
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: core/views/meta_box_location.php:73
|
1447 |
msgid "Logged in User Type"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: core/views/meta_box_location.php:75 core/views/meta_box_location.php:76
|
1451 |
msgid "Page"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: core/views/meta_box_location.php:77
|
1455 |
+
msgid "Page Type"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: core/views/meta_box_location.php:78
|
1459 |
+
msgid "Page Parent"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: core/views/meta_box_location.php:79
|
1463 |
+
msgid "Page Template"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: core/views/meta_box_location.php:81 core/views/meta_box_location.php:82
|
1467 |
msgid "Post"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: core/views/meta_box_location.php:83
|
1471 |
+
msgid "Post Category"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: core/views/meta_box_location.php:84
|
1475 |
+
msgid "Post Format"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: core/views/meta_box_location.php:85
|
1479 |
+
msgid "Post Taxonomy"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: core/views/meta_box_location.php:87
|
1483 |
msgid "Other"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: core/views/meta_box_location.php:88
|
1487 |
+
msgid "Taxonomy Term (Add / Edit)"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: core/views/meta_box_location.php:89
|
1491 |
msgid "User (Add / Edit)"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: core/views/meta_box_location.php:90
|
1495 |
+
msgid "Media Attachment (Edit)"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: core/views/meta_box_location.php:142
|
1499 |
+
msgid "and"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: core/views/meta_box_location.php:157
|
1503 |
+
msgid "Add rule group"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: core/views/meta_box_location.php:168
|
1507 |
msgid "Unlock options add-on with an activation code"
|
1508 |
msgstr ""
|
1509 |
|
1519 |
msgid "Position"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: core/views/meta_box_options.php:50
|
1523 |
+
msgid "Normal"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: core/views/meta_box_options.php:51
|
1527 |
+
msgid "Side"
|
1528 |
+
msgstr ""
|
1529 |
+
|
1530 |
#: core/views/meta_box_options.php:60
|
1531 |
msgid "Style"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: core/views/meta_box_options.php:70
|
1535 |
+
msgid "No Metabox"
|
1536 |
+
msgstr ""
|
1537 |
+
|
1538 |
+
#: core/views/meta_box_options.php:71
|
1539 |
+
msgid "Standard Metabox"
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
#: core/views/meta_box_options.php:80
|
1543 |
msgid "Hide on screen"
|
1544 |
msgstr ""
|
1581 |
msgid "Author"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: core/views/meta_box_options.php:100
|
1585 |
+
msgid "Format"
|
1586 |
+
msgstr ""
|
1587 |
+
|
1588 |
#: core/views/meta_box_options.php:101
|
1589 |
msgid "Featured Image"
|
1590 |
msgstr ""
|
readme.txt
CHANGED
@@ -101,6 +101,10 @@ http://support.advancedcustomfields.com/
|
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
104 |
= 4.1.0 =
|
105 |
* [Added] Field group: location rules can now be grouped into AND / OR statements
|
106 |
* [Added] Relationship field: Add option for filters (search / post_type)
|
101 |
|
102 |
== Changelog ==
|
103 |
|
104 |
+
= 4.1.1 =
|
105 |
+
* [Fixed] Relationship field: Fix bug causing sub field to not load $field object / use elements option correctly
|
106 |
+
* [Updated] Update German translations
|
107 |
+
|
108 |
= 4.1.0 =
|
109 |
* [Added] Field group: location rules can now be grouped into AND / OR statements
|
110 |
* [Added] Relationship field: Add option for filters (search / post_type)
|