Advanced Custom Fields - Version 3.2.9

Version Description

  • [Added] Add new Gallery Field
  • [Fixed] Test / Fix update_field on repeater / flexible content
  • [Fixed] Fix regex JS issue with adding nested repeaters
  • [Added] Add new Czech translation - Thanks to Webees ( http://www.webees.cz/ )
Download this release

Release Info

Developer elliotcondon
Plugin Icon 128x128 Advanced Custom Fields
Version 3.2.9
Comparing to
See all releases

Code changes from version 3.2.8 to 3.2.9

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 and more!
6
- Version: 3.2.8
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
@@ -47,7 +47,7 @@ class Acf
47
  // vars
48
  $this->path = plugin_dir_path(__FILE__);
49
  $this->dir = plugins_url('',__FILE__);
50
- $this->version = '3.2.8';
51
  $this->upgrade_version = '3.2.5'; // this is the latest version which requires an upgrade
52
  $this->cache = array(); // basic array cache to hold data throughout the page load
53
 
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 and more!
6
+ Version: 3.2.9
7
  Author: Elliot Condon
8
  Author URI: http://www.elliotcondon.com/
9
  License: GPL
47
  // vars
48
  $this->path = plugin_dir_path(__FILE__);
49
  $this->dir = plugins_url('',__FILE__);
50
+ $this->version = '3.2.9';
51
  $this->upgrade_version = '3.2.5'; // this is the latest version which requires an upgrade
52
  $this->cache = array(); // basic array cache to hold data throughout the page load
53
 
core/api.php CHANGED
@@ -677,7 +677,53 @@ function update_field($field_name, $value, $post_id = false)
677
  {
678
  // we can load the field properly!
679
  $field = $acf->get_acf_field($field_key);
680
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
681
 
682
 
683
  $acf->update_value($post_id, $field, $value);
677
  {
678
  // we can load the field properly!
679
  $field = $acf->get_acf_field($field_key);
680
+ }
681
+
682
+
683
+ // sub fields? They need formatted data
684
+ if( isset($field['sub_fields']) )
685
+ {
686
+ // define sub field keys
687
+ $sub_field_keys = array();
688
+ if( $field['sub_fields'] )
689
+ {
690
+ foreach( $field['sub_fields'] as $sub_field )
691
+ {
692
+ $sub_field_keys[ $sub_field['name'] ] = $sub_field['key'];
693
+ }
694
+ }
695
+
696
+
697
+ // loop through the values and format the array to use sub field keys
698
+ if( $value )
699
+ {
700
+ foreach( $value as $row_i => $row)
701
+ {
702
+ if( $row )
703
+ {
704
+ foreach( $row as $sub_field_name => $sub_field_value )
705
+ {
706
+
707
+ if( isset($sub_field_keys[$sub_field_name]) )
708
+ {
709
+ // change the array key from "sub_field_name" to "sub_field_key"
710
+ $value[$row_i][ $sub_field_keys[$sub_field_name] ] = $sub_field_value;
711
+
712
+ unset( $value[$row_i][$sub_field_name] );
713
+ }
714
+
715
+ }
716
+ // foreach( $row as $sub_field_name => $sub_field_value )
717
+ }
718
+ // if( $row )
719
+ }
720
+ // foreach( $value as $row_i => $row)
721
+ }
722
+ // if( $value )
723
+
724
+ }
725
+
726
+
727
 
728
 
729
  $acf->update_value($post_id, $field, $value);
core/controllers/settings.php CHANGED
@@ -229,7 +229,6 @@ if($action == ""):
229
  </form>
230
  </td>
231
  </tr>
232
- <?php /*
233
  <tr>
234
  <td><?php _e("Gallery Field",'acf'); ?></td>
235
  <td><?php echo $this->parent->is_field_unlocked('gallery') ? __("Active",'acf') : __("Inactive",'acf'); ?></td>
@@ -249,7 +248,6 @@ if($action == ""):
249
  </form>
250
  </td>
251
  </tr>
252
- */ ?>
253
  <tr>
254
  <td><?php _e("Options Page",'acf'); ?></td>
255
  <td><?php echo $this->parent->is_field_unlocked('options_page') ? __("Active",'acf') : __("Inactive",'acf'); ?></td>
229
  </form>
230
  </td>
231
  </tr>
 
232
  <tr>
233
  <td><?php _e("Gallery Field",'acf'); ?></td>
234
  <td><?php echo $this->parent->is_field_unlocked('gallery') ? __("Active",'acf') : __("Inactive",'acf'); ?></td>
248
  </form>
249
  </td>
250
  </tr>
 
251
  <tr>
252
  <td><?php _e("Options Page",'acf'); ?></td>
253
  <td><?php echo $this->parent->is_field_unlocked('options_page') ? __("Active",'acf') : __("Inactive",'acf'); ?></td>
core/fields/gallery.php CHANGED
@@ -286,7 +286,7 @@ class acf_Gallery extends acf_Field
286
  </script>
287
 
288
  </div>
289
- <?
290
  }
291
 
292
 
286
  </script>
287
 
288
  </div>
289
+ <?php
290
  }
291
 
292
 
core/fields/repeater.php CHANGED
@@ -127,7 +127,7 @@ class acf_Repeater extends acf_Field
127
  if( $field['row_limit'] > 1 ): ?><th class="order"></th><?php endif;
128
 
129
  foreach( $field['sub_fields'] as $sub_field_i => $sub_field):
130
- ?><th class="<?php echo $sub_field['name']; ?>" <?php if($sub_field_i != 0): ?>style="width:<?php echo 95/count($sub_fields); ?>%;"<?php endif; ?>><span><?php echo $sub_field['label']; ?></span></th><?php
131
  endforeach;
132
 
133
  if( $field['row_min'] < $field['row_limit'] ): ?><th class="remove"></th><?php endif;
127
  if( $field['row_limit'] > 1 ): ?><th class="order"></th><?php endif;
128
 
129
  foreach( $field['sub_fields'] as $sub_field_i => $sub_field):
130
+ ?><th class="<?php echo $sub_field['name']; ?>" <?php if($sub_field_i != 0): ?>style="width:<?php echo 95/count( $field['sub_fields'] ); ?>%;"<?php endif; ?>><span><?php echo $sub_field['label']; ?></span></th><?php
131
  endforeach;
132
 
133
  if( $field['row_min'] < $field['row_limit'] ): ?><th class="remove"></th><?php endif;
css/input.css CHANGED
@@ -1149,12 +1149,12 @@ ul.checkbox_list {
1149
  }
1150
 
1151
  .acf-gallery .hover a {
1152
- background: url(../images/sprite.png) no-repeat scroll -54px -102px #fff;
1153
  display: block;
1154
  height: 22px;
1155
  width: 22px;
1156
  border-radius: 15px;
1157
- border: #dfdfdf solid 1px;
1158
  }
1159
 
1160
  .acf-gallery .hover a:hover {
1149
  }
1150
 
1151
  .acf-gallery .hover a {
1152
+ background: url("../images/sprite.png") no-repeat scroll -54px -102px #fff;
1153
  display: block;
1154
  height: 22px;
1155
  width: 22px;
1156
  border-radius: 15px;
1157
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
1158
  }
