Version Description
- [Fixed] Fix gallery sortable in repeater - http://support.advancedcustomfields.com/discussion/2463/gallery-within-a-repeater-image-reorder-not-working
- [Fixed] Test / Fix two gallery fields - http://support.advancedcustomfields.com/discussion/2467/gallery-two-gallery-fieldss
- [Fixed] Fix tinymce undefined visual editor off - http://support.advancedcustomfields.com/discussion/2465/solved-admin-conflicts-after-upgrade
- [Updated] Update Polish translation - Thanks to www.digitalfactory.pl
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 3.3.1 |
Comparing to | |
See all releases |
Code changes from version 3.3.0 to 3.3.1
- acf.php +2 -2
- js/input-actions.js +32 -33
- lang/acf-pl_PL.mo +0 -0
- lang/acf-pl_PL.po +939 -750
- readme.txt +6 -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 and more!
|
6 |
-
Version: 3.3.
|
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.3.
|
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.3.1
|
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.3.1';
|
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 |
|
js/input-actions.js
CHANGED
@@ -624,7 +624,7 @@ var acf = {
|
|
624 |
// create wysiwygs
|
625 |
$(document).live('acf/setup_fields', function(e, postbox){
|
626 |
|
627 |
-
if(typeof(tinyMCE) != "object")
|
628 |
{
|
629 |
return false;
|
630 |
}
|
@@ -635,8 +635,13 @@ var acf = {
|
|
635 |
|
636 |
$(document).ready( function(){
|
637 |
|
|
|
|
|
|
|
|
|
|
|
638 |
// store variables
|
639 |
-
if(
|
640 |
{
|
641 |
acf_wysiwyg_buttons.theme_advanced_buttons1 = tinyMCE.settings.theme_advanced_buttons1;
|
642 |
acf_wysiwyg_buttons.theme_advanced_buttons2 = tinyMCE.settings.theme_advanced_buttons2;
|
@@ -1250,37 +1255,39 @@ var acf = {
|
|
1250 |
});
|
1251 |
|
1252 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1253 |
$(document).live('acf/setup_fields', function(e, postbox){
|
1254 |
|
1255 |
$(postbox).find('.acf-gallery').each(function(i){
|
1256 |
|
1257 |
// vars
|
1258 |
var div = $(this),
|
1259 |
-
thumbnails = div.find('.thumbnails')
|
1260 |
-
|
1261 |
-
preview_size = div.attr('data-preview_size');
|
1262 |
-
|
1263 |
|
1264 |
// update count
|
1265 |
acf.update_gallery_count( div );
|
1266 |
-
|
1267 |
-
|
1268 |
-
// add new
|
1269 |
-
toolbar.find('.add-image').unbind('click').click( function(){
|
1270 |
-
|
1271 |
-
|
1272 |
-
// set global var
|
1273 |
-
window.acf_div = div;
|
1274 |
-
|
1275 |
-
|
1276 |
-
// show the thickbox
|
1277 |
-
tb_show( acf.text.gallery_tb_title_add , acf.admin_url + 'media-upload.php?post_id=' + acf.post_id + '&type=image&acf_type=gallery&acf_preview_size=' + preview_size + 'TB_iframe=1');
|
1278 |
-
|
1279 |
-
|
1280 |
-
return false;
|
1281 |
-
|
1282 |
-
});
|
1283 |
-
|
1284 |
|
1285 |
// sortable
|
1286 |
thumbnails.find('> .inner').unbind('sortable').sortable({
|
@@ -1296,19 +1303,11 @@ var acf = {
|
|
1296 |
ui.placeholder.height( ui.placeholder.height() - 4 );
|
1297 |
}
|
1298 |
});
|
1299 |
-
|
1300 |
-
|
1301 |
-
return false;
|
1302 |
|
1303 |
});
|
1304 |
|
1305 |
});
|
1306 |
|
1307 |
-
setInterval(function(){
|
1308 |
-
|
1309 |
-
//console.log( tinyMCE.activeEditor );
|
1310 |
-
|
1311 |
-
}, 2000)
|
1312 |
-
|
1313 |
|
1314 |
})(jQuery);
|
624 |
// create wysiwygs
|
625 |
$(document).live('acf/setup_fields', function(e, postbox){
|
626 |
|
627 |
+
if( typeof(tinyMCE) != "object" )
|
628 |
{
|
629 |
return false;
|
630 |
}
|
635 |
|
636 |
$(document).ready( function(){
|
637 |
|
638 |
+
if( typeof(tinyMCE) != "object" )
|
639 |
+
{
|
640 |
+
return false;
|
641 |
+
}
|
642 |
+
|
643 |
// store variables
|
644 |
+
if( tinyMCE.settings != undefined )
|
645 |
{
|
646 |
acf_wysiwyg_buttons.theme_advanced_buttons1 = tinyMCE.settings.theme_advanced_buttons1;
|
647 |
acf_wysiwyg_buttons.theme_advanced_buttons2 = tinyMCE.settings.theme_advanced_buttons2;
|
1255 |
});
|
1256 |
|
1257 |
|
1258 |
+
// add image
|
1259 |
+
$('.acf-gallery .toolbar .add-image').live('click', function(){
|
1260 |
+
|
1261 |
+
// vars
|
1262 |
+
var gallery = $(this).closest('.acf-gallery'),
|
1263 |
+
preview_size = gallery.attr('data-preview_size');
|
1264 |
+
|
1265 |
+
|
1266 |
+
// set global var
|
1267 |
+
window.acf_div = gallery;
|
1268 |
+
|
1269 |
+
|
1270 |
+
// show the thickbox
|
1271 |
+
tb_show( acf.text.gallery_tb_title_add , acf.admin_url + 'media-upload.php?post_id=' + acf.post_id + '&type=image&acf_type=gallery&acf_preview_size=' + preview_size + 'TB_iframe=1');
|
1272 |
+
|
1273 |
+
|
1274 |
+
return false;
|
1275 |
+
|
1276 |
+
});
|
1277 |
+
|
1278 |
+
|
1279 |
$(document).live('acf/setup_fields', function(e, postbox){
|
1280 |
|
1281 |
$(postbox).find('.acf-gallery').each(function(i){
|
1282 |
|
1283 |
// vars
|
1284 |
var div = $(this),
|
1285 |
+
thumbnails = div.find('.thumbnails');
|
1286 |
+
|
|
|
|
|
1287 |
|
1288 |
// update count
|
1289 |
acf.update_gallery_count( div );
|
1290 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1291 |
|
1292 |
// sortable
|
1293 |
thumbnails.find('> .inner').unbind('sortable').sortable({
|
1303 |
ui.placeholder.height( ui.placeholder.height() - 4 );
|
1304 |
}
|
1305 |
});
|
1306 |
+
|
|
|
|
|
1307 |
|
1308 |
});
|
1309 |
|
1310 |
});
|
1311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1312 |
|
1313 |
})(jQuery);
|
lang/acf-pl_PL.mo
CHANGED
Binary file
|
lang/acf-pl_PL.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
-
"POT-Creation-Date: 2012-
|
8 |
-
"PO-Revision-Date: 2012-
|
9 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
10 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
11 |
"MIME-Version: 1.0\n"
|
@@ -18,747 +18,423 @@ msgstr ""
|
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
-
#: ../acf.php:
|
22 |
msgid "Custom Fields"
|
23 |
msgstr "Własne pola"
|
24 |
|
25 |
-
#: ../acf.php:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
-
|
29 |
-
#: ../acf.php:235
|
30 |
-
msgid "Upgrade"
|
31 |
-
msgstr "Aktualizacja"
|
32 |
-
|
33 |
-
#: ../acf.php:446
|
34 |
-
msgid "Fields"
|
35 |
-
msgstr "Pola"
|
36 |
-
|
37 |
-
#: ../acf.php:447
|
38 |
-
msgid "Location"
|
39 |
-
msgstr "Pozycja"
|
40 |
-
|
41 |
-
#: ../acf.php:447
|
42 |
-
msgid "Add Fields to Edit Screens"
|
43 |
-
msgstr "Dodaj pola do stron edycji"
|
44 |
-
|
45 |
-
#: ../acf.php:448
|
46 |
-
#: ../core/options_page.php:62
|
47 |
-
#: ../core/options_page.php:74
|
48 |
-
msgid "Options"
|
49 |
-
msgstr "Opcje"
|
50 |
-
|
51 |
-
#: ../acf.php:448
|
52 |
-
msgid "Customise the edit page"
|
53 |
-
msgstr "Modyfikuj stronę edycji"
|
54 |
-
|
55 |
-
#: ../acf.php:475
|
56 |
-
#: ../core/api.php:503
|
57 |
-
#: ../core/everything_fields.php:202
|
58 |
-
#: ../core/options_page.php:182
|
59 |
-
msgid "Validation Failed. One or more fields below are required."
|
60 |
-
msgstr "Walidacja nie powiodła się. Jedno lub więcej pól jest wymaganych."
|
61 |
-
|
62 |
-
#: ../acf.php:801
|
63 |
-
msgid "Error: Field Type does not exist!"
|
64 |
-
msgstr "Błąd: Takie pole nie istnieje!"
|
65 |
-
|
66 |
-
#: ../acf.php:2027
|
67 |
-
msgid "required"
|
68 |
-
msgstr "wymagane"
|
69 |
-
|
70 |
-
#: ../acf.php:2122
|
71 |
-
msgid "Parent Page"
|
72 |
-
msgstr "Strona nadrzędna"
|
73 |
-
|
74 |
-
#: ../acf.php:2123
|
75 |
-
msgid "Child Page"
|
76 |
-
msgstr "Strona podrzędna"
|
77 |
-
|
78 |
-
#: ../acf.php:2131
|
79 |
-
msgid "Default Template"
|
80 |
-
msgstr "Domyślny szablon"
|
81 |
-
|
82 |
-
#: ../core/options_page.php:161
|
83 |
-
msgid "Options Updated"
|
84 |
-
msgstr "Ustawienia zostały zaktualizowane"
|
85 |
-
|
86 |
-
#: ../core/options_page.php:275
|
87 |
-
msgid "No Custom Field Group found for the options page"
|
88 |
-
msgstr "Brak grup własnych pól dla strony opcji"
|
89 |
-
|
90 |
-
#: ../core/options_page.php:275
|
91 |
-
msgid "Create a Custom Field Group"
|
92 |
-
msgstr "Utwórz grupę własnych pól"
|
93 |
-
|
94 |
-
#: ../core/options_page.php:286
|
95 |
-
msgid "Publish"
|
96 |
-
msgstr "Opublikuj"
|
97 |
-
|
98 |
-
#: ../core/screen_extra.php:18
|
99 |
-
msgid "Advanced Custom Fields v"
|
100 |
-
msgstr "Zaawansowane własne pola v"
|
101 |
-
|
102 |
-
#: ../core/screen_extra.php:21
|
103 |
-
msgid "Changelog"
|
104 |
-
msgstr "Dziennik zmian"
|
105 |
-
|
106 |
-
#: ../core/screen_extra.php:22
|
107 |
-
msgid "See what's new in"
|
108 |
-
msgstr "Zobacz co słychać nowego w"
|
109 |
-
|
110 |
-
#: ../core/screen_extra.php:25
|
111 |
-
msgid "Resources"
|
112 |
-
msgstr "Zasoby"
|
113 |
-
|
114 |
-
#: ../core/screen_extra.php:26
|
115 |
-
msgid "Watch tutorials, read documentation, learn the API code and find some tips & tricks for your next web project."
|
116 |
-
msgstr "Obejrzyj tutorial, przeczytaj dokumentację, naucz się API i poznaj parę tricków do przydatnych w Twoim kolejnym projekcie."
|
117 |
-
|
118 |
-
#: ../core/screen_extra.php:27
|
119 |
-
msgid "View the plugins website"
|
120 |
-
msgstr "Odwiedź witrynę wtyczki"
|
121 |
-
|
122 |
-
#: ../core/screen_extra.php:30
|
123 |
-
msgid "Support"
|
124 |
-
msgstr "Pomoc"
|
125 |
-
|
126 |
-
#: ../core/screen_extra.php:31
|
127 |
-
msgid "Join the growing community over at the support forum to share ideas, report bugs and keep up to date with ACF"
|
128 |
-
msgstr "Dołącz do rosnącej społeczności użytkowników i forum pomocy, aby dzielić się pomysłami, zgłąszać błedy i być na bierząco z tą wtyczką."
|
129 |
-
|
130 |
-
#: ../core/screen_extra.php:32
|
131 |
-
msgid "View the Support Forum"
|
132 |
-
msgstr "Zobacz forum pomocy"
|
133 |
-
|
134 |
-
#: ../core/screen_extra.php:35
|
135 |
-
msgid "Developed by"
|
136 |
-
msgstr "Opracowana przez"
|
137 |
-
|
138 |
-
#: ../core/screen_extra.php:36
|
139 |
-
msgid "Vote for ACF"
|
140 |
-
msgstr "Głosuj na tę wtyczkę"
|
141 |
-
|
142 |
-
#: ../core/screen_extra.php:36
|
143 |
-
msgid "Twitter"
|
144 |
-
msgstr "Twitter"
|
145 |
-
|
146 |
-
#: ../core/screen_extra.php:36
|
147 |
-
msgid "Blog"
|
148 |
-
msgstr "Blog"
|
149 |
-
|
150 |
-
#: ../core/screen_extra_activate.php:4
|
151 |
-
msgid "Unlock Special Fields."
|
152 |
-
msgstr "Odblokuj pola specjalne"
|
153 |
-
|
154 |
-
#: ../core/screen_extra_activate.php:5
|
155 |
-
msgid "Special Fields can be unlocked by purchasing an activation code. Each activation code can be used on multiple sites."
|
156 |
-
msgstr "Pola specjalne można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny może być wykorzystywany wielokrotnie."
|
157 |
-
|
158 |
-
#: ../core/screen_extra_activate.php:5
|
159 |
-
msgid "Visit the Plugin Store"
|
160 |
-
msgstr "Odwiedź sklep wtyczki"
|
161 |
-
|
162 |
-
#: ../core/screen_extra_activate.php:9
|
163 |
-
msgid "Field Type"
|
164 |
-
msgstr "Rodzaj pola"
|
165 |
-
|
166 |
-
#: ../core/screen_extra_activate.php:10
|
167 |
-
msgid "Status"
|
168 |
-
msgstr "Status"
|
169 |
-
|
170 |
-
#: ../core/screen_extra_activate.php:11
|
171 |
-
msgid "Activation Code"
|
172 |
-
msgstr "Kod aktywacyjny"
|
173 |
-
|
174 |
-
#: ../core/screen_extra_activate.php:23
|
175 |
-
msgid "Repeater"
|
176 |
-
msgstr "Pole powtarzalne"
|
177 |
-
|
178 |
-
#: ../core/screen_extra_activate.php:25
|
179 |
-
#: ../core/screen_extra_activate.php:57
|
180 |
-
msgid "Active"
|
181 |
-
msgstr "Aktywne"
|
182 |
-
|
183 |
-
#: ../core/screen_extra_activate.php:29
|
184 |
-
#: ../core/screen_extra_activate.php:61
|
185 |
-
msgid "Inactive"
|
186 |
-
msgstr "Nieaktywne"
|
187 |
-
|
188 |
-
#: ../core/screen_extra_activate.php:55
|
189 |
-
msgid "Options Page"
|
190 |
-
msgstr "Strona opcji"
|
191 |
-
|
192 |
-
#: ../core/screen_extra_activate.php:84
|
193 |
-
msgid "Unlock Fields"
|
194 |
-
msgstr "Odblokuj pola"
|
195 |
-
|
196 |
-
#: ../core/screen_extra_export.php:4
|
197 |
-
msgid "Import"
|
198 |
-
msgstr "Import"
|
199 |
-
|
200 |
-
#: ../core/screen_extra_export.php:6
|
201 |
-
msgid "Have an ACF export file? Import it here."
|
202 |
-
msgstr "Wyeksportowałeś plik z polami? Możesz go zaimportować tutaj."
|
203 |
-
|
204 |
-
#: ../core/screen_extra_export.php:13
|
205 |
-
msgid "Export"
|
206 |
-
msgstr "Eksport"
|
207 |
-
|
208 |
-
#: ../core/screen_extra_export.php:14
|
209 |
-
msgid "Want to create an ACF export file? Just select the desired ACF's and hit Export"
|
210 |
-
msgstr "Chcesz stworzyć i wyeksportować plik z polami? Wybierz pola i kliknij Eksport"
|
211 |
-
|
212 |
-
#: ../core/screen_extra_export.php:53
|
213 |
-
msgid "Import / Export"
|
214 |
-
msgstr "Import / Eksport"
|
215 |
-
|
216 |
-
#: ../core/actions/export.php:19
|
217 |
-
msgid "No ACF groups selected"
|
218 |
-
msgstr "Nie zaznaczono żadnej grupy pól"
|
219 |
|
220 |
-
#: ../
|
221 |
-
#: ../core/
|
|
|
222 |
msgid "Advanced Custom Fields"
|
223 |
msgstr "Zaawansowane własne pola"
|
224 |
|
225 |
-
#: ../
|
226 |
-
msgid "requires a database upgrade"
|
227 |
-
msgstr "wymagana jest aktualizacja bazy danych"
|
228 |
-
|
229 |
-
#: ../core/actions/init.php:21
|
230 |
-
msgid "why?"
|
231 |
-
msgstr "dlaczego?"
|
232 |
-
|
233 |
-
#: ../core/actions/init.php:21
|
234 |
-
msgid "Please"
|
235 |
-
msgstr "Proszę"
|
236 |
-
|
237 |
-
#: ../core/actions/init.php:21
|
238 |
-
msgid "backup your database"
|
239 |
-
msgstr "zrobić kopię zapasową bazy danych"
|
240 |
-
|
241 |
-
#: ../core/actions/init.php:21
|
242 |
-
msgid "then click"
|
243 |
-
msgstr "a następnie kliknąć"
|
244 |
-
|
245 |
-
#: ../core/actions/init.php:21
|
246 |
-
msgid "Upgrade Database"
|
247 |
-
msgstr "Aktualizuj bazę danych"
|
248 |
-
|
249 |
-
#: ../core/actions/init.php:47
|
250 |
-
msgid "Repeater field deactivated"
|
251 |
-
msgstr "Pole powtarzalne zostało deaktywowane"
|
252 |
-
|
253 |
-
#: ../core/actions/init.php:51
|
254 |
-
msgid "Options page deactivated"
|
255 |
-
msgstr "Strona opcji została deaktywowana"
|
256 |
-
|
257 |
-
#: ../core/actions/init.php:55
|
258 |
-
msgid "Flexible Content field deactivated"
|
259 |
-
msgstr "Pole z elastyczną zawartością zostało deaktywowane"
|
260 |
-
|
261 |
-
#: ../core/actions/init.php:59
|
262 |
-
msgid "Everything Fields deactivated"
|
263 |
-
msgstr "Pola do wszystkiego zostały deaktywowane"
|
264 |
-
|
265 |
-
#: ../core/actions/init.php:87
|
266 |
-
msgid "Repeater field activated"
|
267 |
-
msgstr "Pole powtarzalne zostało aktywowane"
|
268 |
-
|
269 |
-
#: ../core/actions/init.php:91
|
270 |
-
msgid "Options page activated"
|
271 |
-
msgstr "Strona opcji została aktywowana"
|
272 |
-
|
273 |
-
#: ../core/actions/init.php:95
|
274 |
-
msgid "Flexible Content field activated"
|
275 |
-
msgstr "Pole z elastyczną zawartością zostało aktywowane"
|
276 |
-
|
277 |
-
#: ../core/actions/init.php:99
|
278 |
-
msgid "Everything Fields activated"
|
279 |
-
msgstr "Pola do wszystkiego zostały aktywowane"
|
280 |
-
|
281 |
-
#: ../core/actions/init.php:104
|
282 |
-
msgid "License key unrecognised"
|
283 |
-
msgstr "Klucz licencji nie został rozpoznany"
|
284 |
-
|
285 |
-
#: ../core/actions/init.php:115
|
286 |
-
msgid "Field Groups"
|
287 |
-
msgstr "Grupy Pól"
|
288 |
-
|
289 |
-
#: ../core/actions/init.php:117
|
290 |
msgid "Add New"
|
291 |
msgstr "Dodaj nowe"
|
292 |
|
293 |
-
#: ../
|
294 |
msgid "Add New Field Group"
|
295 |
msgstr "Dodaj nową grupę pól"
|
296 |
|
297 |
-
#: ../
|
298 |
msgid "Edit Field Group"
|
299 |
msgstr "Edytuj grupę pól"
|
300 |
|
301 |
-
#: ../
|
302 |
msgid "New Field Group"
|
303 |
msgstr "Nowa grupa pól"
|
304 |
|
305 |
-
#: ../
|
306 |
msgid "View Field Group"
|
307 |
msgstr "Zobacz grupę pól"
|
308 |
|
309 |
-
#: ../
|
310 |
msgid "Search Field Groups"
|
311 |
msgstr "Szukaj grupy pól"
|
312 |
|
313 |
-
#: ../
|
314 |
msgid "No Field Groups found"
|
315 |
msgstr "Nie znaleziono grupy pól"
|
316 |
|
317 |
-
#: ../
|
318 |
msgid "No Field Groups found in Trash"
|
319 |
msgstr "Brak grup pól w koszu"
|
320 |
|
321 |
-
#: ../
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
#: ../core/admin/fields_meta_box.php:44
|
326 |
-
#: ../core/admin/meta_box_fields.php:50
|
327 |
-
msgid "Field Order"
|
328 |
-
msgstr "Kolejność pola"
|
329 |
-
|
330 |
-
#: ../core/admin/fields_meta_box.php:45
|
331 |
-
#: ../core/admin/fields_meta_box.php:105
|
332 |
-
#: ../core/admin/meta_box_fields.php:51
|
333 |
-
#: ../core/admin/meta_box_fields.php:91
|
334 |
-
msgid "Field Label"
|
335 |
-
msgstr "Etykieta pola"
|
336 |
-
|
337 |
-
#: ../core/admin/fields_meta_box.php:46
|
338 |
-
#: ../core/admin/fields_meta_box.php:124
|
339 |
-
#: ../core/admin/meta_box_fields.php:52
|
340 |
-
#: ../core/admin/meta_box_fields.php:107
|
341 |
-
msgid "Field Name"
|
342 |
-
msgstr "Nazwa pola"
|
343 |
-
|
344 |
-
#: ../core/admin/fields_meta_box.php:55
|
345 |
-
msgid "No fields. Click the \"+ Add Field button\" to create your first field."
|
346 |
-
msgstr "Brak pól. Kliknij przycisk \"+ Dodaj pole\" aby utworzyć pierwsze własne pole."
|
347 |
-
|
348 |
-
#: ../core/admin/fields_meta_box.php:80
|
349 |
-
#: ../core/admin/meta_box_fields.php:74
|
350 |
-
msgid "Edit"
|
351 |
-
msgstr "Edytuj"
|
352 |
-
|
353 |
-
#: ../core/admin/fields_meta_box.php:81
|
354 |
-
#: ../core/admin/meta_box_fields.php:76
|
355 |
-
msgid "Delete"
|
356 |
-
msgstr "Usuń"
|
357 |
-
|
358 |
-
#: ../core/admin/fields_meta_box.php:106
|
359 |
-
#: ../core/admin/meta_box_fields.php:92
|
360 |
-
msgid "This is the name which will appear on the EDIT page"
|
361 |
-
msgstr "To jest nawa, która pojawi się na stronie edycji"
|
362 |
|
363 |
-
#: ../
|
364 |
-
|
365 |
-
|
366 |
-
msgstr "Pojedyncze słowo, bez spacji. Dozwolone są myślniki i podkreślniki"
|
367 |
|
368 |
-
#: ../
|
369 |
-
|
370 |
-
|
371 |
-
msgstr "Instrukcje pola"
|
372 |
|
373 |
-
#: ../
|
374 |
-
|
375 |
-
msgid "
|
376 |
-
msgstr "
|
377 |
|
378 |
-
#: ../
|
379 |
-
|
380 |
-
|
381 |
-
msgstr "+ Dodaj pole"
|
382 |
|
383 |
-
#: ../
|
384 |
-
msgid "
|
385 |
-
msgstr "
|
386 |
-
|
387 |
-
#: ../core/admin/meta_box_acf.php:26
|
388 |
-
#: ../core/admin/page_settings.php:52
|
389 |
-
msgid "Repeater Field"
|
390 |
-
msgstr "Pole powtarzalne"
|
391 |
-
|
392 |
-
#: ../core/admin/meta_box_acf.php:94
|
393 |
-
#: ../core/admin/page_settings.php:166
|
394 |
-
msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
395 |
-
msgstr "Wtyczka utworzy plik eksportu .xml, który jest kompatybilny z domyślną wtyczką importu plików."
|
396 |
-
|
397 |
-
#: ../core/admin/meta_box_acf.php:99
|
398 |
-
msgid "Select which ACF groups to export"
|
399 |
-
msgstr "Wybierz, które grupy chcesz wyeksportować"
|
400 |
-
|
401 |
-
#: ../core/admin/meta_box_acf.php:143
|
402 |
-
msgid "Have an ACF export file? Import it here. Please note that v2 and v3 .xml files are not compatible."
|
403 |
-
msgstr "Wyeksportowałeś plik z polami? Zaimportuj go tutaj. Zwróć uwagę, że wersje 2 i 3 plików .xml nie są ze sobą kompatybilne."
|
404 |
-
|
405 |
-
#: ../core/admin/meta_box_acf.php:148
|
406 |
-
msgid "Import your .xml file"
|
407 |
-
msgstr "Zaimportuj plik .xml"
|
408 |
-
|
409 |
-
#: ../core/admin/meta_box_fields.php:17
|
410 |
-
msgid "New Field"
|
411 |
-
msgstr "Nowe pole"
|
412 |
-
|
413 |
-
#: ../core/admin/meta_box_fields.php:38
|
414 |
-
msgid "Move to trash. Are you sure?"
|
415 |
-
msgstr "Przenieś do kosza. Jesteś pewny?"
|
416 |
-
|
417 |
-
#: ../core/admin/meta_box_fields.php:60
|
418 |
-
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
419 |
-
msgstr "Brak pól. Kliknij przycisk <strong>+ Dodaj pole</strong> aby utworzyć pierwsze własne pole."
|
420 |
-
|
421 |
-
#: ../core/admin/meta_box_fields.php:71
|
422 |
-
#: ../core/admin/meta_box_fields.php:74
|
423 |
-
msgid "Edit this Field"
|
424 |
-
msgstr "Edytuj to pole"
|
425 |
-
|
426 |
-
#: ../core/admin/meta_box_fields.php:75
|
427 |
-
msgid "Read documentation for this field"
|
428 |
-
msgstr "Przeczytaj dokumentację tego pola"
|
429 |
-
|
430 |
-
#: ../core/admin/meta_box_fields.php:75
|
431 |
-
msgid "Docs"
|
432 |
-
msgstr "Dokumentacja"
|
433 |
-
|
434 |
-
#: ../core/admin/meta_box_fields.php:76
|
435 |
-
msgid "Delete this Field"
|
436 |
-
msgstr "Usuń to pole"
|
437 |
-
|
438 |
-
#: ../core/admin/meta_box_fields.php:148
|
439 |
-
msgid "Required?"
|
440 |
-
msgstr "Wymagane?"
|
441 |
-
|
442 |
-
#: ../core/admin/meta_box_fields.php:171
|
443 |
-
msgid "Save Field"
|
444 |
-
msgstr "Zapisz pole"
|
445 |
-
|
446 |
-
#: ../core/admin/meta_box_fields.php:176
|
447 |
-
msgid "Close Field"
|
448 |
-
msgstr "Zamknij to pole"
|
449 |
-
|
450 |
-
#: ../core/admin/meta_box_location.php:25
|
451 |
-
msgid "Rules"
|
452 |
-
msgstr "Warunki"
|
453 |
-
|
454 |
-
#: ../core/admin/meta_box_location.php:26
|
455 |
-
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
456 |
-
msgstr "Utwórz zestaw warunków, które określą w których miejscach będą wykorzystane określone własne pola"
|
457 |
-
|
458 |
-
#: ../core/admin/meta_box_location.php:37
|
459 |
-
msgid "Basic"
|
460 |
-
msgstr "Podstawowe"
|
461 |
-
|
462 |
-
#: ../core/admin/meta_box_location.php:38
|
463 |
-
msgid "Post Type"
|
464 |
-
msgstr "Typ wpisu"
|
465 |
-
|
466 |
-
#: ../core/admin/meta_box_location.php:39
|
467 |
-
msgid "Logged in User Type"
|
468 |
-
msgstr "Rola zalogowanego użytkownika"
|
469 |
-
|
470 |
-
#: ../core/admin/meta_box_location.php:41
|
471 |
-
msgid "Page Specific"
|
472 |
-
msgstr "Związane ze stronami"
|
473 |
-
|
474 |
-
#: ../core/admin/meta_box_location.php:42
|
475 |
-
msgid "Page"
|
476 |
-
msgstr "Strona"
|
477 |
-
|
478 |
-
#: ../core/admin/meta_box_location.php:43
|
479 |
-
msgid "Page Type"
|
480 |
-
msgstr "Typ strony"
|
481 |
-
|
482 |
-
#: ../core/admin/meta_box_location.php:44
|
483 |
-
msgid "Page Parent"
|
484 |
-
msgstr "Rodzic strony"
|
485 |
-
|
486 |
-
#: ../core/admin/meta_box_location.php:45
|
487 |
-
msgid "Page Template"
|
488 |
-
msgstr "Szablon strony"
|
489 |
-
|
490 |
-
#: ../core/admin/meta_box_location.php:47
|
491 |
-
msgid "Post Specific"
|
492 |
-
msgstr "Związane z typem wpisu"
|
493 |
-
|
494 |
-
#: ../core/admin/meta_box_location.php:48
|
495 |
-
msgid "Post"
|
496 |
-
msgstr "Wpis"
|
497 |
-
|
498 |
-
#: ../core/admin/meta_box_location.php:49
|
499 |
-
msgid "Post Category"
|
500 |
-
msgstr "Kategoria wpisu"
|
501 |
-
|
502 |
-
#: ../core/admin/meta_box_location.php:50
|
503 |
-
msgid "Post Format"
|
504 |
-
msgstr "Format wpisu"
|
505 |
-
|
506 |
-
#: ../core/admin/meta_box_location.php:51
|
507 |
-
msgid "Post Taxonomy"
|
508 |
-
msgstr "Taksonomia wpisu"
|
509 |
-
|
510 |
-
#: ../core/admin/meta_box_location.php:53
|
511 |
-
msgid "Other"
|
512 |
-
msgstr "Pozostałe"
|
513 |
-
|
514 |
-
#: ../core/admin/meta_box_location.php:54
|
515 |
-
msgid "Taxonomy (Add / Edit)"
|
516 |
-
msgstr "Taksonomia (Dodaj / Edytuj)"
|
517 |
-
|
518 |
-
#: ../core/admin/meta_box_location.php:55
|
519 |
-
msgid "User (Add / Edit)"
|
520 |
-
msgstr "Użytkownik (Dodaj / Edytuj)"
|
521 |
-
|
522 |
-
#: ../core/admin/meta_box_location.php:56
|
523 |
-
msgid "Media (Edit)"
|
524 |
-
msgstr "Medium (Edytuj)"
|
525 |
-
|
526 |
-
#: ../core/admin/meta_box_location.php:86
|
527 |
-
msgid "is equal to"
|
528 |
-
msgstr "jest równe"
|
529 |
-
|
530 |
-
#: ../core/admin/meta_box_location.php:87
|
531 |
-
msgid "is not equal to"
|
532 |
-
msgstr "jest inne niż"
|
533 |
-
|
534 |
-
#: ../core/admin/meta_box_location.php:111
|
535 |
-
msgid "match"
|
536 |
-
msgstr "pasuje"
|
537 |
|
538 |
-
#: ../
|
539 |
-
msgid "
|
540 |
-
msgstr "
|
541 |
|
542 |
-
#: ../
|
543 |
-
msgid "
|
544 |
-
msgstr "
|
545 |
|
546 |
-
#: ../
|
547 |
-
msgid "
|
548 |
-
msgstr "
|
549 |
|
550 |
-
#: ../
|
551 |
-
msgid "
|
552 |
-
msgstr "
|
553 |
|
554 |
-
#: ../
|
555 |
-
msgid "
|
556 |
-
msgstr "
|
557 |
|
558 |
-
#: ../
|
559 |
-
msgid "
|
560 |
-
msgstr "
|
561 |
|
562 |
-
#: ../
|
563 |
-
msgid "
|
564 |
-
msgstr "
|
565 |
|
566 |
-
#: ../
|
567 |
-
msgid "
|
568 |
-
msgstr "
|
569 |
|
570 |
-
#: ../
|
571 |
-
msgid "
|
572 |
-
msgstr "
|
573 |
|
574 |
-
#: ../core/
|
575 |
-
|
576 |
-
|
|
|
|
|
577 |
|
578 |
-
#: ../core/
|
579 |
-
|
580 |
-
|
|
|
|
|
|
|
|
|
|
|
581 |
|
582 |
-
#: ../core/
|
583 |
-
|
584 |
-
|
|
|
585 |
|
586 |
-
#: ../core/
|
587 |
-
#: ../core/
|
588 |
-
msgid "
|
589 |
-
msgstr "
|
590 |
|
591 |
-
#: ../core/
|
592 |
-
#: ../core/
|
593 |
-
msgid "
|
594 |
-
msgstr "
|
595 |
|
596 |
-
#: ../core/
|
597 |
-
#: ../core/
|
598 |
-
msgid "
|
599 |
-
msgstr "
|
600 |
|
601 |
-
#: ../core/
|
602 |
-
msgid "
|
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 |
-
msgstr "
|
|
|
|
|
|
|
|
|
620 |
|
621 |
-
#: ../core/
|
622 |
-
msgid "
|
623 |
-
msgstr "
|
624 |
|
625 |
-
#: ../core/
|
626 |
-
msgid "
|
627 |
-
msgstr "
|
628 |
|
629 |
-
#: ../core/
|
630 |
-
|
631 |
-
|
|
|
|
|
632 |
|
633 |
-
#: ../core/
|
634 |
-
msgid "
|
635 |
-
msgstr "
|
636 |
|
637 |
-
#: ../core/
|
638 |
-
msgid "
|
639 |
-
msgstr "
|
640 |
|
641 |
-
#: ../core/
|
642 |
-
msgid "
|
643 |
-
msgstr "
|
644 |
|
645 |
-
#: ../core/
|
646 |
msgid "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
647 |
msgstr "Przeczytaj dokumentację, naucz się funkcji i poznaj parę tricków, które mogą przydać Ci się w Twoim kolejnym projekcie."
|
648 |
|
649 |
-
#: ../core/
|
650 |
msgid "View the ACF website"
|
651 |
msgstr "Odwiedź stronę wtyczki"
|
652 |
|
653 |
-
#: ../core/
|
654 |
msgid "Created by"
|
655 |
msgstr "Stworzone przez"
|
656 |
|
657 |
-
#: ../core/
|
658 |
msgid "Vote"
|
659 |
msgstr "Głosuj"
|
660 |
|
661 |
-
#: ../core/
|
662 |
msgid "Follow"
|
663 |
msgstr "Śledź"
|
664 |
|
665 |
-
#: ../core/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
666 |
msgid "Advanced Custom Fields Settings"
|
667 |
-
msgstr "Ustawienia
|
668 |
|
669 |
-
#: ../core/
|
670 |
msgid "Activate Add-ons."
|
671 |
msgstr "Aktywuj dodatki."
|
672 |
|
673 |
-
#: ../core/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
msgid "Flexible Content Field"
|
675 |
msgstr "Pole z elastyczną zawartością"
|
676 |
|
677 |
-
#: ../core/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
678 |
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
679 |
msgstr "Dodatki można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny może być wykorzystywany na dowolnej liczbie stron."
|
680 |
|
681 |
-
#: ../core/
|
682 |
msgid "Find Add-ons"
|
683 |
msgstr "Znajdźj dodatki."
|
684 |
|
685 |
-
#: ../core/
|
686 |
msgid "Export Field Groups to XML"
|
687 |
msgstr "Eksportuj Grupy pól do XML"
|
688 |
|
689 |
-
#: ../core/
|
|
|
|
|
|
|
|
|
690 |
msgid "Export XML"
|
691 |
msgstr "Eksportuj XML"
|
692 |
|
693 |
-
#: ../core/
|
694 |
msgid "Import Field Groups"
|
695 |
msgstr "Importuj Grupy pól"
|
696 |
|
697 |
-
#: ../core/
|
698 |
msgid "Navigate to the"
|
699 |
msgstr "Przejdź do"
|
700 |
|
701 |
-
#: ../core/
|
702 |
msgid "Import Tool"
|
703 |
-
msgstr "
|
704 |
|
705 |
-
#: ../core/
|
706 |
msgid "and select WordPress"
|
707 |
msgstr "i wybierz Wordpress"
|
708 |
|
709 |
-
#: ../core/
|
710 |
msgid "Install WP import plugin if prompted"
|
711 |
-
msgstr "
|
712 |
|
713 |
-
#: ../core/
|
714 |
msgid "Upload and import your exported .xml file"
|
715 |
msgstr "Wgraj i zaimportuj wyeksportowany wcześniej plik .xml"
|
716 |
|
717 |
-
#: ../core/
|
718 |
msgid "Select your user and ignore Import Attachments"
|
719 |
msgstr "Wybierz użytkownika i ignoruj Importowanie załączników"
|
720 |
|
721 |
-
#: ../core/
|
722 |
msgid "That's it! Happy WordPressing"
|
723 |
msgstr "Gotowe!"
|
724 |
|
725 |
-
#: ../core/
|
726 |
msgid "Export Field Groups to PHP"
|
727 |
msgstr "Eksportuj Grupy pól do PHP"
|
728 |
|
729 |
-
#: ../core/
|
730 |
msgid "ACF will create the PHP code to include in your theme"
|
731 |
msgstr "ACF wygeneruje kod PHP, który możesz wkleić do swego szablonu"
|
732 |
|
733 |
-
#: ../core/
|
734 |
msgid "Create PHP"
|
735 |
msgstr "Utwórz PHP"
|
736 |
|
737 |
-
#: ../core/
|
738 |
-
#: ../core/
|
739 |
msgid "Register Field Groups with PHP"
|
740 |
msgstr "Utwórz grupę pól z PHP"
|
741 |
|
742 |
-
#: ../core/
|
743 |
-
#: ../core/
|
744 |
msgid "Copy the PHP code generated"
|
745 |
msgstr "Skopij wygenerowany kod PHP"
|
746 |
|
747 |
-
#: ../core/
|
748 |
-
#: ../core/
|
749 |
msgid "Paste into your functions.php file"
|
750 |
msgstr "Wklej do pliku functions.php"
|
751 |
|
752 |
-
#: ../core/
|
753 |
-
#: ../core/
|
754 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
755 |
msgstr "Aby aktywować dodatki, edytuj i użyj kodu w pierwszych kilku liniach."
|
756 |
|
757 |
-
#: ../core/
|
758 |
msgid "Back to settings"
|
759 |
msgstr "Wróć do ustawień"
|
760 |
|
761 |
-
#: ../core/
|
762 |
msgid ""
|
763 |
"/**\n"
|
764 |
" * Activate Add-ons\n"
|
@@ -776,7 +452,7 @@ msgstr ""
|
|
776 |
" * Możesz umieścić ten kod w funkcjach if, które uruchamiają się np. przy aktywacji szablonu.\n"
|
777 |
" */"
|
778 |
|
779 |
-
#: ../core/
|
780 |
msgid ""
|
781 |
"/**\n"
|
782 |
" * Register field groups\n"
|
@@ -792,53 +468,71 @@ msgstr ""
|
|
792 |
" * Kod musi być uruchamiany każdorazowo w pliku functions.php\n"
|
793 |
" */"
|
794 |
|
795 |
-
#: ../core/
|
796 |
msgid "No field groups were selected"
|
797 |
msgstr "Nie zaznaczono grup pól"
|
798 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
799 |
#: ../core/fields/checkbox.php:21
|
800 |
msgid "Checkbox"
|
801 |
msgstr "Akceptowanie (checkbox)"
|
802 |
|
803 |
-
#: ../core/fields/checkbox.php:
|
804 |
-
#: ../core/fields/radio.php:45
|
805 |
-
#: ../core/fields/select.php:50
|
806 |
msgid "No choices to choose from"
|
807 |
msgstr "Brak możliwościi wyboru"
|
808 |
|
809 |
-
#: ../core/fields/checkbox.php:
|
810 |
-
#: ../core/fields/radio.php:114
|
811 |
-
#: ../core/fields/select.php:164
|
812 |
msgid "Choices"
|
813 |
msgstr "Opcje"
|
814 |
|
815 |
-
#: ../core/fields/checkbox.php:
|
816 |
-
#: ../core/fields/radio.php:115
|
817 |
-
#: ../core/fields/select.php:165
|
818 |
msgid "Enter your choices one per line"
|
819 |
msgstr "Wpisz swoje preferencje w oddzielnych liniach"
|
820 |
|
821 |
-
#: ../core/fields/checkbox.php:
|
822 |
-
#: ../core/fields/radio.php:117
|
823 |
-
#: ../core/fields/select.php:167
|
824 |
msgid "Red"
|
825 |
msgstr "Czerwony"
|
826 |
|
827 |
-
#: ../core/fields/checkbox.php:
|
828 |
-
#: ../core/fields/radio.php:118
|
829 |
-
#: ../core/fields/select.php:168
|
830 |
msgid "Blue"
|
831 |
msgstr "Niebieski"
|
832 |
|
833 |
-
#: ../core/fields/checkbox.php:
|
834 |
-
#: ../core/fields/radio.php:120
|
835 |
-
#: ../core/fields/select.php:170
|
836 |
msgid "red : Red"
|
837 |
msgstr "czerwony : Czerwony"
|
838 |
|
839 |
-
#: ../core/fields/checkbox.php:
|
840 |
-
#: ../core/fields/radio.php:121
|
841 |
-
#: ../core/fields/select.php:171
|
842 |
msgid "blue : Blue"
|
843 |
msgstr "niebieski : Niebieski"
|
844 |
|
@@ -850,158 +544,315 @@ msgstr "Wybór koloru"
|
|
850 |
msgid "File"
|
851 |
msgstr "Plik"
|
852 |
|
853 |
-
#: ../core/fields/file.php:
|
854 |
-
msgid "
|
855 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
|
857 |
-
#: ../core/fields/file.php:
|
858 |
msgid "No File Selected"
|
859 |
msgstr "Nie zaznaczono pliku"
|
860 |
|
861 |
-
#: ../core/fields/file.php:
|
862 |
msgid "Add File"
|
863 |
msgstr "Dodaj plik"
|
864 |
|
865 |
-
#: ../core/fields/file.php:
|
866 |
-
#: ../core/fields/image.php:177
|
867 |
msgid "Return Value"
|
868 |
msgstr "Wartość zwrotna"
|
869 |
|
870 |
-
#: ../core/fields/file.php:
|
|
|
|
|
|
|
|
|
871 |
msgid "No files selected"
|
872 |
msgstr "Nie zaznaczono plików"
|
873 |
|
874 |
-
#: ../core/fields/file.php:
|
875 |
msgid "Add Selected Files"
|
876 |
msgstr "Dodaj zaznaczone pliki"
|
877 |
|
878 |
-
#: ../core/fields/file.php:
|
879 |
msgid "Select File"
|
880 |
msgstr "Wybierz plik"
|
881 |
|
|
|
|
|
|
|
|
|
882 |
#: ../core/fields/flexible_content.php:21
|
883 |
msgid "Flexible Content"
|
884 |
msgstr "Elastyczna treść"
|
885 |
|
886 |
#: ../core/fields/flexible_content.php:38
|
887 |
-
#: ../core/fields/flexible_content.php:
|
888 |
-
#: ../core/fields/repeater.php:65
|
889 |
-
#: ../core/fields/repeater.php:184
|
890 |
msgid "+ Add Row"
|
891 |
msgstr "+ Dodaj rząd"
|
892 |
|
893 |
-
#: ../core/fields/flexible_content.php:
|
894 |
-
#: ../core/fields/
|
895 |
-
#: ../core/
|
896 |
-
msgid "
|
897 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
|
899 |
-
#: ../core/fields/
|
900 |
-
msgid "
|
901 |
-
msgstr "
|
902 |
|
903 |
-
#: ../core/fields/
|
904 |
-
|
905 |
-
|
|
|
906 |
|
907 |
-
#: ../core/fields/
|
908 |
-
|
909 |
-
|
|
|
910 |
|
911 |
-
#: ../core/fields/
|
912 |
-
|
913 |
-
|
|
|
914 |
|
915 |
-
#: ../core/fields/
|
916 |
-
|
917 |
-
|
|
|
918 |
|
919 |
-
#: ../core/fields/
|
920 |
-
msgid "
|
921 |
-
msgstr "
|
922 |
|
923 |
-
#: ../core/fields/
|
924 |
-
msgid "
|
925 |
-
msgstr "
|
926 |
|
927 |
-
#: ../core/fields/
|
928 |
-
|
929 |
-
|
|
|
|
|
930 |
|
931 |
-
#: ../core/fields/
|
932 |
-
|
933 |
-
|
934 |
-
msgstr "Rząd"
|
935 |
|
936 |
-
#: ../core/fields/
|
937 |
-
|
938 |
-
|
939 |
-
msgstr "Brak pól. Kliknij przycisk \"+ Dodaj pole podrzędne\" aby utworzyć pierwsze własne pole."
|
940 |
|
941 |
-
#: ../core/fields/
|
942 |
-
|
943 |
-
|
944 |
-
msgstr "Zamknij pole"
|
945 |
|
946 |
-
#: ../core/fields/
|
947 |
-
|
948 |
-
|
949 |
-
msgstr "+ Dodaj pole podrzędne"
|
950 |
|
951 |
-
#: ../core/fields/
|
952 |
-
#: ../core/fields/
|
953 |
-
msgid "
|
954 |
-
msgstr "
|
955 |
|
956 |
#: ../core/fields/image.php:21
|
957 |
msgid "Image"
|
958 |
msgstr "Obrazek"
|
959 |
|
960 |
-
#: ../core/fields/image.php:
|
|
|
|
|
|
|
|
|
961 |
msgid "No image selected"
|
962 |
msgstr "Nie wybrano obrazka"
|
963 |
|
964 |
-
#: ../core/fields/image.php:
|
965 |
-
msgid "Add Image"
|
966 |
-
msgstr "Dodaj obrazek"
|
967 |
-
|
968 |
-
#: ../core/fields/image.php:187
|
969 |
msgid "Image URL"
|
970 |
msgstr "Adres URL"
|
971 |
|
972 |
-
#: ../core/fields/image.php:
|
973 |
msgid "Attachment ID"
|
974 |
msgstr "ID załącznika"
|
975 |
|
976 |
-
#: ../core/fields/image.php:
|
977 |
-
msgid "Preview Size"
|
978 |
-
msgstr "Wielkość obrazka"
|
979 |
-
|
980 |
-
#: ../core/fields/image.php:206
|
981 |
-
msgid "Thumbnail"
|
982 |
-
msgstr "Miniatura"
|
983 |
-
|
984 |
-
#: ../core/fields/image.php:207
|
985 |
-
msgid "Medium"
|
986 |
-
msgstr "Średni"
|
987 |
-
|
988 |
-
#: ../core/fields/image.php:208
|
989 |
-
msgid "Large"
|
990 |
-
msgstr "Duży"
|
991 |
-
|
992 |
-
#: ../core/fields/image.php:209
|
993 |
-
msgid "Full"
|
994 |
-
msgstr "Pełny"
|
995 |
-
|
996 |
-
#: ../core/fields/image.php:392
|
997 |
msgid "No images selected"
|
998 |
msgstr "Nie wybrano obrazków"
|
999 |
|
1000 |
-
#: ../core/fields/image.php:
|
1001 |
msgid "Add selected Images"
|
1002 |
msgstr "Dodaj zaznaczone obrazki"
|
1003 |
|
1004 |
-
#: ../core/fields/image.php:
|
1005 |
msgid "Select Image"
|
1006 |
msgstr "Wybierz obrazek"
|
1007 |
|
@@ -1015,7 +866,14 @@ msgstr "Link do strony"
|
|
1015 |
msgid "Select"
|
1016 |
msgstr "Przycisk wyboru (dropdown)"
|
1017 |
|
1018 |
-
#: ../core/fields/page_link.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgid ""
|
1020 |
"Filter posts by selecting a post type<br />\n"
|
1021 |
"\t\t\t\tTip: deselect all post types to show all post type's posts"
|
@@ -1023,40 +881,34 @@ msgstr ""
|
|
1023 |
"Filtruj wpisy wybierając typ wpisu<br />\n"
|
1024 |
"\t\t\t\tPodpowiedź: nie zaznaczenie żadnego typu wpisów spowoduje wyświetlenie wszystkich"
|
1025 |
|
1026 |
-
#: ../core/fields/page_link.php:
|
1027 |
-
#: ../core/fields/post_object.php:
|
1028 |
-
#: ../core/fields/post_object.php:237
|
1029 |
-
#: ../core/fields/relationship.php:250
|
1030 |
-
#: ../core/fields/relationship.php:301
|
1031 |
-
msgid "All"
|
1032 |
-
msgstr "Wszystkie"
|
1033 |
-
|
1034 |
-
#: ../core/fields/page_link.php:223
|
1035 |
-
#: ../core/fields/post_object.php:281
|
1036 |
#: ../core/fields/select.php:194
|
1037 |
msgid "Allow Null?"
|
1038 |
msgstr "Zezwolić na pustą wartość?"
|
1039 |
|
1040 |
-
#: ../core/fields/page_link.php:
|
1041 |
-
#: ../core/fields/page_link.php:
|
1042 |
-
#: ../core/fields/post_object.php:
|
1043 |
-
#: ../core/fields/post_object.php:
|
1044 |
#: ../core/fields/select.php:203
|
1045 |
#: ../core/fields/select.php:222
|
|
|
1046 |
msgid "Yes"
|
1047 |
msgstr "Tak"
|
1048 |
|
1049 |
-
#: ../core/fields/page_link.php:
|
1050 |
-
#: ../core/fields/page_link.php:
|
1051 |
-
#: ../core/fields/post_object.php:
|
1052 |
-
#: ../core/fields/post_object.php:
|
1053 |
#: ../core/fields/select.php:204
|
1054 |
#: ../core/fields/select.php:223
|
|
|
1055 |
msgid "No"
|
1056 |
msgstr "Nie"
|
1057 |
|
1058 |
-
#: ../core/fields/page_link.php:
|
1059 |
-
#: ../core/fields/post_object.php:
|
1060 |
#: ../core/fields/select.php:213
|
1061 |
msgid "Select multiple values?"
|
1062 |
msgstr "Możliwość wyboru wielu wartości?"
|
@@ -1065,8 +917,8 @@ msgstr "Możliwość wyboru wielu wartości?"
|
|
1065 |
msgid "Post Object"
|
1066 |
msgstr "Wpisy"
|
1067 |
|
1068 |
-
#: ../core/fields/post_object.php:
|
1069 |
-
#: ../core/fields/relationship.php:
|
1070 |
msgid "Filter from Taxonomy"
|
1071 |
msgstr "Filtruj wg taksonomii"
|
1072 |
|
@@ -1093,27 +945,40 @@ msgstr "Poziome"
|
|
1093 |
msgid "Relationship"
|
1094 |
msgstr "Relacja"
|
1095 |
|
1096 |
-
#: ../core/fields/relationship.php:
|
1097 |
msgid "Search"
|
1098 |
msgstr "Szukaj"
|
1099 |
|
1100 |
-
#: ../core/fields/relationship.php:
|
1101 |
msgid "Maximum posts"
|
1102 |
msgstr "Maksymalna liczba wpisów"
|
1103 |
|
1104 |
-
#: ../core/fields/relationship.php:
|
1105 |
msgid "Set to -1 for infinite"
|
1106 |
msgstr "Wpisanie -1 oznacza nieskończoność"
|
1107 |
|
1108 |
-
#: ../core/fields/repeater.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1109 |
msgid "Repeater Fields"
|
1110 |
msgstr "Pola powtarzalne"
|
1111 |
|
1112 |
-
#: ../core/fields/repeater.php:
|
1113 |
-
msgid "
|
1114 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1115 |
|
1116 |
-
#: ../core/fields/repeater.php:
|
1117 |
msgid "Table (default)"
|
1118 |
msgstr "Tabela (domyślne)"
|
1119 |
|
@@ -1168,11 +1033,16 @@ msgstr "np. Wyświetl dodatkową treść"
|
|
1168 |
msgid "Wysiwyg Editor"
|
1169 |
msgstr "Edytor WYSIWYG"
|
1170 |
|
1171 |
-
#: ../core/fields/wysiwyg.php:
|
1172 |
msgid "Toolbar"
|
1173 |
msgstr "Pasek narzędzi"
|
1174 |
|
1175 |
-
#: ../core/fields/wysiwyg.php:
|
|
|
|
|
|
|
|
|
|
|
1176 |
msgid "Show Media Upload Buttons?"
|
1177 |
msgstr "Wyświetlić przyciski Wyślij / Wstaw?"
|
1178 |
|
@@ -1188,6 +1058,328 @@ msgstr "Format daty"
|
|
1188 |
msgid "eg. dd/mm/yy. read more about"
|
1189 |
msgstr "np. dd/mm/rr. czytaj więcej"
|
1190 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1191 |
#~ msgid ""
|
1192 |
#~ "Enter your choices one per line<br />\n"
|
1193 |
#~ "\t\t\t\t<br />\n"
|
@@ -1212,9 +1404,6 @@ msgstr "np. dd/mm/rr. czytaj więcej"
|
|
1212 |
#~ msgid "or"
|
1213 |
#~ msgstr "lub"
|
1214 |
|
1215 |
-
#~ msgid "Hide this edit screen"
|
1216 |
-
#~ msgstr "Ukryj ten ekran edycji"
|
1217 |
-
|
1218 |
#~ msgid "continue editing ACF"
|
1219 |
#~ msgstr "kontynuuj edycję"
|
1220 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: \n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
+
"POT-Creation-Date: 2012-07-13 15:51+0100\n"
|
8 |
+
"PO-Revision-Date: 2012-07-13 15:59+0100\n"
|
9 |
"Last-Translator: Bartosz Arendt <info@digitalfactory.pl>\n"
|
10 |
"Language-Team: Digital Factory <info@digitalfactory.pl>\n"
|
11 |
"MIME-Version: 1.0\n"
|
18 |
"X-Poedit-Basepath: .\n"
|
19 |
"X-Poedit-SearchPath-0: ..\n"
|
20 |
|
21 |
+
#: ../acf.php:281
|
22 |
msgid "Custom Fields"
|
23 |
msgstr "Własne pola"
|
24 |
|
25 |
+
#: ../acf.php:302
|
26 |
+
msgid "Field Groups"
|
27 |
+
msgstr "Grupy Pól"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
+
#: ../acf.php:303
|
30 |
+
#: ../core/controllers/field_groups.php:153
|
31 |
+
#: ../core/controllers/upgrade.php:70
|
32 |
msgid "Advanced Custom Fields"
|
33 |
msgstr "Zaawansowane własne pola"
|
34 |
|
35 |
+
#: ../acf.php:304
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
msgid "Add New"
|
37 |
msgstr "Dodaj nowe"
|
38 |
|
39 |
+
#: ../acf.php:305
|
40 |
msgid "Add New Field Group"
|
41 |
msgstr "Dodaj nową grupę pól"
|
42 |
|
43 |
+
#: ../acf.php:306
|
44 |
msgid "Edit Field Group"
|
45 |
msgstr "Edytuj grupę pól"
|
46 |
|
47 |
+
#: ../acf.php:307
|
48 |
msgid "New Field Group"
|
49 |
msgstr "Nowa grupa pól"
|
50 |
|
51 |
+
#: ../acf.php:308
|
52 |
msgid "View Field Group"
|
53 |
msgstr "Zobacz grupę pól"
|
54 |
|
55 |
+
#: ../acf.php:309
|
56 |
msgid "Search Field Groups"
|
57 |
msgstr "Szukaj grupy pól"
|
58 |
|
59 |
+
#: ../acf.php:310
|
60 |
msgid "No Field Groups found"
|
61 |
msgstr "Nie znaleziono grupy pól"
|
62 |
|
63 |
+
#: ../acf.php:311
|
64 |
msgid "No Field Groups found in Trash"
|
65 |
msgstr "Brak grup pól w koszu"
|
66 |
|
67 |
+
#: ../acf.php:346
|
68 |
+
#: ../acf.php:349
|
69 |
+
msgid "Field group updated."
|
70 |
+
msgstr "Grupa pól została zaktualizowana."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
+
#: ../acf.php:347
|
73 |
+
msgid "Custom field updated."
|
74 |
+
msgstr "Włąsne pole zostało zaktualizowane."
|
|
|
75 |
|
76 |
+
#: ../acf.php:348
|
77 |
+
msgid "Custom field deleted."
|
78 |
+
msgstr "Własne pole zostało usunięte."
|
|
|
79 |
|
80 |
+
#: ../acf.php:351
|
81 |
+
#, php-format
|
82 |
+
msgid "Field group restored to revision from %s"
|
83 |
+
msgstr "Grupa pól została przywróćona z wersji %s"
|
84 |
|
85 |
+
#: ../acf.php:352
|
86 |
+
msgid "Field group published."
|
87 |
+
msgstr "Grupa pól została opublikowana."
|
|
|
88 |
|
89 |
+
#: ../acf.php:353
|
90 |
+
msgid "Field group saved."
|
91 |
+
msgstr "Grupa pól zostałą zapisana."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
+
#: ../acf.php:354
|
94 |
+
msgid "Field group submitted."
|
95 |
+
msgstr "Grupa pól została dodana."
|
96 |
|
97 |
+
#: ../acf.php:355
|
98 |
+
msgid "Field group scheduled for."
|
99 |
+
msgstr "Grupa pól została zaplanowana na."
|
100 |
|
101 |
+
#: ../acf.php:356
|
102 |
+
msgid "Field group draft updated."
|
103 |
+
msgstr "Szkic grupy pól został zaktualizowany."
|
104 |
|
105 |
+
#: ../acf.php:375
|
106 |
+
msgid "Title"
|
107 |
+
msgstr "Tytuł"
|
108 |
|
109 |
+
#: ../acf.php:597
|
110 |
+
msgid "Error: Field Type does not exist!"
|
111 |
+
msgstr "Błąd: Takie pole nie istnieje!"
|
112 |
|
113 |
+
#: ../acf.php:1628
|
114 |
+
msgid "Thumbnail"
|
115 |
+
msgstr "Miniatura"
|
116 |
|
117 |
+
#: ../acf.php:1629
|
118 |
+
msgid "Medium"
|
119 |
+
msgstr "Średni"
|
120 |
|
121 |
+
#: ../acf.php:1630
|
122 |
+
msgid "Large"
|
123 |
+
msgstr "Duży"
|
124 |
|
125 |
+
#: ../acf.php:1631
|
126 |
+
msgid "Full"
|
127 |
+
msgstr "Pełny"
|
128 |
|
129 |
+
#: ../core/everything_fields.php:201
|
130 |
+
#: ../core/options_page.php:178
|
131 |
+
#: ../core/controllers/input.php:450
|
132 |
+
msgid "Validation Failed. One or more fields below are required."
|
133 |
+
msgstr "Walidacja nie powiodła się. Jedno lub więcej pól jest wymaganych."
|
134 |
|
135 |
+
#: ../core/options_page.php:62
|
136 |
+
#: ../core/options_page.php:74
|
137 |
+
#: ../core/controllers/field_group.php:150
|
138 |
+
#: ../core/controllers/field_group.php:386
|
139 |
+
#: ../core/controllers/options_page.php:62
|
140 |
+
#: ../core/controllers/options_page.php:74
|
141 |
+
msgid "Options"
|
142 |
+
msgstr "Opcje"
|
143 |
|
144 |
+
#: ../core/options_page.php:157
|
145 |
+
#: ../core/controllers/options_page.php:140
|
146 |
+
msgid "Options Updated"
|
147 |
+
msgstr "Ustawienia zostały zaktualizowane"
|
148 |
|
149 |
+
#: ../core/options_page.php:271
|
150 |
+
#: ../core/controllers/options_page.php:249
|
151 |
+
msgid "No Custom Field Group found for the options page"
|
152 |
+
msgstr "Brak grup własnych pól dla strony opcji"
|
153 |
|
154 |
+
#: ../core/options_page.php:271
|
155 |
+
#: ../core/controllers/options_page.php:249
|
156 |
+
msgid "Create a Custom Field Group"
|
157 |
+
msgstr "Utwórz grupę własnych pól"
|
158 |
|
159 |
+
#: ../core/options_page.php:282
|
160 |
+
#: ../core/controllers/options_page.php:260
|
161 |
+
msgid "Publish"
|
162 |
+
msgstr "Opublikuj"
|
163 |
|
164 |
+
#: ../core/actions/export.php:19
|
165 |
+
msgid "No ACF groups selected"
|
166 |
+
msgstr "Nie zaznaczono żadnej grupy pól"
|
167 |
|
168 |
+
#: ../core/controllers/field_group.php:148
|
169 |
+
msgid "Fields"
|
170 |
+
msgstr "Pola"
|
171 |
|
172 |
+
#: ../core/controllers/field_group.php:149
|
173 |
+
msgid "Location"
|
174 |
+
msgstr "Pozycja"
|
175 |
|
176 |
+
#: ../core/controllers/field_group.php:149
|
177 |
+
msgid "Add Fields to Edit Screens"
|
178 |
+
msgstr "Dodaj pola do stron edycji"
|
179 |
|
180 |
+
#: ../core/controllers/field_group.php:150
|
181 |
+
msgid "Customise the edit page"
|
182 |
+
msgstr "Modyfikuj stronę edycji"
|
183 |
+
|
184 |
+
#: ../core/controllers/field_group.php:327
|
185 |
+
msgid "Parent Page"
|
186 |
+
msgstr "Strona nadrzędna"
|
187 |
|
188 |
+
#: ../core/controllers/field_group.php:328
|
189 |
+
msgid "Child Page"
|
190 |
+
msgstr "Strona podrzędna"
|
191 |
|
192 |
+
#: ../core/controllers/field_group.php:336
|
193 |
+
msgid "Default Template"
|
194 |
+
msgstr "Domyślny szablon"
|
195 |
|
196 |
+
#: ../core/controllers/field_group.php:410
|
197 |
+
#: ../core/controllers/field_group.php:431
|
198 |
+
#: ../core/controllers/field_group.php:438
|
199 |
+
msgid "All"
|
200 |
+
msgstr "Wszystkie"
|
201 |
|
202 |
+
#: ../core/controllers/field_groups.php:155
|
203 |
+
msgid "Changelog"
|
204 |
+
msgstr "Dziennik zmian"
|
205 |
|
206 |
+
#: ../core/controllers/field_groups.php:156
|
207 |
+
msgid "See what's new in"
|
208 |
+
msgstr "Zobacz co słychać nowego w"
|
209 |
|
210 |
+
#: ../core/controllers/field_groups.php:158
|
211 |
+
msgid "Resources"
|
212 |
+
msgstr "Zasoby"
|
213 |
|
214 |
+
#: ../core/controllers/field_groups.php:159
|
215 |
msgid "Read documentation, learn the functions and find some tips & tricks for your next web project."
|
216 |
msgstr "Przeczytaj dokumentację, naucz się funkcji i poznaj parę tricków, które mogą przydać Ci się w Twoim kolejnym projekcie."
|
217 |
|
218 |
+
#: ../core/controllers/field_groups.php:160
|
219 |
msgid "View the ACF website"
|
220 |
msgstr "Odwiedź stronę wtyczki"
|
221 |
|
222 |
+
#: ../core/controllers/field_groups.php:165
|
223 |
msgid "Created by"
|
224 |
msgstr "Stworzone przez"
|
225 |
|
226 |
+
#: ../core/controllers/field_groups.php:168
|
227 |
msgid "Vote"
|
228 |
msgstr "Głosuj"
|
229 |
|
230 |
+
#: ../core/controllers/field_groups.php:169
|
231 |
msgid "Follow"
|
232 |
msgstr "Śledź"
|
233 |
|
234 |
+
#: ../core/controllers/input.php:451
|
235 |
+
msgid "Add File to Field"
|
236 |
+
msgstr "Dodaj plik do pola"
|
237 |
+
|
238 |
+
#: ../core/controllers/input.php:452
|
239 |
+
msgid "Edit File"
|
240 |
+
msgstr "Edytuj plik"
|
241 |
+
|
242 |
+
#: ../core/controllers/input.php:453
|
243 |
+
msgid "Add Image to Field"
|
244 |
+
msgstr "Dodaj zdjęcie do pola"
|
245 |
+
|
246 |
+
#: ../core/controllers/input.php:454
|
247 |
+
#: ../core/controllers/input.php:457
|
248 |
+
msgid "Edit Image"
|
249 |
+
msgstr "Edytuj zdjęcie"
|
250 |
+
|
251 |
+
#: ../core/controllers/input.php:455
|
252 |
+
msgid "Maximum values reached ( {max} values )"
|
253 |
+
msgstr "Maksymalna liczba została osiągnięta ( {max} )"
|
254 |
+
|
255 |
+
#: ../core/controllers/input.php:456
|
256 |
+
msgid "Add Image to Gallery"
|
257 |
+
msgstr "Dodaj zdjęcie do galerii"
|
258 |
+
|
259 |
+
#: ../core/controllers/settings.php:49
|
260 |
+
msgid "Settings"
|
261 |
+
msgstr "Ustawienia"
|
262 |
+
|
263 |
+
#: ../core/controllers/settings.php:80
|
264 |
+
msgid "Repeater field deactivated"
|
265 |
+
msgstr "Pole powtarzalne zostało deaktywowane"
|
266 |
+
|
267 |
+
#: ../core/controllers/settings.php:84
|
268 |
+
msgid "Options page deactivated"
|
269 |
+
msgstr "Strona opcji została deaktywowana"
|
270 |
+
|
271 |
+
#: ../core/controllers/settings.php:88
|
272 |
+
msgid "Flexible Content field deactivated"
|
273 |
+
msgstr "Pole z elastyczną zawartością zostało deaktywowane"
|
274 |
+
|
275 |
+
#: ../core/controllers/settings.php:92
|
276 |
+
msgid "Gallery field deactivated"
|
277 |
+
msgstr "Galeria została deaktywowana"
|
278 |
+
|
279 |
+
#: ../core/controllers/settings.php:116
|
280 |
+
msgid "Repeater field activated"
|
281 |
+
msgstr "Pole powtarzalne zostało aktywowane"
|
282 |
+
|
283 |
+
#: ../core/controllers/settings.php:120
|
284 |
+
msgid "Options page activated"
|
285 |
+
msgstr "Strona opcji została aktywowana"
|
286 |
+
|
287 |
+
#: ../core/controllers/settings.php:124
|
288 |
+
msgid "Flexible Content field activated"
|
289 |
+
msgstr "Pole z elastyczną zawartością zostało aktywowane"
|
290 |
+
|
291 |
+
#: ../core/controllers/settings.php:128
|
292 |
+
msgid "Gallery field activated"
|
293 |
+
msgstr "Galeria została aktywowana"
|
294 |
+
|
295 |
+
#: ../core/controllers/settings.php:133
|
296 |
+
msgid "License key unrecognised"
|
297 |
+
msgstr "Klucz licencji nie został rozpoznany"
|
298 |
+
|
299 |
+
#: ../core/controllers/settings.php:167
|
300 |
msgid "Advanced Custom Fields Settings"
|
301 |
+
msgstr "Ustawienia zaawansowanych własnych pól"
|
302 |
|
303 |
+
#: ../core/controllers/settings.php:184
|
304 |
msgid "Activate Add-ons."
|
305 |
msgstr "Aktywuj dodatki."
|
306 |
|
307 |
+
#: ../core/controllers/settings.php:188
|
308 |
+
msgid "Field Type"
|
309 |
+
msgstr "Rodzaj pola"
|
310 |
+
|
311 |
+
#: ../core/controllers/settings.php:189
|
312 |
+
msgid "Status"
|
313 |
+
msgstr "Status"
|
314 |
+
|
315 |
+
#: ../core/controllers/settings.php:190
|
316 |
+
msgid "Activation Code"
|
317 |
+
msgstr "Kod aktywacyjny"
|
318 |
+
|
319 |
+
#: ../core/controllers/settings.php:195
|
320 |
+
msgid "Repeater Field"
|
321 |
+
msgstr "Pole powtarzalne"
|
322 |
+
|
323 |
+
#: ../core/controllers/settings.php:196
|
324 |
+
#: ../core/controllers/settings.php:215
|
325 |
+
#: ../core/controllers/settings.php:234
|
326 |
+
#: ../core/controllers/settings.php:253
|
327 |
+
msgid "Active"
|
328 |
+
msgstr "Aktywne"
|
329 |
+
|
330 |
+
#: ../core/controllers/settings.php:196
|
331 |
+
#: ../core/controllers/settings.php:215
|
332 |
+
#: ../core/controllers/settings.php:234
|
333 |
+
#: ../core/controllers/settings.php:253
|
334 |
+
msgid "Inactive"
|
335 |
+
msgstr "Nieaktywne"
|
336 |
+
|
337 |
+
#: ../core/controllers/settings.php:214
|
338 |
msgid "Flexible Content Field"
|
339 |
msgstr "Pole z elastyczną zawartością"
|
340 |
|
341 |
+
#: ../core/controllers/settings.php:233
|
342 |
+
msgid "Gallery Field"
|
343 |
+
msgstr "Galeria"
|
344 |
+
|
345 |
+
#: ../core/controllers/settings.php:252
|
346 |
+
msgid "Options Page"
|
347 |
+
msgstr "Strona opcji"
|
348 |
+
|
349 |
+
#: ../core/controllers/settings.php:275
|
350 |
msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites."
|
351 |
msgstr "Dodatki można odblokować kupując kod aktywacyjny. Każdy kod aktywacyjny może być wykorzystywany na dowolnej liczbie stron."
|
352 |
|
353 |
+
#: ../core/controllers/settings.php:275
|
354 |
msgid "Find Add-ons"
|
355 |
msgstr "Znajdźj dodatki."
|
356 |
|
357 |
+
#: ../core/controllers/settings.php:293
|
358 |
msgid "Export Field Groups to XML"
|
359 |
msgstr "Eksportuj Grupy pól do XML"
|
360 |
|
361 |
+
#: ../core/controllers/settings.php:326
|
362 |
+
msgid "ACF will create a .xml export file which is compatible with the native WP import plugin."
|
363 |
+
msgstr "Wtyczka utworzy plik eksportu .xml, który jest kompatybilny z domyślną wtyczką importu plików."
|
364 |
+
|
365 |
+
#: ../core/controllers/settings.php:329
|
366 |
msgid "Export XML"
|
367 |
msgstr "Eksportuj XML"
|
368 |
|
369 |
+
#: ../core/controllers/settings.php:335
|
370 |
msgid "Import Field Groups"
|
371 |
msgstr "Importuj Grupy pól"
|
372 |
|
373 |
+
#: ../core/controllers/settings.php:337
|
374 |
msgid "Navigate to the"
|
375 |
msgstr "Przejdź do"
|
376 |
|
377 |
+
#: ../core/controllers/settings.php:337
|
378 |
msgid "Import Tool"
|
379 |
+
msgstr "Narzędzie Importu"
|
380 |
|
381 |
+
#: ../core/controllers/settings.php:337
|
382 |
msgid "and select WordPress"
|
383 |
msgstr "i wybierz Wordpress"
|
384 |
|
385 |
+
#: ../core/controllers/settings.php:338
|
386 |
msgid "Install WP import plugin if prompted"
|
387 |
+
msgstr "Zainstaluj wtyczkę importu WP, jeśli zostaniesz o to poproszony"
|
388 |
|
389 |
+
#: ../core/controllers/settings.php:339
|
390 |
msgid "Upload and import your exported .xml file"
|
391 |
msgstr "Wgraj i zaimportuj wyeksportowany wcześniej plik .xml"
|
392 |
|
393 |
+
#: ../core/controllers/settings.php:340
|
394 |
msgid "Select your user and ignore Import Attachments"
|
395 |
msgstr "Wybierz użytkownika i ignoruj Importowanie załączników"
|
396 |
|
397 |
+
#: ../core/controllers/settings.php:341
|
398 |
msgid "That's it! Happy WordPressing"
|
399 |
msgstr "Gotowe!"
|
400 |
|
401 |
+
#: ../core/controllers/settings.php:360
|
402 |
msgid "Export Field Groups to PHP"
|
403 |
msgstr "Eksportuj Grupy pól do PHP"
|
404 |
|
405 |
+
#: ../core/controllers/settings.php:393
|
406 |
msgid "ACF will create the PHP code to include in your theme"
|
407 |
msgstr "ACF wygeneruje kod PHP, który możesz wkleić do swego szablonu"
|
408 |
|
409 |
+
#: ../core/controllers/settings.php:396
|
410 |
msgid "Create PHP"
|
411 |
msgstr "Utwórz PHP"
|
412 |
|
413 |
+
#: ../core/controllers/settings.php:402
|
414 |
+
#: ../core/controllers/settings.php:430
|
415 |
msgid "Register Field Groups with PHP"
|
416 |
msgstr "Utwórz grupę pól z PHP"
|
417 |
|
418 |
+
#: ../core/controllers/settings.php:404
|
419 |
+
#: ../core/controllers/settings.php:432
|
420 |
msgid "Copy the PHP code generated"
|
421 |
msgstr "Skopij wygenerowany kod PHP"
|
422 |
|
423 |
+
#: ../core/controllers/settings.php:405
|
424 |
+
#: ../core/controllers/settings.php:433
|
425 |
msgid "Paste into your functions.php file"
|
426 |
msgstr "Wklej do pliku functions.php"
|
427 |
|
428 |
+
#: ../core/controllers/settings.php:406
|
429 |
+
#: ../core/controllers/settings.php:434
|
430 |
msgid "To activate any Add-ons, edit and use the code in the first few lines."
|
431 |
msgstr "Aby aktywować dodatki, edytuj i użyj kodu w pierwszych kilku liniach."
|
432 |
|
433 |
+
#: ../core/controllers/settings.php:427
|
434 |
msgid "Back to settings"
|
435 |
msgstr "Wróć do ustawień"
|
436 |
|
437 |
+
#: ../core/controllers/settings.php:455
|
438 |
msgid ""
|
439 |
"/**\n"
|
440 |
" * Activate Add-ons\n"
|
452 |
" * Możesz umieścić ten kod w funkcjach if, które uruchamiają się np. przy aktywacji szablonu.\n"
|
453 |
" */"
|
454 |
|
455 |
+
#: ../core/controllers/settings.php:468
|
456 |
msgid ""
|
457 |
"/**\n"
|
458 |
" * Register field groups\n"
|
468 |
" * Kod musi być uruchamiany każdorazowo w pliku functions.php\n"
|
469 |
" */"
|
470 |
|
471 |
+
#: ../core/controllers/settings.php:498
|
472 |
msgid "No field groups were selected"
|
473 |
msgstr "Nie zaznaczono grup pól"
|
474 |
|
475 |
+
#: ../core/controllers/upgrade.php:51
|
476 |
+
msgid "Upgrade"
|
477 |
+
msgstr "Aktualizacja"
|
478 |
+
|
479 |
+
#: ../core/controllers/upgrade.php:70
|
480 |
+
msgid "requires a database upgrade"
|
481 |
+
msgstr "wymagana jest aktualizacja bazy danych"
|
482 |
+
|
483 |
+
#: ../core/controllers/upgrade.php:70
|
484 |
+
msgid "why?"
|
485 |
+
msgstr "dlaczego?"
|
486 |
+
|
487 |
+
#: ../core/controllers/upgrade.php:70
|
488 |
+
msgid "Please"
|
489 |
+
msgstr "Proszę"
|
490 |
+
|
491 |
+
#: ../core/controllers/upgrade.php:70
|
492 |
+
msgid "backup your database"
|
493 |
+
msgstr "zrobić kopię zapasową bazy danych"
|
494 |
+
|
495 |
+
#: ../core/controllers/upgrade.php:70
|
496 |
+
msgid "then click"
|
497 |
+
msgstr "a następnie kliknąć"
|
498 |
+
|
499 |
+
#: ../core/controllers/upgrade.php:70
|
500 |
+
msgid "Upgrade Database"
|
501 |
+
msgstr "Aktualizuj bazę danych"
|
502 |
+
|
503 |
+
#: ../core/controllers/upgrade.php:590
|
504 |
+
msgid "Modifying field group options 'show on page'"
|
505 |
+
msgstr "Modyfikacje opcji grupy pól 'pokaż na stronie'"
|
506 |
+
|
507 |
#: ../core/fields/checkbox.php:21
|
508 |
msgid "Checkbox"
|
509 |
msgstr "Akceptowanie (checkbox)"
|
510 |
|
511 |
+
#: ../core/fields/checkbox.php:55
|
|
|
|
|
512 |
msgid "No choices to choose from"
|
513 |
msgstr "Brak możliwościi wyboru"
|
514 |
|
515 |
+
#: ../core/fields/checkbox.php:113
|
|
|
|
|
516 |
msgid "Choices"
|
517 |
msgstr "Opcje"
|
518 |
|
519 |
+
#: ../core/fields/checkbox.php:114
|
|
|
|
|
520 |
msgid "Enter your choices one per line"
|
521 |
msgstr "Wpisz swoje preferencje w oddzielnych liniach"
|
522 |
|
523 |
+
#: ../core/fields/checkbox.php:116
|
|
|
|
|
524 |
msgid "Red"
|
525 |
msgstr "Czerwony"
|
526 |
|
527 |
+
#: ../core/fields/checkbox.php:117
|
|
|
|
|
528 |
msgid "Blue"
|
529 |
msgstr "Niebieski"
|
530 |
|
531 |
+
#: ../core/fields/checkbox.php:119
|
|
|
|
|
532 |
msgid "red : Red"
|
533 |
msgstr "czerwony : Czerwony"
|
534 |
|
535 |
+
#: ../core/fields/checkbox.php:120
|
|
|
|
|
536 |
msgid "blue : Blue"
|
537 |
msgstr "niebieski : Niebieski"
|
538 |
|
544 |
msgid "File"
|
545 |
msgstr "Plik"
|
546 |
|
547 |
+
#: ../core/fields/file.php:48
|
548 |
+
msgid "File Updated."
|
549 |
+
msgstr "Plik został zaktualizowany."
|
550 |
+
|
551 |
+
#: ../core/fields/file.php:89
|
552 |
+
msgid "Edit"
|
553 |
+
msgstr "Edytuj"
|
554 |
+
|
555 |
+
#: ../core/fields/file.php:90
|
556 |
+
msgid "Remove"
|
557 |
+
msgstr "Usuń"
|
558 |
|
559 |
+
#: ../core/fields/file.php:195
|
560 |
msgid "No File Selected"
|
561 |
msgstr "Nie zaznaczono pliku"
|
562 |
|
563 |
+
#: ../core/fields/file.php:195
|
564 |
msgid "Add File"
|
565 |
msgstr "Dodaj plik"
|
566 |
|
567 |
+
#: ../core/fields/file.php:224
|
|
|
568 |
msgid "Return Value"
|
569 |
msgstr "Wartość zwrotna"
|
570 |
|
571 |
+
#: ../core/fields/file.php:268
|
572 |
+
msgid "Media attachment updated."
|
573 |
+
msgstr "Załącznik został zaktualizowany."
|
574 |
+
|
575 |
+
#: ../core/fields/file.php:393
|
576 |
msgid "No files selected"
|
577 |
msgstr "Nie zaznaczono plików"
|
578 |
|
579 |
+
#: ../core/fields/file.php:488
|
580 |
msgid "Add Selected Files"
|
581 |
msgstr "Dodaj zaznaczone pliki"
|
582 |
|
583 |
+
#: ../core/fields/file.php:518
|
584 |
msgid "Select File"
|
585 |
msgstr "Wybierz plik"
|
586 |
|
587 |
+
#: ../core/fields/file.php:521
|
588 |
+
msgid "Update File"
|
589 |
+
msgstr "Aktualizuj plik"
|
590 |
+
|
591 |
#: ../core/fields/flexible_content.php:21
|
592 |
msgid "Flexible Content"
|
593 |
msgstr "Elastyczna treść"
|
594 |
|
595 |
#: ../core/fields/flexible_content.php:38
|
596 |
+
#: ../core/fields/flexible_content.php:232
|
|
|
|
|
597 |
msgid "+ Add Row"
|
598 |
msgstr "+ Dodaj rząd"
|
599 |
|
600 |
+
#: ../core/fields/flexible_content.php:259
|
601 |
+
#: ../core/fields/repeater.php:261
|
602 |
+
#: ../core/views/meta_box_fields.php:25
|
603 |
+
msgid "New Field"
|
604 |
+
msgstr "Nowe pole"
|
605 |
+
|
606 |
+
#: ../core/fields/flexible_content.php:268
|
607 |
+
#: ../core/fields/radio.php:144
|
608 |
+
#: ../core/fields/repeater.php:440
|
609 |
+
msgid "Layout"
|
610 |
+
msgstr "Szablon"
|
611 |
+
|
612 |
+
#: ../core/fields/flexible_content.php:270
|
613 |
+
msgid "Reorder Layout"
|
614 |
+
msgstr "Zmiana kolejności w szablonie"
|
615 |
+
|
616 |
+
#: ../core/fields/flexible_content.php:270
|
617 |
+
msgid "Reorder"
|
618 |
+
msgstr "Zmiana kolejności"
|
619 |
+
|
620 |
+
#: ../core/fields/flexible_content.php:271
|
621 |
+
msgid "Add New Layout"
|
622 |
+
msgstr "Dodaj nowy szablon"
|
623 |
+
|
624 |
+
#: ../core/fields/flexible_content.php:272
|
625 |
+
msgid "Delete Layout"
|
626 |
+
msgstr "Usuń szablon"
|
627 |
+
|
628 |
+
#: ../core/fields/flexible_content.php:272
|
629 |
+
#: ../core/fields/flexible_content.php:356
|
630 |
+
#: ../core/fields/repeater.php:317
|
631 |
+
#: ../core/views/meta_box_fields.php:90
|
632 |
+
msgid "Delete"
|
633 |
+
msgstr "Usuń"
|
634 |
+
|
635 |
+
#: ../core/fields/flexible_content.php:282
|
636 |
+
msgid "Label"
|
637 |
+
msgstr "Etykieta"
|
638 |
+
|
639 |
+
#: ../core/fields/flexible_content.php:292
|
640 |
+
msgid "Name"
|
641 |
+
msgstr "Nazwa"
|
642 |
+
|
643 |
+
#: ../core/fields/flexible_content.php:302
|
644 |
+
msgid "Display"
|
645 |
+
msgstr "Wyświetl"
|
646 |
+
|
647 |
+
#: ../core/fields/flexible_content.php:309
|
648 |
+
msgid "Table"
|
649 |
+
msgstr "Tabela"
|
650 |
+
|
651 |
+
#: ../core/fields/flexible_content.php:310
|
652 |
+
#: ../core/fields/repeater.php:451
|
653 |
+
msgid "Row"
|
654 |
+
msgstr "Rząd"
|
655 |
+
|
656 |
+
#: ../core/fields/flexible_content.php:323
|
657 |
+
#: ../core/fields/repeater.php:285
|
658 |
+
#: ../core/views/meta_box_fields.php:60
|
659 |
+
msgid "Field Order"
|
660 |
+
msgstr "Kolejność pola"
|
661 |
+
|
662 |
+
#: ../core/fields/flexible_content.php:324
|
663 |
+
#: ../core/fields/flexible_content.php:371
|
664 |
+
#: ../core/fields/repeater.php:286
|
665 |
+
#: ../core/fields/repeater.php:333
|
666 |
+
#: ../core/views/meta_box_fields.php:61
|
667 |
+
#: ../core/views/meta_box_fields.php:105
|
668 |
+
msgid "Field Label"
|
669 |
+
msgstr "Etykieta pola"
|
670 |
+
|
671 |
+
#: ../core/fields/flexible_content.php:325
|
672 |
+
#: ../core/fields/flexible_content.php:387
|
673 |
+
#: ../core/fields/repeater.php:287
|
674 |
+
#: ../core/fields/repeater.php:349
|
675 |
+
#: ../core/views/meta_box_fields.php:62
|
676 |
+
#: ../core/views/meta_box_fields.php:121
|
677 |
+
msgid "Field Name"
|
678 |
+
msgstr "Nazwa pola"
|
679 |
+
|
680 |
+
#: ../core/fields/flexible_content.php:334
|
681 |
+
#: ../core/fields/repeater.php:296
|
682 |
+
msgid "No fields. Click the \"+ Add Sub Field button\" to create your first field."
|
683 |
+
msgstr "Brak pól. Kliknij przycisk \"+ Dodaj pole podrzędne\" aby utworzyć pierwsze własne pole."
|
684 |
+
|
685 |
+
#: ../core/fields/flexible_content.php:350
|
686 |
+
#: ../core/fields/flexible_content.php:353
|
687 |
+
#: ../core/fields/repeater.php:311
|
688 |
+
#: ../core/fields/repeater.php:314
|
689 |
+
#: ../core/views/meta_box_fields.php:84
|
690 |
+
#: ../core/views/meta_box_fields.php:87
|
691 |
+
msgid "Edit this Field"
|
692 |
+
msgstr "Edytuj to pole"
|
693 |
+
|
694 |
+
#: ../core/fields/flexible_content.php:354
|
695 |
+
#: ../core/fields/repeater.php:315
|
696 |
+
#: ../core/views/meta_box_fields.php:88
|
697 |
+
msgid "Read documentation for this field"
|
698 |
+
msgstr "Przeczytaj dokumentację tego pola"
|
699 |
+
|
700 |
+
#: ../core/fields/flexible_content.php:354
|
701 |
+
#: ../core/fields/repeater.php:315
|
702 |
+
#: ../core/views/meta_box_fields.php:88
|
703 |
+
msgid "Docs"
|
704 |
+
msgstr "Dokumentacja"
|
705 |
+
|
706 |
+
#: ../core/fields/flexible_content.php:355
|
707 |
+
#: ../core/fields/repeater.php:316
|
708 |
+
#: ../core/views/meta_box_fields.php:89
|
709 |
+
msgid "Duplicate this Field"
|
710 |
+
msgstr "Duplikuj to pole"
|
711 |
+
|
712 |
+
#: ../core/fields/flexible_content.php:355
|
713 |
+
#: ../core/fields/repeater.php:316
|
714 |
+
#: ../core/views/meta_box_fields.php:89
|
715 |
+
msgid "Duplicate"
|
716 |
+
msgstr "Duplikuj"
|
717 |
+
|
718 |
+
#: ../core/fields/flexible_content.php:356
|
719 |
+
#: ../core/fields/repeater.php:317
|
720 |
+
#: ../core/views/meta_box_fields.php:90
|
721 |
+
msgid "Delete this Field"
|
722 |
+
msgstr "Usuń to pole"
|
723 |
+
|
724 |
+
#: ../core/fields/flexible_content.php:372
|
725 |
+
#: ../core/fields/repeater.php:334
|
726 |
+
#: ../core/views/meta_box_fields.php:106
|
727 |
+
msgid "This is the name which will appear on the EDIT page"
|
728 |
+
msgstr "To jest nawa, która pojawi się na stronie edycji"
|
729 |
+
|
730 |
+
#: ../core/fields/flexible_content.php:388
|
731 |
+
#: ../core/fields/repeater.php:350
|
732 |
+
#: ../core/views/meta_box_fields.php:122
|
733 |
+
msgid "Single word, no spaces. Underscores and dashes allowed"
|
734 |
+
msgstr "Pojedyncze słowo, bez spacji. Dozwolone są myślniki i podkreślniki"
|
735 |
+
|
736 |
+
#: ../core/fields/flexible_content.php:422
|
737 |
+
#: ../core/fields/repeater.php:384
|
738 |
+
msgid "Save Field"
|
739 |
+
msgstr "Zapisz pole"
|
740 |
+
|
741 |
+
#: ../core/fields/flexible_content.php:427
|
742 |
+
#: ../core/fields/repeater.php:389
|
743 |
+
#: ../core/views/meta_box_fields.php:188
|
744 |
+
msgid "Close Field"
|
745 |
+
msgstr "Zamknij to pole"
|
746 |
+
|
747 |
+
#: ../core/fields/flexible_content.php:427
|
748 |
+
#: ../core/fields/repeater.php:389
|
749 |
+
msgid "Close Sub Field"
|
750 |
+
msgstr "Zamknij pole"
|
751 |
+
|
752 |
+
#: ../core/fields/flexible_content.php:441
|
753 |
+
#: ../core/fields/repeater.php:404
|
754 |
+
#: ../core/views/meta_box_fields.php:201
|
755 |
+
msgid "Drag and drop to reorder"
|
756 |
+
msgstr "Przeciągnij i zmień kolejność"
|
757 |
+
|
758 |
+
#: ../core/fields/flexible_content.php:442
|
759 |
+
#: ../core/fields/repeater.php:405
|
760 |
+
msgid "+ Add Sub Field"
|
761 |
+
msgstr "+ Dodaj pole podrzędne"
|
762 |
+
|
763 |
+
#: ../core/fields/flexible_content.php:449
|
764 |
+
#: ../core/fields/repeater.php:459
|
765 |
+
msgid "Button Label"
|
766 |
+
msgstr "Tekst przycisku"
|
767 |
|
768 |
+
#: ../core/fields/gallery.php:25
|
769 |
+
msgid "Gallery"
|
770 |
+
msgstr "Galeria"
|
771 |
|
772 |
+
#: ../core/fields/gallery.php:70
|
773 |
+
#: ../core/fields/gallery.php:233
|
774 |
+
msgid "Alternate Text"
|
775 |
+
msgstr "Tekst alternatywny"
|
776 |
|
777 |
+
#: ../core/fields/gallery.php:74
|
778 |
+
#: ../core/fields/gallery.php:237
|
779 |
+
msgid "Caption"
|
780 |
+
msgstr "Podpis"
|
781 |
|
782 |
+
#: ../core/fields/gallery.php:78
|
783 |
+
#: ../core/fields/gallery.php:241
|
784 |
+
msgid "Description"
|
785 |
+
msgstr "Opis"
|
786 |
|
787 |
+
#: ../core/fields/gallery.php:117
|
788 |
+
#: ../core/fields/image.php:242
|
789 |
+
msgid "Preview Size"
|
790 |
+
msgstr "Wielkość obrazka"
|
791 |
|
792 |
+
#: ../core/fields/gallery.php:118
|
793 |
+
msgid "Thumbnail is advised"
|
794 |
+
msgstr "Zalecana jest miniatura."
|
795 |
|
796 |
+
#: ../core/fields/gallery.php:179
|
797 |
+
msgid "Image Updated"
|
798 |
+
msgstr "Zdjęcie zostało zaktualizowane."
|
799 |
|
800 |
+
#: ../core/fields/gallery.php:262
|
801 |
+
#: ../core/fields/gallery.php:642
|
802 |
+
#: ../core/fields/image.php:193
|
803 |
+
msgid "Add Image"
|
804 |
+
msgstr "Dodaj obrazek"
|
805 |
|
806 |
+
#: ../core/fields/gallery.php:263
|
807 |
+
msgid "Grid"
|
808 |
+
msgstr "Siatka"
|
|
|
809 |
|
810 |
+
#: ../core/fields/gallery.php:264
|
811 |
+
msgid "List"
|
812 |
+
msgstr "Lista"
|
|
|
813 |
|
814 |
+
#: ../core/fields/gallery.php:585
|
815 |
+
msgid "Image already exists in gallery"
|
816 |
+
msgstr "To zdjęcie już jest w galerii."
|
|
|
817 |
|
818 |
+
#: ../core/fields/gallery.php:591
|
819 |
+
msgid "Image Added"
|
820 |
+
msgstr "Zdjęcie zostało dodane."
|
|
|
821 |
|
822 |
+
#: ../core/fields/gallery.php:645
|
823 |
+
#: ../core/fields/image.php:555
|
824 |
+
msgid "Update Image"
|
825 |
+
msgstr "Aktualizuj obrazek"
|
826 |
|
827 |
#: ../core/fields/image.php:21
|
828 |
msgid "Image"
|
829 |
msgstr "Obrazek"
|
830 |
|
831 |
+
#: ../core/fields/image.php:49
|
832 |
+
msgid "Image Updated."
|
833 |
+
msgstr "Zdjęcie zostało zaktualizowane."
|
834 |
+
|
835 |
+
#: ../core/fields/image.php:193
|
836 |
msgid "No image selected"
|
837 |
msgstr "Nie wybrano obrazka"
|
838 |
|
839 |
+
#: ../core/fields/image.php:233
|
|
|
|
|
|
|
|
|
840 |
msgid "Image URL"
|
841 |
msgstr "Adres URL"
|
842 |
|
843 |
+
#: ../core/fields/image.php:234
|
844 |
msgid "Attachment ID"
|
845 |
msgstr "ID załącznika"
|
846 |
|
847 |
+
#: ../core/fields/image.php:427
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
848 |
msgid "No images selected"
|
849 |
msgstr "Nie wybrano obrazków"
|
850 |
|
851 |
+
#: ../core/fields/image.php:523
|
852 |
msgid "Add selected Images"
|
853 |
msgstr "Dodaj zaznaczone obrazki"
|
854 |
|
855 |
+
#: ../core/fields/image.php:552
|
856 |
msgid "Select Image"
|
857 |
msgstr "Wybierz obrazek"
|
858 |
|
866 |
msgid "Select"
|
867 |
msgstr "Przycisk wyboru (dropdown)"
|
868 |
|
869 |
+
#: ../core/fields/page_link.php:196
|
870 |
+
#: ../core/fields/post_object.php:211
|
871 |
+
#: ../core/fields/relationship.php:247
|
872 |
+
#: ../core/views/meta_box_location.php:48
|
873 |
+
msgid "Post Type"
|
874 |
+
msgstr "Typ wpisu"
|
875 |
+
|
876 |
+
#: ../core/fields/page_link.php:197
|
877 |
msgid ""
|
878 |
"Filter posts by selecting a post type<br />\n"
|
879 |
"\t\t\t\tTip: deselect all post types to show all post type's posts"
|
881 |
"Filtruj wpisy wybierając typ wpisu<br />\n"
|
882 |
"\t\t\t\tPodpowiedź: nie zaznaczenie żadnego typu wpisów spowoduje wyświetlenie wszystkich"
|
883 |
|
884 |
+
#: ../core/fields/page_link.php:225
|
885 |
+
#: ../core/fields/post_object.php:283
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
886 |
#: ../core/fields/select.php:194
|
887 |
msgid "Allow Null?"
|
888 |
msgstr "Zezwolić na pustą wartość?"
|
889 |
|
890 |
+
#: ../core/fields/page_link.php:234
|
891 |
+
#: ../core/fields/page_link.php:253
|
892 |
+
#: ../core/fields/post_object.php:292
|
893 |
+
#: ../core/fields/post_object.php:311
|
894 |
#: ../core/fields/select.php:203
|
895 |
#: ../core/fields/select.php:222
|
896 |
+
#: ../core/fields/wysiwyg.php:104
|
897 |
msgid "Yes"
|
898 |
msgstr "Tak"
|
899 |
|
900 |
+
#: ../core/fields/page_link.php:235
|
901 |
+
#: ../core/fields/page_link.php:254
|
902 |
+
#: ../core/fields/post_object.php:293
|
903 |
+
#: ../core/fields/post_object.php:312
|
904 |
#: ../core/fields/select.php:204
|
905 |
#: ../core/fields/select.php:223
|
906 |
+
#: ../core/fields/wysiwyg.php:105
|
907 |
msgid "No"
|
908 |
msgstr "Nie"
|
909 |
|
910 |
+
#: ../core/fields/page_link.php:244
|
911 |
+
#: ../core/fields/post_object.php:302
|
912 |
#: ../core/fields/select.php:213
|
913 |
msgid "Select multiple values?"
|
914 |
msgstr "Możliwość wyboru wielu wartości?"
|
917 |
msgid "Post Object"
|
918 |
msgstr "Wpisy"
|
919 |
|
920 |
+
#: ../core/fields/post_object.php:233
|
921 |
+
#: ../core/fields/relationship.php:296
|
922 |
msgid "Filter from Taxonomy"
|
923 |
msgstr "Filtruj wg taksonomii"
|
924 |
|
945 |
msgid "Relationship"
|
946 |
msgstr "Relacja"
|
947 |
|
948 |
+
#: ../core/fields/relationship.php:135
|
949 |
msgid "Search"
|
950 |
msgstr "Szukaj"
|
951 |
|
952 |
+
#: ../core/fields/relationship.php:319
|
953 |
msgid "Maximum posts"
|
954 |
msgstr "Maksymalna liczba wpisów"
|
955 |
|
956 |
+
#: ../core/fields/relationship.php:320
|
957 |
msgid "Set to -1 for infinite"
|
958 |
msgstr "Wpisanie -1 oznacza nieskończoność"
|
959 |
|
960 |
+
#: ../core/fields/repeater.php:21
|
961 |
+
msgid "Repeater"
|
962 |
+
msgstr "Pole powtarzalne"
|
963 |
+
|
964 |
+
#: ../core/fields/repeater.php:66
|
965 |
+
#: ../core/fields/repeater.php:248
|
966 |
+
msgid "Add Row"
|
967 |
+
msgstr "Dodaj rząd"
|
968 |
+
|
969 |
+
#: ../core/fields/repeater.php:277
|
970 |
msgid "Repeater Fields"
|
971 |
msgstr "Pola powtarzalne"
|
972 |
|
973 |
+
#: ../core/fields/repeater.php:412
|
974 |
+
msgid "Minimum Rows"
|
975 |
+
msgstr "Minimalna liczba rzędów"
|
976 |
+
|
977 |
+
#: ../core/fields/repeater.php:426
|
978 |
+
msgid "Maximum Rows"
|
979 |
+
msgstr "Maksymalna liczba rzędów"
|
980 |
|
981 |
+
#: ../core/fields/repeater.php:450
|
982 |
msgid "Table (default)"
|
983 |
msgstr "Tabela (domyślne)"
|
984 |
|
1033 |
msgid "Wysiwyg Editor"
|
1034 |
msgstr "Edytor WYSIWYG"
|
1035 |
|
1036 |
+
#: ../core/fields/wysiwyg.php:75
|
1037 |
msgid "Toolbar"
|
1038 |
msgstr "Pasek narzędzi"
|
1039 |
|
1040 |
+
#: ../core/fields/wysiwyg.php:86
|
1041 |
+
#: ../core/views/meta_box_location.php:47
|
1042 |
+
msgid "Basic"
|
1043 |
+
msgstr "Podstawowe"
|
1044 |
+
|
1045 |
+
#: ../core/fields/wysiwyg.php:94
|
1046 |
msgid "Show Media Upload Buttons?"
|
1047 |
msgstr "Wyświetlić przyciski Wyślij / Wstaw?"
|
1048 |
|
1058 |
msgid "eg. dd/mm/yy. read more about"
|
1059 |
msgstr "np. dd/mm/rr. czytaj więcej"
|
1060 |
|
1061 |
+
#: ../core/views/meta_box_fields.php:47
|
1062 |
+
msgid "Move to trash. Are you sure?"
|
1063 |
+
msgstr "Przenieś do kosza. Jesteś pewny?"
|
1064 |
+
|
1065 |
+
#: ../core/views/meta_box_fields.php:73
|
1066 |
+
msgid "No fields. Click the <strong>+ Add Field</strong> button to create your first field."
|
1067 |
+
msgstr "Brak pól. Kliknij przycisk <strong>+ Dodaj pole</strong> aby utworzyć pierwsze własne pole."
|
1068 |
+
|
1069 |
+
#: ../core/views/meta_box_fields.php:149
|
1070 |
+
msgid "Field Instructions"
|
1071 |
+
msgstr "Instrukcje pola"
|
1072 |
+
|
1073 |
+
#: ../core/views/meta_box_fields.php:150
|
1074 |
+
msgid "Instructions for authors. Shown when submitting data"
|
1075 |
+
msgstr "Instrukcje dla autorów. Będą widoczne w trakcie wpisywania danych"
|
1076 |
+
|
1077 |
+
#: ../core/views/meta_box_fields.php:162
|
1078 |
+
msgid "Required?"
|
1079 |
+
msgstr "Wymagane?"
|
1080 |
+
|
1081 |
+
#: ../core/views/meta_box_fields.php:202
|
1082 |
+
msgid "+ Add Field"
|
1083 |
+
msgstr "+ Dodaj pole"
|
1084 |
+
|
1085 |
+
#: ../core/views/meta_box_location.php:35
|
1086 |
+
msgid "Rules"
|
1087 |
+
msgstr "Warunki"
|
1088 |
+
|
1089 |
+
#: ../core/views/meta_box_location.php:36
|
1090 |
+
msgid "Create a set of rules to determine which edit screens will use these advanced custom fields"
|
1091 |
+
msgstr "Utwórz zestaw warunków, które określą w których miejscach będą wykorzystane określone własne pola"
|
1092 |
+
|
1093 |
+
#: ../core/views/meta_box_location.php:49
|
1094 |
+
msgid "Logged in User Type"
|
1095 |
+
msgstr "Rola zalogowanego użytkownika"
|
1096 |
+
|
1097 |
+
#: ../core/views/meta_box_location.php:51
|
1098 |
+
msgid "Page Specific"
|
1099 |
+
msgstr "Związane ze stronami"
|
1100 |
+
|
1101 |
+
#: ../core/views/meta_box_location.php:52
|
1102 |
+
msgid "Page"
|
1103 |
+
msgstr "Strona"
|
1104 |
+
|
1105 |
+
#: ../core/views/meta_box_location.php:53
|
1106 |
+
msgid "Page Type"
|
1107 |
+
msgstr "Typ strony"
|
1108 |
+
|
1109 |
+
#: ../core/views/meta_box_location.php:54
|
1110 |
+
msgid "Page Parent"
|
1111 |
+
msgstr "Rodzic strony"
|
1112 |
+
|
1113 |
+
#: ../core/views/meta_box_location.php:55
|
1114 |
+
msgid "Page Template"
|
1115 |
+
msgstr "Szablon strony"
|
1116 |
+
|
1117 |
+
#: ../core/views/meta_box_location.php:57
|
1118 |
+
msgid "Post Specific"
|
1119 |
+
msgstr "Związane z typem wpisu"
|
1120 |
+
|
1121 |
+
#: ../core/views/meta_box_location.php:58
|
1122 |
+
msgid "Post"
|
1123 |
+
msgstr "Wpis"
|
1124 |
+
|
1125 |
+
#: ../core/views/meta_box_location.php:59
|
1126 |
+
msgid "Post Category"
|
1127 |
+
msgstr "Kategoria wpisu"
|
1128 |
+
|
1129 |
+
#: ../core/views/meta_box_location.php:60
|
1130 |
+
msgid "Post Format"
|
1131 |
+
msgstr "Format wpisu"
|
1132 |
+
|
1133 |
+
#: ../core/views/meta_box_location.php:61
|
1134 |
+
msgid "Post Taxonomy"
|
1135 |
+
msgstr "Taksonomia wpisu"
|
1136 |
+
|
1137 |
+
#: ../core/views/meta_box_location.php:63
|
1138 |
+
msgid "Other"
|
1139 |
+
msgstr "Pozostałe"
|
1140 |
+
|
1141 |
+
#: ../core/views/meta_box_location.php:64
|
1142 |
+
msgid "Taxonomy (Add / Edit)"
|
1143 |
+
msgstr "Taksonomia (Dodaj / Edytuj)"
|
1144 |
+
|
1145 |
+
#: ../core/views/meta_box_location.php:65
|
1146 |
+
msgid "User (Add / Edit)"
|
1147 |
+
msgstr "Użytkownik (Dodaj / Edytuj)"
|
1148 |
+
|
1149 |
+
#: ../core/views/meta_box_location.php:66
|
1150 |
+
msgid "Media (Edit)"
|
1151 |
+
msgstr "Medium (Edytuj)"
|
1152 |
+
|
1153 |
+
#: ../core/views/meta_box_location.php:96
|
1154 |
+
msgid "is equal to"
|
1155 |
+
msgstr "jest równe"
|
1156 |
+
|
1157 |
+
#: ../core/views/meta_box_location.php:97
|
1158 |
+
msgid "is not equal to"
|
1159 |
+
msgstr "jest inne niż"
|
1160 |
+
|
1161 |
+
#: ../core/views/meta_box_location.php:121
|
1162 |
+
msgid "match"
|
1163 |
+
msgstr "pasuje"
|
1164 |
+
|
1165 |
+
#: ../core/views/meta_box_location.php:127
|
1166 |
+
msgid "all"
|
1167 |
+
msgstr "wszystkie"
|
1168 |
+
|
1169 |
+
#: ../core/views/meta_box_location.php:128
|
1170 |
+
msgid "any"
|
1171 |
+
msgstr "którykolwiek"
|
1172 |
+
|
1173 |
+
#: ../core/views/meta_box_location.php:131
|
1174 |
+
msgid "of the above"
|
1175 |
+
msgstr "do pozostałych"
|
1176 |
+
|
1177 |
+
#: ../core/views/meta_box_location.php:144
|
1178 |
+
msgid "Unlock options add-on with an activation code"
|
1179 |
+
msgstr "Odblokuj dodatkowe opcje z kodem aktywacyjnym"
|
1180 |
+
|
1181 |
+
#: ../core/views/meta_box_options.php:23
|
1182 |
+
msgid "Order No."
|
1183 |
+
msgstr "Nr w kolejności"
|
1184 |
+
|
1185 |
+
#: ../core/views/meta_box_options.php:24
|
1186 |
+
msgid "Field groups are created in order <br />from lowest to highest."
|
1187 |
+
msgstr "Grupy pól są tworzone w kolejności <br />od najniższej do najwyższej."
|
1188 |
+
|
1189 |
+
#: ../core/views/meta_box_options.php:40
|
1190 |
+
msgid "Position"
|
1191 |
+
msgstr "Pozycja"
|
1192 |
+
|
1193 |
+
#: ../core/views/meta_box_options.php:50
|
1194 |
+
msgid "Normal"
|
1195 |
+
msgstr "Normalna"
|
1196 |
+
|
1197 |
+
#: ../core/views/meta_box_options.php:51
|
1198 |
+
msgid "Side"
|
1199 |
+
msgstr "Boczna"
|
1200 |
+
|
1201 |
+
#: ../core/views/meta_box_options.php:60
|
1202 |
+
msgid "Style"
|
1203 |
+
msgstr "Styl"
|
1204 |
+
|
1205 |
+
#: ../core/views/meta_box_options.php:70
|
1206 |
+
msgid "Standard Metabox"
|
1207 |
+
msgstr "Standardowy metabox"
|
1208 |
+
|
1209 |
+
#: ../core/views/meta_box_options.php:71
|
1210 |
+
msgid "No Metabox"
|
1211 |
+
msgstr "Bez metabox"
|
1212 |
+
|
1213 |
+
#: ../core/views/meta_box_options.php:80
|
1214 |
+
msgid "Hide on screen"
|
1215 |
+
msgstr "Ukryj na ekranie edycji"
|
1216 |
+
|
1217 |
+
#: ../core/views/meta_box_options.php:81
|
1218 |
+
msgid "<b>Select</b> items to <b>hide</b> them from the edit screen"
|
1219 |
+
msgstr "<b>Wybierz</b> elementy, które chcesz <b>ukryć</b> na stronie edycji."
|
1220 |
+
|
1221 |
+
#: ../core/views/meta_box_options.php:82
|
1222 |
+
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)"
|
1223 |
+
msgstr "Jeśli na stronie edycji znajduje się kilka grup pól, zostaną zastosowane ustawienia z pierwszej z nich. (pierwsza grupa pól to ta, która ma najmniejszy numer w kolejności)"
|
1224 |
+
|
1225 |
+
#: ../core/views/meta_box_options.php:92
|
1226 |
+
msgid "Content Editor"
|
1227 |
+
msgstr "Edytor treści"
|
1228 |
+
|
1229 |
+
#: ../core/views/meta_box_options.php:93
|
1230 |
+
msgid "Excerpt"
|
1231 |
+
msgstr "Wypis"
|
1232 |
+
|
1233 |
+
#: ../core/views/meta_box_options.php:95
|
1234 |
+
msgid "Discussion"
|
1235 |
+
msgstr "Dyskusja"
|
1236 |
+
|
1237 |
+
#: ../core/views/meta_box_options.php:96
|
1238 |
+
msgid "Comments"
|
1239 |
+
msgstr "Komentarze"
|
1240 |
+
|
1241 |
+
#: ../core/views/meta_box_options.php:97
|
1242 |
+
msgid "Slug"
|
1243 |
+
msgstr "Bezpośredni odnośnik"
|
1244 |
+
|
1245 |
+
#: ../core/views/meta_box_options.php:98
|
1246 |
+
msgid "Author"
|
1247 |
+
msgstr "Autor"
|
1248 |
+
|
1249 |
+
#: ../core/views/meta_box_options.php:99
|
1250 |
+
msgid "Format"
|
1251 |
+
msgstr "Format"
|
1252 |
+
|
1253 |
+
#: ../core/views/meta_box_options.php:100
|
1254 |
+
msgid "Featured Image"
|
1255 |
+
msgstr "Ikona wpisu"
|
1256 |
+
|
1257 |
+
#~ msgid "Everything Fields deactivated"
|
1258 |
+
#~ msgstr "Pola do wszystkiego zostały deaktywowane"
|
1259 |
+
|
1260 |
+
#~ msgid "Everything Fields activated"
|
1261 |
+
#~ msgstr "Pola do wszystkiego zostały aktywowane"
|
1262 |
+
|
1263 |
+
#~ msgid "Row Limit"
|
1264 |
+
#~ msgstr "Limit rzędów"
|
1265 |
+
|
1266 |
+
#~ msgid "required"
|
1267 |
+
#~ msgstr "wymagane"
|
1268 |
+
|
1269 |
+
#~ msgid "Show on page"
|
1270 |
+
#~ msgstr "Wyświetl na stronie"
|
1271 |
+
|
1272 |
+
#~ msgid "Advanced Custom Fields v"
|
1273 |
+
#~ msgstr "Zaawansowane własne pola v"
|
1274 |
+
|
1275 |
+
#~ msgid ""
|
1276 |
+
#~ "Watch tutorials, read documentation, learn the API code and find some "
|
1277 |
+
#~ "tips & tricks for your next web project."
|
1278 |
+
#~ msgstr ""
|
1279 |
+
#~ "Obejrzyj tutorial, przeczytaj dokumentację, naucz się API i poznaj parę "
|
1280 |
+
#~ "tricków do przydatnych w Twoim kolejnym projekcie."
|
1281 |
+
|
1282 |
+
#~ msgid "View the plugins website"
|
1283 |
+
#~ msgstr "Odwiedź witrynę wtyczki"
|
1284 |
+
|
1285 |
+
#~ msgid "Support"
|
1286 |
+
#~ msgstr "Pomoc"
|
1287 |
+
|
1288 |
+
#~ msgid ""
|
1289 |
+
#~ "Join the growing community over at the support forum to share ideas, "
|
1290 |
+
#~ "report bugs and keep up to date with ACF"
|
1291 |
+
#~ msgstr ""
|
1292 |
+
#~ "Dołącz do rosnącej społeczności użytkowników i forum pomocy, aby dzielić "
|
1293 |
+
#~ "się pomysłami, zgłąszać błedy i być na bierząco z tą wtyczką."
|
1294 |
+
|
1295 |
+
#~ msgid "View the Support Forum"
|
1296 |
+
#~ msgstr "Zobacz forum pomocy"
|
1297 |
+
|
1298 |
+
#~ msgid "Developed by"
|
1299 |
+
#~ msgstr "Opracowana przez"
|
1300 |
+
|
1301 |
+
#~ msgid "Vote for ACF"
|
1302 |
+
#~ msgstr "Głosuj na tę wtyczkę"
|
1303 |
+
|
1304 |
+
#~ msgid "Twitter"
|
1305 |
+
#~ msgstr "Twitter"
|
1306 |
+
|
1307 |
+
#~ msgid "Blog"
|
1308 |
+
#~ msgstr "Blog"
|
1309 |
+
|
1310 |
+
#~ msgid "Unlock Special Fields."
|
1311 |
+
#~ msgstr "Odblokuj pola specjalne"
|
1312 |
+
|
1313 |
+
#~ msgid ""
|
1314 |
+
#~ "Special Fields can be unlocked by purchasing an activation code. Each "
|
1315 |
+
#~ "activation code can be used on multiple sites."
|
1316 |
+
#~ msgstr ""
|
1317 |
+
#~ "Pola specjalne można odblokować kupując kod aktywacyjny. Każdy kod "
|
1318 |
+
#~ "aktywacyjny może być wykorzystywany wielokrotnie."
|
1319 |
+
|
1320 |
+
#~ msgid "Visit the Plugin Store"
|
1321 |
+
#~ msgstr "Odwiedź sklep wtyczki"
|
1322 |
+
|
1323 |
+
#~ msgid "Unlock Fields"
|
1324 |
+
#~ msgstr "Odblokuj pola"
|
1325 |
+
|
1326 |
+
#~ msgid "Import"
|
1327 |
+
#~ msgstr "Import"
|
1328 |
+
|
1329 |
+
#~ msgid "Have an ACF export file? Import it here."
|
1330 |
+
#~ msgstr "Wyeksportowałeś plik z polami? Możesz go zaimportować tutaj."
|
1331 |
+
|
1332 |
+
#~ msgid ""
|
1333 |
+
#~ "Want to create an ACF export file? Just select the desired ACF's and hit "
|
1334 |
+
#~ "Export"
|
1335 |
+
#~ msgstr ""
|
1336 |
+
#~ "Chcesz stworzyć i wyeksportować plik z polami? Wybierz pola i kliknij "
|
1337 |
+
#~ "Eksport"
|
1338 |
+
|
1339 |
+
#~ msgid "Import / Export"
|
1340 |
+
#~ msgstr "Import / Eksport"
|
1341 |
+
|
1342 |
+
#~ msgid ""
|
1343 |
+
#~ "No fields. Click the \"+ Add Field button\" to create your first field."
|
1344 |
+
#~ msgstr ""
|
1345 |
+
#~ "Brak pól. Kliknij przycisk \"+ Dodaj pole\" aby utworzyć pierwsze własne "
|
1346 |
+
#~ "pole."
|
1347 |
+
|
1348 |
+
#~ msgid ""
|
1349 |
+
#~ "Special Fields can be unlocked by purchasing a license key. Each key can "
|
1350 |
+
#~ "be used on multiple sites."
|
1351 |
+
#~ msgstr ""
|
1352 |
+
#~ "Pola specjalne można odblokować kupując kod aktywacyjny. Każdy kod "
|
1353 |
+
#~ "aktywacyjny może być wykorzystywany wielokrotnie."
|
1354 |
+
|
1355 |
+
#~ msgid "Select which ACF groups to export"
|
1356 |
+
#~ msgstr "Wybierz, które grupy chcesz wyeksportować"
|
1357 |
+
|
1358 |
+
#~ msgid ""
|
1359 |
+
#~ "Have an ACF export file? Import it here. Please note that v2 and v3 .xml "
|
1360 |
+
#~ "files are not compatible."
|
1361 |
+
#~ msgstr ""
|
1362 |
+
#~ "Wyeksportowałeś plik z polami? Zaimportuj go tutaj. Zwróć uwagę, że "
|
1363 |
+
#~ "wersje 2 i 3 plików .xml nie są ze sobą kompatybilne."
|
1364 |
+
|
1365 |
+
#~ msgid "Import your .xml file"
|
1366 |
+
#~ msgstr "Zaimportuj plik .xml"
|
1367 |
+
|
1368 |
+
#~ msgid "Display your field group with or without a box"
|
1369 |
+
#~ msgstr "Wyświetl grupę pól w ramce lub bez niej"
|
1370 |
+
|
1371 |
+
#~ msgid "Settings saved"
|
1372 |
+
#~ msgstr "Ustawienia zostały zapisane"
|
1373 |
+
|
1374 |
+
#~ msgid "Save"
|
1375 |
+
#~ msgstr "Zapisz"
|
1376 |
+
|
1377 |
+
#~ msgid "No Options"
|
1378 |
+
#~ msgstr "Brak opcji"
|
1379 |
+
|
1380 |
+
#~ msgid "Sorry, it seems there are no fields for this options page."
|
1381 |
+
#~ msgstr "Przykro mi, ale ta strona opcji nie zawiera pól."
|
1382 |
+
|
1383 |
#~ msgid ""
|
1384 |
#~ "Enter your choices one per line<br />\n"
|
1385 |
#~ "\t\t\t\t<br />\n"
|
1404 |
#~ msgid "or"
|
1405 |
#~ msgstr "lub"
|
1406 |
|
|
|
|
|
|
|
1407 |
#~ msgid "continue editing ACF"
|
1408 |
#~ msgstr "kontynuuj edycję"
|
1409 |
|
readme.txt
CHANGED
@@ -85,6 +85,12 @@ http://www.advancedcustomfields.com/support/
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 3.3.0 =
|
89 |
* [Fixed] Gallery not returning correct order
|
90 |
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
= 3.3.1 =
|
89 |
+
* [Fixed] Fix gallery sortable in repeater - http://support.advancedcustomfields.com/discussion/2463/gallery-within-a-repeater-image-reorder-not-working
|
90 |
+
* [Fixed] Test / Fix two gallery fields - http://support.advancedcustomfields.com/discussion/2467/gallery-two-gallery-fieldss
|
91 |
+
* [Fixed] Fix tinymce undefined visual editor off - http://support.advancedcustomfields.com/discussion/2465/solved-admin-conflicts-after-upgrade
|
92 |
+
* [Updated] Update Polish translation - Thanks to www.digitalfactory.pl
|
93 |
+
|
94 |
= 3.3.0 =
|
95 |
* [Fixed] Gallery not returning correct order
|
96 |
|