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 |