1159
 
1160
  .acf-gallery .hover a:hover {
lang/acf-cs_CZ.mo ADDED
Binary file
lang/acf-cs_CZ.po ADDED
@@ -0,0 +1,1197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2012
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: 2012-07-03 07:34:11+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: 2012-07-05 19:22+0100\n"
12
+ "Last-Translator: Jakub Machala <jakubmachala@webees.cz>\n"
13
+ "Language-Team: webees.cz s.r.o. <jakubmachala@webees.cz>\n"
14
+
15
+ #: acf.php:273
16
+ #: core/views/meta_box_options.php:94
17
+ msgid "Custom Fields"
18
+ msgstr "Vlastní pole"
19
+
20
+ #: acf.php:294
21
+ msgid "Field&nbsp;Groups"
22
+ msgstr "Skupiny&nbsp;polí"
23
+
24
+ #: acf.php:295
25
+ #: core/controllers/field_groups.php:153
26
+ #: core/controllers/upgrade.php:70
27
+ msgid "Advanced Custom Fields"
28
+ msgstr "Pokročilá vlastní pole"
29
+
30
+ #: acf.php:296
31
+ #: core/fields/flexible_content.php:271
32
+ msgid "Add New"
33
+ msgstr "Přidat nové"
34
+
35
+ #: acf.php:297
36
+ msgid "Add New Field Group"
37
+ msgstr "Přidat novou skupinu polí"
38
+
39
+ #: acf.php:298
40
+ msgid "Edit Field Group"
41
+ msgstr "Upravit skupinu polí"
42
+
43
+ #: acf.php:299
44
+ msgid "New Field Group"
45
+ msgstr "Nová skupina polí"
46
+
47
+ #: acf.php:300
48
+ msgid "View Field Group"
49
+ msgstr "Prohlížet skupinu polí"
50
+
51
+ #: acf.php:301
52
+ msgid "Search Field Groups"
53
+ msgstr "Hledat skupiny polí"
54
+
55
+ #: acf.php:302
56
+ msgid "No Field Groups found"
57
+ msgstr "Nebyly nalezeny žádné skupiny polí"
58
+
59
+ #: acf.php:303
60
+ msgid "No Field Groups found in Trash"
61
+ msgstr "V koši nebyly nalezeny žádné skupiny polí"
62
+
63
+ #: acf.php:338
64
+ #: acf.php:341
65
+ msgid "Field group updated."
66
+ msgstr "Skupina polí aktualizována"
67
+
68
+ #: acf.php:339
69
+ msgid "Custom field updated."
70
+ msgstr "Vlastní pole aktualizováno."
71
+
72
+ #: acf.php:340
73
+ msgid "Custom field deleted."
74
+ msgstr "Vlastní pole smazáno."
75
+
76
+ #. translators: %s: date and time of the revision
77
+ #: acf.php:343
78
+ msgid "Field group restored to revision from %s"
79
+ msgstr "Skupina polí obnovena z revize %s"
80
+
81
+ #: acf.php:344
82
+ msgid "Field group published."
83
+ msgstr "Skupina polí publikována."
84
+
85
+ #: acf.php:345
86
+ msgid "Field group saved."
87
+ msgstr "Skupina polí uložena."
88
+
89
+ #: acf.php:346
90
+ msgid "Field group submitted."
91
+ msgstr "Skupina polí odeslána."
92
+
93
+ #: acf.php:347
94
+ msgid "Field group scheduled for."
95
+ msgstr "Skupina polí naplánována."
96
+
97
+ #: acf.php:348
98
+ msgid "Field group draft updated."
99
+ msgstr "Koncept skupiny polí aktualizován."
100
+
101
+ #: acf.php:367
102
+ msgid "Title"
103
+ msgstr "Název"
104
+
105
+ #: acf.php:589
106
+ msgid "Error: Field Type does not exist!"
107
+ msgstr "Chyba: Typ pole neexistuje!"
108
+
109
+ #: core/actions/export.php:19
110
+ msgid "No ACF groups selected"
111
+ msgstr "Nejsou vybrány žádné ACF skupiny"
112
+
113
+ #: core/api.php:509
114
+ #: core/controllers/everything_fields.php:198
115
+ #: core/controllers/input.php:168
116
+ #: core/controllers/options_page.php:161
117
+ #: core/everything_fields.php:201
118
+ #: core/options_page.php:178
119
+ msgid "Validation Failed. One or more fields below are required."
120
+ msgstr "Ověřování selhalo. Jedno nebo více polí níže je povinné."
121
+
122
+ #: core/controllers/field_group.php:148
123
+ msgid "Fields"
124
+ msgstr "Pole"
125
+
126
+ #: core/controllers/field_group.php:149
127
+ msgid "Location"
128
+ msgstr "Umístění"
129
+
130
+ #: core/controllers/field_group.php:149
131
+ msgid "Add Fields to Edit Screens"
132
+ msgstr "Přidat pole na obrazovky úprav"
133
+
134
+ #: core/controllers/field_group.php:150
135
+ #: core/controllers/field_group.php:386
136
+ #: core/controllers/options_page.php:62
137
+ #: core/controllers/options_page.php:74
138
+ #: core/options_page.php:62
139
+ #: core/options_page.php:74
140
+ #: core/views/meta_box_location.php:143
141
+ msgid "Options"
142
+ msgstr "Nastavení"
143
+
144
+ #: core/controllers/field_group.php:150
145
+ msgid "Customise the edit page"
146
+ msgstr "Přizpůsobit stránku úprav"
147
+
148
+ #: core/controllers/field_group.php:327
149
+ msgid "Parent Page"
150
+ msgstr "Rodičovská stránka"
151
+
152
+ #: core/controllers/field_group.php:328
153
+ msgid "Child Page"
154
+ msgstr "Podstránka"
155
+
156
+ #: core/controllers/field_group.php:336
157
+ msgid "Default Template"
158
+ msgstr "Výchozí šablona"
159
+
160
+ #: core/controllers/field_group.php:410
161
+ #: core/controllers/field_group.php:431
162
+ #: core/controllers/field_group.php:438
163
+ #: core/fields/page_link.php:202
164
+ #: core/fields/post_object.php:215
165
+ #: core/fields/post_object.php:239
166
+ #: core/fields/relationship.php:251
167
+ #: core/fields/relationship.php:302
168
+ msgid "All"
169
+ msgstr "Vše"
170
+
171
+ #: core/controllers/field_groups.php:155
172
+ msgid "Changelog"
173
+ msgstr "Seznam změn"
174
+
175
+ #: core/controllers/field_groups.php:156
176
+ msgid "See what's new in"
177
+ msgstr "Co je nového v"
178
+
179
+ #: core/controllers/field_groups.php:158
180
+ msgid "Resources"
181
+ msgstr "Zdroje"
182
+
183
+ #: core/controllers/field_groups.php:159
184
+ msgid "Read documentation, learn the functions and find some tips &amp; tricks for your next web project."
185
+ msgstr "Přečtěte si dokzmentaci, naučte se funkce a objevte zajímavé tipy &amp; triky pro váš další webový projekt."
186
+
187
+ #: core/controllers/field_groups.php:160
188
+ msgid "View the ACF website"
189
+ msgstr "Prohlížet web ACF"
190
+
191
+ #: core/controllers/field_groups.php:165
192
+ msgid "Created by"
193
+ msgstr "Vytvořil"
194
+
195
+ #: core/controllers/field_groups.php:168
196
+ msgid "Vote"
197
+ msgstr "Hlasujte"
198
+
199
+ #: core/controllers/field_groups.php:169
200
+ msgid "Follow"
201
+ msgstr "Následujte"
202
+
203
+ #: core/controllers/options_page.php:140
204
+ #: core/options_page.php:157
205
+ msgid "Options Updated"
206
+ msgstr "Nastavení aktualizováno"
207
+
208
+ #: core/controllers/options_page.php:253
209
+ #: core/options_page.php:271
210
+ msgid "No Custom Field Group found for the options page"
211
+ msgstr "Žádná vlastní skupina polí nebyla pro stránku nastavení nalezena"
212
+
213
+ #: core/controllers/options_page.php:253
214
+ #: core/options_page.php:271
215
+ msgid "Create a Custom Field Group"
216
+ msgstr "Vytvořit vlastní skupinu polí"
217
+
218
+ #: core/controllers/options_page.php:264
219
+ #: core/options_page.php:282
220
+ msgid "Publish"
221
+ msgstr "Publikovat"
222
+
223
+ #: core/controllers/settings.php:49
224
+ msgid "Settings"
225
+ msgstr "Nastavení"
226
+
227
+ #: core/controllers/settings.php:80
228
+ msgid "Repeater field deactivated"
229
+ msgstr "Opakovací pole deaktivováno"
230
+
231
+ #: core/controllers/settings.php:84
232
+ msgid "Options page deactivated"
233
+ msgstr "Stránka nastavení deaktivována"
234
+
235
+ #: core/controllers/settings.php:88
236
+ msgid "Flexible Content field deactivated"
237
+ msgstr "Pole flexibilního pole deaktivováno"
238
+
239
+ #: core/controllers/settings.php:92
240
+ msgid "Everything Fields deactivated"
241
+ msgstr "Všechna pole deaktivována"
242
+
243
+ #: core/controllers/settings.php:116
244
+ msgid "Repeater field activated"
245
+ msgstr "Opakovací pole aktivováno"
246
+
247
+ #: core/controllers/settings.php:120
248
+ msgid "Options page activated"
249
+ msgstr "Stránka nastavení aktivována"
250
+
251
+ #: core/controllers/settings.php:124
252
+ msgid "Flexible Content field activated"
253
+ msgstr "Pole flexibilního obsahu aktivováno"
254
+
255
+ #: core/controllers/settings.php:128
256
+ msgid "Everything Fields activated"
257
+ msgstr "Všechna pole aktivována"
258
+
259
+ #: core/controllers/settings.php:133
260
+ msgid "License key unrecognised"
261
+ msgstr "Licenční klíč nebyl rozpoznán"
262
+
263
+ #: core/controllers/settings.php:167
264
+ msgid "Advanced Custom Fields Settings"
265
+ msgstr "Nastavení Pokročilých vlastních polí"
266
+
267
+ #: core/controllers/settings.php:184
268
+ msgid "Activate Add-ons."
269
+ msgstr "Aktivovat přídavky."
270
+
271
+ #: core/controllers/settings.php:188
272
+ #: core/fields/flexible_content.php:326
273
+ #: core/fields/flexible_content.php:402
274
+ #: core/fields/repeater.php:231
275
+ #: core/fields/repeater.php:307
276
+ #: core/views/meta_box_fields.php:63
277
+ #: core/views/meta_box_fields.php:136
278
+ msgid "Field Type"
279
+ msgstr "Typ pole"
280
+
281
+ #: core/controllers/settings.php:189
282
+ msgid "Status"
283
+ msgstr "Stav"
284
+
285
+ #: core/controllers/settings.php:190
286
+ msgid "Activation Code"
287
+ msgstr "Aktivační kód"
288
+
289
+ #: core/controllers/settings.php:195
290
+ msgid "Repeater Field"
291
+ msgstr "Opakovací pole"
292
+
293
+ #: core/controllers/settings.php:196
294
+ #: core/controllers/settings.php:215
295
+ #: core/controllers/settings.php:234
296
+ msgid "Active"
297
+ msgstr "Aktivní"
298
+
299
+ #: core/controllers/settings.php:196
300
+ #: core/controllers/settings.php:215
301
+ #: core/controllers/settings.php:234
302
+ msgid "Inactive"
303
+ msgstr "Neaktivní"
304
+
305
+ #: core/controllers/settings.php:214
306
+ msgid "Flexible Content Field"
307
+ msgstr "Pole flexibilního obsahu"
308
+
309
+ #: core/controllers/settings.php:233
310
+ #: core/views/meta_box_location.php:74
311
+ msgid "Options Page"
312
+ msgstr "Stránka nastavení"
313
+
314
+ #: core/controllers/settings.php:256
315
+ msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
316
+ msgstr "Přídavky mohou být odemčeny zakoupením licenčního klíče. Každý klíč může být použit na více webech."
317
+
318
+ #: core/controllers/settings.php:256
319
+ msgid "Find Add-ons"
320
+ msgstr "Hledat přídavky"
321
+
322
+ #: core/controllers/settings.php:274
323
+ msgid "Export Field Groups to XML"
324
+ msgstr "Exportovat skupiny polí do XML"
325
+
326
+ #: core/controllers/settings.php:307
327
+ msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
328
+ msgstr "ACF vytvoří soubor .xml exportu, který je kompatibilní s originálním importním pluginem WP."
329
+
330
+ #: core/controllers/settings.php:310
331
+ msgid "Export XML"
332
+ msgstr "Exportovat XML"
333
+
334
+ #: core/controllers/settings.php:316
335
+ msgid "Import Field Groups"
336
+ msgstr "Importovat skupiny polí"
337
+
338
+ #: core/controllers/settings.php:318
339
+ msgid "Navigate to the"
340
+ msgstr "Běžte na"
341
+
342
+ #: core/controllers/settings.php:318
343
+ msgid "Import Tool"
344
+ msgstr "Nástroj importu"
345
+
346
+ #: core/controllers/settings.php:318
347
+ msgid "and select WordPress"
348
+ msgstr "a vyberte WordPress"
349
+
350
+ #: core/controllers/settings.php:319
351
+ msgid "Install WP import plugin if prompted"
352
+ msgstr "Nainstalujte importní WP plugin, pokud jste o to požádáni"
353
+
354
+ #: core/controllers/settings.php:320
355
+ msgid "Upload and import your exported .xml file"
356
+ msgstr "Nahrajte a importujte váš exportovaný .xml soubor"
357
+
358
+ #: core/controllers/settings.php:321
359
+ msgid "Select your user and ignore Import Attachments"
360
+ msgstr "Vyberte vašeho uživatele a ignorujte možnost Importovat přílohy"
361
+
362
+ #: core/controllers/settings.php:322
363
+ msgid "That's it! Happy WordPressing"
364
+ msgstr "To je vše! Veselé WordPressování!"
365
+
366
+ #: core/controllers/settings.php:341
367
+ msgid "Export Field Groups to PHP"
368
+ msgstr "Exportujte skupiny polí do PHP"
369
+
370
+ #: core/controllers/settings.php:374
371
+ msgid "ACF will create the PHP code to include in your theme"
372
+ msgstr "ACF vytvoří PHP kód pro vložení do vaší šablony"
373
+
374
+ #: core/controllers/settings.php:377
375
+ msgid "Create PHP"
376
+ msgstr "Vytvořit PHP"
377
+
378
+ #: core/controllers/settings.php:383
379
+ #: core/controllers/settings.php:411
380
+ msgid "Register Field Groups with PHP"
381
+ msgstr "Registrovat skupinu polí s PHP"
382
+
383
+ #: core/controllers/settings.php:385
384
+ #: core/controllers/settings.php:413
385
+ msgid "Copy the PHP code generated"
386
+ msgstr "Zkopírujte vygenerovaný PHP kód"
387
+
388
+ #: core/controllers/settings.php:386
389
+ #: core/controllers/settings.php:414
390
+ msgid "Paste into your functions.php file"
391
+ msgstr "Vložte jej do vašeho souboru functions.php"
392
+
393
+ #: core/controllers/settings.php:387
394
+ #: core/controllers/settings.php:415
395
+ msgid "To activate any Add-ons, edit and use the code in the first few lines."
396
+ msgstr "K aktivací kteréhokoli přídavku upravte a použijte kód na prvních několika řádcích."
397
+
398
+ #: core/controllers/settings.php:408
399
+ msgid "Back to settings"
400
+ msgstr "Zpět na nastavení"
401
+
402
+ #: core/controllers/settings.php:436
403
+ msgid ""
404
+ "/**\n"
405
+ " * Activate Add-ons\n"
406
+ " * Here you can enter your activation codes to unlock Add-ons to use in your theme. \n"
407
+ " * Since all activation codes are multi-site licenses, you are allowed to include your key in premium themes. \n"
408
+ " * Use the commented out code to update the database with your activation code. \n"
409
+ " * You may place this code inside an IF statement that only runs on theme activation.\n"
410
+ " */"
411
+ msgstr ""
412
+ "/**\n"
413
+ " * Aktivovat přídavky\n"
414
+ " * Zde můžete vložit váš aktivační kód pro odemčení přídavků k použití ve vaší šabloně. \n"
415
+ " * Jelikož jsou všechny aktivační kódy licencovány pro použití na více webech, můžete je použít ve vaší premium šabloně. \n"
416
+ " * Použijte zakomentovaný kód pro aktualizaci databáze s vaším aktivačním kódem. \n"
417
+ " * Tento kód můžete vložit dovnitř IF konstrukce, která proběhne pouze po aktivaci šablony.\n"
418
+ " */"
419
+
420
+ #: core/controllers/settings.php:449
421
+ msgid ""
422
+ "/**\n"
423
+ " * Register field groups\n"
424
+ " * The register_field_group function accepts 1 array which holds the relevant data to register a field group\n"
425
+ " * You may edit the array as you see fit. However, this may result in errors if the array is not compatible with ACF\n"
426
+ " * This code must run every time the functions.php file is read\n"
427
+ " */"
428
+ msgstr ""
429
+ "/**\n"
430
+ " * Registrace skupiny polí\n"
431
+ " * Funkce register_field_group akceptuje pole, které obsahuje relevatní data k registraci skupiny polí\n"
432
+ " * Pole můžete upravit podle potřeb. Může to ovšem vyústit v pole nekompatibilní s ACF\n"
433
+ " * Tento kód musí proběhnout při každém čtení souboru functions.php\n"
434
+ " */"
435
+
436
+ #: core/controllers/settings.php:479
437
+ msgid "No field groups were selected"
438
+ msgstr "Nebyly vybrány žádné skupiny polí"
439
+
440
+ #: core/controllers/upgrade.php:51
441
+ msgid "Upgrade"
442
+ msgstr "Aktualizovat"
443
+
444
+ #: core/controllers/upgrade.php:70
445
+ msgid "requires a database upgrade"
446
+ msgstr "vyžaduje aktualizaci databáze"
447
+
448
+ #: core/controllers/upgrade.php:70
449
+ msgid "why?"
450
+ msgstr "proč?"
451
+
452
+ #: core/controllers/upgrade.php:70
453
+ msgid "Please"
454
+ msgstr "Prosím"
455
+
456
+ #: core/controllers/upgrade.php:70
457
+ msgid "backup your database"
458
+ msgstr "zálohujte svou databázi"
459
+
460
+ #: core/controllers/upgrade.php:70
461
+ msgid "then click"
462
+ msgstr "a pak klikněte"
463
+
464
+ #: core/controllers/upgrade.php:70
465
+ msgid "Upgrade Database"
466
+ msgstr "Aktualizovat databázi"
467
+
468
+ #: core/controllers/upgrade.php:590
469
+ msgid "Modifying field group options 'show on page'"
470
+ msgstr "Úprava možnosti skupiny polí 'zobrazit na stránce'"
471
+
472
+ #: core/fields/checkbox.php:21
473
+ msgid "Checkbox"
474
+ msgstr "Zaškrtávátko"
475
+
476
+ #: core/fields/checkbox.php:55
477
+ #: core/fields/radio.php:45
478
+ #: core/fields/select.php:50
479
+ msgid "No choices to choose from"
480
+ msgstr "Žádné možnosti, z nichž by bylo možné vybírat"
481
+
482
+ #: core/fields/checkbox.php:113
483
+ #: core/fields/radio.php:114
484
+ #: core/fields/select.php:164
485
+ msgid "Choices"
486
+ msgstr "Možnosti"
487
+
488
+ #: core/fields/checkbox.php:114
489
+ #: core/fields/radio.php:115
490
+ #: core/fields/select.php:165
491
+ msgid "Enter your choices one per line"
492
+ msgstr "Vložte vaše možnosti po jedné na řádek"
493
+
494
+ #: core/fields/checkbox.php:116
495
+ #: core/fields/radio.php:117
496
+ #: core/fields/select.php:167
497
+ msgid "Red"
498
+ msgstr "Červená"
499
+
500
+ #: core/fields/checkbox.php:117
501
+ #: core/fields/radio.php:118
502
+ #: core/fields/select.php:168
503
+ msgid "Blue"
504
+ msgstr "Modrá"
505
+
506
+ #: core/fields/checkbox.php:119
507
+ #: core/fields/radio.php:120
508
+ #: core/fields/select.php:170
509
+ msgid "red : Red"
510
+ msgstr "cervena : Červená"
511
+
512
+ #: core/fields/checkbox.php:120
513
+ #: core/fields/radio.php:121
514
+ #: core/fields/select.php:171
515
+ msgid "blue : Blue"
516
+ msgstr "modra: Modrá"
517
+
518
+ #: core/fields/color_picker.php:21
519
+ msgid "Color Picker"
520
+ msgstr "Výběr barvy"
521
+
522
+ #: core/fields/date_picker/date_picker.php:21
523
+ msgid "Date Picker"
524
+ msgstr "Výběr data"
525
+
526
+ #: core/fields/date_picker/date_picker.php:82
527
+ msgid "Date format"
528
+ msgstr "Formát data"
529
+
530
+ #: core/fields/date_picker/date_picker.php:83
531
+ msgid "eg. dd/mm/yy. read more about"
532
+ msgstr "např. dd/mm/yy. přečtě si více"
533
+
534
+ #: core/fields/file.php:20
535
+ msgid "File"
536
+ msgstr "Soubor"
537
+
538
+ #: core/fields/file.php:60
539
+ msgid "Remove File"
540
+ msgstr "Odstranit soubor"
541
+
542
+ #: core/fields/file.php:165
543
+ msgid "No File Selected"
544
+ msgstr "Nebyl vybrán žádný soubor"
545
+
546
+ #: core/fields/file.php:165
547
+ msgid "Add File"
548
+ msgstr "Přidat soubor"
549
+
550
+ #: core/fields/file.php:194
551
+ #: core/fields/image.php:178
552
+ msgid "Return Value"
553
+ msgstr "Vrátit hodnotu"
554
+
555
+ #: core/fields/file.php:238
556
+ #: core/fields/image.php:258
557
+ msgid "Media attachment updated."
558
+ msgstr "Vložení médií aktualizováno."
559
+
560
+ #: core/fields/file.php:363
561
+ msgid "No files selected"
562
+ msgstr "Nebyly vybrány žádné soubory."
563
+
564
+ #: core/fields/file.php:458
565
+ msgid "Add Selected Files"
566
+ msgstr "Přidat vybrané soubory"
567
+
568
+ #: core/fields/file.php:488
569
+ msgid "Select File"
570
+ msgstr "Vybrat soubor"
571
+
572
+ #: core/fields/file.php:491
573
+ msgid "Update File"
574
+ msgstr "Aktualizovat soubor"
575
+
576
+ #: core/fields/flexible_content.php:21
577
+ msgid "Flexible Content"
578
+ msgstr "Flexibilní obsah"
579
+
580
+ #: core/fields/flexible_content.php:38
581
+ #: core/fields/flexible_content.php:232
582
+ msgid "+ Add Row"
583
+ msgstr "+ Přidat řádek"
584
+
585
+ #: core/fields/flexible_content.php:259
586
+ #: core/fields/repeater.php:202
587
+ #: core/views/meta_box_fields.php:25
588
+ msgid "New Field"
589
+ msgstr "Nové pole"
590
+
591
+ #: core/fields/flexible_content.php:268
592
+ #: core/fields/radio.php:144
593
+ #: core/fields/repeater.php:370
594
+ msgid "Layout"
595
+ msgstr "Typ zobrazení"
596
+
597
+ #: core/fields/flexible_content.php:270
598
+ msgid "Reorder Layout"
599
+ msgstr "Změnit pořadí typu zobrazení"
600
+
601
+ #: core/fields/flexible_content.php:270
602
+ msgid "Reorder"
603
+ msgstr "Změnit pořadí"
604
+
605
+ #: core/fields/flexible_content.php:271
606
+ msgid "Add New Layout"
607
+ msgstr "Přidat nový typ zobrazení"
608
+
609
+ #: core/fields/flexible_content.php:272
610
+ msgid "Delete Layout"
611
+ msgstr "Smazat typ zobrazení"
612
+
613
+ #: core/fields/flexible_content.php:272
614
+ #: core/fields/flexible_content.php:356
615
+ #: core/fields/repeater.php:260
616
+ #: core/views/meta_box_fields.php:90
617
+ msgid "Delete"
618
+ msgstr "Smazat"
619
+
620
+ #: core/fields/flexible_content.php:282
621
+ msgid "Label"
622
+ msgstr "Nápis"
623
+
624
+ #: core/fields/flexible_content.php:292
625
+ msgid "Name"
626
+ msgstr "Jméno"
627
+
628
+ #: core/fields/flexible_content.php:302
629
+ msgid "Display"
630
+ msgstr "Zobrazovat"
631
+
632
+ #: core/fields/flexible_content.php:309
633
+ msgid "Table"
634
+ msgstr "Tabulka"
635
+
636
+ #: core/fields/flexible_content.php:310
637
+ #: core/fields/repeater.php:381
638
+ msgid "Row"
639
+ msgstr "Řádek"
640
+
641
+ #: core/fields/flexible_content.php:323
642
+ #: core/fields/repeater.php:228
643
+ #: core/views/meta_box_fields.php:60
644
+ msgid "Field Order"
645
+ msgstr "Pořadí pole"
646
+
647
+ #: core/fields/flexible_content.php:324
648
+ #: core/fields/flexible_content.php:371
649
+ #: core/fields/repeater.php:229
650
+ #: core/fields/repeater.php:276
651
+ #: core/views/meta_box_fields.php:61
652
+ #: core/views/meta_box_fields.php:105
653
+ msgid "Field Label"
654
+ msgstr "Nápis pole"
655
+
656
+ #: core/fields/flexible_content.php:325
657
+ #: core/fields/flexible_content.php:387
658
+ #: core/fields/repeater.php:230
659
+ #: core/fields/repeater.php:292
660
+ #: core/views/meta_box_fields.php:62
661
+ #: core/views/meta_box_fields.php:121
662
+ msgid "Field Name"
663
+ msgstr "Jméno pole"
664
+
665
+ #: core/fields/flexible_content.php:334
666
+ #: core/fields/repeater.php:239
667
+ msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
668
+ msgstr "Žádná pole. Klikněte na tlačítko \"+ Přidat podpole\" pro vytvoření prvního pole."
669
+
670
+ #: core/fields/flexible_content.php:350
671
+ #: core/fields/flexible_content.php:353
672
+ #: core/fields/repeater.php:254
673
+ #: core/fields/repeater.php:257
674
+ #: core/views/meta_box_fields.php:84
675
+ #: core/views/meta_box_fields.php:87
676
+ msgid "Edit this Field"
677
+ msgstr "Upravit toto pole"
678
+
679
+ #: core/fields/flexible_content.php:353
680
+ #: core/fields/repeater.php:257
681
+ #: core/views/meta_box_fields.php:87
682
+ msgid "Edit"
683
+ msgstr "Upravit"
684
+
685
+ #: core/fields/flexible_content.php:354
686
+ #: core/fields/repeater.php:258
687
+ #: core/views/meta_box_fields.php:88
688
+ msgid "Read documentation for this field"
689
+ msgstr "Přečtěte si dokumentaci pro toto pole"
690
+
691
+ #: core/fields/flexible_content.php:354
692
+ #: core/fields/repeater.php:258
693
+ #: core/views/meta_box_fields.php:88
694
+ msgid "Docs"
695
+ msgstr "Dokumenty"
696
+
697
+ #: core/fields/flexible_content.php:355
698
+ #: core/fields/repeater.php:259
699
+ #: core/views/meta_box_fields.php:89
700
+ msgid "Duplicate this Field"
701
+ msgstr "Duplikovat toto pole"
702
+
703
+ #: core/fields/flexible_content.php:355
704
+ #: core/fields/repeater.php:259
705
+ #: core/views/meta_box_fields.php:89
706
+ msgid "Duplicate"
707
+ msgstr "Duplikovat"
708
+
709
+ #: core/fields/flexible_content.php:356
710
+ #: core/fields/repeater.php:260
711
+ #: core/views/meta_box_fields.php:90
712
+ msgid "Delete this Field"
713
+ msgstr "Smazat toto pole"
714
+
715
+ #: core/fields/flexible_content.php:372
716
+ #: core/fields/repeater.php:277
717
+ #: core/views/meta_box_fields.php:106
718
+ msgid "This is the name which will appear on the EDIT page"
719
+ msgstr "Toto je jmeno, které se zobrazí na stránce úprav"
720
+
721
+ #: core/fields/flexible_content.php:388
722
+ #: core/fields/repeater.php:293
723
+ #: core/views/meta_box_fields.php:122
724
+ msgid "Single word, no spaces. Underscores and dashes allowed"
725
+ msgstr "Jedno slovo, bez mezer. Podtržítka a pomlčky jsou povoleny."
726
+
727
+ #: core/fields/flexible_content.php:422
728
+ #: core/fields/repeater.php:327
729
+ msgid "Save Field"
730
+ msgstr "Uložit pole"
731
+
732
+ #: core/fields/flexible_content.php:427
733
+ #: core/fields/repeater.php:332
734
+ #: core/views/meta_box_fields.php:188
735
+ msgid "Close Field"
736
+ msgstr "Zavřít pole"
737
+
738
+ #: core/fields/flexible_content.php:427
739
+ #: core/fields/repeater.php:332
740
+ msgid "Close Sub Field"
741
+ msgstr "Zavřít podpole"
742
+
743
+ #: core/fields/flexible_content.php:441
744
+ #: core/fields/repeater.php:347
745
+ #: core/views/meta_box_fields.php:201
746
+ msgid "Drag and drop to reorder"
747
+ msgstr "Chytněte a táhněte pro změnu pořadí"
748
+
749
+ #: core/fields/flexible_content.php:442
750
+ #: core/fields/repeater.php:348
751
+ msgid "+ Add Sub Field"
752
+ msgstr "+ Přidat podpole"
753
+
754
+ #: core/fields/flexible_content.php:449
755
+ #: core/fields/repeater.php:389
756
+ msgid "Button Label"
757
+ msgstr "Nápis tlačítka"
758
+
759
+ #: core/fields/image.php:21
760
+ msgid "Image"
761
+ msgstr "Obrázek"
762
+
763
+ #: core/fields/image.php:154
764
+ msgid "No image selected"
765
+ msgstr "Není vybrán žádný obrázek"
766
+
767
+ #: core/fields/image.php:154
768
+ msgid "Add Image"
769
+ msgstr "Přidat obrázek"
770
+
771
+ #: core/fields/image.php:188
772
+ msgid "Image URL"
773
+ msgstr "Adresa obrázku"
774
+
775
+ #: core/fields/image.php:189
776
+ msgid "Attachment ID"
777
+ msgstr "ID přílohy"
778
+
779
+ #: core/fields/image.php:197
780
+ msgid "Preview Size"
781
+ msgstr "Velikost náhledu"
782
+
783
+ #: core/fields/image.php:203
784
+ msgid "Thumbnail"
785
+ msgstr "Miniatura"
786
+
787
+ #: core/fields/image.php:204
788
+ msgid "Medium"
789
+ msgstr "Střední"
790
+
791
+ #: core/fields/image.php:205
792
+ msgid "Large"
793
+ msgstr "Velký"
794
+
795
+ #: core/fields/image.php:206
796
+ #: core/fields/wysiwyg.php:85
797
+ msgid "Full"
798
+ msgstr "Plný"
799
+
800
+ #: core/fields/image.php:402
801
+ msgid "No images selected"
802
+ msgstr "Není vybrán žádný obrázek"
803
+
804
+ #: core/fields/image.php:498
805
+ msgid "Add selected Images"
806
+ msgstr "Přidat vybrané obrázky"
807
+
808
+ #: core/fields/image.php:527
809
+ msgid "Select Image"
810
+ msgstr "Vybrat obrázek"
811
+
812
+ #: core/fields/image.php:530
813
+ msgid "Update Image"
814
+ msgstr "Aktualizovat obrázek"
815
+
816
+ #: core/fields/page_link.php:21
817
+ msgid "Page Link"
818
+ msgstr "Odkaz stránky"
819
+
820
+ #: core/fields/page_link.php:71
821
+ #: core/fields/post_object.php:64
822
+ #: core/fields/select.php:21
823
+ msgid "Select"
824
+ msgstr "Vybrat"
825
+
826
+ #: core/fields/page_link.php:196
827
+ #: core/fields/post_object.php:211
828
+ #: core/fields/relationship.php:247
829
+ #: core/views/meta_box_location.php:48
830
+ msgid "Post Type"
831
+ msgstr "Typ příspěvku"
832
+
833
+ #: core/fields/page_link.php:197
834
+ msgid ""
835
+ "Filter posts by selecting a post type<br />\n"
836
+ "\t\t\t\tTip: deselect all post types to show all post type's posts"
837
+ msgstr ""
838
+ "Filtrovat příspěvky výběrem typu příspěvku<br />\n"
839
+ "\t\t\t\tTip: zrušte výběr všech typů příspěvku pro zobrazení příspěvků všech typů příspěvků"
840
+
841
+ #: core/fields/page_link.php:225
842
+ #: core/fields/post_object.php:283
843
+ #: core/fields/select.php:194
844
+ msgid "Allow Null?"
845
+ msgstr "Povolit prázdné?"
846
+
847
+ #: core/fields/page_link.php:234
848
+ #: core/fields/page_link.php:253
849
+ #: core/fields/post_object.php:292
850
+ #: core/fields/post_object.php:311
851
+ #: core/fields/select.php:203
852
+ #: core/fields/select.php:222
853
+ #: core/fields/wysiwyg.php:104
854
+ msgid "Yes"
855
+ msgstr "Ano"
856
+
857
+ #: core/fields/page_link.php:235
858
+ #: core/fields/page_link.php:254
859
+ #: core/fields/post_object.php:293
860
+ #: core/fields/post_object.php:312
861
+ #: core/fields/select.php:204
862
+ #: core/fields/select.php:223
863
+ #: core/fields/wysiwyg.php:105
864
+ msgid "No"
865
+ msgstr "Ne"
866
+
867
+ #: core/fields/page_link.php:244
868
+ #: core/fields/post_object.php:302
869
+ #: core/fields/select.php:213
870
+ msgid "Select multiple values?"
871
+ msgstr "Vybrat více hodnot?"
872
+
873
+ #: core/fields/post_object.php:21
874
+ msgid "Post Object"
875
+ msgstr "Objekt příspěvku"
876
+
877
+ #: core/fields/post_object.php:233
878
+ #: core/fields/relationship.php:296
879
+ msgid "Filter from Taxonomy"
880
+ msgstr "Filtrovat z taxonomie"
881
+
882
+ #: core/fields/radio.php:21
883
+ msgid "Radio Button"
884
+ msgstr "Přepínač"
885
+
886
+ #: core/fields/radio.php:130
887
+ #: core/fields/select.php:180
888
+ #: core/fields/text.php:61
889
+ #: core/fields/textarea.php:62
890
+ msgid "Default Value"
891
+ msgstr "Výchozí hodnota"
892
+
893
+ #: core/fields/radio.php:154
894
+ msgid "Vertical"
895
+ msgstr "Vertikální"
896
+
897
+ #: core/fields/radio.php:155
898
+ msgid "Horizontal"
899
+ msgstr "Horizontální"
900
+
901
+ #: core/fields/relationship.php:21
902
+ msgid "Relationship"
903
+ msgstr "Vztah"
904
+
905
+ #: core/fields/relationship.php:135
906
+ msgid "Search"
907
+ msgstr "Hledat"
908
+
909
+ #: core/fields/relationship.php:319
910
+ msgid "Maximum posts"
911
+ msgstr "Maximum příspěvků"
912
+
913
+ #: core/fields/relationship.php:320
914
+ msgid "Set to -1 for infinite"
915
+ msgstr "Nastavte na -1 pro nekonečno"
916
+
917
+ #: core/fields/repeater.php:21
918
+ msgid "Repeater"
919
+ msgstr "Opakovač"
920
+
921
+ #: core/fields/repeater.php:64
922
+ #: core/fields/repeater.php:197
923
+ msgid "Add Row"
924
+ msgstr "Přidat řádek"
925
+
926
+ #: core/fields/repeater.php:220
927
+ msgid "Repeater Fields"
928
+ msgstr "Opakovací pole"
929
+
930
+ #: core/fields/repeater.php:356
931
+ msgid "Row Limit"
932
+ msgstr "Limit řádků"
933
+
934
+ #: core/fields/repeater.php:380
935
+ msgid "Table (default)"
936
+ msgstr "Tabulka (výchozí)"
937
+
938
+ #: core/fields/text.php:21
939
+ msgid "Text"
940
+ msgstr "Text"
941
+
942
+ #: core/fields/text.php:75
943
+ #: core/fields/textarea.php:76
944
+ msgid "Formatting"
945
+ msgstr "Formátování"
946
+
947
+ #: core/fields/text.php:76
948
+ msgid "Define how to render html tags"
949
+ msgstr "Definujte způsob vypisování HTML tagů"
950
+
951
+ #: core/fields/text.php:85
952
+ #: core/fields/textarea.php:86
953
+ msgid "None"
954
+ msgstr "Žádný"
955
+
956
+ #: core/fields/text.php:86
957
+ #: core/fields/textarea.php:88
958
+ msgid "HTML"
959
+ msgstr "HTML"
960
+
961
+ #: core/fields/textarea.php:21
962
+ msgid "Text Area"
963
+ msgstr "Textová oblast"
964
+
965
+ #: core/fields/textarea.php:77
966
+ msgid "Define how to render html tags / new lines"
967
+ msgstr "Definujte způsob výpisu HTML tagů / nových řádků"
968
+
969
+ #: core/fields/textarea.php:87
970
+ msgid "auto &lt;br /&gt;"
971
+ msgstr "auto &lt;br /&gt;"
972
+
973
+ #: core/fields/true_false.php:21
974
+ msgid "True / False"
975
+ msgstr "Pravda / Nepravda"
976
+
977
+ #: core/fields/true_false.php:68
978
+ msgid "Message"
979
+ msgstr "Zpráva"
980
+
981
+ #: core/fields/true_false.php:69
982
+ msgid "eg. Show extra content"
983
+ msgstr "např. Zobrazit dodatečný obsah"
984
+
985
+ #: core/fields/wysiwyg.php:21
986
+ msgid "Wysiwyg Editor"
987
+ msgstr "Wysiwyg Editor"
988
+
989
+ #: core/fields/wysiwyg.php:75
990
+ msgid "Toolbar"
991
+ msgstr "Lišta nástrojů"
992
+
993
+ #: core/fields/wysiwyg.php:86
994
+ #: core/views/meta_box_location.php:47
995
+ msgid "Basic"
996
+ msgstr "Základní"
997
+
998
+ #: core/fields/wysiwyg.php:94
999
+ msgid "Show Media Upload Buttons?"
1000
+ msgstr "Zobrazit tlačítka nahrávání médií?"
1001
+
1002
+ #: core/views/meta_box_fields.php:47
1003
+ msgid "Move to trash. Are you sure?"
1004
+ msgstr "Přesunout do koše. Jste si jistí?"
1005
+
1006
+ #: core/views/meta_box_fields.php:73
1007
+ msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
1008
+ msgstr "Žádná pole. Klikněte na tlačítko<strong>+ Přidat pole</strong> pro vytvoření prvního pole."
1009
+
1010
+ #: core/views/meta_box_fields.php:149
1011
+ msgid "Field Instructions"
1012
+ msgstr "Instrukce pole"
1013
+
1014
+ #: core/views/meta_box_fields.php:150
1015
+ msgid "Instructions for authors. Shown when submitting data"
1016
+ msgstr "Instrukce pro autory. Jsou zobrazeny při zadávání dat."
1017
+
1018
+ #: core/views/meta_box_fields.php:162
1019
+ msgid "Required?"
1020
+ msgstr "Požadováno?"
1021
+
1022
+ #: core/views/meta_box_fields.php:202
1023
+ msgid "+ Add Field"
1024
+ msgstr "+ Přidat pole"
1025
+
1026
+ #: core/views/meta_box_location.php:35
1027
+ msgid "Rules"
1028
+ msgstr "Pravidla"
1029
+
1030
+ #: core/views/meta_box_location.php:36
1031
+ msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
1032
+ msgstr "Vytváří sadu pravidel pro určení, na kterých stránkách úprav budou použita tato vlastní pole"
1033
+
1034
+ #: core/views/meta_box_location.php:49
1035
+ msgid "Logged in User Type"
1036
+ msgstr "Typ přihlášeného uživatele"
1037
+
1038
+ #: core/views/meta_box_location.php:51
1039
+ msgid "Page Specific"
1040
+ msgstr "Specifická stránka"
1041
+
1042
+ #: core/views/meta_box_location.php:52
1043
+ msgid "Page"
1044
+ msgstr "Stránka"
1045
+
1046
+ #: core/views/meta_box_location.php:53
1047
+ msgid "Page Type"
1048
+ msgstr "Typ stránky"
1049
+
1050
+ #: core/views/meta_box_location.php:54
1051
+ msgid "Page Parent"
1052
+ msgstr "Rodičovská stránka"
1053
+
1054
+ #: core/views/meta_box_location.php:55
1055
+ msgid "Page Template"
1056
+ msgstr "Šablona stránky"
1057
+
1058
+ #: core/views/meta_box_location.php:57
1059
+ msgid "Post Specific"
1060
+ msgstr "Specfický příspěvek"
1061
+
1062
+ #: core/views/meta_box_location.php:58
1063
+ msgid "Post"
1064
+ msgstr "Příspěvek"
1065
+
1066
+ #: core/views/meta_box_location.php:59
1067
+ msgid "Post Category"
1068
+ msgstr "Rubrika příspěvku"
1069
+
1070
+ #: core/views/meta_box_location.php:60
1071
+ msgid "Post Format"
1072
+ msgstr "Formát příspěvku"
1073
+
1074
+ #: core/views/meta_box_location.php:61
1075
+ msgid "Post Taxonomy"
1076
+ msgstr "Taxonomie příspěvku"
1077
+
1078
+ #: core/views/meta_box_location.php:63
1079
+ msgid "Other"
1080
+ msgstr "Jiné"
1081
+
1082
+ #: core/views/meta_box_location.php:64
1083
+ msgid "Taxonomy (Add / Edit)"
1084
+ msgstr "Taxonomie (přidat / upravit)"
1085
+
1086
+ #: core/views/meta_box_location.php:65
1087
+ msgid "User (Add / Edit)"
1088
+ msgstr "Uživatel (přidat / upravit)"
1089
+
1090
+ #: core/views/meta_box_location.php:66
1091
+ msgid "Media (Edit)"
1092
+ msgstr "Media (upravit)"
1093
+
1094
+ #: core/views/meta_box_location.php:96
1095
+ msgid "is equal to"
1096
+ msgstr "je rovno"
1097
+
1098
+ #: core/views/meta_box_location.php:97
1099
+ msgid "is not equal to"
1100
+ msgstr "není rovno"
1101
+
1102
+ #: core/views/meta_box_location.php:121
1103
+ msgid "match"
1104
+ msgstr "souhlasí"
1105
+
1106
+ #: core/views/meta_box_location.php:127
1107
+ msgid "all"
1108
+ msgstr "vše"
1109
+
1110
+ #: core/views/meta_box_location.php:128
1111
+ msgid "any"
1112
+ msgstr "libovolné"
1113
+
1114
+ #: core/views/meta_box_location.php:131
1115
+ msgid "of the above"
1116
+ msgstr "z uvedeného"
1117
+
1118
+ #: core/views/meta_box_location.php:144
1119
+ msgid "Unlock options add-on with an activation code"
1120
+ msgstr "Odemkněte přídavek nastavení s aktivačním kódem"
1121
+
1122
+ #: core/views/meta_box_options.php:23
1123
+ msgid "Order No."
1124
+ msgstr "Číslo pořadí"
1125
+
1126
+ #: core/views/meta_box_options.php:24
1127
+ msgid "Field groups are created in order <br />from lowest to highest."
1128
+ msgstr "Skupiny polí jsou vytvořeny v pořadí <br /> od nejnižšího k nejvyššímu."
1129
+
1130
+ #: core/views/meta_box_options.php:40
1131
+ msgid "Position"
1132
+ msgstr "Pozice"
1133
+
1134
+ #: core/views/meta_box_options.php:50
1135
+ msgid "Normal"
1136
+ msgstr "Normální"
1137
+
1138
+ #: core/views/meta_box_options.php:51
1139
+ msgid "Side"
1140
+ msgstr "Na straně"
1141
+
1142
+ #: core/views/meta_box_options.php:60
1143
+ msgid "Style"
1144
+ msgstr "Styl"
1145
+
1146
+ #: core/views/meta_box_options.php:70
1147
+ msgid "Standard Metabox"
1148
+ msgstr "Standardní metabox"
1149
+
1150
+ #: core/views/meta_box_options.php:71
1151
+ msgid "No Metabox"
1152
+ msgstr "Žádný metabox"
1153
+
1154
+ #: core/views/meta_box_options.php:80
1155
+ msgid "Hide on screen"
1156
+ msgstr "Skrýt na obrazovce"
1157
+
1158
+ #: core/views/meta_box_options.php:81
1159
+ msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
1160
+ msgstr "<b>Vybrat</b> položky pro <b>skrytí</b> z obrazovky úprav"
1161
+
1162
+ #: core/views/meta_box_options.php:82
1163
+ msgid "If multiple field groups appear on an edit screen, the first field group's options will be used. (the one with the lowest order number)"
1164
+ msgstr "Pokud se na obrzovce úprav objeví několik skupin polí, bude použito nastavení první skupiny. (s nejžším pořadovým číslem)"
1165
+
1166
+ #: core/views/meta_box_options.php:92
1167
+ msgid "Content Editor"
1168
+ msgstr "Editor obsahu"
1169
+
1170
+ #: core/views/meta_box_options.php:93
1171
+ msgid "Excerpt"
1172
+ msgstr "Stručný výpis"
1173
+
1174
+ #: core/views/meta_box_options.php:95
1175
+ msgid "Discussion"
1176
+ msgstr "Diskuze"
1177
+
1178
+ #: core/views/meta_box_options.php:96
1179
+ msgid "Comments"
1180
+ msgstr "Komentáře"
1181
+
1182
+ #: core/views/meta_box_options.php:97
1183
+ msgid "Slug"
1184
+ msgstr "Adresa"
1185
+
1186
+ #: core/views/meta_box_options.php:98
1187
+ msgid "Author"
1188
+ msgstr "Autor"
1189
+
1190
+ #: core/views/meta_box_options.php:99
1191
+ msgid "Format"
1192
+ msgstr "Formát"
1193
+
1194
+ #: core/views/meta_box_options.php:100
1195
+ msgid "Featured Image"
1196
+ msgstr "Uživatelský obrázek"
1197
+
readme.txt CHANGED
@@ -85,6 +85,12 @@ http://www.advancedcustomfields.com/support/
85
 
86
  == Changelog ==
87
 
 
 
 
 
 
 
88
  = 3.2.8 =
89
  * [Added] Repeater - Add option for min rows + max rows - http://www.advancedcustomfields.com/support/discussion/2111/repeater-empty-conditional-statements#Item_4
90
  * [Fixed] Test / Fix Chrome Double WYSIWYG. Again...
85
 
86
  == Changelog ==
87
 
88
+ = 3.2.9 =
89
+ * [Added] Add new Gallery Field
90
+ * [Fixed] Test / Fix update_field on repeater / flexible content
91
+ * [Fixed] Fix regex JS issue with adding nested repeaters
92
+ * [Added] Add new Czech translation - Thanks to Webees ( http://www.webees.cz/ )
93
+
94
  = 3.2.8 =
95
  * [Added] Repeater - Add option for min rows + max rows - http://www.advancedcustomfields.com/support/discussion/2111/repeater-empty-conditional-statements#Item_4
96
  * [Fixed] Test / Fix Chrome Double WYSIWYG. Again...