WordPress Page Builder – Beaver Builder - Version 1.6.2

Version Description

Download this release

Release Info

Developer justinbusa
Plugin Icon 128x128 WordPress Page Builder – Beaver Builder
Version 1.6.2
Comparing to
See all releases

Code changes from version 1.6.1.1 to 1.6.2

changelog.txt CHANGED
@@ -1,3 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.6.1.1 - 08/11/2015</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.6.2 - 08/16/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>The Menu module is now out of beta! Be sure to check out <a href="https://www.wpbeaverbuilder.com/the-menu-module-is-now-in-beta/" target="_blank">the blog post</a> for more info on how that works.</li>
5
+ <li>Added opacity settings for menu background colors in the Menu module.</li>
6
+ <li>Added vertical and horizontal spacing settings for menu items in the Menu module.</li>
7
+ <li>Added Polish translation.</li>
8
+ </ul>
9
+ <p><strong>Bug Fixes</strong></p>
10
+ <ul>
11
+ <li>Fixed an issue with the Menu module when an empty menu is selected.</li>
12
+ <li>Fixed an issue with the Menu module when resizing from desktop to mobile.</li>
13
+ <li>Fixed an issue with the width of the Menu module accordion layout.</li>
14
+ <li>Fixed an issue with widgets such as the Master Slider widget that only register their scripts in the wp_enqueue_scripts action instead of enqueuing them there.</li>
15
+ </ul>
16
+
17
  <h4>1.6.1.1 - 08/11/2015</h4>
18
  <p><strong>Enhancements</strong></p>
19
  <ul>
