Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | WordPress Page Builder – Beaver Builder |
Version | 1.6.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.6.2 to 1.6.2.1
- changelog.txt +15 -0
- classes/class-fl-builder-model.php +1 -8
- classes/class-fl-builder.php +2 -0
- fl-builder.php +2 -2
- includes/updater-config.php +1 -1
- languages/pl_PL.mo +0 -0
- languages/pl_PL.po +1094 -730
- readme.txt +1 -1
changelog.txt
CHANGED
@@ -1,3 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h4>1.6.2 - 08/16/2015</h4>
|
2 |
<p><strong>Enhancements</strong></p>
|
3 |
<ul>
|
1 |
+
<h4>1.6.2.1 - 08/25/2015</h4>
|
2 |
+
<p><strong>Enhancements</strong></p>
|
3 |
+
<ul>
|
4 |
+
<li>Replaced image arrows with SVG arrows in the Content Slider module.</li>
|
5 |
+
<li>Added a setting to the Post Slider module for selecting the thumbnail size.</li>
|
6 |
+
</ul>
|
7 |
+
<p><strong>Bug Fixes</strong></p>
|
8 |
+
<ul>
|
9 |
+
<li>Fixed a rendering issue with widgets that output styles in wp_enqueue_script.</li>
|
10 |
+
<li>Fixed an issue with the edit_url method so all urls get set_url_scheme.</li>
|
11 |
+
<li>Fixed styling issues with the Menu module.</li>
|
12 |
+
<li>Fixed styling issues with the Posts module.</li>
|
13 |
+
<li>Fixed broken arrows in the Posts Slider module.</li>
|
14 |
+
</ul>
|
15 |
+
|
16 |
<h4>1.6.2 - 08/16/2015</h4>
|
17 |
<p><strong>Enhancements</strong></p>
|
18 |
<ul>
|
classes/class-fl-builder-model.php
CHANGED
@@ -155,14 +155,7 @@ final class FLBuilderModel {
|
|
155 |
$post = get_post( $post_id );
|
156 |
}
|
157 |
|
158 |
-
|
159 |
-
|
160 |
-
if ( 'draft' == $post->post_status ) {
|
161 |
-
return set_url_scheme( $url );
|
162 |
-
}
|
163 |
-
else {
|
164 |
-
return $url;
|
165 |
-
}
|
166 |
}
|
167 |
|
168 |
/**
|
155 |
$post = get_post( $post_id );
|
156 |
}
|
157 |
|
158 |
+
return set_url_scheme( add_query_arg( 'fl_builder', '', get_permalink( $post->ID ) ) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
}
|
160 |
|
161 |
/**
|
classes/class-fl-builder.php
CHANGED
@@ -580,7 +580,9 @@ final class FLBuilder {
|
|
580 |
|
581 |
// Do the wp_enqueue_scripts action here to register any scripts or
|
582 |
// styles that might need to be registered for shortcodes or widgets.
|
|
|
583 |
do_action( 'wp_enqueue_scripts' );
|
|
|
584 |
|
585 |
// Dequeue scripts and styles so we can capture only those
|
586 |
// enqueued by shortcodes or widgets.
|
580 |
|
581 |
// Do the wp_enqueue_scripts action here to register any scripts or
|
582 |
// styles that might need to be registered for shortcodes or widgets.
|
583 |
+
ob_start();
|
584 |
do_action( 'wp_enqueue_scripts' );
|
585 |
+
ob_end_clean();
|
586 |
|
587 |
// Dequeue scripts and styles so we can capture only those
|
588 |
// enqueued by shortcodes or widgets.
|
fl-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
-
* Version: 1.6.2
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
@@ -11,7 +11,7 @@
|
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
-
define('FL_BUILDER_VERSION', '1.6.2');
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
3 |
* Plugin Name: Beaver Builder Plugin (Lite Version)
|
4 |
* Plugin URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
5 |
* Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
|
6 |
+
* Version: 1.6.2.1
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: https://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=builder&utm_campaign=plugins-page
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
+
define('FL_BUILDER_VERSION', '1.6.2.1');
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
includes/updater-config.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
-
'version' => '1.6.2',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
3 |
if(class_exists('FLUpdater')) {
|
4 |
FLUpdater::add_product(array(
|
5 |
'name' => 'Beaver Builder Plugin (Lite Version)',
|
6 |
+
'version' => '1.6.2.1',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
languages/pl_PL.mo
CHANGED
Binary file
|
languages/pl_PL.po
CHANGED
@@ -2,9 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-08-
|
|
|
7 |
"Language-Team: \n"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -17,8 +19,6 @@ msgstr ""
|
|
17 |
"_nx_noop:4c,1,2\n"
|
18 |
"X-Poedit-Basepath: ..\n"
|
19 |
"X-Textdomain-Support: yes\n"
|
20 |
-
"Last-Translator: \n"
|
21 |
-
"Language: pl_PL\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
# @ fl-builder
|
@@ -65,6 +65,8 @@ msgstr "Rodzje wpisu"
|
|
65 |
# @ fl-builder
|
66 |
#: classes/class-fl-builder-admin-settings.php:167
|
67 |
#: modules/icon-group/icon-group.php:27
|
|
|
|
|
68 |
msgid "Icons"
|
69 |
msgstr "Ikony"
|
70 |
|
@@ -159,12 +161,12 @@ msgstr "Aktualizuj"
|
|
159 |
|
160 |
# @ fl-builder
|
161 |
#: classes/class-fl-builder-admin.php:253
|
162 |
-
#: classes/class-fl-builder-model.php:
|
163 |
msgid "Page Builder"
|
164 |
msgstr "Kreator Stron"
|
165 |
|
166 |
# @ fl-builder
|
167 |
-
#: classes/class-fl-builder-model.php:
|
168 |
#, php-format
|
169 |
msgctxt "%s stands for the module filename"
|
170 |
msgid ""
|
@@ -175,22 +177,23 @@ msgstr ""
|
|
175 |
"aby zapewnić kompatybilność z Beaver Buiderem."
|
176 |
|
177 |
# @ fl-builder
|
178 |
-
#: classes/class-fl-builder-model.php:
|
179 |
-
#: classes/class-fl-builder-model.php:
|
180 |
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
181 |
#: modules/separator/separator.php:16 modules/video/video.php:21
|
182 |
msgid "Basic Modules"
|
183 |
msgstr "Moduły Podstawowe"
|
184 |
|
185 |
# @ fl-builder
|
186 |
-
#: classes/class-fl-builder-model.php:
|
187 |
-
#: classes/class-fl-builder-model.php:
|
188 |
#: modules/button/button.php:16 modules/callout/callout.php:16
|
189 |
#: modules/contact-form/contact-form.php:16
|
190 |
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
191 |
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
192 |
#: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
|
193 |
-
#: modules/map/map.php:16 modules/post-
|
|
|
194 |
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
195 |
#: modules/slideshow/slideshow.php:16
|
196 |
#: modules/social-buttons/social-buttons.php:16
|
@@ -201,38 +204,38 @@ msgid "Advanced Modules"
|
|
201 |
msgstr "Moduły Zaawansowane"
|
202 |
|
203 |
# @ fl-builder
|
204 |
-
#: classes/class-fl-builder-model.php:
|
205 |
-
#: classes/class-fl-builder-model.php:
|
206 |
msgid "Other Modules"
|
207 |
msgstr "Pozostałe Moduły"
|
208 |
|
209 |
# @ fl-builder
|
210 |
-
#: classes/class-fl-builder-model.php:
|
211 |
-
#: classes/class-fl-builder-model.php:
|
212 |
#: includes/admin-settings-modules.php:32 includes/ui.php:99
|
213 |
#: modules/widget/widget.php:16
|
214 |
msgid "WordPress Widgets"
|
215 |
msgstr "Widgety Wordpressa"
|
216 |
|
217 |
# @ fl-builder
|
218 |
-
#: classes/class-fl-builder-model.php:
|
219 |
#, php-format
|
220 |
msgctxt "%s stands for post/page title."
|
221 |
msgid "Copy of %s"
|
222 |
msgstr "Kopia %s"
|
223 |
|
224 |
-
#: classes/class-fl-builder-model.php:
|
225 |
msgctxt "Default user template category."
|
226 |
msgid "Uncategorized"
|
227 |
msgstr "Bez kategorii"
|
228 |
|
229 |
# @ fl-builder
|
230 |
-
#: classes/class-fl-builder-model.php:
|
231 |
msgid "Home Pages"
|
232 |
msgstr "Szablony stron głównych"
|
233 |
|
234 |
# @ fl-builder
|
235 |
-
#: classes/class-fl-builder-model.php:
|
236 |
msgid "Content Pages"
|
237 |
msgstr "Szablony podstron"
|
238 |
|
@@ -260,28 +263,56 @@ msgctxt "Image size."
|
|
260 |
msgid "Thumbnail"
|
261 |
msgstr "Miniatura"
|
262 |
|
263 |
-
#: classes/class-fl-builder-service-
|
264 |
-
msgid "Error: You must provide an
|
265 |
-
msgstr "Błąd:
|
266 |
|
267 |
-
#: classes/class-fl-builder-service-
|
268 |
-
|
269 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
|
271 |
-
#: classes/class-fl-builder-service-
|
272 |
-
msgid "
|
273 |
-
msgstr "
|
274 |
|
275 |
-
#: classes/class-fl-builder-service-
|
276 |
-
|
|
|
|
|
|
|
277 |
msgid ""
|
278 |
-
"
|
279 |
-
"
|
280 |
msgstr ""
|
281 |
-
"
|
282 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
|
284 |
# @ fl-builder
|
|
|
285 |
#: classes/class-fl-builder-service-aweber.php:182
|
286 |
#: classes/class-fl-builder-service-campaign-monitor.php:148
|
287 |
#: classes/class-fl-builder-service-campaign-monitor.php:199
|
@@ -290,14 +321,15 @@ msgstr ""
|
|
290 |
#: classes/class-fl-builder-service-icontact.php:207
|
291 |
#: classes/class-fl-builder-service-infusionsoft.php:204
|
292 |
#: classes/class-fl-builder-service-madmimi.php:178
|
293 |
-
#: classes/class-fl-builder-service-mailchimp.php:
|
294 |
#: classes/class-fl-builder-service-mailpoet.php:92
|
295 |
#: classes/class-fl-builder-service-sendinblue.php:161
|
296 |
-
#: classes/class-fl-builder-services.php:
|
297 |
#: modules/woocommerce/woocommerce.php:60
|
298 |
msgid "Choose..."
|
299 |
msgstr "Wybierz..."
|
300 |
|
|
|
301 |
#: classes/class-fl-builder-service-aweber.php:192
|
302 |
#: classes/class-fl-builder-service-campaign-monitor.php:209
|
303 |
#: classes/class-fl-builder-service-constant-contact.php:166
|
@@ -305,13 +337,46 @@ msgstr "Wybierz..."
|
|
305 |
#: classes/class-fl-builder-service-icontact.php:217
|
306 |
#: classes/class-fl-builder-service-infusionsoft.php:214
|
307 |
#: classes/class-fl-builder-service-madmimi.php:188
|
308 |
-
#: classes/class-fl-builder-service-mailchimp.php:
|
309 |
#: classes/class-fl-builder-service-mailpoet.php:102
|
310 |
#: classes/class-fl-builder-service-sendinblue.php:171
|
311 |
msgctxt "An email list from a third party provider."
|
312 |
msgid "List"
|
313 |
msgstr "Lista"
|
314 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
#: classes/class-fl-builder-service-aweber.php:219
|
316 |
msgid ""
|
317 |
"There was an error subscribing to AWeber. The account is no longer connected."
|
@@ -328,16 +393,6 @@ msgstr "Wystąpił błąd podczas łączenia się z AWeberem. Spróbuj ponownie.
|
|
328 |
msgid "There was an error subscribing to AWeber. %s"
|
329 |
msgstr "Wystąpił błąd podczas rejestracji w serwisie AWeber. %s"
|
330 |
|
331 |
-
#: classes/class-fl-builder-service-campaign-monitor.php:55
|
332 |
-
#: classes/class-fl-builder-service-constant-contact.php:48
|
333 |
-
#: classes/class-fl-builder-service-getresponse.php:67
|
334 |
-
#: classes/class-fl-builder-service-hatchbuck.php:48
|
335 |
-
#: classes/class-fl-builder-service-infusionsoft.php:79
|
336 |
-
#: classes/class-fl-builder-service-madmimi.php:73
|
337 |
-
#: classes/class-fl-builder-service-mailchimp.php:67
|
338 |
-
msgid "Error: You must provide an API key."
|
339 |
-
msgstr "Błąd: Musisz podać klucz API."
|
340 |
-
|
341 |
#: classes/class-fl-builder-service-campaign-monitor.php:67
|
342 |
#: classes/class-fl-builder-service-campaign-monitor.php:129
|
343 |
#: classes/class-fl-builder-service-getresponse.php:76
|
@@ -346,16 +401,6 @@ msgstr "Błąd: Musisz podać klucz API."
|
|
346 |
msgid "Error: Please check your API key."
|
347 |
msgstr "Błąd: Sprawdź klucz API."
|
348 |
|
349 |
-
#: classes/class-fl-builder-service-campaign-monitor.php:88
|
350 |
-
#: classes/class-fl-builder-service-constant-contact.php:88
|
351 |
-
#: classes/class-fl-builder-service-getresponse.php:100
|
352 |
-
#: classes/class-fl-builder-service-hatchbuck.php:87
|
353 |
-
#: classes/class-fl-builder-service-infusionsoft.php:129
|
354 |
-
#: classes/class-fl-builder-service-madmimi.php:121
|
355 |
-
#: classes/class-fl-builder-service-mailchimp.php:100
|
356 |
-
msgid "API Key"
|
357 |
-
msgstr "Klucz API"
|
358 |
-
|
359 |
#: classes/class-fl-builder-service-campaign-monitor.php:89
|
360 |
msgid ""
|
361 |
"Your API key can be found in your Campaign Monitor account under Account "
|
@@ -427,6 +472,42 @@ msgstr ""
|
|
427 |
"Wystąpił błąd połączenia z Constant Contact. To konto nie jest już "
|
428 |
"połączone. %s"
|
429 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
430 |
#: classes/class-fl-builder-service-getresponse.php:101
|
431 |
msgid ""
|
432 |
"Your API key can be found in your GetResponse account under My Account > "
|
@@ -582,19 +663,10 @@ msgstr ""
|
|
582 |
msgid "There was an error subscribing to Infusionsoft. %s"
|
583 |
msgstr "Wystąpił błąd podczas łączenia się z Infusionsoft. %s"
|
584 |
|
585 |
-
#: classes/class-fl-builder-service-madmimi.php:69
|
586 |
-
msgid "Error: You must provide an email address."
|
587 |
-
msgstr "Błąd: Musisz podać adres e-mail."
|
588 |
-
|
589 |
#: classes/class-fl-builder-service-madmimi.php:83
|
590 |
msgid "Unable to connect to Mad Mimi. Please check your credentials."
|
591 |
msgstr "Nie udało się połaczyć z MadMini. Sprawdź swoje dane."
|
592 |
|
593 |
-
#: classes/class-fl-builder-service-madmimi.php:110
|
594 |
-
#: modules/subscribe-form/includes/frontend.php:11
|
595 |
-
msgid "Email Address"
|
596 |
-
msgstr "Adres e-mail"
|
597 |
-
|
598 |
#: classes/class-fl-builder-service-madmimi.php:111
|
599 |
msgid "The email address associated with your Mad Mimi account."
|
600 |
msgstr "Adres email powiązany z twoim kontem Mad Mimi."
|
@@ -626,14 +698,23 @@ msgstr ""
|
|
626 |
"Twój API key znajdziesz na swoim koncie MailChimp w sekcji ccount > Extras > "
|
627 |
"API keys."
|
628 |
|
629 |
-
#: classes/class-fl-builder-service-mailchimp.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
msgid ""
|
631 |
"There was an error subscribing to MailChimp. The account is no longer "
|
632 |
"connected."
|
633 |
msgstr ""
|
634 |
"Wystąpił błąd podczas łączenia się z MailChimp. Konto nie jest już połączone."
|
635 |
|
636 |
-
#: classes/class-fl-builder-service-mailchimp.php:
|
637 |
#, php-format
|
638 |
msgid "There was an error subscribing to MailChimp. %s"
|
639 |
msgstr "Wystąpił błąd podczas łączenia się z Infusionsoft. %s"
|
@@ -688,46 +769,46 @@ msgstr "Wystąpił błąd podczas łączenia się z SendinBlue. Spróbuj ponowni
|
|
688 |
msgid "Error: Could not subscribe to SendinBlue. %s"
|
689 |
msgstr "Błąd: Nie udało się połaczyć z SendinBlue. %s"
|
690 |
|
691 |
-
#: classes/class-fl-builder-services.php:
|
692 |
msgctxt "Third party service such as MailChimp."
|
693 |
msgid "Error: Missing service type."
|
694 |
msgstr "Błąd: Brakujący typ usługi."
|
695 |
|
696 |
-
#: classes/class-fl-builder-services.php:
|
697 |
msgctxt "Connection data such as an API key."
|
698 |
msgid "Error: Missing service data."
|
699 |
msgstr "Błąd: Brakujące informacje o usłudze."
|
700 |
|
701 |
-
#: classes/class-fl-builder-services.php:
|
702 |
msgctxt "Account name for a third party service such as MailChimp."
|
703 |
msgid "Error: Missing account name."
|
704 |
msgstr "Błąd: Brakująca nazwa konta"
|
705 |
|
706 |
-
#: classes/class-fl-builder-services.php:
|
707 |
msgctxt "Account name for a third party service such as MailChimp."
|
708 |
msgid "Error: An account with that name already exists."
|
709 |
msgstr "Błąd: Konto o takiej nazwie już istnieje."
|
710 |
|
711 |
-
#: classes/class-fl-builder-services.php:
|
712 |
msgid "Account Name"
|
713 |
msgstr "Nazwa konta"
|
714 |
|
715 |
-
#: classes/class-fl-builder-services.php:
|
716 |
msgid ""
|
717 |
"Used to identify this connection within the accounts list and can be "
|
718 |
"anything you like."
|
719 |
msgstr ""
|
720 |
"Nazwa konta pojawi się na liście połączeń. Możesz wpisać cokolwiek chcesz."
|
721 |
|
722 |
-
#: classes/class-fl-builder-services.php:
|
723 |
msgid "Connect"
|
724 |
msgstr "Połącz"
|
725 |
|
726 |
-
#: classes/class-fl-builder-services.php:
|
727 |
msgid "Add Account..."
|
728 |
msgstr "Dodaj konto..."
|
729 |
|
730 |
-
#: classes/class-fl-builder-services.php:
|
731 |
msgid "Account"
|
732 |
msgstr "Konto"
|
733 |
|
@@ -744,125 +825,125 @@ msgid "Error! A site with that ID doesn't exist."
|
|
744 |
msgstr "Błąd! Strona o takim numerze ID nie istnieje."
|
745 |
|
746 |
# @ fl-builder
|
747 |
-
#: classes/class-fl-builder.php:
|
748 |
#, php-format
|
749 |
msgctxt "Field name to add."
|
750 |
msgid "Add %s"
|
751 |
msgstr "Dodaj %s"
|
752 |
|
753 |
-
#: classes/class-fl-builder.php:
|
754 |
msgctxt "Custom post type label."
|
755 |
msgid "Templates"
|
756 |
msgstr "Szablony"
|
757 |
|
758 |
-
#: classes/class-fl-builder.php:
|
759 |
msgctxt "Custom post type label."
|
760 |
msgid "Template"
|
761 |
msgstr "Szablon"
|
762 |
|
763 |
# @ fl-builder
|
764 |
-
#: classes/class-fl-builder.php:
|
765 |
msgctxt "Custom post type label."
|
766 |
msgid "Add New"
|
767 |
msgstr "Dodaj nowy"
|
768 |
|
769 |
-
#: classes/class-fl-builder.php:
|
770 |
msgctxt "Custom post type label."
|
771 |
msgid "Add New Template"
|
772 |
msgstr "Dodaj nowy szablon"
|
773 |
|
774 |
-
#: classes/class-fl-builder.php:
|
775 |
msgctxt "Custom post type label."
|
776 |
msgid "New Template"
|
777 |
msgstr "Noszy szablon"
|
778 |
|
779 |
-
#: classes/class-fl-builder.php:
|
780 |
msgctxt "Custom post type label."
|
781 |
msgid "Edit Template"
|
782 |
msgstr "Edytuj szablon"
|
783 |
|
784 |
-
#: classes/class-fl-builder.php:
|
785 |
msgctxt "Custom post type label."
|
786 |
msgid "View Template"
|
787 |
msgstr "Podejrzyj szablon"
|
788 |
|
789 |
-
#: classes/class-fl-builder.php:
|
790 |
msgctxt "Custom post type label."
|
791 |
msgid "All Templates"
|
792 |
msgstr "Wszystkie szablony"
|
793 |
|
794 |
-
#: classes/class-fl-builder.php:
|
795 |
msgctxt "Custom post type label."
|
796 |
msgid "Search Templates"
|
797 |
msgstr "Szukaj szablonów"
|
798 |
|
799 |
-
#: classes/class-fl-builder.php:
|
800 |
msgctxt "Custom post type label."
|
801 |
msgid "Parent Templates:"
|
802 |
msgstr "Nadrzędne szablony:"
|
803 |
|
804 |
-
#: classes/class-fl-builder.php:
|
805 |
msgctxt "Custom post type label."
|
806 |
msgid "No templates found."
|
807 |
msgstr "Nie znaleziono szablonów."
|
808 |
|
809 |
-
#: classes/class-fl-builder.php:
|
810 |
msgctxt "Custom post type label."
|
811 |
msgid "No templates found in Trash."
|
812 |
msgstr "Brak szablonów w koszu"
|
813 |
|
814 |
-
#: classes/class-fl-builder.php:
|
815 |
msgctxt "Custom taxonomy label."
|
816 |
msgid "Categories"
|
817 |
msgstr "Kategorie"
|
818 |
|
819 |
-
#: classes/class-fl-builder.php:
|
820 |
msgctxt "Custom taxonomy label."
|
821 |
msgid "Category"
|
822 |
msgstr "Ktegoria"
|
823 |
|
824 |
-
#: classes/class-fl-builder.php:
|
825 |
msgctxt "Custom taxonomy label."
|
826 |
msgid "Search Categories"
|
827 |
msgstr "Szukaj kategorii"
|
828 |
|
829 |
-
#: classes/class-fl-builder.php:
|
830 |
msgctxt "Custom taxonomy label."
|
831 |
msgid "All Categories"
|
832 |
msgstr "Wszystkie kategorie"
|
833 |
|
834 |
-
#: classes/class-fl-builder.php:
|
835 |
msgctxt "Custom taxonomy label."
|
836 |
msgid "Parent Category"
|
837 |
msgstr "Nadrzędna kategoria"
|
838 |
|
839 |
-
#: classes/class-fl-builder.php:
|
840 |
msgctxt "Custom taxonomy label."
|
841 |
msgid "Parent Category:"
|
842 |
msgstr "Nadrzędna kategoria:"
|
843 |
|
844 |
-
#: classes/class-fl-builder.php:
|
845 |
msgctxt "Custom taxonomy label."
|
846 |
msgid "Edit Category"
|
847 |
msgstr "Edytuj kategorię"
|
848 |
|
849 |
-
#: classes/class-fl-builder.php:
|
850 |
msgctxt "Custom taxonomy label."
|
851 |
msgid "Update Category"
|
852 |
msgstr "Zaktualizuj kategorię"
|
853 |
|
854 |
-
#: classes/class-fl-builder.php:
|
855 |
msgctxt "Custom taxonomy label."
|
856 |
msgid "Add New Category"
|
857 |
msgstr "Dodaj nową kategorię"
|
858 |
|
859 |
-
#: classes/class-fl-builder.php:
|
860 |
msgctxt "Custom taxonomy label."
|
861 |
msgid "New Category Name"
|
862 |
msgstr "Nazwa nowej kategorii"
|
863 |
|
864 |
# @ fl-builder
|
865 |
-
#: classes/class-fl-builder.php:
|
866 |
#, php-format
|
867 |
msgctxt "%s stands for module name."
|
868 |
msgid "%s Settings"
|
@@ -1269,17 +1350,19 @@ msgid "Name"
|
|
1269 |
msgstr "Nazwa"
|
1270 |
|
1271 |
# @ fl-builder
|
1272 |
-
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:
|
1273 |
-
#: modules/post-
|
|
|
1274 |
msgid "Image"
|
1275 |
msgstr "Obraz"
|
1276 |
|
1277 |
# @ fl-builder
|
1278 |
-
#: includes/admin-templates-edit.php:16 includes/column-settings.php:
|
1279 |
-
#: includes/row-settings.php:
|
1280 |
-
#: modules/callout/callout.php:
|
1281 |
-
#: modules/content-slider/content-slider.php:
|
1282 |
-
#: modules/post-grid/post-grid.php:
|
|
|
1283 |
msgid "Position"
|
1284 |
msgstr "Pozycja"
|
1285 |
|
@@ -1291,24 +1374,35 @@ msgstr "Premium"
|
|
1291 |
# @ fl-builder
|
1292 |
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
1293 |
#: includes/global-settings.php:18 includes/global-settings.php:110
|
1294 |
-
#: includes/global-settings.php:124 includes/row-settings.php:
|
1295 |
#: includes/template-settings.php:31 modules/accordion/accordion.php:90
|
1296 |
-
#: modules/callout/callout.php:
|
1297 |
-
#: modules/content-slider/content-slider.php:
|
1298 |
-
#: modules/content-slider/content-slider.php:
|
1299 |
-
#: modules/content-slider/content-slider.php:
|
1300 |
-
#: modules/content-slider/content-slider.php:
|
1301 |
-
#: modules/content-slider/content-slider.php:
|
1302 |
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
1303 |
-
#: modules/
|
1304 |
-
#: modules/
|
1305 |
-
#: modules/
|
1306 |
-
#: modules/
|
1307 |
-
#: modules/
|
1308 |
-
#: modules/
|
1309 |
-
#: modules/
|
1310 |
-
#: modules/
|
1311 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1312 |
#: modules/social-buttons/social-buttons.php:111
|
1313 |
#: modules/social-buttons/social-buttons.php:120
|
1314 |
#: modules/social-buttons/social-buttons.php:129
|
@@ -1322,24 +1416,35 @@ msgstr "Nie"
|
|
1322 |
# @ fl-builder
|
1323 |
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
1324 |
#: includes/global-settings.php:19 includes/global-settings.php:111
|
1325 |
-
#: includes/global-settings.php:125 includes/row-settings.php:
|
1326 |
#: includes/template-settings.php:32 modules/accordion/accordion.php:89
|
1327 |
-
#: modules/callout/callout.php:
|
1328 |
-
#: modules/content-slider/content-slider.php:
|
1329 |
-
#: modules/content-slider/content-slider.php:
|
1330 |
-
#: modules/content-slider/content-slider.php:
|
1331 |
-
#: modules/content-slider/content-slider.php:
|
1332 |
-
#: modules/content-slider/content-slider.php:
|
1333 |
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
1334 |
-
#: modules/
|
1335 |
-
#: modules/
|
1336 |
-
#: modules/
|
1337 |
-
#: modules/
|
1338 |
-
#: modules/
|
1339 |
-
#: modules/
|
1340 |
-
#: modules/
|
1341 |
-
#: modules/
|
1342 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1343 |
#: modules/social-buttons/social-buttons.php:110
|
1344 |
#: modules/social-buttons/social-buttons.php:119
|
1345 |
#: modules/social-buttons/social-buttons.php:128
|
@@ -1411,17 +1516,19 @@ msgstr "Ustawienia kolumny"
|
|
1411 |
# @ fl-builder
|
1412 |
#: includes/column-settings.php:7 includes/module-settings.php:87
|
1413 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
1414 |
-
#: modules/button/button.php:
|
1415 |
-
#: modules/button/button.php:
|
1416 |
-
#: modules/callout/callout.php:
|
1417 |
-
#: modules/content-slider/content-slider.php:
|
1418 |
-
#: modules/content-slider/content-slider.php:
|
1419 |
-
#: modules/cta/cta.php:
|
1420 |
#: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
|
|
|
|
|
1421 |
#: modules/pricing-table/pricing-table.php:43
|
1422 |
#: modules/pricing-table/pricing-table.php:155
|
1423 |
#: modules/separator/separator.php:72
|
1424 |
-
#: modules/subscribe-form/subscribe-form.php:
|
1425 |
msgid "Style"
|
1426 |
msgstr "Styl"
|
1427 |
|
@@ -1431,127 +1538,143 @@ msgid "Column Width"
|
|
1431 |
msgstr "Szerokość kolumny"
|
1432 |
|
1433 |
# @ fl-builder
|
1434 |
-
#: includes/column-settings.php:26
|
1435 |
-
#: modules/
|
1436 |
-
#: modules/callout/callout.php:
|
1437 |
-
#: modules/content-slider/content-slider.php:
|
1438 |
-
#: modules/content-slider/content-slider.php:
|
1439 |
-
#: modules/cta/cta.php:
|
1440 |
msgid "Text"
|
1441 |
msgstr "Tekst"
|
1442 |
|
1443 |
# @ fl-builder
|
1444 |
-
#: includes/column-settings.php:30 includes/column-settings.php:
|
1445 |
-
#: includes/column-settings.php:
|
1446 |
-
#: includes/row-settings.php:
|
1447 |
-
#: modules/
|
1448 |
-
#: modules/content-slider/content-slider.php:337
|
1449 |
#: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
|
1450 |
#: modules/separator/separator.php:34
|
1451 |
msgid "Color"
|
1452 |
msgstr "Kolor"
|
1453 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1454 |
# @ fl-builder
|
1455 |
-
#: includes/column-settings.php:
|
|
|
1456 |
msgid "Background"
|
1457 |
msgstr "Tło"
|
1458 |
|
1459 |
# @ fl-builder
|
1460 |
-
#: includes/column-settings.php:
|
1461 |
-
#: includes/row-settings.php:
|
1462 |
-
#: modules/callout/callout.php:
|
1463 |
-
#: modules/content-slider/content-slider.php:
|
1464 |
-
#: modules/content-slider/content-slider.php:
|
1465 |
-
#: modules/content-slider/content-slider.php:
|
1466 |
-
#: modules/content-slider/content-slider.php:
|
1467 |
-
#: modules/slideshow/slideshow.php:
|
1468 |
msgid "Type"
|
1469 |
msgstr "Typ"
|
1470 |
|
1471 |
# @ fl-builder
|
1472 |
-
#: includes/column-settings.php:
|
1473 |
-
#: modules/content-slider/content-slider.php:
|
1474 |
msgctxt "Background type."
|
1475 |
msgid "None"
|
1476 |
msgstr "Brak"
|
1477 |
|
1478 |
# @ fl-builder
|
1479 |
-
#: includes/column-settings.php:
|
1480 |
msgctxt "Background type."
|
1481 |
msgid "Color"
|
1482 |
msgstr "Kolor"
|
1483 |
|
1484 |
# @ fl-builder
|
1485 |
-
#: includes/column-settings.php:
|
1486 |
msgctxt "Background type."
|
1487 |
msgid "Photo"
|
1488 |
msgstr "Zdjęcie"
|
1489 |
|
1490 |
# @ fl-builder
|
1491 |
-
#: includes/column-settings.php:
|
1492 |
-
#: modules/button/button.php:
|
1493 |
-
#: modules/callout/callout.php:
|
1494 |
-
#: modules/content-slider/content-slider.php:
|
1495 |
-
#: modules/content-slider/content-slider.php:
|
1496 |
-
#: modules/cta/cta.php:
|
1497 |
-
#: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:
|
1498 |
msgid "Background Color"
|
1499 |
msgstr "Kolor tła"
|
1500 |
|
1501 |
# @ fl-builder
|
1502 |
-
#: includes/column-settings.php:
|
1503 |
-
#: includes/row-settings.php:
|
1504 |
#: modules/separator/separator.php:44
|
1505 |
msgid "Opacity"
|
1506 |
msgstr "Krycie"
|
1507 |
|
1508 |
# @ fl-builder
|
1509 |
-
#: includes/column-settings.php:
|
1510 |
-
#: modules/content-slider/content-slider.php:
|
1511 |
msgid "Background Photo"
|
1512 |
msgstr "Zdjęcie tła"
|
1513 |
|
1514 |
# @ fl-builder
|
1515 |
-
#: includes/column-settings.php:
|
1516 |
-
#: includes/row-settings.php:
|
1517 |
-
#: modules/callout/callout.php:
|
1518 |
-
#: modules/content-slider/content-slider.php:
|
1519 |
-
#: modules/content-slider/content-slider.php:
|
1520 |
-
#: modules/content-slider/content-slider.php:
|
1521 |
-
#: modules/photo/photo.php:
|
1522 |
msgid "Photo"
|
1523 |
msgstr "Zdjęcie"
|
1524 |
|
1525 |
# @ fl-builder
|
1526 |
-
#: includes/column-settings.php:
|
1527 |
msgid "Repeat"
|
1528 |
msgstr "Powtarzanie tła (Repeat)"
|
1529 |
|
1530 |
# @ fl-builder
|
1531 |
-
#: includes/column-settings.php:
|
1532 |
msgctxt "Background repeat."
|
1533 |
msgid "None"
|
1534 |
msgstr "Brak"
|
1535 |
|
1536 |
# @ fl-builder
|
1537 |
-
#: includes/column-settings.php:
|
1538 |
msgctxt "Background repeat."
|
1539 |
msgid "Tile"
|
1540 |
msgstr "Kafelki"
|
1541 |
|
1542 |
# @ fl-builder
|
1543 |
-
#: includes/column-settings.php:
|
1544 |
msgctxt "Background repeat."
|
1545 |
msgid "Horizontal"
|
1546 |
msgstr "Powtaryanie poziome (horizontal)"
|
1547 |
|
1548 |
# @ fl-builder
|
1549 |
-
#: includes/column-settings.php:
|
1550 |
msgctxt "Background repeat."
|
1551 |
msgid "Vertical"
|
1552 |
msgstr "Powtarzanie pionowe (vertical)"
|
1553 |
|
1554 |
-
#: includes/column-settings.php:
|
1555 |
msgid ""
|
1556 |
"Repeat applies to how the image should display in the background. Choosing "
|
1557 |
"none will display the image as uploaded. Tile will repeat the image as many "
|
@@ -1565,79 +1688,79 @@ msgstr ""
|
|
1565 |
"obrazu tylko w poziomie (Horizontal) lub tylko w pionie (Vertical)."
|
1566 |
|
1567 |
# @ fl-builder
|
1568 |
-
#: includes/column-settings.php:
|
1569 |
msgid "Left Top"
|
1570 |
msgstr "Lewa Góra"
|
1571 |
|
1572 |
# @ fl-builder
|
1573 |
-
#: includes/column-settings.php:
|
1574 |
msgid "Left Center"
|
1575 |
msgstr "Lewa Środek"
|
1576 |
|
1577 |
# @ fl-builder
|
1578 |
-
#: includes/column-settings.php:
|
1579 |
msgid "Left Bottom"
|
1580 |
msgstr "Lewa Dół"
|
1581 |
|
1582 |
# @ fl-builder
|
1583 |
-
#: includes/column-settings.php:
|
1584 |
msgid "Right Top"
|
1585 |
msgstr "Prawa Góra"
|
1586 |
|
1587 |
# @ fl-builder
|
1588 |
-
#: includes/column-settings.php:
|
1589 |
msgid "Right Center"
|
1590 |
msgstr "Prawa Środek"
|
1591 |
|
1592 |
# @ fl-builder
|
1593 |
-
#: includes/column-settings.php:
|
1594 |
msgid "Right Bottom"
|
1595 |
msgstr "Prawa Dół"
|
1596 |
|
1597 |
# @ fl-builder
|
1598 |
-
#: includes/column-settings.php:
|
1599 |
msgid "Center Top"
|
1600 |
msgstr "Środek Góra"
|
1601 |
|
1602 |
# @ fl-builder
|
1603 |
-
#: includes/column-settings.php:
|
1604 |
-
#: modules/button/button.php:
|
1605 |
-
#: modules/content-slider/content-slider.php:
|
1606 |
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1607 |
#: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
|
1608 |
-
#: modules/photo/photo.php:
|
1609 |
msgid "Center"
|
1610 |
msgstr "Środek"
|
1611 |
|
1612 |
# @ fl-builder
|
1613 |
-
#: includes/column-settings.php:
|
1614 |
msgid "Center Bottom"
|
1615 |
msgstr "Środek Dół"
|
1616 |
|
1617 |
-
#: includes/column-settings.php:
|
1618 |
msgid "Position will tell the image where it should sit in the background."
|
1619 |
msgstr ""
|
1620 |
"Pole Pozycja określa, w jakiej pozycji obraz powinien być wyświetlany w tle."
|
1621 |
|
1622 |
# @ fl-builder
|
1623 |
-
#: includes/column-settings.php:
|
1624 |
msgid "Attachment"
|
1625 |
msgstr "Zachowanie"
|
1626 |
|
1627 |
# @ fl-builder
|
1628 |
-
#: includes/column-settings.php:
|
1629 |
-
#: modules/post-grid/post-grid.php:
|
1630 |
msgid "Scroll"
|
1631 |
msgstr "Scroll (Przewijanie)"
|
1632 |
|
1633 |
# @ fl-builder
|
1634 |
-
#: includes/column-settings.php:
|
1635 |
#: includes/global-settings.php:83 includes/row-settings.php:19
|
1636 |
-
#: includes/row-settings.php:37 includes/row-settings.php:
|
1637 |
msgid "Fixed"
|
1638 |
msgstr "Określony"
|
1639 |
|
1640 |
-
#: includes/column-settings.php:
|
1641 |
msgid ""
|
1642 |
"Attachment will specify how the image reacts when scrolling a page. When "
|
1643 |
"scrolling is selected, the image will scroll with page scrolling. This is "
|
@@ -1651,27 +1774,27 @@ msgstr ""
|
|
1651 |
"jeśli w polu Skala wybierzesz opcję Wypełnij."
|
1652 |
|
1653 |
# @ fl-builder
|
1654 |
-
#: includes/column-settings.php:
|
1655 |
msgid "Scale"
|
1656 |
msgstr "Skala"
|
1657 |
|
1658 |
# @ fl-builder
|
1659 |
-
#: includes/column-settings.php:
|
1660 |
msgctxt "Background scale."
|
1661 |
msgid "None"
|
1662 |
msgstr "Brak"
|
1663 |
|
1664 |
# @ fl-builder
|
1665 |
-
#: includes/column-settings.php:
|
1666 |
msgid "Fit"
|
1667 |
msgstr "Dopasuj"
|
1668 |
|
1669 |
# @ fl-builder
|
1670 |
-
#: includes/column-settings.php:
|
1671 |
msgid "Fill"
|
1672 |
msgstr "Wypełnij"
|
1673 |
|
1674 |
-
#: includes/column-settings.php:
|
1675 |
msgid ""
|
1676 |
"Scale applies to how the image should display in the background. You can "
|
1677 |
"select either fill or fit to the background."
|
@@ -1680,12 +1803,27 @@ msgstr ""
|
|
1680 |
"między wypełnieniem i dopasowaniem obrazu do tła."
|
1681 |
|
1682 |
# @ fl-builder
|
1683 |
-
#: includes/column-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1684 |
msgid "Border"
|
1685 |
msgstr "Obramowanie"
|
1686 |
|
1687 |
# @ fl-builder
|
1688 |
-
#: includes/column-settings.php:
|
1689 |
msgid ""
|
1690 |
"The type of border to use. Double borders must have a width of at least 3px "
|
1691 |
"to render properly."
|
@@ -1694,234 +1832,240 @@ msgstr ""
|
|
1694 |
"przynajmniej 3 piksele grubości, aby poprawnie się wyświetlały."
|
1695 |
|
1696 |
# @ fl-builder
|
1697 |
-
#: includes/column-settings.php:
|
1698 |
msgctxt "Border type."
|
1699 |
msgid "None"
|
1700 |
msgstr "Brak"
|
1701 |
|
1702 |
# @ fl-builder
|
1703 |
-
#: includes/column-settings.php:
|
1704 |
#: modules/separator/separator.php:75
|
1705 |
msgctxt "Border type."
|
1706 |
msgid "Solid"
|
1707 |
msgstr "Linia ciągła"
|
1708 |
|
1709 |
# @ fl-builder
|
1710 |
-
#: includes/column-settings.php:
|
1711 |
#: modules/separator/separator.php:76
|
1712 |
msgctxt "Border type."
|
1713 |
msgid "Dashed"
|
1714 |
msgstr "Linia przerywana"
|
1715 |
|
1716 |
# @ fl-builder
|
1717 |
-
#: includes/column-settings.php:
|
1718 |
#: modules/separator/separator.php:77
|
1719 |
msgctxt "Border type."
|
1720 |
msgid "Dotted"
|
1721 |
msgstr "Kropki"
|
1722 |
|
1723 |
# @ fl-builder
|
1724 |
-
#: includes/column-settings.php:
|
1725 |
#: modules/separator/separator.php:78
|
1726 |
msgctxt "Border type."
|
1727 |
msgid "Double"
|
1728 |
msgstr "Podwójny"
|
1729 |
|
1730 |
# @ fl-builder
|
1731 |
-
#: includes/column-settings.php:
|
1732 |
msgid "Top Width"
|
1733 |
msgstr "Grubość górna"
|
1734 |
|
1735 |
# @ fl-builder
|
1736 |
-
#: includes/column-settings.php:
|
1737 |
msgid "Bottom Width"
|
1738 |
msgstr "Grubość dolna"
|
1739 |
|
1740 |
# @ fl-builder
|
1741 |
-
#: includes/column-settings.php:
|
1742 |
msgid "Left Width"
|
1743 |
msgstr "Grubość po lewej"
|
1744 |
|
1745 |
# @ fl-builder
|
1746 |
-
#: includes/column-settings.php:
|
1747 |
msgid "Right Width"
|
1748 |
msgstr "Grubość po prawej"
|
1749 |
|
1750 |
# @ fl-builder
|
1751 |
-
#: includes/column-settings.php:
|
1752 |
-
#: includes/row-settings.php:
|
1753 |
msgid "Advanced"
|
1754 |
msgstr "Zaawansowane"
|
1755 |
|
1756 |
# @ fl-builder
|
1757 |
-
#: includes/column-settings.php:
|
1758 |
#: includes/global-settings.php:94 includes/module-settings.php:9
|
1759 |
-
#: includes/row-settings.php:
|
1760 |
msgid "Margins"
|
1761 |
msgstr "Marginesy"
|
1762 |
|
1763 |
# @ fl-builder
|
1764 |
-
#: includes/column-settings.php:
|
1765 |
-
#: includes/module-settings.php:13 includes/row-settings.php:
|
1766 |
-
#: includes/row-settings.php:
|
1767 |
msgid "Top"
|
1768 |
msgstr "Górny"
|
1769 |
|
1770 |
# @ fl-builder
|
1771 |
-
#: includes/column-settings.php:
|
1772 |
-
#: includes/module-settings.php:25 includes/row-settings.php:
|
1773 |
-
#: includes/row-settings.php:
|
|
|
1774 |
msgid "Bottom"
|
1775 |
msgstr "Dolny"
|
1776 |
|
1777 |
# @ fl-builder
|
1778 |
-
#: includes/column-settings.php:
|
1779 |
-
#: includes/module-settings.php:37 includes/row-settings.php:
|
1780 |
-
#: includes/row-settings.php:
|
1781 |
-
#: modules/callout/callout.php:
|
1782 |
-
#: modules/content-slider/content-slider.php:
|
1783 |
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
1784 |
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
1785 |
-
#: modules/photo/photo.php:
|
|
|
|
|
1786 |
msgid "Left"
|
1787 |
msgstr "Lewy"
|
1788 |
|
1789 |
# @ fl-builder
|
1790 |
-
#: includes/column-settings.php:
|
1791 |
-
#: includes/module-settings.php:49 includes/row-settings.php:
|
1792 |
-
#: includes/row-settings.php:
|
1793 |
-
#: modules/callout/callout.php:
|
1794 |
-
#: modules/content-slider/content-slider.php:
|
1795 |
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
1796 |
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
1797 |
-
#: modules/photo/photo.php:
|
|
|
|
|
1798 |
msgid "Right"
|
1799 |
msgstr "Prawy"
|
1800 |
|
1801 |
# @ fl-builder
|
1802 |
-
#: includes/column-settings.php:
|
1803 |
-
#: includes/row-settings.php:
|
1804 |
-
#: modules/callout/callout.php:
|
1805 |
-
#: modules/content-slider/content-slider.php:
|
1806 |
-
#: modules/subscribe-form/subscribe-form.php:
|
1807 |
msgid "Padding"
|
1808 |
msgstr "Odstęp wewnętrzny (padding)"
|
1809 |
|
1810 |
# @ fl-builder
|
1811 |
-
#: includes/column-settings.php:
|
1812 |
-
#: includes/module-settings.php:62 includes/row-settings.php:
|
1813 |
msgid "Responsive Layout"
|
1814 |
msgstr "Układ responsywny"
|
1815 |
|
1816 |
# @ fl-builder
|
1817 |
-
#: includes/column-settings.php:
|
1818 |
-
#: includes/row-settings.php:
|
1819 |
msgid "Display"
|
1820 |
msgstr "Wyświetlaj"
|
1821 |
|
1822 |
# @ fl-builder
|
1823 |
-
#: includes/column-settings.php:
|
1824 |
-
#: includes/row-settings.php:
|
1825 |
msgid "Always"
|
1826 |
msgstr "Zawsze"
|
1827 |
|
1828 |
# @ fl-builder
|
1829 |
-
#: includes/column-settings.php:
|
1830 |
-
#: includes/row-settings.php:
|
1831 |
msgid "Large Devices Only"
|
1832 |
msgstr "Tylko na dużych urządzeniach"
|
1833 |
|
1834 |
# @ fl-builder
|
1835 |
-
#: includes/column-settings.php:
|
1836 |
-
#: includes/row-settings.php:
|
1837 |
msgid "Large & Medium Devices Only"
|
1838 |
msgstr "Na urządzeniach dużych i średnich"
|
1839 |
|
1840 |
# @ fl-builder
|
1841 |
-
#: includes/column-settings.php:
|
1842 |
-
#: includes/row-settings.php:
|
1843 |
msgid "Medium Devices Only"
|
1844 |
msgstr "Tylko na średnich urządzeniach"
|
1845 |
|
1846 |
# @ fl-builder
|
1847 |
-
#: includes/column-settings.php:
|
1848 |
-
#: includes/row-settings.php:
|
1849 |
msgid "Medium & Small Devices Only"
|
1850 |
msgstr "Na urządzeniach średnich i małych"
|
1851 |
|
1852 |
# @ fl-builder
|
1853 |
-
#: includes/column-settings.php:
|
1854 |
-
#: includes/row-settings.php:
|
1855 |
msgid "Small Devices Only"
|
1856 |
msgstr "Tylko na małych urządzeniach"
|
1857 |
|
1858 |
# @ fl-builder
|
1859 |
-
#: includes/column-settings.php:
|
1860 |
msgid "Choose whether to show or hide this column at different device sizes."
|
1861 |
msgstr "Wybierz"
|
1862 |
|
1863 |
# @ fl-builder
|
1864 |
-
#: includes/column-settings.php:
|
1865 |
msgid "Medium Device Width"
|
1866 |
msgstr "Szerokość na średnich urządzenich"
|
1867 |
|
1868 |
# @ fl-builder
|
1869 |
-
#: includes/column-settings.php:
|
1870 |
msgid "The width of this column on medium devices such as tablets."
|
1871 |
msgstr "Szerokość tej kolumny na średnich urządzeniach takich jak tablety."
|
1872 |
|
1873 |
# @ fl-builder
|
1874 |
-
#: includes/column-settings.php:
|
1875 |
-
#: modules/callout/callout.php:
|
1876 |
-
#: modules/content-slider/content-slider.php:
|
1877 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
1878 |
-
#: modules/heading/heading.php:174
|
1879 |
msgid "Default"
|
1880 |
msgstr "Domyślna"
|
1881 |
|
1882 |
# @ fl-builder
|
1883 |
-
#: includes/column-settings.php:
|
1884 |
-
#: modules/button/button.php:
|
1885 |
-
#: modules/content-slider/content-slider.php:
|
1886 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
1887 |
-
#: modules/heading/heading.php:175 modules/
|
|
|
1888 |
msgid "Custom"
|
1889 |
msgstr "Wpisz"
|
1890 |
|
1891 |
# @ fl-builder
|
1892 |
-
#: includes/column-settings.php:
|
1893 |
msgid "Custom Medium Device Width"
|
1894 |
msgstr "Wpisz szerokość dla urządzeń średniej wielkości"
|
1895 |
|
1896 |
# @ fl-builder
|
1897 |
-
#: includes/column-settings.php:
|
1898 |
msgid "Small Device Width"
|
1899 |
msgstr "Szerokość na małych urządzenich"
|
1900 |
|
1901 |
# @ fl-builder
|
1902 |
-
#: includes/column-settings.php:
|
1903 |
msgid "The width of this column on small devices such as phones."
|
1904 |
msgstr "Szerokość tej kolumny na małych urządzeniach takich jak smartfony."
|
1905 |
|
1906 |
# @ fl-builder
|
1907 |
-
#: includes/column-settings.php:
|
1908 |
msgid "Custom Small Device Width"
|
1909 |
msgstr "Wpisz szerokość dla małych urządzeń"
|
1910 |
|
1911 |
# @ fl-builder
|
1912 |
-
#: includes/column-settings.php:
|
1913 |
-
#: includes/row-settings.php:
|
1914 |
msgid "CSS Selectors"
|
1915 |
msgstr "Selektory CSS"
|
1916 |
|
1917 |
# @ fl-builder
|
1918 |
-
#: includes/column-settings.php:
|
1919 |
-
#: includes/module-settings.php:119 includes/row-settings.php:
|
1920 |
msgid "ID"
|
1921 |
msgstr "ID"
|
1922 |
|
1923 |
# @ fl-builder
|
1924 |
-
#: includes/column-settings.php:
|
1925 |
msgid ""
|
1926 |
"A unique ID that will be applied to this column's HTML. Must start with a "
|
1927 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
@@ -1931,12 +2075,12 @@ msgstr ""
|
|
1931 |
"(bez polskich znaków) i liczby"
|
1932 |
|
1933 |
# @ fl-builder
|
1934 |
-
#: includes/column-settings.php:
|
1935 |
msgid "CSS Class"
|
1936 |
msgstr "Klasa CSS"
|
1937 |
|
1938 |
# @ fl-builder
|
1939 |
-
#: includes/column-settings.php:
|
1940 |
msgid ""
|
1941 |
"A class that will be applied to this column's HTML. Must start with a letter "
|
1942 |
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
@@ -1990,7 +2134,7 @@ msgid "Cancel"
|
|
1990 |
msgstr "Anuluj"
|
1991 |
|
1992 |
# @ fl-builder
|
1993 |
-
#: includes/field-multiple-photos.php:
|
1994 |
#, php-format
|
1995 |
msgid "1 Photo Selected"
|
1996 |
msgid_plural "%d Photos Selected"
|
@@ -1999,17 +2143,17 @@ msgstr[1] "Zaznaczonych zdjęć: %d"
|
|
1999 |
msgstr[2] "Zaznaczonych zdjęć: %d"
|
2000 |
|
2001 |
# @ fl-builder
|
2002 |
-
#: includes/field-multiple-photos.php:
|
2003 |
msgid "Create Gallery"
|
2004 |
msgstr "Stwórz galerię"
|
2005 |
|
2006 |
# @ fl-builder
|
2007 |
-
#: includes/field-multiple-photos.php:
|
2008 |
msgid "Edit Gallery"
|
2009 |
msgstr "Edytuj galerię"
|
2010 |
|
2011 |
# @ fl-builder
|
2012 |
-
#: includes/field-multiple-photos.php:
|
2013 |
msgid "Add Photos"
|
2014 |
msgstr "Dodaj zdjęcia"
|
2015 |
|
@@ -2031,18 +2175,18 @@ msgstr "Podmień wideo"
|
|
2031 |
# @ fl-builder
|
2032 |
#: includes/global-settings.php:7 includes/template-settings.php:7
|
2033 |
#: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
|
2034 |
-
#: modules/button/button.php:59 modules/callout/callout.php:
|
2035 |
#: modules/contact-form/contact-form.php:58
|
2036 |
-
#: modules/content-slider/content-slider.php:
|
2037 |
-
#: modules/content-slider/content-slider.php:
|
2038 |
-
#: modules/gallery/gallery.php:
|
2039 |
#: modules/html/html.php:26 modules/icon-group/icon-group.php:128
|
2040 |
-
#: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:
|
2041 |
#: modules/pricing-table/pricing-table.php:87
|
2042 |
#: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
|
2043 |
-
#: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:
|
2044 |
#: modules/social-buttons/social-buttons.php:64
|
2045 |
-
#: modules/subscribe-form/subscribe-form.php:
|
2046 |
#: modules/testimonials/testimonials.php:30
|
2047 |
#: modules/testimonials/testimonials.php:200 modules/video/video.php:76
|
2048 |
#: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
|
@@ -2113,7 +2257,7 @@ msgstr "Domyślna szerokość wiersza"
|
|
2113 |
# @ fl-builder
|
2114 |
#: includes/global-settings.php:70 includes/global-settings.php:84
|
2115 |
#: includes/row-settings.php:20 includes/row-settings.php:38
|
2116 |
-
#: modules/button/button.php:
|
2117 |
msgid "Full Width"
|
2118 |
msgstr "Pełna szerokość"
|
2119 |
|
@@ -2356,7 +2500,7 @@ msgid "OK"
|
|
2356 |
msgstr "OK"
|
2357 |
|
2358 |
# @ fl-builder
|
2359 |
-
#: includes/js-config.php:56 modules/photo/photo.php:
|
2360 |
msgid "Photo Page"
|
2361 |
msgstr "Strona zdjęcia"
|
2362 |
|
@@ -2426,7 +2570,7 @@ msgstr "Nadpisz nowy układ"
|
|
2426 |
msgid "Template Saved!"
|
2427 |
msgstr "Szablon zapisany!"
|
2428 |
|
2429 |
-
#: includes/js-config.php:77
|
2430 |
msgid "Thumbnail"
|
2431 |
msgstr "Miniatura"
|
2432 |
|
@@ -2600,7 +2744,8 @@ msgid "Order By"
|
|
2600 |
msgstr "Kolejność według"
|
2601 |
|
2602 |
# @ fl-builder
|
2603 |
-
#: includes/loop-settings.php:29 modules/post-
|
|
|
2604 |
#: modules/woocommerce/woocommerce.php:189
|
2605 |
msgid "Date"
|
2606 |
msgstr "Data"
|
@@ -2617,7 +2762,8 @@ msgid "Title"
|
|
2617 |
msgstr "Tytuł"
|
2618 |
|
2619 |
# @ fl-builder
|
2620 |
-
#: includes/loop-settings.php:32 modules/post-
|
|
|
2621 |
msgid "Author"
|
2622 |
msgstr "Autor"
|
2623 |
|
@@ -2744,17 +2890,23 @@ msgstr "Wjazd z dołu"
|
|
2744 |
|
2745 |
# @ fl-builder
|
2746 |
#: includes/module-settings.php:102
|
2747 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
2748 |
#: modules/testimonials/testimonials.php:91
|
2749 |
msgid "Delay"
|
2750 |
msgstr "Wstrzymaj animację na"
|
2751 |
|
2752 |
# @ fl-builder
|
2753 |
-
#: includes/module-settings.php:106 includes/row-settings.php:
|
2754 |
-
#: includes/row-settings.php:
|
2755 |
-
#: modules/content-slider/content-slider.php:
|
2756 |
-
#: modules/
|
2757 |
-
#: modules/
|
|
|
|
|
|
|
|
|
2758 |
#: modules/testimonials/testimonials.php:112
|
2759 |
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
2760 |
msgid "seconds"
|
@@ -2776,7 +2928,7 @@ msgstr ""
|
|
2776 |
"myślnika. Nie używaj w nim spacji."
|
2777 |
|
2778 |
# @ fl-builder
|
2779 |
-
#: includes/module-settings.php:127 includes/row-settings.php:
|
2780 |
msgid "Class"
|
2781 |
msgstr "Klasa"
|
2782 |
|
@@ -2792,8 +2944,8 @@ msgstr ""
|
|
2792 |
"Jeśli chcesz wpisać więcej niż jedną klasę, oddziel je spacjami."
|
2793 |
|
2794 |
# @ fl-builder
|
2795 |
-
#: includes/row-settings.php:16 modules/button/button.php:
|
2796 |
-
#: modules/content-slider/content-slider.php:
|
2797 |
msgid "Width"
|
2798 |
msgstr "Szerokość"
|
2799 |
|
@@ -2824,36 +2976,58 @@ msgstr ""
|
|
2824 |
"szerokość)"
|
2825 |
|
2826 |
# @ fl-builder
|
2827 |
-
#: includes/row-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2828 |
msgctxt "Background type."
|
2829 |
msgid "Video"
|
2830 |
msgstr "Wideo"
|
2831 |
|
2832 |
# @ fl-builder
|
2833 |
-
#: includes/row-settings.php:
|
2834 |
msgctxt "Background type."
|
2835 |
msgid "Slideshow"
|
2836 |
msgstr "Pokaz slajdów"
|
2837 |
|
2838 |
# @ fl-builder
|
2839 |
-
#: includes/row-settings.php:
|
2840 |
msgctxt "Background type."
|
2841 |
msgid "Parallax"
|
2842 |
msgstr "Parallax"
|
2843 |
|
2844 |
# @ fl-builder
|
2845 |
-
#: includes/row-settings.php:
|
2846 |
msgid "Background Video"
|
2847 |
msgstr "Wideo w tle"
|
2848 |
|
2849 |
# @ fl-builder
|
2850 |
-
#: includes/row-settings.php:
|
2851 |
#: modules/video/video.php:19 modules/video/video.php:100
|
2852 |
msgid "Video"
|
2853 |
msgstr "Wideo"
|
2854 |
|
2855 |
# @ fl-builder
|
2856 |
-
#: includes/row-settings.php:
|
2857 |
msgid ""
|
2858 |
"An HTML5 video to use as the background of this row. Supported types are "
|
2859 |
"MP4, WebM and Ogg."
|
@@ -2862,37 +3036,37 @@ msgstr ""
|
|
2862 |
"to MP4, WebM i Ogg."
|
2863 |
|
2864 |
# @ fl-builder
|
2865 |
-
#: includes/row-settings.php:
|
2866 |
msgid "Fallback Photo"
|
2867 |
msgstr "Zdjęcie \"awaryjne\""
|
2868 |
|
2869 |
# @ fl-builder
|
2870 |
-
#: includes/row-settings.php:
|
2871 |
msgid "A photo that will be displayed if the video fails to load."
|
2872 |
msgstr ""
|
2873 |
"Zdjęcie, które ma zostać wczytane, gdy nie uda się wczytać pliku wideo."
|
2874 |
|
2875 |
# @ fl-builder
|
2876 |
-
#: includes/row-settings.php:
|
2877 |
msgid "Background Slideshow"
|
2878 |
msgstr "Pokaz slajdów w tle"
|
2879 |
|
2880 |
# @ fl-builder
|
2881 |
-
#: includes/row-settings.php:
|
2882 |
-
#: modules/slideshow/slideshow.php:
|
2883 |
msgid "Source"
|
2884 |
msgstr "Źródło"
|
2885 |
|
2886 |
# @ fl-builder
|
2887 |
-
#: includes/row-settings.php:
|
2888 |
-
#: modules/photo/photo.php:
|
2889 |
#: modules/video/video.php:86
|
2890 |
msgid "Media Library"
|
2891 |
msgstr "Biblioteka mediów"
|
2892 |
|
2893 |
# @ fl-builder
|
2894 |
-
#: includes/row-settings.php:
|
2895 |
-
#: modules/slideshow/slideshow.php:
|
2896 |
msgid ""
|
2897 |
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
2898 |
"site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
|
@@ -2903,142 +3077,131 @@ msgstr ""
|
|
2903 |
"Get a link w swojej galerii SmugMug."
|
2904 |
|
2905 |
# @ fl-builder
|
2906 |
-
#: includes/row-settings.php:
|
2907 |
-
#: modules/slideshow/slideshow.php:
|
2908 |
msgid "Photos"
|
2909 |
msgstr "Zdjęcia"
|
2910 |
|
2911 |
# @ fl-builder
|
2912 |
-
#: includes/row-settings.php:
|
2913 |
-
#: modules/slideshow/slideshow.php:
|
2914 |
msgid "Feed URL"
|
2915 |
msgstr "Url kanału"
|
2916 |
|
2917 |
# @ fl-builder
|
2918 |
-
#: includes/row-settings.php:
|
2919 |
-
#: modules/slideshow/slideshow.php:
|
2920 |
msgid "Speed"
|
2921 |
msgstr "Szybkość"
|
2922 |
|
2923 |
# @ fl-builder
|
2924 |
-
#: includes/row-settings.php:
|
2925 |
-
#: modules/
|
|
|
2926 |
msgid "Transition"
|
2927 |
msgstr "Animacja"
|
2928 |
|
2929 |
# @ fl-builder
|
2930 |
-
#: includes/row-settings.php:
|
2931 |
msgctxt "Slideshow transition type."
|
2932 |
msgid "None"
|
2933 |
msgstr "Brak"
|
2934 |
|
2935 |
# @ fl-builder
|
2936 |
-
#: includes/row-settings.php:
|
2937 |
-
#: modules/
|
|
|
|
|
2938 |
#: modules/testimonials/testimonials.php:103
|
2939 |
msgid "Fade"
|
2940 |
msgstr "Przenikanie"
|
2941 |
|
2942 |
# @ fl-builder
|
2943 |
-
#: includes/row-settings.php:
|
2944 |
msgid "Ken Burns"
|
2945 |
msgstr "Ken Burns"
|
2946 |
|
2947 |
# @ fl-builder
|
2948 |
-
#: includes/row-settings.php:
|
2949 |
msgid "Slide Horizontal"
|
2950 |
msgstr "Przesuwanie poziome"
|
2951 |
|
2952 |
# @ fl-builder
|
2953 |
-
#: includes/row-settings.php:
|
2954 |
msgid "Slide Vertical"
|
2955 |
msgstr "Przesuwanie pionowe"
|
2956 |
|
2957 |
# @ fl-builder
|
2958 |
-
#: includes/row-settings.php:
|
2959 |
msgid "Blinds"
|
2960 |
msgstr "Roleta"
|
2961 |
|
2962 |
# @ fl-builder
|
2963 |
-
#: includes/row-settings.php:
|
2964 |
msgid "Bars"
|
2965 |
msgstr "Pasy"
|
2966 |
|
2967 |
# @ fl-builder
|
2968 |
-
#: includes/row-settings.php:
|
2969 |
msgid "Random Bars"
|
2970 |
msgstr "Losowe pasy"
|
2971 |
|
2972 |
# @ fl-builder
|
2973 |
-
#: includes/row-settings.php:
|
2974 |
msgid "Boxes"
|
2975 |
msgstr "Boksy"
|
2976 |
|
2977 |
# @ fl-builder
|
2978 |
-
#: includes/row-settings.php:
|
2979 |
msgid "Random Boxes"
|
2980 |
msgstr "Losowe boksy"
|
2981 |
|
2982 |
# @ fl-builder
|
2983 |
-
#: includes/row-settings.php:
|
2984 |
msgid "Boxes Grow"
|
2985 |
msgstr "Rosnące boksy"
|
2986 |
|
2987 |
# @ fl-builder
|
2988 |
-
#: includes/row-settings.php:
|
2989 |
-
#: modules/
|
|
|
2990 |
#: modules/testimonials/testimonials.php:108
|
2991 |
msgid "Transition Speed"
|
2992 |
msgstr "Szybkość animacji"
|
2993 |
|
2994 |
# @ fl-builder
|
2995 |
-
#: includes/row-settings.php:
|
2996 |
msgid "Randomize Photos"
|
2997 |
msgstr "Wyświetlaj zdjęcia losowo"
|
2998 |
|
2999 |
# @ fl-builder
|
3000 |
-
#: includes/row-settings.php:
|
3001 |
msgid "Background Parallax"
|
3002 |
msgstr "Efekt Parallax"
|
3003 |
|
3004 |
# @ fl-builder
|
3005 |
-
#: includes/row-settings.php:
|
3006 |
msgid "Fast"
|
3007 |
msgstr "Szybko"
|
3008 |
|
3009 |
# @ fl-builder
|
3010 |
-
#: includes/row-settings.php:
|
3011 |
msgctxt "Speed."
|
3012 |
msgid "Medium"
|
3013 |
msgstr "Średnio"
|
3014 |
|
3015 |
# @ fl-builder
|
3016 |
-
#: includes/row-settings.php:
|
3017 |
msgid "Slow"
|
3018 |
msgstr "Wolno"
|
3019 |
|
3020 |
# @ fl-builder
|
3021 |
-
#: includes/row-settings.php:
|
3022 |
-
msgid "Background Overlay"
|
3023 |
-
msgstr "Tło"
|
3024 |
-
|
3025 |
-
# @ fl-builder
|
3026 |
-
#: includes/row-settings.php:346
|
3027 |
-
msgid "Overlay Color"
|
3028 |
-
msgstr "Kolor krycia"
|
3029 |
-
|
3030 |
-
# @ fl-builder
|
3031 |
-
#: includes/row-settings.php:354
|
3032 |
-
msgid "Overlay Opacity"
|
3033 |
-
msgstr "Poziom krycia "
|
3034 |
-
|
3035 |
-
# @ fl-builder
|
3036 |
-
#: includes/row-settings.php:595
|
3037 |
msgid "Choose whether to show or hide this row at different device sizes."
|
3038 |
msgstr "Wybierz czy pokazywać ten wiersz na różnych urządzeniach."
|
3039 |
|
3040 |
# @ fl-builder
|
3041 |
-
#: includes/row-settings.php:
|
3042 |
msgid ""
|
3043 |
"A unique ID that will be applied to this row's HTML. Must start with a "
|
3044 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
@@ -3048,7 +3211,7 @@ msgstr ""
|
|
3048 |
"litery. Nie używaj spacji."
|
3049 |
|
3050 |
# @ fl-builder
|
3051 |
-
#: includes/row-settings.php:
|
3052 |
msgid ""
|
3053 |
"A class that will be applied to this row's HTML. Must start with a letter "
|
3054 |
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
@@ -3200,7 +3363,7 @@ msgstr "Zpisz się na automatyczne aktualizacje pluginu."
|
|
3200 |
#: includes/updater/classes/class-fl-updater.php:136
|
3201 |
#: includes/updater/includes/form.php:6
|
3202 |
msgid "Subscribe Now"
|
3203 |
-
msgstr "
|
3204 |
|
3205 |
# @ fl-builder
|
3206 |
#: includes/updater/includes/form.php:5
|
@@ -3208,8 +3371,8 @@ msgid ""
|
|
3208 |
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
3209 |
"enable automatic updates."
|
3210 |
msgstr ""
|
3211 |
-
"ULEPSZENIE NIEDOSTĘPNE!
|
3212 |
-
"włączyć
|
3213 |
|
3214 |
# @ fl-builder
|
3215 |
#: includes/updater/includes/form.php:11
|
@@ -3331,17 +3494,22 @@ msgid "Label"
|
|
3331 |
msgstr "Etykieta (nagłówek elementu)"
|
3332 |
|
3333 |
# @ fl-builder
|
3334 |
-
#: modules/accordion/accordion.php:122
|
3335 |
-
#: modules/post-
|
3336 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
3337 |
msgid "Content"
|
3338 |
msgstr "Treść"
|
3339 |
|
3340 |
# @ fl-builder
|
3341 |
-
#: modules/button/button.php:14 modules/callout/callout.php:
|
3342 |
-
#: modules/content-slider/content-slider.php:
|
3343 |
#: modules/pricing-table/pricing-table.php:129
|
3344 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3345 |
msgid "Button"
|
3346 |
msgstr "Przycisk"
|
3347 |
|
@@ -3351,169 +3519,169 @@ msgid "A simple call to action button."
|
|
3351 |
msgstr "Prosty moduł do tworzenia wezwania do akcji."
|
3352 |
|
3353 |
# @ fl-builder
|
3354 |
-
#: modules/button/button.php:67 modules/cta/cta.php:
|
3355 |
msgid "Click Here"
|
3356 |
msgstr "Kliknij tutaj"
|
3357 |
|
3358 |
# @ fl-builder
|
3359 |
-
#: modules/button/button.php:75 modules/callout/callout.php:
|
3360 |
-
#: modules/callout/callout.php:
|
3361 |
-
#: modules/cta/cta.php:
|
3362 |
#: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
|
3363 |
#: modules/icon/icon.php:34
|
3364 |
msgid "Icon"
|
3365 |
msgstr "Ikona"
|
3366 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3367 |
# @ fl-builder
|
3368 |
-
#: modules/button/button.php:
|
3369 |
-
#: modules/callout/callout.php:
|
3370 |
-
#: modules/content-slider/content-slider.php:
|
3371 |
-
#: modules/content-slider/content-slider.php:
|
3372 |
-
#: modules/content-slider/content-slider.php:
|
3373 |
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
3374 |
#: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
|
3375 |
-
#: modules/slideshow/slideshow.php:
|
3376 |
msgid "Link"
|
3377 |
msgstr "Link"
|
3378 |
|
3379 |
# @ fl-builder
|
3380 |
-
#: modules/button/button.php:
|
3381 |
msgid "http://www.example.com"
|
3382 |
msgstr "http://www.przyklad.pl"
|
3383 |
|
3384 |
# @ fl-builder
|
3385 |
-
#: modules/button/button.php:
|
3386 |
-
#: modules/content-slider/content-slider.php:
|
3387 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
3388 |
-
#: modules/photo/photo.php:
|
3389 |
msgid "Link Target"
|
3390 |
msgstr "Gdzie otworzyć link?"
|
3391 |
|
3392 |
# @ fl-builder
|
3393 |
-
#: modules/button/button.php:
|
3394 |
-
#: modules/content-slider/content-slider.php:
|
3395 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
3396 |
-
#: modules/photo/photo.php:
|
3397 |
msgid "Same Window"
|
3398 |
msgstr "W tym samym oknie"
|
3399 |
|
3400 |
# @ fl-builder
|
3401 |
-
#: modules/button/button.php:
|
3402 |
-
#: modules/content-slider/content-slider.php:
|
3403 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
3404 |
-
#: modules/photo/photo.php:
|
3405 |
msgid "New Window"
|
3406 |
msgstr "W nowym oknie"
|
3407 |
|
3408 |
# @ fl-builder
|
3409 |
-
#: modules/button/button.php:
|
3410 |
-
#: modules/
|
3411 |
-
#: modules/
|
3412 |
-
msgid "Colors"
|
3413 |
-
msgstr "Kolory"
|
3414 |
-
|
3415 |
-
# @ fl-builder
|
3416 |
-
#: modules/button/button.php:121 modules/callout/callout.php:409
|
3417 |
-
#: modules/callout/callout.php:514
|
3418 |
-
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
3419 |
#: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
|
3420 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3421 |
msgid "Background Hover Color"
|
3422 |
msgstr "Kolor tła po najechaniu myszką"
|
3423 |
|
3424 |
# @ fl-builder
|
3425 |
-
#: modules/button/button.php:
|
3426 |
-
#: modules/content-slider/content-slider.php:
|
3427 |
-
#: modules/
|
3428 |
-
#: modules/content-slider/content-slider.php:754 modules/cta/cta.php:191
|
3429 |
-
#: modules/cta/cta.php:279 modules/heading/heading.php:77
|
3430 |
-
#: modules/subscribe-form/subscribe-form.php:197
|
3431 |
-
msgid "Text Color"
|
3432 |
-
msgstr "Kolor tekstu"
|
3433 |
-
|
3434 |
-
# @ fl-builder
|
3435 |
-
#: modules/button/button.php:136 modules/callout/callout.php:529
|
3436 |
-
#: modules/content-slider/content-slider.php:647 modules/cta/cta.php:285
|
3437 |
-
#: modules/subscribe-form/subscribe-form.php:203
|
3438 |
msgid "Text Hover Color"
|
3439 |
msgstr "Kolor tekstu po najechaniu myszką"
|
3440 |
|
3441 |
# @ fl-builder
|
3442 |
-
#: modules/button/button.php:
|
3443 |
-
#: modules/content-slider/content-slider.php:
|
3444 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3445 |
msgid "Flat"
|
3446 |
msgstr "Płaski"
|
3447 |
|
3448 |
# @ fl-builder
|
3449 |
-
#: modules/button/button.php:
|
3450 |
-
#: modules/callout/callout.php:
|
3451 |
-
#: modules/content-slider/content-slider.php:
|
3452 |
#: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
|
3453 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3454 |
msgid "Gradient"
|
3455 |
msgstr "Gradient"
|
3456 |
|
3457 |
# @ fl-builder
|
3458 |
-
#: modules/button/button.php:
|
3459 |
-
#: modules/content-slider/content-slider.php:
|
3460 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3461 |
msgid "Transparent"
|
3462 |
msgstr "Przezroczysty"
|
3463 |
|
3464 |
# @ fl-builder
|
3465 |
-
#: modules/button/button.php:
|
3466 |
-
#: modules/content-slider/content-slider.php:
|
3467 |
#: modules/pricing-table/pricing-table.php:67
|
3468 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3469 |
msgid "Border Size"
|
3470 |
msgstr "Rozmiar obramowania"
|
3471 |
|
3472 |
# @ fl-builder
|
3473 |
-
#: modules/button/button.php:
|
3474 |
-
#: modules/content-slider/content-slider.php:
|
3475 |
-
#: modules/cta/cta.php:
|
3476 |
msgid "Background Opacity"
|
3477 |
msgstr "Krycie tła"
|
3478 |
|
3479 |
# @ fl-builder
|
3480 |
-
#: modules/button/button.php:
|
3481 |
-
#: modules/cta/cta.php:
|
3482 |
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
3483 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3484 |
msgid "Structure"
|
3485 |
msgstr "Struktura"
|
3486 |
|
3487 |
# @ fl-builder
|
3488 |
-
#: modules/button/button.php:
|
3489 |
msgctxt "Width."
|
3490 |
msgid "Auto"
|
3491 |
msgstr "Automatyczna"
|
3492 |
|
3493 |
# @ fl-builder
|
3494 |
-
#: modules/button/button.php:
|
3495 |
msgid "Custom Width"
|
3496 |
msgstr "Domyślna szerokość"
|
3497 |
|
3498 |
# @ fl-builder
|
3499 |
-
#: modules/button/button.php:
|
3500 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
3501 |
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
3502 |
-
#: modules/photo/photo.php:
|
3503 |
msgid "Alignment"
|
3504 |
msgstr "Wyrównanie"
|
3505 |
|
3506 |
# @ fl-builder
|
3507 |
-
#: modules/button/button.php:
|
3508 |
-
#: modules/content-slider/content-slider.php:
|
3509 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
3510 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3511 |
msgid "Font Size"
|
3512 |
msgstr "Rozmiar fonta"
|
3513 |
|
3514 |
# @ fl-builder
|
3515 |
-
#: modules/button/button.php:
|
3516 |
-
#: modules/cta/cta.php:
|
3517 |
msgid "Round Corners"
|
3518 |
msgstr "Zaokrąglone rogi"
|
3519 |
|
@@ -3528,159 +3696,169 @@ msgid "A heading and snippet of text with an optional link, icon and image."
|
|
3528 |
msgstr "Nagłówek i fragment tekstu z opcjonalnym linkiem, ikoną i obrazem."
|
3529 |
|
3530 |
# @ fl-builder
|
3531 |
-
#: modules/callout/callout.php:
|
3532 |
-
#: modules/content-slider/content-slider.php:
|
3533 |
-
#: modules/content-slider/content-slider.php:
|
3534 |
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
|
|
3535 |
#: modules/testimonials/testimonials.php:56
|
3536 |
#: modules/testimonials/testimonials.php:61
|
3537 |
msgid "Heading"
|
3538 |
msgstr "Nagłówek"
|
3539 |
|
3540 |
# @ fl-builder
|
3541 |
-
#: modules/callout/callout.php:
|
3542 |
msgid "Overall Alignment"
|
3543 |
msgstr "Wyrównanie tekstu"
|
3544 |
|
3545 |
# @ fl-builder
|
3546 |
-
#: modules/callout/callout.php:
|
3547 |
msgid "The alignment that will apply to all elements within the callout."
|
3548 |
msgstr ""
|
3549 |
"To wyrównanie zostanie ustawione do wszystkich elementów w obrębie "
|
3550 |
"wyróżnienia."
|
3551 |
|
3552 |
# @ fl-builder
|
3553 |
-
#: modules/callout/callout.php:
|
3554 |
msgid "Heading Structure"
|
3555 |
msgstr "Struktura nagłówka"
|
3556 |
|
3557 |
# @ fl-builder
|
3558 |
-
#: modules/callout/callout.php:
|
3559 |
-
#: modules/content-slider/content-slider.php:
|
|
|
3560 |
msgid "Heading Tag"
|
3561 |
msgstr "Tag nagłówka"
|
3562 |
|
3563 |
# @ fl-builder
|
3564 |
-
#: modules/callout/callout.php:
|
3565 |
-
#: modules/content-slider/content-slider.php:
|
3566 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
3567 |
#: modules/testimonials/testimonials.php:69
|
3568 |
msgid "Heading Size"
|
3569 |
msgstr "Rozmiar nagłówka"
|
3570 |
|
3571 |
# @ fl-builder
|
3572 |
-
#: modules/callout/callout.php:
|
3573 |
msgid "Heading Custom Size"
|
3574 |
msgstr "Wpisz rozmiar nagłówka"
|
3575 |
|
3576 |
# @ fl-builder
|
3577 |
-
#: modules/callout/callout.php:
|
3578 |
msgid "Image Type"
|
3579 |
msgstr "Rodzaj obrazka"
|
3580 |
|
3581 |
# @ fl-builder
|
3582 |
-
#: modules/callout/callout.php:
|
3583 |
msgctxt "Image type."
|
3584 |
msgid "None"
|
3585 |
msgstr "Brak"
|
3586 |
|
3587 |
# @ fl-builder
|
3588 |
-
#: modules/callout/callout.php:
|
3589 |
-
#: modules/slideshow/slideshow.php:
|
3590 |
msgid "Crop"
|
3591 |
msgstr "Kadruj"
|
3592 |
|
3593 |
# @ fl-builder
|
3594 |
-
#: modules/callout/callout.php:
|
3595 |
msgctxt "Crop"
|
3596 |
msgid "None"
|
3597 |
msgstr "Brak"
|
3598 |
|
3599 |
# @ fl-builder
|
3600 |
-
#: modules/callout/callout.php:
|
|
|
3601 |
msgid "Landscape"
|
3602 |
msgstr "Krajobraz"
|
3603 |
|
3604 |
# @ fl-builder
|
3605 |
-
#: modules/callout/callout.php:
|
|
|
3606 |
msgid "Panorama"
|
3607 |
msgstr "Panorama"
|
3608 |
|
3609 |
# @ fl-builder
|
3610 |
-
#: modules/callout/callout.php:
|
|
|
3611 |
msgid "Portrait"
|
3612 |
msgstr "Portret"
|
3613 |
|
3614 |
# @ fl-builder
|
3615 |
-
#: modules/callout/callout.php:
|
|
|
3616 |
msgid "Square"
|
3617 |
msgstr "Kwadrat"
|
3618 |
|
3619 |
# @ fl-builder
|
3620 |
-
#: modules/callout/callout.php:
|
|
|
3621 |
msgid "Circle"
|
3622 |
msgstr "Okrąg"
|
3623 |
|
3624 |
# @ fl-builder
|
3625 |
-
#: modules/callout/callout.php:
|
3626 |
msgid "Above Heading"
|
3627 |
msgstr "Powyżej nagłówka"
|
3628 |
|
3629 |
# @ fl-builder
|
3630 |
-
#: modules/callout/callout.php:
|
3631 |
msgid "Below Heading"
|
3632 |
msgstr "Poniżej nagłówka"
|
3633 |
|
3634 |
# @ fl-builder
|
3635 |
-
#: modules/callout/callout.php:
|
3636 |
msgid "Left of Text and Heading"
|
3637 |
msgstr "Po lewej stronie tekstu i nagłówka"
|
3638 |
|
3639 |
# @ fl-builder
|
3640 |
-
#: modules/callout/callout.php:
|
3641 |
msgid "Right of Text and Heading"
|
3642 |
msgstr "Po prawej stronie tekstu i nagłówka"
|
3643 |
|
3644 |
# @ fl-builder
|
3645 |
-
#: modules/callout/callout.php:
|
3646 |
msgid "Left of Heading"
|
3647 |
msgstr "Po lewej stronie nagłówka"
|
3648 |
|
3649 |
# @ fl-builder
|
3650 |
-
#: modules/callout/callout.php:
|
3651 |
msgid "Right of Heading"
|
3652 |
msgstr "Po proawej stronie nagłówka"
|
3653 |
|
3654 |
# @ fl-builder
|
3655 |
-
#: modules/callout/callout.php:
|
3656 |
msgid "Icon Colors"
|
3657 |
msgstr "Kolory ikon"
|
3658 |
|
3659 |
# @ fl-builder
|
3660 |
-
#: modules/callout/callout.php:
|
3661 |
#: modules/icon/icon.php:87
|
3662 |
msgid "Hover Color"
|
3663 |
msgstr "Kolor po najechaniu myszką"
|
3664 |
|
3665 |
# @ fl-builder
|
3666 |
-
#: modules/callout/callout.php:
|
3667 |
msgid "Icon Structure"
|
3668 |
msgstr "Struktura ikon"
|
3669 |
|
3670 |
# @ fl-builder
|
3671 |
-
#: modules/callout/callout.php:
|
3672 |
-
#: modules/icon/icon.php:122 modules/post-
|
|
|
3673 |
msgid "Size"
|
3674 |
msgstr "Rozmiar"
|
3675 |
|
3676 |
# @ fl-builder
|
3677 |
-
#: modules/callout/callout.php:
|
3678 |
-
#: modules/content-slider/content-slider.php:
|
3679 |
msgid "Call To Action"
|
3680 |
msgstr "Wezwanie Do Akcji"
|
3681 |
|
3682 |
# @ fl-builder
|
3683 |
-
#: modules/callout/callout.php:
|
3684 |
msgid ""
|
3685 |
"The link applies to the entire module. If choosing a call to action type "
|
3686 |
"below, this link will also be used for the text or button."
|
@@ -3689,48 +3867,59 @@ msgstr ""
|
|
3689 |
"do akcji, ten link będzie również użyty do tekstu lub przycisku."
|
3690 |
|
3691 |
# @ fl-builder
|
3692 |
-
#: modules/callout/callout.php:
|
3693 |
-
#: modules/content-slider/content-slider.php:
|
3694 |
msgid "Call to Action"
|
3695 |
msgstr "Wezwanie do akcji"
|
3696 |
|
3697 |
# @ fl-builder
|
3698 |
-
#: modules/callout/callout.php:
|
3699 |
-
#: modules/content-slider/content-slider.php:
|
3700 |
msgctxt "Call to action."
|
3701 |
msgid "None"
|
3702 |
msgstr "Brak"
|
3703 |
|
3704 |
# @ fl-builder
|
3705 |
-
#: modules/callout/callout.php:
|
3706 |
-
#: modules/
|
3707 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3708 |
msgid "Button Icon"
|
3709 |
msgstr "Ikona przycisku"
|
3710 |
|
|
|
|
|
|
|
|
|
|
|
3711 |
# @ fl-builder
|
3712 |
-
#: modules/callout/callout.php:
|
3713 |
-
#: modules/content-slider/content-slider.php:
|
3714 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3715 |
msgid "Button Colors"
|
3716 |
msgstr "Kolory przycisku"
|
3717 |
|
3718 |
# @ fl-builder
|
3719 |
-
#: modules/callout/callout.php:
|
3720 |
-
#: modules/content-slider/content-slider.php:
|
3721 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3722 |
msgid "Button Style"
|
3723 |
msgstr "Styl przycisku"
|
3724 |
|
3725 |
# @ fl-builder
|
3726 |
-
#: modules/callout/callout.php:
|
3727 |
-
#: modules/content-slider/content-slider.php:
|
3728 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3729 |
msgid "Button Structure"
|
3730 |
msgstr "Struktura przycisku"
|
3731 |
|
3732 |
# @ fl-builder
|
3733 |
-
#: modules/callout/callout.php:
|
3734 |
msgid "Button Width"
|
3735 |
msgstr "Szerokość przycisku"
|
3736 |
|
@@ -3770,7 +3959,7 @@ msgstr ""
|
|
3770 |
"Formularz będzie wysyłał wiadomości na adres e-mail, który podasz w tym polu"
|
3771 |
|
3772 |
#: modules/contact-form/contact-form.php:75
|
3773 |
-
#: modules/subscribe-form/subscribe-form.php:
|
3774 |
msgid "Name Field"
|
3775 |
msgstr "Pole na imię"
|
3776 |
|
@@ -3779,10 +3968,21 @@ msgstr "Pole na imię"
|
|
3779 |
#: modules/contact-form/contact-form.php:87
|
3780 |
#: modules/contact-form/contact-form.php:96
|
3781 |
#: modules/contact-form/contact-form.php:105
|
3782 |
-
#: modules/post-
|
3783 |
-
#: modules/post-
|
3784 |
-
#: modules/post-
|
3785 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3786 |
msgid "Show"
|
3787 |
msgstr "Pokaż"
|
3788 |
|
@@ -3791,10 +3991,21 @@ msgstr "Pokaż"
|
|
3791 |
#: modules/contact-form/contact-form.php:88
|
3792 |
#: modules/contact-form/contact-form.php:97
|
3793 |
#: modules/contact-form/contact-form.php:106
|
3794 |
-
#: modules/post-
|
3795 |
-
#: modules/post-
|
3796 |
-
#: modules/post-
|
3797 |
-
#: modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3798 |
msgid "Hide"
|
3799 |
msgstr "Nie pokazuj"
|
3800 |
|
@@ -3835,11 +4046,6 @@ msgstr "Temat"
|
|
3835 |
msgid "Please enter a subject."
|
3836 |
msgstr "Proszę wpisać temat."
|
3837 |
|
3838 |
-
# @ fl-builder
|
3839 |
-
#: modules/contact-form/includes/frontend.php:21
|
3840 |
-
msgid "Email"
|
3841 |
-
msgstr "E-mail"
|
3842 |
-
|
3843 |
# @ fl-builder
|
3844 |
#: modules/contact-form/includes/frontend.php:22
|
3845 |
msgid "Please enter a valid email."
|
@@ -3900,13 +4106,14 @@ msgid "Displays multiple slides with an optional heading and call to action."
|
|
3900 |
msgstr "Wyświetla slajdy z opcjonalnym nagłówkiem i wezwaniem do akcji."
|
3901 |
|
3902 |
# @ fl-builder
|
3903 |
-
#: modules/content-slider/content-slider.php:
|
3904 |
-
#: modules/
|
|
|
3905 |
msgid "Height"
|
3906 |
msgstr "Wysokość"
|
3907 |
|
3908 |
# @ fl-builder
|
3909 |
-
#: modules/content-slider/content-slider.php:
|
3910 |
msgid ""
|
3911 |
"This setting is the minimum height of the content slider. Content will "
|
3912 |
"expand the height automatically."
|
@@ -3915,68 +4122,74 @@ msgstr ""
|
|
3915 |
"dopasowywana przez treść w sliderze."
|
3916 |
|
3917 |
# @ fl-builder
|
3918 |
-
#: modules/content-slider/content-slider.php:
|
3919 |
-
#: modules/
|
3920 |
-
#: modules/
|
|
|
3921 |
msgid "Auto Play"
|
3922 |
msgstr "Autoodtwarzanie"
|
3923 |
|
3924 |
# @ fl-builder
|
3925 |
-
#: modules/content-slider/content-slider.php:
|
3926 |
msgid "Show Play/Pause"
|
3927 |
msgstr "Pokaż Start/Stop"
|
3928 |
|
3929 |
# @ fl-builder
|
3930 |
-
#: modules/content-slider/content-slider.php:
|
3931 |
#: modules/testimonials/testimonials.php:102
|
3932 |
msgctxt "Transition type."
|
3933 |
msgid "Slide"
|
3934 |
msgstr "Wjazd"
|
3935 |
|
3936 |
# @ fl-builder
|
3937 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
3938 |
#: modules/testimonials/testimonials.php:121
|
3939 |
msgid "Show Arrows"
|
3940 |
msgstr "Pokaż strzałki"
|
3941 |
|
3942 |
# @ fl-builder
|
3943 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
3944 |
#: modules/testimonials/testimonials.php:151
|
3945 |
msgid "Show Dots"
|
3946 |
msgstr "Pokaż kropki"
|
3947 |
|
3948 |
# @ fl-builder
|
3949 |
-
#: modules/content-slider/content-slider.php:
|
3950 |
msgid "Max Content Width"
|
3951 |
msgstr "Maksymalna szerokość treści"
|
3952 |
|
3953 |
# @ fl-builder
|
3954 |
-
#: modules/content-slider/content-slider.php:
|
3955 |
msgid "The max width that the content area will be within your slides."
|
3956 |
msgstr "Maksymalna szerokość dla treści slajdów"
|
3957 |
|
3958 |
# @ fl-builder
|
3959 |
-
#: modules/content-slider/content-slider.php:
|
3960 |
msgid "Slides"
|
3961 |
msgstr "Slajdy"
|
3962 |
|
3963 |
# @ fl-builder
|
3964 |
-
#: modules/content-slider/content-slider.php:
|
|
|
3965 |
msgid "Slide"
|
3966 |
msgstr "Slajd"
|
3967 |
|
3968 |
# @ fl-builder
|
3969 |
-
#: modules/content-slider/content-slider.php:
|
3970 |
msgid "Slide Settings"
|
3971 |
msgstr "Ustawienia slajdu"
|
3972 |
|
3973 |
# @ fl-builder
|
3974 |
-
#: modules/content-slider/content-slider.php:
|
3975 |
msgid "Slide Label"
|
3976 |
msgstr "Nazwa slajdu"
|
3977 |
|
3978 |
# @ fl-builder
|
3979 |
-
#: modules/content-slider/content-slider.php:
|
3980 |
msgid ""
|
3981 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
3982 |
"settings."
|
@@ -3984,27 +4197,27 @@ msgstr ""
|
|
3984 |
"Nazwa slajdu pozoli Ci zidentyfikować go na karcie Slajdy w ustawieniach."
|
3985 |
|
3986 |
# @ fl-builder
|
3987 |
-
#: modules/content-slider/content-slider.php:
|
3988 |
msgid "Background Layout"
|
3989 |
msgstr "Układ tła"
|
3990 |
|
3991 |
# @ fl-builder
|
3992 |
-
#: modules/content-slider/content-slider.php:
|
3993 |
msgid "This setting is for the entire background of your slide."
|
3994 |
msgstr "Ustaw tło dla całej strony."
|
3995 |
|
3996 |
# @ fl-builder
|
3997 |
-
#: modules/content-slider/content-slider.php:
|
3998 |
msgid "Background Video Code"
|
3999 |
msgstr "Kod wideo w tle"
|
4000 |
|
4001 |
# @ fl-builder
|
4002 |
-
#: modules/content-slider/content-slider.php:
|
4003 |
msgid "Content Layout"
|
4004 |
msgstr "Układ treści"
|
4005 |
|
4006 |
# @ fl-builder
|
4007 |
-
#: modules/content-slider/content-slider.php:
|
4008 |
msgid ""
|
4009 |
"This allows you to add content over or in addition to the background "
|
4010 |
"selection above. The location of the content layout can be selected in the "
|
@@ -4014,92 +4227,100 @@ msgstr ""
|
|
4014 |
"w zakłądce Styl."
|
4015 |
|
4016 |
# @ fl-builder
|
4017 |
-
#: modules/content-slider/content-slider.php:
|
4018 |
msgid "Text & Photo"
|
4019 |
msgstr "Tekst & Zdjęcie"
|
4020 |
|
4021 |
# @ fl-builder
|
4022 |
-
#: modules/content-slider/content-slider.php:
|
4023 |
msgid "Text & Video"
|
4024 |
msgstr "Tekst & Wideo"
|
4025 |
|
4026 |
# @ fl-builder
|
4027 |
-
#: modules/content-slider/content-slider.php:
|
4028 |
msgctxt "Content type."
|
4029 |
msgid "None"
|
4030 |
msgstr "Brak"
|
4031 |
|
4032 |
# @ fl-builder
|
4033 |
-
#: modules/content-slider/content-slider.php:
|
4034 |
msgid "Video Embed Code"
|
4035 |
msgstr "Kod osadzenia wideo"
|
4036 |
|
4037 |
# @ fl-builder
|
4038 |
-
#: modules/content-slider/content-slider.php:
|
4039 |
msgid "Text Position"
|
4040 |
msgstr "Pozycja tekstu"
|
4041 |
|
4042 |
# @ fl-builder
|
4043 |
-
#: modules/content-slider/content-slider.php:
|
4044 |
msgid ""
|
4045 |
"The position will move the content layout selections left, right or center "
|
4046 |
"over the background of the slide."
|
4047 |
msgstr "Ustaw treść slajdu po prawej, po lewej lub na środku slajdu."
|
4048 |
|
4049 |
# @ fl-builder
|
4050 |
-
#: modules/content-slider/content-slider.php:
|
4051 |
msgid "Top Margin"
|
4052 |
msgstr "Górny mrgines"
|
4053 |
|
4054 |
# @ fl-builder
|
4055 |
-
#: modules/content-slider/content-slider.php:
|
4056 |
msgid "Bottom Margin"
|
4057 |
msgstr "Dolny margines"
|
4058 |
|
4059 |
# @ fl-builder
|
4060 |
-
#: modules/content-slider/content-slider.php:
|
4061 |
msgid "Left Margin"
|
4062 |
msgstr "Lewy margines"
|
4063 |
|
4064 |
# @ fl-builder
|
4065 |
-
#: modules/content-slider/content-slider.php:
|
4066 |
msgid "Right Margin"
|
4067 |
msgstr "Prawy margines"
|
4068 |
|
4069 |
# @ fl-builder
|
4070 |
-
#: modules/content-slider/content-slider.php:
|
4071 |
msgid "Text Colors"
|
4072 |
msgstr "Kolory tekstu"
|
4073 |
|
4074 |
# @ fl-builder
|
4075 |
-
#: modules/content-slider/content-slider.php:
|
4076 |
msgid "Text Shadow"
|
4077 |
msgstr "Cień teksti"
|
4078 |
|
4079 |
# @ fl-builder
|
4080 |
-
#: modules/content-slider/content-slider.php:
|
4081 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
4082 |
msgid "Text Background Color"
|
4083 |
msgstr "Kolor tła pod tekstem"
|
4084 |
|
4085 |
# @ fl-builder
|
4086 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
4087 |
msgid ""
|
4088 |
"The color applies to the overlay behind text over the background selections."
|
4089 |
msgstr "Kolor tła pod tekstem"
|
4090 |
|
4091 |
# @ fl-builder
|
4092 |
-
#: modules/content-slider/content-slider.php:
|
|
|
|
|
4093 |
msgid "Text Background Opacity"
|
4094 |
msgstr "Krycie koloru pod tekstem"
|
4095 |
|
4096 |
# @ fl-builder
|
4097 |
-
#: modules/content-slider/content-slider.php:
|
|
|
4098 |
msgid "Text Background Height"
|
4099 |
msgstr "Wysokość tła pod tekstem"
|
4100 |
|
4101 |
# @ fl-builder
|
4102 |
-
#: modules/content-slider/content-slider.php:
|
|
|
4103 |
msgid ""
|
4104 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
4105 |
"will fit the overlay to the top and bottom of the slide."
|
@@ -4108,13 +4329,14 @@ msgstr ""
|
|
4108 |
"tak, aby rozciągało się od górnej do dolnej krawędzi slajdu."
|
4109 |
|
4110 |
# @ fl-builder
|
4111 |
-
#: modules/content-slider/content-slider.php:
|
|
|
4112 |
msgctxt "Background height."
|
4113 |
msgid "Auto"
|
4114 |
msgstr "Automatyczna"
|
4115 |
|
4116 |
# @ fl-builder
|
4117 |
-
#: modules/content-slider/content-slider.php:
|
4118 |
msgid ""
|
4119 |
"The link applies to the entire slide. If choosing a call to action type "
|
4120 |
"below, this link will also be used for the text or button."
|
@@ -4123,23 +4345,23 @@ msgstr ""
|
|
4123 |
"będzie też podłaczony do tekstu i przycisku."
|
4124 |
|
4125 |
# @ fl-builder
|
4126 |
-
#: modules/content-slider/content-slider.php:
|
4127 |
msgid "Border Radius"
|
4128 |
msgstr "Promień obramowania"
|
4129 |
|
4130 |
# @ fl-builder
|
4131 |
-
#: modules/content-slider/content-slider.php:
|
4132 |
msgctxt "Module settings form tab. Display on mobile devices."
|
4133 |
msgid "Mobile"
|
4134 |
msgstr "Urządzenia mobilne"
|
4135 |
|
4136 |
# @ fl-builder
|
4137 |
-
#: modules/content-slider/content-slider.php:
|
4138 |
msgid "Mobile Photo"
|
4139 |
msgstr "Zdjęcie na urządzeniach mobilnych"
|
4140 |
|
4141 |
# @ fl-builder
|
4142 |
-
#: modules/content-slider/content-slider.php:
|
4143 |
msgid ""
|
4144 |
"You can choose a different photo that the slide will change to on mobile "
|
4145 |
"devices or no photo if desired."
|
@@ -4148,22 +4370,22 @@ msgstr ""
|
|
4148 |
"mobilnych."
|
4149 |
|
4150 |
# @ fl-builder
|
4151 |
-
#: modules/content-slider/content-slider.php:
|
4152 |
msgid "Use Main Photo"
|
4153 |
msgstr "Uzyj głównego zdjęcia"
|
4154 |
|
4155 |
# @ fl-builder
|
4156 |
-
#: modules/content-slider/content-slider.php:
|
4157 |
msgid "Choose Another Photo"
|
4158 |
msgstr "Wybierz inne zdjęcie"
|
4159 |
|
4160 |
# @ fl-builder
|
4161 |
-
#: modules/content-slider/content-slider.php:
|
4162 |
msgid "No Photo"
|
4163 |
msgstr "Brak zdjęcia"
|
4164 |
|
4165 |
# @ fl-builder
|
4166 |
-
#: modules/content-slider/content-slider.php:
|
4167 |
msgid "Mobile Text Colors"
|
4168 |
msgstr "Kolory tekstu na urządzeniach mobilnych"
|
4169 |
|
@@ -4173,46 +4395,49 @@ msgid "Display a heading, subheading and a button."
|
|
4173 |
msgstr "Wyświetl nagłówek, podtytuł i przycisk."
|
4174 |
|
4175 |
# @ fl-builder
|
4176 |
-
#: modules/cta/cta.php:
|
4177 |
msgid "Ready to find out more?"
|
4178 |
msgstr "Gotowy dowiedzieć się więcej?"
|
4179 |
|
4180 |
# @ fl-builder
|
4181 |
-
#: modules/cta/cta.php:
|
4182 |
msgid "Drop us a line today for a free quote!"
|
4183 |
msgstr "Napisz do nas, aby otrzymać bezpłatną wycenę!"
|
4184 |
|
4185 |
# @ fl-builder
|
4186 |
-
#: modules/cta/cta.php:
|
4187 |
-
#: modules/post-
|
4188 |
-
#: modules/
|
|
|
|
|
4189 |
#: modules/testimonials/testimonials.php:37
|
4190 |
#: modules/woocommerce/woocommerce.php:57
|
4191 |
msgid "Layout"
|
4192 |
msgstr "Układ"
|
4193 |
|
4194 |
# @ fl-builder
|
4195 |
-
#: modules/cta/cta.php:
|
4196 |
msgid "Inline"
|
4197 |
msgstr "W linii"
|
4198 |
|
4199 |
# @ fl-builder
|
4200 |
-
#: modules/cta/cta.php:
|
4201 |
msgid "Stacked"
|
4202 |
msgstr "Przycisk pod tekstem"
|
4203 |
|
4204 |
# @ fl-builder
|
4205 |
-
#: modules/cta/cta.php:
|
4206 |
msgid "Spacing"
|
4207 |
msgstr "Odstępy"
|
4208 |
|
4209 |
# @ fl-builder
|
4210 |
-
#: modules/cta/cta.php:
|
4211 |
msgid "Button Link"
|
4212 |
msgstr "Link przycisku"
|
4213 |
|
4214 |
# @ fl-builder
|
4215 |
-
#: modules/gallery/gallery.php:14 modules/post-
|
|
|
4216 |
msgid "Gallery"
|
4217 |
msgstr "Galeria"
|
4218 |
|
@@ -4222,66 +4447,66 @@ msgid "Display multiple photos in a gallery view."
|
|
4222 |
msgstr "Wyświetl wiele zdjęć w widoku galerii."
|
4223 |
|
4224 |
# @ fl-builder
|
4225 |
-
#: modules/gallery/gallery.php:
|
4226 |
msgid "Collage"
|
4227 |
msgstr "Kolaż"
|
4228 |
|
4229 |
# @ fl-builder
|
4230 |
-
#: modules/gallery/gallery.php:
|
4231 |
msgctxt "Gallery layout: thumbnails."
|
4232 |
msgid "Thumbs"
|
4233 |
msgstr "Miniatury"
|
4234 |
|
4235 |
# @ fl-builder
|
4236 |
-
#: modules/gallery/gallery.php:
|
4237 |
msgid "Photo Size"
|
4238 |
msgstr "Rozmiar zdjęcia"
|
4239 |
|
4240 |
# @ fl-builder
|
4241 |
-
#: modules/gallery/gallery.php:
|
4242 |
msgctxt "Photo size."
|
4243 |
msgid "Small"
|
4244 |
msgstr "Małe"
|
4245 |
|
4246 |
# @ fl-builder
|
4247 |
-
#: modules/gallery/gallery.php:
|
4248 |
msgctxt "Photo size."
|
4249 |
msgid "Medium"
|
4250 |
msgstr "Średnie"
|
4251 |
|
4252 |
# @ fl-builder
|
4253 |
-
#: modules/gallery/gallery.php:
|
4254 |
msgctxt "Photo size."
|
4255 |
msgid "Large"
|
4256 |
msgstr "Duże"
|
4257 |
|
4258 |
# @ fl-builder
|
4259 |
-
#: modules/gallery/gallery.php:
|
4260 |
msgid "Photo Spacing"
|
4261 |
msgstr "Odstępy"
|
4262 |
|
4263 |
# @ fl-builder
|
4264 |
-
#: modules/gallery/gallery.php:
|
4265 |
msgid "Show Captions"
|
4266 |
msgstr "Pokazuj etykiety"
|
4267 |
|
4268 |
# @ fl-builder
|
4269 |
-
#: modules/gallery/gallery.php:
|
4270 |
msgid "Never"
|
4271 |
msgstr "Nigdy"
|
4272 |
|
4273 |
# @ fl-builder
|
4274 |
-
#: modules/gallery/gallery.php:
|
4275 |
msgid "On Hover"
|
4276 |
msgstr "Po najehcniu myszką"
|
4277 |
|
4278 |
# @ fl-builder
|
4279 |
-
#: modules/gallery/gallery.php:
|
4280 |
msgid "Below Photo"
|
4281 |
msgstr "Poniżej zdjęcia"
|
4282 |
|
4283 |
# @ fl-builder
|
4284 |
-
#: modules/gallery/gallery.php:
|
4285 |
msgid ""
|
4286 |
"The caption pulls from whatever text you put in the caption area in the "
|
4287 |
"media manager for each image. The caption is also pulled directly from "
|
@@ -4292,23 +4517,23 @@ msgstr ""
|
|
4292 |
"w swojej glerii masz wpisane etykiety."
|
4293 |
|
4294 |
# @ fl-builder
|
4295 |
-
#: modules/gallery/gallery.php:
|
4296 |
msgid "Click Action"
|
4297 |
msgstr "Akcja po kliknięciu"
|
4298 |
|
4299 |
# @ fl-builder
|
4300 |
-
#: modules/gallery/gallery.php:
|
4301 |
msgctxt "Click action."
|
4302 |
msgid "None"
|
4303 |
msgstr "Brak"
|
4304 |
|
4305 |
# @ fl-builder
|
4306 |
-
#: modules/gallery/gallery.php:
|
4307 |
msgid "Lightbox"
|
4308 |
msgstr "Lightbox"
|
4309 |
|
4310 |
# @ fl-builder
|
4311 |
-
#: modules/gallery/gallery.php:
|
4312 |
msgid "Photo Link"
|
4313 |
msgstr "Link zdjęcia"
|
4314 |
|
@@ -4393,59 +4618,59 @@ msgid "Upload a photo or display one from the media library."
|
|
4393 |
msgstr "Wczytaj zdjęcie z dysku lub wybierz z Biblioteki Mediów."
|
4394 |
|
4395 |
# @ fl-builder
|
4396 |
-
#: modules/photo/photo.php:
|
4397 |
msgid "Photo Source"
|
4398 |
msgstr "Źródło zdjęcia"
|
4399 |
|
4400 |
# @ fl-builder
|
4401 |
-
#: modules/photo/photo.php:
|
4402 |
msgid "URL"
|
4403 |
msgstr "URL"
|
4404 |
|
4405 |
# @ fl-builder
|
4406 |
-
#: modules/photo/photo.php:
|
4407 |
msgid "Photo URL"
|
4408 |
msgstr "URL zdjęcia"
|
4409 |
|
4410 |
# @ fl-builder
|
4411 |
-
#: modules/photo/photo.php:
|
4412 |
msgid "http://www.example.com/my-photo.jpg"
|
4413 |
msgstr "http://www.przyklad.pl/moje-zdjecie.jpg"
|
4414 |
|
4415 |
# @ fl-builder
|
4416 |
-
#: modules/photo/photo.php:
|
4417 |
msgctxt "Crop."
|
4418 |
msgid "None"
|
4419 |
msgstr "Brak"
|
4420 |
|
4421 |
# @ fl-builder
|
4422 |
-
#: modules/photo/photo.php:
|
4423 |
msgid "Caption"
|
4424 |
msgstr "Etykieta"
|
4425 |
|
4426 |
# @ fl-builder
|
4427 |
-
#: modules/photo/photo.php:
|
4428 |
msgid "Show Caption"
|
4429 |
msgstr "Pokaż etykietę"
|
4430 |
|
4431 |
# @ fl-builder
|
4432 |
-
#: modules/photo/photo.php:
|
4433 |
msgid "Link Type"
|
4434 |
msgstr "Rozdaj linka"
|
4435 |
|
4436 |
# @ fl-builder
|
4437 |
-
#: modules/photo/photo.php:
|
4438 |
msgctxt "Link type."
|
4439 |
msgid "None"
|
4440 |
msgstr "Brak"
|
4441 |
|
4442 |
# @ fl-builder
|
4443 |
-
#: modules/photo/photo.php:
|
4444 |
msgid "Photo File"
|
4445 |
msgstr "Plik zdjęcia"
|
4446 |
|
4447 |
# @ fl-builder
|
4448 |
-
#: modules/photo/photo.php:
|
4449 |
msgid ""
|
4450 |
"Link type applies to how the image should be linked on click. You can choose "
|
4451 |
"a specific URL, the individual photo or a separate page with the photo."
|
@@ -4455,28 +4680,171 @@ msgstr ""
|
|
4455 |
"strony ze zdjęciem."
|
4456 |
|
4457 |
# @ fl-builder
|
4458 |
-
#: modules/photo/photo.php:
|
4459 |
msgid "Link URL"
|
4460 |
msgstr "URL linka"
|
4461 |
|
4462 |
# @ fl-builder
|
4463 |
-
#: modules/post-
|
4464 |
-
|
4465 |
-
msgstr "Nie znaleziono postów"
|
4466 |
-
|
4467 |
-
# @ fl-builder
|
4468 |
#: modules/post-grid/includes/post-feed.php:14
|
4469 |
#: modules/post-grid/includes/post-grid.php:24
|
|
|
4470 |
#, php-format
|
4471 |
msgctxt "%s stands for author name."
|
4472 |
msgid "By %s"
|
4473 |
msgstr "Autor: %s"
|
4474 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4475 |
# @ fl-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4476 |
#: modules/post-grid/post-grid.php:14
|
4477 |
msgid "Posts"
|
4478 |
msgstr "Posty"
|
4479 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4480 |
# @ fl-builder
|
4481 |
#: modules/post-grid/post-grid.php:15
|
4482 |
msgid "Display a grid of your WordPress posts."
|
@@ -4487,103 +4855,110 @@ msgstr "Wyświetl wordpressowe posty."
|
|
4487 |
msgid "Layout Style"
|
4488 |
msgstr "Styl układu"
|
4489 |
|
4490 |
-
# @ fl-builder
|
4491 |
-
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
|
4492 |
-
msgid "Grid"
|
4493 |
-
msgstr "Siatka"
|
4494 |
-
|
4495 |
# @ fl-builder
|
4496 |
#: modules/post-grid/post-grid.php:56
|
4497 |
msgid "Feed"
|
4498 |
msgstr "Kanał"
|
4499 |
|
4500 |
# @ fl-builder
|
4501 |
-
#: modules/post-grid/post-grid.php:
|
4502 |
msgid "Pagination Style"
|
4503 |
msgstr "Styl paginacji"
|
4504 |
|
4505 |
# @ fl-builder
|
4506 |
-
#: modules/post-grid/post-grid.php:
|
4507 |
msgid "Numbers"
|
4508 |
msgstr "Liczby"
|
4509 |
|
4510 |
# @ fl-builder
|
4511 |
-
#: modules/post-grid/post-grid.php:
|
4512 |
msgctxt "Pagination style."
|
4513 |
msgid "None"
|
4514 |
msgstr "Brak"
|
4515 |
|
4516 |
# @ fl-builder
|
4517 |
-
#: modules/post-grid/post-grid.php:
|
4518 |
msgid "Posts Per Page"
|
4519 |
msgstr "Ilość postów na stronie"
|
4520 |
|
4521 |
# @ fl-builder
|
4522 |
-
#: modules/post-grid/post-grid.php:
|
4523 |
msgid "Post Width"
|
4524 |
msgstr "Szerokość postów"
|
4525 |
|
4526 |
# @ fl-builder
|
4527 |
-
#: modules/post-grid/post-grid.php:
|
4528 |
-
msgid "Post Spacing"
|
4529 |
-
msgstr "Odstępy posta"
|
4530 |
-
|
4531 |
-
# @ fl-builder
|
4532 |
-
#: modules/post-grid/post-grid.php:109
|
4533 |
-
msgid "Featured Image"
|
4534 |
-
msgstr "Obraz wpisu"
|
4535 |
-
|
4536 |
-
# @ fl-builder
|
4537 |
-
#: modules/post-grid/post-grid.php:130
|
4538 |
-
msgid "Above Text"
|
4539 |
-
msgstr "Nad tekstem"
|
4540 |
-
|
4541 |
-
# @ fl-builder
|
4542 |
-
#: modules/post-grid/post-grid.php:131
|
4543 |
msgid "Beside Text"
|
4544 |
msgstr "Przy tekście"
|
4545 |
|
4546 |
# @ fl-builder
|
4547 |
-
#: modules/post-grid/post-grid.php:
|
4548 |
-
msgid "Post Info"
|
4549 |
-
msgstr "Informacje o poście"
|
4550 |
-
|
4551 |
-
# @ fl-builder
|
4552 |
-
#: modules/post-grid/post-grid.php:169
|
4553 |
-
msgid "Date Format"
|
4554 |
-
msgstr "Format daty"
|
4555 |
-
|
4556 |
-
# @ fl-builder
|
4557 |
-
#: modules/post-grid/post-grid.php:185
|
4558 |
msgid "Comments"
|
4559 |
msgstr "Komentarze"
|
4560 |
|
4561 |
-
#: modules/post-grid/post-grid.php:
|
4562 |
msgid "Content Type"
|
4563 |
msgstr "Typ treści"
|
4564 |
|
4565 |
-
#: modules/post-grid/post-grid.php:
|
4566 |
msgid "Excerpt"
|
4567 |
msgstr "Wypis (fragment wpisu)"
|
4568 |
|
4569 |
-
#: modules/post-grid/post-grid.php:
|
4570 |
msgid "Full Text"
|
4571 |
msgstr "Pełna treść wpisu"
|
4572 |
|
4573 |
-
|
4574 |
-
|
4575 |
-
|
4576 |
-
msgstr "Czytaj więcej"
|
4577 |
|
4578 |
-
|
4579 |
-
|
4580 |
-
|
4581 |
-
msgstr "Tekst linka Czytaj więcej"
|
4582 |
|
4583 |
-
|
4584 |
-
|
4585 |
-
|
4586 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4587 |
|
4588 |
# @ fl-builder
|
4589 |
#: modules/pricing-table/pricing-table.php:14
|
@@ -4685,7 +5060,7 @@ msgstr "Rozmiar ceny"
|
|
4685 |
|
4686 |
# @ fl-builder
|
4687 |
#: modules/pricing-table/pricing-table.php:133
|
4688 |
-
#: modules/subscribe-form/subscribe-form.php:
|
4689 |
msgid "Button Text"
|
4690 |
msgstr "Tekst przycisku"
|
4691 |
|
@@ -4779,24 +5154,24 @@ msgid "Display multiple photos in a slideshow view."
|
|
4779 |
msgstr "Wyświetla wiele zdjęć w formie pokazu slajdów."
|
4780 |
|
4781 |
# @ fl-builder
|
4782 |
-
#: modules/slideshow/slideshow.php:
|
4783 |
msgid "Skin Color"
|
4784 |
msgstr "Kolor skórki"
|
4785 |
|
4786 |
# @ fl-builder
|
4787 |
-
#: modules/slideshow/slideshow.php:
|
4788 |
msgctxt "Color."
|
4789 |
msgid "Light"
|
4790 |
msgstr "Jasny"
|
4791 |
|
4792 |
# @ fl-builder
|
4793 |
-
#: modules/slideshow/slideshow.php:
|
4794 |
msgctxt "Color."
|
4795 |
msgid "Dark"
|
4796 |
msgstr "Ciemny"
|
4797 |
|
4798 |
# @ fl-builder
|
4799 |
-
#: modules/slideshow/slideshow.php:
|
4800 |
msgid ""
|
4801 |
"If your overall theme/images are lighter in color, light will display "
|
4802 |
"buttons in a darker color scheme and vice versa for dark."
|
@@ -4806,7 +5181,7 @@ msgstr ""
|
|
4806 |
"szablonu."
|
4807 |
|
4808 |
# @ fl-builder
|
4809 |
-
#: modules/slideshow/slideshow.php:
|
4810 |
msgid ""
|
4811 |
"Crop set to no will fit the slideshow images to the height you specify and "
|
4812 |
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
@@ -4819,39 +5194,39 @@ msgstr ""
|
|
4819 |
"wypełnić wysokość podaną w polu Wysokość."
|
4820 |
|
4821 |
# @ fl-builder
|
4822 |
-
#: modules/slideshow/slideshow.php:
|
4823 |
msgid "Disable Right-Click"
|
4824 |
msgstr "Wyłącz prawy przycisk myszki"
|
4825 |
|
4826 |
# @ fl-builder
|
4827 |
-
#: modules/slideshow/slideshow.php:
|
4828 |
msgctxt "Click action type."
|
4829 |
msgid "None"
|
4830 |
msgstr "Wyłączone"
|
4831 |
|
4832 |
# @ fl-builder
|
4833 |
-
#: modules/slideshow/slideshow.php:
|
4834 |
msgid "Playback"
|
4835 |
msgstr "Odtwarzanie"
|
4836 |
|
4837 |
# @ fl-builder
|
4838 |
-
#: modules/slideshow/slideshow.php:
|
4839 |
msgctxt "Slideshow transition."
|
4840 |
msgid "None"
|
4841 |
msgstr "Brak"
|
4842 |
|
4843 |
# @ fl-builder
|
4844 |
-
#: modules/slideshow/slideshow.php:
|
4845 |
msgid "Controls"
|
4846 |
msgstr "Kontrolki"
|
4847 |
|
4848 |
# @ fl-builder
|
4849 |
-
#: modules/slideshow/slideshow.php:
|
4850 |
msgid "Navigation Arrows"
|
4851 |
msgstr "Strzałki"
|
4852 |
|
4853 |
# @ fl-builder
|
4854 |
-
#: modules/slideshow/slideshow.php:
|
4855 |
msgid ""
|
4856 |
"Navigational arrows allow the visitor to freely move through the images in "
|
4857 |
"your slideshow. These are larger arrows that overlay your slideshow images "
|
@@ -4862,83 +5237,83 @@ msgstr ""
|
|
4862 |
"lewej strony."
|
4863 |
|
4864 |
# @ fl-builder
|
4865 |
-
#: modules/slideshow/slideshow.php:
|
4866 |
msgid "Control Bar"
|
4867 |
msgstr "Pasek nawigacyjny"
|
4868 |
|
4869 |
# @ fl-builder
|
4870 |
-
#: modules/slideshow/slideshow.php:
|
4871 |
msgid "Nav Type"
|
4872 |
msgstr "Typ nawigacji"
|
4873 |
|
4874 |
# @ fl-builder
|
4875 |
-
#: modules/slideshow/slideshow.php:
|
4876 |
msgctxt "Nav type."
|
4877 |
msgid "None"
|
4878 |
msgstr "Brak"
|
4879 |
|
4880 |
# @ fl-builder
|
4881 |
-
#: modules/slideshow/slideshow.php:
|
4882 |
msgid "Buttons"
|
4883 |
msgstr "Przyciski"
|
4884 |
|
4885 |
# @ fl-builder
|
4886 |
-
#: modules/slideshow/slideshow.php:
|
4887 |
msgid "Thumbs"
|
4888 |
msgstr "Miniaturki"
|
4889 |
|
4890 |
# @ fl-builder
|
4891 |
-
#: modules/slideshow/slideshow.php:
|
4892 |
msgid "Nav Position"
|
4893 |
msgstr "Pozycja nawigacji"
|
4894 |
|
4895 |
# @ fl-builder
|
4896 |
-
#: modules/slideshow/slideshow.php:
|
4897 |
msgid "Control Bar Buttons"
|
4898 |
msgstr "Przyciski paska nawigacyjnego"
|
4899 |
|
4900 |
# @ fl-builder
|
4901 |
-
#: modules/slideshow/slideshow.php:
|
4902 |
msgid "Play Button"
|
4903 |
msgstr "Przycisk odtwarzania"
|
4904 |
|
4905 |
# @ fl-builder
|
4906 |
-
#: modules/slideshow/slideshow.php:
|
4907 |
msgid "Fullscreen Button"
|
4908 |
msgstr "Przycisk przełączania na pełny ekran"
|
4909 |
|
4910 |
# @ fl-builder
|
4911 |
-
#: modules/slideshow/slideshow.php:
|
4912 |
msgid "Photo Count"
|
4913 |
msgstr "Liczba zdjęć"
|
4914 |
|
4915 |
# @ fl-builder
|
4916 |
-
#: modules/slideshow/slideshow.php:
|
4917 |
msgid "Thumbs Button"
|
4918 |
msgstr "Przycisk włączania miniaturek"
|
4919 |
|
4920 |
# @ fl-builder
|
4921 |
-
#: modules/slideshow/slideshow.php:
|
4922 |
msgid "Caption Button"
|
4923 |
msgstr "Przycisk "
|
4924 |
|
4925 |
# @ fl-builder
|
4926 |
-
#: modules/slideshow/slideshow.php:
|
4927 |
msgid "Social Button"
|
4928 |
msgstr "Przycisk portali społecznościowych"
|
4929 |
|
4930 |
# @ fl-builder
|
4931 |
-
#: modules/slideshow/slideshow.php:
|
4932 |
msgid "Control Bar Overlay"
|
4933 |
msgstr "Krycie paska kontroli"
|
4934 |
|
4935 |
# @ fl-builder
|
4936 |
-
#: modules/slideshow/slideshow.php:
|
4937 |
msgid "Overlay Enabled"
|
4938 |
msgstr "Krycie włączone"
|
4939 |
|
4940 |
# @ fl-builder
|
4941 |
-
#: modules/slideshow/slideshow.php:
|
4942 |
msgid ""
|
4943 |
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
4944 |
"your slideshow images or site below the slideshow completely."
|
@@ -4947,12 +5322,12 @@ msgstr ""
|
|
4947 |
"całkowicie obrazy w pokazie slajdów lub obszar pod pokazem slajdów."
|
4948 |
|
4949 |
# @ fl-builder
|
4950 |
-
#: modules/slideshow/slideshow.php:
|
4951 |
msgid "Overlay Hide"
|
4952 |
msgstr "Ukryj krycie"
|
4953 |
|
4954 |
# @ fl-builder
|
4955 |
-
#: modules/slideshow/slideshow.php:
|
4956 |
msgid ""
|
4957 |
"Overlay hide will hide the control bar after however many seconds you "
|
4958 |
"specify below. They will reappear upon mouse over."
|
@@ -4961,37 +5336,37 @@ msgstr ""
|
|
4961 |
"w polu poniżej. Pasek pojawi się ponownie po najechaniu na niego myszką."
|
4962 |
|
4963 |
# @ fl-builder
|
4964 |
-
#: modules/slideshow/slideshow.php:
|
4965 |
msgid "Overlay Hide Delay"
|
4966 |
msgstr "Po jakim czasie ukryć pasek?"
|
4967 |
|
4968 |
# @ fl-builder
|
4969 |
-
#: modules/slideshow/slideshow.php:
|
4970 |
msgid "Thumbs Size"
|
4971 |
msgstr "Romiar miniatur"
|
4972 |
|
4973 |
# @ fl-builder
|
4974 |
-
#: modules/slideshow/slideshow.php:
|
4975 |
msgid "Social"
|
4976 |
msgstr "Społecznościowe"
|
4977 |
|
4978 |
# @ fl-builder
|
4979 |
-
#: modules/slideshow/slideshow.php:
|
4980 |
msgid "Facebook Button"
|
4981 |
msgstr "Przycisk Facebooka"
|
4982 |
|
4983 |
# @ fl-builder
|
4984 |
-
#: modules/slideshow/slideshow.php:
|
4985 |
msgid "Twitter Button"
|
4986 |
msgstr "Przycisk Twittera"
|
4987 |
|
4988 |
# @ fl-builder
|
4989 |
-
#: modules/slideshow/slideshow.php:
|
4990 |
msgid "Google Plus Button"
|
4991 |
msgstr "Przycisk Google Plus"
|
4992 |
|
4993 |
# @ fl-builder
|
4994 |
-
#: modules/slideshow/slideshow.php:
|
4995 |
msgid "Pinterest Button"
|
4996 |
msgstr "Przycisk Pinteresta"
|
4997 |
|
@@ -5055,7 +5430,7 @@ msgstr "Imię"
|
|
5055 |
msgid "Please enter a valid email address."
|
5056 |
msgstr "Podaj poprawny adres e-mail."
|
5057 |
|
5058 |
-
#: modules/subscribe-form/includes/frontend.php:
|
5059 |
msgid "Something went wrong. Please check your entries and try again."
|
5060 |
msgstr ""
|
5061 |
"Coś poszło nie tak. Sprawdź, czy wypełniłeś poprawnie pola i spróbuj "
|
@@ -5069,40 +5444,34 @@ msgstr "Zapis na newsletter/listę e-mailową"
|
|
5069 |
msgid "Adds a simple subscribe form to your layout."
|
5070 |
msgstr "Dodaje prosty formularz zapisu na listę"
|
5071 |
|
5072 |
-
#: modules/subscribe-form/subscribe-form.php:
|
5073 |
-
msgid "There was an error subscribing. Please try again."
|
5074 |
-
msgstr ""
|
5075 |
-
"Wystąpił błąd podczas próby zapisania Cię na listę. Proszę spróbować "
|
5076 |
-
"ponownie."
|
5077 |
-
|
5078 |
-
#: modules/subscribe-form/subscribe-form.php:117
|
5079 |
msgid "Success"
|
5080 |
msgstr "Udany zapis na listę"
|
5081 |
|
5082 |
-
#: modules/subscribe-form/subscribe-form.php:
|
5083 |
msgid "Success Action"
|
5084 |
msgstr "Akcja"
|
5085 |
|
5086 |
-
#: modules/subscribe-form/subscribe-form.php:
|
5087 |
msgid "Show Message"
|
5088 |
msgstr "Pokaż komunikat"
|
5089 |
|
5090 |
-
#: modules/subscribe-form/subscribe-form.php:
|
5091 |
msgid "Redirect"
|
5092 |
msgstr "Przekieruj na stronę"
|
5093 |
|
5094 |
-
#: modules/subscribe-form/subscribe-form.php:
|
5095 |
msgid ""
|
5096 |
"Thanks for subscribing! Please check your email for further instructions."
|
5097 |
msgstr ""
|
5098 |
"Dziękujemy za zapisanie się! Sprawdź swoją skrzynkę e-mail, gdzie znajdziesz "
|
5099 |
"dalsze instrukcje."
|
5100 |
|
5101 |
-
#: modules/subscribe-form/subscribe-form.php:
|
5102 |
msgid "Success URL"
|
5103 |
msgstr "URL po udanym zapisie"
|
5104 |
|
5105 |
-
#: modules/subscribe-form/subscribe-form.php:
|
5106 |
msgid "Subscribe!"
|
5107 |
msgstr "Zapisz się!"
|
5108 |
|
@@ -5196,11 +5565,6 @@ msgctxt "Video preview/fallback image."
|
|
5196 |
msgid "Poster"
|
5197 |
msgstr "Podgląd wideo"
|
5198 |
|
5199 |
-
# @ fl-builder
|
5200 |
-
#: modules/video/video.php:120
|
5201 |
-
msgid "Loop"
|
5202 |
-
msgstr "Zapętlanie"
|
5203 |
-
|
5204 |
# @ fl-builder
|
5205 |
#: modules/widget/includes/frontend.php:35
|
5206 |
#: modules/widget/includes/settings-general.php:46
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: {FL_BUILDER_NAME}\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-08-21 21:32+0200\n"
|
6 |
+
"PO-Revision-Date: 2015-08-21 22:51+0200\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
9 |
+
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"_nx_noop:4c,1,2\n"
|
20 |
"X-Poedit-Basepath: ..\n"
|
21 |
"X-Textdomain-Support: yes\n"
|
|
|
|
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
# @ fl-builder
|
65 |
# @ fl-builder
|
66 |
#: classes/class-fl-builder-admin-settings.php:167
|
67 |
#: modules/icon-group/icon-group.php:27
|
68 |
+
#: modules/post-carousel/post-carousel.php:275
|
69 |
+
#: modules/post-grid/post-grid.php:257
|
70 |
msgid "Icons"
|
71 |
msgstr "Ikony"
|
72 |
|
161 |
|
162 |
# @ fl-builder
|
163 |
#: classes/class-fl-builder-admin.php:253
|
164 |
+
#: classes/class-fl-builder-model.php:3156
|
165 |
msgid "Page Builder"
|
166 |
msgstr "Kreator Stron"
|
167 |
|
168 |
# @ fl-builder
|
169 |
+
#: classes/class-fl-builder-model.php:1616
|
170 |
#, php-format
|
171 |
msgctxt "%s stands for the module filename"
|
172 |
msgid ""
|
177 |
"aby zapewnić kompatybilność z Beaver Buiderem."
|
178 |
|
179 |
# @ fl-builder
|
180 |
+
#: classes/class-fl-builder-model.php:1667
|
181 |
+
#: classes/class-fl-builder-model.php:1728 modules/heading/heading.php:16
|
182 |
#: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
|
183 |
#: modules/separator/separator.php:16 modules/video/video.php:21
|
184 |
msgid "Basic Modules"
|
185 |
msgstr "Moduły Podstawowe"
|
186 |
|
187 |
# @ fl-builder
|
188 |
+
#: classes/class-fl-builder-model.php:1668
|
189 |
+
#: classes/class-fl-builder-model.php:1729 modules/accordion/accordion.php:16
|
190 |
#: modules/button/button.php:16 modules/callout/callout.php:16
|
191 |
#: modules/contact-form/contact-form.php:16
|
192 |
#: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
|
193 |
#: modules/gallery/gallery.php:16 modules/html/html.php:16
|
194 |
#: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
|
195 |
+
#: modules/map/map.php:16 modules/post-carousel/post-carousel.php:16
|
196 |
+
#: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
|
197 |
#: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
|
198 |
#: modules/slideshow/slideshow.php:16
|
199 |
#: modules/social-buttons/social-buttons.php:16
|
204 |
msgstr "Moduły Zaawansowane"
|
205 |
|
206 |
# @ fl-builder
|
207 |
+
#: classes/class-fl-builder-model.php:1669
|
208 |
+
#: classes/class-fl-builder-model.php:1730
|
209 |
msgid "Other Modules"
|
210 |
msgstr "Pozostałe Moduły"
|
211 |
|
212 |
# @ fl-builder
|
213 |
+
#: classes/class-fl-builder-model.php:1670
|
214 |
+
#: classes/class-fl-builder-model.php:1731
|
215 |
#: includes/admin-settings-modules.php:32 includes/ui.php:99
|
216 |
#: modules/widget/widget.php:16
|
217 |
msgid "WordPress Widgets"
|
218 |
msgstr "Widgety Wordpressa"
|
219 |
|
220 |
# @ fl-builder
|
221 |
+
#: classes/class-fl-builder-model.php:2320
|
222 |
#, php-format
|
223 |
msgctxt "%s stands for post/page title."
|
224 |
msgid "Copy of %s"
|
225 |
msgstr "Kopia %s"
|
226 |
|
227 |
+
#: classes/class-fl-builder-model.php:2758
|
228 |
msgctxt "Default user template category."
|
229 |
msgid "Uncategorized"
|
230 |
msgstr "Bez kategorii"
|
231 |
|
232 |
# @ fl-builder
|
233 |
+
#: classes/class-fl-builder-model.php:3113
|
234 |
msgid "Home Pages"
|
235 |
msgstr "Szablony stron głównych"
|
236 |
|
237 |
# @ fl-builder
|
238 |
+
#: classes/class-fl-builder-model.php:3114
|
239 |
msgid "Content Pages"
|
240 |
msgstr "Szablony podstron"
|
241 |
|
263 |
msgid "Thumbnail"
|
264 |
msgstr "Miniatura"
|
265 |
|
266 |
+
#: classes/class-fl-builder-service-activecampaign.php:69
|
267 |
+
msgid "Error: You must provide an API URL."
|
268 |
+
msgstr "Błąd: Musisz dostarczyć API URL."
|
269 |
|
270 |
+
#: classes/class-fl-builder-service-activecampaign.php:73
|
271 |
+
#: classes/class-fl-builder-service-campaign-monitor.php:55
|
272 |
+
#: classes/class-fl-builder-service-constant-contact.php:48
|
273 |
+
#: classes/class-fl-builder-service-getresponse.php:67
|
274 |
+
#: classes/class-fl-builder-service-hatchbuck.php:48
|
275 |
+
#: classes/class-fl-builder-service-infusionsoft.php:79
|
276 |
+
#: classes/class-fl-builder-service-madmimi.php:73
|
277 |
+
#: classes/class-fl-builder-service-mailchimp.php:67
|
278 |
+
msgid "Error: You must provide an API key."
|
279 |
+
msgstr "Błąd: Musisz podać klucz API."
|
280 |
|
281 |
+
#: classes/class-fl-builder-service-activecampaign.php:81
|
282 |
+
msgid "Error: Please check your API URL and API key."
|
283 |
+
msgstr "Błąd: Sprawdź poprawność API URL i klucza."
|
284 |
|
285 |
+
#: classes/class-fl-builder-service-activecampaign.php:108
|
286 |
+
msgid "API URL"
|
287 |
+
msgstr "API URL"
|
288 |
+
|
289 |
+
#: classes/class-fl-builder-service-activecampaign.php:109
|
290 |
msgid ""
|
291 |
+
"Your API url can be found in your ActiveCampaign account under My Settings > "
|
292 |
+
"API."
|
293 |
msgstr ""
|
294 |
+
"Twój API URL znajdziesz na koncie ActiveCampaign w sekcji My Settings > API."
|
295 |
+
|
296 |
+
#: classes/class-fl-builder-service-activecampaign.php:119
|
297 |
+
#: classes/class-fl-builder-service-campaign-monitor.php:88
|
298 |
+
#: classes/class-fl-builder-service-constant-contact.php:88
|
299 |
+
#: classes/class-fl-builder-service-getresponse.php:100
|
300 |
+
#: classes/class-fl-builder-service-hatchbuck.php:87
|
301 |
+
#: classes/class-fl-builder-service-infusionsoft.php:129
|
302 |
+
#: classes/class-fl-builder-service-madmimi.php:121
|
303 |
+
#: classes/class-fl-builder-service-mailchimp.php:100
|
304 |
+
msgid "API Key"
|
305 |
+
msgstr "Klucz API"
|
306 |
+
|
307 |
+
#: classes/class-fl-builder-service-activecampaign.php:120
|
308 |
+
msgid ""
|
309 |
+
"Your API key can be found in your ActiveCampaign account under My Settings > "
|
310 |
+
"API."
|
311 |
+
msgstr ""
|
312 |
+
"Twój API key znajdziesz na koncie ActiveCampaign w sekcji My Settings > API."
|
313 |
|
314 |
# @ fl-builder
|
315 |
+
#: classes/class-fl-builder-service-activecampaign.php:169
|
316 |
#: classes/class-fl-builder-service-aweber.php:182
|
317 |
#: classes/class-fl-builder-service-campaign-monitor.php:148
|
318 |
#: classes/class-fl-builder-service-campaign-monitor.php:199
|
321 |
#: classes/class-fl-builder-service-icontact.php:207
|
322 |
#: classes/class-fl-builder-service-infusionsoft.php:204
|
323 |
#: classes/class-fl-builder-service-madmimi.php:178
|
324 |
+
#: classes/class-fl-builder-service-mailchimp.php:177
|
325 |
#: classes/class-fl-builder-service-mailpoet.php:92
|
326 |
#: classes/class-fl-builder-service-sendinblue.php:161
|
327 |
+
#: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
|
328 |
#: modules/woocommerce/woocommerce.php:60
|
329 |
msgid "Choose..."
|
330 |
msgstr "Wybierz..."
|
331 |
|
332 |
+
#: classes/class-fl-builder-service-activecampaign.php:181
|
333 |
#: classes/class-fl-builder-service-aweber.php:192
|
334 |
#: classes/class-fl-builder-service-campaign-monitor.php:209
|
335 |
#: classes/class-fl-builder-service-constant-contact.php:166
|
337 |
#: classes/class-fl-builder-service-icontact.php:217
|
338 |
#: classes/class-fl-builder-service-infusionsoft.php:214
|
339 |
#: classes/class-fl-builder-service-madmimi.php:188
|
340 |
+
#: classes/class-fl-builder-service-mailchimp.php:187
|
341 |
#: classes/class-fl-builder-service-mailpoet.php:102
|
342 |
#: classes/class-fl-builder-service-sendinblue.php:171
|
343 |
msgctxt "An email list from a third party provider."
|
344 |
msgid "List"
|
345 |
msgstr "Lista"
|
346 |
|
347 |
+
#: classes/class-fl-builder-service-activecampaign.php:208
|
348 |
+
msgid ""
|
349 |
+
"There was an error subscribing to ActiveCampaign. The account is no longer "
|
350 |
+
"connected."
|
351 |
+
msgstr ""
|
352 |
+
"Wystąpił błąd podczas łaczenia się z ActiveCampaign. Konto nie jest już "
|
353 |
+
"połączone."
|
354 |
+
|
355 |
+
#: classes/class-fl-builder-service-activecampaign.php:239
|
356 |
+
msgid "Error: Invalid API data."
|
357 |
+
msgstr "Błąd: Błędne API."
|
358 |
+
|
359 |
+
#: classes/class-fl-builder-service-aweber.php:72
|
360 |
+
msgid "Error: You must provide an Authorization Code."
|
361 |
+
msgstr "Błąd: Podaj Kod Autoryzacji (Authorisation Code)."
|
362 |
+
|
363 |
+
#: classes/class-fl-builder-service-aweber.php:76
|
364 |
+
msgid "Error: Please enter a valid Authorization Code."
|
365 |
+
msgstr "Błąd: Wpisz poprawny Kod Autoryzacji (Authorization Code)."
|
366 |
+
|
367 |
+
#: classes/class-fl-builder-service-aweber.php:127
|
368 |
+
msgid "Authorization Code"
|
369 |
+
msgstr "Kod Autoryzacji (Authorization Code)"
|
370 |
+
|
371 |
+
#: classes/class-fl-builder-service-aweber.php:128
|
372 |
+
#, php-format
|
373 |
+
msgid ""
|
374 |
+
"Please register this website with AWeber to get your Authorization Code. <a"
|
375 |
+
"%s>Register Now</a>"
|
376 |
+
msgstr ""
|
377 |
+
"Zarejestuj tę stronę w serwisie AWeber, aby otrzymać kod autoryzacyjny "
|
378 |
+
"(Authorization Code). <a%s>Zarejestruj się teraz</a>"
|
379 |
+
|
380 |
#: classes/class-fl-builder-service-aweber.php:219
|
381 |
msgid ""
|
382 |
"There was an error subscribing to AWeber. The account is no longer connected."
|
393 |
msgid "There was an error subscribing to AWeber. %s"
|
394 |
msgstr "Wystąpił błąd podczas rejestracji w serwisie AWeber. %s"
|
395 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
#: classes/class-fl-builder-service-campaign-monitor.php:67
|
397 |
#: classes/class-fl-builder-service-campaign-monitor.php:129
|
398 |
#: classes/class-fl-builder-service-getresponse.php:76
|
401 |
msgid "Error: Please check your API key."
|
402 |
msgstr "Błąd: Sprawdź klucz API."
|
403 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
#: classes/class-fl-builder-service-campaign-monitor.php:89
|
405 |
msgid ""
|
406 |
"Your API key can be found in your Campaign Monitor account under Account "
|
472 |
"Wystąpił błąd połączenia z Constant Contact. To konto nie jest już "
|
473 |
"połączone. %s"
|
474 |
|
475 |
+
#: classes/class-fl-builder-service-email-address.php:39
|
476 |
+
#: classes/class-fl-builder-service-madmimi.php:69
|
477 |
+
msgid "Error: You must provide an email address."
|
478 |
+
msgstr "Błąd: Musisz podać adres e-mail."
|
479 |
+
|
480 |
+
#: classes/class-fl-builder-service-email-address.php:63
|
481 |
+
#: classes/class-fl-builder-service-madmimi.php:110
|
482 |
+
#: modules/subscribe-form/includes/frontend.php:11
|
483 |
+
msgid "Email Address"
|
484 |
+
msgstr "Adres e-mail"
|
485 |
+
|
486 |
+
#: classes/class-fl-builder-service-email-address.php:110
|
487 |
+
msgid "There was an error subscribing. The account is no longer connected."
|
488 |
+
msgstr "Wystąpił błąd podczas łączenia się. Konto nie jest już połaczone."
|
489 |
+
|
490 |
+
#: classes/class-fl-builder-service-email-address.php:114
|
491 |
+
msgid "Subscribe Form Signup"
|
492 |
+
msgstr "Zapis na newsletter/listę e-mailową"
|
493 |
+
|
494 |
+
# @ fl-builder
|
495 |
+
#: classes/class-fl-builder-service-email-address.php:115
|
496 |
+
#: modules/contact-form/includes/frontend.php:21
|
497 |
+
msgid "Email"
|
498 |
+
msgstr "E-mail"
|
499 |
+
|
500 |
+
#: classes/class-fl-builder-service-email-address.php:118
|
501 |
+
msgid "Name"
|
502 |
+
msgstr "Imię"
|
503 |
+
|
504 |
+
#: classes/class-fl-builder-service-email-address.php:124
|
505 |
+
#: modules/subscribe-form/subscribe-form.php:73
|
506 |
+
msgid "There was an error subscribing. Please try again."
|
507 |
+
msgstr ""
|
508 |
+
"Wystąpił błąd podczas próby zapisania Cię na listę. Proszę spróbować "
|
509 |
+
"ponownie."
|
510 |
+
|
511 |
#: classes/class-fl-builder-service-getresponse.php:101
|
512 |
msgid ""
|
513 |
"Your API key can be found in your GetResponse account under My Account > "
|
663 |
msgid "There was an error subscribing to Infusionsoft. %s"
|
664 |
msgstr "Wystąpił błąd podczas łączenia się z Infusionsoft. %s"
|
665 |
|
|
|
|
|
|
|
|
|
666 |
#: classes/class-fl-builder-service-madmimi.php:83
|
667 |
msgid "Unable to connect to Mad Mimi. Please check your credentials."
|
668 |
msgstr "Nie udało się połaczyć z MadMini. Sprawdź swoje dane."
|
669 |
|
|
|
|
|
|
|
|
|
|
|
670 |
#: classes/class-fl-builder-service-madmimi.php:111
|
671 |
msgid "The email address associated with your Mad Mimi account."
|
672 |
msgstr "Adres email powiązany z twoim kontem Mad Mimi."
|
698 |
"Twój API key znajdziesz na swoim koncie MailChimp w sekcji ccount > Extras > "
|
699 |
"API keys."
|
700 |
|
701 |
+
#: classes/class-fl-builder-service-mailchimp.php:215
|
702 |
+
msgid "No Group"
|
703 |
+
msgstr "Brak grupy"
|
704 |
+
|
705 |
+
#: classes/class-fl-builder-service-mailchimp.php:227
|
706 |
+
msgctxt "MailChimp list group."
|
707 |
+
msgid "Groups"
|
708 |
+
msgstr "Grupy"
|
709 |
+
|
710 |
+
#: classes/class-fl-builder-service-mailchimp.php:255
|
711 |
msgid ""
|
712 |
"There was an error subscribing to MailChimp. The account is no longer "
|
713 |
"connected."
|
714 |
msgstr ""
|
715 |
"Wystąpił błąd podczas łączenia się z MailChimp. Konto nie jest już połączone."
|
716 |
|
717 |
+
#: classes/class-fl-builder-service-mailchimp.php:352
|
718 |
#, php-format
|
719 |
msgid "There was an error subscribing to MailChimp. %s"
|
720 |
msgstr "Wystąpił błąd podczas łączenia się z Infusionsoft. %s"
|
769 |
msgid "Error: Could not subscribe to SendinBlue. %s"
|
770 |
msgstr "Błąd: Nie udało się połaczyć z SendinBlue. %s"
|
771 |
|
772 |
+
#: classes/class-fl-builder-services.php:158
|
773 |
msgctxt "Third party service such as MailChimp."
|
774 |
msgid "Error: Missing service type."
|
775 |
msgstr "Błąd: Brakujący typ usługi."
|
776 |
|
777 |
+
#: classes/class-fl-builder-services.php:161
|
778 |
msgctxt "Connection data such as an API key."
|
779 |
msgid "Error: Missing service data."
|
780 |
msgstr "Błąd: Brakujące informacje o usłudze."
|
781 |
|
782 |
+
#: classes/class-fl-builder-services.php:164
|
783 |
msgctxt "Account name for a third party service such as MailChimp."
|
784 |
msgid "Error: Missing account name."
|
785 |
msgstr "Błąd: Brakująca nazwa konta"
|
786 |
|
787 |
+
#: classes/class-fl-builder-services.php:173
|
788 |
msgctxt "Account name for a third party service such as MailChimp."
|
789 |
msgid "Error: An account with that name already exists."
|
790 |
msgstr "Błąd: Konto o takiej nazwie już istnieje."
|
791 |
|
792 |
+
#: classes/class-fl-builder-services.php:253
|
793 |
msgid "Account Name"
|
794 |
msgstr "Nazwa konta"
|
795 |
|
796 |
+
#: classes/class-fl-builder-services.php:254
|
797 |
msgid ""
|
798 |
"Used to identify this connection within the accounts list and can be "
|
799 |
"anything you like."
|
800 |
msgstr ""
|
801 |
"Nazwa konta pojawi się na liście połączeń. Możesz wpisać cokolwiek chcesz."
|
802 |
|
803 |
+
#: classes/class-fl-builder-services.php:267
|
804 |
msgid "Connect"
|
805 |
msgstr "Połącz"
|
806 |
|
807 |
+
#: classes/class-fl-builder-services.php:295
|
808 |
msgid "Add Account..."
|
809 |
msgstr "Dodaj konto..."
|
810 |
|
811 |
+
#: classes/class-fl-builder-services.php:302
|
812 |
msgid "Account"
|
813 |
msgstr "Konto"
|
814 |
|
825 |
msgstr "Błąd! Strona o takim numerze ID nie istnieje."
|
826 |
|
827 |
# @ fl-builder
|
828 |
+
#: classes/class-fl-builder.php:836
|
829 |
#, php-format
|
830 |
msgctxt "Field name to add."
|
831 |
msgid "Add %s"
|
832 |
msgstr "Dodaj %s"
|
833 |
|
834 |
+
#: classes/class-fl-builder.php:926 classes/class-fl-builder.php:928
|
835 |
msgctxt "Custom post type label."
|
836 |
msgid "Templates"
|
837 |
msgstr "Szablony"
|
838 |
|
839 |
+
#: classes/class-fl-builder.php:927 classes/class-fl-builder.php:929
|
840 |
msgctxt "Custom post type label."
|
841 |
msgid "Template"
|
842 |
msgstr "Szablon"
|
843 |
|
844 |
# @ fl-builder
|
845 |
+
#: classes/class-fl-builder.php:930
|
846 |
msgctxt "Custom post type label."
|
847 |
msgid "Add New"
|
848 |
msgstr "Dodaj nowy"
|
849 |
|
850 |
+
#: classes/class-fl-builder.php:931
|
851 |
msgctxt "Custom post type label."
|
852 |
msgid "Add New Template"
|
853 |
msgstr "Dodaj nowy szablon"
|
854 |
|
855 |
+
#: classes/class-fl-builder.php:932
|
856 |
msgctxt "Custom post type label."
|
857 |
msgid "New Template"
|
858 |
msgstr "Noszy szablon"
|
859 |
|
860 |
+
#: classes/class-fl-builder.php:933
|
861 |
msgctxt "Custom post type label."
|
862 |
msgid "Edit Template"
|
863 |
msgstr "Edytuj szablon"
|
864 |
|
865 |
+
#: classes/class-fl-builder.php:934
|
866 |
msgctxt "Custom post type label."
|
867 |
msgid "View Template"
|
868 |
msgstr "Podejrzyj szablon"
|
869 |
|
870 |
+
#: classes/class-fl-builder.php:935
|
871 |
msgctxt "Custom post type label."
|
872 |
msgid "All Templates"
|
873 |
msgstr "Wszystkie szablony"
|
874 |
|
875 |
+
#: classes/class-fl-builder.php:936
|
876 |
msgctxt "Custom post type label."
|
877 |
msgid "Search Templates"
|
878 |
msgstr "Szukaj szablonów"
|
879 |
|
880 |
+
#: classes/class-fl-builder.php:937
|
881 |
msgctxt "Custom post type label."
|
882 |
msgid "Parent Templates:"
|
883 |
msgstr "Nadrzędne szablony:"
|
884 |
|
885 |
+
#: classes/class-fl-builder.php:938
|
886 |
msgctxt "Custom post type label."
|
887 |
msgid "No templates found."
|
888 |
msgstr "Nie znaleziono szablonów."
|
889 |
|
890 |
+
#: classes/class-fl-builder.php:939
|
891 |
msgctxt "Custom post type label."
|
892 |
msgid "No templates found in Trash."
|
893 |
msgstr "Brak szablonów w koszu"
|
894 |
|
895 |
+
#: classes/class-fl-builder.php:953 classes/class-fl-builder.php:963
|
896 |
msgctxt "Custom taxonomy label."
|
897 |
msgid "Categories"
|
898 |
msgstr "Kategorie"
|
899 |
|
900 |
+
#: classes/class-fl-builder.php:954
|
901 |
msgctxt "Custom taxonomy label."
|
902 |
msgid "Category"
|
903 |
msgstr "Ktegoria"
|
904 |
|
905 |
+
#: classes/class-fl-builder.php:955
|
906 |
msgctxt "Custom taxonomy label."
|
907 |
msgid "Search Categories"
|
908 |
msgstr "Szukaj kategorii"
|
909 |
|
910 |
+
#: classes/class-fl-builder.php:956
|
911 |
msgctxt "Custom taxonomy label."
|
912 |
msgid "All Categories"
|
913 |
msgstr "Wszystkie kategorie"
|
914 |
|
915 |
+
#: classes/class-fl-builder.php:957
|
916 |
msgctxt "Custom taxonomy label."
|
917 |
msgid "Parent Category"
|
918 |
msgstr "Nadrzędna kategoria"
|
919 |
|
920 |
+
#: classes/class-fl-builder.php:958
|
921 |
msgctxt "Custom taxonomy label."
|
922 |
msgid "Parent Category:"
|
923 |
msgstr "Nadrzędna kategoria:"
|
924 |
|
925 |
+
#: classes/class-fl-builder.php:959
|
926 |
msgctxt "Custom taxonomy label."
|
927 |
msgid "Edit Category"
|
928 |
msgstr "Edytuj kategorię"
|
929 |
|
930 |
+
#: classes/class-fl-builder.php:960
|
931 |
msgctxt "Custom taxonomy label."
|
932 |
msgid "Update Category"
|
933 |
msgstr "Zaktualizuj kategorię"
|
934 |
|
935 |
+
#: classes/class-fl-builder.php:961
|
936 |
msgctxt "Custom taxonomy label."
|
937 |
msgid "Add New Category"
|
938 |
msgstr "Dodaj nową kategorię"
|
939 |
|
940 |
+
#: classes/class-fl-builder.php:962
|
941 |
msgctxt "Custom taxonomy label."
|
942 |
msgid "New Category Name"
|
943 |
msgstr "Nazwa nowej kategorii"
|
944 |
|
945 |
# @ fl-builder
|
946 |
+
#: classes/class-fl-builder.php:1419 includes/js-config.php:69
|
947 |
#, php-format
|
948 |
msgctxt "%s stands for module name."
|
949 |
msgid "%s Settings"
|
1350 |
msgstr "Nazwa"
|
1351 |
|
1352 |
# @ fl-builder
|
1353 |
+
#: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
|
1354 |
+
#: modules/post-carousel/post-carousel.php:255
|
1355 |
+
#: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:459
|
1356 |
msgid "Image"
|
1357 |
msgstr "Obraz"
|
1358 |
|
1359 |
# @ fl-builder
|
1360 |
+
#: includes/admin-templates-edit.php:16 includes/column-settings.php:139
|
1361 |
+
#: includes/row-settings.php:179 includes/template-settings.php:23
|
1362 |
+
#: modules/callout/callout.php:354 modules/callout/callout.php:374
|
1363 |
+
#: modules/content-slider/content-slider.php:473
|
1364 |
+
#: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:621
|
1365 |
+
#: modules/post-slider/post-slider.php:640
|
1366 |
msgid "Position"
|
1367 |
msgstr "Pozycja"
|
1368 |
|
1374 |
# @ fl-builder
|
1375 |
#: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
|
1376 |
#: includes/global-settings.php:18 includes/global-settings.php:110
|
1377 |
+
#: includes/global-settings.php:124 includes/row-settings.php:331
|
1378 |
#: includes/template-settings.php:31 modules/accordion/accordion.php:90
|
1379 |
+
#: modules/callout/callout.php:421
|
1380 |
+
#: modules/content-slider/content-slider.php:210
|
1381 |
+
#: modules/content-slider/content-slider.php:224
|
1382 |
+
#: modules/content-slider/content-slider.php:258
|
1383 |
+
#: modules/content-slider/content-slider.php:267
|
1384 |
+
#: modules/content-slider/content-slider.php:538
|
1385 |
#: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
|
1386 |
+
#: modules/post-carousel/post-carousel.php:139
|
1387 |
+
#: modules/post-carousel/post-carousel.php:155
|
1388 |
+
#: modules/post-carousel/post-carousel.php:182
|
1389 |
+
#: modules/post-carousel/post-carousel.php:191
|
1390 |
+
#: modules/post-carousel/post-carousel.php:232
|
1391 |
+
#: modules/post-carousel/post-carousel.php:283
|
1392 |
+
#: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:356
|
1393 |
+
#: modules/post-slider/post-slider.php:381
|
1394 |
+
#: modules/post-slider/post-slider.php:408
|
1395 |
+
#: modules/post-slider/post-slider.php:417
|
1396 |
+
#: modules/post-slider/post-slider.php:734 modules/slideshow/slideshow.php:323
|
1397 |
+
#: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
|
1398 |
+
#: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
|
1399 |
+
#: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
|
1400 |
+
#: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
|
1401 |
+
#: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
|
1402 |
+
#: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
|
1403 |
+
#: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
|
1404 |
+
#: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
|
1405 |
+
#: modules/slideshow/slideshow.php:650
|
1406 |
#: modules/social-buttons/social-buttons.php:111
|
1407 |
#: modules/social-buttons/social-buttons.php:120
|
1408 |
#: modules/social-buttons/social-buttons.php:129
|
1416 |
# @ fl-builder
|
1417 |
#: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
|
1418 |
#: includes/global-settings.php:19 includes/global-settings.php:111
|
1419 |
+
#: includes/global-settings.php:125 includes/row-settings.php:332
|
1420 |
#: includes/template-settings.php:32 modules/accordion/accordion.php:89
|
1421 |
+
#: modules/callout/callout.php:422
|
1422 |
+
#: modules/content-slider/content-slider.php:211
|
1423 |
+
#: modules/content-slider/content-slider.php:225
|
1424 |
+
#: modules/content-slider/content-slider.php:259
|
1425 |
+
#: modules/content-slider/content-slider.php:268
|
1426 |
+
#: modules/content-slider/content-slider.php:539
|
1427 |
#: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
|
1428 |
+
#: modules/post-carousel/post-carousel.php:140
|
1429 |
+
#: modules/post-carousel/post-carousel.php:156
|
1430 |
+
#: modules/post-carousel/post-carousel.php:183
|
1431 |
+
#: modules/post-carousel/post-carousel.php:192
|
1432 |
+
#: modules/post-carousel/post-carousel.php:233
|
1433 |
+
#: modules/post-carousel/post-carousel.php:282
|
1434 |
+
#: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:357
|
1435 |
+
#: modules/post-slider/post-slider.php:382
|
1436 |
+
#: modules/post-slider/post-slider.php:409
|
1437 |
+
#: modules/post-slider/post-slider.php:418
|
1438 |
+
#: modules/post-slider/post-slider.php:735 modules/slideshow/slideshow.php:324
|
1439 |
+
#: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
|
1440 |
+
#: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
|
1441 |
+
#: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
|
1442 |
+
#: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
|
1443 |
+
#: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
|
1444 |
+
#: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
|
1445 |
+
#: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
|
1446 |
+
#: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
|
1447 |
+
#: modules/slideshow/slideshow.php:651
|
1448 |
#: modules/social-buttons/social-buttons.php:110
|
1449 |
#: modules/social-buttons/social-buttons.php:119
|
1450 |
#: modules/social-buttons/social-buttons.php:128
|
1516 |
# @ fl-builder
|
1517 |
#: includes/column-settings.php:7 includes/module-settings.php:87
|
1518 |
#: includes/row-settings.php:9 modules/accordion/accordion.php:45
|
1519 |
+
#: modules/button/button.php:117 modules/button/button.php:155
|
1520 |
+
#: modules/button/button.php:159 modules/callout/callout.php:242
|
1521 |
+
#: modules/callout/callout.php:554
|
1522 |
+
#: modules/content-slider/content-slider.php:426
|
1523 |
+
#: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
|
1524 |
+
#: modules/cta/cta.php:309 modules/heading/heading.php:69
|
1525 |
#: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
|
1526 |
+
#: modules/post-carousel/post-carousel.php:389
|
1527 |
+
#: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:574
|
1528 |
#: modules/pricing-table/pricing-table.php:43
|
1529 |
#: modules/pricing-table/pricing-table.php:155
|
1530 |
#: modules/separator/separator.php:72
|
1531 |
+
#: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
|
1532 |
msgid "Style"
|
1533 |
msgstr "Styl"
|
1534 |
|
1538 |
msgstr "Szerokość kolumny"
|
1539 |
|
1540 |
# @ fl-builder
|
1541 |
+
#: includes/column-settings.php:26 modules/button/button.php:66
|
1542 |
+
#: modules/callout/callout.php:226 modules/callout/callout.php:479
|
1543 |
+
#: modules/callout/callout.php:495
|
1544 |
+
#: modules/content-slider/content-slider.php:383
|
1545 |
+
#: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
|
1546 |
+
#: modules/cta/cta.php:222 modules/post-slider/post-slider.php:617
|
1547 |
msgid "Text"
|
1548 |
msgstr "Tekst"
|
1549 |
|
1550 |
# @ fl-builder
|
1551 |
+
#: includes/column-settings.php:30 includes/column-settings.php:93
|
1552 |
+
#: includes/column-settings.php:248 includes/row-settings.php:133
|
1553 |
+
#: includes/row-settings.php:427 modules/callout/callout.php:392
|
1554 |
+
#: modules/content-slider/content-slider.php:338
|
|
|
1555 |
#: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
|
1556 |
#: modules/separator/separator.php:34
|
1557 |
msgid "Color"
|
1558 |
msgstr "Kolor"
|
1559 |
|
1560 |
+
#: includes/column-settings.php:38 includes/row-settings.php:60
|
1561 |
+
#: modules/post-carousel/post-carousel.php:401
|
1562 |
+
#: modules/post-slider/post-slider.php:694
|
1563 |
+
msgid "Link Color"
|
1564 |
+
msgstr "Kolor linka"
|
1565 |
+
|
1566 |
+
#: includes/column-settings.php:46 includes/row-settings.php:68
|
1567 |
+
#: modules/post-carousel/post-carousel.php:406
|
1568 |
+
#: modules/post-slider/post-slider.php:710
|
1569 |
+
msgid "Link Hover Color"
|
1570 |
+
msgstr "Kolor linka po njechaniu myszką"
|
1571 |
+
|
1572 |
+
#: includes/column-settings.php:54 includes/row-settings.php:76
|
1573 |
+
msgid "Heading Color"
|
1574 |
+
msgstr "Kolor nagłówka"
|
1575 |
+
|
1576 |
# @ fl-builder
|
1577 |
+
#: includes/column-settings.php:63 includes/row-settings.php:85
|
1578 |
+
#: modules/post-slider/post-slider.php:462
|
1579 |
msgid "Background"
|
1580 |
msgstr "Tło"
|
1581 |
|
1582 |
# @ fl-builder
|
1583 |
+
#: includes/column-settings.php:67 includes/column-settings.php:215
|
1584 |
+
#: includes/row-settings.php:89 includes/row-settings.php:394
|
1585 |
+
#: modules/callout/callout.php:475
|
1586 |
+
#: modules/content-slider/content-slider.php:332
|
1587 |
+
#: modules/content-slider/content-slider.php:379
|
1588 |
+
#: modules/content-slider/content-slider.php:597
|
1589 |
+
#: modules/content-slider/content-slider.php:739
|
1590 |
+
#: modules/slideshow/slideshow.php:347
|
1591 |
msgid "Type"
|
1592 |
msgstr "Typ"
|
1593 |
|
1594 |
# @ fl-builder
|
1595 |
+
#: includes/column-settings.php:70 includes/row-settings.php:92
|
1596 |
+
#: modules/content-slider/content-slider.php:339
|
1597 |
msgctxt "Background type."
|
1598 |
msgid "None"
|
1599 |
msgstr "Brak"
|
1600 |
|
1601 |
# @ fl-builder
|
1602 |
+
#: includes/column-settings.php:71 includes/row-settings.php:93
|
1603 |
msgctxt "Background type."
|
1604 |
msgid "Color"
|
1605 |
msgstr "Kolor"
|
1606 |
|
1607 |
# @ fl-builder
|
1608 |
+
#: includes/column-settings.php:72 includes/row-settings.php:94
|
1609 |
msgctxt "Background type."
|
1610 |
msgid "Photo"
|
1611 |
msgstr "Zdjęcie"
|
1612 |
|
1613 |
# @ fl-builder
|
1614 |
+
#: includes/column-settings.php:89 includes/row-settings.php:129
|
1615 |
+
#: modules/button/button.php:124 modules/callout/callout.php:405
|
1616 |
+
#: modules/callout/callout.php:519
|
1617 |
+
#: modules/content-slider/content-slider.php:364
|
1618 |
+
#: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
|
1619 |
+
#: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
|
1620 |
+
#: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
|
1621 |
msgid "Background Color"
|
1622 |
msgstr "Kolor tła"
|
1623 |
|
1624 |
# @ fl-builder
|
1625 |
+
#: includes/column-settings.php:101 includes/column-settings.php:256
|
1626 |
+
#: includes/row-settings.php:141 includes/row-settings.php:435
|
1627 |
#: modules/separator/separator.php:44
|
1628 |
msgid "Opacity"
|
1629 |
msgstr "Krycie"
|
1630 |
|
1631 |
# @ fl-builder
|
1632 |
+
#: includes/column-settings.php:113 includes/row-settings.php:153
|
1633 |
+
#: modules/content-slider/content-slider.php:360
|
1634 |
msgid "Background Photo"
|
1635 |
msgstr "Zdjęcie tła"
|
1636 |
|
1637 |
# @ fl-builder
|
1638 |
+
#: includes/column-settings.php:117 includes/row-settings.php:157
|
1639 |
+
#: includes/row-settings.php:345 modules/callout/callout.php:317
|
1640 |
+
#: modules/callout/callout.php:333 modules/callout/callout.php:337
|
1641 |
+
#: modules/content-slider/content-slider.php:336
|
1642 |
+
#: modules/content-slider/content-slider.php:405
|
1643 |
+
#: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
|
1644 |
+
#: modules/photo/photo.php:408
|
1645 |
msgid "Photo"
|
1646 |
msgstr "Zdjęcie"
|
1647 |
|
1648 |
# @ fl-builder
|
1649 |
+
#: includes/column-settings.php:124 includes/row-settings.php:164
|
1650 |
msgid "Repeat"
|
1651 |
msgstr "Powtarzanie tła (Repeat)"
|
1652 |
|
1653 |
# @ fl-builder
|
1654 |
+
#: includes/column-settings.php:127 includes/row-settings.php:167
|
1655 |
msgctxt "Background repeat."
|
1656 |
msgid "None"
|
1657 |
msgstr "Brak"
|
1658 |
|
1659 |
# @ fl-builder
|
1660 |
+
#: includes/column-settings.php:128 includes/row-settings.php:168
|
1661 |
msgctxt "Background repeat."
|
1662 |
msgid "Tile"
|
1663 |
msgstr "Kafelki"
|
1664 |
|
1665 |
# @ fl-builder
|
1666 |
+
#: includes/column-settings.php:129 includes/row-settings.php:169
|
1667 |
msgctxt "Background repeat."
|
1668 |
msgid "Horizontal"
|
1669 |
msgstr "Powtaryanie poziome (horizontal)"
|
1670 |
|
1671 |
# @ fl-builder
|
1672 |
+
#: includes/column-settings.php:130 includes/row-settings.php:170
|
1673 |
msgctxt "Background repeat."
|
1674 |
msgid "Vertical"
|
1675 |
msgstr "Powtarzanie pionowe (vertical)"
|
1676 |
|
1677 |
+
#: includes/column-settings.php:132 includes/row-settings.php:172
|
1678 |
msgid ""
|
1679 |
"Repeat applies to how the image should display in the background. Choosing "
|
1680 |
"none will display the image as uploaded. Tile will repeat the image as many "
|
1688 |
"obrazu tylko w poziomie (Horizontal) lub tylko w pionie (Vertical)."
|
1689 |
|
1690 |
# @ fl-builder
|
1691 |
+
#: includes/column-settings.php:142 includes/row-settings.php:182
|
1692 |
msgid "Left Top"
|
1693 |
msgstr "Lewa Góra"
|
1694 |
|
1695 |
# @ fl-builder
|
1696 |
+
#: includes/column-settings.php:143 includes/row-settings.php:183
|
1697 |
msgid "Left Center"
|
1698 |
msgstr "Lewa Środek"
|
1699 |
|
1700 |
# @ fl-builder
|
1701 |
+
#: includes/column-settings.php:144 includes/row-settings.php:184
|
1702 |
msgid "Left Bottom"
|
1703 |
msgstr "Lewa Dół"
|
1704 |
|
1705 |
# @ fl-builder
|
1706 |
+
#: includes/column-settings.php:145 includes/row-settings.php:185
|
1707 |
msgid "Right Top"
|
1708 |
msgstr "Prawa Góra"
|
1709 |
|
1710 |
# @ fl-builder
|
1711 |
+
#: includes/column-settings.php:146 includes/row-settings.php:186
|
1712 |
msgid "Right Center"
|
1713 |
msgstr "Prawa Środek"
|
1714 |
|
1715 |
# @ fl-builder
|
1716 |
+
#: includes/column-settings.php:147 includes/row-settings.php:187
|
1717 |
msgid "Right Bottom"
|
1718 |
msgstr "Prawa Dół"
|
1719 |
|
1720 |
# @ fl-builder
|
1721 |
+
#: includes/column-settings.php:148 includes/row-settings.php:188
|
1722 |
msgid "Center Top"
|
1723 |
msgstr "Środek Góra"
|
1724 |
|
1725 |
# @ fl-builder
|
1726 |
+
#: includes/column-settings.php:149 includes/row-settings.php:189
|
1727 |
+
#: modules/button/button.php:227 modules/callout/callout.php:252
|
1728 |
+
#: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
|
1729 |
#: modules/heading/heading.php:90 modules/heading/heading.php:162
|
1730 |
#: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
|
1731 |
+
#: modules/photo/photo.php:434 modules/social-buttons/social-buttons.php:100
|
1732 |
msgid "Center"
|
1733 |
msgstr "Środek"
|
1734 |
|
1735 |
# @ fl-builder
|
1736 |
+
#: includes/column-settings.php:150 includes/row-settings.php:190
|
1737 |
msgid "Center Bottom"
|
1738 |
msgstr "Środek Dół"
|
1739 |
|
1740 |
+
#: includes/column-settings.php:152 includes/row-settings.php:192
|
1741 |
msgid "Position will tell the image where it should sit in the background."
|
1742 |
msgstr ""
|
1743 |
"Pole Pozycja określa, w jakiej pozycji obraz powinien być wyświetlany w tle."
|
1744 |
|
1745 |
# @ fl-builder
|
1746 |
+
#: includes/column-settings.php:159 includes/row-settings.php:199
|
1747 |
msgid "Attachment"
|
1748 |
msgstr "Zachowanie"
|
1749 |
|
1750 |
# @ fl-builder
|
1751 |
+
#: includes/column-settings.php:162 includes/row-settings.php:202
|
1752 |
+
#: modules/post-grid/post-grid.php:78
|
1753 |
msgid "Scroll"
|
1754 |
msgstr "Scroll (Przewijanie)"
|
1755 |
|
1756 |
# @ fl-builder
|
1757 |
+
#: includes/column-settings.php:163 includes/global-settings.php:69
|
1758 |
#: includes/global-settings.php:83 includes/row-settings.php:19
|
1759 |
+
#: includes/row-settings.php:37 includes/row-settings.php:203
|
1760 |
msgid "Fixed"
|
1761 |
msgstr "Określony"
|
1762 |
|
1763 |
+
#: includes/column-settings.php:165 includes/row-settings.php:205
|
1764 |
msgid ""
|
1765 |
"Attachment will specify how the image reacts when scrolling a page. When "
|
1766 |
"scrolling is selected, the image will scroll with page scrolling. This is "
|
1774 |
"jeśli w polu Skala wybierzesz opcję Wypełnij."
|
1775 |
|
1776 |
# @ fl-builder
|
1777 |
+
#: includes/column-settings.php:172 includes/row-settings.php:212
|
1778 |
msgid "Scale"
|
1779 |
msgstr "Skala"
|
1780 |
|
1781 |
# @ fl-builder
|
1782 |
+
#: includes/column-settings.php:175 includes/row-settings.php:215
|
1783 |
msgctxt "Background scale."
|
1784 |
msgid "None"
|
1785 |
msgstr "Brak"
|
1786 |
|
1787 |
# @ fl-builder
|
1788 |
+
#: includes/column-settings.php:176 includes/row-settings.php:216
|
1789 |
msgid "Fit"
|
1790 |
msgstr "Dopasuj"
|
1791 |
|
1792 |
# @ fl-builder
|
1793 |
+
#: includes/column-settings.php:177 includes/row-settings.php:217
|
1794 |
msgid "Fill"
|
1795 |
msgstr "Wypełnij"
|
1796 |
|
1797 |
+
#: includes/column-settings.php:179 includes/row-settings.php:219
|
1798 |
msgid ""
|
1799 |
"Scale applies to how the image should display in the background. You can "
|
1800 |
"select either fill or fit to the background."
|
1803 |
"między wypełnieniem i dopasowaniem obrazu do tła."
|
1804 |
|
1805 |
# @ fl-builder
|
1806 |
+
#: includes/column-settings.php:187 includes/row-settings.php:366
|
1807 |
+
msgid "Background Overlay"
|
1808 |
+
msgstr "Tło"
|
1809 |
+
|
1810 |
+
# @ fl-builder
|
1811 |
+
#: includes/column-settings.php:191 includes/row-settings.php:370
|
1812 |
+
msgid "Overlay Color"
|
1813 |
+
msgstr "Kolor krycia"
|
1814 |
+
|
1815 |
+
# @ fl-builder
|
1816 |
+
#: includes/column-settings.php:199 includes/row-settings.php:378
|
1817 |
+
msgid "Overlay Opacity"
|
1818 |
+
msgstr "Poziom krycia "
|
1819 |
+
|
1820 |
+
# @ fl-builder
|
1821 |
+
#: includes/column-settings.php:211 includes/row-settings.php:390
|
1822 |
msgid "Border"
|
1823 |
msgstr "Obramowanie"
|
1824 |
|
1825 |
# @ fl-builder
|
1826 |
+
#: includes/column-settings.php:217 includes/row-settings.php:396
|
1827 |
msgid ""
|
1828 |
"The type of border to use. Double borders must have a width of at least 3px "
|
1829 |
"to render properly."
|
1832 |
"przynajmniej 3 piksele grubości, aby poprawnie się wyświetlały."
|
1833 |
|
1834 |
# @ fl-builder
|
1835 |
+
#: includes/column-settings.php:219 includes/row-settings.php:398
|
1836 |
msgctxt "Border type."
|
1837 |
msgid "None"
|
1838 |
msgstr "Brak"
|
1839 |
|
1840 |
# @ fl-builder
|
1841 |
+
#: includes/column-settings.php:220 includes/row-settings.php:399
|
1842 |
#: modules/separator/separator.php:75
|
1843 |
msgctxt "Border type."
|
1844 |
msgid "Solid"
|
1845 |
msgstr "Linia ciągła"
|
1846 |
|
1847 |
# @ fl-builder
|
1848 |
+
#: includes/column-settings.php:221 includes/row-settings.php:400
|
1849 |
#: modules/separator/separator.php:76
|
1850 |
msgctxt "Border type."
|
1851 |
msgid "Dashed"
|
1852 |
msgstr "Linia przerywana"
|
1853 |
|
1854 |
# @ fl-builder
|
1855 |
+
#: includes/column-settings.php:222 includes/row-settings.php:401
|
1856 |
#: modules/separator/separator.php:77
|
1857 |
msgctxt "Border type."
|
1858 |
msgid "Dotted"
|
1859 |
msgstr "Kropki"
|
1860 |
|
1861 |
# @ fl-builder
|
1862 |
+
#: includes/column-settings.php:223 includes/row-settings.php:402
|
1863 |
#: modules/separator/separator.php:78
|
1864 |
msgctxt "Border type."
|
1865 |
msgid "Double"
|
1866 |
msgstr "Podwójny"
|
1867 |
|
1868 |
# @ fl-builder
|
1869 |
+
#: includes/column-settings.php:267 includes/row-settings.php:446
|
1870 |
msgid "Top Width"
|
1871 |
msgstr "Grubość górna"
|
1872 |
|
1873 |
# @ fl-builder
|
1874 |
+
#: includes/column-settings.php:279 includes/row-settings.php:458
|
1875 |
msgid "Bottom Width"
|
1876 |
msgstr "Grubość dolna"
|
1877 |
|
1878 |
# @ fl-builder
|
1879 |
+
#: includes/column-settings.php:291 includes/row-settings.php:470
|
1880 |
msgid "Left Width"
|
1881 |
msgstr "Grubość po lewej"
|
1882 |
|
1883 |
# @ fl-builder
|
1884 |
+
#: includes/column-settings.php:303 includes/row-settings.php:482
|
1885 |
msgid "Right Width"
|
1886 |
msgstr "Grubość po prawej"
|
1887 |
|
1888 |
# @ fl-builder
|
1889 |
+
#: includes/column-settings.php:318 includes/module-settings.php:6
|
1890 |
+
#: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
|
1891 |
msgid "Advanced"
|
1892 |
msgstr "Zaawansowane"
|
1893 |
|
1894 |
# @ fl-builder
|
1895 |
+
#: includes/column-settings.php:321 includes/global-settings.php:41
|
1896 |
#: includes/global-settings.php:94 includes/module-settings.php:9
|
1897 |
+
#: includes/row-settings.php:500
|
1898 |
msgid "Margins"
|
1899 |
msgstr "Marginesy"
|
1900 |
|
1901 |
# @ fl-builder
|
1902 |
+
#: includes/column-settings.php:325 includes/column-settings.php:378
|
1903 |
+
#: includes/module-settings.php:13 includes/row-settings.php:504
|
1904 |
+
#: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
|
1905 |
msgid "Top"
|
1906 |
msgstr "Górny"
|
1907 |
|
1908 |
# @ fl-builder
|
1909 |
+
#: includes/column-settings.php:337 includes/column-settings.php:390
|
1910 |
+
#: includes/module-settings.php:25 includes/row-settings.php:516
|
1911 |
+
#: includes/row-settings.php:569 modules/post-slider/post-slider.php:627
|
1912 |
+
#: modules/slideshow/slideshow.php:482
|
1913 |
msgid "Bottom"
|
1914 |
msgstr "Dolny"
|
1915 |
|
1916 |
# @ fl-builder
|
1917 |
+
#: includes/column-settings.php:349 includes/column-settings.php:402
|
1918 |
+
#: includes/module-settings.php:37 includes/row-settings.php:528
|
1919 |
+
#: includes/row-settings.php:581 modules/button/button.php:228
|
1920 |
+
#: modules/callout/callout.php:253
|
1921 |
+
#: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
|
1922 |
#: modules/heading/heading.php:89 modules/heading/heading.php:161
|
1923 |
#: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
|
1924 |
+
#: modules/photo/photo.php:433 modules/post-slider/post-slider.php:625
|
1925 |
+
#: modules/post-slider/post-slider.php:644
|
1926 |
+
#: modules/social-buttons/social-buttons.php:101
|
1927 |
msgid "Left"
|
1928 |
msgstr "Lewy"
|
1929 |
|
1930 |
# @ fl-builder
|
1931 |
+
#: includes/column-settings.php:361 includes/column-settings.php:414
|
1932 |
+
#: includes/module-settings.php:49 includes/row-settings.php:540
|
1933 |
+
#: includes/row-settings.php:593 modules/button/button.php:229
|
1934 |
+
#: modules/callout/callout.php:254
|
1935 |
+
#: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
|
1936 |
#: modules/heading/heading.php:91 modules/heading/heading.php:163
|
1937 |
#: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
|
1938 |
+
#: modules/photo/photo.php:435 modules/post-slider/post-slider.php:626
|
1939 |
+
#: modules/post-slider/post-slider.php:645
|
1940 |
+
#: modules/social-buttons/social-buttons.php:102
|
1941 |
msgid "Right"
|
1942 |
msgstr "Prawy"
|
1943 |
|
1944 |
# @ fl-builder
|
1945 |
+
#: includes/column-settings.php:374 includes/global-settings.php:49
|
1946 |
+
#: includes/row-settings.php:553 modules/button/button.php:242
|
1947 |
+
#: modules/callout/callout.php:609
|
1948 |
+
#: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
|
1949 |
+
#: modules/subscribe-form/subscribe-form.php:273
|
1950 |
msgid "Padding"
|
1951 |
msgstr "Odstęp wewnętrzny (padding)"
|
1952 |
|
1953 |
# @ fl-builder
|
1954 |
+
#: includes/column-settings.php:427 includes/global-settings.php:103
|
1955 |
+
#: includes/module-settings.php:62 includes/row-settings.php:606
|
1956 |
msgid "Responsive Layout"
|
1957 |
msgstr "Układ responsywny"
|
1958 |
|
1959 |
# @ fl-builder
|
1960 |
+
#: includes/column-settings.php:431 includes/module-settings.php:66
|
1961 |
+
#: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
|
1962 |
msgid "Display"
|
1963 |
msgstr "Wyświetlaj"
|
1964 |
|
1965 |
# @ fl-builder
|
1966 |
+
#: includes/column-settings.php:433 includes/module-settings.php:68
|
1967 |
+
#: includes/row-settings.php:612
|
1968 |
msgid "Always"
|
1969 |
msgstr "Zawsze"
|
1970 |
|
1971 |
# @ fl-builder
|
1972 |
+
#: includes/column-settings.php:434 includes/module-settings.php:69
|
1973 |
+
#: includes/row-settings.php:613
|
1974 |
msgid "Large Devices Only"
|
1975 |
msgstr "Tylko na dużych urządzeniach"
|
1976 |
|
1977 |
# @ fl-builder
|
1978 |
+
#: includes/column-settings.php:435 includes/module-settings.php:70
|
1979 |
+
#: includes/row-settings.php:614
|
1980 |
msgid "Large & Medium Devices Only"
|
1981 |
msgstr "Na urządzeniach dużych i średnich"
|
1982 |
|
1983 |
# @ fl-builder
|
1984 |
+
#: includes/column-settings.php:436 includes/module-settings.php:71
|
1985 |
+
#: includes/row-settings.php:615
|
1986 |
msgid "Medium Devices Only"
|
1987 |
msgstr "Tylko na średnich urządzeniach"
|
1988 |
|
1989 |
# @ fl-builder
|
1990 |
+
#: includes/column-settings.php:437 includes/module-settings.php:72
|
1991 |
+
#: includes/row-settings.php:616
|
1992 |
msgid "Medium & Small Devices Only"
|
1993 |
msgstr "Na urządzeniach średnich i małych"
|
1994 |
|
1995 |
# @ fl-builder
|
1996 |
+
#: includes/column-settings.php:438 includes/module-settings.php:73
|
1997 |
+
#: includes/row-settings.php:617
|
1998 |
msgid "Small Devices Only"
|
1999 |
msgstr "Tylko na małych urządzeniach"
|
2000 |
|
2001 |
# @ fl-builder
|
2002 |
+
#: includes/column-settings.php:440
|
2003 |
msgid "Choose whether to show or hide this column at different device sizes."
|
2004 |
msgstr "Wybierz"
|
2005 |
|
2006 |
# @ fl-builder
|
2007 |
+
#: includes/column-settings.php:447
|
2008 |
msgid "Medium Device Width"
|
2009 |
msgstr "Szerokość na średnich urządzenich"
|
2010 |
|
2011 |
# @ fl-builder
|
2012 |
+
#: includes/column-settings.php:448
|
2013 |
msgid "The width of this column on medium devices such as tablets."
|
2014 |
msgstr "Szerokość tej kolumny na średnich urządzeniach takich jak tablety."
|
2015 |
|
2016 |
# @ fl-builder
|
2017 |
+
#: includes/column-settings.php:450 includes/column-settings.php:478
|
2018 |
+
#: modules/callout/callout.php:284
|
2019 |
+
#: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
|
2020 |
#: modules/heading/heading.php:117 modules/heading/heading.php:144
|
2021 |
+
#: modules/heading/heading.php:174 modules/post-slider/post-slider.php:597
|
2022 |
msgid "Default"
|
2023 |
msgstr "Domyślna"
|
2024 |
|
2025 |
# @ fl-builder
|
2026 |
+
#: includes/column-settings.php:451 includes/column-settings.php:479
|
2027 |
+
#: modules/button/button.php:202 modules/callout/callout.php:285
|
2028 |
+
#: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
|
2029 |
#: modules/heading/heading.php:118 modules/heading/heading.php:145
|
2030 |
+
#: modules/heading/heading.php:175 modules/post-slider/post-slider.php:598
|
2031 |
+
#: modules/social-buttons/social-buttons.php:74
|
2032 |
msgid "Custom"
|
2033 |
msgstr "Wpisz"
|
2034 |
|
2035 |
# @ fl-builder
|
2036 |
+
#: includes/column-settings.php:464
|
2037 |
msgid "Custom Medium Device Width"
|
2038 |
msgstr "Wpisz szerokość dla urządzeń średniej wielkości"
|
2039 |
|
2040 |
# @ fl-builder
|
2041 |
+
#: includes/column-settings.php:475
|
2042 |
msgid "Small Device Width"
|
2043 |
msgstr "Szerokość na małych urządzenich"
|
2044 |
|
2045 |
# @ fl-builder
|
2046 |
+
#: includes/column-settings.php:476
|
2047 |
msgid "The width of this column on small devices such as phones."
|
2048 |
msgstr "Szerokość tej kolumny na małych urządzeniach takich jak smartfony."
|
2049 |
|
2050 |
# @ fl-builder
|
2051 |
+
#: includes/column-settings.php:492
|
2052 |
msgid "Custom Small Device Width"
|
2053 |
msgstr "Wpisz szerokość dla małych urządzeń"
|
2054 |
|
2055 |
# @ fl-builder
|
2056 |
+
#: includes/column-settings.php:504 includes/module-settings.php:115
|
2057 |
+
#: includes/row-settings.php:627
|
2058 |
msgid "CSS Selectors"
|
2059 |
msgstr "Selektory CSS"
|
2060 |
|
2061 |
# @ fl-builder
|
2062 |
+
#: includes/column-settings.php:508 includes/loop-settings.php:28
|
2063 |
+
#: includes/module-settings.php:119 includes/row-settings.php:631
|
2064 |
msgid "ID"
|
2065 |
msgstr "ID"
|
2066 |
|
2067 |
# @ fl-builder
|
2068 |
+
#: includes/column-settings.php:509
|
2069 |
msgid ""
|
2070 |
"A unique ID that will be applied to this column's HTML. Must start with a "
|
2071 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
2075 |
"(bez polskich znaków) i liczby"
|
2076 |
|
2077 |
# @ fl-builder
|
2078 |
+
#: includes/column-settings.php:516
|
2079 |
msgid "CSS Class"
|
2080 |
msgstr "Klasa CSS"
|
2081 |
|
2082 |
# @ fl-builder
|
2083 |
+
#: includes/column-settings.php:517
|
2084 |
msgid ""
|
2085 |
"A class that will be applied to this column's HTML. Must start with a letter "
|
2086 |
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
2134 |
msgstr "Anuluj"
|
2135 |
|
2136 |
# @ fl-builder
|
2137 |
+
#: includes/field-multiple-photos.php:20
|
2138 |
#, php-format
|
2139 |
msgid "1 Photo Selected"
|
2140 |
msgid_plural "%d Photos Selected"
|
2143 |
msgstr[2] "Zaznaczonych zdjęć: %d"
|
2144 |
|
2145 |
# @ fl-builder
|
2146 |
+
#: includes/field-multiple-photos.php:22
|
2147 |
msgid "Create Gallery"
|
2148 |
msgstr "Stwórz galerię"
|
2149 |
|
2150 |
# @ fl-builder
|
2151 |
+
#: includes/field-multiple-photos.php:23
|
2152 |
msgid "Edit Gallery"
|
2153 |
msgstr "Edytuj galerię"
|
2154 |
|
2155 |
# @ fl-builder
|
2156 |
+
#: includes/field-multiple-photos.php:24
|
2157 |
msgid "Add Photos"
|
2158 |
msgstr "Dodaj zdjęcia"
|
2159 |
|
2175 |
# @ fl-builder
|
2176 |
#: includes/global-settings.php:7 includes/template-settings.php:7
|
2177 |
#: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
|
2178 |
+
#: modules/button/button.php:59 modules/callout/callout.php:210
|
2179 |
#: modules/contact-form/contact-form.php:58
|
2180 |
+
#: modules/content-slider/content-slider.php:191
|
2181 |
+
#: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
|
2182 |
+
#: modules/gallery/gallery.php:220 modules/heading/heading.php:26
|
2183 |
#: modules/html/html.php:26 modules/icon-group/icon-group.php:128
|
2184 |
+
#: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:384
|
2185 |
#: modules/pricing-table/pricing-table.php:87
|
2186 |
#: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
|
2187 |
+
#: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
|
2188 |
#: modules/social-buttons/social-buttons.php:64
|
2189 |
+
#: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
|
2190 |
#: modules/testimonials/testimonials.php:30
|
2191 |
#: modules/testimonials/testimonials.php:200 modules/video/video.php:76
|
2192 |
#: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
|
2257 |
# @ fl-builder
|
2258 |
#: includes/global-settings.php:70 includes/global-settings.php:84
|
2259 |
#: includes/row-settings.php:20 includes/row-settings.php:38
|
2260 |
+
#: modules/button/button.php:201 modules/callout/callout.php:596
|
2261 |
msgid "Full Width"
|
2262 |
msgstr "Pełna szerokość"
|
2263 |
|
2500 |
msgstr "OK"
|
2501 |
|
2502 |
# @ fl-builder
|
2503 |
+
#: includes/js-config.php:56 modules/photo/photo.php:470
|
2504 |
msgid "Photo Page"
|
2505 |
msgstr "Strona zdjęcia"
|
2506 |
|
2570 |
msgid "Template Saved!"
|
2571 |
msgstr "Szablon zapisany!"
|
2572 |
|
2573 |
+
#: includes/js-config.php:77 modules/post-slider/post-slider.php:463
|
2574 |
msgid "Thumbnail"
|
2575 |
msgstr "Miniatura"
|
2576 |
|
2744 |
msgstr "Kolejność według"
|
2745 |
|
2746 |
# @ fl-builder
|
2747 |
+
#: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
|
2748 |
+
#: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:503
|
2749 |
#: modules/woocommerce/woocommerce.php:189
|
2750 |
msgid "Date"
|
2751 |
msgstr "Data"
|
2762 |
msgstr "Tytuł"
|
2763 |
|
2764 |
# @ fl-builder
|
2765 |
+
#: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
|
2766 |
+
#: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:494
|
2767 |
msgid "Author"
|
2768 |
msgstr "Autor"
|
2769 |
|
2890 |
|
2891 |
# @ fl-builder
|
2892 |
#: includes/module-settings.php:102
|
2893 |
+
#: modules/content-slider/content-slider.php:230
|
2894 |
+
#: modules/post-carousel/post-carousel.php:145
|
2895 |
+
#: modules/post-slider/post-slider.php:362
|
2896 |
#: modules/testimonials/testimonials.php:91
|
2897 |
msgid "Delay"
|
2898 |
msgstr "Wstrzymaj animację na"
|
2899 |
|
2900 |
# @ fl-builder
|
2901 |
+
#: includes/module-settings.php:106 includes/row-settings.php:290
|
2902 |
+
#: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
|
2903 |
+
#: modules/content-slider/content-slider.php:251
|
2904 |
+
#: modules/post-carousel/post-carousel.php:148
|
2905 |
+
#: modules/post-carousel/post-carousel.php:164
|
2906 |
+
#: modules/post-slider/post-slider.php:365
|
2907 |
+
#: modules/post-slider/post-slider.php:390 modules/slideshow/slideshow.php:393
|
2908 |
+
#: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
|
2909 |
+
#: modules/testimonials/testimonials.php:95
|
2910 |
#: modules/testimonials/testimonials.php:112
|
2911 |
msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
|
2912 |
msgid "seconds"
|
2928 |
"myślnika. Nie używaj w nim spacji."
|
2929 |
|
2930 |
# @ fl-builder
|
2931 |
+
#: includes/module-settings.php:127 includes/row-settings.php:639
|
2932 |
msgid "Class"
|
2933 |
msgstr "Klasa"
|
2934 |
|
2944 |
"Jeśli chcesz wpisać więcej niż jedną klasę, oddziel je spacjami."
|
2945 |
|
2946 |
# @ fl-builder
|
2947 |
+
#: includes/row-settings.php:16 modules/button/button.php:197
|
2948 |
+
#: modules/content-slider/content-slider.php:484
|
2949 |
msgid "Width"
|
2950 |
msgstr "Szerokość"
|
2951 |
|
2976 |
"szerokość)"
|
2977 |
|
2978 |
# @ fl-builder
|
2979 |
+
#: includes/row-settings.php:48 modules/button/button.php:120
|
2980 |
+
#: modules/cta/cta.php:188 modules/heading/heading.php:72
|
2981 |
+
#: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
|
2982 |
+
#: modules/post-carousel/post-carousel.php:392
|
2983 |
+
#: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:675
|
2984 |
+
msgid "Colors"
|
2985 |
+
msgstr "Kolory"
|
2986 |
+
|
2987 |
+
# @ fl-builder
|
2988 |
+
#: includes/row-settings.php:52 modules/button/button.php:139
|
2989 |
+
#: modules/callout/callout.php:534
|
2990 |
+
#: modules/content-slider/content-slider.php:529
|
2991 |
+
#: modules/content-slider/content-slider.php:651
|
2992 |
+
#: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
|
2993 |
+
#: modules/cta/cta.php:289 modules/heading/heading.php:77
|
2994 |
+
#: modules/post-carousel/post-carousel.php:396
|
2995 |
+
#: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:679
|
2996 |
+
#: modules/subscribe-form/subscribe-form.php:207
|
2997 |
+
msgid "Text Color"
|
2998 |
+
msgstr "Kolor tekstu"
|
2999 |
+
|
3000 |
+
# @ fl-builder
|
3001 |
+
#: includes/row-settings.php:95
|
3002 |
msgctxt "Background type."
|
3003 |
msgid "Video"
|
3004 |
msgstr "Wideo"
|
3005 |
|
3006 |
# @ fl-builder
|
3007 |
+
#: includes/row-settings.php:97
|
3008 |
msgctxt "Background type."
|
3009 |
msgid "Slideshow"
|
3010 |
msgstr "Pokaz slajdów"
|
3011 |
|
3012 |
# @ fl-builder
|
3013 |
+
#: includes/row-settings.php:101
|
3014 |
msgctxt "Background type."
|
3015 |
msgid "Parallax"
|
3016 |
msgstr "Parallax"
|
3017 |
|
3018 |
# @ fl-builder
|
3019 |
+
#: includes/row-settings.php:227
|
3020 |
msgid "Background Video"
|
3021 |
msgstr "Wideo w tle"
|
3022 |
|
3023 |
# @ fl-builder
|
3024 |
+
#: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
|
3025 |
#: modules/video/video.php:19 modules/video/video.php:100
|
3026 |
msgid "Video"
|
3027 |
msgstr "Wideo"
|
3028 |
|
3029 |
# @ fl-builder
|
3030 |
+
#: includes/row-settings.php:232
|
3031 |
msgid ""
|
3032 |
"An HTML5 video to use as the background of this row. Supported types are "
|
3033 |
"MP4, WebM and Ogg."
|
3036 |
"to MP4, WebM i Ogg."
|
3037 |
|
3038 |
# @ fl-builder
|
3039 |
+
#: includes/row-settings.php:239
|
3040 |
msgid "Fallback Photo"
|
3041 |
msgstr "Zdjęcie \"awaryjne\""
|
3042 |
|
3043 |
# @ fl-builder
|
3044 |
+
#: includes/row-settings.php:240
|
3045 |
msgid "A photo that will be displayed if the video fails to load."
|
3046 |
msgstr ""
|
3047 |
"Zdjęcie, które ma zostać wczytane, gdy nie uda się wczytać pliku wideo."
|
3048 |
|
3049 |
# @ fl-builder
|
3050 |
+
#: includes/row-settings.php:248
|
3051 |
msgid "Background Slideshow"
|
3052 |
msgstr "Pokaz slajdów w tle"
|
3053 |
|
3054 |
# @ fl-builder
|
3055 |
+
#: includes/row-settings.php:252 modules/gallery/gallery.php:241
|
3056 |
+
#: modules/slideshow/slideshow.php:271
|
3057 |
msgid "Source"
|
3058 |
msgstr "Źródło"
|
3059 |
|
3060 |
# @ fl-builder
|
3061 |
+
#: includes/row-settings.php:255 modules/gallery/gallery.php:244
|
3062 |
+
#: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
|
3063 |
#: modules/video/video.php:86
|
3064 |
msgid "Media Library"
|
3065 |
msgstr "Biblioteka mediów"
|
3066 |
|
3067 |
# @ fl-builder
|
3068 |
+
#: includes/row-settings.php:258 modules/gallery/gallery.php:247
|
3069 |
+
#: modules/slideshow/slideshow.php:277
|
3070 |
msgid ""
|
3071 |
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
3072 |
"site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
|
3077 |
"Get a link w swojej galerii SmugMug."
|
3078 |
|
3079 |
# @ fl-builder
|
3080 |
+
#: includes/row-settings.php:273 modules/gallery/gallery.php:259
|
3081 |
+
#: modules/slideshow/slideshow.php:289
|
3082 |
msgid "Photos"
|
3083 |
msgstr "Zdjęcia"
|
3084 |
|
3085 |
# @ fl-builder
|
3086 |
+
#: includes/row-settings.php:280 modules/gallery/gallery.php:263
|
3087 |
+
#: modules/slideshow/slideshow.php:293
|
3088 |
msgid "Feed URL"
|
3089 |
msgstr "Url kanału"
|
3090 |
|
3091 |
# @ fl-builder
|
3092 |
+
#: includes/row-settings.php:287 includes/row-settings.php:352
|
3093 |
+
#: modules/slideshow/slideshow.php:390
|
3094 |
msgid "Speed"
|
3095 |
msgstr "Szybkość"
|
3096 |
|
3097 |
# @ fl-builder
|
3098 |
+
#: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
|
3099 |
+
#: modules/post-slider/post-slider.php:369 modules/slideshow/slideshow.php:397
|
3100 |
+
#: modules/testimonials/testimonials.php:99
|
3101 |
msgid "Transition"
|
3102 |
msgstr "Animacja"
|
3103 |
|
3104 |
# @ fl-builder
|
3105 |
+
#: includes/row-settings.php:300
|
3106 |
msgctxt "Slideshow transition type."
|
3107 |
msgid "None"
|
3108 |
msgstr "Brak"
|
3109 |
|
3110 |
# @ fl-builder
|
3111 |
+
#: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
|
3112 |
+
#: modules/post-carousel/post-carousel.php:241
|
3113 |
+
#: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:372
|
3114 |
+
#: modules/slideshow/slideshow.php:401
|
3115 |
#: modules/testimonials/testimonials.php:103
|
3116 |
msgid "Fade"
|
3117 |
msgstr "Przenikanie"
|
3118 |
|
3119 |
# @ fl-builder
|
3120 |
+
#: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
|
3121 |
msgid "Ken Burns"
|
3122 |
msgstr "Ken Burns"
|
3123 |
|
3124 |
# @ fl-builder
|
3125 |
+
#: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
|
3126 |
msgid "Slide Horizontal"
|
3127 |
msgstr "Przesuwanie poziome"
|
3128 |
|
3129 |
# @ fl-builder
|
3130 |
+
#: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
|
3131 |
msgid "Slide Vertical"
|
3132 |
msgstr "Przesuwanie pionowe"
|
3133 |
|
3134 |
# @ fl-builder
|
3135 |
+
#: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
|
3136 |
msgid "Blinds"
|
3137 |
msgstr "Roleta"
|
3138 |
|
3139 |
# @ fl-builder
|
3140 |
+
#: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
|
3141 |
msgid "Bars"
|
3142 |
msgstr "Pasy"
|
3143 |
|
3144 |
# @ fl-builder
|
3145 |
+
#: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
|
3146 |
msgid "Random Bars"
|
3147 |
msgstr "Losowe pasy"
|
3148 |
|
3149 |
# @ fl-builder
|
3150 |
+
#: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
|
3151 |
msgid "Boxes"
|
3152 |
msgstr "Boksy"
|
3153 |
|
3154 |
# @ fl-builder
|
3155 |
+
#: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
|
3156 |
msgid "Random Boxes"
|
3157 |
msgstr "Losowe boksy"
|
3158 |
|
3159 |
# @ fl-builder
|
3160 |
+
#: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
|
3161 |
msgid "Boxes Grow"
|
3162 |
msgstr "Rosnące boksy"
|
3163 |
|
3164 |
# @ fl-builder
|
3165 |
+
#: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
|
3166 |
+
#: modules/post-carousel/post-carousel.php:161
|
3167 |
+
#: modules/post-slider/post-slider.php:387 modules/slideshow/slideshow.php:415
|
3168 |
#: modules/testimonials/testimonials.php:108
|
3169 |
msgid "Transition Speed"
|
3170 |
msgstr "Szybkość animacji"
|
3171 |
|
3172 |
# @ fl-builder
|
3173 |
+
#: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
|
3174 |
msgid "Randomize Photos"
|
3175 |
msgstr "Wyświetlaj zdjęcia losowo"
|
3176 |
|
3177 |
# @ fl-builder
|
3178 |
+
#: includes/row-settings.php:341
|
3179 |
msgid "Background Parallax"
|
3180 |
msgstr "Efekt Parallax"
|
3181 |
|
3182 |
# @ fl-builder
|
3183 |
+
#: includes/row-settings.php:355
|
3184 |
msgid "Fast"
|
3185 |
msgstr "Szybko"
|
3186 |
|
3187 |
# @ fl-builder
|
3188 |
+
#: includes/row-settings.php:356
|
3189 |
msgctxt "Speed."
|
3190 |
msgid "Medium"
|
3191 |
msgstr "Średnio"
|
3192 |
|
3193 |
# @ fl-builder
|
3194 |
+
#: includes/row-settings.php:357
|
3195 |
msgid "Slow"
|
3196 |
msgstr "Wolno"
|
3197 |
|
3198 |
# @ fl-builder
|
3199 |
+
#: includes/row-settings.php:619
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3200 |
msgid "Choose whether to show or hide this row at different device sizes."
|
3201 |
msgstr "Wybierz czy pokazywać ten wiersz na różnych urządzeniach."
|
3202 |
|
3203 |
# @ fl-builder
|
3204 |
+
#: includes/row-settings.php:632
|
3205 |
msgid ""
|
3206 |
"A unique ID that will be applied to this row's HTML. Must start with a "
|
3207 |
"letter and only contain dashes, underscores, letters or numbers. No spaces."
|
3211 |
"litery. Nie używaj spacji."
|
3212 |
|
3213 |
# @ fl-builder
|
3214 |
+
#: includes/row-settings.php:640
|
3215 |
msgid ""
|
3216 |
"A class that will be applied to this row's HTML. Must start with a letter "
|
3217 |
"and only contain dashes, underscores, letters or numbers. Separate multiple "
|
3363 |
#: includes/updater/classes/class-fl-updater.php:136
|
3364 |
#: includes/updater/includes/form.php:6
|
3365 |
msgid "Subscribe Now"
|
3366 |
+
msgstr "Zamów teraz"
|
3367 |
|
3368 |
# @ fl-builder
|
3369 |
#: includes/updater/includes/form.php:5
|
3371 |
"UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
|
3372 |
"enable automatic updates."
|
3373 |
msgstr ""
|
3374 |
+
"ULEPSZENIE NIEDOSTĘPNE! Zamów wtyczkę lub wpisz klucz licencji poniżej aby "
|
3375 |
+
"włączyć automatyczne uaktualnienia."
|
3376 |
|
3377 |
# @ fl-builder
|
3378 |
#: includes/updater/includes/form.php:11
|
3494 |
msgstr "Etykieta (nagłówek elementu)"
|
3495 |
|
3496 |
# @ fl-builder
|
3497 |
+
#: modules/accordion/accordion.php:122
|
3498 |
+
#: modules/post-carousel/post-carousel.php:359
|
3499 |
+
#: modules/post-carousel/post-carousel.php:363
|
3500 |
+
#: modules/post-carousel/post-carousel.php:435
|
3501 |
+
#: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
|
3502 |
+
#: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:543
|
3503 |
+
#: modules/post-slider/post-slider.php:547
|
3504 |
+
#: modules/post-slider/post-slider.php:754 modules/tabs/tabs.php:89
|
3505 |
msgid "Content"
|
3506 |
msgstr "Treść"
|
3507 |
|
3508 |
# @ fl-builder
|
3509 |
+
#: modules/button/button.php:14 modules/callout/callout.php:480
|
3510 |
+
#: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
|
3511 |
#: modules/pricing-table/pricing-table.php:129
|
3512 |
+
#: modules/subscribe-form/subscribe-form.php:161
|
3513 |
msgid "Button"
|
3514 |
msgstr "Przycisk"
|
3515 |
|
3519 |
msgstr "Prosty moduł do tworzenia wezwania do akcji."
|
3520 |
|
3521 |
# @ fl-builder
|
3522 |
+
#: modules/button/button.php:67 modules/cta/cta.php:223
|
3523 |
msgid "Click Here"
|
3524 |
msgstr "Kliknij tutaj"
|
3525 |
|
3526 |
# @ fl-builder
|
3527 |
+
#: modules/button/button.php:75 modules/callout/callout.php:318
|
3528 |
+
#: modules/callout/callout.php:366 modules/callout/callout.php:370
|
3529 |
+
#: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
|
3530 |
#: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
|
3531 |
#: modules/icon/icon.php:34
|
3532 |
msgid "Icon"
|
3533 |
msgstr "Ikona"
|
3534 |
|
3535 |
+
#: modules/button/button.php:80 modules/cta/cta.php:236
|
3536 |
+
#: modules/subscribe-form/subscribe-form.php:178
|
3537 |
+
msgid "Icon Position"
|
3538 |
+
msgstr "Pozycja ikony"
|
3539 |
+
|
3540 |
+
#: modules/button/button.php:83 modules/callout/callout.php:508
|
3541 |
+
#: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
|
3542 |
+
#: modules/subscribe-form/subscribe-form.php:181
|
3543 |
+
msgid "Before Text"
|
3544 |
+
msgstr "Przed tekstem"
|
3545 |
+
|
3546 |
+
#: modules/button/button.php:84 modules/callout/callout.php:509
|
3547 |
+
#: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
|
3548 |
+
#: modules/subscribe-form/subscribe-form.php:182
|
3549 |
+
msgid "After Text"
|
3550 |
+
msgstr "Za tekstem"
|
3551 |
+
|
3552 |
# @ fl-builder
|
3553 |
+
#: modules/button/button.php:90 modules/button/button.php:94
|
3554 |
+
#: modules/callout/callout.php:446 modules/callout/callout.php:450
|
3555 |
+
#: modules/content-slider/content-slider.php:574
|
3556 |
+
#: modules/content-slider/content-slider.php:578
|
3557 |
+
#: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
|
3558 |
#: modules/heading/heading.php:43 modules/heading/heading.php:47
|
3559 |
#: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
|
3560 |
+
#: modules/slideshow/slideshow.php:351
|
3561 |
msgid "Link"
|
3562 |
msgstr "Link"
|
3563 |
|
3564 |
# @ fl-builder
|
3565 |
+
#: modules/button/button.php:95
|
3566 |
msgid "http://www.example.com"
|
3567 |
msgstr "http://www.przyklad.pl"
|
3568 |
|
3569 |
# @ fl-builder
|
3570 |
+
#: modules/button/button.php:102 modules/callout/callout.php:458
|
3571 |
+
#: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
|
3572 |
#: modules/heading/heading.php:54 modules/icon/icon.php:50
|
3573 |
+
#: modules/photo/photo.php:494
|
3574 |
msgid "Link Target"
|
3575 |
msgstr "Gdzie otworzyć link?"
|
3576 |
|
3577 |
# @ fl-builder
|
3578 |
+
#: modules/button/button.php:105 modules/callout/callout.php:461
|
3579 |
+
#: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
|
3580 |
#: modules/heading/heading.php:57 modules/icon/icon.php:53
|
3581 |
+
#: modules/photo/photo.php:497
|
3582 |
msgid "Same Window"
|
3583 |
msgstr "W tym samym oknie"
|
3584 |
|
3585 |
# @ fl-builder
|
3586 |
+
#: modules/button/button.php:106 modules/callout/callout.php:462
|
3587 |
+
#: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
|
3588 |
#: modules/heading/heading.php:58 modules/icon/icon.php:54
|
3589 |
+
#: modules/photo/photo.php:498
|
3590 |
msgid "New Window"
|
3591 |
msgstr "W nowym oknie"
|
3592 |
|
3593 |
# @ fl-builder
|
3594 |
+
#: modules/button/button.php:130 modules/callout/callout.php:410
|
3595 |
+
#: modules/callout/callout.php:525
|
3596 |
+
#: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3597 |
#: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
|
3598 |
+
#: modules/subscribe-form/subscribe-form.php:198
|
3599 |
msgid "Background Hover Color"
|
3600 |
msgstr "Kolor tła po najechaniu myszką"
|
3601 |
|
3602 |
# @ fl-builder
|
3603 |
+
#: modules/button/button.php:145 modules/callout/callout.php:540
|
3604 |
+
#: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
|
3605 |
+
#: modules/subscribe-form/subscribe-form.php:213
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3606 |
msgid "Text Hover Color"
|
3607 |
msgstr "Kolor tekstu po najechaniu myszką"
|
3608 |
|
3609 |
# @ fl-builder
|
3610 |
+
#: modules/button/button.php:162 modules/callout/callout.php:557
|
3611 |
+
#: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
|
3612 |
+
#: modules/subscribe-form/subscribe-form.php:230
|
3613 |
msgid "Flat"
|
3614 |
msgstr "Płaski"
|
3615 |
|
3616 |
# @ fl-builder
|
3617 |
+
#: modules/button/button.php:163 modules/callout/callout.php:418
|
3618 |
+
#: modules/callout/callout.php:558
|
3619 |
+
#: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
|
3620 |
#: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
|
3621 |
+
#: modules/subscribe-form/subscribe-form.php:231
|
3622 |
msgid "Gradient"
|
3623 |
msgstr "Gradient"
|
3624 |
|
3625 |
# @ fl-builder
|
3626 |
+
#: modules/button/button.php:164 modules/callout/callout.php:559
|
3627 |
+
#: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
|
3628 |
+
#: modules/subscribe-form/subscribe-form.php:232
|
3629 |
msgid "Transparent"
|
3630 |
msgstr "Przezroczysty"
|
3631 |
|
3632 |
# @ fl-builder
|
3633 |
+
#: modules/button/button.php:174 modules/callout/callout.php:569
|
3634 |
+
#: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
|
3635 |
#: modules/pricing-table/pricing-table.php:67
|
3636 |
+
#: modules/subscribe-form/subscribe-form.php:242
|
3637 |
msgid "Border Size"
|
3638 |
msgstr "Rozmiar obramowania"
|
3639 |
|
3640 |
# @ fl-builder
|
3641 |
+
#: modules/button/button.php:183 modules/callout/callout.php:578
|
3642 |
+
#: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
|
3643 |
+
#: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
|
3644 |
msgid "Background Opacity"
|
3645 |
msgstr "Krycie tła"
|
3646 |
|
3647 |
# @ fl-builder
|
3648 |
+
#: modules/button/button.php:193 modules/callout/callout.php:245
|
3649 |
+
#: modules/cta/cta.php:105 modules/heading/heading.php:82
|
3650 |
#: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
|
3651 |
+
#: modules/subscribe-form/subscribe-form.php:95
|
3652 |
msgid "Structure"
|
3653 |
msgstr "Struktura"
|
3654 |
|
3655 |
# @ fl-builder
|
3656 |
+
#: modules/button/button.php:200 modules/callout/callout.php:595
|
3657 |
msgctxt "Width."
|
3658 |
msgid "Auto"
|
3659 |
msgstr "Automatyczna"
|
3660 |
|
3661 |
# @ fl-builder
|
3662 |
+
#: modules/button/button.php:216
|
3663 |
msgid "Custom Width"
|
3664 |
msgstr "Domyślna szerokość"
|
3665 |
|
3666 |
# @ fl-builder
|
3667 |
+
#: modules/button/button.php:224 modules/cta/cta.php:123
|
3668 |
#: modules/heading/heading.php:86 modules/heading/heading.php:141
|
3669 |
#: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
|
3670 |
+
#: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
|
3671 |
msgid "Alignment"
|
3672 |
msgstr "Wyrównanie"
|
3673 |
|
3674 |
# @ fl-builder
|
3675 |
+
#: modules/button/button.php:234 modules/callout/callout.php:601
|
3676 |
+
#: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
|
3677 |
#: modules/heading/heading.php:114 modules/heading/heading.php:171
|
3678 |
+
#: modules/subscribe-form/subscribe-form.php:265
|
3679 |
msgid "Font Size"
|
3680 |
msgstr "Rozmiar fonta"
|
3681 |
|
3682 |
# @ fl-builder
|
3683 |
+
#: modules/button/button.php:250 modules/callout/callout.php:617
|
3684 |
+
#: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
|
3685 |
msgid "Round Corners"
|
3686 |
msgstr "Zaokrąglone rogi"
|
3687 |
|
3696 |
msgstr "Nagłówek i fragment tekstu z opcjonalnym linkiem, ikoną i obrazem."
|
3697 |
|
3698 |
# @ fl-builder
|
3699 |
+
#: modules/callout/callout.php:217
|
3700 |
+
#: modules/content-slider/content-slider.php:414
|
3701 |
+
#: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
|
3702 |
#: modules/heading/heading.php:14 modules/heading/heading.php:33
|
3703 |
+
#: modules/post-slider/post-slider.php:577
|
3704 |
#: modules/testimonials/testimonials.php:56
|
3705 |
#: modules/testimonials/testimonials.php:61
|
3706 |
msgid "Heading"
|
3707 |
msgstr "Nagłówek"
|
3708 |
|
3709 |
# @ fl-builder
|
3710 |
+
#: modules/callout/callout.php:249
|
3711 |
msgid "Overall Alignment"
|
3712 |
msgstr "Wyrównanie tekstu"
|
3713 |
|
3714 |
# @ fl-builder
|
3715 |
+
#: modules/callout/callout.php:256
|
3716 |
msgid "The alignment that will apply to all elements within the callout."
|
3717 |
msgstr ""
|
3718 |
"To wyrównanie zostanie ustawione do wszystkich elementów w obrębie "
|
3719 |
"wyróżnienia."
|
3720 |
|
3721 |
# @ fl-builder
|
3722 |
+
#: modules/callout/callout.php:264 modules/cta/cta.php:148
|
3723 |
msgid "Heading Structure"
|
3724 |
msgstr "Struktura nagłówka"
|
3725 |
|
3726 |
# @ fl-builder
|
3727 |
+
#: modules/callout/callout.php:268
|
3728 |
+
#: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
|
3729 |
+
#: modules/post-slider/post-slider.php:581
|
3730 |
msgid "Heading Tag"
|
3731 |
msgstr "Tag nagłówka"
|
3732 |
|
3733 |
# @ fl-builder
|
3734 |
+
#: modules/callout/callout.php:281
|
3735 |
+
#: modules/content-slider/content-slider.php:446
|
3736 |
+
#: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
|
3737 |
+
#: modules/post-slider/post-slider.php:594
|
3738 |
+
#: modules/post-slider/post-slider.php:608
|
3739 |
#: modules/testimonials/testimonials.php:69
|
3740 |
msgid "Heading Size"
|
3741 |
msgstr "Rozmiar nagłówka"
|
3742 |
|
3743 |
# @ fl-builder
|
3744 |
+
#: modules/callout/callout.php:295 modules/cta/cta.php:179
|
3745 |
msgid "Heading Custom Size"
|
3746 |
msgstr "Wpisz rozmiar nagłówka"
|
3747 |
|
3748 |
# @ fl-builder
|
3749 |
+
#: modules/callout/callout.php:313
|
3750 |
msgid "Image Type"
|
3751 |
msgstr "Rodzaj obrazka"
|
3752 |
|
3753 |
# @ fl-builder
|
3754 |
+
#: modules/callout/callout.php:316
|
3755 |
msgctxt "Image type."
|
3756 |
msgid "None"
|
3757 |
msgstr "Brak"
|
3758 |
|
3759 |
# @ fl-builder
|
3760 |
+
#: modules/callout/callout.php:341 modules/photo/photo.php:417
|
3761 |
+
#: modules/post-slider/post-slider.php:476 modules/slideshow/slideshow.php:320
|
3762 |
msgid "Crop"
|
3763 |
msgstr "Kadruj"
|
3764 |
|
3765 |
# @ fl-builder
|
3766 |
+
#: modules/callout/callout.php:344
|
3767 |
msgctxt "Crop"
|
3768 |
msgid "None"
|
3769 |
msgstr "Brak"
|
3770 |
|
3771 |
# @ fl-builder
|
3772 |
+
#: modules/callout/callout.php:345 modules/photo/photo.php:421
|
3773 |
+
#: modules/post-slider/post-slider.php:480
|
3774 |
msgid "Landscape"
|
3775 |
msgstr "Krajobraz"
|
3776 |
|
3777 |
# @ fl-builder
|
3778 |
+
#: modules/callout/callout.php:346 modules/photo/photo.php:422
|
3779 |
+
#: modules/post-slider/post-slider.php:481
|
3780 |
msgid "Panorama"
|
3781 |
msgstr "Panorama"
|
3782 |
|
3783 |
# @ fl-builder
|
3784 |
+
#: modules/callout/callout.php:347 modules/photo/photo.php:423
|
3785 |
+
#: modules/post-slider/post-slider.php:482
|
3786 |
msgid "Portrait"
|
3787 |
msgstr "Portret"
|
3788 |
|
3789 |
# @ fl-builder
|
3790 |
+
#: modules/callout/callout.php:348 modules/photo/photo.php:424
|
3791 |
+
#: modules/post-slider/post-slider.php:483
|
3792 |
msgid "Square"
|
3793 |
msgstr "Kwadrat"
|
3794 |
|
3795 |
# @ fl-builder
|
3796 |
+
#: modules/callout/callout.php:349 modules/photo/photo.php:425
|
3797 |
+
#: modules/post-slider/post-slider.php:484
|
3798 |
msgid "Circle"
|
3799 |
msgstr "Okrąg"
|
3800 |
|
3801 |
# @ fl-builder
|
3802 |
+
#: modules/callout/callout.php:357 modules/callout/callout.php:377
|
3803 |
msgid "Above Heading"
|
3804 |
msgstr "Powyżej nagłówka"
|
3805 |
|
3806 |
# @ fl-builder
|
3807 |
+
#: modules/callout/callout.php:358 modules/callout/callout.php:378
|
3808 |
msgid "Below Heading"
|
3809 |
msgstr "Poniżej nagłówka"
|
3810 |
|
3811 |
# @ fl-builder
|
3812 |
+
#: modules/callout/callout.php:359 modules/callout/callout.php:381
|
3813 |
msgid "Left of Text and Heading"
|
3814 |
msgstr "Po lewej stronie tekstu i nagłówka"
|
3815 |
|
3816 |
# @ fl-builder
|
3817 |
+
#: modules/callout/callout.php:360 modules/callout/callout.php:382
|
3818 |
msgid "Right of Text and Heading"
|
3819 |
msgstr "Po prawej stronie tekstu i nagłówka"
|
3820 |
|
3821 |
# @ fl-builder
|
3822 |
+
#: modules/callout/callout.php:379
|
3823 |
msgid "Left of Heading"
|
3824 |
msgstr "Po lewej stronie nagłówka"
|
3825 |
|
3826 |
# @ fl-builder
|
3827 |
+
#: modules/callout/callout.php:380
|
3828 |
msgid "Right of Heading"
|
3829 |
msgstr "Po proawej stronie nagłówka"
|
3830 |
|
3831 |
# @ fl-builder
|
3832 |
+
#: modules/callout/callout.php:388
|
3833 |
msgid "Icon Colors"
|
3834 |
msgstr "Kolory ikon"
|
3835 |
|
3836 |
# @ fl-builder
|
3837 |
+
#: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
|
3838 |
#: modules/icon/icon.php:87
|
3839 |
msgid "Hover Color"
|
3840 |
msgstr "Kolor po najechaniu myszką"
|
3841 |
|
3842 |
# @ fl-builder
|
3843 |
+
#: modules/callout/callout.php:428
|
3844 |
msgid "Icon Structure"
|
3845 |
msgstr "Struktura ikon"
|
3846 |
|
3847 |
# @ fl-builder
|
3848 |
+
#: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
|
3849 |
+
#: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
|
3850 |
+
#: modules/post-grid/post-grid.php:139
|
3851 |
msgid "Size"
|
3852 |
msgstr "Rozmiar"
|
3853 |
|
3854 |
# @ fl-builder
|
3855 |
+
#: modules/callout/callout.php:443
|
3856 |
+
#: modules/content-slider/content-slider.php:571
|
3857 |
msgid "Call To Action"
|
3858 |
msgstr "Wezwanie Do Akcji"
|
3859 |
|
3860 |
# @ fl-builder
|
3861 |
+
#: modules/callout/callout.php:451
|
3862 |
msgid ""
|
3863 |
"The link applies to the entire module. If choosing a call to action type "
|
3864 |
"below, this link will also be used for the text or button."
|
3867 |
"do akcji, ten link będzie również użyty do tekstu lub przycisku."
|
3868 |
|
3869 |
# @ fl-builder
|
3870 |
+
#: modules/callout/callout.php:471
|
3871 |
+
#: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
|
3872 |
msgid "Call to Action"
|
3873 |
msgstr "Wezwanie do akcji"
|
3874 |
|
3875 |
# @ fl-builder
|
3876 |
+
#: modules/callout/callout.php:478
|
3877 |
+
#: modules/content-slider/content-slider.php:600
|
3878 |
msgctxt "Call to action."
|
3879 |
msgid "None"
|
3880 |
msgstr "Brak"
|
3881 |
|
3882 |
# @ fl-builder
|
3883 |
+
#: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
|
3884 |
+
#: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:566
|
3885 |
+
msgid "Read More"
|
3886 |
+
msgstr "Czytaj więcej"
|
3887 |
+
|
3888 |
+
# @ fl-builder
|
3889 |
+
#: modules/callout/callout.php:500
|
3890 |
+
#: modules/content-slider/content-slider.php:621
|
3891 |
+
#: modules/subscribe-form/subscribe-form.php:173
|
3892 |
msgid "Button Icon"
|
3893 |
msgstr "Ikona przycisku"
|
3894 |
|
3895 |
+
#: modules/callout/callout.php:505
|
3896 |
+
#: modules/content-slider/content-slider.php:626
|
3897 |
+
msgid "Button Icon Position"
|
3898 |
+
msgstr "Pozycja ikony w przycisku"
|
3899 |
+
|
3900 |
# @ fl-builder
|
3901 |
+
#: modules/callout/callout.php:515
|
3902 |
+
#: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
|
3903 |
+
#: modules/subscribe-form/subscribe-form.php:188
|
3904 |
msgid "Button Colors"
|
3905 |
msgstr "Kolory przycisku"
|
3906 |
|
3907 |
# @ fl-builder
|
3908 |
+
#: modules/callout/callout.php:550
|
3909 |
+
#: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
|
3910 |
+
#: modules/subscribe-form/subscribe-form.php:223
|
3911 |
msgid "Button Style"
|
3912 |
msgstr "Styl przycisku"
|
3913 |
|
3914 |
# @ fl-builder
|
3915 |
+
#: modules/callout/callout.php:588
|
3916 |
+
#: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
|
3917 |
+
#: modules/subscribe-form/subscribe-form.php:261
|
3918 |
msgid "Button Structure"
|
3919 |
msgstr "Struktura przycisku"
|
3920 |
|
3921 |
# @ fl-builder
|
3922 |
+
#: modules/callout/callout.php:592
|
3923 |
msgid "Button Width"
|
3924 |
msgstr "Szerokość przycisku"
|
3925 |
|
3959 |
"Formularz będzie wysyłał wiadomości na adres e-mail, który podasz w tym polu"
|
3960 |
|
3961 |
#: modules/contact-form/contact-form.php:75
|
3962 |
+
#: modules/subscribe-form/subscribe-form.php:108
|
3963 |
msgid "Name Field"
|
3964 |
msgstr "Pole na imię"
|
3965 |
|
3968 |
#: modules/contact-form/contact-form.php:87
|
3969 |
#: modules/contact-form/contact-form.php:96
|
3970 |
#: modules/contact-form/contact-form.php:105
|
3971 |
+
#: modules/post-carousel/post-carousel.php:258
|
3972 |
+
#: modules/post-carousel/post-carousel.php:322
|
3973 |
+
#: modules/post-carousel/post-carousel.php:331
|
3974 |
+
#: modules/post-carousel/post-carousel.php:366
|
3975 |
+
#: modules/post-carousel/post-carousel.php:375
|
3976 |
+
#: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
|
3977 |
+
#: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
|
3978 |
+
#: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
|
3979 |
+
#: modules/post-slider/post-slider.php:442
|
3980 |
+
#: modules/post-slider/post-slider.php:497
|
3981 |
+
#: modules/post-slider/post-slider.php:506
|
3982 |
+
#: modules/post-slider/post-slider.php:536
|
3983 |
+
#: modules/post-slider/post-slider.php:550
|
3984 |
+
#: modules/post-slider/post-slider.php:559
|
3985 |
+
#: modules/subscribe-form/subscribe-form.php:111
|
3986 |
msgid "Show"
|
3987 |
msgstr "Pokaż"
|
3988 |
|
3991 |
#: modules/contact-form/contact-form.php:88
|
3992 |
#: modules/contact-form/contact-form.php:97
|
3993 |
#: modules/contact-form/contact-form.php:106
|
3994 |
+
#: modules/post-carousel/post-carousel.php:259
|
3995 |
+
#: modules/post-carousel/post-carousel.php:323
|
3996 |
+
#: modules/post-carousel/post-carousel.php:332
|
3997 |
+
#: modules/post-carousel/post-carousel.php:367
|
3998 |
+
#: modules/post-carousel/post-carousel.php:376
|
3999 |
+
#: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
|
4000 |
+
#: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
|
4001 |
+
#: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
|
4002 |
+
#: modules/post-slider/post-slider.php:443
|
4003 |
+
#: modules/post-slider/post-slider.php:498
|
4004 |
+
#: modules/post-slider/post-slider.php:507
|
4005 |
+
#: modules/post-slider/post-slider.php:537
|
4006 |
+
#: modules/post-slider/post-slider.php:551
|
4007 |
+
#: modules/post-slider/post-slider.php:560
|
4008 |
+
#: modules/subscribe-form/subscribe-form.php:112
|
4009 |
msgid "Hide"
|
4010 |
msgstr "Nie pokazuj"
|
4011 |
|
4046 |
msgid "Please enter a subject."
|
4047 |
msgstr "Proszę wpisać temat."
|
4048 |
|
|
|
|
|
|
|
|
|
|
|
4049 |
# @ fl-builder
|
4050 |
#: modules/contact-form/includes/frontend.php:22
|
4051 |
msgid "Please enter a valid email."
|
4106 |
msgstr "Wyświetla slajdy z opcjonalnym nagłówkiem i wezwaniem do akcji."
|
4107 |
|
4108 |
# @ fl-builder
|
4109 |
+
#: modules/content-slider/content-slider.php:198 modules/map/map.php:41
|
4110 |
+
#: modules/post-slider/post-slider.php:344 modules/separator/separator.php:58
|
4111 |
+
#: modules/slideshow/slideshow.php:302
|
4112 |
msgid "Height"
|
4113 |
msgstr "Wysokość"
|
4114 |
|
4115 |
# @ fl-builder
|
4116 |
+
#: modules/content-slider/content-slider.php:203
|
4117 |
msgid ""
|
4118 |
"This setting is the minimum height of the content slider. Content will "
|
4119 |
"expand the height automatically."
|
4122 |
"dopasowywana przez treść w sliderze."
|
4123 |
|
4124 |
# @ fl-builder
|
4125 |
+
#: modules/content-slider/content-slider.php:207
|
4126 |
+
#: modules/post-carousel/post-carousel.php:136
|
4127 |
+
#: modules/post-slider/post-slider.php:353 modules/slideshow/slideshow.php:381
|
4128 |
+
#: modules/testimonials/testimonials.php:82 modules/video/video.php:108
|
4129 |
msgid "Auto Play"
|
4130 |
msgstr "Autoodtwarzanie"
|
4131 |
|
4132 |
# @ fl-builder
|
4133 |
+
#: modules/content-slider/content-slider.php:221
|
4134 |
msgid "Show Play/Pause"
|
4135 |
msgstr "Pokaż Start/Stop"
|
4136 |
|
4137 |
# @ fl-builder
|
4138 |
+
#: modules/content-slider/content-slider.php:241
|
4139 |
#: modules/testimonials/testimonials.php:102
|
4140 |
msgctxt "Transition type."
|
4141 |
msgid "Slide"
|
4142 |
msgstr "Wjazd"
|
4143 |
|
4144 |
# @ fl-builder
|
4145 |
+
#: modules/content-slider/content-slider.php:255
|
4146 |
+
#: modules/post-carousel/post-carousel.php:188
|
4147 |
+
#: modules/post-slider/post-slider.php:414
|
4148 |
#: modules/testimonials/testimonials.php:121
|
4149 |
msgid "Show Arrows"
|
4150 |
msgstr "Pokaż strzałki"
|
4151 |
|
4152 |
# @ fl-builder
|
4153 |
+
#: modules/content-slider/content-slider.php:264
|
4154 |
+
#: modules/post-carousel/post-carousel.php:179
|
4155 |
+
#: modules/post-slider/post-slider.php:405
|
4156 |
#: modules/testimonials/testimonials.php:151
|
4157 |
msgid "Show Dots"
|
4158 |
msgstr "Pokaż kropki"
|
4159 |
|
4160 |
# @ fl-builder
|
4161 |
+
#: modules/content-slider/content-slider.php:278
|
4162 |
msgid "Max Content Width"
|
4163 |
msgstr "Maksymalna szerokość treści"
|
4164 |
|
4165 |
# @ fl-builder
|
4166 |
+
#: modules/content-slider/content-slider.php:283
|
4167 |
msgid "The max width that the content area will be within your slides."
|
4168 |
msgstr "Maksymalna szerokość dla treści slajdów"
|
4169 |
|
4170 |
# @ fl-builder
|
4171 |
+
#: modules/content-slider/content-slider.php:290
|
4172 |
msgid "Slides"
|
4173 |
msgstr "Slajdy"
|
4174 |
|
4175 |
# @ fl-builder
|
4176 |
+
#: modules/content-slider/content-slider.php:297
|
4177 |
+
#: modules/post-slider/post-slider.php:373
|
4178 |
msgid "Slide"
|
4179 |
msgstr "Slajd"
|
4180 |
|
4181 |
# @ fl-builder
|
4182 |
+
#: modules/content-slider/content-slider.php:312
|
4183 |
msgid "Slide Settings"
|
4184 |
msgstr "Ustawienia slajdu"
|
4185 |
|
4186 |
# @ fl-builder
|
4187 |
+
#: modules/content-slider/content-slider.php:322
|
4188 |
msgid "Slide Label"
|
4189 |
msgstr "Nazwa slajdu"
|
4190 |
|
4191 |
# @ fl-builder
|
4192 |
+
#: modules/content-slider/content-slider.php:323
|
4193 |
msgid ""
|
4194 |
"A label to identify this slide on the Slides tab of the Content Slider "
|
4195 |
"settings."
|
4197 |
"Nazwa slajdu pozoli Ci zidentyfikować go na karcie Slajdy w ustawieniach."
|
4198 |
|
4199 |
# @ fl-builder
|
4200 |
+
#: modules/content-slider/content-slider.php:328
|
4201 |
msgid "Background Layout"
|
4202 |
msgstr "Układ tła"
|
4203 |
|
4204 |
# @ fl-builder
|
4205 |
+
#: modules/content-slider/content-slider.php:334
|
4206 |
msgid "This setting is for the entire background of your slide."
|
4207 |
msgstr "Ustaw tło dla całej strony."
|
4208 |
|
4209 |
# @ fl-builder
|
4210 |
+
#: modules/content-slider/content-slider.php:369
|
4211 |
msgid "Background Video Code"
|
4212 |
msgstr "Kod wideo w tle"
|
4213 |
|
4214 |
# @ fl-builder
|
4215 |
+
#: modules/content-slider/content-slider.php:375
|
4216 |
msgid "Content Layout"
|
4217 |
msgstr "Układ treści"
|
4218 |
|
4219 |
# @ fl-builder
|
4220 |
+
#: modules/content-slider/content-slider.php:381
|
4221 |
msgid ""
|
4222 |
"This allows you to add content over or in addition to the background "
|
4223 |
"selection above. The location of the content layout can be selected in the "
|
4227 |
"w zakłądce Styl."
|
4228 |
|
4229 |
# @ fl-builder
|
4230 |
+
#: modules/content-slider/content-slider.php:384
|
4231 |
msgid "Text & Photo"
|
4232 |
msgstr "Tekst & Zdjęcie"
|
4233 |
|
4234 |
# @ fl-builder
|
4235 |
+
#: modules/content-slider/content-slider.php:385
|
4236 |
msgid "Text & Video"
|
4237 |
msgstr "Tekst & Wideo"
|
4238 |
|
4239 |
# @ fl-builder
|
4240 |
+
#: modules/content-slider/content-slider.php:386
|
4241 |
msgctxt "Content type."
|
4242 |
msgid "None"
|
4243 |
msgstr "Brak"
|
4244 |
|
4245 |
# @ fl-builder
|
4246 |
+
#: modules/content-slider/content-slider.php:409 modules/video/video.php:132
|
4247 |
msgid "Video Embed Code"
|
4248 |
msgstr "Kod osadzenia wideo"
|
4249 |
|
4250 |
# @ fl-builder
|
4251 |
+
#: modules/content-slider/content-slider.php:469
|
4252 |
msgid "Text Position"
|
4253 |
msgstr "Pozycja tekstu"
|
4254 |
|
4255 |
# @ fl-builder
|
4256 |
+
#: modules/content-slider/content-slider.php:475
|
4257 |
msgid ""
|
4258 |
"The position will move the content layout selections left, right or center "
|
4259 |
"over the background of the slide."
|
4260 |
msgstr "Ustaw treść slajdu po prawej, po lewej lub na środku slajdu."
|
4261 |
|
4262 |
# @ fl-builder
|
4263 |
+
#: modules/content-slider/content-slider.php:492
|
4264 |
msgid "Top Margin"
|
4265 |
msgstr "Górny mrgines"
|
4266 |
|
4267 |
# @ fl-builder
|
4268 |
+
#: modules/content-slider/content-slider.php:500
|
4269 |
msgid "Bottom Margin"
|
4270 |
msgstr "Dolny margines"
|
4271 |
|
4272 |
# @ fl-builder
|
4273 |
+
#: modules/content-slider/content-slider.php:508
|
4274 |
msgid "Left Margin"
|
4275 |
msgstr "Lewy margines"
|
4276 |
|
4277 |
# @ fl-builder
|
4278 |
+
#: modules/content-slider/content-slider.php:516
|
4279 |
msgid "Right Margin"
|
4280 |
msgstr "Prawy margines"
|
4281 |
|
4282 |
# @ fl-builder
|
4283 |
+
#: modules/content-slider/content-slider.php:525
|
4284 |
msgid "Text Colors"
|
4285 |
msgstr "Kolory tekstu"
|
4286 |
|
4287 |
# @ fl-builder
|
4288 |
+
#: modules/content-slider/content-slider.php:535
|
4289 |
msgid "Text Shadow"
|
4290 |
msgstr "Cień teksti"
|
4291 |
|
4292 |
# @ fl-builder
|
4293 |
+
#: modules/content-slider/content-slider.php:544
|
4294 |
+
#: modules/content-slider/content-slider.php:770
|
4295 |
+
#: modules/post-carousel/post-carousel.php:411
|
4296 |
+
#: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:716
|
4297 |
msgid "Text Background Color"
|
4298 |
msgstr "Kolor tła pod tekstem"
|
4299 |
|
4300 |
# @ fl-builder
|
4301 |
+
#: modules/content-slider/content-slider.php:545
|
4302 |
+
#: modules/post-carousel/post-carousel.php:413
|
4303 |
+
#: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:717
|
4304 |
msgid ""
|
4305 |
"The color applies to the overlay behind text over the background selections."
|
4306 |
msgstr "Kolor tła pod tekstem"
|
4307 |
|
4308 |
# @ fl-builder
|
4309 |
+
#: modules/content-slider/content-slider.php:550
|
4310 |
+
#: modules/post-carousel/post-carousel.php:423
|
4311 |
+
#: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:723
|
4312 |
msgid "Text Background Opacity"
|
4313 |
msgstr "Krycie koloru pod tekstem"
|
4314 |
|
4315 |
# @ fl-builder
|
4316 |
+
#: modules/content-slider/content-slider.php:558
|
4317 |
+
#: modules/post-slider/post-slider.php:740
|
4318 |
msgid "Text Background Height"
|
4319 |
msgstr "Wysokość tła pod tekstem"
|
4320 |
|
4321 |
# @ fl-builder
|
4322 |
+
#: modules/content-slider/content-slider.php:560
|
4323 |
+
#: modules/post-slider/post-slider.php:742
|
4324 |
msgid ""
|
4325 |
"Auto will allow the overlay to fit however long the text content is. 100% "
|
4326 |
"will fit the overlay to the top and bottom of the slide."
|
4329 |
"tak, aby rozciągało się od górnej do dolnej krawędzi slajdu."
|
4330 |
|
4331 |
# @ fl-builder
|
4332 |
+
#: modules/content-slider/content-slider.php:562
|
4333 |
+
#: modules/post-slider/post-slider.php:744
|
4334 |
msgctxt "Background height."
|
4335 |
msgid "Auto"
|
4336 |
msgstr "Automatyczna"
|
4337 |
|
4338 |
# @ fl-builder
|
4339 |
+
#: modules/content-slider/content-slider.php:579
|
4340 |
msgid ""
|
4341 |
"The link applies to the entire slide. If choosing a call to action type "
|
4342 |
"below, this link will also be used for the text or button."
|
4345 |
"będzie też podłaczony do tekstu i przycisku."
|
4346 |
|
4347 |
# @ fl-builder
|
4348 |
+
#: modules/content-slider/content-slider.php:721
|
4349 |
msgid "Border Radius"
|
4350 |
msgstr "Promień obramowania"
|
4351 |
|
4352 |
# @ fl-builder
|
4353 |
+
#: modules/content-slider/content-slider.php:732
|
4354 |
msgctxt "Module settings form tab. Display on mobile devices."
|
4355 |
msgid "Mobile"
|
4356 |
msgstr "Urządzenia mobilne"
|
4357 |
|
4358 |
# @ fl-builder
|
4359 |
+
#: modules/content-slider/content-slider.php:735
|
4360 |
msgid "Mobile Photo"
|
4361 |
msgstr "Zdjęcie na urządzeniach mobilnych"
|
4362 |
|
4363 |
# @ fl-builder
|
4364 |
+
#: modules/content-slider/content-slider.php:741
|
4365 |
msgid ""
|
4366 |
"You can choose a different photo that the slide will change to on mobile "
|
4367 |
"devices or no photo if desired."
|
4370 |
"mobilnych."
|
4371 |
|
4372 |
# @ fl-builder
|
4373 |
+
#: modules/content-slider/content-slider.php:743
|
4374 |
msgid "Use Main Photo"
|
4375 |
msgstr "Uzyj głównego zdjęcia"
|
4376 |
|
4377 |
# @ fl-builder
|
4378 |
+
#: modules/content-slider/content-slider.php:744
|
4379 |
msgid "Choose Another Photo"
|
4380 |
msgstr "Wybierz inne zdjęcie"
|
4381 |
|
4382 |
# @ fl-builder
|
4383 |
+
#: modules/content-slider/content-slider.php:745
|
4384 |
msgid "No Photo"
|
4385 |
msgstr "Brak zdjęcia"
|
4386 |
|
4387 |
# @ fl-builder
|
4388 |
+
#: modules/content-slider/content-slider.php:760
|
4389 |
msgid "Mobile Text Colors"
|
4390 |
msgstr "Kolory tekstu na urządzeniach mobilnych"
|
4391 |
|
4395 |
msgstr "Wyświetl nagłówek, podtytuł i przycisk."
|
4396 |
|
4397 |
# @ fl-builder
|
4398 |
+
#: modules/cta/cta.php:76
|
4399 |
msgid "Ready to find out more?"
|
4400 |
msgstr "Gotowy dowiedzieć się więcej?"
|
4401 |
|
4402 |
# @ fl-builder
|
4403 |
+
#: modules/cta/cta.php:91
|
4404 |
msgid "Drop us a line today for a free quote!"
|
4405 |
msgstr "Napisz do nas, aby otrzymać bezpłatną wycenę!"
|
4406 |
|
4407 |
# @ fl-builder
|
4408 |
+
#: modules/cta/cta.php:109 modules/gallery/gallery.php:227
|
4409 |
+
#: modules/post-carousel/post-carousel.php:117
|
4410 |
+
#: modules/post-carousel/post-carousel.php:206
|
4411 |
+
#: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:432
|
4412 |
+
#: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
|
4413 |
#: modules/testimonials/testimonials.php:37
|
4414 |
#: modules/woocommerce/woocommerce.php:57
|
4415 |
msgid "Layout"
|
4416 |
msgstr "Układ"
|
4417 |
|
4418 |
# @ fl-builder
|
4419 |
+
#: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
|
4420 |
msgid "Inline"
|
4421 |
msgstr "W linii"
|
4422 |
|
4423 |
# @ fl-builder
|
4424 |
+
#: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
|
4425 |
msgid "Stacked"
|
4426 |
msgstr "Przycisk pod tekstem"
|
4427 |
|
4428 |
# @ fl-builder
|
4429 |
+
#: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
|
4430 |
msgid "Spacing"
|
4431 |
msgstr "Odstępy"
|
4432 |
|
4433 |
# @ fl-builder
|
4434 |
+
#: modules/cta/cta.php:246
|
4435 |
msgid "Button Link"
|
4436 |
msgstr "Link przycisku"
|
4437 |
|
4438 |
# @ fl-builder
|
4439 |
+
#: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
|
4440 |
+
#: modules/post-grid/post-grid.php:55
|
4441 |
msgid "Gallery"
|
4442 |
msgstr "Galeria"
|
4443 |
|
4447 |
msgstr "Wyświetl wiele zdjęć w widoku galerii."
|
4448 |
|
4449 |
# @ fl-builder
|
4450 |
+
#: modules/gallery/gallery.php:230
|
4451 |
msgid "Collage"
|
4452 |
msgstr "Kolaż"
|
4453 |
|
4454 |
# @ fl-builder
|
4455 |
+
#: modules/gallery/gallery.php:231
|
4456 |
msgctxt "Gallery layout: thumbnails."
|
4457 |
msgid "Thumbs"
|
4458 |
msgstr "Miniatury"
|
4459 |
|
4460 |
# @ fl-builder
|
4461 |
+
#: modules/gallery/gallery.php:267
|
4462 |
msgid "Photo Size"
|
4463 |
msgstr "Rozmiar zdjęcia"
|
4464 |
|
4465 |
# @ fl-builder
|
4466 |
+
#: modules/gallery/gallery.php:270
|
4467 |
msgctxt "Photo size."
|
4468 |
msgid "Small"
|
4469 |
msgstr "Małe"
|
4470 |
|
4471 |
# @ fl-builder
|
4472 |
+
#: modules/gallery/gallery.php:271
|
4473 |
msgctxt "Photo size."
|
4474 |
msgid "Medium"
|
4475 |
msgstr "Średnie"
|
4476 |
|
4477 |
# @ fl-builder
|
4478 |
+
#: modules/gallery/gallery.php:272
|
4479 |
msgctxt "Photo size."
|
4480 |
msgid "Large"
|
4481 |
msgstr "Duże"
|
4482 |
|
4483 |
# @ fl-builder
|
4484 |
+
#: modules/gallery/gallery.php:277
|
4485 |
msgid "Photo Spacing"
|
4486 |
msgstr "Odstępy"
|
4487 |
|
4488 |
# @ fl-builder
|
4489 |
+
#: modules/gallery/gallery.php:285
|
4490 |
msgid "Show Captions"
|
4491 |
msgstr "Pokazuj etykiety"
|
4492 |
|
4493 |
# @ fl-builder
|
4494 |
+
#: modules/gallery/gallery.php:288 modules/photo/photo.php:448
|
4495 |
msgid "Never"
|
4496 |
msgstr "Nigdy"
|
4497 |
|
4498 |
# @ fl-builder
|
4499 |
+
#: modules/gallery/gallery.php:289 modules/photo/photo.php:449
|
4500 |
msgid "On Hover"
|
4501 |
msgstr "Po najehcniu myszką"
|
4502 |
|
4503 |
# @ fl-builder
|
4504 |
+
#: modules/gallery/gallery.php:290 modules/photo/photo.php:450
|
4505 |
msgid "Below Photo"
|
4506 |
msgstr "Poniżej zdjęcia"
|
4507 |
|
4508 |
# @ fl-builder
|
4509 |
+
#: modules/gallery/gallery.php:292
|
4510 |
msgid ""
|
4511 |
"The caption pulls from whatever text you put in the caption area in the "
|
4512 |
"media manager for each image. The caption is also pulled directly from "
|
4517 |
"w swojej glerii masz wpisane etykiety."
|
4518 |
|
4519 |
# @ fl-builder
|
4520 |
+
#: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
|
4521 |
msgid "Click Action"
|
4522 |
msgstr "Akcja po kliknięciu"
|
4523 |
|
4524 |
# @ fl-builder
|
4525 |
+
#: modules/gallery/gallery.php:299
|
4526 |
msgctxt "Click action."
|
4527 |
msgid "None"
|
4528 |
msgstr "Brak"
|
4529 |
|
4530 |
# @ fl-builder
|
4531 |
+
#: modules/gallery/gallery.php:300 modules/photo/photo.php:468
|
4532 |
msgid "Lightbox"
|
4533 |
msgstr "Lightbox"
|
4534 |
|
4535 |
# @ fl-builder
|
4536 |
+
#: modules/gallery/gallery.php:301
|
4537 |
msgid "Photo Link"
|
4538 |
msgstr "Link zdjęcia"
|
4539 |
|
4618 |
msgstr "Wczytaj zdjęcie z dysku lub wybierz z Biblioteki Mediów."
|
4619 |
|
4620 |
# @ fl-builder
|
4621 |
+
#: modules/photo/photo.php:391
|
4622 |
msgid "Photo Source"
|
4623 |
msgstr "Źródło zdjęcia"
|
4624 |
|
4625 |
# @ fl-builder
|
4626 |
+
#: modules/photo/photo.php:395 modules/photo/photo.php:467
|
4627 |
msgid "URL"
|
4628 |
msgstr "URL"
|
4629 |
|
4630 |
# @ fl-builder
|
4631 |
+
#: modules/photo/photo.php:412
|
4632 |
msgid "Photo URL"
|
4633 |
msgstr "URL zdjęcia"
|
4634 |
|
4635 |
# @ fl-builder
|
4636 |
+
#: modules/photo/photo.php:413
|
4637 |
msgid "http://www.example.com/my-photo.jpg"
|
4638 |
msgstr "http://www.przyklad.pl/moje-zdjecie.jpg"
|
4639 |
|
4640 |
# @ fl-builder
|
4641 |
+
#: modules/photo/photo.php:420 modules/post-slider/post-slider.php:479
|
4642 |
msgctxt "Crop."
|
4643 |
msgid "None"
|
4644 |
msgstr "Brak"
|
4645 |
|
4646 |
# @ fl-builder
|
4647 |
+
#: modules/photo/photo.php:441 modules/photo/photo.php:455
|
4648 |
msgid "Caption"
|
4649 |
msgstr "Etykieta"
|
4650 |
|
4651 |
# @ fl-builder
|
4652 |
+
#: modules/photo/photo.php:445
|
4653 |
msgid "Show Caption"
|
4654 |
msgstr "Pokaż etykietę"
|
4655 |
|
4656 |
# @ fl-builder
|
4657 |
+
#: modules/photo/photo.php:464
|
4658 |
msgid "Link Type"
|
4659 |
msgstr "Rozdaj linka"
|
4660 |
|
4661 |
# @ fl-builder
|
4662 |
+
#: modules/photo/photo.php:466
|
4663 |
msgctxt "Link type."
|
4664 |
msgid "None"
|
4665 |
msgstr "Brak"
|
4666 |
|
4667 |
# @ fl-builder
|
4668 |
+
#: modules/photo/photo.php:469
|
4669 |
msgid "Photo File"
|
4670 |
msgstr "Plik zdjęcia"
|
4671 |
|
4672 |
# @ fl-builder
|
4673 |
+
#: modules/photo/photo.php:480
|
4674 |
msgid ""
|
4675 |
"Link type applies to how the image should be linked on click. You can choose "
|
4676 |
"a specific URL, the individual photo or a separate page with the photo."
|
4680 |
"strony ze zdjęciem."
|
4681 |
|
4682 |
# @ fl-builder
|
4683 |
+
#: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
|
4684 |
msgid "Link URL"
|
4685 |
msgstr "URL linka"
|
4686 |
|
4687 |
# @ fl-builder
|
4688 |
+
#: modules/post-carousel/includes/post-gallery-loop.php:35
|
4689 |
+
#: modules/post-carousel/includes/post-grid-loop.php:22
|
|
|
|
|
|
|
4690 |
#: modules/post-grid/includes/post-feed.php:14
|
4691 |
#: modules/post-grid/includes/post-grid.php:24
|
4692 |
+
#: modules/post-slider/includes/post-loop.php:29
|
4693 |
#, php-format
|
4694 |
msgctxt "%s stands for author name."
|
4695 |
msgid "By %s"
|
4696 |
msgstr "Autor: %s"
|
4697 |
|
4698 |
+
#: modules/post-carousel/post-carousel.php:14
|
4699 |
+
msgid "Posts Carousel"
|
4700 |
+
msgstr "Karuzela postów"
|
4701 |
+
|
4702 |
+
#: modules/post-carousel/post-carousel.php:15
|
4703 |
+
msgid "Display a carousel of your WordPress posts."
|
4704 |
+
msgstr "Umieść na stronie karuzelę z postami wordpressowymi."
|
4705 |
+
|
4706 |
+
#: modules/post-carousel/post-carousel.php:110
|
4707 |
+
#: modules/post-slider/post-slider.php:337
|
4708 |
+
msgid "Slider"
|
4709 |
+
msgstr "Slider"
|
4710 |
+
|
4711 |
# @ fl-builder
|
4712 |
+
#: modules/post-carousel/post-carousel.php:120
|
4713 |
+
#: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
|
4714 |
+
msgid "Grid"
|
4715 |
+
msgstr "Siatka"
|
4716 |
+
|
4717 |
+
# @ fl-builder
|
4718 |
+
#: modules/post-carousel/post-carousel.php:152
|
4719 |
+
#: modules/post-slider/post-slider.php:378 modules/video/video.php:120
|
4720 |
+
msgid "Loop"
|
4721 |
+
msgstr "Zapętlanie"
|
4722 |
+
|
4723 |
+
#: modules/post-carousel/post-carousel.php:168
|
4724 |
+
#: modules/post-slider/post-slider.php:394
|
4725 |
+
msgid "Number of Posts"
|
4726 |
+
msgstr "Ilość postów"
|
4727 |
+
|
4728 |
+
#: modules/post-carousel/post-carousel.php:175
|
4729 |
+
#: modules/post-slider/post-slider.php:401
|
4730 |
+
msgid "Slider Controls"
|
4731 |
+
msgstr "Kontrolki"
|
4732 |
+
|
4733 |
+
# @ fl-builder
|
4734 |
+
#: modules/post-carousel/post-carousel.php:209
|
4735 |
#: modules/post-grid/post-grid.php:14
|
4736 |
msgid "Posts"
|
4737 |
msgstr "Posty"
|
4738 |
|
4739 |
+
#: modules/post-carousel/post-carousel.php:213
|
4740 |
+
msgid "Post Max Width"
|
4741 |
+
msgstr "Maksymalna szerokość posta"
|
4742 |
+
|
4743 |
+
# @ fl-builder
|
4744 |
+
#: modules/post-carousel/post-carousel.php:221
|
4745 |
+
#: modules/post-grid/post-grid.php:103
|
4746 |
+
msgid "Post Spacing"
|
4747 |
+
msgstr "Odstępy posta"
|
4748 |
+
|
4749 |
+
#: modules/post-carousel/post-carousel.php:229
|
4750 |
+
msgid "Equalize Column Heights"
|
4751 |
+
msgstr "Wyrównaj wysokość kolumn"
|
4752 |
+
|
4753 |
+
#: modules/post-carousel/post-carousel.php:238
|
4754 |
+
msgid "Post Hover Transition"
|
4755 |
+
msgstr "Efekt po najechaniu myszką na post"
|
4756 |
+
|
4757 |
+
#: modules/post-carousel/post-carousel.php:242
|
4758 |
+
#: modules/post-grid/post-grid.php:248
|
4759 |
+
msgid "Slide Up"
|
4760 |
+
msgstr "Wjazd w górę"
|
4761 |
+
|
4762 |
+
#: modules/post-carousel/post-carousel.php:243
|
4763 |
+
#: modules/post-grid/post-grid.php:249
|
4764 |
+
msgid "Slide Down"
|
4765 |
+
msgstr "Wjazd z dół"
|
4766 |
+
|
4767 |
+
#: modules/post-carousel/post-carousel.php:244
|
4768 |
+
#: modules/post-grid/post-grid.php:250
|
4769 |
+
msgid "Scale Up"
|
4770 |
+
msgstr "Powiększenie"
|
4771 |
+
|
4772 |
+
#: modules/post-carousel/post-carousel.php:245
|
4773 |
+
#: modules/post-grid/post-grid.php:251
|
4774 |
+
msgid "Scale Down"
|
4775 |
+
msgstr "Pomniejszenie"
|
4776 |
+
|
4777 |
+
# @ fl-builder
|
4778 |
+
#: modules/post-carousel/post-carousel.php:251
|
4779 |
+
#: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:455
|
4780 |
+
msgid "Featured Image"
|
4781 |
+
msgstr "Obraz wpisu"
|
4782 |
+
|
4783 |
+
#: modules/post-carousel/post-carousel.php:279
|
4784 |
+
#: modules/post-grid/post-grid.php:261
|
4785 |
+
msgid "Use Icon for Posts"
|
4786 |
+
msgstr "Użyj ikon dla postów"
|
4787 |
+
|
4788 |
+
#: modules/post-carousel/post-carousel.php:293
|
4789 |
+
#: modules/post-grid/post-grid.php:275
|
4790 |
+
msgid "Post Icon"
|
4791 |
+
msgstr "Wybierz ikonę"
|
4792 |
+
|
4793 |
+
#: modules/post-carousel/post-carousel.php:297
|
4794 |
+
#: modules/post-grid/post-grid.php:279
|
4795 |
+
msgid "Post Icon Position"
|
4796 |
+
msgstr "Pozycja ikony postu"
|
4797 |
+
|
4798 |
+
# @ fl-builder
|
4799 |
+
#: modules/post-carousel/post-carousel.php:300
|
4800 |
+
#: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
|
4801 |
+
msgid "Above Text"
|
4802 |
+
msgstr "Nad tekstem"
|
4803 |
+
|
4804 |
+
#: modules/post-carousel/post-carousel.php:301
|
4805 |
+
#: modules/post-grid/post-grid.php:283
|
4806 |
+
msgid "Below Text"
|
4807 |
+
msgstr "Pod tekstem"
|
4808 |
+
|
4809 |
+
#: modules/post-carousel/post-carousel.php:306
|
4810 |
+
#: modules/post-grid/post-grid.php:288
|
4811 |
+
msgid "Post Icon Size"
|
4812 |
+
msgstr "Rozmir ikony"
|
4813 |
+
|
4814 |
+
# @ fl-builder
|
4815 |
+
#: modules/post-carousel/post-carousel.php:315
|
4816 |
+
#: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:490
|
4817 |
+
msgid "Post Info"
|
4818 |
+
msgstr "Informacje o poście"
|
4819 |
+
|
4820 |
+
# @ fl-builder
|
4821 |
+
#: modules/post-carousel/post-carousel.php:342
|
4822 |
+
#: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:517
|
4823 |
+
msgid "Date Format"
|
4824 |
+
msgstr "Format daty"
|
4825 |
+
|
4826 |
+
# @ fl-builder
|
4827 |
+
#: modules/post-carousel/post-carousel.php:372
|
4828 |
+
#: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:556
|
4829 |
+
msgid "More Link"
|
4830 |
+
msgstr "Czytaj więcej"
|
4831 |
+
|
4832 |
+
# @ fl-builder
|
4833 |
+
#: modules/post-carousel/post-carousel.php:381
|
4834 |
+
#: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:565
|
4835 |
+
msgid "More Link Text"
|
4836 |
+
msgstr "Tekst linka Czytaj więcej"
|
4837 |
+
|
4838 |
+
#: modules/post-carousel/post-carousel.php:418
|
4839 |
+
#: modules/post-grid/post-grid.php:307
|
4840 |
+
msgid "Post Icon Color"
|
4841 |
+
msgstr "Kolor ikony"
|
4842 |
+
|
4843 |
+
# @ fl-builder
|
4844 |
+
#: modules/post-grid/includes/frontend.php:41
|
4845 |
+
msgid "No posts found."
|
4846 |
+
msgstr "Nie znaleziono postów"
|
4847 |
+
|
4848 |
# @ fl-builder
|
4849 |
#: modules/post-grid/post-grid.php:15
|
4850 |
msgid "Display a grid of your WordPress posts."
|
4855 |
msgid "Layout Style"
|
4856 |
msgstr "Styl układu"
|
4857 |
|
|
|
|
|
|
|
|
|
|
|
4858 |
# @ fl-builder
|
4859 |
#: modules/post-grid/post-grid.php:56
|
4860 |
msgid "Feed"
|
4861 |
msgstr "Kanał"
|
4862 |
|
4863 |
# @ fl-builder
|
4864 |
+
#: modules/post-grid/post-grid.php:74
|
4865 |
msgid "Pagination Style"
|
4866 |
msgstr "Styl paginacji"
|
4867 |
|
4868 |
# @ fl-builder
|
4869 |
+
#: modules/post-grid/post-grid.php:77
|
4870 |
msgid "Numbers"
|
4871 |
msgstr "Liczby"
|
4872 |
|
4873 |
# @ fl-builder
|
4874 |
+
#: modules/post-grid/post-grid.php:79
|
4875 |
msgctxt "Pagination style."
|
4876 |
msgid "None"
|
4877 |
msgstr "Brak"
|
4878 |
|
4879 |
# @ fl-builder
|
4880 |
+
#: modules/post-grid/post-grid.php:84
|
4881 |
msgid "Posts Per Page"
|
4882 |
msgstr "Ilość postów na stronie"
|
4883 |
|
4884 |
# @ fl-builder
|
4885 |
+
#: modules/post-grid/post-grid.php:95
|
4886 |
msgid "Post Width"
|
4887 |
msgstr "Szerokość postów"
|
4888 |
|
4889 |
# @ fl-builder
|
4890 |
+
#: modules/post-grid/post-grid.php:134
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4891 |
msgid "Beside Text"
|
4892 |
msgstr "Przy tekście"
|
4893 |
|
4894 |
# @ fl-builder
|
4895 |
+
#: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:533
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4896 |
msgid "Comments"
|
4897 |
msgstr "Komentarze"
|
4898 |
|
4899 |
+
#: modules/post-grid/post-grid.php:211
|
4900 |
msgid "Content Type"
|
4901 |
msgstr "Typ treści"
|
4902 |
|
4903 |
+
#: modules/post-grid/post-grid.php:214
|
4904 |
msgid "Excerpt"
|
4905 |
msgstr "Wypis (fragment wpisu)"
|
4906 |
|
4907 |
+
#: modules/post-grid/post-grid.php:215
|
4908 |
msgid "Full Text"
|
4909 |
msgstr "Pełna treść wpisu"
|
4910 |
|
4911 |
+
#: modules/post-grid/post-grid.php:244
|
4912 |
+
msgid "Hover Transition"
|
4913 |
+
msgstr "Efekt po najechaniu myszką"
|
|
|
4914 |
|
4915 |
+
#: modules/post-slider/post-slider.php:14
|
4916 |
+
msgid "Posts Slider"
|
4917 |
+
msgstr "Slider postów"
|
|
|
4918 |
|
4919 |
+
#: modules/post-slider/post-slider.php:15
|
4920 |
+
msgid "Display a slider of your WordPress posts."
|
4921 |
+
msgstr "Wyświetl slider postów wordpressowych."
|
4922 |
+
|
4923 |
+
#: modules/post-slider/post-slider.php:349
|
4924 |
+
msgid ""
|
4925 |
+
"This setting is the minimum height of the post slider. Content will expand "
|
4926 |
+
"the height automatically."
|
4927 |
+
msgstr ""
|
4928 |
+
"Tu ustawisz minimalną wysokość slidera postów. Treść może powodać "
|
4929 |
+
"automatyczne zwiększanie wysokości."
|
4930 |
+
|
4931 |
+
#: modules/post-slider/post-slider.php:439
|
4932 |
+
msgid "Show Featured Image?"
|
4933 |
+
msgstr "Pokazać obrazek wyróżniający?"
|
4934 |
+
|
4935 |
+
#: modules/post-slider/post-slider.php:623
|
4936 |
+
msgid ""
|
4937 |
+
"The position will move the content layout selections left, right or bottom "
|
4938 |
+
"over the background of the slide."
|
4939 |
+
msgstr ""
|
4940 |
+
"Pole Pozycja ustawia w której części slidera ma znaleźć się treść: z lewej, "
|
4941 |
+
"prawej czy na dole."
|
4942 |
+
|
4943 |
+
#: modules/post-slider/post-slider.php:642
|
4944 |
+
msgid ""
|
4945 |
+
"The position will move the content layout selections left or right or center "
|
4946 |
+
"of the thumbnail of the slide."
|
4947 |
+
msgstr ""
|
4948 |
+
"Pole Pozycja ustawia w której części obrazka w tle ma znaleźć się treść: z "
|
4949 |
+
"lewej, prawej, na górze czy na dole."
|
4950 |
+
|
4951 |
+
#: modules/post-slider/post-slider.php:658
|
4952 |
+
msgid "Text Width"
|
4953 |
+
msgstr "Szerokość tekstu"
|
4954 |
+
|
4955 |
+
#: modules/post-slider/post-slider.php:666
|
4956 |
+
msgid "Text Padding"
|
4957 |
+
msgstr "Wewnętrzny margines (padding) tekstu"
|
4958 |
+
|
4959 |
+
#: modules/post-slider/post-slider.php:731
|
4960 |
+
msgid "Text Background Gradient"
|
4961 |
+
msgstr "Gradient w tle tekstu"
|
4962 |
|
4963 |
# @ fl-builder
|
4964 |
#: modules/pricing-table/pricing-table.php:14
|
5060 |
|
5061 |
# @ fl-builder
|
5062 |
#: modules/pricing-table/pricing-table.php:133
|
5063 |
+
#: modules/subscribe-form/subscribe-form.php:168
|
5064 |
msgid "Button Text"
|
5065 |
msgstr "Tekst przycisku"
|
5066 |
|
5154 |
msgstr "Wyświetla wiele zdjęć w formie pokazu slajdów."
|
5155 |
|
5156 |
# @ fl-builder
|
5157 |
+
#: modules/slideshow/slideshow.php:310
|
5158 |
msgid "Skin Color"
|
5159 |
msgstr "Kolor skórki"
|
5160 |
|
5161 |
# @ fl-builder
|
5162 |
+
#: modules/slideshow/slideshow.php:313
|
5163 |
msgctxt "Color."
|
5164 |
msgid "Light"
|
5165 |
msgstr "Jasny"
|
5166 |
|
5167 |
# @ fl-builder
|
5168 |
+
#: modules/slideshow/slideshow.php:314
|
5169 |
msgctxt "Color."
|
5170 |
msgid "Dark"
|
5171 |
msgstr "Ciemny"
|
5172 |
|
5173 |
# @ fl-builder
|
5174 |
+
#: modules/slideshow/slideshow.php:316
|
5175 |
msgid ""
|
5176 |
"If your overall theme/images are lighter in color, light will display "
|
5177 |
"buttons in a darker color scheme and vice versa for dark."
|
5181 |
"szablonu."
|
5182 |
|
5183 |
# @ fl-builder
|
5184 |
+
#: modules/slideshow/slideshow.php:326
|
5185 |
msgid ""
|
5186 |
"Crop set to no will fit the slideshow images to the height you specify and "
|
5187 |
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
5194 |
"wypełnić wysokość podaną w polu Wysokość."
|
5195 |
|
5196 |
# @ fl-builder
|
5197 |
+
#: modules/slideshow/slideshow.php:330
|
5198 |
msgid "Disable Right-Click"
|
5199 |
msgstr "Wyłącz prawy przycisk myszki"
|
5200 |
|
5201 |
# @ fl-builder
|
5202 |
+
#: modules/slideshow/slideshow.php:350
|
5203 |
msgctxt "Click action type."
|
5204 |
msgid "None"
|
5205 |
msgstr "Wyłączone"
|
5206 |
|
5207 |
# @ fl-builder
|
5208 |
+
#: modules/slideshow/slideshow.php:374
|
5209 |
msgid "Playback"
|
5210 |
msgstr "Odtwarzanie"
|
5211 |
|
5212 |
# @ fl-builder
|
5213 |
+
#: modules/slideshow/slideshow.php:400
|
5214 |
msgctxt "Slideshow transition."
|
5215 |
msgid "None"
|
5216 |
msgstr "Brak"
|
5217 |
|
5218 |
# @ fl-builder
|
5219 |
+
#: modules/slideshow/slideshow.php:437
|
5220 |
msgid "Controls"
|
5221 |
msgstr "Kontrolki"
|
5222 |
|
5223 |
# @ fl-builder
|
5224 |
+
#: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
|
5225 |
msgid "Navigation Arrows"
|
5226 |
msgstr "Strzałki"
|
5227 |
|
5228 |
# @ fl-builder
|
5229 |
+
#: modules/slideshow/slideshow.php:450
|
5230 |
msgid ""
|
5231 |
"Navigational arrows allow the visitor to freely move through the images in "
|
5232 |
"your slideshow. These are larger arrows that overlay your slideshow images "
|
5237 |
"lewej strony."
|
5238 |
|
5239 |
# @ fl-builder
|
5240 |
+
#: modules/slideshow/slideshow.php:455
|
5241 |
msgid "Control Bar"
|
5242 |
msgstr "Pasek nawigacyjny"
|
5243 |
|
5244 |
# @ fl-builder
|
5245 |
+
#: modules/slideshow/slideshow.php:459
|
5246 |
msgid "Nav Type"
|
5247 |
msgstr "Typ nawigacji"
|
5248 |
|
5249 |
# @ fl-builder
|
5250 |
+
#: modules/slideshow/slideshow.php:462
|
5251 |
msgctxt "Nav type."
|
5252 |
msgid "None"
|
5253 |
msgstr "Brak"
|
5254 |
|
5255 |
# @ fl-builder
|
5256 |
+
#: modules/slideshow/slideshow.php:463
|
5257 |
msgid "Buttons"
|
5258 |
msgstr "Przyciski"
|
5259 |
|
5260 |
# @ fl-builder
|
5261 |
+
#: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
|
5262 |
msgid "Thumbs"
|
5263 |
msgstr "Miniaturki"
|
5264 |
|
5265 |
# @ fl-builder
|
5266 |
+
#: modules/slideshow/slideshow.php:479
|
5267 |
msgid "Nav Position"
|
5268 |
msgstr "Pozycja nawigacji"
|
5269 |
|
5270 |
# @ fl-builder
|
5271 |
+
#: modules/slideshow/slideshow.php:489
|
5272 |
msgid "Control Bar Buttons"
|
5273 |
msgstr "Przyciski paska nawigacyjnego"
|
5274 |
|
5275 |
# @ fl-builder
|
5276 |
+
#: modules/slideshow/slideshow.php:502
|
5277 |
msgid "Play Button"
|
5278 |
msgstr "Przycisk odtwarzania"
|
5279 |
|
5280 |
# @ fl-builder
|
5281 |
+
#: modules/slideshow/slideshow.php:511
|
5282 |
msgid "Fullscreen Button"
|
5283 |
msgstr "Przycisk przełączania na pełny ekran"
|
5284 |
|
5285 |
# @ fl-builder
|
5286 |
+
#: modules/slideshow/slideshow.php:520
|
5287 |
msgid "Photo Count"
|
5288 |
msgstr "Liczba zdjęć"
|
5289 |
|
5290 |
# @ fl-builder
|
5291 |
+
#: modules/slideshow/slideshow.php:529
|
5292 |
msgid "Thumbs Button"
|
5293 |
msgstr "Przycisk włączania miniaturek"
|
5294 |
|
5295 |
# @ fl-builder
|
5296 |
+
#: modules/slideshow/slideshow.php:538
|
5297 |
msgid "Caption Button"
|
5298 |
msgstr "Przycisk "
|
5299 |
|
5300 |
# @ fl-builder
|
5301 |
+
#: modules/slideshow/slideshow.php:547
|
5302 |
msgid "Social Button"
|
5303 |
msgstr "Przycisk portali społecznościowych"
|
5304 |
|
5305 |
# @ fl-builder
|
5306 |
+
#: modules/slideshow/slideshow.php:557
|
5307 |
msgid "Control Bar Overlay"
|
5308 |
msgstr "Krycie paska kontroli"
|
5309 |
|
5310 |
# @ fl-builder
|
5311 |
+
#: modules/slideshow/slideshow.php:561
|
5312 |
msgid "Overlay Enabled"
|
5313 |
msgstr "Krycie włączone"
|
5314 |
|
5315 |
# @ fl-builder
|
5316 |
+
#: modules/slideshow/slideshow.php:572
|
5317 |
msgid ""
|
5318 |
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
5319 |
"your slideshow images or site below the slideshow completely."
|
5322 |
"całkowicie obrazy w pokazie slajdów lub obszar pod pokazem slajdów."
|
5323 |
|
5324 |
# @ fl-builder
|
5325 |
+
#: modules/slideshow/slideshow.php:576
|
5326 |
msgid "Overlay Hide"
|
5327 |
msgstr "Ukryj krycie"
|
5328 |
|
5329 |
# @ fl-builder
|
5330 |
+
#: modules/slideshow/slideshow.php:582
|
5331 |
msgid ""
|
5332 |
"Overlay hide will hide the control bar after however many seconds you "
|
5333 |
"specify below. They will reappear upon mouse over."
|
5336 |
"w polu poniżej. Pasek pojawi się ponownie po najechaniu na niego myszką."
|
5337 |
|
5338 |
# @ fl-builder
|
5339 |
+
#: modules/slideshow/slideshow.php:586
|
5340 |
msgid "Overlay Hide Delay"
|
5341 |
msgstr "Po jakim czasie ukryć pasek?"
|
5342 |
|
5343 |
# @ fl-builder
|
5344 |
+
#: modules/slideshow/slideshow.php:598
|
5345 |
msgid "Thumbs Size"
|
5346 |
msgstr "Romiar miniatur"
|
5347 |
|
5348 |
# @ fl-builder
|
5349 |
+
#: modules/slideshow/slideshow.php:607
|
5350 |
msgid "Social"
|
5351 |
msgstr "Społecznościowe"
|
5352 |
|
5353 |
# @ fl-builder
|
5354 |
+
#: modules/slideshow/slideshow.php:611
|
5355 |
msgid "Facebook Button"
|
5356 |
msgstr "Przycisk Facebooka"
|
5357 |
|
5358 |
# @ fl-builder
|
5359 |
+
#: modules/slideshow/slideshow.php:623
|
5360 |
msgid "Twitter Button"
|
5361 |
msgstr "Przycisk Twittera"
|
5362 |
|
5363 |
# @ fl-builder
|
5364 |
+
#: modules/slideshow/slideshow.php:635
|
5365 |
msgid "Google Plus Button"
|
5366 |
msgstr "Przycisk Google Plus"
|
5367 |
|
5368 |
# @ fl-builder
|
5369 |
+
#: modules/slideshow/slideshow.php:647
|
5370 |
msgid "Pinterest Button"
|
5371 |
msgstr "Przycisk Pinteresta"
|
5372 |
|
5430 |
msgid "Please enter a valid email address."
|
5431 |
msgstr "Podaj poprawny adres e-mail."
|
5432 |
|
5433 |
+
#: modules/subscribe-form/includes/frontend.php:41
|
5434 |
msgid "Something went wrong. Please check your entries and try again."
|
5435 |
msgstr ""
|
5436 |
"Coś poszło nie tak. Sprawdź, czy wypełniłeś poprawnie pola i spróbuj "
|
5444 |
msgid "Adds a simple subscribe form to your layout."
|
5445 |
msgstr "Dodaje prosty formularz zapisu na listę"
|
5446 |
|
5447 |
+
#: modules/subscribe-form/subscribe-form.php:118
|
|
|
|
|
|
|
|
|
|
|
|
|
5448 |
msgid "Success"
|
5449 |
msgstr "Udany zapis na listę"
|
5450 |
|
5451 |
+
#: modules/subscribe-form/subscribe-form.php:122
|
5452 |
msgid "Success Action"
|
5453 |
msgstr "Akcja"
|
5454 |
|
5455 |
+
#: modules/subscribe-form/subscribe-form.php:124
|
5456 |
msgid "Show Message"
|
5457 |
msgstr "Pokaż komunikat"
|
5458 |
|
5459 |
+
#: modules/subscribe-form/subscribe-form.php:125
|
5460 |
msgid "Redirect"
|
5461 |
msgstr "Przekieruj na stronę"
|
5462 |
|
5463 |
+
#: modules/subscribe-form/subscribe-form.php:144
|
5464 |
msgid ""
|
5465 |
"Thanks for subscribing! Please check your email for further instructions."
|
5466 |
msgstr ""
|
5467 |
"Dziękujemy za zapisanie się! Sprawdź swoją skrzynkę e-mail, gdzie znajdziesz "
|
5468 |
"dalsze instrukcje."
|
5469 |
|
5470 |
+
#: modules/subscribe-form/subscribe-form.php:151
|
5471 |
msgid "Success URL"
|
5472 |
msgstr "URL po udanym zapisie"
|
5473 |
|
5474 |
+
#: modules/subscribe-form/subscribe-form.php:169
|
5475 |
msgid "Subscribe!"
|
5476 |
msgstr "Zapisz się!"
|
5477 |
|
5565 |
msgid "Poster"
|
5566 |
msgstr "Podgląd wideo"
|
5567 |
|
|
|
|
|
|
|
|
|
|
|
5568 |
# @ fl-builder
|
5569 |
#: modules/widget/includes/frontend.php:35
|
5570 |
#: modules/widget/includes/settings-general.php:46
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: justinbusa, RobbyMcCullough, billyyoung
|
3 |
Tags: builder, layout builder, page builder, landing page builder, landing pages, website builder, site builder, front-end builder, drag and drop builder, editor, front-end editor, visual composer, page layout
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to: 4.
|
6 |
Stable tag: trunk
|
7 |
License: GPL2+
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
2 |
Contributors: justinbusa, RobbyMcCullough, billyyoung
|
3 |
Tags: builder, layout builder, page builder, landing page builder, landing pages, website builder, site builder, front-end builder, drag and drop builder, editor, front-end editor, visual composer, page layout
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 4.3
|
6 |
Stable tag: trunk
|
7 |
License: GPL2+
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|