classes/class-fl-builder.php CHANGED
@@ -577,9 +577,13 @@ final class FLBuilder {
577
  {
578
  global $wp_scripts;
579
  global $wp_styles;
 
 
 
 
580
 
581
- // Deregister scripts and styles so we can capture those
582
- // registered by content functions such as shortcodes.
583
  if(isset($wp_scripts)) {
584
  $wp_scripts->queue = array();
585
  }
@@ -587,10 +591,6 @@ final class FLBuilder {
587
  $wp_styles->queue = array();
588
  }
589
 
590
- // Enqueue jQuery again so it's not added by any
591
- // third party shortcodes or plugins.
592
- wp_enqueue_script('jquery');
593
-
594
  // Render the layout.
595
  ob_start();
596
  self::render_rows();
@@ -601,8 +601,7 @@ final class FLBuilder {
601
  echo do_shortcode($html);
602
  $html = ob_get_clean();
603
 
604
- // Print scripts and styles registered by content
605
- // functions such as shortcodes.
606
  ob_start();
607
 
608
  if(isset($wp_scripts)) {
577
  {
578
  global $wp_scripts;
579
  global $wp_styles;
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.
587
  if(isset($wp_scripts)) {
588
  $wp_scripts->queue = array();
589
  }
591
  $wp_styles->queue = array();
592
  }
593
 
 
 
 
 
594
  // Render the layout.
595
  ob_start();
596
  self::render_rows();
601
  echo do_shortcode($html);
602
  $html = ob_get_clean();
603
 
604
+ // Print scripts and styles enqueued by shortcodes or widgets.
 
605
  ob_start();
606
 
607
  if(isset($wp_scripts)) {
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.1.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,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.1.1');
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
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');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
img/svg/hamburger-menu.svg ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <svg version="1.1" class="hamburger-menu" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512">
2
+ <rect class="fl-hamburger-menu-top" width="512" height="102"/>
3
+ <rect class="fl-hamburger-menu-middle" y="205" width="512" height="102"/>
4
+ <rect class="fl-hamburger-menu-bottom" y="410" width="512" height="102"/>
5
+ </svg>
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.1.1',
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',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
languages/pl_PL.mo ADDED
Binary file
languages/pl_PL.po ADDED
@@ -0,0 +1,5424 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-07-28 23:10+0200\n"
6
+ "PO-Revision-Date: 2015-08-13 09:13+0200\n"
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"
11
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
12
+ "|| n%100>=20) ? 1 : 2);\n"
13
+ "X-Generator: Poedit 1.8.3\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
16
+ "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
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
25
+ #: classes/class-fl-builder-admin-settings.php:116
26
+ #: includes/global-settings.php:4
27
+ #, php-format
28
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
29
+ msgid "%s Settings"
30
+ msgstr "%s - ustawienia"
31
+
32
+ # @ fl-builder
33
+ #: classes/class-fl-builder-admin-settings.php:133
34
+ msgid "Settings updated!"
35
+ msgstr "Ustawienia zostały zaktualizowane!"
36
+
37
+ # @ fl-builder
38
+ #: classes/class-fl-builder-admin-settings.php:147
39
+ msgid "License"
40
+ msgstr "Licencja"
41
+
42
+ # @ fl-builder
43
+ #: classes/class-fl-builder-admin-settings.php:151
44
+ #: includes/admin-settings-upgrade.php:3
45
+ msgid "Upgrade"
46
+ msgstr "Aktualizuj"
47
+
48
+ # @ fl-builder
49
+ #: classes/class-fl-builder-admin-settings.php:155
50
+ #: includes/global-settings.php:90
51
+ msgid "Modules"
52
+ msgstr "Moduły"
53
+
54
+ # @ fl-builder
55
+ #: classes/class-fl-builder-admin-settings.php:159 includes/ui.php:58
56
+ msgid "Templates"
57
+ msgstr "Szablony"
58
+
59
+ # @ fl-builder
60
+ #: classes/class-fl-builder-admin-settings.php:163
61
+ #: includes/admin-settings-post-types.php:3
62
+ msgid "Post Types"
63
+ msgstr "Rodzje wpisu"
64
+
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
+
71
+ # @ fl-builder
72
+ #: classes/class-fl-builder-admin-settings.php:171
73
+ msgid "Editing"
74
+ msgstr "Redagowanie"
75
+
76
+ # @ fl-builder
77
+ #: classes/class-fl-builder-admin-settings.php:175
78
+ #: includes/admin-settings-branding.php:3
79
+ msgid "Branding"
80
+ msgstr "Branding"
81
+
82
+ # @ fl-builder
83
+ #: classes/class-fl-builder-admin-settings.php:179
84
+ msgid "Help Button"
85
+ msgstr "Przycisk pomocy"
86
+
87
+ #: classes/class-fl-builder-admin-settings.php:183
88
+ #: includes/admin-settings-cache.php:3
89
+ msgid "Cache"
90
+ msgstr "Pamięć podręczna"
91
+
92
+ # @ fl-builder
93
+ #: classes/class-fl-builder-admin-settings.php:187
94
+ #: includes/admin-settings-uninstall.php:3
95
+ #: includes/admin-settings-uninstall.php:15
96
+ msgid "Uninstall"
97
+ msgstr "Odinstaluj"
98
+
99
+ # @ fl-builder
100
+ #: classes/class-fl-builder-admin-settings.php:439
101
+ msgid "Error! You must have at least one icon set enabled."
102
+ msgstr "Błąd! Musisz mieć przynajmniej jeden zestaw ikon włączony"
103
+
104
+ # @ fl-builder
105
+ #: classes/class-fl-builder-admin-settings.php:481
106
+ msgid "Error! Could not unzip file."
107
+ msgstr "Błąd! Nie udało się rozpakować pliku."
108
+
109
+ # @ fl-builder
110
+ #: classes/class-fl-builder-admin-settings.php:515
111
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
112
+ msgstr "Błąd! Wczytaj zestaw ikon z Icomoon lub Fontello."
113
+
114
+ # @ fl-builder
115
+ #: classes/class-fl-builder-admin-settings.php:618
116
+ msgid "Error! Please enter an iframe for the video embed code."
117
+ msgstr "Błąd! Wstaw iframe dla kodu osadzającego wideo."
118
+
119
+ # @ fl-builder
120
+ #: classes/class-fl-builder-admin-settings.php:636
121
+ msgid "Error! You must have at least one feature of the help button enabled."
122
+ msgstr ""
123
+ "Błąd! Musisz mieć włączoną przynajmniej jedną funkcjonalność w przycisku "
124
+ "pomocy."
125
+
126
+ # @ fl-builder
127
+ #: classes/class-fl-builder-admin.php:45
128
+ #, php-format
129
+ msgid ""
130
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
131
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
132
+ "of this plugin."
133
+ msgstr ""
134
+ "Ta wersja <strong>Kreatora Stron</strong> nie jest kompatybulna z "
135
+ "Wordpressem Multisite. <a%s>Ulepsz wtyczkę</a> do wersji Multisite."
136
+
137
+ # @ fl-builder
138
+ #: classes/class-fl-builder-admin.php:55
139
+ msgid ""
140
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
141
+ "greater. Please update WordPress before activating the plugin."
142
+ msgstr ""
143
+ "<strong>Kreator Stron</strong> wymaga Wordpressa w wersji 3.5 lub wyższej. "
144
+ "Zaktualizuj Wordpressa przed aktywowaniem pluginu."
145
+
146
+ # @ fl-builder
147
+ #: classes/class-fl-builder-admin.php:112
148
+ #, php-format
149
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
150
+ msgstr ""
151
+ "Kreator Stron aktywowany! <a%s>Kliknij tutaj</a>, aby włączyć zdalne "
152
+ "aktualizacje."
153
+
154
+ # @ fl-builder
155
+ #: classes/class-fl-builder-admin.php:238
156
+ msgctxt "Plugin action link label."
157
+ msgid "Upgrade"
158
+ msgstr "Aktualizuj"
159
+
160
+ # @ fl-builder
161
+ #: classes/class-fl-builder-admin.php:253
162
+ #: classes/class-fl-builder-model.php:3113
163
+ msgid "Page Builder"
164
+ msgstr "Kreator Stron"
165
+
166
+ # @ fl-builder
167
+ #: classes/class-fl-builder-model.php:1605
168
+ #, php-format
169
+ msgctxt "%s stands for the module filename"
170
+ msgid ""
171
+ "A module with the filename %s.php already exists! Please namespace your "
172
+ "module filenames to ensure compatibility with Beaver Builder."
173
+ msgstr ""
174
+ "Moduł o nazwie %s.php już istnieje! Sprawdź nazwy zainstalowanych pluginów, "
175
+ "aby zapewnić kompatybilność z Beaver Buiderem."
176
+
177
+ # @ fl-builder
178
+ #: classes/class-fl-builder-model.php:1652
179
+ #: classes/class-fl-builder-model.php:1710 modules/heading/heading.php:16
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:1653
187
+ #: classes/class-fl-builder-model.php:1711 modules/accordion/accordion.php:16
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-grid/post-grid.php:16
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
197
+ #: modules/subscribe-form/subscribe-form.php:20 modules/tabs/tabs.php:16
198
+ #: modules/testimonials/testimonials.php:16
199
+ #: modules/woocommerce/woocommerce.php:18
200
+ msgid "Advanced Modules"
201
+ msgstr "Moduły Zaawansowane"
202
+
203
+ # @ fl-builder
204
+ #: classes/class-fl-builder-model.php:1654
205
+ #: classes/class-fl-builder-model.php:1712
206
+ msgid "Other Modules"
207
+ msgstr "Pozostałe Moduły"
208
+
209
+ # @ fl-builder
210
+ #: classes/class-fl-builder-model.php:1655
211
+ #: classes/class-fl-builder-model.php:1713
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:2302
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:2715
225
+ msgctxt "Default user template category."
226
+ msgid "Uncategorized"
227
+ msgstr "Bez kategorii"
228
+
229
+ # @ fl-builder
230
+ #: classes/class-fl-builder-model.php:3070
231
+ msgid "Home Pages"
232
+ msgstr "Szablony stron głównych"
233
+
234
+ # @ fl-builder
235
+ #: classes/class-fl-builder-model.php:3071
236
+ msgid "Content Pages"
237
+ msgstr "Szablony podstron"
238
+
239
+ # @ fl-builder
240
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
241
+ msgctxt "Image size."
242
+ msgid "Full Size"
243
+ msgstr "Pełny rozmiar"
244
+
245
+ # @ fl-builder
246
+ #: classes/class-fl-builder-photo.php:101
247
+ msgctxt "Image size."
248
+ msgid "Large"
249
+ msgstr "Duży"
250
+
251
+ # @ fl-builder
252
+ #: classes/class-fl-builder-photo.php:102
253
+ msgctxt "Image size."
254
+ msgid "Medium"
255
+ msgstr "Średni"
256
+
257
+ # @ fl-builder
258
+ #: classes/class-fl-builder-photo.php:103
259
+ msgctxt "Image size."
260
+ msgid "Thumbnail"
261
+ msgstr "Miniatura"
262
+
263
+ #: classes/class-fl-builder-service-aweber.php:72
264
+ msgid "Error: You must provide an Authorization Code."
265
+ msgstr "Błąd: Podaj Kod Autoryzacji (Authorisation Code)."
266
+
267
+ #: classes/class-fl-builder-service-aweber.php:76
268
+ msgid "Error: Please enter a valid Authorization Code."
269
+ msgstr "Błąd: Wpisz poprawny Kod Autoryzacji (Authorization Code)."
270
+
271
+ #: classes/class-fl-builder-service-aweber.php:127
272
+ msgid "Authorization Code"
273
+ msgstr "Kod Autoryzacji (Authorization Code)"
274
+
275
+ #: classes/class-fl-builder-service-aweber.php:128
276
+ #, php-format
277
+ msgid ""
278
+ "Please register this website with AWeber to get your Authorization Code. <a"
279
+ "%s>Register Now</a>"
280
+ msgstr ""
281
+ "Zarejestuj tę stronę w serwisie AWeber, aby otrzymać kod autoryzacyjny "
282
+ "(Authorization Code). <a%s>Zarejestruj się teraz</a>"
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
288
+ #: classes/class-fl-builder-service-constant-contact.php:156
289
+ #: classes/class-fl-builder-service-getresponse.php:154
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:154
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:278 includes/service-settings.php:21
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
304
+ #: classes/class-fl-builder-service-getresponse.php:164
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:164
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."
318
+ msgstr ""
319
+ "Wystąpił błąd podczas rejestracji w serwisie AWeber. To konto nie jest już "
320
+ "połączone."
321
+
322
+ #: classes/class-fl-builder-service-aweber.php:242
323
+ msgid "There was an error connecting to AWeber. Please try again."
324
+ msgstr "Wystąpił błąd podczas łączenia się z AWeberem. Spróbuj ponownie."
325
+
326
+ #: classes/class-fl-builder-service-aweber.php:247
327
+ #, php-format
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
344
+ #: classes/class-fl-builder-service-getresponse.php:132
345
+ #: classes/class-fl-builder-service-hatchbuck.php:63
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 "
362
+ "Settings > API Key."
363
+ msgstr ""
364
+ "Możesz znaleźć swój klucz API w sekcji Campaign Monitor w Ustawieniach Konta "
365
+ "> API Key."
366
+
367
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
368
+ msgctxt "A client account in Campaign Monitor."
369
+ msgid "Client"
370
+ msgstr "Klient"
371
+
372
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
373
+ msgid ""
374
+ "There was an error subscribing to Campaign Monitor. The account is no longer "
375
+ "connected."
376
+ msgstr ""
377
+ "Wystąpił błąd połączenia z Campaign Editor. To konto nie jest już połączone."
378
+
379
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
380
+ msgid "There was an error subscribing to Campaign Monitor."
381
+ msgstr "Wystąpił błąd w połączeniu z Campaign Monitor."
382
+
383
+ #: classes/class-fl-builder-service-constant-contact.php:52
384
+ msgid "Error: You must provide an access token."
385
+ msgstr "Błąd: Musisz podać token dostępu (access token)."
386
+
387
+ #: classes/class-fl-builder-service-constant-contact.php:61
388
+ #: classes/class-fl-builder-service-constant-contact.php:134
389
+ #, php-format
390
+ msgid "Error: Could not connect to Constant Contact. %s"
391
+ msgstr "Błąd: nie było możliwe połączenie się z Constant Contact. %s"
392
+
393
+ #: classes/class-fl-builder-service-constant-contact.php:89
394
+ msgid "Your Constant Contact API key."
395
+ msgstr "Twój Constant Contact API key."
396
+
397
+ #: classes/class-fl-builder-service-constant-contact.php:99
398
+ msgid "Access Token"
399
+ msgstr "Token dostępu (Access Token)"
400
+
401
+ #: classes/class-fl-builder-service-constant-contact.php:100
402
+ msgid "Your Constant Contact access token."
403
+ msgstr "Twój Constant Contact access token."
404
+
405
+ #: classes/class-fl-builder-service-constant-contact.php:101
406
+ #, php-format
407
+ msgid ""
408
+ "You must register a <a%s>Developer Account</a> with Constant Contact to "
409
+ "obtain an API key and access token. Please see <a%s>Getting an API key</a> "
410
+ "for complete instructions."
411
+ msgstr ""
412
+ "Musisz założyć <a%s>Developer Account</a> za pomocą Constant Contact aby "
413
+ "otrzymać API key i token dostępu (access token). Zobacz sekcję <a%s>Getting "
414
+ "an API key</a> aby poznać bardziej szczegółowe informacje."
415
+
416
+ #: classes/class-fl-builder-service-constant-contact.php:193
417
+ msgid ""
418
+ "There was an error subscribing to Constant Contact. The account is no longer "
419
+ "connected."
420
+ msgstr "<a%s>Getting an API key</a>"
421
+
422
+ #: classes/class-fl-builder-service-constant-contact.php:245
423
+ #: classes/class-fl-builder-service-constant-contact.php:279
424
+ #, php-format
425
+ msgid "There was an error subscribing to Constant Contact. %s"
426
+ 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 > "
433
+ "GetResponse API."
434
+ msgstr ""
435
+ "Twój API key znajduje się w Twoim koncie GetResponse w sekcji Moje Konto "
436
+ ">GetResponse API."
437
+
438
+ #: classes/class-fl-builder-service-getresponse.php:191
439
+ msgid ""
440
+ "There was an error subscribing to GetResponse. The account is no longer "
441
+ "connected."
442
+ msgstr ""
443
+ "Wystąpił włąd podczas łączenia się z GetResponse. Konto nie jest już "
444
+ "połączone."
445
+
446
+ #: classes/class-fl-builder-service-getresponse.php:202
447
+ #, php-format
448
+ msgid "There was an error subscribing to GetResponse. %s"
449
+ msgstr "Wystąpił błąd podczas łączenia się z GetResponse. %s."
450
+
451
+ #: classes/class-fl-builder-service-hatchbuck.php:88
452
+ msgid ""
453
+ "Your API key can be found in your Hatchbuck account under Account Settings > "
454
+ "Web API."
455
+ msgstr ""
456
+ "Twój API key znajdziesz na koncie Hatchbuck w sekcji Account Settings > Web "
457
+ "API."
458
+
459
+ #: classes/class-fl-builder-service-hatchbuck.php:134
460
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
461
+ msgid "Tag"
462
+ msgstr "Tag"
463
+
464
+ #: classes/class-fl-builder-service-hatchbuck.php:161
465
+ msgid ""
466
+ "There was an error subscribing to Hatchbuck. The account is no longer "
467
+ "connected."
468
+ msgstr ""
469
+ "Wystąpił błąd podczas łączenia się z Hatchbuck. Konto nie jest już połączone."
470
+
471
+ #: classes/class-fl-builder-service-hatchbuck.php:190
472
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
473
+ msgstr ""
474
+ "Wystąpił błąd podczas łączenia się z Hatchbuck. API key jest niepoprawny."
475
+
476
+ #: classes/class-fl-builder-service-hatchbuck.php:200
477
+ #: classes/class-fl-builder-service-hatchbuck.php:232
478
+ msgid "There was an error subscribing to Hatchbuck."
479
+ msgstr "Wystąpił błąd podczas łączenia się z Hatchbuck."
480
+
481
+ #: classes/class-fl-builder-service-icontact.php:75
482
+ msgid "Error: You must provide a username."
483
+ msgstr "Błąd: musisz podać username."
484
+
485
+ #: classes/class-fl-builder-service-icontact.php:79
486
+ msgid "Error: You must provide a app ID."
487
+ msgstr "Błąd: Musisz podać app ID."
488
+
489
+ #: classes/class-fl-builder-service-icontact.php:83
490
+ msgid "Error: You must provide a app password."
491
+ msgstr "Błąd: musisz podać hasło."
492
+
493
+ #: classes/class-fl-builder-service-icontact.php:104
494
+ #: classes/class-fl-builder-service-icontact.php:188
495
+ #, php-format
496
+ msgid "Error: Could not connect to iContact. %s"
497
+ msgstr "Błąd: nie udało się połączyć z iContact %s."
498
+
499
+ #: classes/class-fl-builder-service-icontact.php:125
500
+ msgid "Username"
501
+ msgstr "Userbname"
502
+
503
+ #: classes/class-fl-builder-service-icontact.php:126
504
+ msgid "Your iContact username."
505
+ msgstr "Twój username z iContact."
506
+
507
+ #: classes/class-fl-builder-service-icontact.php:136
508
+ #: classes/class-fl-builder-service-infusionsoft.php:118
509
+ msgid "App ID"
510
+ msgstr "App ID"
511
+
512
+ #: classes/class-fl-builder-service-icontact.php:137
513
+ msgid "Your iContact app ID."
514
+ msgstr "Twój app ID z iContact."
515
+
516
+ #: classes/class-fl-builder-service-icontact.php:147
517
+ msgid "App Password"
518
+ msgstr "App Password"
519
+
520
+ #: classes/class-fl-builder-service-icontact.php:148
521
+ msgid "Your iContact app password."
522
+ msgstr "Twój iContact app password."
523
+
524
+ #: classes/class-fl-builder-service-icontact.php:149
525
+ #, php-format
526
+ msgid ""
527
+ "You must <a%s>create an app</a> in iContact to obtain an app ID and "
528
+ "password. Please see <a%s>the iContact docs</a> for complete instructions."
529
+ msgstr ""
530
+ "Musisz <a%s>stworzyć aplikcję</a> w iContact aby otrzymać app ID i hasło. "
531
+ "Zobacz <a%s>dokumentację iContact</a> aby dowiedzieć się więcej."
532
+
533
+ #: classes/class-fl-builder-service-icontact.php:244
534
+ msgid ""
535
+ "There was an error subscribing to iContact. The account is no longer "
536
+ "connected."
537
+ msgstr ""
538
+ "Wystąpił błąd podczas łaczenia się z iContact. Konto nie jest już połączone."
539
+
540
+ #: classes/class-fl-builder-service-icontact.php:280
541
+ #, php-format
542
+ msgid "There was an error subscribing to iContact. %s"
543
+ msgstr "Wystąpił błąd podczas łaczenia się z iContact. %s"
544
+
545
+ #: classes/class-fl-builder-service-infusionsoft.php:49
546
+ #, php-format
547
+ msgid "There was an error connecting to Infusionsoft. %s"
548
+ msgstr "Wystąpił błąd podczas łaczenia się z Infusionsoft. %s"
549
+
550
+ #: classes/class-fl-builder-service-infusionsoft.php:83
551
+ msgid "Error: You must provide an app ID."
552
+ msgstr "Błąd: musisz podać app ID."
553
+
554
+ #: classes/class-fl-builder-service-infusionsoft.php:119
555
+ msgid ""
556
+ "Your App ID can be found in the URL for your account. For example, if the "
557
+ "URL for your account is myaccount.infusionsoft.com, your App ID would be "
558
+ "<strong>myaccount</strong>."
559
+ msgstr ""
560
+ "Twój App ID znajdziesz w adresie URL twojego konta. Na przykład, jeśli URL "
561
+ "twojego konta to mojekonto.infusionsoft.com, to twój App ID to "
562
+ "<strong>mojekonto</strong>."
563
+
564
+ #: classes/class-fl-builder-service-infusionsoft.php:130
565
+ msgid ""
566
+ "Your API key can be found in your Infusionsoft account under Admin > "
567
+ "Settings > Application > API > Encrypted Key."
568
+ msgstr ""
569
+ "Twój Api key znajdziesz w koncie Infusionsoft w sekcji Admin > Settings > "
570
+ "Application >API > Encryprd Key."
571
+
572
+ #: classes/class-fl-builder-service-infusionsoft.php:242
573
+ msgid ""
574
+ "There was an error subscribing to Infusionsoft. The account is no longer "
575
+ "connected."
576
+ msgstr ""
577
+ "Wystąpił błąd podczas łączenia się z Infusionsoft. Konto nie jest już "
578
+ "połączone."
579
+
580
+ #: classes/class-fl-builder-service-infusionsoft.php:291
581
+ #, php-format
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."
601
+
602
+ #: classes/class-fl-builder-service-madmimi.php:122
603
+ msgid ""
604
+ "Your API key can be found in your Mad Mimi account under Account > Settings "
605
+ "&amp; Billing > API."
606
+ msgstr "Twój Api"
607
+
608
+ #: classes/class-fl-builder-service-madmimi.php:156
609
+ msgid ""
610
+ "There was a problem retrieving your lists. Please check your API credentials."
611
+ msgstr "Wystąpił problem z odzyskiwaniem Twoich list. Sprawdź poprawność API."
612
+
613
+ #: classes/class-fl-builder-service-madmimi.php:215
614
+ #: classes/class-fl-builder-service-madmimi.php:242
615
+ msgid ""
616
+ "There was an error subscribing to Mad Mimi. The account is no longer "
617
+ "connected."
618
+ msgstr ""
619
+ "Wystąpił błąd podczas łączenia się z Mad Mimi. Konto nie jest już połączone."
620
+
621
+ #: classes/class-fl-builder-service-mailchimp.php:101
622
+ msgid ""
623
+ "Your API key can be found in your MailChimp account under Account > Extras > "
624
+ "API Keys."
625
+ 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:191
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:221
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"
640
+
641
+ #: classes/class-fl-builder-service-mailpoet.php:73
642
+ msgid "There was an error retrieveing your lists."
643
+ msgstr "Wystąpił problem z odzyskiwaniem Twoich list."
644
+
645
+ #: classes/class-fl-builder-service-mailpoet.php:129
646
+ msgid "There was an error subscribing. MailPoet is not installed."
647
+ msgstr "Wystąił błąd podczas łączenia się. MailPoet nie jest zainstalowany."
648
+
649
+ #: classes/class-fl-builder-service-sendinblue.php:67
650
+ msgid "Error: You must provide an Access Key."
651
+ msgstr "Błąd: Musisz podać AccessKey."
652
+
653
+ #: classes/class-fl-builder-service-sendinblue.php:76
654
+ #: classes/class-fl-builder-service-sendinblue.php:136
655
+ msgid "There was an error connecting to SendinBlue. Please try again."
656
+ msgstr "Wystąpił błąd podczas łaczenia się z SendinBlue. Spróbuj ponownie."
657
+
658
+ #: classes/class-fl-builder-service-sendinblue.php:79
659
+ #: classes/class-fl-builder-service-sendinblue.php:139
660
+ #, php-format
661
+ msgid "Error: Could not connect to SendinBlue. %s"
662
+ msgstr "Błąd: Nie udało się połączyć z SendinBlue. %s"
663
+
664
+ #: classes/class-fl-builder-service-sendinblue.php:103
665
+ msgid "Access Key"
666
+ msgstr "Access Key"
667
+
668
+ #: classes/class-fl-builder-service-sendinblue.php:104
669
+ msgid ""
670
+ "Your Access Key can be found in your SendinBlue account under API & "
671
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
672
+ msgstr ""
673
+ "Twój Acces Key znajdziesz na koncie SendinBlue w sekcji API & Integration > "
674
+ "Manager Your Keys > Version 2.0 >Access Key."
675
+
676
+ #: classes/class-fl-builder-service-sendinblue.php:198
677
+ msgid ""
678
+ "There was an error subscribing to SendinBlue. The account is no longer "
679
+ "connected."
680
+ msgstr "Wystąpił problem z odzyskiwaniem Twoich list"
681
+
682
+ #: classes/class-fl-builder-service-sendinblue.php:220
683
+ msgid "There was an error subscribing to SendinBlue. Please try again."
684
+ msgstr "Wystąpił błąd podczas łączenia się z SendinBlue. Spróbuj ponownie."
685
+
686
+ #: classes/class-fl-builder-service-sendinblue.php:223
687
+ #, php-format
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:148
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:151
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:154
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:163
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:243
712
+ msgid "Account Name"
713
+ msgstr "Nazwa konta"
714
+
715
+ #: classes/class-fl-builder-services.php:244
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:257
723
+ msgid "Connect"
724
+ msgstr "Połącz"
725
+
726
+ #: classes/class-fl-builder-services.php:285
727
+ msgid "Add Account..."
728
+ msgstr "Dodaj konto..."
729
+
730
+ #: classes/class-fl-builder-services.php:292
731
+ msgid "Account"
732
+ msgstr "Konto"
733
+
734
+ #: classes/class-fl-builder-template-settings.php:33
735
+ msgid "Page Builder Templates"
736
+ msgstr "Szablony Kreatora Stron"
737
+
738
+ #: classes/class-fl-builder-templates-override.php:46
739
+ msgid "Error! Please enter a number for the site ID."
740
+ msgstr "Błąd! Wpisz numer ID strony."
741
+
742
+ #: classes/class-fl-builder-templates-override.php:50
743
+ 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:811
748
+ #, php-format
749
+ msgctxt "Field name to add."
750
+ msgid "Add %s"
751
+ msgstr "Dodaj %s"
752
+
753
+ #: classes/class-fl-builder.php:901 classes/class-fl-builder.php:903
754
+ msgctxt "Custom post type label."
755
+ msgid "Templates"
756
+ msgstr "Szablony"
757
+
758
+ #: classes/class-fl-builder.php:902 classes/class-fl-builder.php:904
759
+ msgctxt "Custom post type label."
760
+ msgid "Template"
761
+ msgstr "Szablon"
762
+
763
+ # @ fl-builder
764
+ #: classes/class-fl-builder.php:905
765
+ msgctxt "Custom post type label."
766
+ msgid "Add New"
767
+ msgstr "Dodaj nowy"
768
+
769
+ #: classes/class-fl-builder.php:906
770
+ msgctxt "Custom post type label."
771
+ msgid "Add New Template"
772
+ msgstr "Dodaj nowy szablon"
773
+
774
+ #: classes/class-fl-builder.php:907
775
+ msgctxt "Custom post type label."
776
+ msgid "New Template"
777
+ msgstr "Noszy szablon"
778
+
779
+ #: classes/class-fl-builder.php:908
780
+ msgctxt "Custom post type label."
781
+ msgid "Edit Template"
782
+ msgstr "Edytuj szablon"
783
+
784
+ #: classes/class-fl-builder.php:909
785
+ msgctxt "Custom post type label."
786
+ msgid "View Template"
787
+ msgstr "Podejrzyj szablon"
788
+
789
+ #: classes/class-fl-builder.php:910
790
+ msgctxt "Custom post type label."
791
+ msgid "All Templates"
792
+ msgstr "Wszystkie szablony"
793
+
794
+ #: classes/class-fl-builder.php:911
795
+ msgctxt "Custom post type label."
796
+ msgid "Search Templates"
797
+ msgstr "Szukaj szablonów"
798
+
799
+ #: classes/class-fl-builder.php:912
800
+ msgctxt "Custom post type label."
801
+ msgid "Parent Templates:"
802
+ msgstr "Nadrzędne szablony:"
803
+
804
+ #: classes/class-fl-builder.php:913
805
+ msgctxt "Custom post type label."
806
+ msgid "No templates found."
807
+ msgstr "Nie znaleziono szablonów."
808
+
809
+ #: classes/class-fl-builder.php:914
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:927 classes/class-fl-builder.php:937
815
+ msgctxt "Custom taxonomy label."
816
+ msgid "Categories"
817
+ msgstr "Kategorie"
818
+
819
+ #: classes/class-fl-builder.php:928
820
+ msgctxt "Custom taxonomy label."
821
+ msgid "Category"
822
+ msgstr "Ktegoria"
823
+
824
+ #: classes/class-fl-builder.php:929
825
+ msgctxt "Custom taxonomy label."
826
+ msgid "Search Categories"
827
+ msgstr "Szukaj kategorii"
828
+
829
+ #: classes/class-fl-builder.php:930
830
+ msgctxt "Custom taxonomy label."
831
+ msgid "All Categories"
832
+ msgstr "Wszystkie kategorie"
833
+
834
+ #: classes/class-fl-builder.php:931
835
+ msgctxt "Custom taxonomy label."
836
+ msgid "Parent Category"
837
+ msgstr "Nadrzędna kategoria"
838
+
839
+ #: classes/class-fl-builder.php:932
840
+ msgctxt "Custom taxonomy label."
841
+ msgid "Parent Category:"
842
+ msgstr "Nadrzędna kategoria:"
843
+
844
+ #: classes/class-fl-builder.php:933
845
+ msgctxt "Custom taxonomy label."
846
+ msgid "Edit Category"
847
+ msgstr "Edytuj kategorię"
848
+
849
+ #: classes/class-fl-builder.php:934
850
+ msgctxt "Custom taxonomy label."
851
+ msgid "Update Category"
852
+ msgstr "Zaktualizuj kategorię"
853
+
854
+ #: classes/class-fl-builder.php:935
855
+ msgctxt "Custom taxonomy label."
856
+ msgid "Add New Category"
857
+ msgstr "Dodaj nową kategorię"
858
+
859
+ #: classes/class-fl-builder.php:936
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:1389 includes/js-config.php:69
866
+ #, php-format
867
+ msgctxt "%s stands for module name."
868
+ msgid "%s Settings"
869
+ msgstr "%s - ustawienia"
870
+
871
+ # @ fl-builder
872
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
873
+ msgid "Text Editor"
874
+ msgstr "Edytor tekstu"
875
+
876
+ #: includes/admin-posts.php:7
877
+ #, php-format
878
+ msgctxt ""
879
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s "
880
+ "stands for the post type name."
881
+ msgid "%s is currently active for this %s."
882
+ msgstr "%s jest obecnie włączony dla: %s."
883
+
884
+ # @ fl-builder
885
+ #: includes/admin-posts.php:8
886
+ #, php-format
887
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
888
+ msgid "Launch %s"
889
+ msgstr "Uruchom %s"
890
+
891
+ # @ fl-builder
892
+ #: includes/admin-settings-branding.php:7
893
+ msgid "White label the page builder by entering a custom name below."
894
+ msgstr "Obranduj kreatora stron wpisując nazwę swojej firmy poniżej."
895
+
896
+ # @ fl-builder
897
+ #: includes/admin-settings-branding.php:10
898
+ msgid ""
899
+ "Additionally, you may also add a custom icon by entering the URL of an image "
900
+ "below. Leave the field blank if you do not wish to use an icon."
901
+ msgstr ""
902
+ "Możesz też dodać swoją ikonę. W tym celu wklej jej adres URL poniżej. Jeśli "
903
+ "nie chcesz wstawiać ikony, pozostaw poniższe pole puste."
904
+
905
+ #: includes/admin-settings-branding.php:14
906
+ msgid "Save Branding"
907
+ msgstr "Zapisz"
908
+
909
+ #: includes/admin-settings-cache.php:9
910
+ msgid ""
911
+ "A CSS and JavaScript file is dynamically generated and cached each time you "
912
+ "create a new layout. Sometimes the cache needs to be refreshed when you "
913
+ "migrate your site to another server or update to the latest version. If you "
914
+ "are running into any issues, please try clearing the cache by clicking the "
915
+ "button below."
916
+ msgstr ""
917
+ "Pliki CSS i JavaScript są dynamicznie generowane i zapisywane w pamięci "
918
+ "podręcznej za każdym razem gdy stworzysz nowy układ strony. Czasami pamięć "
919
+ "podręczna musi być odświeżona gdy przenosisz stronę z jednego serwera na "
920
+ "drugi lub uaktualniasz plugin do nowszej wersji. Jeśli masz problemy z "
921
+ "działaniem kreatora, spróbuj wyczyścić pamięć podręczną klikając przycisk "
922
+ "znajdujący się poniżej."
923
+
924
+ # @ fl-builder
925
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
926
+ #: includes/admin-settings-uninstall.php:7
927
+ #: includes/admin-settings-uninstall.php:10
928
+ #: includes/updater/includes/form.php:31
929
+ msgid "NOTE:"
930
+ msgstr "WAŻNE:"
931
+
932
+ # @ fl-builder
933
+ #: includes/admin-settings-cache.php:12
934
+ #: includes/admin-settings-uninstall.php:10
935
+ #: includes/updater/includes/form.php:31
936
+ msgid "This applies to all sites on the network."
937
+ msgstr "Odnosi się do wszystkich stron w sieci."
938
+
939
+ #: includes/admin-settings-cache.php:14
940
+ msgid ""
941
+ "This only applies to this site. Please visit the Network Admin Settings to "
942
+ "clear the cache for all sites on the network."
943
+ msgstr ""
944
+ "To pole dotyczy tylko tej strony. Odwiedź ustawienia sieci administratora "
945
+ "aby wyczyścić pamięć podręczną dla wszystkich stron w sieci."
946
+
947
+ #: includes/admin-settings-cache.php:19
948
+ msgid "Clear Cache"
949
+ msgstr "Wyczyść pamięć podręczną"
950
+
951
+ # @ fl-builder
952
+ #: includes/admin-settings-editing.php:3
953
+ msgid "Editing Settings"
954
+ msgstr "Edycja ustawień"
955
+
956
+ # @ fl-builder
957
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
958
+ #: includes/admin-settings-modules.php:10
959
+ #: includes/admin-settings-post-types.php:10
960
+ #: includes/admin-settings-templates.php:16
961
+ msgid "Override network settings?"
962
+ msgstr "Nadpisać ustawienia sieci?"
963
+
964
+ # @ fl-builder
965
+ #: includes/admin-settings-editing.php:16
966
+ #, php-format
967
+ msgid ""
968
+ "Set the <a%s>capability</a> required for users to access advanced builder "
969
+ "editing such as adding, deleting or moving modules."
970
+ msgstr ""
971
+ "Określ <a%s>poziom uprawnień</a> wymagany, aby użytkownik miał dostęp do "
972
+ "zaawansowanych funkcji Kreatora Stron takich jak dodawanie, usuwanie lub "
973
+ "przesuwanie modułów."
974
+
975
+ #: includes/admin-settings-editing.php:22
976
+ msgid "Save Editing Settings"
977
+ msgstr "Zapisz ustawienia"
978
+
979
+ # @ fl-builder
980
+ #: includes/admin-settings-help-button.php:8
981
+ msgid "Help Button Settings"
982
+ msgstr "Ustawienia przycisku pomocy"
983
+
984
+ # @ fl-builder
985
+ #: includes/admin-settings-help-button.php:17
986
+ msgid "Enable Help Button"
987
+ msgstr "Włącz przycisk pomocy"
988
+
989
+ # @ fl-builder
990
+ #: includes/admin-settings-help-button.php:23
991
+ msgid "Help Tour"
992
+ msgstr "Samouczek"
993
+
994
+ # @ fl-builder
995
+ #: includes/admin-settings-help-button.php:27
996
+ msgid "Enable Help Tour"
997
+ msgstr "Włącz samouczka"
998
+
999
+ # @ fl-builder
1000
+ #: includes/admin-settings-help-button.php:31
1001
+ msgid "Help Video"
1002
+ msgstr "Pomoc w formie wideo"
1003
+
1004
+ # @ fl-builder
1005
+ #: includes/admin-settings-help-button.php:35
1006
+ msgid "Enable Help Video"
1007
+ msgstr "Włącz pomoc wideo"
1008
+
1009
+ # @ fl-builder
1010
+ #: includes/admin-settings-help-button.php:39
1011
+ msgid "Help Video Embed Code"
1012
+ msgstr "Kod umieszczenia wideo pomocy"
1013
+
1014
+ # @ fl-builder
1015
+ #: includes/admin-settings-help-button.php:45
1016
+ msgid "Knowledge Base"
1017
+ msgstr "Baza wiedzy"
1018
+
1019
+ # @ fl-builder
1020
+ #: includes/admin-settings-help-button.php:49
1021
+ msgid "Enable Knowledge Base"
1022
+ msgstr "Włacz bazę wiedzy"
1023
+
1024
+ # @ fl-builder
1025
+ #: includes/admin-settings-help-button.php:53
1026
+ msgid "Knowledge Base URL"
1027
+ msgstr "URL bazy wiedzy"
1028
+
1029
+ # @ fl-builder
1030
+ #: includes/admin-settings-help-button.php:59
1031
+ msgid "Forums"
1032
+ msgstr "Fora"
1033
+
1034
+ # @ fl-builder
1035
+ #: includes/admin-settings-help-button.php:63
1036
+ msgid "Enable Forums"
1037
+ msgstr "Włacz fora"
1038
+
1039
+ # @ fl-builder
1040
+ #: includes/admin-settings-help-button.php:67
1041
+ msgid "Forums URL"
1042
+ msgstr "URL for"
1043
+
1044
+ #: includes/admin-settings-help-button.php:77
1045
+ msgid "Save Help Button Settings"
1046
+ msgstr "Zapisz ustawienia przycisku pomocy"
1047
+
1048
+ # @ fl-builder
1049
+ #: includes/admin-settings-icons.php:3
1050
+ msgid "Icon Settings"
1051
+ msgstr "Ustawienia ikon"
1052
+
1053
+ # @ fl-builder
1054
+ #: includes/admin-settings-icons.php:13
1055
+ msgid "Icons for the main site must be managed in the network admin."
1056
+ msgstr "Ikonami dla głównej strony zarządzaj z panelu admina sieci."
1057
+
1058
+ # @ fl-builder
1059
+ #: includes/admin-settings-icons.php:33
1060
+ #, php-format
1061
+ msgid ""
1062
+ "Enable or disable icon sets using the options below or upload a custom icon "
1063
+ "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
1064
+ msgstr ""
1065
+ "Włącz lub wyłącz zestawy ikon używając opcji poniżej lub wczytaj dodatkowy "
1066
+ "zestaw ikon z <a%s>Iconmoon</a> lub <a%s>Fontello</a>."
1067
+
1068
+ # @ fl-builder
1069
+ #: includes/admin-settings-icons.php:48
1070
+ msgctxt "Plugin setup page: Delete icon set."
1071
+ msgid "Delete"
1072
+ msgstr "Usuń"
1073
+
1074
+ #: includes/admin-settings-icons.php:59
1075
+ msgid "Upload Icon Set"
1076
+ msgstr "Wczytaj zestaw ikon"
1077
+
1078
+ #: includes/admin-settings-icons.php:60
1079
+ msgid "Save Icon Settings"
1080
+ msgstr "Zapisz ustawienia ikon"
1081
+
1082
+ #: includes/admin-settings-js-config.php:4
1083
+ msgid "Select File"
1084
+ msgstr "Zaznacz plik"
1085
+
1086
+ #: includes/admin-settings-js-config.php:5
1087
+ msgid ""
1088
+ "Please type \"uninstall\" in the box below to confirm that you really want "
1089
+ "to uninstall the page builder and all of its data."
1090
+ msgstr ""
1091
+ "Wpisz w polę poniżej słowo \"uninstall\" aby potwierdzić, że naprawdę chcesz "
1092
+ "odinstalować kreatora stron i wszystkie jego dane."
1093
+
1094
+ # @ fl-builder
1095
+ #: includes/admin-settings-modules.php:3
1096
+ msgid "Enabled Modules"
1097
+ msgstr "Włączone moduły"
1098
+
1099
+ # @ fl-builder
1100
+ #: includes/admin-settings-modules.php:16
1101
+ msgid "Check or uncheck modules below to enable or disable them."
1102
+ msgstr ""
1103
+ "Zaznacz lub odznacz moduły znajdujące się poniżej, aby je włączać lub "
1104
+ "wyłączać."
1105
+
1106
+ # @ fl-builder
1107
+ #: includes/admin-settings-modules.php:26
1108
+ msgctxt "Plugin setup page: Modules."
1109
+ msgid "All"
1110
+ msgstr "Wszystkie"
1111
+
1112
+ #: includes/admin-settings-modules.php:64
1113
+ msgid "Save Module Settings"
1114
+ msgstr "Zapisz ustawienia modułów"
1115
+
1116
+ # @ fl-builder
1117
+ #: includes/admin-settings-post-types.php:18
1118
+ msgid ""
1119
+ "Enter a comma separated list of the post types you would like the builder to "
1120
+ "work with."
1121
+ msgstr ""
1122
+ "Podaj listę typów postów (oddzielonych spacjami), na których chciałbyś "
1123
+ "używać kreatora."
1124
+
1125
+ # @ fl-builder
1126
+ #: includes/admin-settings-post-types.php:19
1127
+ #: includes/admin-settings-post-types.php:39
1128
+ msgid "NOTE: Not all custom post types may be supported."
1129
+ msgstr "WAŻNE: Nie wszystkie nietyppowe rodzaje postów mogą być obsługiwane."
1130
+
1131
+ # @ fl-builder
1132
+ #: includes/admin-settings-post-types.php:34
1133
+ msgid "Example: page, post, product"
1134
+ msgstr "Przykład: strona, post, produkt"
1135
+
1136
+ # @ fl-builder
1137
+ #: includes/admin-settings-post-types.php:38
1138
+ msgid "Select the post types you would like the builder to work with."
1139
+ msgstr "Zaznacz typy postów, na których kreator ma być włączony."
1140
+
1141
+ #: includes/admin-settings-post-types.php:70
1142
+ msgid "Save Post Types"
1143
+ msgstr "Zapisz typy postów"
1144
+
1145
+ #: includes/admin-settings-templates-override.php:2
1146
+ #: includes/admin-settings-templates-override.php:8
1147
+ #: includes/admin-settings-templates-override.php:13
1148
+ msgid "Override Core Templates"
1149
+ msgstr "Nadpisz szablony dołaczone do kreatora"
1150
+
1151
+ #: includes/admin-settings-templates-override.php:3
1152
+ msgid ""
1153
+ "Enter the ID of a site on the network whose templates should override core "
1154
+ "builder templates. Leave this field blank if you do not wish to override "
1155
+ "core templates."
1156
+ msgstr ""
1157
+ "Wpis ID strony w sieci, któej szablony zastąpią te dostarczone przez "
1158
+ "kreatora. Zostaw to pole puste, jeśli nie chcesz nadpisywać szablonów."
1159
+
1160
+ #: includes/admin-settings-templates-override.php:9
1161
+ msgid ""
1162
+ "Use this setting to override core builder templates with your templates."
1163
+ msgstr ""
1164
+ "Użyj tej opcji aby nadpisać szablony dostarczone przez kreator swoimi "
1165
+ "własnymi."
1166
+
1167
+ # @ fl-builder
1168
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1169
+ msgid "Template Settings"
1170
+ msgstr "Ustawienia szablonów"
1171
+
1172
+ #: includes/admin-settings-templates.php:22
1173
+ msgid "Enable Templates"
1174
+ msgstr "Włącz szablony"
1175
+
1176
+ #: includes/admin-settings-templates.php:23
1177
+ msgid ""
1178
+ "Use this setting to enable or disable templates in the builder interface."
1179
+ msgstr ""
1180
+ "Użyj tych ustawień, aby włączyć lub wyłączyć możliwość używania szablonów w "
1181
+ "kreatorze stron."
1182
+
1183
+ # @ fl-builder
1184
+ #: includes/admin-settings-templates.php:25
1185
+ msgid "Enable All Templates"
1186
+ msgstr "Włacz wszystkie szablony"
1187
+
1188
+ # @ fl-builder
1189
+ #: includes/admin-settings-templates.php:26
1190
+ msgid "Enable Core Templates Only"
1191
+ msgstr "Włącz tylko szablony dołączone do kreatora"
1192
+
1193
+ # @ fl-builder
1194
+ #: includes/admin-settings-templates.php:27
1195
+ msgid "Enable User Templates Only"
1196
+ msgstr "Włącz tylko szablony użytkownika"
1197
+
1198
+ # @ fl-builder
1199
+ #: includes/admin-settings-templates.php:28
1200
+ msgid "Disable All Templates"
1201
+ msgstr "Wyłącz wszystkie szablony"
1202
+
1203
+ #: includes/admin-settings-templates.php:31
1204
+ #: includes/admin-settings-templates.php:36
1205
+ msgid "Enable Templates Admin"
1206
+ msgstr "Włącz edycję szablonów w Wordpressie"
1207
+
1208
+ #: includes/admin-settings-templates.php:32
1209
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1210
+ msgstr ""
1211
+ "Włącz, aby umożliwić sobie edytowanie szablonów kreatora w Wordpressie "
1212
+ "(pojawi się sekcja Szablony)."
1213
+
1214
+ #: includes/admin-settings-templates.php:50
1215
+ msgid "Save Template Settings"
1216
+ msgstr "Zapisz ustawienia szablonów"
1217
+
1218
+ # @ fl-builder
1219
+ #: includes/admin-settings-uninstall.php:5
1220
+ msgid ""
1221
+ "Clicking the button below will uninstall the page builder plugin and delete "
1222
+ "all of the data associated with it. You can uninstall or deactivate the page "
1223
+ "builder from the plugins page instead if you do not wish to delete the data."
1224
+ msgstr ""
1225
+ "Kliknięcie poniższego przycisku odinstaluje kreatora stron i usunie "
1226
+ "wszystkie skojarzone z nim dane. Jeśli nie chcesz usuwać tych danych, możesz "
1227
+ "usunąć plugin na liście wtyczek w Wordpressie."
1228
+
1229
+ # @ fl-builder
1230
+ #: includes/admin-settings-uninstall.php:7
1231
+ msgid ""
1232
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
1233
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
1234
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
1235
+ "its data using those meta values."
1236
+ msgstr ""
1237
+ "Kreator nie usunie danych z pól meta: <code>_fl_builder_data</code>, "
1238
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> na "
1239
+ "wypadek, gdybyś chciał do zainstalować ponownie na tej stronie."
1240
+
1241
+ # @ fl-builder
1242
+ #: includes/admin-settings-upgrade.php:5
1243
+ msgid ""
1244
+ "You are currently running the lite version of the Beaver Builder plugin. "
1245
+ "Upgrade today for access to premium features such as advanced modules, "
1246
+ "templates, support and more!"
1247
+ msgstr ""
1248
+ "Używasz obecnie bezpłatnej wersji Beaver Buildera. Rozszerz ją dziś do "
1249
+ "wersji płatnej, aby otrzymać wiele dodatkowych modułów, efektowne szablony, "
1250
+ "wsparcie techniczne i inne."
1251
+
1252
+ # @ fl-builder
1253
+ #: includes/admin-settings-upgrade.php:7
1254
+ msgid "Upgrade Now"
1255
+ msgstr "Ulepsz teraz"
1256
+
1257
+ # @ fl-builder
1258
+ #: includes/admin-settings-upgrade.php:9
1259
+ msgid "Learn More"
1260
+ msgstr "Dowiedz się więcej"
1261
+
1262
+ #: includes/admin-templates-edit.php:3
1263
+ msgid "Edit Template"
1264
+ msgstr "Edytuj szablon"
1265
+
1266
+ #: includes/admin-templates-edit.php:8
1267
+ msgctxt "Template edit form field label. Template name."
1268
+ msgid "Name"
1269
+ msgstr "Nazwa"
1270
+
1271
+ # @ fl-builder
1272
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:305
1273
+ #: modules/post-grid/post-grid.php:113
1274
+ msgid "Image"
1275
+ msgstr "Obraz"
1276
+
1277
+ # @ fl-builder
1278
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:114
1279
+ #: includes/row-settings.php:155 includes/template-settings.php:23
1280
+ #: modules/callout/callout.php:353 modules/callout/callout.php:373
1281
+ #: modules/content-slider/content-slider.php:472
1282
+ #: modules/post-grid/post-grid.php:127
1283
+ msgid "Position"
1284
+ msgstr "Pozycja"
1285
+
1286
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1287
+ msgctxt "Template edit form field label. Is template premium one?"
1288
+ msgid "Premium"
1289
+ msgstr "Premium"
1290
+
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:307
1295
+ #: includes/template-settings.php:31 modules/accordion/accordion.php:90
1296
+ #: modules/callout/callout.php:420
1297
+ #: modules/content-slider/content-slider.php:209
1298
+ #: modules/content-slider/content-slider.php:223
1299
+ #: modules/content-slider/content-slider.php:257
1300
+ #: modules/content-slider/content-slider.php:266
1301
+ #: modules/content-slider/content-slider.php:537
1302
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1303
+ #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
1304
+ #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
1305
+ #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
1306
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
1307
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
1308
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
1309
+ #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
1310
+ #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
1311
+ #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
1312
+ #: modules/social-buttons/social-buttons.php:111
1313
+ #: modules/social-buttons/social-buttons.php:120
1314
+ #: modules/social-buttons/social-buttons.php:129
1315
+ #: modules/testimonials/testimonials.php:85
1316
+ #: modules/testimonials/testimonials.php:124
1317
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1318
+ #: modules/video/video.php:123
1319
+ msgid "No"
1320
+ msgstr "Nie"
1321
+
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:308
1326
+ #: includes/template-settings.php:32 modules/accordion/accordion.php:89
1327
+ #: modules/callout/callout.php:421
1328
+ #: modules/content-slider/content-slider.php:210
1329
+ #: modules/content-slider/content-slider.php:224
1330
+ #: modules/content-slider/content-slider.php:258
1331
+ #: modules/content-slider/content-slider.php:267
1332
+ #: modules/content-slider/content-slider.php:538
1333
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1334
+ #: modules/slideshow/slideshow.php:317 modules/slideshow/slideshow.php:327
1335
+ #: modules/slideshow/slideshow.php:378 modules/slideshow/slideshow.php:419
1336
+ #: modules/slideshow/slideshow.php:441 modules/slideshow/slideshow.php:490
1337
+ #: modules/slideshow/slideshow.php:499 modules/slideshow/slideshow.php:508
1338
+ #: modules/slideshow/slideshow.php:517 modules/slideshow/slideshow.php:526
1339
+ #: modules/slideshow/slideshow.php:535 modules/slideshow/slideshow.php:544
1340
+ #: modules/slideshow/slideshow.php:558 modules/slideshow/slideshow.php:573
1341
+ #: modules/slideshow/slideshow.php:608 modules/slideshow/slideshow.php:620
1342
+ #: modules/slideshow/slideshow.php:632 modules/slideshow/slideshow.php:644
1343
+ #: modules/social-buttons/social-buttons.php:110
1344
+ #: modules/social-buttons/social-buttons.php:119
1345
+ #: modules/social-buttons/social-buttons.php:128
1346
+ #: modules/testimonials/testimonials.php:86
1347
+ #: modules/testimonials/testimonials.php:125
1348
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1349
+ #: modules/video/video.php:124
1350
+ msgid "Yes"
1351
+ msgstr "Tak"
1352
+
1353
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1354
+ msgid "Category"
1355
+ msgstr "Kategoria"
1356
+
1357
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1358
+ msgctxt "Templates category label."
1359
+ msgid "Landing Pages"
1360
+ msgstr "Strony docelowe (landing pages)"
1361
+
1362
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1363
+ msgctxt "Templates category label."
1364
+ msgid "Company Info"
1365
+ msgstr "Informcja o firmie"
1366
+
1367
+ #: includes/admin-templates-edit.php:40
1368
+ msgid "Update Template"
1369
+ msgstr "Zaktualizuj szablon"
1370
+
1371
+ #: includes/admin-templates.php:3
1372
+ msgid "Page Builder Template"
1373
+ msgstr "Szablon kreatora stron"
1374
+
1375
+ #: includes/admin-templates.php:10
1376
+ msgctxt "Templates list column label."
1377
+ msgid "Name"
1378
+ msgstr "Nazwa"
1379
+
1380
+ #: includes/admin-templates.php:11
1381
+ msgctxt "Templates list column label."
1382
+ msgid "Category"
1383
+ msgstr "Kategoria"
1384
+
1385
+ #: includes/admin-templates.php:12
1386
+ msgctxt "Templates list column label. Is template premium one?"
1387
+ msgid "Premium"
1388
+ msgstr "Premium"
1389
+
1390
+ # @ fl-builder
1391
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
1392
+ #: includes/template-selector.php:70
1393
+ msgid "Edit"
1394
+ msgstr "Edytuj"
1395
+
1396
+ # @ fl-builder
1397
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1398
+ msgid "Delete"
1399
+ msgstr "Usuń"
1400
+
1401
+ # @ fl-builder
1402
+ #: includes/admin-templates.php:40 includes/js-config.php:30
1403
+ msgid "Do you really want to delete this template?"
1404
+ msgstr "Czy na pewno chcesz usunąć ten szablon?"
1405
+
1406
+ # @ fl-builder
1407
+ #: includes/column-settings.php:4 includes/js-config.php:23
1408
+ msgid "Column Settings"
1409
+ msgstr "Ustawienia kolumny"
1410
+
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:108 modules/button/button.php:146
1415
+ #: modules/button/button.php:150 modules/callout/callout.php:241
1416
+ #: modules/callout/callout.php:543
1417
+ #: modules/content-slider/content-slider.php:425
1418
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:101
1419
+ #: modules/cta/cta.php:299 modules/heading/heading.php:69
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:217 modules/tabs/tabs.php:45
1425
+ msgid "Style"
1426
+ msgstr "Styl"
1427
+
1428
+ # @ fl-builder
1429
+ #: includes/column-settings.php:14
1430
+ msgid "Column Width"
1431
+ msgstr "Szerokość kolumny"
1432
+
1433
+ # @ fl-builder
1434
+ #: includes/column-settings.php:26 includes/row-settings.php:48
1435
+ #: modules/button/button.php:66 modules/callout/callout.php:225
1436
+ #: modules/callout/callout.php:478 modules/callout/callout.php:494
1437
+ #: modules/content-slider/content-slider.php:382
1438
+ #: modules/content-slider/content-slider.php:616 modules/cta/cta.php:84
1439
+ #: modules/cta/cta.php:221
1440
+ msgid "Text"
1441
+ msgstr "Tekst"
1442
+
1443
+ # @ fl-builder
1444
+ #: includes/column-settings.php:30 includes/column-settings.php:69
1445
+ #: includes/column-settings.php:199 includes/row-settings.php:52
1446
+ #: includes/row-settings.php:109 includes/row-settings.php:403
1447
+ #: modules/callout/callout.php:391
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:39 includes/row-settings.php:61
1456
+ msgid "Background"
1457
+ msgstr "Tło"
1458
+
1459
+ # @ fl-builder
1460
+ #: includes/column-settings.php:43 includes/column-settings.php:166
1461
+ #: includes/row-settings.php:65 includes/row-settings.php:370
1462
+ #: modules/callout/callout.php:474
1463
+ #: modules/content-slider/content-slider.php:331
1464
+ #: modules/content-slider/content-slider.php:378
1465
+ #: modules/content-slider/content-slider.php:596
1466
+ #: modules/content-slider/content-slider.php:729
1467
+ #: modules/slideshow/slideshow.php:340
1468
+ msgid "Type"
1469
+ msgstr "Typ"
1470
+
1471
+ # @ fl-builder
1472
+ #: includes/column-settings.php:46 includes/row-settings.php:68
1473
+ #: modules/content-slider/content-slider.php:338
1474
+ msgctxt "Background type."
1475
+ msgid "None"
1476
+ msgstr "Brak"
1477
+
1478
+ # @ fl-builder
1479
+ #: includes/column-settings.php:47 includes/row-settings.php:69
1480
+ msgctxt "Background type."
1481
+ msgid "Color"
1482
+ msgstr "Kolor"
1483
+
1484
+ # @ fl-builder
1485
+ #: includes/column-settings.php:48 includes/row-settings.php:70
1486
+ msgctxt "Background type."
1487
+ msgid "Photo"
1488
+ msgstr "Zdjęcie"
1489
+
1490
+ # @ fl-builder
1491
+ #: includes/column-settings.php:65 includes/row-settings.php:105
1492
+ #: modules/button/button.php:115 modules/callout/callout.php:404
1493
+ #: modules/callout/callout.php:508
1494
+ #: modules/content-slider/content-slider.php:363
1495
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:197
1496
+ #: modules/cta/cta.php:264 modules/icon-group/icon-group.php:64
1497
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:182
1498
+ msgid "Background Color"
1499
+ msgstr "Kolor tła"
1500
+
1501
+ # @ fl-builder
1502
+ #: includes/column-settings.php:77 includes/column-settings.php:207
1503
+ #: includes/row-settings.php:117 includes/row-settings.php:411
1504
+ #: modules/separator/separator.php:44
1505
+ msgid "Opacity"
1506
+ msgstr "Krycie"
1507
+
1508
+ # @ fl-builder
1509
+ #: includes/column-settings.php:88 includes/row-settings.php:129
1510
+ #: modules/content-slider/content-slider.php:359
1511
+ msgid "Background Photo"
1512
+ msgstr "Zdjęcie tła"
1513
+
1514
+ # @ fl-builder
1515
+ #: includes/column-settings.php:92 includes/row-settings.php:133
1516
+ #: includes/row-settings.php:321 modules/callout/callout.php:316
1517
+ #: modules/callout/callout.php:332 modules/callout/callout.php:336
1518
+ #: modules/content-slider/content-slider.php:335
1519
+ #: modules/content-slider/content-slider.php:404
1520
+ #: modules/content-slider/content-slider.php:745 modules/photo/photo.php:25
1521
+ #: modules/photo/photo.php:392
1522
+ msgid "Photo"
1523
+ msgstr "Zdjęcie"
1524
+
1525
+ # @ fl-builder
1526
+ #: includes/column-settings.php:99 includes/row-settings.php:140
1527
+ msgid "Repeat"
1528
+ msgstr "Powtarzanie tła (Repeat)"
1529
+
1530
+ # @ fl-builder
1531
+ #: includes/column-settings.php:102 includes/row-settings.php:143
1532
+ msgctxt "Background repeat."
1533
+ msgid "None"
1534
+ msgstr "Brak"
1535
+
1536
+ # @ fl-builder
1537
+ #: includes/column-settings.php:103 includes/row-settings.php:144
1538
+ msgctxt "Background repeat."
1539
+ msgid "Tile"
1540
+ msgstr "Kafelki"
1541
+
1542
+ # @ fl-builder
1543
+ #: includes/column-settings.php:104 includes/row-settings.php:145
1544
+ msgctxt "Background repeat."
1545
+ msgid "Horizontal"
1546
+ msgstr "Powtaryanie poziome (horizontal)"
1547
+
1548
+ # @ fl-builder
1549
+ #: includes/column-settings.php:105 includes/row-settings.php:146
1550
+ msgctxt "Background repeat."
1551
+ msgid "Vertical"
1552
+ msgstr "Powtarzanie pionowe (vertical)"
1553
+
1554
+ #: includes/column-settings.php:107 includes/row-settings.php:148
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 "
1558
+ "times as needed to fill the background horizontally and vertically. You can "
1559
+ "also specify the image to only repeat horizontally or vertically."
1560
+ msgstr ""
1561
+ "Powtarzanie tła określa, jak obraz powinien wyświetlać się w tle. Jeśli "
1562
+ "wybierzesz Brak, obraz będzie wyświetlany w tle tak, jak został wczytany. "
1563
+ "Wybranie opcji Kafelki powoduje powtórzenie obrazu tak, aby wypełnił "
1564
+ "dostępną przestrzeń w poziomie i pionie. Możesz też ustawić powtarzanie "
1565
+ "obrazu tylko w poziomie (Horizontal) lub tylko w pionie (Vertical)."
1566
+
1567
+ # @ fl-builder
1568
+ #: includes/column-settings.php:117 includes/row-settings.php:158
1569
+ msgid "Left Top"
1570
+ msgstr "Lewa Góra"
1571
+
1572
+ # @ fl-builder
1573
+ #: includes/column-settings.php:118 includes/row-settings.php:159
1574
+ msgid "Left Center"
1575
+ msgstr "Lewa Środek"
1576
+
1577
+ # @ fl-builder
1578
+ #: includes/column-settings.php:119 includes/row-settings.php:160
1579
+ msgid "Left Bottom"
1580
+ msgstr "Lewa Dół"
1581
+
1582
+ # @ fl-builder
1583
+ #: includes/column-settings.php:120 includes/row-settings.php:161
1584
+ msgid "Right Top"
1585
+ msgstr "Prawa Góra"
1586
+
1587
+ # @ fl-builder
1588
+ #: includes/column-settings.php:121 includes/row-settings.php:162
1589
+ msgid "Right Center"
1590
+ msgstr "Prawa Środek"
1591
+
1592
+ # @ fl-builder
1593
+ #: includes/column-settings.php:122 includes/row-settings.php:163
1594
+ msgid "Right Bottom"
1595
+ msgstr "Prawa Dół"
1596
+
1597
+ # @ fl-builder
1598
+ #: includes/column-settings.php:123 includes/row-settings.php:164
1599
+ msgid "Center Top"
1600
+ msgstr "Środek Góra"
1601
+
1602
+ # @ fl-builder
1603
+ #: includes/column-settings.php:124 includes/row-settings.php:165
1604
+ #: modules/button/button.php:218 modules/callout/callout.php:251
1605
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
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:418 modules/social-buttons/social-buttons.php:100
1609
+ msgid "Center"
1610
+ msgstr "Środek"
1611
+
1612
+ # @ fl-builder
1613
+ #: includes/column-settings.php:125 includes/row-settings.php:166
1614
+ msgid "Center Bottom"
1615
+ msgstr "Środek Dół"
1616
+
1617
+ #: includes/column-settings.php:127 includes/row-settings.php:168
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:134 includes/row-settings.php:175
1624
+ msgid "Attachment"
1625
+ msgstr "Zachowanie"
1626
+
1627
+ # @ fl-builder
1628
+ #: includes/column-settings.php:137 includes/row-settings.php:178
1629
+ #: modules/post-grid/post-grid.php:75
1630
+ msgid "Scroll"
1631
+ msgstr "Scroll (Przewijanie)"
1632
+
1633
+ # @ fl-builder
1634
+ #: includes/column-settings.php:138 includes/global-settings.php:69
1635
+ #: includes/global-settings.php:83 includes/row-settings.php:19
1636
+ #: includes/row-settings.php:37 includes/row-settings.php:179
1637
+ msgid "Fixed"
1638
+ msgstr "Określony"
1639
+
1640
+ #: includes/column-settings.php:140 includes/row-settings.php:181
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 "
1644
+ "the default setting. Fixed will allow the image to scroll within the "
1645
+ "background if fill is selected in the scale setting."
1646
+ msgstr ""
1647
+ "Pole Zachowanie określa jak zachowuje się obraz w tle, gdy użytkownik "
1648
+ "przewija stronę. Jeśli wybierzesz Scroll (przewijanie), obraz będzie "
1649
+ "przwijał się razem z treścią strony. To jest domyślne ustawienie. Jeśli "
1650
+ "natomiast wybierzesz Fixed (Stała pozycja), obraz w tle będzie się przewijał "
1651
+ "jeśli w polu Skala wybierzesz opcję Wypełnij."
1652
+
1653
+ # @ fl-builder
1654
+ #: includes/column-settings.php:147 includes/row-settings.php:188
1655
+ msgid "Scale"
1656
+ msgstr "Skala"
1657
+
1658
+ # @ fl-builder
1659
+ #: includes/column-settings.php:150 includes/row-settings.php:191
1660
+ msgctxt "Background scale."
1661
+ msgid "None"
1662
+ msgstr "Brak"
1663
+
1664
+ # @ fl-builder
1665
+ #: includes/column-settings.php:151 includes/row-settings.php:192
1666
+ msgid "Fit"
1667
+ msgstr "Dopasuj"
1668
+
1669
+ # @ fl-builder
1670
+ #: includes/column-settings.php:152 includes/row-settings.php:193
1671
+ msgid "Fill"
1672
+ msgstr "Wypełnij"
1673
+
1674
+ #: includes/column-settings.php:154 includes/row-settings.php:195
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."
1678
+ msgstr ""
1679
+ "Pole Skala określa jak powinien być wyświetlony obraz w tle. Możesz wybrać "
1680
+ "między wypełnieniem i dopasowaniem obrazu do tła."
1681
+
1682
+ # @ fl-builder
1683
+ #: includes/column-settings.php:162 includes/row-settings.php:366
1684
+ msgid "Border"
1685
+ msgstr "Obramowanie"
1686
+
1687
+ # @ fl-builder
1688
+ #: includes/column-settings.php:168 includes/row-settings.php:372
1689
+ msgid ""
1690
+ "The type of border to use. Double borders must have a width of at least 3px "
1691
+ "to render properly."
1692
+ msgstr ""
1693
+ "Rodzaj obramowania jaki chcesz użyć. Podwójne obramowania muszą mieć "
1694
+ "przynajmniej 3 piksele grubości, aby poprawnie się wyświetlały."
1695
+
1696
+ # @ fl-builder
1697
+ #: includes/column-settings.php:170 includes/row-settings.php:374
1698
+ msgctxt "Border type."
1699
+ msgid "None"
1700
+ msgstr "Brak"
1701
+
1702
+ # @ fl-builder
1703
+ #: includes/column-settings.php:171 includes/row-settings.php:375
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:172 includes/row-settings.php:376
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:173 includes/row-settings.php:377
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:174 includes/row-settings.php:378
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:218 includes/row-settings.php:422
1732
+ msgid "Top Width"
1733
+ msgstr "Grubość górna"
1734
+
1735
+ # @ fl-builder
1736
+ #: includes/column-settings.php:230 includes/row-settings.php:434
1737
+ msgid "Bottom Width"
1738
+ msgstr "Grubość dolna"
1739
+
1740
+ # @ fl-builder
1741
+ #: includes/column-settings.php:242 includes/row-settings.php:446
1742
+ msgid "Left Width"
1743
+ msgstr "Grubość po lewej"
1744
+
1745
+ # @ fl-builder
1746
+ #: includes/column-settings.php:254 includes/row-settings.php:458
1747
+ msgid "Right Width"
1748
+ msgstr "Grubość po prawej"
1749
+
1750
+ # @ fl-builder
1751
+ #: includes/column-settings.php:269 includes/module-settings.php:6
1752
+ #: includes/row-settings.php:473 modules/content-slider/content-slider.php:273
1753
+ msgid "Advanced"
1754
+ msgstr "Zaawansowane"
1755
+
1756
+ # @ fl-builder
1757
+ #: includes/column-settings.php:272 includes/global-settings.php:41
1758
+ #: includes/global-settings.php:94 includes/module-settings.php:9
1759
+ #: includes/row-settings.php:476
1760
+ msgid "Margins"
1761
+ msgstr "Marginesy"
1762
+
1763
+ # @ fl-builder
1764
+ #: includes/column-settings.php:276 includes/column-settings.php:329
1765
+ #: includes/module-settings.php:13 includes/row-settings.php:480
1766
+ #: includes/row-settings.php:533 modules/slideshow/slideshow.php:476
1767
+ msgid "Top"
1768
+ msgstr "Górny"
1769
+
1770
+ # @ fl-builder
1771
+ #: includes/column-settings.php:288 includes/column-settings.php:341
1772
+ #: includes/module-settings.php:25 includes/row-settings.php:492
1773
+ #: includes/row-settings.php:545 modules/slideshow/slideshow.php:475
1774
+ msgid "Bottom"
1775
+ msgstr "Dolny"
1776
+
1777
+ # @ fl-builder
1778
+ #: includes/column-settings.php:300 includes/column-settings.php:353
1779
+ #: includes/module-settings.php:37 includes/row-settings.php:504
1780
+ #: includes/row-settings.php:557 modules/button/button.php:219
1781
+ #: modules/callout/callout.php:252
1782
+ #: modules/content-slider/content-slider.php:476 modules/cta/cta.php:125
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:417 modules/social-buttons/social-buttons.php:101
1786
+ msgid "Left"
1787
+ msgstr "Lewy"
1788
+
1789
+ # @ fl-builder
1790
+ #: includes/column-settings.php:312 includes/column-settings.php:365
1791
+ #: includes/module-settings.php:49 includes/row-settings.php:516
1792
+ #: includes/row-settings.php:569 modules/button/button.php:220
1793
+ #: modules/callout/callout.php:253
1794
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
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:419 modules/social-buttons/social-buttons.php:102
1798
+ msgid "Right"
1799
+ msgstr "Prawy"
1800
+
1801
+ # @ fl-builder
1802
+ #: includes/column-settings.php:325 includes/global-settings.php:49
1803
+ #: includes/row-settings.php:529 modules/button/button.php:233
1804
+ #: modules/callout/callout.php:598
1805
+ #: modules/content-slider/content-slider.php:703 modules/cta/cta.php:345
1806
+ #: modules/subscribe-form/subscribe-form.php:263
1807
+ msgid "Padding"
1808
+ msgstr "Odstęp wewnętrzny (padding)"
1809
+
1810
+ # @ fl-builder
1811
+ #: includes/column-settings.php:378 includes/global-settings.php:103
1812
+ #: includes/module-settings.php:62 includes/row-settings.php:582
1813
+ msgid "Responsive Layout"
1814
+ msgstr "Układ responsywny"
1815
+
1816
+ # @ fl-builder
1817
+ #: includes/column-settings.php:382 includes/module-settings.php:66
1818
+ #: includes/row-settings.php:586 modules/slideshow/slideshow.php:291
1819
+ msgid "Display"
1820
+ msgstr "Wyświetlaj"
1821
+
1822
+ # @ fl-builder
1823
+ #: includes/column-settings.php:384 includes/module-settings.php:68
1824
+ #: includes/row-settings.php:588
1825
+ msgid "Always"
1826
+ msgstr "Zawsze"
1827
+
1828
+ # @ fl-builder
1829
+ #: includes/column-settings.php:385 includes/module-settings.php:69
1830
+ #: includes/row-settings.php:589
1831
+ msgid "Large Devices Only"
1832
+ msgstr "Tylko na dużych urządzeniach"
1833
+
1834
+ # @ fl-builder
1835
+ #: includes/column-settings.php:386 includes/module-settings.php:70
1836
+ #: includes/row-settings.php:590
1837
+ msgid "Large &amp; Medium Devices Only"
1838
+ msgstr "Na urządzeniach dużych i średnich"
1839
+
1840
+ # @ fl-builder
1841
+ #: includes/column-settings.php:387 includes/module-settings.php:71
1842
+ #: includes/row-settings.php:591
1843
+ msgid "Medium Devices Only"
1844
+ msgstr "Tylko na średnich urządzeniach"
1845
+
1846
+ # @ fl-builder
1847
+ #: includes/column-settings.php:388 includes/module-settings.php:72
1848
+ #: includes/row-settings.php:592
1849
+ msgid "Medium &amp; Small Devices Only"
1850
+ msgstr "Na urządzeniach średnich i małych"
1851
+
1852
+ # @ fl-builder
1853
+ #: includes/column-settings.php:389 includes/module-settings.php:73
1854
+ #: includes/row-settings.php:593
1855
+ msgid "Small Devices Only"
1856
+ msgstr "Tylko na małych urządzeniach"
1857
+
1858
+ # @ fl-builder
1859
+ #: includes/column-settings.php:391
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:398
1865
+ msgid "Medium Device Width"
1866
+ msgstr "Szerokość na średnich urządzenich"
1867
+
1868
+ # @ fl-builder
1869
+ #: includes/column-settings.php:399
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:401 includes/column-settings.php:429
1875
+ #: modules/callout/callout.php:283
1876
+ #: modules/content-slider/content-slider.php:448 modules/cta/cta.php:167
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:402 includes/column-settings.php:430
1884
+ #: modules/button/button.php:193 modules/callout/callout.php:284
1885
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1886
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
1887
+ #: modules/heading/heading.php:175 modules/social-buttons/social-buttons.php:74
1888
+ msgid "Custom"
1889
+ msgstr "Wpisz"
1890
+
1891
+ # @ fl-builder
1892
+ #: includes/column-settings.php:415
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:426
1898
+ msgid "Small Device Width"
1899
+ msgstr "Szerokość na małych urządzenich"
1900
+
1901
+ # @ fl-builder
1902
+ #: includes/column-settings.php:427
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:443
1908
+ msgid "Custom Small Device Width"
1909
+ msgstr "Wpisz szerokość dla małych urządzeń"
1910
+
1911
+ # @ fl-builder
1912
+ #: includes/column-settings.php:455 includes/module-settings.php:115
1913
+ #: includes/row-settings.php:603
1914
+ msgid "CSS Selectors"
1915
+ msgstr "Selektory CSS"
1916
+
1917
+ # @ fl-builder
1918
+ #: includes/column-settings.php:459 includes/loop-settings.php:28
1919
+ #: includes/module-settings.php:119 includes/row-settings.php:607
1920
+ msgid "ID"
1921
+ msgstr "ID"
1922
+
1923
+ # @ fl-builder
1924
+ #: includes/column-settings.php:460
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."
1928
+ msgstr ""
1929
+ "Unikalny identyfikator (ID), który zostanie dodany do kodu HTML tej kolumny. "
1930
+ "Musi zaczynać się od litery, może zawierać myślniki, podkreślenia, litery "
1931
+ "(bez polskich znaków) i liczby"
1932
+
1933
+ # @ fl-builder
1934
+ #: includes/column-settings.php:467
1935
+ msgid "CSS Class"
1936
+ msgstr "Klasa CSS"
1937
+
1938
+ # @ fl-builder
1939
+ #: includes/column-settings.php:468
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 "
1943
+ "classes with spaces."
1944
+ msgstr ""
1945
+ "Klasa która zostanie dodana do kodu HTML tej kolumny. Musi zaczynać się od "
1946
+ "litery, może zawierać myślniki, podkreślenia, litery (bez polskich znaków) i "
1947
+ "liczby. Jeśli chcesz wpisać kilka klas, oddziel je spacjami"
1948
+
1949
+ # @ fl-builder
1950
+ #: includes/field-form.php:28
1951
+ #, php-format
1952
+ msgctxt "%s stands for form field label."
1953
+ msgid "Edit %s"
1954
+ msgstr "Edytuj %s"
1955
+
1956
+ # @ fl-builder
1957
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
1958
+ msgid "Select Icon"
1959
+ msgstr "Wybierz ikonę"
1960
+
1961
+ # @ fl-builder
1962
+ #: includes/field-icon.php:5 includes/field-photo.php:13
1963
+ msgid "Replace"
1964
+ msgstr "Zamień"
1965
+
1966
+ # @ fl-builder
1967
+ #: includes/field-icon.php:7 includes/js-config.php:61
1968
+ msgid "Remove"
1969
+ msgstr "Usuń"
1970
+
1971
+ # @ fl-builder
1972
+ #: includes/field-link.php:3
1973
+ msgid "Select"
1974
+ msgstr "Zaznacz"
1975
+
1976
+ # @ fl-builder
1977
+ #: includes/field-link.php:5
1978
+ msgid "Enter a post title to search."
1979
+ msgstr "Wpisz tytuł posta, który chcesz znaleźć"
1980
+
1981
+ #: includes/field-link.php:6 includes/field-suggest.php:7
1982
+ msgid "Start typing..."
1983
+ msgstr "Zacznij pisać..."
1984
+
1985
+ # @ fl-builder
1986
+ #: includes/field-link.php:7 includes/icon-selector.php:28
1987
+ #: includes/js-config.php:19 includes/settings.php:63
1988
+ #: includes/template-selector.php:92
1989
+ msgid "Cancel"
1990
+ msgstr "Anuluj"
1991
+
1992
+ # @ fl-builder
1993
+ #: includes/field-multiple-photos.php:8
1994
+ #, php-format
1995
+ msgid "1 Photo Selected"
1996
+ msgid_plural "%d Photos Selected"
1997
+ msgstr[0] "1 zdjęcie zaznaczone"
1998
+ msgstr[1] "Zaznaczonych zdjęć: %d"
1999
+ msgstr[2] "Zaznaczonych zdjęć: %d"
2000
+
2001
+ # @ fl-builder
2002
+ #: includes/field-multiple-photos.php:13
2003
+ msgid "Create Gallery"
2004
+ msgstr "Stwórz galerię"
2005
+
2006
+ # @ fl-builder
2007
+ #: includes/field-multiple-photos.php:14
2008
+ msgid "Edit Gallery"
2009
+ msgstr "Edytuj galerię"
2010
+
2011
+ # @ fl-builder
2012
+ #: includes/field-multiple-photos.php:15
2013
+ msgid "Add Photos"
2014
+ msgstr "Dodaj zdjęcia"
2015
+
2016
+ # @ fl-builder
2017
+ #: includes/field-photo.php:3 includes/js-config.php:66
2018
+ msgid "Select Photo"
2019
+ msgstr "Zaznacz zdjęcie"
2020
+
2021
+ # @ fl-builder
2022
+ #: includes/field-video.php:3 includes/js-config.php:68
2023
+ msgid "Select Video"
2024
+ msgstr "Zaznacz wideo"
2025
+
2026
+ # @ fl-builder
2027
+ #: includes/field-video.php:17
2028
+ msgid "Replace Video"
2029
+ msgstr "Podmień wideo"
2030
+
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:209
2035
+ #: modules/contact-form/contact-form.php:58
2036
+ #: modules/content-slider/content-slider.php:190
2037
+ #: modules/content-slider/content-slider.php:314 modules/cta/cta.php:67
2038
+ #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
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:368
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:257
2044
+ #: modules/social-buttons/social-buttons.php:64
2045
+ #: modules/subscribe-form/subscribe-form.php:86 modules/tabs/tabs.php:77
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
2049
+ msgid "General"
2050
+ msgstr "Ogólne"
2051
+
2052
+ # @ fl-builder
2053
+ #: includes/global-settings.php:8
2054
+ msgid "Note: These settings apply to all posts and pages."
2055
+ msgstr "Ważne: Te ustawienia odnoszą się do wszystkich postów i stron."
2056
+
2057
+ # @ fl-builder
2058
+ #: includes/global-settings.php:11
2059
+ msgid "Default Page Heading"
2060
+ msgstr "Domyślny nagłówek strony"
2061
+
2062
+ # @ fl-builder
2063
+ #: includes/global-settings.php:15
2064
+ msgctxt ""
2065
+ "General settings form field label. Intended meaning: \"Show page heading?\""
2066
+ msgid "Show"
2067
+ msgstr "Pokaż"
2068
+
2069
+ # @ fl-builder
2070
+ #: includes/global-settings.php:26
2071
+ msgid ""
2072
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
2073
+ "You will also be required to enter some basic CSS for this to work if you "
2074
+ "choose no."
2075
+ msgstr ""
2076
+ "Jeśli wybierzesz Nie, tytuły stron nie będą wyświetlane. Będziesz też "
2077
+ "poproszony o dodanie nieco CSSa, aby ta funkcjonalność zadziałała."
2078
+
2079
+ # @ fl-builder
2080
+ #: includes/global-settings.php:30
2081
+ msgid "CSS Selector"
2082
+ msgstr "Selektor CSS"
2083
+
2084
+ # @ fl-builder
2085
+ #: includes/global-settings.php:32
2086
+ msgid "Enter a CSS selector for the default page heading to hide it."
2087
+ msgstr "Wpisz selektor CSS aby ukryć domyślny nagłówek w stronach."
2088
+
2089
+ # @ fl-builder
2090
+ #: includes/global-settings.php:37
2091
+ msgid "Rows"
2092
+ msgstr "Wiersze"
2093
+
2094
+ # @ fl-builder
2095
+ #: includes/global-settings.php:57
2096
+ msgid "Max Width"
2097
+ msgstr "Maksymalna szerokość"
2098
+
2099
+ # @ fl-builder
2100
+ #: includes/global-settings.php:62
2101
+ msgid ""
2102
+ "All rows will default to this width. You can override this and make a row "
2103
+ "full width in the settings for each row."
2104
+ msgstr ""
2105
+ "Wszystkie wiersze będą miały domyślnie taką szerokość. Jednak dla każdego "
2106
+ "wiersza możesz ją ustawić osobno."
2107
+
2108
+ # @ fl-builder
2109
+ #: includes/global-settings.php:66
2110
+ msgid "Default Row Width"
2111
+ msgstr "Domyślna szerokość wiersza"
2112
+
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:192 modules/callout/callout.php:585
2117
+ msgid "Full Width"
2118
+ msgstr "Pełna szerokość"
2119
+
2120
+ # @ fl-builder
2121
+ #: includes/global-settings.php:80
2122
+ msgid "Default Row Content Width"
2123
+ msgstr "Domyśla szerokość wiersza z treścią"
2124
+
2125
+ # @ fl-builder
2126
+ #: includes/global-settings.php:107
2127
+ msgctxt ""
2128
+ "General settings form field label. Intended meaning: \"Responsive layout "
2129
+ "enabled?\""
2130
+ msgid "Enabled"
2131
+ msgstr "Włączony"
2132
+
2133
+ #: includes/global-settings.php:121
2134
+ msgctxt ""
2135
+ "General settings form field label. Intended meaning: \"Enable auto spacing "
2136
+ "for responsive layouts?\""
2137
+ msgid "Enable Auto Spacing"
2138
+ msgstr "Włącz wstawianie odstępów"
2139
+
2140
+ #: includes/global-settings.php:127
2141
+ msgid ""
2142
+ "When auto spacing is enabled, the builder will automatically adjust the "
2143
+ "margins and padding in your layout once the small device breakpoint is "
2144
+ "reached. Most users will want to leave this enabled."
2145
+ msgstr ""
2146
+ "Jeśli włączysz wstawianie odstępów, kreator automatycznie dostosuje "
2147
+ "marginesy i padding (wewnętrzne marginesy) gdy strona będzie oglądana na "
2148
+ "małych urządzeniach. Dla większości użytkowników polecamy pozostawienie tej "
2149
+ "opcji włączonej."
2150
+
2151
+ # @ fl-builder
2152
+ #: includes/global-settings.php:131
2153
+ msgid "Medium Device Breakpoint"
2154
+ msgstr "Maksymalna szerokość średnich urządzeń"
2155
+
2156
+ # @ fl-builder
2157
+ #: includes/global-settings.php:136
2158
+ msgid ""
2159
+ "The browser width at which the layout will adjust for medium devices such as "
2160
+ "tablets."
2161
+ msgstr ""
2162
+ "Określ szerokość przeglądarki, od której układ strony dopasuje się do "
2163
+ "średnich urządzeń."
2164
+
2165
+ # @ fl-builder
2166
+ #: includes/global-settings.php:140
2167
+ msgid "Small Device Breakpoint"
2168
+ msgstr "Maksymalna szerokość małych urządzeń"
2169
+
2170
+ # @ fl-builder
2171
+ #: includes/global-settings.php:145
2172
+ msgid ""
2173
+ "The browser width at which the layout will adjust for small devices such as "
2174
+ "phones."
2175
+ msgstr ""
2176
+ "Określ szerokość przeglądarki, od której układ strony dopasuje się do małych "
2177
+ "urządzeń."
2178
+
2179
+ # @ fl-builder
2180
+ #: includes/icon-selector.php:5
2181
+ msgctxt "Select option for showing all icon libraries."
2182
+ msgid "All Libraries"
2183
+ msgstr "Wszystkie biblioteki"
2184
+
2185
+ #: includes/js-config.php:18
2186
+ msgid "What would you like to do?"
2187
+ msgstr "Co chciałbyś zrobić?"
2188
+
2189
+ #: includes/js-config.php:20
2190
+ msgid "Change Template"
2191
+ msgstr "Zmień szablon"
2192
+
2193
+ #: includes/js-config.php:21
2194
+ msgid ""
2195
+ "Warning! Changing the template will replace your existing layout. Do you "
2196
+ "really want to do this?"
2197
+ msgstr ""
2198
+ "Uwaga! Zmiana szablonu spowoduje zastąpienie nim tego, który teraz używasz. "
2199
+ "Czy na pewno chcesz to zrobić?"
2200
+
2201
+ #: includes/js-config.php:22
2202
+ msgid "Column"
2203
+ msgstr "Kolumna"
2204
+
2205
+ #: includes/js-config.php:24
2206
+ msgid ""
2207
+ "Please select either a background layout or content layout before submitting."
2208
+ msgstr "Zaznacz układ treści lub układ tła."
2209
+
2210
+ #: includes/js-config.php:25
2211
+ msgid "Remove Account"
2212
+ msgstr "Usuń konto"
2213
+
2214
+ #: includes/js-config.php:26
2215
+ msgid ""
2216
+ "Are you sure you want to remove this account? Other modules that are "
2217
+ "connected to it will be affected."
2218
+ msgstr ""
2219
+ "Czy na pewno chcesz usunąć to konto? Wpłynie to również na inne moduły, "
2220
+ "które są do niego podłączone."
2221
+
2222
+ #: includes/js-config.php:27
2223
+ msgid "Do you really want to delete this item?"
2224
+ msgstr "Czy na pewno chcesz to usunąć?"
2225
+
2226
+ #: includes/js-config.php:28
2227
+ msgid ""
2228
+ "Do you really want to delete this module? All content data will be "
2229
+ "permanently deleted."
2230
+ msgstr ""
2231
+ "Czy na pewno chcesz usunąć ten moduł? Cała treść będzie nieodwracalnie "
2232
+ "skasowana."
2233
+
2234
+ #: includes/js-config.php:29
2235
+ msgid ""
2236
+ "Do you really want to delete this row? All content data will be permanently "
2237
+ "deleted."
2238
+ msgstr ""
2239
+ "Czy na pewno chcesz usunąć ten wiersz? Cała treść będzie nieodwracalnie "
2240
+ "skasowana."
2241
+
2242
+ #: includes/js-config.php:31
2243
+ msgid "Discard Changes"
2244
+ msgstr "Odrzuć zmiany"
2245
+
2246
+ #: includes/js-config.php:32
2247
+ msgid ""
2248
+ "Do you really want to discard these changes? All of your changes that are "
2249
+ "not published will be lost."
2250
+ msgstr ""
2251
+ "Czy na pewno chcesz odrzucić zmiany i nie zapisywać tej strony? Wszystkie "
2252
+ "wprowadzone zmiany nie zostaną opublikowane i zostaną utracone."
2253
+
2254
+ # @ fl-builder
2255
+ #: includes/js-config.php:33 includes/ui.php:20 includes/ui.php:55
2256
+ msgid "Done"
2257
+ msgstr "Gotowe"
2258
+
2259
+ #: includes/js-config.php:34
2260
+ msgid "Save Draft"
2261
+ msgstr "Zapisz szkic"
2262
+
2263
+ # @ fl-builder
2264
+ #: includes/js-config.php:35
2265
+ msgctxt "Duplicate page/post action label."
2266
+ msgid "Duplicate"
2267
+ msgstr "Powiel"
2268
+
2269
+ #: includes/js-config.php:36
2270
+ msgid "Duplicate This Page"
2271
+ msgstr "Powiel tę stronę"
2272
+
2273
+ #: includes/js-config.php:37
2274
+ msgid "Duplicate This Template"
2275
+ msgstr "Powiel ten szablon"
2276
+
2277
+ #: includes/js-config.php:38
2278
+ msgid "Edit Global Settings"
2279
+ msgstr "Edytuj globalne ustawienia"
2280
+
2281
+ #: includes/js-config.php:39
2282
+ msgid "Drop a row layout or module to get started!"
2283
+ msgstr "Umieść tu wiersz, aby zacząć!"
2284
+
2285
+ #: includes/js-config.php:40
2286
+ msgid ""
2287
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
2288
+ "not functioning as expected the cause is most likely this error. Please help "
2289
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
2290
+ "each to determine if the issue is related to a third party plugin."
2291
+ msgstr ""
2292
+ "Beaver Builder wykrył następujący błąd JavaScriptu. Jeśli Beaver Builder nie "
2293
+ "działa poprawnie, prawdopodobnie ten błąd jest tego przyczyną. Pomóż nam "
2294
+ "ulepszyć Beaver Buildera - wyłacz wszystkie pluginy i włączaj je po kolei "
2295
+ "sprawdzając, czy któryś z nich powoduje pojawienie się błędu."
2296
+
2297
+ #: includes/js-config.php:41
2298
+ msgid "Full Size"
2299
+ msgstr "Pełny rozmiar"
2300
+
2301
+ #: includes/js-config.php:42
2302
+ msgid "Get Help"
2303
+ msgstr "Pomoc"
2304
+
2305
+ #: includes/js-config.php:43
2306
+ msgid "Getting Started Video"
2307
+ msgstr "Zobacz wideo - początki z Beaver Builderem"
2308
+
2309
+ # @ fl-builder
2310
+ #: includes/js-config.php:44
2311
+ msgid "\"{message}\" on line {line} of {file}."
2312
+ msgstr "\"{message}\" w linii {line} w pliku {file}."
2313
+
2314
+ #: includes/js-config.php:45
2315
+ msgid "Insert"
2316
+ msgstr "Wstaw"
2317
+
2318
+ #: includes/js-config.php:46
2319
+ msgid "Large"
2320
+ msgstr "Duży"
2321
+
2322
+ #: includes/js-config.php:47
2323
+ msgid "Manage Templates"
2324
+ msgstr "Zarządzaj szablonami"
2325
+
2326
+ #: includes/js-config.php:48
2327
+ msgid "Medium"
2328
+ msgstr "Średni"
2329
+
2330
+ #: includes/js-config.php:49
2331
+ msgid "Module"
2332
+ msgstr "Moduł"
2333
+
2334
+ #: includes/js-config.php:50
2335
+ msgid "Move"
2336
+ msgstr "Przesuń"
2337
+
2338
+ #: includes/js-config.php:51
2339
+ msgid "New Column"
2340
+ msgstr "Nowa kolumna"
2341
+
2342
+ #: includes/js-config.php:52
2343
+ msgid "New Row"
2344
+ msgstr "Nowy wiersz"
2345
+
2346
+ #: includes/js-config.php:53
2347
+ msgid "No results found."
2348
+ msgstr "Nie znaleziono."
2349
+
2350
+ #: includes/js-config.php:54
2351
+ msgid "No Thanks"
2352
+ msgstr "Nie, dzięki"
2353
+
2354
+ #: includes/js-config.php:55
2355
+ msgid "OK"
2356
+ msgstr "OK"
2357
+
2358
+ # @ fl-builder
2359
+ #: includes/js-config.php:56 modules/photo/photo.php:454
2360
+ msgid "Photo Page"
2361
+ msgstr "Strona zdjęcia"
2362
+
2363
+ #: includes/js-config.php:57
2364
+ msgid "Photo Selected"
2365
+ msgstr "Zaznaczone zdjęcie"
2366
+
2367
+ #: includes/js-config.php:58
2368
+ msgid "Photos Selected"
2369
+ msgstr "Zaznaczone zdjęcia"
2370
+
2371
+ #: includes/js-config.php:59 modules/subscribe-form/includes/frontend.php:15
2372
+ msgid "Please Wait..."
2373
+ msgstr "Proszę czekać..."
2374
+
2375
+ #: includes/js-config.php:60
2376
+ msgid "Publish Changes"
2377
+ msgstr "Opublikuj zmiany"
2378
+
2379
+ #: includes/js-config.php:62
2380
+ msgid "Row"
2381
+ msgstr "Wiersz"
2382
+
2383
+ # @ fl-builder
2384
+ #: includes/js-config.php:63 includes/row-settings.php:6
2385
+ msgid "Row Settings"
2386
+ msgstr "Ustawienia wiersza"
2387
+
2388
+ #: includes/js-config.php:64
2389
+ msgid "Save Core Template"
2390
+ msgstr "Zapisz szablon kreatora"
2391
+
2392
+ # @ fl-builder
2393
+ #: includes/js-config.php:65 includes/user-template-settings.php:4
2394
+ msgid "Save Template"
2395
+ msgstr "Zapisz szablon"
2396
+
2397
+ #: includes/js-config.php:67
2398
+ msgid "Select Photos"
2399
+ msgstr "Zaznacz zdjęcia"
2400
+
2401
+ #: includes/js-config.php:70
2402
+ msgid "Please select an account before saving."
2403
+ msgstr "Zaznacz konto przed zapisaniem."
2404
+
2405
+ #: includes/js-config.php:71
2406
+ msgid "Please connect an account before saving."
2407
+ msgstr "Połącz konto przed zapisaniem."
2408
+
2409
+ #: includes/js-config.php:72
2410
+ msgid "Please select a list before saving."
2411
+ msgstr "Wybierz listę przed zapisaniem."
2412
+
2413
+ #: includes/js-config.php:73
2414
+ msgid "Take a Tour"
2415
+ msgstr "Uruchom przewodnik po kreatorze"
2416
+
2417
+ #: includes/js-config.php:74
2418
+ msgid "Append New Layout"
2419
+ msgstr "Dołącz nowy układ"
2420
+
2421
+ #: includes/js-config.php:75
2422
+ msgid "Replace Existing Layout"
2423
+ msgstr "Nadpisz nowy układ"
2424
+
2425
+ #: includes/js-config.php:76
2426
+ msgid "Template Saved!"
2427
+ msgstr "Szablon zapisany!"
2428
+
2429
+ #: includes/js-config.php:77
2430
+ msgid "Thumbnail"
2431
+ msgstr "Miniatura"
2432
+
2433
+ #: includes/js-config.php:78
2434
+ msgid "Next"
2435
+ msgstr "Następny"
2436
+
2437
+ #: includes/js-config.php:79
2438
+ msgid "Get Started"
2439
+ msgstr "Zacznij budowanie strony"
2440
+
2441
+ #: includes/js-config.php:80
2442
+ msgid "Choose a Template"
2443
+ msgstr "Wybierz szablon"
2444
+
2445
+ #: includes/js-config.php:81
2446
+ msgid ""
2447
+ "Get started by choosing a layout template to customize, or build a page from "
2448
+ "scratch by selecting the blank layout template."
2449
+ msgstr ""
2450
+ "Zacznij tworzenie strony przez wybranie szablonu lub zbuduj ją od zera, "
2451
+ "wybierając pusty szablon."
2452
+
2453
+ #: includes/js-config.php:82
2454
+ msgid "Add Rows"
2455
+ msgstr "Dodaj wiersze"
2456
+
2457
+ #: includes/js-config.php:83
2458
+ msgid ""
2459
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2460
+ "and dropping row layouts onto the page."
2461
+ msgstr ""
2462
+ "Dodaj wielokolumnowe wiersze, dostosuj odstępy, dodaj tła i wiele więcej "
2463
+ "przeciągając i upuszczając wiersze na stronę."
2464
+
2465
+ # @ fl-builder
2466
+ #: includes/js-config.php:84 includes/ui.php:22 includes/ui.php:60
2467
+ msgid "Add Content"
2468
+ msgstr "Dodaj treść"
2469
+
2470
+ #: includes/js-config.php:85
2471
+ msgid ""
2472
+ "Add new content by dragging and dropping modules or widgets into your row "
2473
+ "layouts or to create a new row layout."
2474
+ msgstr ""
2475
+ "Dodaj nową treść na stronę przeciągając i upuszczając moduły lub widgety na "
2476
+ "już istniejące wiersze lub tworząc nowe wiersze."
2477
+
2478
+ #: includes/js-config.php:86
2479
+ msgid "Edit Content"
2480
+ msgstr "Edytuj treść"
2481
+
2482
+ #: includes/js-config.php:87
2483
+ msgid ""
2484
+ "Move your mouse over rows, columns or modules to edit and interact with them."
2485
+ msgstr ""
2486
+ "Przesuń kursor na wiersze, kolumny i moduły, aby je edytować i zmieniać."
2487
+
2488
+ #: includes/js-config.php:88
2489
+ msgid ""
2490
+ "Use the action buttons to perform actions such as moving, editing, "
2491
+ "duplicating or deleting rows, columns and modules."
2492
+ msgstr ""
2493
+ "Użyj przycisków akcji aby przesuwać, edytować, duplikować i usuwać wiersze, "
2494
+ "kolumny i moduły."
2495
+
2496
+ #: includes/js-config.php:89
2497
+ msgid "Add More Content"
2498
+ msgstr "Dodaj więcej treści"
2499
+
2500
+ #: includes/js-config.php:90
2501
+ msgid ""
2502
+ "Use the Add Content button to open the content panel and add new row "
2503
+ "layouts, modules or widgets."
2504
+ msgstr ""
2505
+ "Kliknij w przycisk Dodaj treść aby otworzyć boczny panel i dodawać nowe "
2506
+ "wiersze, moduły i widgety."
2507
+
2508
+ #: includes/js-config.php:91
2509
+ msgid "Change Templates"
2510
+ msgstr "Zmień szablony"
2511
+
2512
+ #: includes/js-config.php:92
2513
+ msgid ""
2514
+ "Use the Templates button to pick a new template or append one to your "
2515
+ "layout. Appending will insert a new template at the end of your existing "
2516
+ "page content."
2517
+ msgstr ""
2518
+ "Kliknij w przycisk Szablony aby wybrać nowy szablon lub dodać go do twojej "
2519
+ "strony. Dodanie wstawi nowy szablon na dole strony, pod treścią, która już "
2520
+ "się na stronie znajduje."
2521
+
2522
+ #: includes/js-config.php:93
2523
+ msgid "Helpful Tools"
2524
+ msgstr "Pomocne narzędzia"
2525
+
2526
+ #: includes/js-config.php:94
2527
+ msgid ""
2528
+ "The Tools button lets you duplicate a page, save a template or edit the "
2529
+ "global settings."
2530
+ msgstr ""
2531
+ "Przycisk Narzędzia pozwoli ci zduplikować stronę, zapisać szablon lub "
2532
+ "edytować globalne ustawienia."
2533
+
2534
+ #: includes/js-config.php:95
2535
+ msgid "Publish Your Changes"
2536
+ msgstr "Opublikuj zmiany"
2537
+
2538
+ #: includes/js-config.php:96
2539
+ msgid ""
2540
+ "Once you're finished, click the Done button to publish your changes, save a "
2541
+ "draft or revert back to the last published state."
2542
+ msgstr ""
2543
+ "Gdy skończysz pracę nad tą stroną, kliknij przycisk Gotowe aby opublikować "
2544
+ "zmiany, zapisać wersję roboczą lub wrócić do ostatnio opublikowanej wersji."
2545
+
2546
+ #: includes/js-config.php:97
2547
+ msgid "Let's Get Building!"
2548
+ msgstr "Zaczynajmy budowanie!"
2549
+
2550
+ #: includes/js-config.php:98
2551
+ msgid ""
2552
+ "Now that you know the basics, you're ready to start building! If at any time "
2553
+ "you need help, click the help icon in the upper right corner to access the "
2554
+ "help menu. Happy building!"
2555
+ msgstr ""
2556
+ "Teraz, gdy znasz już podstawy, możesz zacząć budować swoją stronę. Jeśli "
2557
+ "będziesz potrzebować porad, kliknij na ikonę pomocy w prawym górnym rogu "
2558
+ "ekranu. Miłego budowania!"
2559
+
2560
+ #: includes/js-config.php:99
2561
+ msgid ""
2562
+ "The settings you are currently editing will not be saved if you navigate "
2563
+ "away from this page."
2564
+ msgstr ""
2565
+ "Ustawienia, które właśnie edytujesz, nie będą zapisane jeśli wyjdziesz z tej "
2566
+ "strony."
2567
+
2568
+ #: includes/js-config.php:100
2569
+ msgid "View the Knowledge Base"
2570
+ msgstr "Przejrzyj Bazę Wiedzy"
2571
+
2572
+ #: includes/js-config.php:101
2573
+ msgid "Visit the Forums"
2574
+ msgstr "Wejdź na Forum"
2575
+
2576
+ #: includes/js-config.php:102
2577
+ msgid "Watch the Video"
2578
+ msgstr "Obejrzyj wideo"
2579
+
2580
+ #: includes/js-config.php:103
2581
+ msgid ""
2582
+ "Welcome! It looks like this might be your first time using the builder. "
2583
+ "Would you like to take a tour?"
2584
+ msgstr ""
2585
+ "Witamy! Wygląda na to, że pierwszy raz używasz tego kreatora. Czy chcesz "
2586
+ "zobaczyć szybki samouczek?"
2587
+
2588
+ #: includes/js-config.php:104
2589
+ msgid "Yes Please!"
2590
+ msgstr "Tak, bardzo chętnie"
2591
+
2592
+ # @ fl-builder
2593
+ #: includes/loop-settings.php:20
2594
+ msgid "Post Type"
2595
+ msgstr "Typ postu"
2596
+
2597
+ # @ fl-builder
2598
+ #: includes/loop-settings.php:26
2599
+ msgid "Order By"
2600
+ msgstr "Kolejność według"
2601
+
2602
+ # @ fl-builder
2603
+ #: includes/loop-settings.php:29 modules/post-grid/post-grid.php:155
2604
+ #: modules/woocommerce/woocommerce.php:189
2605
+ msgid "Date"
2606
+ msgstr "Data"
2607
+
2608
+ # @ fl-builder
2609
+ #: includes/loop-settings.php:30
2610
+ msgid "Date Last Modified"
2611
+ msgstr "Ostatnia modyfikacja"
2612
+
2613
+ # @ fl-builder
2614
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2615
+ #: modules/pricing-table/pricing-table.php:94
2616
+ msgid "Title"
2617
+ msgstr "Tytuł"
2618
+
2619
+ # @ fl-builder
2620
+ #: includes/loop-settings.php:32 modules/post-grid/post-grid.php:146
2621
+ msgid "Author"
2622
+ msgstr "Autor"
2623
+
2624
+ # @ fl-builder
2625
+ #: includes/loop-settings.php:33
2626
+ msgid "Comment Count"
2627
+ msgstr "Liczba komentarzy"
2628
+
2629
+ # @ fl-builder
2630
+ #: includes/loop-settings.php:34
2631
+ msgid "Menu Order"
2632
+ msgstr "Kolejność w menu"
2633
+
2634
+ # @ fl-builder
2635
+ #: includes/loop-settings.php:35
2636
+ msgid "Random"
2637
+ msgstr "Losowo"
2638
+
2639
+ # @ fl-builder
2640
+ #: includes/loop-settings.php:42
2641
+ msgid "Order"
2642
+ msgstr "Kolejność"
2643
+
2644
+ # @ fl-builder
2645
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2646
+ msgid "Descending"
2647
+ msgstr "Malejąco"
2648
+
2649
+ # @ fl-builder
2650
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2651
+ msgid "Ascending"
2652
+ msgstr "Rosnąco"
2653
+
2654
+ #: includes/loop-settings.php:52
2655
+ msgctxt "How many posts to skip."
2656
+ msgid "Offset"
2657
+ msgstr "Ile postów pominąć?"
2658
+
2659
+ #: includes/loop-settings.php:55
2660
+ msgid "Skip this many posts that match the specified criteria."
2661
+ msgstr "Wpisz liczbę postów, które chcesz pominąć."
2662
+
2663
+ # @ fl-builder
2664
+ #: includes/loop-settings.php:62
2665
+ msgid "Filter"
2666
+ msgstr "Filtr"
2667
+
2668
+ # @ fl-builder
2669
+ #: includes/loop-settings.php:73
2670
+ #, php-format
2671
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2672
+ msgstr ""
2673
+ "Wpisz listę obiektów typu %s oddzielając je przecinkami. Tylko obiekty %s "
2674
+ "wpisane na listę będą wyświetlone."
2675
+
2676
+ # @ fl-builder
2677
+ #: includes/loop-settings.php:86
2678
+ #, php-format
2679
+ msgid ""
2680
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
2681
+ msgstr ""
2682
+ "Wpisz listę obiektów typu %s oddzielając je przecinkami. Tylko wpisy z tymi "
2683
+ "obiektami typu %s będą wyświetlone."
2684
+
2685
+ # @ fl-builder
2686
+ #: includes/loop-settings.php:100
2687
+ msgid "Authors"
2688
+ msgstr "Autorzy"
2689
+
2690
+ # @ fl-builder
2691
+ #: includes/loop-settings.php:101
2692
+ msgid ""
2693
+ "Enter a comma separated list of authors usernames. Only posts with these "
2694
+ "authors will be shown."
2695
+ msgstr ""
2696
+ "Wpisz listę autorów, oddzielając ich przecinkami. Tylko posty tych autorów "
2697
+ "zostaną wyświetlone."
2698
+
2699
+ # @ fl-builder
2700
+ #: includes/module-settings.php:75
2701
+ msgid "Choose whether to show or hide this module at different device sizes."
2702
+ msgstr "Określ, czy wyświetlać ten moduł na urządzeniach o róznych rozmiarach."
2703
+
2704
+ # @ fl-builder
2705
+ #: includes/module-settings.php:83
2706
+ msgid "Animation"
2707
+ msgstr "Animacja"
2708
+
2709
+ # @ fl-builder
2710
+ #: includes/module-settings.php:89
2711
+ msgctxt "Animation style."
2712
+ msgid "None"
2713
+ msgstr "Brak"
2714
+
2715
+ # @ fl-builder
2716
+ #: includes/module-settings.php:90
2717
+ msgctxt "Animation style."
2718
+ msgid "Fade In"
2719
+ msgstr "Pojawianie się (Fade In)"
2720
+
2721
+ # @ fl-builder
2722
+ #: includes/module-settings.php:91
2723
+ msgctxt "Animation style."
2724
+ msgid "Slide Left"
2725
+ msgstr "Wjazd z lewej"
2726
+
2727
+ # @ fl-builder
2728
+ #: includes/module-settings.php:92
2729
+ msgctxt "Animation style."
2730
+ msgid "Slide Right"
2731
+ msgstr "Wjazd z prawej"
2732
+
2733
+ # @ fl-builder
2734
+ #: includes/module-settings.php:93
2735
+ msgctxt "Animation style."
2736
+ msgid "Slide Up"
2737
+ msgstr "Wjazd z góry"
2738
+
2739
+ # @ fl-builder
2740
+ #: includes/module-settings.php:94
2741
+ msgctxt "Animation style."
2742
+ msgid "Slide Down"
2743
+ msgstr "Wjazd z dołu"
2744
+
2745
+ # @ fl-builder
2746
+ #: includes/module-settings.php:102
2747
+ #: modules/content-slider/content-slider.php:229
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:266
2754
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:233
2755
+ #: modules/content-slider/content-slider.php:250
2756
+ #: modules/slideshow/slideshow.php:386 modules/slideshow/slideshow.php:411
2757
+ #: modules/slideshow/slideshow.php:582 modules/testimonials/testimonials.php:95
2758
+ #: modules/testimonials/testimonials.php:112
2759
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2760
+ msgid "seconds"
2761
+ msgstr "sekund"
2762
+
2763
+ # @ fl-builder
2764
+ #: includes/module-settings.php:107
2765
+ msgid "The amount of time in seconds before this animation starts."
2766
+ msgstr "Ilość czasu w sekundach zanim animacja rozpocznie się."
2767
+
2768
+ # @ fl-builder
2769
+ #: includes/module-settings.php:120
2770
+ msgid ""
2771
+ "A unique ID that will be applied to this module's HTML. Must start with a "
2772
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2773
+ msgstr ""
2774
+ "Unikalny identyfikator (ID), który będzie reprezentował ten moduł. Musi się "
2775
+ "zaczynać od litery i może składać się jedynie z liczb, liter, podkreślnika i "
2776
+ "myślnika. Nie używaj w nim spacji."
2777
+
2778
+ # @ fl-builder
2779
+ #: includes/module-settings.php:127 includes/row-settings.php:615
2780
+ msgid "Class"
2781
+ msgstr "Klasa"
2782
+
2783
+ # @ fl-builder
2784
+ #: includes/module-settings.php:128
2785
+ msgid ""
2786
+ "A class that will be applied to this module's HTML. Must start with a letter "
2787
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2788
+ "classes with spaces."
2789
+ msgstr ""
2790
+ "Unikalna klasa, która będzie dodana do tego modułu. Musi się zaczynać od "
2791
+ "litery i może składać się jedynie z liczb, liter, podkreślnika i myślnika. "
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:188
2796
+ #: modules/content-slider/content-slider.php:483
2797
+ msgid "Width"
2798
+ msgstr "Szerokość"
2799
+
2800
+ # @ fl-builder
2801
+ #: includes/row-settings.php:27
2802
+ msgid ""
2803
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
2804
+ "no wider than the Row Max Width set in the Global Settings."
2805
+ msgstr ""
2806
+ "Wiersze posiadające pełną szerokość wypełniają cały dostępny obszar (zwykle "
2807
+ "po prostu szerokość przeglądarki). Wiersze"
2808
+
2809
+ # @ fl-builder
2810
+ #: includes/row-settings.php:34
2811
+ msgid "Content Width"
2812
+ msgstr "Szerokość treści"
2813
+
2814
+ # @ fl-builder
2815
+ #: includes/row-settings.php:40
2816
+ msgid ""
2817
+ "Full width content spans the width of the page from edge to edge. Fixed "
2818
+ "content is no wider than the Row Max Width set in the Global Settings."
2819
+ msgstr ""
2820
+ "Wiersze o pełnej szerokości wypełniają całe dostęone miejsce, czyli zwykle "
2821
+ "zajmują całą szerokość przeglądarki. Wiersze o określonej szerokości niigdy "
2822
+ "nie są szersze niż określono w polu Maksymalna szerokość w globalnych "
2823
+ "ustawieniach (Narzędzia -> Edytuj globalne ustawienia -> Maksymalna "
2824
+ "szerokość)"
2825
+
2826
+ # @ fl-builder
2827
+ #: includes/row-settings.php:71
2828
+ msgctxt "Background type."
2829
+ msgid "Video"
2830
+ msgstr "Wideo"
2831
+
2832
+ # @ fl-builder
2833
+ #: includes/row-settings.php:73
2834
+ msgctxt "Background type."
2835
+ msgid "Slideshow"
2836
+ msgstr "Pokaz slajdów"
2837
+
2838
+ # @ fl-builder
2839
+ #: includes/row-settings.php:77
2840
+ msgctxt "Background type."
2841
+ msgid "Parallax"
2842
+ msgstr "Parallax"
2843
+
2844
+ # @ fl-builder
2845
+ #: includes/row-settings.php:203
2846
+ msgid "Background Video"
2847
+ msgstr "Wideo w tle"
2848
+
2849
+ # @ fl-builder
2850
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:336
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:208
2857
+ msgid ""
2858
+ "An HTML5 video to use as the background of this row. Supported types are "
2859
+ "MP4, WebM and Ogg."
2860
+ msgstr ""
2861
+ "Wideo (HTML5), które ma być użyte jako tło tego wiersza. Obsługiwane formaty "
2862
+ "to MP4, WebM i Ogg."
2863
+
2864
+ # @ fl-builder
2865
+ #: includes/row-settings.php:215
2866
+ msgid "Fallback Photo"
2867
+ msgstr "Zdjęcie \"awaryjne\""
2868
+
2869
+ # @ fl-builder
2870
+ #: includes/row-settings.php:216
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:224
2877
+ msgid "Background Slideshow"
2878
+ msgstr "Pokaz slajdów w tle"
2879
+
2880
+ # @ fl-builder
2881
+ #: includes/row-settings.php:228 modules/gallery/gallery.php:234
2882
+ #: modules/slideshow/slideshow.php:264
2883
+ msgid "Source"
2884
+ msgstr "Źródło"
2885
+
2886
+ # @ fl-builder
2887
+ #: includes/row-settings.php:231 modules/gallery/gallery.php:237
2888
+ #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:267
2889
+ #: modules/video/video.php:86
2890
+ msgid "Media Library"
2891
+ msgstr "Biblioteka mediów"
2892
+
2893
+ # @ fl-builder
2894
+ #: includes/row-settings.php:234 modules/gallery/gallery.php:240
2895
+ #: modules/slideshow/slideshow.php:270
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 "
2899
+ "accessed by using the get a link function in your SmugMug gallery."
2900
+ msgstr ""
2901
+ "Pobierz zdjęcia z wordpressowej Biblioteki Mediów lub swojej strony SmugMug "
2902
+ "wstawiając URL kanału RSS. Adres URL kanału RSS znajdziesz używając funkcji "
2903
+ "Get a link w swojej galerii SmugMug."
2904
+
2905
+ # @ fl-builder
2906
+ #: includes/row-settings.php:249 modules/gallery/gallery.php:252
2907
+ #: modules/slideshow/slideshow.php:282
2908
+ msgid "Photos"
2909
+ msgstr "Zdjęcia"
2910
+
2911
+ # @ fl-builder
2912
+ #: includes/row-settings.php:256 modules/gallery/gallery.php:256
2913
+ #: modules/slideshow/slideshow.php:286
2914
+ msgid "Feed URL"
2915
+ msgstr "Url kanału"
2916
+
2917
+ # @ fl-builder
2918
+ #: includes/row-settings.php:263 includes/row-settings.php:328
2919
+ #: modules/slideshow/slideshow.php:383
2920
+ msgid "Speed"
2921
+ msgstr "Szybkość"
2922
+
2923
+ # @ fl-builder
2924
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:237
2925
+ #: modules/slideshow/slideshow.php:390 modules/testimonials/testimonials.php:99
2926
+ msgid "Transition"
2927
+ msgstr "Animacja"
2928
+
2929
+ # @ fl-builder
2930
+ #: includes/row-settings.php:276
2931
+ msgctxt "Slideshow transition type."
2932
+ msgid "None"
2933
+ msgstr "Brak"
2934
+
2935
+ # @ fl-builder
2936
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:241
2937
+ #: modules/slideshow/slideshow.php:394
2938
+ #: modules/testimonials/testimonials.php:103
2939
+ msgid "Fade"
2940
+ msgstr "Przenikanie"
2941
+
2942
+ # @ fl-builder
2943
+ #: includes/row-settings.php:278 modules/slideshow/slideshow.php:395
2944
+ msgid "Ken Burns"
2945
+ msgstr "Ken Burns"
2946
+
2947
+ # @ fl-builder
2948
+ #: includes/row-settings.php:279 modules/slideshow/slideshow.php:396
2949
+ msgid "Slide Horizontal"
2950
+ msgstr "Przesuwanie poziome"
2951
+
2952
+ # @ fl-builder
2953
+ #: includes/row-settings.php:280 modules/slideshow/slideshow.php:397
2954
+ msgid "Slide Vertical"
2955
+ msgstr "Przesuwanie pionowe"
2956
+
2957
+ # @ fl-builder
2958
+ #: includes/row-settings.php:281 modules/slideshow/slideshow.php:398
2959
+ msgid "Blinds"
2960
+ msgstr "Roleta"
2961
+
2962
+ # @ fl-builder
2963
+ #: includes/row-settings.php:282 modules/slideshow/slideshow.php:399
2964
+ msgid "Bars"
2965
+ msgstr "Pasy"
2966
+
2967
+ # @ fl-builder
2968
+ #: includes/row-settings.php:283 modules/slideshow/slideshow.php:400
2969
+ msgid "Random Bars"
2970
+ msgstr "Losowe pasy"
2971
+
2972
+ # @ fl-builder
2973
+ #: includes/row-settings.php:284 modules/slideshow/slideshow.php:401
2974
+ msgid "Boxes"
2975
+ msgstr "Boksy"
2976
+
2977
+ # @ fl-builder
2978
+ #: includes/row-settings.php:285 modules/slideshow/slideshow.php:402
2979
+ msgid "Random Boxes"
2980
+ msgstr "Losowe boksy"
2981
+
2982
+ # @ fl-builder
2983
+ #: includes/row-settings.php:286 modules/slideshow/slideshow.php:403
2984
+ msgid "Boxes Grow"
2985
+ msgstr "Rosnące boksy"
2986
+
2987
+ # @ fl-builder
2988
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:246
2989
+ #: modules/slideshow/slideshow.php:408
2990
+ #: modules/testimonials/testimonials.php:108
2991
+ msgid "Transition Speed"
2992
+ msgstr "Szybkość animacji"
2993
+
2994
+ # @ fl-builder
2995
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:415
2996
+ msgid "Randomize Photos"
2997
+ msgstr "Wyświetlaj zdjęcia losowo"
2998
+
2999
+ # @ fl-builder
3000
+ #: includes/row-settings.php:317
3001
+ msgid "Background Parallax"
3002
+ msgstr "Efekt Parallax"
3003
+
3004
+ # @ fl-builder
3005
+ #: includes/row-settings.php:331
3006
+ msgid "Fast"
3007
+ msgstr "Szybko"
3008
+
3009
+ # @ fl-builder
3010
+ #: includes/row-settings.php:332
3011
+ msgctxt "Speed."
3012
+ msgid "Medium"
3013
+ msgstr "Średnio"
3014
+
3015
+ # @ fl-builder
3016
+ #: includes/row-settings.php:333
3017
+ msgid "Slow"
3018
+ msgstr "Wolno"
3019
+
3020
+ # @ fl-builder
3021
+ #: includes/row-settings.php:342
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:608
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."
3045
+ msgstr ""
3046
+ "Unikalny udentyfikator (ID), który będzie dodany do kodu HTML tego wiersza. "
3047
+ "Musi zaczynać się od litery i zaiwrać tylko myślniki, podkreślniki, liczby i "
3048
+ "litery. Nie używaj spacji."
3049
+
3050
+ # @ fl-builder
3051
+ #: includes/row-settings.php:616
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 "
3055
+ "classes with spaces."
3056
+ msgstr ""
3057
+ "Klasa CSS, która będzie dodana do kodu HTML tego wiersza. Musi zaczynać się "
3058
+ "od litery i zaiwrać tylko myślniki, podkreślniki, liczby i litery. Jeśli "
3059
+ "chcesz wpisać kilka klas, oddziel je spacjami."
3060
+
3061
+ #: includes/service-settings.php:32
3062
+ msgid "Service"
3063
+ msgstr "Usługa"
3064
+
3065
+ # @ fl-builder
3066
+ #: includes/settings.php:62
3067
+ msgid "Save"
3068
+ msgstr "Zapisz"
3069
+
3070
+ # @ fl-builder
3071
+ #: includes/template-selector.php:4
3072
+ msgid "Layout Templates"
3073
+ msgstr "Lista szablonów"
3074
+
3075
+ # @ fl-builder
3076
+ #: includes/template-selector.php:17
3077
+ msgid "Your Templates"
3078
+ msgstr "Twoje szablony"
3079
+
3080
+ # @ fl-builder
3081
+ #: includes/template-selector.php:53
3082
+ msgid ""
3083
+ "You haven't saved any templates yet! To do so, create a layout and save it "
3084
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
3085
+ msgstr ""
3086
+ "Jeszcze nie stworzyłeś żadnego swojego szablonu! Aby to zrobić, stwórz układ "
3087
+ "strony i zapisz go korzystając z menu <strong>Narzędzia &rarr; Zapisz "
3088
+ "szablon</strong>."
3089
+
3090
+ # @ fl-builder
3091
+ #: includes/template-selector.php:58
3092
+ msgctxt "Template name."
3093
+ msgid "Blank"
3094
+ msgstr "Pusty"
3095
+
3096
+ # @ fl-builder
3097
+ #: includes/template-settings.php:14 includes/user-template-settings.php:15
3098
+ msgctxt "Template name."
3099
+ msgid "Name"
3100
+ msgstr "Nazwa"
3101
+
3102
+ #: includes/template-settings.php:18
3103
+ msgid "Image Filename"
3104
+ msgstr "Nazwa pliku obrazu"
3105
+
3106
+ #: includes/template-settings.php:19
3107
+ msgid ""
3108
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
3109
+ "templates/\" directory."
3110
+ msgstr ""
3111
+ "Nazwa pliku np. \"thumb.jpg\" znajdującego się folderze \"img/templtes\"."
3112
+
3113
+ # @ fl-builder
3114
+ #: includes/ui.php:8 includes/ui.php:13
3115
+ #, php-format
3116
+ msgid "Template: %s"
3117
+ msgstr "Szablon: %s"
3118
+
3119
+ # @ fl-builder
3120
+ #: includes/ui.php:21 includes/ui.php:56
3121
+ msgid "Tools"
3122
+ msgstr "Narzędzia"
3123
+
3124
+ # @ fl-builder
3125
+ #: includes/ui.php:34
3126
+ msgid "Page Builder Demo"
3127
+ msgstr "Demo kreatora stron"
3128
+
3129
+ # @ fl-builder
3130
+ #: includes/ui.php:51
3131
+ msgid "Buy Now!"
3132
+ msgstr "Kup teraz!"
3133
+
3134
+ # @ fl-builder
3135
+ #: includes/ui.php:53
3136
+ msgid "Upgrade!"
3137
+ msgstr "Ulepsz!"
3138
+
3139
+ # @ fl-builder
3140
+ #: includes/ui.php:78
3141
+ msgid "Row Layouts"
3142
+ msgstr "Kolumny"
3143
+
3144
+ # @ fl-builder
3145
+ #: includes/ui.php:82
3146
+ msgid "1 Column"
3147
+ msgstr "1 kolumna"
3148
+
3149
+ # @ fl-builder
3150
+ #: includes/ui.php:83
3151
+ msgid "2 Columns"
3152
+ msgstr "2 kolumny"
3153
+
3154
+ # @ fl-builder
3155
+ #: includes/ui.php:84
3156
+ msgid "3 Columns"
3157
+ msgstr "3 kolumny"
3158
+
3159
+ # @ fl-builder
3160
+ #: includes/ui.php:85
3161
+ msgid "4 Columns"
3162
+ msgstr "4 kolumny"
3163
+
3164
+ # @ fl-builder
3165
+ #: includes/ui.php:86
3166
+ msgid "5 Columns"
3167
+ msgstr "5 kolumn"
3168
+
3169
+ # @ fl-builder
3170
+ #: includes/ui.php:87
3171
+ msgid "6 Columns"
3172
+ msgstr "6 kolumn"
3173
+
3174
+ # @ fl-builder
3175
+ #: includes/ui.php:88
3176
+ msgid "Left Sidebar"
3177
+ msgstr "Lewa kolumna boczna"
3178
+
3179
+ # @ fl-builder
3180
+ #: includes/ui.php:89
3181
+ msgid "Right Sidebar"
3182
+ msgstr "Prawa kolumna boczna"
3183
+
3184
+ # @ fl-builder
3185
+ #: includes/ui.php:90
3186
+ msgid "Left &amp; Right Sidebar"
3187
+ msgstr "Lewa i prawa kolumna boczna"
3188
+
3189
+ # @ fl-builder
3190
+ #: includes/updater/classes/class-fl-updater.php:132
3191
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3192
+ msgstr "<strong>Uaktualnienie niedostępne!</strong>"
3193
+
3194
+ # @ fl-builder
3195
+ #: includes/updater/classes/class-fl-updater.php:134
3196
+ msgid "Please subscribe to enable automatic updates for this plugin."
3197
+ msgstr "Zpisz się na automatyczne aktualizacje pluginu."
3198
+
3199
+ # @ fl-builder
3200
+ #: includes/updater/classes/class-fl-updater.php:136
3201
+ #: includes/updater/includes/form.php:6
3202
+ msgid "Subscribe Now"
3203
+ msgstr "Zapisz się teraz"
3204
+
3205
+ # @ fl-builder
3206
+ #: includes/updater/includes/form.php:5
3207
+ msgid ""
3208
+ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
3209
+ "enable automatic updates."
3210
+ msgstr ""
3211
+ "ULEPSZENIE NIEDOSTĘPNE! Zapisz się lub wpisz klucz licencji poniżej aby "
3212
+ "włączyć automtyczne uaktualnienia."
3213
+
3214
+ # @ fl-builder
3215
+ #: includes/updater/includes/form.php:11
3216
+ msgid "Updates &amp; Support Subscription"
3217
+ msgstr "Uaktualnienia i wsparcie techniczne"
3218
+
3219
+ # @ fl-builder
3220
+ #: includes/updater/includes/form.php:14
3221
+ msgid "Active!"
3222
+ msgstr "Aktywne!"
3223
+
3224
+ # @ fl-builder
3225
+ #: includes/updater/includes/form.php:16
3226
+ msgid "Not Active!"
3227
+ msgstr "Nieaktywne!"
3228
+
3229
+ # @ fl-builder
3230
+ #: includes/updater/includes/form.php:22
3231
+ msgid "Email address saved!"
3232
+ msgstr "E-mail został zapisany!"
3233
+
3234
+ # @ fl-builder
3235
+ #: includes/updater/includes/form.php:27
3236
+ #, php-format
3237
+ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
3238
+ msgstr ""
3239
+ "Wpisz swój <a%s>klucz licencji</a> aby włączyć zdalne uaktualnienia i "
3240
+ "wsparcie techniczne."
3241
+
3242
+ #: includes/updater/includes/form.php:39
3243
+ msgid "Save Subscription Settings"
3244
+ msgstr "Zapisz ustawienia subskrybcji"
3245
+
3246
+ # @ fl-builder
3247
+ #: includes/user-template-settings.php:8
3248
+ msgid ""
3249
+ "Save the current layout as a template that can be reused under "
3250
+ "<strong>Templates &rarr; Your Templates</strong>."
3251
+ msgstr ""
3252
+ "Zapisz obecny układ strony jako szablon, który będzie można znaleźć na "
3253
+ "liście <strong>Szablony &rarr; Twoje szablony</strong>."
3254
+
3255
+ # @ fl-builder
3256
+ #: modules/accordion/accordion.php:14
3257
+ msgid "Accordion"
3258
+ msgstr "Harmonijka"
3259
+
3260
+ # @ fl-builder
3261
+ #: modules/accordion/accordion.php:15
3262
+ msgid "Display a collapsible accordion of items."
3263
+ msgstr "Wyświetl rozwijaną harmonijkę"
3264
+
3265
+ # @ fl-builder
3266
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3267
+ msgid "Items"
3268
+ msgstr "Elementy"
3269
+
3270
+ # @ fl-builder
3271
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
3272
+ msgid "Item"
3273
+ msgstr "Element"
3274
+
3275
+ # @ fl-builder
3276
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
3277
+ msgid "Border Color"
3278
+ msgstr "Kolor obramowania"
3279
+
3280
+ # @ fl-builder
3281
+ #: modules/accordion/accordion.php:62
3282
+ msgid "Label Size"
3283
+ msgstr "Rozmiar etykiety"
3284
+
3285
+ # @ fl-builder
3286
+ #: modules/accordion/accordion.php:65
3287
+ msgctxt "Label size."
3288
+ msgid "Small"
3289
+ msgstr "Mały"
3290
+
3291
+ # @ fl-builder
3292
+ #: modules/accordion/accordion.php:66
3293
+ msgctxt "Label size."
3294
+ msgid "Medium"
3295
+ msgstr "Średni"
3296
+
3297
+ # @ fl-builder
3298
+ #: modules/accordion/accordion.php:67
3299
+ msgctxt "Label size."
3300
+ msgid "Large"
3301
+ msgstr "Duży"
3302
+
3303
+ # @ fl-builder
3304
+ #: modules/accordion/accordion.php:75
3305
+ msgid "Item Spacing"
3306
+ msgstr "Odstępy między elementami"
3307
+
3308
+ # @ fl-builder
3309
+ #: modules/accordion/accordion.php:86
3310
+ msgid "Collapse Inactive"
3311
+ msgstr "Zwijanie włączone"
3312
+
3313
+ # @ fl-builder
3314
+ #: modules/accordion/accordion.php:92
3315
+ msgid ""
3316
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
3317
+ "multiple items to be open at the same time."
3318
+ msgstr ""
3319
+ "Wybranie Tak sprawi, że tylko jeden element będzie rozwinięty w danym "
3320
+ "czasie. Wybranie Nie spowoduje, że wiele elementów będzie mogło być "
3321
+ "rozwiniętych jednocześnie."
3322
+
3323
+ # @ fl-builder
3324
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
3325
+ msgid "Add Item"
3326
+ msgstr "Dodaj elemen"
3327
+
3328
+ # @ fl-builder
3329
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
3330
+ msgid "Label"
3331
+ msgstr "Etykieta (nagłówek elementu)"
3332
+
3333
+ # @ fl-builder
3334
+ #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
3335
+ #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:234
3336
+ #: modules/tabs/tabs.php:89
3337
+ msgid "Content"
3338
+ msgstr "Treść"
3339
+
3340
+ # @ fl-builder
3341
+ #: modules/button/button.php:14 modules/callout/callout.php:479
3342
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:214
3343
+ #: modules/pricing-table/pricing-table.php:129
3344
+ #: modules/subscribe-form/subscribe-form.php:160
3345
+ msgid "Button"
3346
+ msgstr "Przycisk"
3347
+
3348
+ # @ fl-builder
3349
+ #: modules/button/button.php:15
3350
+ 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:222
3355
+ msgid "Click Here"
3356
+ msgstr "Kliknij tutaj"
3357
+
3358
+ # @ fl-builder
3359
+ #: modules/button/button.php:75 modules/callout/callout.php:317
3360
+ #: modules/callout/callout.php:365 modules/callout/callout.php:369
3361
+ #: modules/cta/cta.php:230 modules/icon-group/icon-group.php:34
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:81 modules/button/button.php:85
3369
+ #: modules/callout/callout.php:445 modules/callout/callout.php:449
3370
+ #: modules/content-slider/content-slider.php:573
3371
+ #: modules/content-slider/content-slider.php:577
3372
+ #: modules/content-slider/content-slider.php:600 modules/cta/cta.php:240
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:344
3376
+ msgid "Link"
3377
+ msgstr "Link"
3378
+
3379
+ # @ fl-builder
3380
+ #: modules/button/button.php:86
3381
+ msgid "http://www.example.com"
3382
+ msgstr "http://www.przyklad.pl"
3383
+
3384
+ # @ fl-builder
3385
+ #: modules/button/button.php:93 modules/callout/callout.php:457
3386
+ #: modules/content-slider/content-slider.php:582 modules/cta/cta.php:247
3387
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
3388
+ #: modules/photo/photo.php:478
3389
+ msgid "Link Target"
3390
+ msgstr "Gdzie otworzyć link?"
3391
+
3392
+ # @ fl-builder
3393
+ #: modules/button/button.php:96 modules/callout/callout.php:460
3394
+ #: modules/content-slider/content-slider.php:585 modules/cta/cta.php:250
3395
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
3396
+ #: modules/photo/photo.php:481
3397
+ msgid "Same Window"
3398
+ msgstr "W tym samym oknie"
3399
+
3400
+ # @ fl-builder
3401
+ #: modules/button/button.php:97 modules/callout/callout.php:461
3402
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:251
3403
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
3404
+ #: modules/photo/photo.php:482
3405
+ msgid "New Window"
3406
+ msgstr "W nowym oknie"
3407
+
3408
+ # @ fl-builder
3409
+ #: modules/button/button.php:111 modules/cta/cta.php:187
3410
+ #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
3411
+ #: modules/icon/icon.php:78
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:188
3421
+ msgid "Background Hover Color"
3422
+ msgstr "Kolor tła po najechaniu myszką"
3423
+
3424
+ # @ fl-builder
3425
+ #: modules/button/button.php:130 modules/callout/callout.php:523
3426
+ #: modules/content-slider/content-slider.php:528
3427
+ #: modules/content-slider/content-slider.php:641
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:153 modules/callout/callout.php:546
3443
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:302
3444
+ #: modules/subscribe-form/subscribe-form.php:220
3445
+ msgid "Flat"
3446
+ msgstr "Płaski"
3447
+
3448
+ # @ fl-builder
3449
+ #: modules/button/button.php:154 modules/callout/callout.php:417
3450
+ #: modules/callout/callout.php:547
3451
+ #: modules/content-slider/content-slider.php:661 modules/cta/cta.php:303
3452
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3453
+ #: modules/subscribe-form/subscribe-form.php:221
3454
+ msgid "Gradient"
3455
+ msgstr "Gradient"
3456
+
3457
+ # @ fl-builder
3458
+ #: modules/button/button.php:155 modules/callout/callout.php:548
3459
+ #: modules/content-slider/content-slider.php:662 modules/cta/cta.php:304
3460
+ #: modules/subscribe-form/subscribe-form.php:222
3461
+ msgid "Transparent"
3462
+ msgstr "Przezroczysty"
3463
+
3464
+ # @ fl-builder
3465
+ #: modules/button/button.php:165 modules/callout/callout.php:558
3466
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3467
+ #: modules/pricing-table/pricing-table.php:67
3468
+ #: modules/subscribe-form/subscribe-form.php:232
3469
+ msgid "Border Size"
3470
+ msgstr "Rozmiar obramowania"
3471
+
3472
+ # @ fl-builder
3473
+ #: modules/button/button.php:174 modules/callout/callout.php:567
3474
+ #: modules/content-slider/content-slider.php:681 modules/cta/cta.php:203
3475
+ #: modules/cta/cta.php:323 modules/subscribe-form/subscribe-form.php:241
3476
+ msgid "Background Opacity"
3477
+ msgstr "Krycie tła"
3478
+
3479
+ # @ fl-builder
3480
+ #: modules/button/button.php:184 modules/callout/callout.php:244
3481
+ #: modules/cta/cta.php:104 modules/heading/heading.php:82
3482
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3483
+ #: modules/subscribe-form/subscribe-form.php:94
3484
+ msgid "Structure"
3485
+ msgstr "Struktura"
3486
+
3487
+ # @ fl-builder
3488
+ #: modules/button/button.php:191 modules/callout/callout.php:584
3489
+ msgctxt "Width."
3490
+ msgid "Auto"
3491
+ msgstr "Automatyczna"
3492
+
3493
+ # @ fl-builder
3494
+ #: modules/button/button.php:207
3495
+ msgid "Custom Width"
3496
+ msgstr "Domyślna szerokość"
3497
+
3498
+ # @ fl-builder
3499
+ #: modules/button/button.php:215 modules/cta/cta.php:122
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:414 modules/social-buttons/social-buttons.php:97
3503
+ msgid "Alignment"
3504
+ msgstr "Wyrównanie"
3505
+
3506
+ # @ fl-builder
3507
+ #: modules/button/button.php:225 modules/callout/callout.php:590
3508
+ #: modules/content-slider/content-slider.php:695 modules/cta/cta.php:337
3509
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
3510
+ #: modules/subscribe-form/subscribe-form.php:255
3511
+ msgid "Font Size"
3512
+ msgstr "Rozmiar fonta"
3513
+
3514
+ # @ fl-builder
3515
+ #: modules/button/button.php:241 modules/callout/callout.php:606
3516
+ #: modules/cta/cta.php:353 modules/subscribe-form/subscribe-form.php:271
3517
+ msgid "Round Corners"
3518
+ msgstr "Zaokrąglone rogi"
3519
+
3520
+ # @ fl-builder
3521
+ #: modules/callout/callout.php:14
3522
+ msgid "Callout"
3523
+ msgstr "Wyróżnienie"
3524
+
3525
+ # @ fl-builder
3526
+ #: modules/callout/callout.php:15
3527
+ 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:216
3532
+ #: modules/content-slider/content-slider.php:413
3533
+ #: modules/content-slider/content-slider.php:428 modules/cta/cta.php:74
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:248
3542
+ msgid "Overall Alignment"
3543
+ msgstr "Wyrównanie tekstu"
3544
+
3545
+ # @ fl-builder
3546
+ #: modules/callout/callout.php:255
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:263 modules/cta/cta.php:147
3554
+ msgid "Heading Structure"
3555
+ msgstr "Struktura nagłówka"
3556
+
3557
+ # @ fl-builder
3558
+ #: modules/callout/callout.php:267
3559
+ #: modules/content-slider/content-slider.php:432 modules/cta/cta.php:151
3560
+ msgid "Heading Tag"
3561
+ msgstr "Tag nagłówka"
3562
+
3563
+ # @ fl-builder
3564
+ #: modules/callout/callout.php:280
3565
+ #: modules/content-slider/content-slider.php:445
3566
+ #: modules/content-slider/content-slider.php:459 modules/cta/cta.php:164
3567
+ #: modules/testimonials/testimonials.php:69
3568
+ msgid "Heading Size"
3569
+ msgstr "Rozmiar nagłówka"
3570
+
3571
+ # @ fl-builder
3572
+ #: modules/callout/callout.php:294 modules/cta/cta.php:178
3573
+ msgid "Heading Custom Size"
3574
+ msgstr "Wpisz rozmiar nagłówka"
3575
+
3576
+ # @ fl-builder
3577
+ #: modules/callout/callout.php:312
3578
+ msgid "Image Type"
3579
+ msgstr "Rodzaj obrazka"
3580
+
3581
+ # @ fl-builder
3582
+ #: modules/callout/callout.php:315
3583
+ msgctxt "Image type."
3584
+ msgid "None"
3585
+ msgstr "Brak"
3586
+
3587
+ # @ fl-builder
3588
+ #: modules/callout/callout.php:340 modules/photo/photo.php:401
3589
+ #: modules/slideshow/slideshow.php:313
3590
+ msgid "Crop"
3591
+ msgstr "Kadruj"
3592
+
3593
+ # @ fl-builder
3594
+ #: modules/callout/callout.php:343
3595
+ msgctxt "Crop"
3596
+ msgid "None"
3597
+ msgstr "Brak"
3598
+
3599
+ # @ fl-builder
3600
+ #: modules/callout/callout.php:344 modules/photo/photo.php:405
3601
+ msgid "Landscape"
3602
+ msgstr "Krajobraz"
3603
+
3604
+ # @ fl-builder
3605
+ #: modules/callout/callout.php:345 modules/photo/photo.php:406
3606
+ msgid "Panorama"
3607
+ msgstr "Panorama"
3608
+
3609
+ # @ fl-builder
3610
+ #: modules/callout/callout.php:346 modules/photo/photo.php:407
3611
+ msgid "Portrait"
3612
+ msgstr "Portret"
3613
+
3614
+ # @ fl-builder
3615
+ #: modules/callout/callout.php:347 modules/photo/photo.php:408
3616
+ msgid "Square"
3617
+ msgstr "Kwadrat"
3618
+
3619
+ # @ fl-builder
3620
+ #: modules/callout/callout.php:348 modules/photo/photo.php:409
3621
+ msgid "Circle"
3622
+ msgstr "Okrąg"
3623
+
3624
+ # @ fl-builder
3625
+ #: modules/callout/callout.php:356 modules/callout/callout.php:376
3626
+ msgid "Above Heading"
3627
+ msgstr "Powyżej nagłówka"
3628
+
3629
+ # @ fl-builder
3630
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3631
+ msgid "Below Heading"
3632
+ msgstr "Poniżej nagłówka"
3633
+
3634
+ # @ fl-builder
3635
+ #: modules/callout/callout.php:358 modules/callout/callout.php:380
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:359 modules/callout/callout.php:381
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:378
3646
+ msgid "Left of Heading"
3647
+ msgstr "Po lewej stronie nagłówka"
3648
+
3649
+ # @ fl-builder
3650
+ #: modules/callout/callout.php:379
3651
+ msgid "Right of Heading"
3652
+ msgstr "Po proawej stronie nagłówka"
3653
+
3654
+ # @ fl-builder
3655
+ #: modules/callout/callout.php:387
3656
+ msgid "Icon Colors"
3657
+ msgstr "Kolory ikon"
3658
+
3659
+ # @ fl-builder
3660
+ #: modules/callout/callout.php:396 modules/icon-group/icon-group.php:56
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:427
3667
+ msgid "Icon Structure"
3668
+ msgstr "Struktura ikon"
3669
+
3670
+ # @ fl-builder
3671
+ #: modules/callout/callout.php:431 modules/icon-group/icon-group.php:91
3672
+ #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
3673
+ msgid "Size"
3674
+ msgstr "Rozmiar"
3675
+
3676
+ # @ fl-builder
3677
+ #: modules/callout/callout.php:442
3678
+ #: modules/content-slider/content-slider.php:570
3679
+ msgid "Call To Action"
3680
+ msgstr "Wezwanie Do Akcji"
3681
+
3682
+ # @ fl-builder
3683
+ #: modules/callout/callout.php:450
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."
3687
+ msgstr ""
3688
+ "Ten link będzie przypisany do całego modułu. Jeśli wybierzesz typ Wezwanie "
3689
+ "do akcji, ten link będzie również użyty do tekstu lub przycisku."
3690
+
3691
+ # @ fl-builder
3692
+ #: modules/callout/callout.php:470
3693
+ #: modules/content-slider/content-slider.php:592 modules/cta/cta.php:14
3694
+ msgid "Call to Action"
3695
+ msgstr "Wezwanie do akcji"
3696
+
3697
+ # @ fl-builder
3698
+ #: modules/callout/callout.php:477
3699
+ #: modules/content-slider/content-slider.php:599
3700
+ msgctxt "Call to action."
3701
+ msgid "None"
3702
+ msgstr "Brak"
3703
+
3704
+ # @ fl-builder
3705
+ #: modules/callout/callout.php:498
3706
+ #: modules/content-slider/content-slider.php:620
3707
+ #: modules/subscribe-form/subscribe-form.php:172
3708
+ msgid "Button Icon"
3709
+ msgstr "Ikona przycisku"
3710
+
3711
+ # @ fl-builder
3712
+ #: modules/callout/callout.php:504
3713
+ #: modules/content-slider/content-slider.php:626 modules/cta/cta.php:260
3714
+ #: modules/subscribe-form/subscribe-form.php:178
3715
+ msgid "Button Colors"
3716
+ msgstr "Kolory przycisku"
3717
+
3718
+ # @ fl-builder
3719
+ #: modules/callout/callout.php:539
3720
+ #: modules/content-slider/content-slider.php:653 modules/cta/cta.php:295
3721
+ #: modules/subscribe-form/subscribe-form.php:213
3722
+ msgid "Button Style"
3723
+ msgstr "Styl przycisku"
3724
+
3725
+ # @ fl-builder
3726
+ #: modules/callout/callout.php:577
3727
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:333
3728
+ #: modules/subscribe-form/subscribe-form.php:251
3729
+ msgid "Button Structure"
3730
+ msgstr "Struktura przycisku"
3731
+
3732
+ # @ fl-builder
3733
+ #: modules/callout/callout.php:581
3734
+ msgid "Button Width"
3735
+ msgstr "Szerokość przycisku"
3736
+
3737
+ # @ fl-builder
3738
+ #: modules/contact-form/contact-form.php:14
3739
+ msgid "Contact Form"
3740
+ msgstr "Formularz kontaktowy"
3741
+
3742
+ # @ fl-builder
3743
+ #: modules/contact-form/contact-form.php:15
3744
+ msgid "A very simple contact form."
3745
+ msgstr "Prosty formularz kontaktowy"
3746
+
3747
+ # @ fl-builder
3748
+ #: modules/contact-form/contact-form.php:31
3749
+ msgid "Contact Form Submission"
3750
+ msgstr "Zapis "
3751
+
3752
+ #: modules/contact-form/contact-form.php:41
3753
+ msgid "Message"
3754
+ msgstr "Treść wiadomości"
3755
+
3756
+ # @ fl-builder
3757
+ #: modules/contact-form/contact-form.php:65
3758
+ msgid "Send To Email"
3759
+ msgstr "Wysyłaj e-maile na adres"
3760
+
3761
+ # @ fl-builder
3762
+ #: modules/contact-form/contact-form.php:67
3763
+ msgid "example@mail.com"
3764
+ msgstr "jakis@przyklad.pl"
3765
+
3766
+ # @ fl-builder
3767
+ #: modules/contact-form/contact-form.php:68
3768
+ msgid "The contact form will send to this e-mail"
3769
+ 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:107
3774
+ msgid "Name Field"
3775
+ msgstr "Pole na imię"
3776
+
3777
+ # @ fl-builder
3778
+ #: modules/contact-form/contact-form.php:78
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-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
3783
+ #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
3784
+ #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:220
3785
+ #: modules/subscribe-form/subscribe-form.php:110
3786
+ msgid "Show"
3787
+ msgstr "Pokaż"
3788
+
3789
+ # @ fl-builder
3790
+ #: modules/contact-form/contact-form.php:79
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-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
3795
+ #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
3796
+ #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:221
3797
+ #: modules/subscribe-form/subscribe-form.php:111
3798
+ msgid "Hide"
3799
+ msgstr "Nie pokazuj"
3800
+
3801
+ #: modules/contact-form/contact-form.php:84
3802
+ msgid "Subject Field"
3803
+ msgstr "Pole na temat"
3804
+
3805
+ #: modules/contact-form/contact-form.php:93
3806
+ msgid "Email Field"
3807
+ msgstr "Pole na e-mail"
3808
+
3809
+ #: modules/contact-form/contact-form.php:102
3810
+ msgid "Phone Field"
3811
+ msgstr "Pole na numer telefonu"
3812
+
3813
+ # @ fl-builder
3814
+ #: modules/contact-form/includes/frontend.php:5
3815
+ msgctxt "Contact form field label."
3816
+ msgid "Name"
3817
+ msgstr "Imię"
3818
+
3819
+ # @ fl-builder
3820
+ #: modules/contact-form/includes/frontend.php:6
3821
+ #: modules/subscribe-form/includes/frontend.php:6
3822
+ msgid "Please enter your name."
3823
+ msgstr "Proszę wpisać imię."
3824
+
3825
+ #: modules/contact-form/includes/frontend.php:7
3826
+ msgid "Your name"
3827
+ msgstr "Twoje imię"
3828
+
3829
+ #: modules/contact-form/includes/frontend.php:13
3830
+ #: modules/contact-form/includes/frontend.php:15
3831
+ msgid "Subject"
3832
+ msgstr "Temat"
3833
+
3834
+ #: modules/contact-form/includes/frontend.php:14
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."
3846
+ msgstr "Proszę wpisać poprawny e-mail."
3847
+
3848
+ #: modules/contact-form/includes/frontend.php:23
3849
+ msgid "Your email"
3850
+ msgstr "Twój e-mail"
3851
+
3852
+ #: modules/contact-form/includes/frontend.php:29
3853
+ msgid "Phone"
3854
+ msgstr "Numer telefonu"
3855
+
3856
+ #: modules/contact-form/includes/frontend.php:30
3857
+ msgid "Please enter a valid phone number."
3858
+ msgstr "Proszę wpisać poprawny numer telefonu."
3859
+
3860
+ #: modules/contact-form/includes/frontend.php:31
3861
+ msgid "Your phone"
3862
+ msgstr "Twój numer telefonu"
3863
+
3864
+ # @ fl-builder
3865
+ #: modules/contact-form/includes/frontend.php:36
3866
+ msgid "Your Message"
3867
+ msgstr "Treść wiadomości"
3868
+
3869
+ # @ fl-builder
3870
+ #: modules/contact-form/includes/frontend.php:37
3871
+ msgid "Please enter a message."
3872
+ msgstr "Proszę wpisać treść wiadomości."
3873
+
3874
+ #: modules/contact-form/includes/frontend.php:38
3875
+ msgid "Your message"
3876
+ msgstr "Treść wiadomości"
3877
+
3878
+ #: modules/contact-form/includes/frontend.php:43
3879
+ msgid "Send"
3880
+ msgstr "Wyślij wiadomość"
3881
+
3882
+ # @ fl-builder
3883
+ #: modules/contact-form/includes/frontend.php:44
3884
+ msgid "Message Sent!"
3885
+ msgstr "Wiadomość została wysłana."
3886
+
3887
+ # @ fl-builder
3888
+ #: modules/contact-form/includes/frontend.php:45
3889
+ msgid "Message failed. Please try again."
3890
+ msgstr "Wiadomość nie została wysłana. Proszę spróbować jeszcze raz."
3891
+
3892
+ # @ fl-builder
3893
+ #: modules/content-slider/content-slider.php:14
3894
+ msgid "Content Slider"
3895
+ msgstr "Slider (rotator) Treści"
3896
+
3897
+ # @ fl-builder
3898
+ #: modules/content-slider/content-slider.php:15
3899
+ 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:197 modules/map/map.php:41
3904
+ #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:295
3905
+ msgid "Height"
3906
+ msgstr "Wysokość"
3907
+
3908
+ # @ fl-builder
3909
+ #: modules/content-slider/content-slider.php:202
3910
+ msgid ""
3911
+ "This setting is the minimum height of the content slider. Content will "
3912
+ "expand the height automatically."
3913
+ msgstr ""
3914
+ "Ustaw minimalną wysokość slidera treści. Wysokość będzie automatycznie "
3915
+ "dopasowywana przez treść w sliderze."
3916
+
3917
+ # @ fl-builder
3918
+ #: modules/content-slider/content-slider.php:206
3919
+ #: modules/slideshow/slideshow.php:374 modules/testimonials/testimonials.php:82
3920
+ #: modules/video/video.php:108
3921
+ msgid "Auto Play"
3922
+ msgstr "Autoodtwarzanie"
3923
+
3924
+ # @ fl-builder
3925
+ #: modules/content-slider/content-slider.php:220
3926
+ msgid "Show Play/Pause"
3927
+ msgstr "Pokaż Start/Stop"
3928
+
3929
+ # @ fl-builder
3930
+ #: modules/content-slider/content-slider.php:240
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:254
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:263
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:277
3950
+ msgid "Max Content Width"
3951
+ msgstr "Maksymalna szerokość treści"
3952
+
3953
+ # @ fl-builder
3954
+ #: modules/content-slider/content-slider.php:282
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:289
3960
+ msgid "Slides"
3961
+ msgstr "Slajdy"
3962
+
3963
+ # @ fl-builder
3964
+ #: modules/content-slider/content-slider.php:296
3965
+ msgid "Slide"
3966
+ msgstr "Slajd"
3967
+
3968
+ # @ fl-builder
3969
+ #: modules/content-slider/content-slider.php:311
3970
+ msgid "Slide Settings"
3971
+ msgstr "Ustawienia slajdu"
3972
+
3973
+ # @ fl-builder
3974
+ #: modules/content-slider/content-slider.php:321
3975
+ msgid "Slide Label"
3976
+ msgstr "Nazwa slajdu"
3977
+
3978
+ # @ fl-builder
3979
+ #: modules/content-slider/content-slider.php:322
3980
+ msgid ""
3981
+ "A label to identify this slide on the Slides tab of the Content Slider "
3982
+ "settings."
3983
+ msgstr ""
3984
+ "Nazwa slajdu pozoli Ci zidentyfikować go na karcie Slajdy w ustawieniach."
3985
+
3986
+ # @ fl-builder
3987
+ #: modules/content-slider/content-slider.php:327
3988
+ msgid "Background Layout"
3989
+ msgstr "Układ tła"
3990
+
3991
+ # @ fl-builder
3992
+ #: modules/content-slider/content-slider.php:333
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:368
3998
+ msgid "Background Video Code"
3999
+ msgstr "Kod wideo w tle"
4000
+
4001
+ # @ fl-builder
4002
+ #: modules/content-slider/content-slider.php:374
4003
+ msgid "Content Layout"
4004
+ msgstr "Układ treści"
4005
+
4006
+ # @ fl-builder
4007
+ #: modules/content-slider/content-slider.php:380
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 "
4011
+ "style tab."
4012
+ msgstr ""
4013
+ "Umożłiwia dodanie treści nad lub po tle. Umiejscowienie treści możesz wybrać "
4014
+ "w zakłądce Styl."
4015
+
4016
+ # @ fl-builder
4017
+ #: modules/content-slider/content-slider.php:383
4018
+ msgid "Text &amp; Photo"
4019
+ msgstr "Tekst &amp; Zdjęcie"
4020
+
4021
+ # @ fl-builder
4022
+ #: modules/content-slider/content-slider.php:384
4023
+ msgid "Text &amp; Video"
4024
+ msgstr "Tekst &amp; Wideo"
4025
+
4026
+ # @ fl-builder
4027
+ #: modules/content-slider/content-slider.php:385
4028
+ msgctxt "Content type."
4029
+ msgid "None"
4030
+ msgstr "Brak"
4031
+
4032
+ # @ fl-builder
4033
+ #: modules/content-slider/content-slider.php:408 modules/video/video.php:132
4034
+ msgid "Video Embed Code"
4035
+ msgstr "Kod osadzenia wideo"
4036
+
4037
+ # @ fl-builder
4038
+ #: modules/content-slider/content-slider.php:468
4039
+ msgid "Text Position"
4040
+ msgstr "Pozycja tekstu"
4041
+
4042
+ # @ fl-builder
4043
+ #: modules/content-slider/content-slider.php:474
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:491
4051
+ msgid "Top Margin"
4052
+ msgstr "Górny mrgines"
4053
+
4054
+ # @ fl-builder
4055
+ #: modules/content-slider/content-slider.php:499
4056
+ msgid "Bottom Margin"
4057
+ msgstr "Dolny margines"
4058
+
4059
+ # @ fl-builder
4060
+ #: modules/content-slider/content-slider.php:507
4061
+ msgid "Left Margin"
4062
+ msgstr "Lewy margines"
4063
+
4064
+ # @ fl-builder
4065
+ #: modules/content-slider/content-slider.php:515
4066
+ msgid "Right Margin"
4067
+ msgstr "Prawy margines"
4068
+
4069
+ # @ fl-builder
4070
+ #: modules/content-slider/content-slider.php:524
4071
+ msgid "Text Colors"
4072
+ msgstr "Kolory tekstu"
4073
+
4074
+ # @ fl-builder
4075
+ #: modules/content-slider/content-slider.php:534
4076
+ msgid "Text Shadow"
4077
+ msgstr "Cień teksti"
4078
+
4079
+ # @ fl-builder
4080
+ #: modules/content-slider/content-slider.php:543
4081
+ #: modules/content-slider/content-slider.php:760
4082
+ msgid "Text Background Color"
4083
+ msgstr "Kolor tła pod tekstem"
4084
+
4085
+ # @ fl-builder
4086
+ #: modules/content-slider/content-slider.php:544
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:549
4093
+ msgid "Text Background Opacity"
4094
+ msgstr "Krycie koloru pod tekstem"
4095
+
4096
+ # @ fl-builder
4097
+ #: modules/content-slider/content-slider.php:557
4098
+ msgid "Text Background Height"
4099
+ msgstr "Wysokość tła pod tekstem"
4100
+
4101
+ # @ fl-builder
4102
+ #: modules/content-slider/content-slider.php:559
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."
4106
+ msgstr ""
4107
+ "Auto spowoduje, że tło dopasuje się do długości treści. 100% dopasuje tło "
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:561
4112
+ msgctxt "Background height."
4113
+ msgid "Auto"
4114
+ msgstr "Automatyczna"
4115
+
4116
+ # @ fl-builder
4117
+ #: modules/content-slider/content-slider.php:578
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."
4121
+ msgstr ""
4122
+ "Link pojawi się na całym slajdzie. Jeśli umieściesz wezwanie do akcji, link "
4123
+ "będzie też podłaczony do tekstu i przycisku."
4124
+
4125
+ # @ fl-builder
4126
+ #: modules/content-slider/content-slider.php:711
4127
+ msgid "Border Radius"
4128
+ msgstr "Promień obramowania"
4129
+
4130
+ # @ fl-builder
4131
+ #: modules/content-slider/content-slider.php:722
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:725
4138
+ msgid "Mobile Photo"
4139
+ msgstr "Zdjęcie na urządzeniach mobilnych"
4140
+
4141
+ # @ fl-builder
4142
+ #: modules/content-slider/content-slider.php:731
4143
+ msgid ""
4144
+ "You can choose a different photo that the slide will change to on mobile "
4145
+ "devices or no photo if desired."
4146
+ msgstr ""
4147
+ "Możesz wybrać inne zdjęcie lub brak zdjęciaw slajdzie na urządzeniach "
4148
+ "mobilnych."
4149
+
4150
+ # @ fl-builder
4151
+ #: modules/content-slider/content-slider.php:733
4152
+ msgid "Use Main Photo"
4153
+ msgstr "Uzyj głównego zdjęcia"
4154
+
4155
+ # @ fl-builder
4156
+ #: modules/content-slider/content-slider.php:734
4157
+ msgid "Choose Another Photo"
4158
+ msgstr "Wybierz inne zdjęcie"
4159
+
4160
+ # @ fl-builder
4161
+ #: modules/content-slider/content-slider.php:735
4162
+ msgid "No Photo"
4163
+ msgstr "Brak zdjęcia"
4164
+
4165
+ # @ fl-builder
4166
+ #: modules/content-slider/content-slider.php:750
4167
+ msgid "Mobile Text Colors"
4168
+ msgstr "Kolory tekstu na urządzeniach mobilnych"
4169
+
4170
+ # @ fl-builder
4171
+ #: modules/cta/cta.php:15
4172
+ 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:75
4177
+ msgid "Ready to find out more?"
4178
+ msgstr "Gotowy dowiedzieć się więcej?"
4179
+
4180
+ # @ fl-builder
4181
+ #: modules/cta/cta.php:90
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:108 modules/gallery/gallery.php:220
4187
+ #: modules/post-grid/post-grid.php:44
4188
+ #: modules/subscribe-form/subscribe-form.php:98 modules/tabs/tabs.php:52
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:111 modules/subscribe-form/subscribe-form.php:102
4196
+ msgid "Inline"
4197
+ msgstr "W linii"
4198
+
4199
+ # @ fl-builder
4200
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:101
4201
+ msgid "Stacked"
4202
+ msgstr "Przycisk pod tekstem"
4203
+
4204
+ # @ fl-builder
4205
+ #: modules/cta/cta.php:132 modules/icon-group/icon-group.php:99
4206
+ msgid "Spacing"
4207
+ msgstr "Odstępy"
4208
+
4209
+ # @ fl-builder
4210
+ #: modules/cta/cta.php:236
4211
+ msgid "Button Link"
4212
+ msgstr "Link przycisku"
4213
+
4214
+ # @ fl-builder
4215
+ #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
4216
+ msgid "Gallery"
4217
+ msgstr "Galeria"
4218
+
4219
+ # @ fl-builder
4220
+ #: modules/gallery/gallery.php:15
4221
+ 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:223
4226
+ msgid "Collage"
4227
+ msgstr "Kolaż"
4228
+
4229
+ # @ fl-builder
4230
+ #: modules/gallery/gallery.php:224
4231
+ msgctxt "Gallery layout: thumbnails."
4232
+ msgid "Thumbs"
4233
+ msgstr "Miniatury"
4234
+
4235
+ # @ fl-builder
4236
+ #: modules/gallery/gallery.php:260
4237
+ msgid "Photo Size"
4238
+ msgstr "Rozmiar zdjęcia"
4239
+
4240
+ # @ fl-builder
4241
+ #: modules/gallery/gallery.php:263
4242
+ msgctxt "Photo size."
4243
+ msgid "Small"
4244
+ msgstr "Małe"
4245
+
4246
+ # @ fl-builder
4247
+ #: modules/gallery/gallery.php:264
4248
+ msgctxt "Photo size."
4249
+ msgid "Medium"
4250
+ msgstr "Średnie"
4251
+
4252
+ # @ fl-builder
4253
+ #: modules/gallery/gallery.php:265
4254
+ msgctxt "Photo size."
4255
+ msgid "Large"
4256
+ msgstr "Duże"
4257
+
4258
+ # @ fl-builder
4259
+ #: modules/gallery/gallery.php:270
4260
+ msgid "Photo Spacing"
4261
+ msgstr "Odstępy"
4262
+
4263
+ # @ fl-builder
4264
+ #: modules/gallery/gallery.php:278
4265
+ msgid "Show Captions"
4266
+ msgstr "Pokazuj etykiety"
4267
+
4268
+ # @ fl-builder
4269
+ #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
4270
+ msgid "Never"
4271
+ msgstr "Nigdy"
4272
+
4273
+ # @ fl-builder
4274
+ #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
4275
+ msgid "On Hover"
4276
+ msgstr "Po najehcniu myszką"
4277
+
4278
+ # @ fl-builder
4279
+ #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
4280
+ msgid "Below Photo"
4281
+ msgstr "Poniżej zdjęcia"
4282
+
4283
+ # @ fl-builder
4284
+ #: modules/gallery/gallery.php:285
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 "
4288
+ "SmugMug if you have captions set in your gallery."
4289
+ msgstr ""
4290
+ "Etykieta będzie pobrana z pola Etykieta, które znajdziesz w bibliotece "
4291
+ "mediów. Etykieta jest również pobierana bezpośrednio z serwisu SmugMug jeśli "
4292
+ "w swojej glerii masz wpisane etykiety."
4293
+
4294
+ # @ fl-builder
4295
+ #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:336
4296
+ msgid "Click Action"
4297
+ msgstr "Akcja po kliknięciu"
4298
+
4299
+ # @ fl-builder
4300
+ #: modules/gallery/gallery.php:292
4301
+ msgctxt "Click action."
4302
+ msgid "None"
4303
+ msgstr "Brak"
4304
+
4305
+ # @ fl-builder
4306
+ #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
4307
+ msgid "Lightbox"
4308
+ msgstr "Lightbox"
4309
+
4310
+ # @ fl-builder
4311
+ #: modules/gallery/gallery.php:294
4312
+ msgid "Photo Link"
4313
+ msgstr "Link zdjęcia"
4314
+
4315
+ # @ fl-builder
4316
+ #: modules/heading/heading.php:15
4317
+ msgid "Display a title/page heading."
4318
+ msgstr "Wyświetl tytuł/nagłówek strony."
4319
+
4320
+ # @ fl-builder
4321
+ #: modules/heading/heading.php:101
4322
+ msgid "HTML Tag"
4323
+ msgstr "Tag HTML"
4324
+
4325
+ # @ fl-builder
4326
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
4327
+ msgid "Custom Font Size"
4328
+ msgstr "Wpisz rozmiar fonta"
4329
+
4330
+ # @ fl-builder
4331
+ #: modules/heading/heading.php:137
4332
+ msgid "Mobile Structure"
4333
+ msgstr "Struktura na urządzeniach mobilnych"
4334
+
4335
+ # @ fl-builder
4336
+ #: modules/heading/heading.php:158
4337
+ msgid "Custom Alignment"
4338
+ msgstr "Niestandardowe wyrównanie"
4339
+
4340
+ # @ fl-builder
4341
+ #: modules/html/html.php:14
4342
+ msgid "HTML"
4343
+ msgstr "HTML"
4344
+
4345
+ # @ fl-builder
4346
+ #: modules/html/html.php:15
4347
+ msgid "Display raw HTML code."
4348
+ msgstr "Moduł do wyświetlania czystego kodu HTML."
4349
+
4350
+ # @ fl-builder
4351
+ #: modules/icon-group/icon-group.php:14
4352
+ msgid "Icon Group"
4353
+ msgstr "Grupa ikon"
4354
+
4355
+ # @ fl-builder
4356
+ #: modules/icon-group/icon-group.php:15
4357
+ msgid "Display a group of linked Font Awesome icons."
4358
+ msgstr "Wyświetl grupę podlinkowanych ikon z palety Font Awesome."
4359
+
4360
+ # @ fl-builder
4361
+ #: modules/icon-group/icon-group.php:125
4362
+ msgid "Add Icon"
4363
+ msgstr "Dodaj ikonę"
4364
+
4365
+ # @ fl-builder
4366
+ #: modules/icon/icon.php:15
4367
+ msgid "Display an icon and optional title."
4368
+ msgstr "Wyświetla ikonę i, opcjonalnie, tytuł."
4369
+
4370
+ # @ fl-builder
4371
+ #: modules/map/map.php:14
4372
+ msgid "Map"
4373
+ msgstr "Mapa"
4374
+
4375
+ # @ fl-builder
4376
+ #: modules/map/map.php:15
4377
+ msgid "Display a Google map."
4378
+ msgstr "Wyświetla mapę Google"
4379
+
4380
+ # @ fl-builder
4381
+ #: modules/map/map.php:33
4382
+ msgid "Address"
4383
+ msgstr "Adres"
4384
+
4385
+ # @ fl-builder
4386
+ #: modules/map/map.php:34
4387
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4388
+ msgstr "Mirowska 54, Częstochowa"
4389
+
4390
+ # @ fl-builder
4391
+ #: modules/photo/photo.php:26
4392
+ 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:375
4397
+ msgid "Photo Source"
4398
+ msgstr "Źródło zdjęcia"
4399
+
4400
+ # @ fl-builder
4401
+ #: modules/photo/photo.php:379 modules/photo/photo.php:451
4402
+ msgid "URL"
4403
+ msgstr "URL"
4404
+
4405
+ # @ fl-builder
4406
+ #: modules/photo/photo.php:396
4407
+ msgid "Photo URL"
4408
+ msgstr "URL zdjęcia"
4409
+
4410
+ # @ fl-builder
4411
+ #: modules/photo/photo.php:397
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:404
4417
+ msgctxt "Crop."
4418
+ msgid "None"
4419
+ msgstr "Brak"
4420
+
4421
+ # @ fl-builder
4422
+ #: modules/photo/photo.php:425 modules/photo/photo.php:439
4423
+ msgid "Caption"
4424
+ msgstr "Etykieta"
4425
+
4426
+ # @ fl-builder
4427
+ #: modules/photo/photo.php:429
4428
+ msgid "Show Caption"
4429
+ msgstr "Pokaż etykietę"
4430
+
4431
+ # @ fl-builder
4432
+ #: modules/photo/photo.php:448
4433
+ msgid "Link Type"
4434
+ msgstr "Rozdaj linka"
4435
+
4436
+ # @ fl-builder
4437
+ #: modules/photo/photo.php:450
4438
+ msgctxt "Link type."
4439
+ msgid "None"
4440
+ msgstr "Brak"
4441
+
4442
+ # @ fl-builder
4443
+ #: modules/photo/photo.php:453
4444
+ msgid "Photo File"
4445
+ msgstr "Plik zdjęcia"
4446
+
4447
+ # @ fl-builder
4448
+ #: modules/photo/photo.php:464
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."
4452
+ msgstr ""
4453
+ "Typ linka określ, jak będzie podlinkowany obraz. Możesz wybrać między "
4454
+ "podlinkowaniem konkretnego adresu URL, pojedynczego zdjęcia lub osobnej "
4455
+ "strony ze zdjęciem."
4456
+
4457
+ # @ fl-builder
4458
+ #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:357
4459
+ msgid "Link URL"
4460
+ msgstr "URL linka"
4461
+
4462
+ # @ fl-builder
4463
+ #: modules/post-grid/includes/frontend.php:41
4464
+ msgid "No posts found."
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."
4483
+ msgstr "Wyświetl wordpressowe posty."
4484
+
4485
+ # @ fl-builder
4486
+ #: modules/post-grid/post-grid.php:51
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:71
4502
+ msgid "Pagination Style"
4503
+ msgstr "Styl paginacji"
4504
+
4505
+ # @ fl-builder
4506
+ #: modules/post-grid/post-grid.php:74
4507
+ msgid "Numbers"
4508
+ msgstr "Liczby"
4509
+
4510
+ # @ fl-builder
4511
+ #: modules/post-grid/post-grid.php:76
4512
+ msgctxt "Pagination style."
4513
+ msgid "None"
4514
+ msgstr "Brak"
4515
+
4516
+ # @ fl-builder
4517
+ #: modules/post-grid/post-grid.php:81
4518
+ msgid "Posts Per Page"
4519
+ msgstr "Ilość postów na stronie"
4520
+
4521
+ # @ fl-builder
4522
+ #: modules/post-grid/post-grid.php:92
4523
+ msgid "Post Width"
4524
+ msgstr "Szerokość postów"
4525
+
4526
+ # @ fl-builder
4527
+ #: modules/post-grid/post-grid.php:100
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:142
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:208
4562
+ msgid "Content Type"
4563
+ msgstr "Typ treści"
4564
+
4565
+ #: modules/post-grid/post-grid.php:211
4566
+ msgid "Excerpt"
4567
+ msgstr "Wypis (fragment wpisu)"
4568
+
4569
+ #: modules/post-grid/post-grid.php:212
4570
+ msgid "Full Text"
4571
+ msgstr "Pełna treść wpisu"
4572
+
4573
+ # @ fl-builder
4574
+ #: modules/post-grid/post-grid.php:217
4575
+ msgid "More Link"
4576
+ msgstr "Czytaj więcej"
4577
+
4578
+ # @ fl-builder
4579
+ #: modules/post-grid/post-grid.php:226
4580
+ msgid "More Link Text"
4581
+ msgstr "Tekst linka Czytaj więcej"
4582
+
4583
+ # @ fl-builder
4584
+ #: modules/post-grid/post-grid.php:227
4585
+ msgid "Read More"
4586
+ msgstr "Czytaj więcej"
4587
+
4588
+ # @ fl-builder
4589
+ #: modules/pricing-table/pricing-table.php:14
4590
+ msgid "Pricing Table"
4591
+ msgstr "Tabela z cenami"
4592
+
4593
+ # @ fl-builder
4594
+ #: modules/pricing-table/pricing-table.php:15
4595
+ msgid "A simple pricing table generator."
4596
+ msgstr "Generator tabeli z cenami"
4597
+
4598
+ # @ fl-builder
4599
+ #: modules/pricing-table/pricing-table.php:26
4600
+ msgid "Pricing Boxes"
4601
+ msgstr "Boksy"
4602
+
4603
+ # @ fl-builder
4604
+ #: modules/pricing-table/pricing-table.php:33
4605
+ msgid "Pricing Box"
4606
+ msgstr "Boks"
4607
+
4608
+ # @ fl-builder
4609
+ #: modules/pricing-table/pricing-table.php:50
4610
+ msgid "Box Spacing"
4611
+ msgstr "Odstępy boksa"
4612
+
4613
+ # @ fl-builder
4614
+ #: modules/pricing-table/pricing-table.php:53
4615
+ #: modules/testimonials/testimonials.php:40
4616
+ msgid "Wide"
4617
+ msgstr "Szerokie"
4618
+
4619
+ # @ fl-builder
4620
+ #: modules/pricing-table/pricing-table.php:54
4621
+ msgid "Tight"
4622
+ msgstr "Ciasne"
4623
+
4624
+ # @ fl-builder
4625
+ #: modules/pricing-table/pricing-table.php:59
4626
+ msgid "Features Min Height"
4627
+ msgstr "Minimalna wysokość"
4628
+
4629
+ # @ fl-builder
4630
+ #: modules/pricing-table/pricing-table.php:63
4631
+ msgid ""
4632
+ "Use this to normalize the height of your boxes when they have different "
4633
+ "numbers of features."
4634
+ msgstr ""
4635
+ "Użyj tego pola do określenia minimalnej wysokości boksa, gdy mają różną "
4636
+ "ilość cech/funkcjonalności."
4637
+
4638
+ # @ fl-builder
4639
+ #: modules/pricing-table/pricing-table.php:70
4640
+ msgctxt "Border size."
4641
+ msgid "Wide"
4642
+ msgstr "Szeroki"
4643
+
4644
+ # @ fl-builder
4645
+ #: modules/pricing-table/pricing-table.php:71
4646
+ msgctxt "Border size."
4647
+ msgid "Tight"
4648
+ msgstr "Wąski"
4649
+
4650
+ # @ fl-builder
4651
+ #: modules/pricing-table/pricing-table.php:84
4652
+ msgid "Add Pricing Box"
4653
+ msgstr "Dodaj boks"
4654
+
4655
+ # @ fl-builder
4656
+ #: modules/pricing-table/pricing-table.php:98
4657
+ msgid "Title Size"
4658
+ msgstr "Rozmiar tytułu"
4659
+
4660
+ # @ fl-builder
4661
+ #: modules/pricing-table/pricing-table.php:107
4662
+ msgid "Price Box"
4663
+ msgstr "Boks cenowy"
4664
+
4665
+ # @ fl-builder
4666
+ #: modules/pricing-table/pricing-table.php:111
4667
+ #: modules/woocommerce/woocommerce.php:190
4668
+ msgid "Price"
4669
+ msgstr "Cena"
4670
+
4671
+ # @ fl-builder
4672
+ #: modules/pricing-table/pricing-table.php:115
4673
+ msgid "Duration"
4674
+ msgstr "Czas trwania"
4675
+
4676
+ # @ fl-builder
4677
+ #: modules/pricing-table/pricing-table.php:116
4678
+ msgid "per Year"
4679
+ msgstr "rocznie"
4680
+
4681
+ # @ fl-builder
4682
+ #: modules/pricing-table/pricing-table.php:120
4683
+ msgid "Price Size"
4684
+ msgstr "Rozmiar ceny"
4685
+
4686
+ # @ fl-builder
4687
+ #: modules/pricing-table/pricing-table.php:133
4688
+ #: modules/subscribe-form/subscribe-form.php:167
4689
+ msgid "Button Text"
4690
+ msgstr "Tekst przycisku"
4691
+
4692
+ # @ fl-builder
4693
+ #: modules/pricing-table/pricing-table.php:137
4694
+ msgid "Button URL"
4695
+ msgstr "URL przycisku"
4696
+
4697
+ # @ fl-builder
4698
+ #: modules/pricing-table/pricing-table.php:142
4699
+ msgctxt "Price features displayed in pricing box."
4700
+ msgid "Features"
4701
+ msgstr "Cechy/funkcjonalności oferty"
4702
+
4703
+ # @ fl-builder
4704
+ #: modules/pricing-table/pricing-table.php:147
4705
+ msgid "One feature per line. HTML is okay."
4706
+ msgstr "Jedna cecha w linii. Możesz używać HTMLa."
4707
+
4708
+ # @ fl-builder
4709
+ #: modules/pricing-table/pricing-table.php:162
4710
+ msgid "Box Background"
4711
+ msgstr "Tło boksa"
4712
+
4713
+ # @ fl-builder
4714
+ #: modules/pricing-table/pricing-table.php:167
4715
+ msgid "Box Foreground"
4716
+ msgstr "Pierwszy plan boksa"
4717
+
4718
+ # @ fl-builder
4719
+ #: modules/pricing-table/pricing-table.php:173
4720
+ msgid "Accent Color"
4721
+ msgstr "Kolor akcentu"
4722
+
4723
+ # @ fl-builder
4724
+ #: modules/pricing-table/pricing-table.php:178
4725
+ msgid "Accent Text Color"
4726
+ msgstr "Kolor tekstu akcentu"
4727
+
4728
+ # @ fl-builder
4729
+ #: modules/pricing-table/pricing-table.php:182
4730
+ msgid "Box Top Margin"
4731
+ msgstr "Górny margines boksa"
4732
+
4733
+ # @ fl-builder
4734
+ #: modules/rich-text/rich-text.php:15
4735
+ msgid "A WYSIWYG text editor."
4736
+ msgstr "Edytor wizualny"
4737
+
4738
+ # @ fl-builder
4739
+ #: modules/separator/separator.php:14
4740
+ msgid "Separator"
4741
+ msgstr "Separator"
4742
+
4743
+ # @ fl-builder
4744
+ #: modules/separator/separator.php:15
4745
+ msgid "A divider line to separate content."
4746
+ msgstr "Linia, którą możesz użyć do oddzielania treści od siebie"
4747
+
4748
+ # @ fl-builder
4749
+ #: modules/separator/separator.php:85
4750
+ msgid ""
4751
+ "The type of border to use. Double borders must have a height of at least 3px "
4752
+ "to render properly."
4753
+ msgstr ""
4754
+ "Rodzaj ramki, jakiej chcesz użyć. Podwójna ramka musi mieć wysokośc "
4755
+ "przynajmniej 3 pikseli, aby wyświetlała się poprawnie."
4756
+
4757
+ # @ fl-builder
4758
+ #: modules/sidebar/includes/settings-general.php:5
4759
+ #: modules/sidebar/sidebar.php:14
4760
+ msgid "Sidebar"
4761
+ msgstr "Kolumna boczna (sidebar)"
4762
+
4763
+ # @ fl-builder
4764
+ #: modules/sidebar/sidebar.php:15
4765
+ msgid ""
4766
+ "Display a WordPress sidebar that has been registered by the current theme."
4767
+ msgstr ""
4768
+ "Wyświetl kolumnę boczną (sidebar) z Wordpressa (musisz ją najpierw stworzyć "
4769
+ "w panelu Wordpressa)."
4770
+
4771
+ # @ fl-builder
4772
+ #: modules/slideshow/slideshow.php:14
4773
+ msgid "Slideshow"
4774
+ msgstr "Pokaz slajdów"
4775
+
4776
+ # @ fl-builder
4777
+ #: modules/slideshow/slideshow.php:15
4778
+ 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:303
4783
+ msgid "Skin Color"
4784
+ msgstr "Kolor skórki"
4785
+
4786
+ # @ fl-builder
4787
+ #: modules/slideshow/slideshow.php:306
4788
+ msgctxt "Color."
4789
+ msgid "Light"
4790
+ msgstr "Jasny"
4791
+
4792
+ # @ fl-builder
4793
+ #: modules/slideshow/slideshow.php:307
4794
+ msgctxt "Color."
4795
+ msgid "Dark"
4796
+ msgstr "Ciemny"
4797
+
4798
+ # @ fl-builder
4799
+ #: modules/slideshow/slideshow.php:309
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."
4803
+ msgstr ""
4804
+ "Jeśli Twój szablon zawiera jasne kolory, wybranie opcji Jasny sposowuje, że "
4805
+ "skórka będzie miała ciemny schemat kolorów i vice versa dla ciemnego "
4806
+ "szablonu."
4807
+
4808
+ # @ fl-builder
4809
+ #: modules/slideshow/slideshow.php:319
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 "
4813
+ "images to all sides of the content area while cropping the left and right to "
4814
+ "fit the height you specify."
4815
+ msgstr ""
4816
+ "Kadrowanie ustawione na Nie sposowuje, że zdjęcia będą miały nadaną wysokość "
4817
+ "z pola Wysokość, a ich szerokość będzie dopasowana z zachowaniem proporcji. "
4818
+ "Wybranie Ta k sprawi, że obrazy będą dopasowane do wszystkich boków tak, aby "
4819
+ "wypełnić wysokość podaną w polu Wysokość."
4820
+
4821
+ # @ fl-builder
4822
+ #: modules/slideshow/slideshow.php:323
4823
+ msgid "Disable Right-Click"
4824
+ msgstr "Wyłącz prawy przycisk myszki"
4825
+
4826
+ # @ fl-builder
4827
+ #: modules/slideshow/slideshow.php:343
4828
+ msgctxt "Click action type."
4829
+ msgid "None"
4830
+ msgstr "Wyłączone"
4831
+
4832
+ # @ fl-builder
4833
+ #: modules/slideshow/slideshow.php:367
4834
+ msgid "Playback"
4835
+ msgstr "Odtwarzanie"
4836
+
4837
+ # @ fl-builder
4838
+ #: modules/slideshow/slideshow.php:393
4839
+ msgctxt "Slideshow transition."
4840
+ msgid "None"
4841
+ msgstr "Brak"
4842
+
4843
+ # @ fl-builder
4844
+ #: modules/slideshow/slideshow.php:430
4845
+ msgid "Controls"
4846
+ msgstr "Kontrolki"
4847
+
4848
+ # @ fl-builder
4849
+ #: modules/slideshow/slideshow.php:437 modules/slideshow/slideshow.php:486
4850
+ msgid "Navigation Arrows"
4851
+ msgstr "Strzałki"
4852
+
4853
+ # @ fl-builder
4854
+ #: modules/slideshow/slideshow.php:443
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 "
4858
+ "and are separate from the control bar navigational arrows."
4859
+ msgstr ""
4860
+ "Strzałki pozwalają internaucie łatwo przemieszczać się między wyświetlanymi "
4861
+ "zdjęciami. Te strzałki będą znajdowały się na zdjęciach, z ich prawej i "
4862
+ "lewej strony."
4863
+
4864
+ # @ fl-builder
4865
+ #: modules/slideshow/slideshow.php:448
4866
+ msgid "Control Bar"
4867
+ msgstr "Pasek nawigacyjny"
4868
+
4869
+ # @ fl-builder
4870
+ #: modules/slideshow/slideshow.php:452
4871
+ msgid "Nav Type"
4872
+ msgstr "Typ nawigacji"
4873
+
4874
+ # @ fl-builder
4875
+ #: modules/slideshow/slideshow.php:455
4876
+ msgctxt "Nav type."
4877
+ msgid "None"
4878
+ msgstr "Brak"
4879
+
4880
+ # @ fl-builder
4881
+ #: modules/slideshow/slideshow.php:456
4882
+ msgid "Buttons"
4883
+ msgstr "Przyciski"
4884
+
4885
+ # @ fl-builder
4886
+ #: modules/slideshow/slideshow.php:457 modules/slideshow/slideshow.php:587
4887
+ msgid "Thumbs"
4888
+ msgstr "Miniaturki"
4889
+
4890
+ # @ fl-builder
4891
+ #: modules/slideshow/slideshow.php:472
4892
+ msgid "Nav Position"
4893
+ msgstr "Pozycja nawigacji"
4894
+
4895
+ # @ fl-builder
4896
+ #: modules/slideshow/slideshow.php:482
4897
+ msgid "Control Bar Buttons"
4898
+ msgstr "Przyciski paska nawigacyjnego"
4899
+
4900
+ # @ fl-builder
4901
+ #: modules/slideshow/slideshow.php:495
4902
+ msgid "Play Button"
4903
+ msgstr "Przycisk odtwarzania"
4904
+
4905
+ # @ fl-builder
4906
+ #: modules/slideshow/slideshow.php:504
4907
+ msgid "Fullscreen Button"
4908
+ msgstr "Przycisk przełączania na pełny ekran"
4909
+
4910
+ # @ fl-builder
4911
+ #: modules/slideshow/slideshow.php:513
4912
+ msgid "Photo Count"
4913
+ msgstr "Liczba zdjęć"
4914
+
4915
+ # @ fl-builder
4916
+ #: modules/slideshow/slideshow.php:522
4917
+ msgid "Thumbs Button"
4918
+ msgstr "Przycisk włączania miniaturek"
4919
+
4920
+ # @ fl-builder
4921
+ #: modules/slideshow/slideshow.php:531
4922
+ msgid "Caption Button"
4923
+ msgstr "Przycisk "
4924
+
4925
+ # @ fl-builder
4926
+ #: modules/slideshow/slideshow.php:540
4927
+ msgid "Social Button"
4928
+ msgstr "Przycisk portali społecznościowych"
4929
+
4930
+ # @ fl-builder
4931
+ #: modules/slideshow/slideshow.php:550
4932
+ msgid "Control Bar Overlay"
4933
+ msgstr "Krycie paska kontroli"
4934
+
4935
+ # @ fl-builder
4936
+ #: modules/slideshow/slideshow.php:554
4937
+ msgid "Overlay Enabled"
4938
+ msgstr "Krycie włączone"
4939
+
4940
+ # @ fl-builder
4941
+ #: modules/slideshow/slideshow.php:565
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."
4945
+ msgstr ""
4946
+ "Krycie paska kontroli określa, czy przyciski które wybierzesz zakrywają "
4947
+ "całkowicie obrazy w pokazie slajdów lub obszar pod pokazem slajdów."
4948
+
4949
+ # @ fl-builder
4950
+ #: modules/slideshow/slideshow.php:569
4951
+ msgid "Overlay Hide"
4952
+ msgstr "Ukryj krycie"
4953
+
4954
+ # @ fl-builder
4955
+ #: modules/slideshow/slideshow.php:575
4956
+ msgid ""
4957
+ "Overlay hide will hide the control bar after however many seconds you "
4958
+ "specify below. They will reappear upon mouse over."
4959
+ msgstr ""
4960
+ "Ukryj krycie spowoduje ukrycie pask kontroli po tylu sekundach, ile wpiszesz "
4961
+ "w polu poniżej. Pasek pojawi się ponownie po najechaniu na niego myszką."
4962
+
4963
+ # @ fl-builder
4964
+ #: modules/slideshow/slideshow.php:579
4965
+ msgid "Overlay Hide Delay"
4966
+ msgstr "Po jakim czasie ukryć pasek?"
4967
+
4968
+ # @ fl-builder
4969
+ #: modules/slideshow/slideshow.php:591
4970
+ msgid "Thumbs Size"
4971
+ msgstr "Romiar miniatur"
4972
+
4973
+ # @ fl-builder
4974
+ #: modules/slideshow/slideshow.php:600
4975
+ msgid "Social"
4976
+ msgstr "Społecznościowe"
4977
+
4978
+ # @ fl-builder
4979
+ #: modules/slideshow/slideshow.php:604
4980
+ msgid "Facebook Button"
4981
+ msgstr "Przycisk Facebooka"
4982
+
4983
+ # @ fl-builder
4984
+ #: modules/slideshow/slideshow.php:616
4985
+ msgid "Twitter Button"
4986
+ msgstr "Przycisk Twittera"
4987
+
4988
+ # @ fl-builder
4989
+ #: modules/slideshow/slideshow.php:628
4990
+ msgid "Google Plus Button"
4991
+ msgstr "Przycisk Google Plus"
4992
+
4993
+ # @ fl-builder
4994
+ #: modules/slideshow/slideshow.php:640
4995
+ msgid "Pinterest Button"
4996
+ msgstr "Przycisk Pinteresta"
4997
+
4998
+ # @ fl-builder
4999
+ #: modules/social-buttons/social-buttons.php:14
5000
+ msgid "Social Buttons"
5001
+ msgstr "Przyciski portali społecznościowych"
5002
+
5003
+ # @ fl-builder
5004
+ #: modules/social-buttons/social-buttons.php:15
5005
+ msgid "Displays social buttons."
5006
+ msgstr "Wyświetla przyciski społecznościowe."
5007
+
5008
+ # @ fl-builder
5009
+ #: modules/social-buttons/social-buttons.php:71
5010
+ msgid "Target URL"
5011
+ msgstr "Cel"
5012
+
5013
+ # @ fl-builder
5014
+ #: modules/social-buttons/social-buttons.php:75
5015
+ msgid "Current Page"
5016
+ msgstr "Ta strona"
5017
+
5018
+ # @ fl-builder
5019
+ #: modules/social-buttons/social-buttons.php:82
5020
+ msgid ""
5021
+ "The Target URL field correlates to the page you would like your social icons "
5022
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
5023
+ "whatever you put in this field."
5024
+ msgstr ""
5025
+ "W polu Cel wpisz, która strona ma być powiązana z przyciskami "
5026
+ "społecznościowymi. Jeśli np. użytkownik kliknie Lubię to, która strona ma "
5027
+ "zostać polubiona?"
5028
+
5029
+ # @ fl-builder
5030
+ #: modules/social-buttons/social-buttons.php:89
5031
+ msgid "Custom URL"
5032
+ msgstr "Wpisz URL"
5033
+
5034
+ # @ fl-builder
5035
+ #: modules/social-buttons/social-buttons.php:107
5036
+ msgid "Show Facebook"
5037
+ msgstr "Pokaż Facebooka"
5038
+
5039
+ # @ fl-builder
5040
+ #: modules/social-buttons/social-buttons.php:116
5041
+ msgid "Show Twitter"
5042
+ msgstr "Pokaż Twittera"
5043
+
5044
+ # @ fl-builder
5045
+ #: modules/social-buttons/social-buttons.php:125
5046
+ msgid "Show Google+"
5047
+ msgstr "Pokaż Google+"
5048
+
5049
+ #: modules/subscribe-form/includes/frontend.php:5
5050
+ msgctxt "First and last name."
5051
+ msgid "Name"
5052
+ msgstr "Imię"
5053
+
5054
+ #: modules/subscribe-form/includes/frontend.php:12
5055
+ msgid "Please enter a valid email address."
5056
+ msgstr "Podaj poprawny adres e-mail."
5057
+
5058
+ #: modules/subscribe-form/includes/frontend.php:40
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 "
5062
+ "ponownie."
5063
+
5064
+ #: modules/subscribe-form/subscribe-form.php:18
5065
+ msgid "Subscribe Form"
5066
+ msgstr "Zapis na newsletter/listę e-mailową"
5067
+
5068
+ #: modules/subscribe-form/subscribe-form.php:19
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:72
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:121
5083
+ msgid "Success Action"
5084
+ msgstr "Akcja"
5085
+
5086
+ #: modules/subscribe-form/subscribe-form.php:123
5087
+ msgid "Show Message"
5088
+ msgstr "Pokaż komunikat"
5089
+
5090
+ #: modules/subscribe-form/subscribe-form.php:124
5091
+ msgid "Redirect"
5092
+ msgstr "Przekieruj na stronę"
5093
+
5094
+ #: modules/subscribe-form/subscribe-form.php:143
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:150
5102
+ msgid "Success URL"
5103
+ msgstr "URL po udanym zapisie"
5104
+
5105
+ #: modules/subscribe-form/subscribe-form.php:168
5106
+ msgid "Subscribe!"
5107
+ msgstr "Zapisz się!"
5108
+
5109
+ # @ fl-builder
5110
+ #: modules/tabs/tabs.php:14
5111
+ msgid "Tabs"
5112
+ msgstr "Karty"
5113
+
5114
+ # @ fl-builder
5115
+ #: modules/tabs/tabs.php:15
5116
+ msgid "Display a collection of tabbed content."
5117
+ msgstr "Wyświetla treść podzieloną na karty."
5118
+
5119
+ # @ fl-builder
5120
+ #: modules/tabs/tabs.php:55
5121
+ msgid "Horizontal"
5122
+ msgstr "Poziomy"
5123
+
5124
+ # @ fl-builder
5125
+ #: modules/tabs/tabs.php:56
5126
+ msgid "Vertical"
5127
+ msgstr "Pionowy"
5128
+
5129
+ # @ fl-builder
5130
+ #: modules/testimonials/testimonials.php:14
5131
+ #: modules/testimonials/testimonials.php:60
5132
+ #: modules/testimonials/testimonials.php:174
5133
+ msgid "Testimonials"
5134
+ msgstr "Referencje"
5135
+
5136
+ # @ fl-builder
5137
+ #: modules/testimonials/testimonials.php:15
5138
+ msgid "An animated tesimonials area."
5139
+ msgstr "Zmieniajce się referencje."
5140
+
5141
+ # @ fl-builder
5142
+ #: modules/testimonials/testimonials.php:41
5143
+ msgid "Compact"
5144
+ msgstr "Kompaktowe"
5145
+
5146
+ # @ fl-builder
5147
+ #: modules/testimonials/testimonials.php:51
5148
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
5149
+ msgstr ""
5150
+ "Szerokie - dla wierszy jednokolumnowych, Kompaktowe - dla wierszy "
5151
+ "wielokolumnowych."
5152
+
5153
+ # @ fl-builder
5154
+ #: modules/testimonials/testimonials.php:78
5155
+ msgid "Slider Settings"
5156
+ msgstr "Ustawienia slidera"
5157
+
5158
+ # @ fl-builder
5159
+ #: modules/testimonials/testimonials.php:135
5160
+ msgid "Arrow Color"
5161
+ msgstr "Kolor strzałki"
5162
+
5163
+ # @ fl-builder
5164
+ #: modules/testimonials/testimonials.php:165
5165
+ msgid "Dot Color"
5166
+ msgstr "Kolor kropki"
5167
+
5168
+ # @ fl-builder
5169
+ #: modules/testimonials/testimonials.php:181
5170
+ msgid "Testimonial"
5171
+ msgstr "Opinia"
5172
+
5173
+ # @ fl-builder
5174
+ #: modules/testimonials/testimonials.php:197
5175
+ msgid "Add Testimonial"
5176
+ msgstr "Dodaj referencje"
5177
+
5178
+ # @ fl-builder
5179
+ #: modules/video/video.php:20
5180
+ msgid "Render a WordPress or embedable video."
5181
+ msgstr "Wstaw wideo z biblioteki lub z zewnętrznego serwisu."
5182
+
5183
+ # @ fl-builder
5184
+ #: modules/video/video.php:83
5185
+ msgid "Video Type"
5186
+ msgstr "Typ wideo"
5187
+
5188
+ # @ fl-builder
5189
+ #: modules/video/video.php:87
5190
+ msgid "Embed"
5191
+ msgstr "Osadzone (z zewnętrznego serwisu)"
5192
+
5193
+ # @ fl-builder
5194
+ #: modules/video/video.php:104
5195
+ 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
5207
+ #, php-format
5208
+ msgctxt "%s stands for widget slug."
5209
+ msgid "%s no longer exists."
5210
+ msgstr "%s nie istnieje."
5211
+
5212
+ # @ fl-builder
5213
+ #: modules/widget/widget.php:14
5214
+ msgid "Widget"
5215
+ msgstr "Widget"
5216
+
5217
+ # @ fl-builder
5218
+ #: modules/widget/widget.php:15
5219
+ msgid "Display a WordPress widget."
5220
+ msgstr "Wyświetla wordpressowy widget."
5221
+
5222
+ # @ fl-builder
5223
+ #: modules/woocommerce/woocommerce.php:16
5224
+ msgid "WooCommerce"
5225
+ msgstr "WooCommerce"
5226
+
5227
+ # @ fl-builder
5228
+ #: modules/woocommerce/woocommerce.php:17
5229
+ msgid "Display products or categories from your WooCommerce store."
5230
+ msgstr "Wyświetla produkty lub kategorie z Twojego sklepu WooCommerce."
5231
+
5232
+ # @ fl-builder
5233
+ #: modules/woocommerce/woocommerce.php:61
5234
+ msgid "Single Product"
5235
+ msgstr "Pojedynczy produkt"
5236
+
5237
+ # @ fl-builder
5238
+ #: modules/woocommerce/woocommerce.php:62
5239
+ #: modules/woocommerce/woocommerce.php:113
5240
+ msgid "Multiple Products"
5241
+ msgstr "Wiele produktów"
5242
+
5243
+ # @ fl-builder
5244
+ #: modules/woocommerce/woocommerce.php:63
5245
+ msgid "\"Add to Cart\" Button"
5246
+ msgstr "Przycisk \"Dodaj do koszyka\""
5247
+
5248
+ # @ fl-builder
5249
+ #: modules/woocommerce/woocommerce.php:64
5250
+ msgid "Categories"
5251
+ msgstr "Kategorie"
5252
+
5253
+ # @ fl-builder
5254
+ #: modules/woocommerce/woocommerce.php:65
5255
+ msgid "Cart"
5256
+ msgstr "Koszyk"
5257
+
5258
+ # @ fl-builder
5259
+ #: modules/woocommerce/woocommerce.php:66
5260
+ msgid "Checkout"
5261
+ msgstr "Kasa"
5262
+
5263
+ # @ fl-builder
5264
+ #: modules/woocommerce/woocommerce.php:67
5265
+ msgid "Order Tracking"
5266
+ msgstr "Śledzenie zamówienia"
5267
+
5268
+ # @ fl-builder
5269
+ #: modules/woocommerce/woocommerce.php:68
5270
+ msgid "My Account"
5271
+ msgstr "Moje konto"
5272
+
5273
+ # @ fl-builder
5274
+ #: modules/woocommerce/woocommerce.php:87
5275
+ msgid "Product ID"
5276
+ msgstr "ID produktu"
5277
+
5278
+ # @ fl-builder
5279
+ #: modules/woocommerce/woocommerce.php:90
5280
+ msgid ""
5281
+ "As you add products in the WooCommerce Products area, each will be assigned "
5282
+ "a unique ID. You can find this unique product ID by visiting the Products "
5283
+ "area and rolling over the product. The unique ID will be the first attribute."
5284
+ msgstr ""
5285
+ "Gdy dodasz produkty w sekcji Produkty w Woocommerce, każdy z nich otrzyma "
5286
+ "swój unikalny identyfikator (ID). Możesz znaleźć ID każdego produktu "
5287
+ "wchodząc do sekcji Produkty w Wordpressie i najeżdżając myszką na dany "
5288
+ "produkt. ID jest wyświetlane pod nazwą produktu jako jego pierwszy atrybut."
5289
+
5290
+ # @ fl-builder
5291
+ #: modules/woocommerce/woocommerce.php:94
5292
+ msgid "Parent Category ID"
5293
+ msgstr "ID kategorii nadrzędnej"
5294
+
5295
+ # @ fl-builder
5296
+ #: modules/woocommerce/woocommerce.php:97
5297
+ msgid ""
5298
+ "As you add product categories in the WooCommerce Products area, each will be "
5299
+ "assigned a unique ID. This ID can be found by hovering on the category in "
5300
+ "the categories area under Products and looking in the URL that is displayed "
5301
+ "in your browser. The ID will be the only number value in the URL."
5302
+ msgstr ""
5303
+ "Gdy dodasz kategorie produktów w sekcji Produkty w Woocommerce, każda z nich "
5304
+ "otrzyma swój unikalny identyfikator (ID). Możesz znaleźć ID każdej kategorii "
5305
+ "wchodząc do sekcji Produkty -> Kategorie w Wordpressie i patrząc na adres "
5306
+ "URL, który wyświetla się na dole ekranu po najechaniu myszką na nazwę "
5307
+ "kategorii. Jedyna liczba, którą widzisz w adresie URL to właśnie ID "
5308
+ "kategorii."
5309
+
5310
+ # @ fl-builder
5311
+ #: modules/woocommerce/woocommerce.php:101
5312
+ #: modules/woocommerce/woocommerce.php:172
5313
+ msgid "Columns"
5314
+ msgstr "Kolumny"
5315
+
5316
+ # @ fl-builder
5317
+ #: modules/woocommerce/woocommerce.php:117
5318
+ msgid "Products Source"
5319
+ msgstr "Źródło produktów"
5320
+
5321
+ # @ fl-builder
5322
+ #: modules/woocommerce/woocommerce.php:120
5323
+ msgid "Products IDs"
5324
+ msgstr "ID produktów"
5325
+
5326
+ # @ fl-builder
5327
+ #: modules/woocommerce/woocommerce.php:121
5328
+ msgid "Product Category"
5329
+ msgstr "Kategoria produktu"
5330
+
5331
+ # @ fl-builder
5332
+ #: modules/woocommerce/woocommerce.php:122
5333
+ msgid "Recent Products"
5334
+ msgstr "Nanjowsze produkty"
5335
+
5336
+ # @ fl-builder
5337
+ #: modules/woocommerce/woocommerce.php:123
5338
+ msgid "Featured Products"
5339
+ msgstr "Wyróżnione produkty"
5340
+
5341
+ # @ fl-builder
5342
+ #: modules/woocommerce/woocommerce.php:124
5343
+ msgid "Sale Products"
5344
+ msgstr "Produkty z wyprzedaży"
5345
+
5346
+ # @ fl-builder
5347
+ #: modules/woocommerce/woocommerce.php:125
5348
+ msgid "Best Selling Products"
5349
+ msgstr "Najlepiej sprzedające się produkty"
5350
+
5351
+ # @ fl-builder
5352
+ #: modules/woocommerce/woocommerce.php:126
5353
+ msgid "Top Rated Products"
5354
+ msgstr "Najwyżej oceniane produkty"
5355
+
5356
+ # @ fl-builder
5357
+ #: modules/woocommerce/woocommerce.php:154
5358
+ msgid "Product IDs"
5359
+ msgstr "ID produktów"
5360
+
5361
+ # @ fl-builder
5362
+ #: modules/woocommerce/woocommerce.php:156
5363
+ msgid ""
5364
+ "As you add products in the WooCommerce Products area, each will be assigned "
5365
+ "a unique ID. You can find this unique product ID by visiting the Products "
5366
+ "area and rolling over the product. The unique ID will be the first attribute "
5367
+ "and you can add several here separated by a comma."
5368
+ msgstr ""
5369
+ "Gdy dodasz produkty w sekcji Produkty w Woocommerce, każdy z nich otrzyma "
5370
+ "swój unikalny identyfikator (ID). Możesz znaleźć ID każdego produktu "
5371
+ "wchodząc do sekcji Produkty w Wordpressie i najeżdżając myszką na dany "
5372
+ "produkt. ID jest wyświetlane pod nazwą produktu jako jego pierwszy atrybut. "
5373
+ "W tym polu możesz wpisać wiele ID, pamiętaj tylko o oddzieleniu ich "
5374
+ "przecinkami."
5375
+
5376
+ # @ fl-builder
5377
+ #: modules/woocommerce/woocommerce.php:160
5378
+ msgid "Category Slug"
5379
+ msgstr "Uproszczona nazwa kategorii"
5380
+
5381
+ # @ fl-builder
5382
+ #: modules/woocommerce/woocommerce.php:162
5383
+ msgid ""
5384
+ "As you add product categories in the WooCommerce Products area, each will be "
5385
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
5386
+ "found in the Categories area under WooCommerce Products. Several can be "
5387
+ "added here separated by a comma."
5388
+ msgstr ""
5389
+ "Gdy dodajesz kategorię produktu w WooCommerce, otrzymuje ona unikalną "
5390
+ "uproszczoną nazwę lub możesz też wpisać tę nazwę ręcznie (w polu Upr. "
5391
+ "nazwa). Uproszczone nazwy już istniejących kategorii znajdziesz w sekcji "
5392
+ "Produkty -> Kategorie w kolumnie nazwanej \"Upr. nazwa\". W niniejszym polu "
5393
+ "możesz wpisać kilka uproszczonych nazw, pamiętaj tylko o oddzieleniu ich "
5394
+ "przecinkiem."
5395
+
5396
+ # @ fl-builder
5397
+ #: modules/woocommerce/woocommerce.php:166
5398
+ msgid "Number of Products"
5399
+ msgstr "Liczba produktów"
5400
+
5401
+ # @ fl-builder
5402
+ #: modules/woocommerce/woocommerce.php:183
5403
+ msgid "Sort By"
5404
+ msgstr "Sorduj według"
5405
+
5406
+ # @ fl-builder
5407
+ #: modules/woocommerce/woocommerce.php:186
5408
+ msgctxt "Sort by."
5409
+ msgid "Default"
5410
+ msgstr "domyślnie"
5411
+
5412
+ # @ fl-builder
5413
+ #: modules/woocommerce/woocommerce.php:187
5414
+ msgid "Popularity"
5415
+ msgstr "wg popularności"
5416
+
5417
+ # @ fl-builder
5418
+ #: modules/woocommerce/woocommerce.php:188
5419
+ msgid "Rating"
5420
+ msgstr "wg oceny"
5421
+
5422
+ #: modules/woocommerce/woocommerce.php:195
5423
+ msgid "Sort Direction"
5424
+ msgstr "Kierunek sortownia"