WordPress Page Builder – Beaver Builder - Version 1.6.4.7

Version Description

Download this release

Release Info

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

Code changes from version 1.6.4.4 to 1.6.4.7

.gitattributes ADDED
@@ -0,0 +1 @@
 
1
+ data/templates.dat binary
changelog.txt CHANGED
@@ -1,3 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <h4>1.6.4.4 - 12/08/2015</h4>
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
1
+ <h4>1.6.4.7 - 1/10/2016</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Minor enhancements to the Number Counter module. Added new number position setting (above, inside, below) for number bars. Thanks Kathy Darling for the contribution!</li>
5
+ <li>Row background color settings are now always available for adding a fallback for other background types such as videos and slideshows. Thanks Justin Proffitt for the contribution!</li>
6
+ <li>Added limit property to suggest fields for limiting the number of selections that can be made.</li>
7
+ <li>Added the fl_builder_register_settings_form filter to the register_module method.</li>
8
+ <li>Added core WordPress image classes to the Photo module. This allows WordPress to handle srcsets instead of us, fixing a number of issues and adding support for the WP Retina plugin.</li>
9
+ <li>Added Czech translation.</li>
10
+ <li>Added Farsi translation.</li>
11
+ <li>Added Thai translation.</li>
12
+ </ul>
13
+ <p><strong>Bug Fixes</strong></p>
14
+ <ul>
15
+ <li>Fixed a bug with scripts in shortcodes and widgets being rendered more than once when a CDN is used. Primarily fixes issues with the Gravity Forms widget, but should help others as well.</li>
16
+ <li>Fixed a bug with users that can only submit for review being able to publish posts from within the builder.</li>
17
+ <li>Fixed a bug breaking responsive display settings for equal height columns.</li>
18
+ <li>Fixed a bug caused by the WP 4.4.1 update that makes it so all templates show in the template selector, saved rows, and saved modules sections.</li>
19
+ <li>Fixed a bug with values selected in auto suggest fields not retaining their order.</li>
20
+ <li>Fixed a bug with multiple email addresses in the Contact Form module.</li>
21
+ <li>Fixed a bug with videos in the Content Slider module continuing to play when the slider advances to the next slide.</li>
22
+ <li>Fixed a bug with edge cases where git configurations convert line endings and break the serialized data in the templates.dat file.</li>
23
+ </ul>
24
+
25
+ <h4>1.6.4.6 - 12/22/2015</h4>
26
+ <p><strong>Enhancements</strong></p>
27
+ <ul>
28
+ <li>Added Hungarian translation.</li>
29
+ <li>The Contact Form module now supports a comma separated list of email addresses.</li>
30
+ </ul>
31
+ <p><strong>Bug Fixes</strong></p>
32
+ <ul>
33
+ <li>Fixed a bug causing the row and column link color setting to not work.</li>
34
+ <li>Fixed a bug with srcsets in the Photo module and custom image sizes.</li>
35
+ <li>Fixed a bug making it impossible to edit modules that don't have a height.</li>
36
+ <li>Fixed a bug with IE11 and row alignment.</li>
37
+ </ul>
38
+
39
+ <h4>1.6.4.5 - 12/15/2015</h4>
40
+ <p><strong>Enhancements</strong></p>
41
+ <ul>
42
+ <li>WordPress 4.4's responsive image code is now applied to all images that contain an attachment ID.</li>
43
+ <li>Added support for the Autoptimize caching plugin.</li>
44
+ </ul>
45
+ <p><strong>Bug Fixes</strong></p>
46
+ <ul>
47
+ <li>Fixed a bug in the Photo module with srcsets and custom image sizes.</li>
48
+ <li>Fixed a bug with using shortcodes in link fields.</li>
49
+ <li>Fixed a bug with smooth scrolling and the Tabs module.</li>
50
+ <li>Fixed a bug with equal heights in the Posts module.</li>
51
+ <li>Fixed a bug with icon positioning in the Callout module.</li>
52
+ <li>Fixed a bug with Menu module text being searched in searches.</li>
53
+ <li>Fixed a bug with full height rows and content alignment in IE11.</li>
54
+ <li>Fixed a bug causing the text in textareas to be white.</li>
55
+ </ul>
56
+
57
  <h4>1.6.4.4 - 12/08/2015</h4>
58
  <p><strong>Enhancements</strong></p>
59
  <ul>
classes/class-fl-builder-auto-suggest.php CHANGED
@@ -146,7 +146,7 @@ final class FLBuilderAutoSuggest {
146
 
147
  if(!empty($ids)) {
148
 
149
- $posts = $wpdb->get_results("SELECT ID, post_title FROM {$wpdb->posts} WHERE ID IN ({$ids})");
150
 
151
  foreach($posts as $post) {
152
  $data[] = array('name' => esc_attr( $post->post_title ), 'value' => $post->ID);
146
 
147
  if(!empty($ids)) {
148
 
149
+ $posts = $wpdb->get_results("SELECT ID, post_title FROM {$wpdb->posts} WHERE ID IN ({$ids}) ORDER BY FIELD(ID, {$ids})");
150
 
151
  foreach($posts as $post) {
152
  $data[] = array('name' => esc_attr( $post->post_title ), 'value' => $post->ID);
classes/class-fl-builder-model.php CHANGED
@@ -1914,7 +1914,7 @@ final class FLBuilderModel {
1914
  self::$modules[$instance->slug] = $instance;
1915
 
1916
  // Add the form to the instance.
1917
- self::$modules[$instance->slug]->form = $form;
1918
  self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['module_advanced'];
1919
  }
1920
  }
@@ -3029,7 +3029,12 @@ final class FLBuilderModel {
3029
 
3030
  // Publish the post?
3031
  if ( $publish ) {
3032
- $post_status = strstr($post_status, 'draft') ? 'publish' : $post_status;
 
 
 
 
 
3033
  }
3034
 
3035
  // Update the post with stripped down content.
@@ -3215,7 +3220,13 @@ final class FLBuilderModel {
3215
  'orderby' => 'menu_order title',
3216
  'order' => 'ASC',
3217
  'posts_per_page' => '-1',
3218
- 'fl-builder-template-type' => $type
 
 
 
 
 
 
3219
  ) );
3220
 
3221
  $templates = array();
@@ -3490,7 +3501,13 @@ final class FLBuilderModel {
3490
  'orderby' => 'title',
3491
  'order' => 'ASC',
3492
  'posts_per_page' => '-1',
3493
- 'fl-builder-template-type' => $type
 
 
 
 
 
 
3494
  ) );
3495
 
3496
  $templates = array();
1914
  self::$modules[$instance->slug] = $instance;
1915
 
1916
  // Add the form to the instance.
1917
+ self::$modules[$instance->slug]->form = apply_filters( 'fl_builder_register_settings_form', $form, $instance->slug );
1918
  self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['module_advanced'];
1919
  }
1920
  }
3029
 
3030
  // Publish the post?
3031
  if ( $publish ) {
3032
+ if ( current_user_can( 'publish_posts' ) ) {
3033
+ $post_status = strstr($post_status, 'draft') ? 'publish' : $post_status;
3034
+ }
3035
+ else {
3036
+ $post_status = 'pending';
3037
+ }
3038
  }
3039
 
3040
  // Update the post with stripped down content.
3220
  'orderby' => 'menu_order title',
3221
  'order' => 'ASC',
3222
  'posts_per_page' => '-1',
3223
+ 'tax_query' => array(
3224
+ array(
3225
+ 'taxonomy' => 'fl-builder-template-type',
3226
+ 'field' => 'slug',
3227
+ 'terms' => $type
3228
+ )
3229
+ )
3230
  ) );
3231
 
3232
  $templates = array();
3501
  'orderby' => 'title',
3502
  'order' => 'ASC',
3503
  'posts_per_page' => '-1',
3504
+ 'tax_query' => array(
3505
+ array(
3506
+ 'taxonomy' => 'fl-builder-template-type',
3507
+ 'field' => 'slug',
3508
+ 'terms' => $type
3509
+ )
3510
+ )
3511
  ) );
3512
 
3513
  $templates = array();
classes/class-fl-builder.php CHANGED
@@ -96,6 +96,9 @@ final class FLBuilder {
96
 
97
  // Tell W3TC not to minify while the builder is active.
98
  define( 'DONOTMINIFY', true );
 
 
 
99
 
100
  // Remove 3rd party editor buttons.
101
  remove_all_actions('media_buttons', 999999);
@@ -859,6 +862,11 @@ final class FLBuilder {
859
  $content = preg_replace_callback( "/$pattern/s", 'FLBuilder::double_escape_shortcodes', $content );
860
  $content = do_shortcode( $content );
861
 
 
 
 
 
 
862
  // Clear the post rendering ID.
863
  self::$post_rendering = null;
864
  }
96
 
97
  // Tell W3TC not to minify while the builder is active.
98
  define( 'DONOTMINIFY', true );
99
+
100
+ // Tell Autoptimize not to minify while the builder is active.
101
+ add_filter( 'autoptimize_filter_noptimize', '__return_true' );
102
 
103
  // Remove 3rd party editor buttons.
104
  remove_all_actions('media_buttons', 999999);
862
  $content = preg_replace_callback( "/$pattern/s", 'FLBuilder::double_escape_shortcodes', $content );
863
  $content = do_shortcode( $content );
864
 
865
+ // Add srcset attrs to images with the class wp-image-<ID>.
866
+ if ( function_exists( 'wp_make_content_images_responsive' ) ) {
867
+ $content = wp_make_content_images_responsive( $content );
868
+ }
869
+
870
  // Clear the post rendering ID.
871
  self::$post_rendering = null;
872
  }
css/fl-builder-layout-medium.css CHANGED
@@ -2,11 +2,16 @@
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
5
- .fl-visible-mobile {
 
 
6
  display: none;
7
  }
8
  .fl-visible-desktop-medium,
 
9
  .fl-visible-medium,
10
- .fl-visible-medium-mobile {
 
 
11
  display: block;
12
  }
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
5
+ .fl-visible-desktop.fl-col,
6
+ .fl-visible-mobile,
7
+ .fl-visible-mobile.fl-col {
8
  display: none;
9
  }
10
  .fl-visible-desktop-medium,
11
+ .fl-visible-desktop-medium.fl-col,
12
  .fl-visible-medium,
13
+ .fl-visible-medium.fl-col,
14
+ .fl-visible-medium-mobile,
15
+ .fl-visible-medium-mobile.fl-col {
16
  display: block;
17
  }
css/fl-builder-layout-responsive.css CHANGED
@@ -2,12 +2,17 @@
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
 
5
  .fl-visible-desktop-medium,
6
- .fl-visible-medium {
 
 
7
  display: none;
8
  }
9
  .fl-visible-medium-mobile,
10
- .fl-visible-mobile {
 
 
11
  display: block;
12
  }
13
 
2
  ------------------------------------------------------ */
3
 
4
  .fl-visible-desktop,
5
+ .fl-visible-desktop.fl-col,
6
  .fl-visible-desktop-medium,
7
+ .fl-visible-desktop-medium.fl-col,
8
+ .fl-visible-medium,
9
+ .fl-visible-medium.fl-col {
10
  display: none;
11
  }
12
  .fl-visible-medium-mobile,
13
+ .fl-visible-medium-mobile.fl-col,
14
+ .fl-visible-mobile,
15
+ .fl-visible-mobile.fl-col {
16
  display: block;
17
  }
18
 
css/fl-builder-layout.css CHANGED
@@ -62,8 +62,11 @@
62
  ------------------------------------------------------ */
63
 
64
  .fl-visible-medium,
 
65
  .fl-visible-medium-mobile,
66
- .fl-visible-mobile {
 
 
67
  display: none;
68
  }
69
 
@@ -171,10 +174,6 @@
171
  min-height: 100vh;
172
 
173
  }
174
- .fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap {
175
- /*Damn you, IE11!*/
176
- height: 1px;
177
- }
178
  .fl-row-full-height .fl-row-content{
179
  -webkit-box-flex: 1 1 auto;
180
  -moz-box-flex: 1 1 auto;
@@ -187,6 +186,14 @@
187
  width: 100%;
188
  }
189
 
 
 
 
 
 
 
 
 
190
  /**
191
  * iPad with portrait orientation.
192
  */
62
  ------------------------------------------------------ */
63
 
64
  .fl-visible-medium,
65
+ .fl-visible-medium.fl-col,
66
  .fl-visible-medium-mobile,
67
+ .fl-visible-medium-mobile.fl-col,
68
+ .fl-visible-mobile,
69
+ .fl-visible-mobile.fl-col {
70
  display: none;
71
  }
72
 
174
  min-height: 100vh;
175
 
176
  }
 
 
 
 
177
  .fl-row-full-height .fl-row-content{
178
  -webkit-box-flex: 1 1 auto;
179
  -moz-box-flex: 1 1 auto;
186
  width: 100%;
187
  }
188
 
189
+ /* Stupid IE Full Height Row Fixes */
190
+ .fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap {
191
+ height: 1px;
192
+ }
193
+ .fl-builder-ie-11 .fl-row-full-height .fl-row-content {
194
+ margin: 0;
195
+ }
196
+
197
  /**
198
  * iPad with portrait orientation.
199
  */
css/fl-builder.css CHANGED
@@ -172,7 +172,7 @@ ul.fl-builder-submenu {
172
  display: block;
173
  }
174
  ul.fl-builder-submenu li a {
175
- color: #fff;
176
  display: block;
177
  line-height: 13px;
178
  font-size: 13px;
172
  display: block;
173
  }
174
  ul.fl-builder-submenu li a {
175
+ color: #fff !important;
176
  display: block;
177
  line-height: 13px;
178
  font-size: 13px;
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.4.4
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.4.4');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
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.4.7
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.4.7');
15
  define('FL_BUILDER_FILE', __FILE__);
16
  define('FL_BUILDER_DIR', plugin_dir_path(FL_BUILDER_FILE));
17
  define('FL_BUILDER_URL', plugins_url('/', FL_BUILDER_FILE));
includes/column-css.php CHANGED
@@ -6,7 +6,7 @@
6
  .fl-node-<?php echo $col->node; ?> {
7
  color: #<?php echo $col->settings->text_color; ?>;
8
  }
9
- .fl-builder-content .fl-node-<?php echo $col->node; ?> *:not(input) {
10
  color: inherit;
11
  }
12
  <?php endif; ?>
6
  .fl-node-<?php echo $col->node; ?> {
7
  color: #<?php echo $col->settings->text_color; ?>;
8
  }
9
+ .fl-builder-content .fl-node-<?php echo $col->node; ?> *:not(input):not(textarea):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
10
  color: inherit;
11
  }
12
  <?php endif; ?>
includes/field-link.php CHANGED
@@ -1,5 +1,5 @@
1
  <div class="fl-link-field">
2
- <input type="text" name="<?php echo $name; ?>" value="<?php echo esc_url($value); ?>" class="text fl-link-field-input" placeholder="http://www.example.com" />
3
  <span class="fl-link-field-select fl-builder-button fl-builder-button-small" href="javascript:void(0);" onclick="return false;"><?php _e('Select', 'fl-builder'); ?></span>
4
  <div class="fl-link-field-search">
5
  <span class="fl-link-field-search-title"><?php _e('Enter a post title to search.', 'fl-builder'); ?></span>
1
  <div class="fl-link-field">
2
+ <input type="text" name="<?php echo $name; ?>" value="<?php echo $value; ?>" class="text fl-link-field-input" placeholder="http://www.example.com" />
3
  <span class="fl-link-field-select fl-builder-button fl-builder-button-small" href="javascript:void(0);" onclick="return false;"><?php _e('Select', 'fl-builder'); ?></span>
4
  <div class="fl-link-field-search">
5
  <span class="fl-link-field-search-title"><?php _e('Enter a post title to search.', 'fl-builder'); ?></span>
includes/field-suggest.php CHANGED
@@ -1,7 +1,11 @@
1
  <?php
2
 
3
- $action = isset($field['action']) ? $field['action'] : '';
4
- $data = isset($field['data']) ? $field['data'] : '';
 
 
 
 
5
 
6
  ?>
7
- <input type="text" name="<?php echo $name; ?>" data-value='<?php echo FLBuilderAutoSuggest::get_value($action, $value, $data); ?>' data-action="<?php echo $action; ?>" data-action-data="<?php echo $data; ?>" class="text text-full fl-suggest-field<?php if(isset($field['class'])) echo ' '. $field['class']; ?>" placeholder="<?php if ( isset( $field['placeholder'] ) ) echo esc_attr( $field['placeholder'] ); else esc_attr_e( 'Start typing...', 'fl-builder' ); ?>" />
1
  <?php
2
 
3
+ $class = isset( $field['class'] ) ? ' ' . $field['class'] : '';
4
+ $action = isset( $field['action'] ) ? $field['action'] : '';
5
+ $data = isset( $field['data'] ) ? $field['data'] : '';
6
+ $placeholder = isset( $field['placeholder'] ) ? esc_attr( $field['placeholder'] ) : esc_attr( 'Start typing...', 'fl-builder' );
7
+ $limit = isset( $field['limit'] ) ? $field['limit'] : 'false';
8
+ $value = FLBuilderAutoSuggest::get_value( $action, $value, $data );
9
 
10
  ?>
11
+ <input type="text" class="text text-full fl-suggest-field<?php echo $class; ?>" name="<?php echo $name; ?>" data-value='<?php echo $value; ?>' data-action="<?php echo $action; ?>" data-action-data="<?php echo $data; ?>" data-limit="<?php echo $limit; ?>" placeholder="<?php echo $placeholder; ?>" />
includes/row-css.php CHANGED
@@ -2,7 +2,7 @@
2
  .fl-node-<?php echo $row->node; ?> {
3
  color: #<?php echo $row->settings->text_color; ?>;
4
  }
5
- .fl-builder-content .fl-node-<?php echo $row->node; ?> *:not(input) {
6
  color: inherit;
7
  }
8
  <?php endif; ?>
@@ -59,7 +59,7 @@
59
  }
60
  <?php endif; ?>
61
 
62
- <?php if($row->settings->bg_type == 'color' && !empty($row->settings->bg_color)) : // Background Color ?>
63
  .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
64
  background-color: #<?php echo $row->settings->bg_color; ?>;
65
  background-color: rgba(<?php echo implode(',', FLBuilderColor::hex_to_rgb($row->settings->bg_color)) ?>, <?php echo $row->settings->bg_opacity/100; ?>);
2
  .fl-node-<?php echo $row->node; ?> {
3
  color: #<?php echo $row->settings->text_color; ?>;
4
  }
5
+ .fl-builder-content .fl-node-<?php echo $row->node; ?> *:not(input):not(textarea):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
6
  color: inherit;
7
  }
8
  <?php endif; ?>
59
  }
60
  <?php endif; ?>
61
 
62
+ <?php if(in_array( $row->settings->bg_type, array('color', 'photo', 'parallax', 'slideshow', 'video') ) && !empty($row->settings->bg_color)) : // Background Color ?>
63
  .fl-node-<?php echo $row->node; ?> .fl-row-content-wrap {
64
  background-color: #<?php echo $row->settings->bg_color; ?>;
65
  background-color: rgba(<?php echo implode(',', FLBuilderColor::hex_to_rgb($row->settings->bg_color)) ?>, <?php echo $row->settings->bg_opacity/100; ?>);
includes/row-settings.php CHANGED
@@ -120,16 +120,16 @@ FLBuilder::register_settings_form('row', array(
120
  'sections' => array('bg_color')
121
  ),
122
  'photo' => array(
123
- 'sections' => array('bg_photo', 'bg_overlay')
124
  ),
125
  'video' => array(
126
- 'sections' => array('bg_video', 'bg_overlay')
127
  ),
128
  'slideshow' => array(
129
- 'sections' => array('bg_slideshow', 'bg_overlay')
130
  ),
131
  'parallax' => array(
132
- 'sections' => array('bg_parallax', 'bg_overlay')
133
  )
134
  ),
135
  'preview' => array(
@@ -138,30 +138,6 @@ FLBuilder::register_settings_form('row', array(
138
  )
139
  )
140
  ),
141
- 'bg_color' => array(
142
- 'title' => __('Background Color', 'fl-builder'),
143
- 'fields' => array(
144
- 'bg_color' => array(
145
- 'type' => 'color',
146
- 'label' => __('Color', 'fl-builder'),
147
- 'show_reset' => true,
148
- 'preview' => array(
149
- 'type' => 'none'
150
- )
151
- ),
152
- 'bg_opacity' => array(
153
- 'type' => 'text',
154
- 'label' => __('Opacity', 'fl-builder'),
155
- 'default' => '100',
156
- 'description' => '%',
157
- 'maxlength' => '3',
158
- 'size' => '5',
159
- 'preview' => array(
160
- 'type' => 'none'
161
- )
162
- )
163
- )
164
- ),
165
  'bg_photo' => array(
166
  'title' => __('Background Photo', 'fl-builder'),
167
  'fields' => array(
@@ -383,6 +359,30 @@ FLBuilder::register_settings_form('row', array(
383
  )
384
  )
385
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
386
  'bg_overlay' => array(
387
  'title' => __('Background Overlay', 'fl-builder'),
388
  'fields' => array(
@@ -668,4 +668,4 @@ FLBuilder::register_settings_form('row', array(
668
  )
669
  )
670
  )
671
- ));
120
  'sections' => array('bg_color')
121
  ),
122
  'photo' => array(
123
+ 'sections' => array('bg_color', 'bg_photo', 'bg_overlay')
124
  ),
125
  'video' => array(
126
+ 'sections' => array('bg_color', 'bg_video', 'bg_overlay')
127
  ),
128
  'slideshow' => array(
129
+ 'sections' => array('bg_color', 'bg_slideshow', 'bg_overlay')
130
  ),
131
  'parallax' => array(
132
+ 'sections' => array('bg_color','bg_parallax', 'bg_overlay')
133
  )
134
  ),
135
  'preview' => array(
138
  )
139
  )
140
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
141
  'bg_photo' => array(
142
  'title' => __('Background Photo', 'fl-builder'),
143
  'fields' => array(
359
  )
360
  )
361
  ),
362
+ 'bg_color' => array(
363
+ 'title' => __('Background Color', 'fl-builder'),
364
+ 'fields' => array(
365
+ 'bg_color' => array(
366
+ 'type' => 'color',
367
+ 'label' => __('Color', 'fl-builder'),
368
+ 'show_reset' => true,
369
+ 'preview' => array(
370
+ 'type' => 'none'
371
+ )
372
+ ),
373
+ 'bg_opacity' => array(
374
+ 'type' => 'text',
375
+ 'label' => __('Opacity', 'fl-builder'),
376
+ 'default' => '100',
377
+ 'description' => '%',
378
+ 'maxlength' => '3',
379
+ 'size' => '5',
380
+ 'preview' => array(
381
+ 'type' => 'none'
382
+ )
383
+ )
384
+ )
385
+ ),
386
  'bg_overlay' => array(
387
  'title' => __('Background Overlay', 'fl-builder'),
388
  'fields' => array(
668
  )
669
  )
670
  )
671
+ ));
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.4.4',
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.4.7',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
js/fl-builder-layout.js CHANGED
@@ -463,6 +463,7 @@
463
  responsiveLabel.trigger( 'click' );
464
  }
465
  else {
 
466
  label.trigger( 'click' );
467
  }
468
 
@@ -528,11 +529,29 @@
528
  * @access private
529
  * @method _scrollToElementOnLinkClick
530
  * @param {Object} e An event object.
 
531
  */
532
  _scrollToElementOnLinkClick: function( e, callback )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
533
  {
534
  var config = FLBuilderLayoutConfig.anchorLinkAnimations,
535
- element = $( '#' + $( this ).attr( 'href' ).split( '#' ).pop() ),
536
  dest = 0,
537
  win = $( window ),
538
  doc = $( document );
@@ -547,8 +566,6 @@
547
  }
548
 
549
  $( 'html, body' ).animate( { scrollTop: dest }, config.duration, config.easing, callback );
550
-
551
- e.preventDefault();
552
  }
553
  },
554
 
@@ -611,6 +628,7 @@
611
  FLBuilderLayout._scrollToElementOnLinkClick.call( this, e, callback );
612
  }
613
  else {
 
614
  label.trigger( 'click' );
615
  }
616
 
463
  responsiveLabel.trigger( 'click' );
464
  }
465
  else {
466
+ FLBuilderLayout._scrollToElement( label );
467
  label.trigger( 'click' );
468
  }
469
 
529
  * @access private
530
  * @method _scrollToElementOnLinkClick
531
  * @param {Object} e An event object.
532
+ * @param {Function} callback A function to call when the scroll is complete.
533
  */
534
  _scrollToElementOnLinkClick: function( e, callback )
535
+ {
536
+ var element = $( '#' + $( this ).attr( 'href' ).split( '#' ).pop() );
537
+
538
+ FLBuilderLayout._scrollToElement( element, callback );
539
+
540
+ e.preventDefault();
541
+ },
542
+
543
+ /**
544
+ * Scrolls to an element.
545
+ *
546
+ * @since 1.6.4.5
547
+ * @access private
548
+ * @method _scrollToElement
549
+ * @param {Object} element The element to scroll to.
550
+ * @param {Function} callback A function to call when the scroll is complete.
551
+ */
552
+ _scrollToElement: function( element, callback )
553
  {
554
  var config = FLBuilderLayoutConfig.anchorLinkAnimations,
 
555
  dest = 0,
556
  win = $( window ),
557
  doc = $( document );
566
  }
567
 
568
  $( 'html, body' ).animate( { scrollTop: dest }, config.duration, config.easing, callback );
 
 
569
  }
570
  },
571
 
628
  FLBuilderLayout._scrollToElementOnLinkClick.call( this, e, callback );
629
  }
630
  else {
631
+ FLBuilderLayout._scrollToElement( label );
632
  label.trigger( 'click' );
633
  }
634
 
js/fl-builder-preview.js CHANGED
@@ -639,21 +639,27 @@
639
 
640
  // Photo
641
  else if(val == 'photo') {
 
642
  this.elements.bgImageSrc.trigger('change');
643
  }
644
 
645
  // Video
646
- else if(val == 'video' && this.elements.bgVideo.val() != '') {
647
- this.preview();
 
 
 
648
  }
649
 
650
  // Slideshow
651
  else if(val == 'slideshow') {
 
652
  this._bgSlideshowChange();
653
  }
654
 
655
  // Parallax
656
  else if(val == 'parallax') {
 
657
  this.elements.bgParallaxImageSrc.trigger('change');
658
  }
659
  },
639
 
640
  // Photo
641
  else if(val == 'photo') {
642
+ this.elements.bgColor.trigger('change');
643
  this.elements.bgImageSrc.trigger('change');
644
  }
645
 
646
  // Video
647
+ else if(val == 'video') {
648
+ this.elements.bgColor.trigger('change');
649
+ if (this.elements.bgVideo.val() != '') {
650
+ this.preview();
651
+ }
652
  }
653
 
654
  // Slideshow
655
  else if(val == 'slideshow') {
656
+ this.elements.bgColor.trigger('change');
657
  this._bgSlideshowChange();
658
  }
659
 
660
  // Parallax
661
  else if(val == 'parallax') {
662
+ this.elements.bgColor.trigger('change');
663
  this.elements.bgParallaxImageSrc.trigger('change');
664
  }
665
  },
js/fl-builder.js CHANGED
@@ -2026,15 +2026,22 @@
2026
  {
2027
  var cleaned = $( '<div id="fl-cleaned-content">' + html + '</div>' ),
2028
  src = '',
2029
- script = null;
2030
-
 
 
2031
  cleaned.find( 'script' ).each( function() {
2032
 
2033
- src = $( this ).attr( 'src' );
2034
- script = $( 'script[src="' + src + '"]' );
 
2035
 
2036
- if ( script.length > 0 ) {
2037
- $( this ).remove();
 
 
 
 
2038
  }
2039
  });
2040
 
@@ -2440,6 +2447,7 @@
2440
  {
2441
  $('.fl-row').removeClass('fl-block-overlay-active');
2442
  $('.fl-row-overlay').remove();
 
2443
  },
2444
 
2445
  /**
@@ -2491,10 +2499,19 @@
2491
  template = wp.template( 'fl-row-overlay' );
2492
 
2493
  if ( ! row.hasClass( 'fl-block-overlay-active' ) ) {
 
 
2494
  FLBuilder._appendOverlay( row, template( {
2495
  global : row.hasClass( 'fl-node-global' ),
2496
  node : row.attr('data-node')
2497
  } ) );
 
 
 
 
 
 
 
2498
  }
2499
  },
2500
 
@@ -3383,11 +3400,6 @@
3383
  }
3384
  // Show the overlay.
3385
  else if ( ! module.hasClass( 'fl-block-overlay-active' ) ) {
3386
-
3387
- // Adjust the height if needed.
3388
- if ( module.outerHeight( true ) < 20 ) {
3389
- module.addClass( 'fl-module-adjust-height' );
3390
- }
3391
 
3392
  // Append the template.
3393
  FLBuilder._appendOverlay( module, template( {
@@ -3438,7 +3450,6 @@
3438
  {
3439
  var modules = $('.fl-module');
3440
 
3441
- modules.removeClass('fl-module-adjust-height');
3442
  modules.removeClass('fl-block-overlay-active');
3443
  modules.find('.fl-module-overlay').remove();
3444
  $('body').removeClass('fl-block-overlay-muted');
@@ -4522,7 +4533,8 @@
4522
  preFill : field.data('value'),
4523
  queryParam : 'fl_as_query',
4524
  afterSelectionAdd : FLBuilder._updateAutoSuggestField,
4525
- afterSelectionRemove : FLBuilder._updateAutoSuggestField
 
4526
  });
4527
  },
4528
 
2026
  {
2027
  var cleaned = $( '<div id="fl-cleaned-content">' + html + '</div>' ),
2028
  src = '',
2029
+ script = null,
2030
+ loc = window.location,
2031
+ origin = loc.protocol + '//' + loc.hostname + ( loc.port ? ':' + loc.port: '' );
2032
+
2033
  cleaned.find( 'script' ).each( function() {
2034
 
2035
+ src = $( this ).attr( 'src' );
2036
+
2037
+ if ( 'undefined' != typeof src ) {
2038
 
2039
+ src = src.replace( origin, '' );
2040
+ script = $( 'script[src*="' + src + '"]' );
2041
+
2042
+ if ( script.length > 0 ) {
2043
+ $( this ).remove();
2044
+ }
2045
  }
2046
  });
2047
 
2447
  {
2448
  $('.fl-row').removeClass('fl-block-overlay-active');
2449
  $('.fl-row-overlay').remove();
2450
+ $('.fl-module').removeClass('fl-module-adjust-height');
2451
  },
2452
 
2453
  /**
2499
  template = wp.template( 'fl-row-overlay' );
2500
 
2501
  if ( ! row.hasClass( 'fl-block-overlay-active' ) ) {
2502
+
2503
+ // Append the overlay.
2504
  FLBuilder._appendOverlay( row, template( {
2505
  global : row.hasClass( 'fl-node-global' ),
2506
  node : row.attr('data-node')
2507
  } ) );
2508
+
2509
+ // Adjust the height of modules if needed.
2510
+ row.find( '.fl-module' ).each( function(){
2511
+ if ( $( this ).outerHeight( true ) < 20 ) {
2512
+ $( this ).addClass( 'fl-module-adjust-height' );
2513
+ }
2514
+ } );
2515
  }
2516
  },
2517
 
3400
  }
3401
  // Show the overlay.
3402
  else if ( ! module.hasClass( 'fl-block-overlay-active' ) ) {
 
 
 
 
 
3403
 
3404
  // Append the template.
3405
  FLBuilder._appendOverlay( module, template( {
3450
  {
3451
  var modules = $('.fl-module');
3452
 
 
3453
  modules.removeClass('fl-block-overlay-active');
3454
  modules.find('.fl-module-overlay').remove();
3455
  $('body').removeClass('fl-block-overlay-muted');
4533
  preFill : field.data('value'),
4534
  queryParam : 'fl_as_query',
4535
  afterSelectionAdd : FLBuilder._updateAutoSuggestField,
4536
+ afterSelectionRemove : FLBuilder._updateAutoSuggestField,
4537
+ selectionLimit : field.data('limit')
4538
  });
4539
  },
4540
 
languages/cs_CZ.mo ADDED
Binary file
languages/cs_CZ.po ADDED
@@ -0,0 +1,5359 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-08 18:54+0100\n"
6
+ "PO-Revision-Date: 2016-01-05 23:00+0100\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>=2 && n<=4) ? 1 : 2;\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
15
+ "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
16
+ "_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "Last-Translator: Tomáš Hudolin <hudolin.tomas@gmail.com>\n"
20
+ "Language: cs_CZ\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ #: classes/class-fl-builder-admin-settings.php:116
24
+ #: includes/global-settings.php:4
25
+ #, php-format
26
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
27
+ msgid "%s Settings"
28
+ msgstr "Nastavení pro %s"
29
+
30
+ #: classes/class-fl-builder-admin-settings.php:133
31
+ msgid "Settings updated!"
32
+ msgstr "Nastavení byla aktualizována"
33
+
34
+ #: classes/class-fl-builder-admin-settings.php:147
35
+ msgid "License"
36
+ msgstr "Licence"
37
+
38
+ #: classes/class-fl-builder-admin-settings.php:151
39
+ #: includes/admin-settings-upgrade.php:3
40
+ msgid "Upgrade"
41
+ msgstr "Aktualizace"
42
+
43
+ #: classes/class-fl-builder-admin-settings.php:155
44
+ #: includes/global-settings.php:90
45
+ msgid "Modules"
46
+ msgstr "Moduly"
47
+
48
+ #: classes/class-fl-builder-admin-settings.php:159
49
+ #: classes/class-fl-builder.php:668
50
+ msgid "Templates"
51
+ msgstr "Šablony"
52
+
53
+ #: classes/class-fl-builder-admin-settings.php:163
54
+ #: includes/admin-settings-post-types.php:3
55
+ msgid "Post Types"
56
+ msgstr "Typy obsahu"
57
+
58
+ #: classes/class-fl-builder-admin-settings.php:167
59
+ #: modules/icon-group/icon-group.php:27
60
+ #: modules/post-carousel/post-carousel.php:275
61
+ #: modules/post-grid/post-grid.php:257
62
+ msgid "Icons"
63
+ msgstr "Ikony"
64
+
65
+ #: classes/class-fl-builder-admin-settings.php:171
66
+ msgid "Editing"
67
+ msgstr "Editace"
68
+
69
+ #: classes/class-fl-builder-admin-settings.php:175
70
+ #: includes/admin-settings-branding.php:3
71
+ msgid "Branding"
72
+ msgstr "Značka"
73
+
74
+ #: classes/class-fl-builder-admin-settings.php:179
75
+ msgid "Help Button"
76
+ msgstr "Tlačítko nápovědy"
77
+
78
+ #: classes/class-fl-builder-admin-settings.php:183
79
+ #: includes/admin-settings-cache.php:3
80
+ msgid "Cache"
81
+ msgstr "Cache"
82
+
83
+ #: classes/class-fl-builder-admin-settings.php:187
84
+ #: includes/admin-settings-uninstall.php:3
85
+ #: includes/admin-settings-uninstall.php:15
86
+ msgid "Uninstall"
87
+ msgstr "Odinstalovat"
88
+
89
+ #: classes/class-fl-builder-admin-settings.php:439
90
+ msgid "Error! You must have at least one icon set enabled."
91
+ msgstr "Chyba! Musíte povolit alespoň jednu sadu ikon."
92
+
93
+ #: classes/class-fl-builder-admin-settings.php:481
94
+ msgid "Error! Could not unzip file."
95
+ msgstr "Chyba! Nepodařilo se rozbalit soubor"
96
+
97
+ #: classes/class-fl-builder-admin-settings.php:515
98
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
99
+ msgstr "Chyba! Nahrajte, prosím, sadu ikon z Icomoon nebo z Fontello."
100
+
101
+ #: classes/class-fl-builder-admin-settings.php:620
102
+ msgid "Error! Please enter an iframe for the video embed code."
103
+ msgstr "Chyba! Zadejte, prosím, iframe pro vložené video."
104
+
105
+ #: classes/class-fl-builder-admin-settings.php:638
106
+ msgid "Error! You must have at least one feature of the help button enabled."
107
+ msgstr "Chyba! Je nutné aktivovat alespoň jednu položku tlačítka nápovědy."
108
+
109
+ #: classes/class-fl-builder-admin.php:45
110
+ #, php-format
111
+ msgid ""
112
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
113
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
114
+ "of this plugin."
115
+ msgstr ""
116
+ "Tato verze modulu <strong>Page Builder</strong> není kompatibilní se síťovou "
117
+ "instalací WordPress (multisite). <a%s>Proveďte aktualizaci</a> na síťovou "
118
+ "verzi."
119
+
120
+ #: classes/class-fl-builder-admin.php:55
121
+ msgid ""
122
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
123
+ "greater. Please update WordPress before activating the plugin."
124
+ msgstr ""
125
+ "Modul <strong>Page Builder</strong> vyžaduje WordPress ve verzi 3.5 nebo "
126
+ "vyšší. Aktualizujte, prosím, WordPress před aktivací modulu."
127
+
128
+ #: classes/class-fl-builder-admin.php:112
129
+ #, php-format
130
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
131
+ msgstr ""
132
+ "Editor stránek byl aktivovaný! <a%s>Stiskněte zde</a> pro zapnutí "
133
+ "aktualizací."
134
+
135
+ #: classes/class-fl-builder-admin.php:238
136
+ msgctxt "Plugin action link label."
137
+ msgid "Upgrade"
138
+ msgstr "Aktualizovat"
139
+
140
+ #: classes/class-fl-builder-admin.php:253
141
+ #: classes/class-fl-builder-model.php:4077
142
+ msgid "Page Builder"
143
+ msgstr "Editor stránek"
144
+
145
+ #: classes/class-fl-builder-model.php:1756
146
+ #, php-format
147
+ msgctxt "%s stands for the module filename"
148
+ msgid ""
149
+ "A module with the filename %s.php already exists! Please namespace your "
150
+ "module filenames to ensure compatibility with Beaver Builder."
151
+ msgstr ""
152
+ "Soubor %s.php modulu už existuje! Použijte, prosím, předponu v názvech "
153
+ "Vašich souborů modulu tak, aby byla zachovaná kompatibilita s Beaver Builder "
154
+ "modulem."
155
+
156
+ #: classes/class-fl-builder-model.php:1807
157
+ #: classes/class-fl-builder-model.php:1868 modules/heading/heading.php:16
158
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
159
+ #: modules/separator/separator.php:16 modules/video/video.php:21
160
+ msgid "Basic Modules"
161
+ msgstr "Základní moduly"
162
+
163
+ #: classes/class-fl-builder-model.php:1808
164
+ #: classes/class-fl-builder-model.php:1869 modules/accordion/accordion.php:16
165
+ #: modules/button/button.php:16 modules/callout/callout.php:16
166
+ #: modules/contact-form/contact-form.php:16
167
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
168
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
169
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
170
+ #: modules/map/map.php:16 modules/menu/menu.php:16
171
+ #: modules/post-carousel/post-carousel.php:16
172
+ #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
173
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
174
+ #: modules/slideshow/slideshow.php:16
175
+ #: modules/social-buttons/social-buttons.php:16
176
+ #: modules/subscribe-form/subscribe-form.php:20 modules/tabs/tabs.php:16
177
+ #: modules/testimonials/testimonials.php:16
178
+ #: modules/woocommerce/woocommerce.php:18
179
+ msgid "Advanced Modules"
180
+ msgstr "Pokročilé moduly"
181
+
182
+ #: classes/class-fl-builder-model.php:1809
183
+ #: classes/class-fl-builder-model.php:1870
184
+ msgid "Other Modules"
185
+ msgstr "Ostatní moduly"
186
+
187
+ #: classes/class-fl-builder-model.php:1810
188
+ #: classes/class-fl-builder-model.php:1871
189
+ #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56
190
+ #: modules/widget/widget.php:16
191
+ msgid "WordPress Widgets"
192
+ msgstr "WordPress widgety"
193
+
194
+ #: classes/class-fl-builder-model.php:2535
195
+ #, php-format
196
+ msgctxt "%s stands for post/page title."
197
+ msgid "Copy of %s"
198
+ msgstr "Kopie %s"
199
+
200
+ #: classes/class-fl-builder-model.php:3014
201
+ msgctxt "Default user template category."
202
+ msgid "Uncategorized"
203
+ msgstr "Nezařazené"
204
+
205
+ #: classes/class-fl-builder-model.php:4034
206
+ msgid "Home Pages"
207
+ msgstr "Úvodní stránky"
208
+
209
+ #: classes/class-fl-builder-model.php:4035
210
+ msgid "Content Pages"
211
+ msgstr "Obsahové stránky"
212
+
213
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
214
+ msgctxt "Image size."
215
+ msgid "Full Size"
216
+ msgstr "Původní velikost"
217
+
218
+ #: classes/class-fl-builder-photo.php:101
219
+ msgctxt "Image size."
220
+ msgid "Large"
221
+ msgstr "Velký"
222
+
223
+ #: classes/class-fl-builder-photo.php:102
224
+ msgctxt "Image size."
225
+ msgid "Medium"
226
+ msgstr "Střední"
227
+
228
+ #: classes/class-fl-builder-photo.php:103
229
+ msgctxt "Image size."
230
+ msgid "Thumbnail"
231
+ msgstr "Miniatura"
232
+
233
+ #: classes/class-fl-builder-service-activecampaign.php:69
234
+ msgid "Error: You must provide an API URL."
235
+ msgstr "Chyba: Musíte poskytnout API URL."
236
+
237
+ #: classes/class-fl-builder-service-activecampaign.php:73
238
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
239
+ #: classes/class-fl-builder-service-constant-contact.php:48
240
+ #: classes/class-fl-builder-service-getresponse.php:67
241
+ #: classes/class-fl-builder-service-hatchbuck.php:48
242
+ #: classes/class-fl-builder-service-infusionsoft.php:79
243
+ #: classes/class-fl-builder-service-madmimi.php:73
244
+ #: classes/class-fl-builder-service-mailchimp.php:67
245
+ msgid "Error: You must provide an API key."
246
+ msgstr "Chyba: Musíte poskytnout API klíč."
247
+
248
+ #: classes/class-fl-builder-service-activecampaign.php:81
249
+ msgid "Error: Please check your API URL and API key."
250
+ msgstr "Chyba: Prosíme, zkontrolujte API URL a API klíč."
251
+
252
+ #: classes/class-fl-builder-service-activecampaign.php:108
253
+ msgid "API URL"
254
+ msgstr "API URL"
255
+
256
+ #: classes/class-fl-builder-service-activecampaign.php:109
257
+ msgid ""
258
+ "Your API url can be found in your ActiveCampaign account under My Settings > "
259
+ "API."
260
+ msgstr ""
261
+ "Vaše API URL můžete najít ve Vašem účtě ActiveCampaign v sekci Moje "
262
+ "Nastavení > API."
263
+
264
+ #: classes/class-fl-builder-service-activecampaign.php:119
265
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
266
+ #: classes/class-fl-builder-service-constant-contact.php:88
267
+ #: classes/class-fl-builder-service-getresponse.php:100
268
+ #: classes/class-fl-builder-service-hatchbuck.php:87
269
+ #: classes/class-fl-builder-service-infusionsoft.php:129
270
+ #: classes/class-fl-builder-service-madmimi.php:121
271
+ #: classes/class-fl-builder-service-mailchimp.php:100
272
+ msgid "API Key"
273
+ msgstr "API klíč"
274
+
275
+ #: classes/class-fl-builder-service-activecampaign.php:120
276
+ msgid ""
277
+ "Your API key can be found in your ActiveCampaign account under My Settings > "
278
+ "API."
279
+ msgstr ""
280
+ "Váš API klíč můžete najít ve Vašem účtě ActiveCampaign v sekci Moje "
281
+ "Nastavení > API."
282
+
283
+ #: classes/class-fl-builder-service-activecampaign.php:169
284
+ #: classes/class-fl-builder-service-aweber.php:182
285
+ #: classes/class-fl-builder-service-campaign-monitor.php:148
286
+ #: classes/class-fl-builder-service-campaign-monitor.php:199
287
+ #: classes/class-fl-builder-service-constant-contact.php:156
288
+ #: classes/class-fl-builder-service-getresponse.php:154
289
+ #: classes/class-fl-builder-service-icontact.php:207
290
+ #: classes/class-fl-builder-service-infusionsoft.php:204
291
+ #: classes/class-fl-builder-service-madmimi.php:178
292
+ #: classes/class-fl-builder-service-mailchimp.php:177
293
+ #: classes/class-fl-builder-service-mailpoet.php:92
294
+ #: classes/class-fl-builder-service-sendinblue.php:161
295
+ #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
296
+ #: modules/woocommerce/woocommerce.php:60
297
+ msgid "Choose..."
298
+ msgstr "Zvolte…"
299
+
300
+ #: classes/class-fl-builder-service-activecampaign.php:181
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:187
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 "Seznam"
314
+
315
+ #: classes/class-fl-builder-service-activecampaign.php:208
316
+ msgid ""
317
+ "There was an error subscribing to ActiveCampaign. The account is no longer "
318
+ "connected."
319
+ msgstr ""
320
+ "Během odběru z ActiveCampaign došlo k chybě. Váš účet už není připojený."
321
+
322
+ #: classes/class-fl-builder-service-activecampaign.php:239
323
+ msgid "Error: Invalid API data."
324
+ msgstr "Chyba: Nesprávné API údaje."
325
+
326
+ #: classes/class-fl-builder-service-aweber.php:72
327
+ msgid "Error: You must provide an Authorization Code."
328
+ msgstr "Chyba: Musíte poskytnout autorizační kód."
329
+
330
+ #: classes/class-fl-builder-service-aweber.php:76
331
+ msgid "Error: Please enter a valid Authorization Code."
332
+ msgstr "Chyba: Zadejte, prosím, platný autorizační kód."
333
+
334
+ #: classes/class-fl-builder-service-aweber.php:127
335
+ msgid "Authorization Code"
336
+ msgstr "Autorizační kód"
337
+
338
+ #: classes/class-fl-builder-service-aweber.php:128
339
+ #, php-format
340
+ msgid ""
341
+ "Please register this website with AWeber to get your Authorization Code. <a"
342
+ "%s>Register Now</a>"
343
+ msgstr ""
344
+ "Zaregistrujte, prosím, svoji webstránku s AWeber k získání autorizačního "
345
+ "kódu. <a%s>Registrovat teď</a>"
346
+
347
+ #: classes/class-fl-builder-service-aweber.php:219
348
+ msgid ""
349
+ "There was an error subscribing to AWeber. The account is no longer connected."
350
+ msgstr "Během odběru z AWeber došlo k chybě. Váš účet už není připojený."
351
+
352
+ #: classes/class-fl-builder-service-aweber.php:242
353
+ msgid "There was an error connecting to AWeber. Please try again."
354
+ msgstr "Během připojování k AWeber došlo k chybě. Zkuste to prosím znovu."
355
+
356
+ #: classes/class-fl-builder-service-aweber.php:247
357
+ #, php-format
358
+ msgid "There was an error subscribing to AWeber. %s"
359
+ msgstr "Během odběru z AWeber došlo k chybě. %s"
360
+
361
+ #: classes/class-fl-builder-service-campaign-monitor.php:67
362
+ #: classes/class-fl-builder-service-campaign-monitor.php:129
363
+ #: classes/class-fl-builder-service-getresponse.php:76
364
+ #: classes/class-fl-builder-service-getresponse.php:132
365
+ #: classes/class-fl-builder-service-hatchbuck.php:63
366
+ msgid "Error: Please check your API key."
367
+ msgstr "Chyba: Zkontrolujte, prosím, API klíč."
368
+
369
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
370
+ msgid ""
371
+ "Your API key can be found in your Campaign Monitor account under Account "
372
+ "Settings > API Key."
373
+ msgstr ""
374
+ "Váš API klíč můžete nalézt ve Vašem účtě Campaign Monitor pod “Nasvatení "
375
+ "účtu > API klíč”."
376
+
377
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
378
+ msgctxt "A client account in Campaign Monitor."
379
+ msgid "Client"
380
+ msgstr "Klient"
381
+
382
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
383
+ msgid ""
384
+ "There was an error subscribing to Campaign Monitor. The account is no longer "
385
+ "connected."
386
+ msgstr ""
387
+ "Během odběru z Campaign Monitor došlo k chybě. Váš účet už není připojený."
388
+
389
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
390
+ msgid "There was an error subscribing to Campaign Monitor."
391
+ msgstr "Během odběru z Campaign Monitor došlo k chybě."
392
+
393
+ #: classes/class-fl-builder-service-constant-contact.php:52
394
+ msgid "Error: You must provide an access token."
395
+ msgstr "Chyba: Musíte poskytnout přístupový token."
396
+
397
+ #: classes/class-fl-builder-service-constant-contact.php:61
398
+ #: classes/class-fl-builder-service-constant-contact.php:134
399
+ #, php-format
400
+ msgid "Error: Could not connect to Constant Contact. %s"
401
+ msgstr "Chyba: Nelze navázat spojení s Constant Contact. %s"
402
+
403
+ #: classes/class-fl-builder-service-constant-contact.php:89
404
+ msgid "Your Constant Contact API key."
405
+ msgstr "Váš API klíč pro Constant Contact."
406
+
407
+ #: classes/class-fl-builder-service-constant-contact.php:99
408
+ msgid "Access Token"
409
+ msgstr "Přístupový token"
410
+
411
+ #: classes/class-fl-builder-service-constant-contact.php:100
412
+ msgid "Your Constant Contact access token."
413
+ msgstr "Váš přístupový token pro Constant Contact."
414
+
415
+ #: classes/class-fl-builder-service-constant-contact.php:101
416
+ #, php-format
417
+ msgid ""
418
+ "You must register a <a%s>Developer Account</a> with Constant Contact to "
419
+ "obtain an API key and access token. Please see <a%s>Getting an API key</a> "
420
+ "for complete instructions."
421
+ msgstr ""
422
+ "Musíte se zaregistrovat pod <a%s>Developerským účtem</a> v Constant Contact, "
423
+ "abyste obdrželi API klíč a přístupový token. Kompletní instrukce najdete na "
424
+ "stránce <a%s>Získání API klíče</a>."
425
+
426
+ #: classes/class-fl-builder-service-constant-contact.php:193
427
+ msgid ""
428
+ "There was an error subscribing to Constant Contact. The account is no longer "
429
+ "connected."
430
+ msgstr ""
431
+ "Během odběru z Constant Contact došlo k chybě. Váš účet už není připojený."
432
+
433
+ #: classes/class-fl-builder-service-constant-contact.php:245
434
+ #: classes/class-fl-builder-service-constant-contact.php:279
435
+ #, php-format
436
+ msgid "There was an error subscribing to Constant Contact. %s"
437
+ msgstr "Došlo k chybě během odběru z Constant Contact. %s"
438
+
439
+ #: classes/class-fl-builder-service-email-address.php:39
440
+ #: classes/class-fl-builder-service-madmimi.php:69
441
+ msgid "Error: You must provide an email address."
442
+ msgstr "Chyba: Musíte poskytnout e-mail adresu."
443
+
444
+ #: classes/class-fl-builder-service-email-address.php:63
445
+ #: classes/class-fl-builder-service-madmimi.php:110
446
+ #: modules/subscribe-form/includes/frontend.php:11
447
+ msgid "Email Address"
448
+ msgstr "Emailová adresa"
449
+
450
+ #: classes/class-fl-builder-service-email-address.php:110
451
+ msgid "There was an error subscribing. The account is no longer connected."
452
+ msgstr "Během odběru došlo k chybě. Váš účet už není připojený"
453
+
454
+ #: classes/class-fl-builder-service-email-address.php:114
455
+ msgid "Subscribe Form Signup"
456
+ msgstr "Přihlášeni k formuláři doběru"
457
+
458
+ #: classes/class-fl-builder-service-email-address.php:115
459
+ #: modules/contact-form/includes/frontend.php:21
460
+ msgid "Email"
461
+ msgstr "Email"
462
+
463
+ #: classes/class-fl-builder-service-email-address.php:118
464
+ msgid "Name"
465
+ msgstr "Jméno"
466
+
467
+ #: classes/class-fl-builder-service-email-address.php:124
468
+ #: modules/subscribe-form/subscribe-form.php:73
469
+ msgid "There was an error subscribing. Please try again."
470
+ msgstr "Během registrace došlo k chybě. Zkuste, prosím, znovu."
471
+
472
+ #: classes/class-fl-builder-service-getresponse.php:101
473
+ msgid ""
474
+ "Your API key can be found in your GetResponse account under My Account > "
475
+ "GetResponse API."
476
+ msgstr ""
477
+ "Váš API klíč můžete nalézt ve Vašem účtě GetResponse pod “Můj účet > "
478
+ "GetResponse API”."
479
+
480
+ #: classes/class-fl-builder-service-getresponse.php:191
481
+ msgid ""
482
+ "There was an error subscribing to GetResponse. The account is no longer "
483
+ "connected."
484
+ msgstr "Během odběru z GetResponse došlo k chybě. Váš účet už není připojený."
485
+
486
+ #: classes/class-fl-builder-service-getresponse.php:202
487
+ #, php-format
488
+ msgid "There was an error subscribing to GetResponse. %s"
489
+ msgstr "Během odběru z GetResponse došlo k chybě. %s"
490
+
491
+ #: classes/class-fl-builder-service-hatchbuck.php:88
492
+ msgid ""
493
+ "Your API key can be found in your Hatchbuck account under Account Settings > "
494
+ "Web API."
495
+ msgstr ""
496
+ "Váš API klíč můžete nalézt ve Vašem účtě Hatchbuck pod “Nasvatení účtu > Web "
497
+ "API”."
498
+
499
+ #: classes/class-fl-builder-service-hatchbuck.php:134
500
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
501
+ msgid "Tag"
502
+ msgstr "Značka"
503
+
504
+ #: classes/class-fl-builder-service-hatchbuck.php:161
505
+ msgid ""
506
+ "There was an error subscribing to Hatchbuck. The account is no longer "
507
+ "connected."
508
+ msgstr "Během odběru z Hatchbuck došlo k chybě. Váš účet už není připojený."
509
+
510
+ #: classes/class-fl-builder-service-hatchbuck.php:190
511
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
512
+ msgstr "Během odběru z Hatchbuck došlo k chybě. API klíč není platný."
513
+
514
+ #: classes/class-fl-builder-service-hatchbuck.php:200
515
+ #: classes/class-fl-builder-service-hatchbuck.php:232
516
+ msgid "There was an error subscribing to Hatchbuck."
517
+ msgstr "Došlo k chybě během odběru z Hatchbuck."
518
+
519
+ #: classes/class-fl-builder-service-icontact.php:75
520
+ msgid "Error: You must provide a username."
521
+ msgstr "Chyba: Musíte poskytnout uživatelské jméno."
522
+
523
+ #: classes/class-fl-builder-service-icontact.php:79
524
+ msgid "Error: You must provide a app ID."
525
+ msgstr "Chyba: Musíte poskytnout ID aplikace."
526
+
527
+ #: classes/class-fl-builder-service-icontact.php:83
528
+ msgid "Error: You must provide a app password."
529
+ msgstr "Chyba: Musíte poskytnout heslo aplikace."
530
+
531
+ #: classes/class-fl-builder-service-icontact.php:104
532
+ #: classes/class-fl-builder-service-icontact.php:188
533
+ #, php-format
534
+ msgid "Error: Could not connect to iContact. %s"
535
+ msgstr "Chyba: Spojení s iContact nemůže být navázané. %s"
536
+
537
+ #: classes/class-fl-builder-service-icontact.php:125
538
+ msgid "Username"
539
+ msgstr "Uživatelské jméno"
540
+
541
+ #: classes/class-fl-builder-service-icontact.php:126
542
+ msgid "Your iContact username."
543
+ msgstr "Vaše uživatelské jméno na iContact"
544
+
545
+ #: classes/class-fl-builder-service-icontact.php:136
546
+ #: classes/class-fl-builder-service-infusionsoft.php:118
547
+ msgid "App ID"
548
+ msgstr "ID aplikace"
549
+
550
+ #: classes/class-fl-builder-service-icontact.php:137
551
+ msgid "Your iContact app ID."
552
+ msgstr "ID Vaší iContact aplikace"
553
+
554
+ #: classes/class-fl-builder-service-icontact.php:147
555
+ msgid "App Password"
556
+ msgstr "Heslo aplikace"
557
+
558
+ #: classes/class-fl-builder-service-icontact.php:148
559
+ msgid "Your iContact app password."
560
+ msgstr "Heslo Vaší iContact aplikace"
561
+
562
+ #: classes/class-fl-builder-service-icontact.php:149
563
+ #, php-format
564
+ msgid ""
565
+ "You must <a%s>create an app</a> in iContact to obtain an app ID and "
566
+ "password. Please see <a%s>the iContact docs</a> for complete instructions."
567
+ msgstr ""
568
+ "Musíte <a%s>vytvořit aplikaci</a> v iContact, abyste obdrželi ID a heslo "
569
+ "aplikace. Kompletní instrukce naleznete na stránce <a%s>dokumentace k "
570
+ "iContact</a>."
571
+
572
+ #: classes/class-fl-builder-service-icontact.php:244
573
+ msgid ""
574
+ "There was an error subscribing to iContact. The account is no longer "
575
+ "connected."
576
+ msgstr "Během odběru z iContact došlo k chybě. Váš účet už není připojený."
577
+
578
+ #: classes/class-fl-builder-service-icontact.php:280
579
+ #, php-format
580
+ msgid "There was an error subscribing to iContact. %s"
581
+ msgstr "Během odběru z iContact došlo k chybě. %s"
582
+
583
+ #: classes/class-fl-builder-service-infusionsoft.php:49
584
+ #, php-format
585
+ msgid "There was an error connecting to Infusionsoft. %s"
586
+ msgstr "Během připojování k Infusionsoft došlo k chybě. %s"
587
+
588
+ #: classes/class-fl-builder-service-infusionsoft.php:83
589
+ msgid "Error: You must provide an app ID."
590
+ msgstr "Chyba: Musíte poskytnout ID aplikace."
591
+
592
+ #: classes/class-fl-builder-service-infusionsoft.php:119
593
+ msgid ""
594
+ "Your App ID can be found in the URL for your account. For example, if the "
595
+ "URL for your account is myaccount.infusionsoft.com, your App ID would be "
596
+ "<strong>myaccount</strong>."
597
+ msgstr ""
598
+ "ID aplikace získáte z URL adresy vašeho účtu. Například, pokud je URL vašeho "
599
+ "účtu mujucet.infusionsoft.com, vaše ID aplikace by bylo <strong>mujucet</"
600
+ "strong>."
601
+
602
+ #: classes/class-fl-builder-service-infusionsoft.php:130
603
+ msgid ""
604
+ "Your API key can be found in your Infusionsoft account under Admin > "
605
+ "Settings > Application > API > Encrypted Key."
606
+ msgstr ""
607
+ "Váš API klíč můžete získat z účtu Infusionsoft v sekci Administrace > "
608
+ "Nastavení > Aplikace > API > Šifrovaný klíč."
609
+
610
+ #: classes/class-fl-builder-service-infusionsoft.php:242
611
+ msgid ""
612
+ "There was an error subscribing to Infusionsoft. The account is no longer "
613
+ "connected."
614
+ msgstr "Během odběru z Infusionsoft došlo k chybě. Váš účet už není připojený."
615
+
616
+ #: classes/class-fl-builder-service-infusionsoft.php:291
617
+ #, php-format
618
+ msgid "There was an error subscribing to Infusionsoft. %s"
619
+ msgstr "Během odběru z Infusionsoft došlo k chybě. %s"
620
+
621
+ #: classes/class-fl-builder-service-madmimi.php:83
622
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
623
+ msgstr "Nelze se připojit k Mad Mimi. Zkontrolujte, prosím, zadané údaje."
624
+
625
+ #: classes/class-fl-builder-service-madmimi.php:111
626
+ msgid "The email address associated with your Mad Mimi account."
627
+ msgstr "Email adresa spojená s Vaším Mad Mimi účtem."
628
+
629
+ #: classes/class-fl-builder-service-madmimi.php:122
630
+ msgid ""
631
+ "Your API key can be found in your Mad Mimi account under Account > Settings "
632
+ "&amp; Billing > API."
633
+ msgstr ""
634
+ "Váš API klíč můžete najít ve Vašem účtu Mad Mimi pod Účet > Nastavení a "
635
+ "fakturace > API."
636
+
637
+ #: classes/class-fl-builder-service-madmimi.php:156
638
+ msgid ""
639
+ "There was a problem retrieving your lists. Please check your API credentials."
640
+ msgstr ""
641
+ "Během získávaní Vašich seznamů došlo k chybě. Zkontrolujte, prosím, zadané "
642
+ "API údaje."
643
+
644
+ #: classes/class-fl-builder-service-madmimi.php:215
645
+ #: classes/class-fl-builder-service-madmimi.php:242
646
+ msgid ""
647
+ "There was an error subscribing to Mad Mimi. The account is no longer "
648
+ "connected."
649
+ msgstr "Během odběru z Mad Mimi došlo k chybě. Váš účet už není připojený."
650
+
651
+ #: classes/class-fl-builder-service-mailchimp.php:101
652
+ msgid ""
653
+ "Your API key can be found in your MailChimp account under Account > Extras > "
654
+ "API Keys."
655
+ msgstr ""
656
+ "Váš API klíč můžete najít ve Vašem účtu MailChimp pod Účet > Extra > API "
657
+ "klíče."
658
+
659
+ #: classes/class-fl-builder-service-mailchimp.php:215
660
+ msgid "No Group"
661
+ msgstr "Žadná skupina"
662
+
663
+ #: classes/class-fl-builder-service-mailchimp.php:227
664
+ msgctxt "MailChimp list group."
665
+ msgid "Groups"
666
+ msgstr "Skupiny"
667
+
668
+ #: classes/class-fl-builder-service-mailchimp.php:255
669
+ msgid ""
670
+ "There was an error subscribing to MailChimp. The account is no longer "
671
+ "connected."
672
+ msgstr "Během odběru z Mail Chimp došlo k chybě. Váš účet už není připojený."
673
+
674
+ #: classes/class-fl-builder-service-mailchimp.php:352
675
+ #, php-format
676
+ msgid "There was an error subscribing to MailChimp. %s"
677
+ msgstr "Během odběru z MailChimp došlo k chybě. %s"
678
+
679
+ #: classes/class-fl-builder-service-mailpoet.php:73
680
+ msgid "There was an error retrieveing your lists."
681
+ msgstr "Během získávání Vašich seznamů došlo k chybě."
682
+
683
+ #: classes/class-fl-builder-service-mailpoet.php:129
684
+ msgid "There was an error subscribing. MailPoet is not installed."
685
+ msgstr "Během pokusu o připojení došlo k chybě. MailPoet není nainstalovaný."
686
+
687
+ #: classes/class-fl-builder-service-sendinblue.php:67
688
+ msgid "Error: You must provide an Access Key."
689
+ msgstr "Chyba: Musíte poskytnout přístupový klíč."
690
+
691
+ #: classes/class-fl-builder-service-sendinblue.php:76
692
+ #: classes/class-fl-builder-service-sendinblue.php:136
693
+ msgid "There was an error connecting to SendinBlue. Please try again."
694
+ msgstr "Během připojování k SendinBlue došlo k chybě. Zkuste, prosím, znovu."
695
+
696
+ #: classes/class-fl-builder-service-sendinblue.php:79
697
+ #: classes/class-fl-builder-service-sendinblue.php:139
698
+ #, php-format
699
+ msgid "Error: Could not connect to SendinBlue. %s"
700
+ msgstr "Chyba: Nelze se připojit k SendinBlue. %s"
701
+
702
+ #: classes/class-fl-builder-service-sendinblue.php:103
703
+ msgid "Access Key"
704
+ msgstr "Přístupový klíč"
705
+
706
+ #: classes/class-fl-builder-service-sendinblue.php:104
707
+ msgid ""
708
+ "Your Access Key can be found in your SendinBlue account under API & "
709
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
710
+ msgstr ""
711
+ "Váš přístupový klíč můžete získat ve Vašem účtu SendinBlue v sekci API a "
712
+ "integrace > Manažer klíčů > Verze 2.0 > Přístupový klíč."
713
+
714
+ #: classes/class-fl-builder-service-sendinblue.php:198
715
+ msgid ""
716
+ "There was an error subscribing to SendinBlue. The account is no longer "
717
+ "connected."
718
+ msgstr "Během odběru ze SendinBlue došlo k chybě. Váš účet už není připojený."
719
+
720
+ #: classes/class-fl-builder-service-sendinblue.php:220
721
+ msgid "There was an error subscribing to SendinBlue. Please try again."
722
+ msgstr "Během odběru ze SendinBlue došlo k chybě. Zkuste, prosím, znovu."
723
+
724
+ #: classes/class-fl-builder-service-sendinblue.php:223
725
+ #, php-format
726
+ msgid "Error: Could not subscribe to SendinBlue. %s"
727
+ msgstr "Chyba: Nelze odebírat ze SendinBlue. %s"
728
+
729
+ #: classes/class-fl-builder-services.php:158
730
+ msgctxt "Third party service such as MailChimp."
731
+ msgid "Error: Missing service type."
732
+ msgstr "Chyba: Chybí typ služby."
733
+
734
+ #: classes/class-fl-builder-services.php:161
735
+ msgctxt "Connection data such as an API key."
736
+ msgid "Error: Missing service data."
737
+ msgstr "Chyba: Chybí data služby."
738
+
739
+ #: classes/class-fl-builder-services.php:164
740
+ msgctxt "Account name for a third party service such as MailChimp."
741
+ msgid "Error: Missing account name."
742
+ msgstr "Chyba: Chýbí jméno účtu."
743
+
744
+ #: classes/class-fl-builder-services.php:173
745
+ msgctxt "Account name for a third party service such as MailChimp."
746
+ msgid "Error: An account with that name already exists."
747
+ msgstr "Chyba: Již existuje účet se stejným jménem."
748
+
749
+ #: classes/class-fl-builder-services.php:253
750
+ msgid "Account Name"
751
+ msgstr "Jméno účtu"
752
+
753
+ #: classes/class-fl-builder-services.php:254
754
+ msgid ""
755
+ "Used to identify this connection within the accounts list and can be "
756
+ "anything you like."
757
+ msgstr ""
758
+ "Použije se k identifikaci tohoto připojení v seznamu účtů a může být použito "
759
+ "cokoliv."
760
+
761
+ #: classes/class-fl-builder-services.php:267
762
+ msgid "Connect"
763
+ msgstr "Připojit"
764
+
765
+ #: classes/class-fl-builder-services.php:295
766
+ msgid "Add Account..."
767
+ msgstr "Přidat účet…"
768
+
769
+ #: classes/class-fl-builder-services.php:302
770
+ msgid "Account"
771
+ msgstr "Účet"
772
+
773
+ #: classes/class-fl-builder-template-settings.php:33
774
+ msgid "Page Builder Templates"
775
+ msgstr "Šablony Editoru stránek"
776
+
777
+ #: classes/class-fl-builder-templates-override.php:49
778
+ msgid "Error! Please enter a number for the site ID."
779
+ msgstr "Chyba! Zadejte, prosím, číslo pro ID stránky."
780
+
781
+ #: classes/class-fl-builder-templates-override.php:53
782
+ msgid "Error! A site with that ID doesn't exist."
783
+ msgstr "Chyba! Stránka s daným ID neexistuje."
784
+
785
+ #: classes/class-fl-builder.php:617
786
+ #, php-format
787
+ msgid "Template: %s"
788
+ msgstr "Šablona: %s "
789
+
790
+ #: classes/class-fl-builder.php:652
791
+ msgid "Upgrade!"
792
+ msgstr "Aktualizovat!"
793
+
794
+ #: classes/class-fl-builder.php:656
795
+ msgid "Buy Now!"
796
+ msgstr "Koupit hned!"
797
+
798
+ #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36
799
+ #: includes/ui-js-templates.php:100
800
+ msgid "Done"
801
+ msgstr "Hotovo"
802
+
803
+ #: classes/class-fl-builder.php:664
804
+ msgid "Tools"
805
+ msgstr "Nástroje"
806
+
807
+ #: classes/class-fl-builder.php:672 includes/ui-js-config.php:88
808
+ msgid "Add Content"
809
+ msgstr "Přidat obsah"
810
+
811
+ #: classes/class-fl-builder.php:1032
812
+ #, php-format
813
+ msgctxt "Field name to add."
814
+ msgid "Add %s"
815
+ msgstr "Přidat %s"
816
+
817
+ #: classes/class-fl-builder.php:1126 classes/class-fl-builder.php:1128
818
+ msgctxt "Custom post type label."
819
+ msgid "Templates"
820
+ msgstr "Šablony"
821
+
822
+ #: classes/class-fl-builder.php:1127 classes/class-fl-builder.php:1129
823
+ msgctxt "Custom post type label."
824
+ msgid "Template"
825
+ msgstr "Šablona"
826
+
827
+ #: classes/class-fl-builder.php:1130
828
+ msgctxt "Custom post type label."
829
+ msgid "Add New"
830
+ msgstr "Přidat novou"
831
+
832
+ #: classes/class-fl-builder.php:1131
833
+ msgctxt "Custom post type label."
834
+ msgid "Add New Template"
835
+ msgstr "Přidat novou šablonu"
836
+
837
+ #: classes/class-fl-builder.php:1132
838
+ msgctxt "Custom post type label."
839
+ msgid "New Template"
840
+ msgstr "Nová šablona"
841
+
842
+ #: classes/class-fl-builder.php:1133
843
+ msgctxt "Custom post type label."
844
+ msgid "Edit Template"
845
+ msgstr "Upravit šablonu"
846
+
847
+ #: classes/class-fl-builder.php:1134
848
+ msgctxt "Custom post type label."
849
+ msgid "View Template"
850
+ msgstr "Zobrazit šablonu"
851
+
852
+ #: classes/class-fl-builder.php:1135
853
+ msgctxt "Custom post type label."
854
+ msgid "All Templates"
855
+ msgstr "Všechny šablony"
856
+
857
+ #: classes/class-fl-builder.php:1136
858
+ msgctxt "Custom post type label."
859
+ msgid "Search Templates"
860
+ msgstr "Výhledat šablony"
861
+
862
+ #: classes/class-fl-builder.php:1137
863
+ msgctxt "Custom post type label."
864
+ msgid "Parent Templates:"
865
+ msgstr "Nadřazené šablony"
866
+
867
+ #: classes/class-fl-builder.php:1138
868
+ msgctxt "Custom post type label."
869
+ msgid "No templates found."
870
+ msgstr "Nebyly nalezeny žádné šablony"
871
+
872
+ #: classes/class-fl-builder.php:1139
873
+ msgctxt "Custom post type label."
874
+ msgid "No templates found in Trash."
875
+ msgstr "V koši nebyly nalezeny žádné šablony"
876
+
877
+ #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1163
878
+ msgctxt "Custom taxonomy label."
879
+ msgid "Categories"
880
+ msgstr "Kategorie"
881
+
882
+ #: classes/class-fl-builder.php:1154
883
+ msgctxt "Custom taxonomy label."
884
+ msgid "Category"
885
+ msgstr "Kategorie"
886
+
887
+ #: classes/class-fl-builder.php:1155
888
+ msgctxt "Custom taxonomy label."
889
+ msgid "Search Categories"
890
+ msgstr "Prohledat kategorie"
891
+
892
+ #: classes/class-fl-builder.php:1156
893
+ msgctxt "Custom taxonomy label."
894
+ msgid "All Categories"
895
+ msgstr "Všechny kategorie"
896
+
897
+ #: classes/class-fl-builder.php:1157
898
+ msgctxt "Custom taxonomy label."
899
+ msgid "Parent Category"
900
+ msgstr "Nadřazená kategorie"
901
+
902
+ #: classes/class-fl-builder.php:1158
903
+ msgctxt "Custom taxonomy label."
904
+ msgid "Parent Category:"
905
+ msgstr "Nadřazená kategorie:"
906
+
907
+ #: classes/class-fl-builder.php:1159
908
+ msgctxt "Custom taxonomy label."
909
+ msgid "Edit Category"
910
+ msgstr "Upravit kategorii"
911
+
912
+ #: classes/class-fl-builder.php:1160
913
+ msgctxt "Custom taxonomy label."
914
+ msgid "Update Category"
915
+ msgstr "Aktualizovat kategorii"
916
+
917
+ #: classes/class-fl-builder.php:1161
918
+ msgctxt "Custom taxonomy label."
919
+ msgid "Add New Category"
920
+ msgstr "Přidat novou kategorii"
921
+
922
+ #: classes/class-fl-builder.php:1162
923
+ msgctxt "Custom taxonomy label."
924
+ msgid "New Category Name"
925
+ msgstr "Název nové kategorie"
926
+
927
+ #: classes/class-fl-builder.php:1172
928
+ msgctxt "Custom taxonomy label."
929
+ msgid "Type"
930
+ msgstr "Typ"
931
+
932
+ #: classes/class-fl-builder.php:1448 classes/class-fl-builder.php:1527
933
+ #: classes/class-fl-builder.php:1735 includes/ui-js-templates.php:110
934
+ #: includes/ui-panel-node-templates.php:18
935
+ #: includes/ui-panel-node-templates.php:49
936
+ msgctxt "Indicator for global node templates."
937
+ msgid "Global"
938
+ msgstr "Globálně"
939
+
940
+ #: classes/class-fl-builder.php:1734
941
+ #, php-format
942
+ msgctxt "%s stands for module name."
943
+ msgid "%s Settings"
944
+ msgstr "%s Nastavení"
945
+
946
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
947
+ msgid "Text Editor"
948
+ msgstr "Textový editor"
949
+
950
+ #: includes/admin-posts.php:7
951
+ #, php-format
952
+ msgctxt ""
953
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s "
954
+ "stands for the post type name."
955
+ msgid "%s is currently active for this %s."
956
+ msgstr "%s je právě aktivní pro %s."
957
+
958
+ #: includes/admin-posts.php:8
959
+ #, php-format
960
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
961
+ msgid "Launch %s"
962
+ msgstr "Spustit %s"
963
+
964
+ #: includes/admin-settings-branding.php:7
965
+ msgid "White label the page builder by entering a custom name below."
966
+ msgstr "Změňte značku editoru stránek zadáním vlastního jména níže."
967
+
968
+ #: includes/admin-settings-branding.php:10
969
+ msgid ""
970
+ "Additionally, you may also add a custom icon by entering the URL of an image "
971
+ "below. Leave the field blank if you do not wish to use an icon."
972
+ msgstr ""
973
+ "Dodatečně můžete přidat i vlastní ikonku zadáním URL adresy obrázku. Pokud "
974
+ "ikonku nechcete použít, ponechte pole prázdné."
975
+
976
+ #: includes/admin-settings-branding.php:14
977
+ msgid "Save Branding"
978
+ msgstr "Uložit nastavení značky"
979
+
980
+ #: includes/admin-settings-cache.php:9
981
+ msgid ""
982
+ "A CSS and JavaScript file is dynamically generated and cached each time you "
983
+ "create a new layout. Sometimes the cache needs to be refreshed when you "
984
+ "migrate your site to another server or update to the latest version. If you "
985
+ "are running into any issues, please try clearing the cache by clicking the "
986
+ "button below."
987
+ msgstr ""
988
+ "Soubor CSS a JavaScript je dynamicky generovaný a cachovaný pokaždé když "
989
+ "vytvoříte nové rozvržení. Někdy je nutné obnovit cache během migrace Vaší "
990
+ "webstránky na jiný server nebo během aktualizace. Pokud nastanou jakékoliv "
991
+ "problémy, zkuste obnovit cache kliknutím na tlačítko."
992
+
993
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
994
+ #: includes/admin-settings-uninstall.php:7
995
+ #: includes/admin-settings-uninstall.php:10
996
+ #: includes/updater/includes/form.php:31
997
+ msgid "NOTE:"
998
+ msgstr "UPOZORNĚNÍ:"
999
+
1000
+ #: includes/admin-settings-cache.php:12
1001
+ #: includes/admin-settings-uninstall.php:10
1002
+ #: includes/updater/includes/form.php:31
1003
+ msgid "This applies to all sites on the network."
1004
+ msgstr "Toto nastavení se aplikuje na všechny stránky v síti."
1005
+
1006
+ #: includes/admin-settings-cache.php:14
1007
+ msgid ""
1008
+ "This only applies to this site. Please visit the Network Admin Settings to "
1009
+ "clear the cache for all sites on the network."
1010
+ msgstr ""
1011
+ "Akce se aplikuje pouze na tuto stránku. Pro síťové obnovení cache na všech "
1012
+ "stránkách na síti navštivte administrátorské nastavení sítě."
1013
+
1014
+ #: includes/admin-settings-cache.php:19
1015
+ msgid "Clear Cache"
1016
+ msgstr "Vymazat cache"
1017
+
1018
+ #: includes/admin-settings-editing.php:3
1019
+ msgid "Editing Settings"
1020
+ msgstr "Nastavení úprav"
1021
+
1022
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
1023
+ #: includes/admin-settings-modules.php:10
1024
+ #: includes/admin-settings-post-types.php:10
1025
+ #: includes/admin-settings-templates.php:16
1026
+ msgid "Override network settings?"
1027
+ msgstr "Přepsat nastavení sítě?"
1028
+
1029
+ #: includes/admin-settings-editing.php:16
1030
+ msgid "Editing Capability"
1031
+ msgstr "Práva na úpravu"
1032
+
1033
+ #: includes/admin-settings-editing.php:17
1034
+ #, php-format
1035
+ msgid ""
1036
+ "Set the <a%s>capability</a> required for users to access advanced builder "
1037
+ "editing such as adding, deleting or moving modules."
1038
+ msgstr ""
1039
+ "Nastavte <a%s>oprávnění</a> vyžadované k pokročilé editaci stránek, jako je "
1040
+ "přidávání, odstraňování nebo přesun modulů."
1041
+
1042
+ #: includes/admin-settings-editing.php:21
1043
+ msgid "Global Templates Editing Capability"
1044
+ msgstr "Práva na úpravu globálních šablon"
1045
+
1046
+ #: includes/admin-settings-editing.php:22
1047
+ #, php-format
1048
+ msgid "Set the <a%s>capability</a> required for users to global templates."
1049
+ msgstr "Nastavte <a%s>práva</a>uživatele ke globálním šablonám"
1050
+
1051
+ #: includes/admin-settings-editing.php:28
1052
+ msgid "Save Editing Settings"
1053
+ msgstr "Uložit nastavení editace"
1054
+
1055
+ #: includes/admin-settings-help-button.php:8
1056
+ msgid "Help Button Settings"
1057
+ msgstr "Tlačítko “Přidat do košiku”"
1058
+
1059
+ #: includes/admin-settings-help-button.php:17
1060
+ msgid "Enable Help Button"
1061
+ msgstr "Povolit tlačítko nápovědy"
1062
+
1063
+ #: includes/admin-settings-help-button.php:23
1064
+ msgid "Help Tour"
1065
+ msgstr "Průvodce"
1066
+
1067
+ #: includes/admin-settings-help-button.php:27
1068
+ msgid "Enable Help Tour"
1069
+ msgstr "Povolit průvodce"
1070
+
1071
+ #: includes/admin-settings-help-button.php:31
1072
+ msgid "Help Video"
1073
+ msgstr "Pomocné video"
1074
+
1075
+ #: includes/admin-settings-help-button.php:35
1076
+ msgid "Enable Help Video"
1077
+ msgstr "Povolit pomocné video"
1078
+
1079
+ #: includes/admin-settings-help-button.php:39
1080
+ msgid "Help Video Embed Code"
1081
+ msgstr "Kód vloženého pomocného videa"
1082
+
1083
+ #: includes/admin-settings-help-button.php:45
1084
+ msgid "Knowledge Base"
1085
+ msgstr "Znalostní databáze"
1086
+
1087
+ #: includes/admin-settings-help-button.php:49
1088
+ msgid "Enable Knowledge Base"
1089
+ msgstr "Povolit znalostní databázi"
1090
+
1091
+ #: includes/admin-settings-help-button.php:53
1092
+ msgid "Knowledge Base URL"
1093
+ msgstr "URL znalostní databáze"
1094
+
1095
+ #: includes/admin-settings-help-button.php:59
1096
+ msgid "Forums"
1097
+ msgstr "Fóra"
1098
+
1099
+ #: includes/admin-settings-help-button.php:63
1100
+ msgid "Enable Forums"
1101
+ msgstr "Povolit fóra"
1102
+
1103
+ #: includes/admin-settings-help-button.php:67
1104
+ msgid "Forums URL"
1105
+ msgstr "URL fór"
1106
+
1107
+ #: includes/admin-settings-help-button.php:77
1108
+ msgid "Save Help Button Settings"
1109
+ msgstr "Uložit nastavení tlačítka nápovědy"
1110
+
1111
+ #: includes/admin-settings-icons.php:3
1112
+ msgid "Icon Settings"
1113
+ msgstr "Nastavení ikon"
1114
+
1115
+ #: includes/admin-settings-icons.php:13
1116
+ msgid "Icons for the main site must be managed in the network admin."
1117
+ msgstr "Ikony pro hlavní stránku musíte nastavit v administraci sítě."
1118
+
1119
+ #: includes/admin-settings-icons.php:33
1120
+ #, php-format
1121
+ msgid ""
1122
+ "Enable or disable icon sets using the options below or upload a custom icon "
1123
+ "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
1124
+ msgstr ""
1125
+ "Povolte nebo zakažte sady ikon za použití možností níže nebo nahrajte "
1126
+ "vlastní sadu ikon ze stránky <a%s>Icomoon</a> nebo <a%s>Fontello</a>."
1127
+
1128
+ #: includes/admin-settings-icons.php:48
1129
+ msgctxt "Plugin setup page: Delete icon set."
1130
+ msgid "Delete"
1131
+ msgstr "Vymazat"
1132
+
1133
+ #: includes/admin-settings-icons.php:59
1134
+ msgid "Upload Icon Set"
1135
+ msgstr "Nahrát sadu ikon"
1136
+
1137
+ #: includes/admin-settings-icons.php:60
1138
+ msgid "Save Icon Settings"
1139
+ msgstr "Uložit nastavení ikon"
1140
+
1141
+ #: includes/admin-settings-js-config.php:4
1142
+ msgid "Select File"
1143
+ msgstr "Zvolit soubor"
1144
+
1145
+ #: includes/admin-settings-js-config.php:5
1146
+ msgid ""
1147
+ "Please type \"uninstall\" in the box below to confirm that you really want "
1148
+ "to uninstall the page builder and all of its data."
1149
+ msgstr ""
1150
+ "Zadejte \"uninstall\" do pole níže pro potvrzení, že skutečně chcete "
1151
+ "odinstalovat editor stránek včetně všech jeho dat. "
1152
+
1153
+ #: includes/admin-settings-modules.php:3
1154
+ msgid "Enabled Modules"
1155
+ msgstr "Aktivované moduly"
1156
+
1157
+ #: includes/admin-settings-modules.php:16
1158
+ msgid "Check or uncheck modules below to enable or disable them."
1159
+ msgstr ""
1160
+ "Zaškrtněte nebo odškrtněte moduly níže pro jejich aktivaci nebo deaktivaci."
1161
+
1162
+ #: includes/admin-settings-modules.php:26
1163
+ msgctxt "Plugin setup page: Modules."
1164
+ msgid "All"
1165
+ msgstr "Všechny"
1166
+
1167
+ #: includes/admin-settings-modules.php:64
1168
+ msgid "Save Module Settings"
1169
+ msgstr "Uložit nastevení modulů"
1170
+
1171
+ #: includes/admin-settings-post-types.php:18
1172
+ msgid ""
1173
+ "Enter a comma separated list of the post types you would like the builder to "
1174
+ "work with."
1175
+ msgstr ""
1176
+ "Zadejte čárkou oddělený seznam typů článků, na kterých chcete pracovat s "
1177
+ "editorem stránek."
1178
+
1179
+ #: includes/admin-settings-post-types.php:19
1180
+ #: includes/admin-settings-post-types.php:39
1181
+ msgid "NOTE: Not all custom post types may be supported."
1182
+ msgstr "UPOZORNĚNÍ: Ne všechny vlastní typy článků mohou být podporované."
1183
+
1184
+ #: includes/admin-settings-post-types.php:34
1185
+ msgid "Example: page, post, product"
1186
+ msgstr "Například: stránka, článek, produkt"
1187
+
1188
+ #: includes/admin-settings-post-types.php:38
1189
+ msgid "Select the post types you would like the builder to work with."
1190
+ msgstr "Zvolte typy obsahu (článků), s kterými chcete používat editor stránek."
1191
+
1192
+ #: includes/admin-settings-post-types.php:70
1193
+ msgid "Save Post Types"
1194
+ msgstr "Uložit typy obsahu"
1195
+
1196
+ #: includes/admin-settings-templates-override.php:1
1197
+ #: includes/admin-settings-templates-override.php:12
1198
+ msgid "Override Core Templates"
1199
+ msgstr "Přepsat základní šablony"
1200
+
1201
+ #: includes/admin-settings-templates-override.php:3
1202
+ msgid ""
1203
+ "Enter the ID of a site on the network whose templates should override core "
1204
+ "builder templates. Leave this field blank if you do not wish to override "
1205
+ "core templates."
1206
+ msgstr ""
1207
+ "Zadejte ID stránky v síti, jejíž šablony mají přepsat základní šablony "
1208
+ "editora. Ponechte toto pole prázdné, pokud si nepřejete přepsat základní "
1209
+ "šablony."
1210
+
1211
+ #: includes/admin-settings-templates-override.php:8
1212
+ msgid ""
1213
+ "Use this setting to override core builder templates with your templates."
1214
+ msgstr ""
1215
+ "Použijte toto nastavení pro přepsání základních šablon editora vlastními."
1216
+
1217
+ #: includes/admin-settings-templates-override.php:17
1218
+ msgid ""
1219
+ "You may also choose to show your row and module templates as sections within "
1220
+ "the builder panel. A new section will be created for each row or module "
1221
+ "category that you have defined."
1222
+ msgstr ""
1223
+ "Také je možné zobrazit Vaše šablony řádků a modulů jako sekce v editoru "
1224
+ "stránek. Nová sekce se vytvoří pre každou kategorii řádků nebo modulů, "
1225
+ "kterou vytvoříte."
1226
+
1227
+ #: includes/admin-settings-templates-override.php:21
1228
+ msgid "Show Row Templates?"
1229
+ msgstr "Zobrazit šablony řádků?"
1230
+
1231
+ #: includes/admin-settings-templates-override.php:27
1232
+ msgid "Show Module Templates?"
1233
+ msgstr "Zobrazit šablony modulů?"
1234
+
1235
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1236
+ msgid "Template Settings"
1237
+ msgstr "Nastavení šablon"
1238
+
1239
+ #: includes/admin-settings-templates.php:22
1240
+ msgid "Enable Templates"
1241
+ msgstr "Povolit šablony"
1242
+
1243
+ #: includes/admin-settings-templates.php:23
1244
+ msgid ""
1245
+ "Use this setting to enable or disable templates in the builder interface."
1246
+ msgstr ""
1247
+ "Použít toto nastavení pro povolení nebo zakázání šablon v editoru stránek."
1248
+
1249
+ #: includes/admin-settings-templates.php:25
1250
+ msgid "Enable All Templates"
1251
+ msgstr "Povolit všechny šablony"
1252
+
1253
+ #: includes/admin-settings-templates.php:26
1254
+ msgid "Enable Core Templates Only"
1255
+ msgstr "Povolit jen základní šablony"
1256
+
1257
+ #: includes/admin-settings-templates.php:27
1258
+ msgid "Enable User Templates Only"
1259
+ msgstr "Povolit jen uživatelské šablony"
1260
+
1261
+ #: includes/admin-settings-templates.php:28
1262
+ msgid "Disable All Templates"
1263
+ msgstr "Zakázat všechny šablony"
1264
+
1265
+ #: includes/admin-settings-templates.php:31
1266
+ #: includes/admin-settings-templates.php:36
1267
+ msgid "Enable Templates Admin"
1268
+ msgstr "Povolit administraci šablon"
1269
+
1270
+ #: includes/admin-settings-templates.php:32
1271
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1272
+ msgstr "Použít toto nastavení pro úpravu šablon v administraci WordPressu."
1273
+
1274
+ #: includes/admin-settings-templates.php:50
1275
+ msgid "Save Template Settings"
1276
+ msgstr "Uložit nastavení šablon"
1277
+
1278
+ #: includes/admin-settings-uninstall.php:5
1279
+ msgid ""
1280
+ "Clicking the button below will uninstall the page builder plugin and delete "
1281
+ "all of the data associated with it. You can uninstall or deactivate the page "
1282
+ "builder from the plugins page instead if you do not wish to delete the data."
1283
+ msgstr ""
1284
+ "Kliknutím na tlačítko níže odinstalujete modul editoru stránek a odstraníte "
1285
+ "všechny data s ním asociované. Odinstalovat nebo deaktivovat editor stránek "
1286
+ "můžete i v sekci modulů, pokud si nepřejete odstranit data."
1287
+
1288
+ #: includes/admin-settings-uninstall.php:7
1289
+ msgid ""
1290
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
1291
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
1292
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
1293
+ "its data using those meta values."
1294
+ msgstr ""
1295
+ "Editor neodstraní meta data článků <code>_fl_builder_data</code>, "
1296
+ "<code>_fl_builder_draft</code> a <code>_fl_builder_enabled</code> pro "
1297
+ "případ, že se rozhodnete editor znovu nainstalovat. V tomto případě se poté "
1298
+ "data použijí na kompletní obnovení. "
1299
+
1300
+ #: includes/admin-settings-upgrade.php:5
1301
+ msgid ""
1302
+ "You are currently running the lite version of the Beaver Builder plugin. "
1303
+ "Upgrade today for access to premium features such as advanced modules, "
1304
+ "templates, support and more!"
1305
+ msgstr ""
1306
+ "Momentálně používáte odlehčenou (Lite) verzi modulu Beaver Builder. "
1307
+ "Aktualizujte ještě dnes pro získání prémiových vylepšení jako jsou pokročilé "
1308
+ "moduly, šablony, technická podpora a více!"
1309
+
1310
+ #: includes/admin-settings-upgrade.php:7
1311
+ msgid "Upgrade Now"
1312
+ msgstr "Aktualizovat"
1313
+
1314
+ #: includes/admin-settings-upgrade.php:9
1315
+ msgid "Learn More"
1316
+ msgstr "Zjistit více"
1317
+
1318
+ #: includes/admin-templates-edit.php:3
1319
+ msgid "Edit Template"
1320
+ msgstr "Upravit šablonu"
1321
+
1322
+ #: includes/admin-templates-edit.php:8
1323
+ msgctxt "Template edit form field label. Template name."
1324
+ msgid "Name"
1325
+ msgstr "Název"
1326
+
1327
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1328
+ #: modules/post-carousel/post-carousel.php:255
1329
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:460
1330
+ msgid "Image"
1331
+ msgstr "Obrázek"
1332
+
1333
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139
1334
+ #: includes/row-settings.php:179 includes/template-settings.php:23
1335
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1336
+ #: modules/content-slider/content-slider.php:473
1337
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:626
1338
+ #: modules/post-slider/post-slider.php:645
1339
+ msgid "Position"
1340
+ msgstr "Pozice"
1341
+
1342
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1343
+ msgctxt "Template edit form field label. Is template premium one?"
1344
+ msgid "Premium"
1345
+ msgstr "Prémiová"
1346
+
1347
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1348
+ #: includes/global-settings.php:18 includes/global-settings.php:110
1349
+ #: includes/global-settings.php:124 includes/node-template-settings.php:22
1350
+ #: includes/row-settings.php:331 includes/template-settings.php:31
1351
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
1352
+ #: modules/content-slider/content-slider.php:210
1353
+ #: modules/content-slider/content-slider.php:224
1354
+ #: modules/content-slider/content-slider.php:258
1355
+ #: modules/content-slider/content-slider.php:267
1356
+ #: modules/content-slider/content-slider.php:538
1357
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1358
+ #: modules/menu/menu.php:167 modules/menu/menu.php:358
1359
+ #: modules/post-carousel/post-carousel.php:139
1360
+ #: modules/post-carousel/post-carousel.php:155
1361
+ #: modules/post-carousel/post-carousel.php:182
1362
+ #: modules/post-carousel/post-carousel.php:191
1363
+ #: modules/post-carousel/post-carousel.php:232
1364
+ #: modules/post-carousel/post-carousel.php:283
1365
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:357
1366
+ #: modules/post-slider/post-slider.php:382
1367
+ #: modules/post-slider/post-slider.php:409
1368
+ #: modules/post-slider/post-slider.php:418
1369
+ #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:323
1370
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1371
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1372
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1373
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1374
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1375
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1376
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1377
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1378
+ #: modules/slideshow/slideshow.php:650
1379
+ #: modules/social-buttons/social-buttons.php:111
1380
+ #: modules/social-buttons/social-buttons.php:120
1381
+ #: modules/social-buttons/social-buttons.php:129
1382
+ #: modules/testimonials/testimonials.php:85
1383
+ #: modules/testimonials/testimonials.php:124
1384
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1385
+ #: modules/video/video.php:123
1386
+ msgid "No"
1387
+ msgstr "Ne"
1388
+
1389
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1390
+ #: includes/global-settings.php:19 includes/global-settings.php:111
1391
+ #: includes/global-settings.php:125 includes/node-template-settings.php:23
1392
+ #: includes/row-settings.php:332 includes/template-settings.php:32
1393
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
1394
+ #: modules/content-slider/content-slider.php:211
1395
+ #: modules/content-slider/content-slider.php:225
1396
+ #: modules/content-slider/content-slider.php:259
1397
+ #: modules/content-slider/content-slider.php:268
1398
+ #: modules/content-slider/content-slider.php:539
1399
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1400
+ #: modules/menu/menu.php:168 modules/menu/menu.php:359
1401
+ #: modules/post-carousel/post-carousel.php:140
1402
+ #: modules/post-carousel/post-carousel.php:156
1403
+ #: modules/post-carousel/post-carousel.php:183
1404
+ #: modules/post-carousel/post-carousel.php:192
1405
+ #: modules/post-carousel/post-carousel.php:233
1406
+ #: modules/post-carousel/post-carousel.php:282
1407
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:358
1408
+ #: modules/post-slider/post-slider.php:383
1409
+ #: modules/post-slider/post-slider.php:410
1410
+ #: modules/post-slider/post-slider.php:419
1411
+ #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:324
1412
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1413
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1414
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1415
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1416
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1417
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1418
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1419
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1420
+ #: modules/slideshow/slideshow.php:651
1421
+ #: modules/social-buttons/social-buttons.php:110
1422
+ #: modules/social-buttons/social-buttons.php:119
1423
+ #: modules/social-buttons/social-buttons.php:128
1424
+ #: modules/testimonials/testimonials.php:86
1425
+ #: modules/testimonials/testimonials.php:125
1426
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1427
+ #: modules/video/video.php:124
1428
+ msgid "Yes"
1429
+ msgstr "Ano"
1430
+
1431
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1432
+ msgid "Category"
1433
+ msgstr "Kategorie"
1434
+
1435
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1436
+ msgctxt "Templates category label."
1437
+ msgid "Landing Pages"
1438
+ msgstr "Vstupní stránky"
1439
+
1440
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1441
+ msgctxt "Templates category label."
1442
+ msgid "Company Info"
1443
+ msgstr "Informační"
1444
+
1445
+ #: includes/admin-templates-edit.php:40
1446
+ msgid "Update Template"
1447
+ msgstr "Aktualizace šablony"
1448
+
1449
+ #: includes/admin-templates.php:3
1450
+ msgid "Page Builder Template"
1451
+ msgstr "Šablona editoru stránek"
1452
+
1453
+ #: includes/admin-templates.php:10
1454
+ msgctxt "Templates list column label."
1455
+ msgid "Name"
1456
+ msgstr "Název"
1457
+
1458
+ #: includes/admin-templates.php:11
1459
+ msgctxt "Templates list column label."
1460
+ msgid "Category"
1461
+ msgstr "Kategorie"
1462
+
1463
+ #: includes/admin-templates.php:12
1464
+ msgctxt "Templates list column label. Is template premium one?"
1465
+ msgid "Premium"
1466
+ msgstr "Prémiová"
1467
+
1468
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
1469
+ #: includes/template-selector.php:70
1470
+ msgid "Edit"
1471
+ msgstr "Upravit"
1472
+
1473
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1474
+ msgid "Delete"
1475
+ msgstr "Smazat"
1476
+
1477
+ #: includes/admin-templates.php:40 includes/ui-js-config.php:32
1478
+ msgid "Do you really want to delete this template?"
1479
+ msgstr "Opravdu chcete tuto šablonu smazat?"
1480
+
1481
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:31
1482
+ #: includes/ui-js-templates.php:55
1483
+ msgid "Column Settings"
1484
+ msgstr "Nastavení sloupce"
1485
+
1486
+ #: includes/column-settings.php:7 includes/module-settings.php:87
1487
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1488
+ #: modules/button/button.php:117 modules/button/button.php:155
1489
+ #: modules/button/button.php:159 modules/callout/callout.php:242
1490
+ #: modules/callout/callout.php:554
1491
+ #: modules/content-slider/content-slider.php:426
1492
+ #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1493
+ #: modules/cta/cta.php:309 modules/heading/heading.php:69
1494
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1495
+ #: modules/menu/menu.php:146 modules/post-carousel/post-carousel.php:389
1496
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:579
1497
+ #: modules/pricing-table/pricing-table.php:43
1498
+ #: modules/pricing-table/pricing-table.php:155
1499
+ #: modules/separator/separator.php:72
1500
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1501
+ msgid "Style"
1502
+ msgstr "Styl"
1503
+
1504
+ #: includes/column-settings.php:14
1505
+ msgid "Column Width"
1506
+ msgstr "Šířka sloupce"
1507
+
1508
+ #: includes/column-settings.php:26 modules/button/button.php:66
1509
+ #: modules/callout/callout.php:226 modules/callout/callout.php:479
1510
+ #: modules/callout/callout.php:495
1511
+ #: modules/content-slider/content-slider.php:383
1512
+ #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1513
+ #: modules/cta/cta.php:222 modules/menu/menu.php:174
1514
+ #: modules/post-slider/post-slider.php:622
1515
+ msgid "Text"
1516
+ msgstr "Text"
1517
+
1518
+ #: includes/column-settings.php:30 includes/column-settings.php:93
1519
+ #: includes/column-settings.php:248 includes/row-settings.php:133
1520
+ #: includes/row-settings.php:427 modules/callout/callout.php:392
1521
+ #: modules/content-slider/content-slider.php:338
1522
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1523
+ #: modules/separator/separator.php:34
1524
+ msgid "Color"
1525
+ msgstr "Barva"
1526
+
1527
+ #: includes/column-settings.php:38 includes/row-settings.php:60
1528
+ #: modules/menu/menu.php:178 modules/post-carousel/post-carousel.php:401
1529
+ #: modules/post-slider/post-slider.php:699
1530
+ msgid "Link Color"
1531
+ msgstr "Barva odkazu"
1532
+
1533
+ #: includes/column-settings.php:46 includes/row-settings.php:68
1534
+ #: modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406
1535
+ #: modules/post-slider/post-slider.php:715
1536
+ msgid "Link Hover Color"
1537
+ msgstr "Barva odkazu při najetí myší"
1538
+
1539
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1540
+ msgid "Heading Color"
1541
+ msgstr "Barva nadpisu"
1542
+
1543
+ #: includes/column-settings.php:63 includes/row-settings.php:85
1544
+ #: modules/post-slider/post-slider.php:463
1545
+ msgid "Background"
1546
+ msgstr "Pozadí"
1547
+
1548
+ #: includes/column-settings.php:67 includes/column-settings.php:215
1549
+ #: includes/row-settings.php:89 includes/row-settings.php:394
1550
+ #: modules/callout/callout.php:475
1551
+ #: modules/content-slider/content-slider.php:332
1552
+ #: modules/content-slider/content-slider.php:379
1553
+ #: modules/content-slider/content-slider.php:597
1554
+ #: modules/content-slider/content-slider.php:739
1555
+ #: modules/slideshow/slideshow.php:347
1556
+ msgid "Type"
1557
+ msgstr "Typ"
1558
+
1559
+ #: includes/column-settings.php:70 includes/row-settings.php:92
1560
+ #: modules/content-slider/content-slider.php:339
1561
+ msgctxt "Background type."
1562
+ msgid "None"
1563
+ msgstr "Žádný"
1564
+
1565
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1566
+ msgctxt "Background type."
1567
+ msgid "Color"
1568
+ msgstr "Barva"
1569
+
1570
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1571
+ msgctxt "Background type."
1572
+ msgid "Photo"
1573
+ msgstr "Obrázek"
1574
+
1575
+ #: includes/column-settings.php:89 includes/row-settings.php:129
1576
+ #: modules/button/button.php:124 modules/callout/callout.php:405
1577
+ #: modules/callout/callout.php:519
1578
+ #: modules/content-slider/content-slider.php:364
1579
+ #: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
1580
+ #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1581
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1582
+ msgid "Background Color"
1583
+ msgstr "Barva pozadí"
1584
+
1585
+ #: includes/column-settings.php:101 includes/column-settings.php:256
1586
+ #: includes/row-settings.php:141 includes/row-settings.php:435
1587
+ #: modules/separator/separator.php:44
1588
+ msgid "Opacity"
1589
+ msgstr "Průhlednost"
1590
+
1591
+ #: includes/column-settings.php:113 includes/row-settings.php:153
1592
+ #: modules/content-slider/content-slider.php:360
1593
+ msgid "Background Photo"
1594
+ msgstr "Obrázek pozadí"
1595
+
1596
+ #: includes/column-settings.php:117 includes/row-settings.php:157
1597
+ #: includes/row-settings.php:345 modules/callout/callout.php:317
1598
+ #: modules/callout/callout.php:333 modules/callout/callout.php:337
1599
+ #: modules/content-slider/content-slider.php:336
1600
+ #: modules/content-slider/content-slider.php:405
1601
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
1602
+ #: modules/photo/photo.php:408
1603
+ msgid "Photo"
1604
+ msgstr "Obrázek"
1605
+
1606
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1607
+ msgid "Repeat"
1608
+ msgstr "Opakování"
1609
+
1610
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1611
+ msgctxt "Background repeat."
1612
+ msgid "None"
1613
+ msgstr "Žádné"
1614
+
1615
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1616
+ msgctxt "Background repeat."
1617
+ msgid "Tile"
1618
+ msgstr "Dlaždice"
1619
+
1620
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1621
+ msgctxt "Background repeat."
1622
+ msgid "Horizontal"
1623
+ msgstr "Horizontálně"
1624
+
1625
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1626
+ msgctxt "Background repeat."
1627
+ msgid "Vertical"
1628
+ msgstr "Vertikálně"
1629
+
1630
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1631
+ msgid ""
1632
+ "Repeat applies to how the image should display in the background. Choosing "
1633
+ "none will display the image as uploaded. Tile will repeat the image as many "
1634
+ "times as needed to fill the background horizontally and vertically. You can "
1635
+ "also specify the image to only repeat horizontally or vertically."
1636
+ msgstr ""
1637
+ "Opakování určí, jak se obrázek zobrazí na pozadí. Pokud zvolíte “žádné”, "
1638
+ "obrázek sa zobrazí jak je. Dlaždice zopakují obrázek tolikrát, aby byla "
1639
+ "vyplněna celá šířka a výška pozadí. K dispozici je i možnost opakovat "
1640
+ "obrázek buď horizontálním nebo vertikálním směrem."
1641
+
1642
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1643
+ msgid "Left Top"
1644
+ msgstr "Vlevo nahoře"
1645
+
1646
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1647
+ msgid "Left Center"
1648
+ msgstr "Vlevo uprostřed"
1649
+
1650
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1651
+ msgid "Left Bottom"
1652
+ msgstr "Vlevo dole"
1653
+
1654
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1655
+ msgid "Right Top"
1656
+ msgstr "Vpravo nahoře"
1657
+
1658
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1659
+ msgid "Right Center"
1660
+ msgstr "Vpravo uprostřed"
1661
+
1662
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1663
+ msgid "Right Bottom"
1664
+ msgstr "Vpravo dole"
1665
+
1666
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1667
+ msgid "Center Top"
1668
+ msgstr "Uprostřed nahoře"
1669
+
1670
+ #: includes/column-settings.php:149 includes/row-settings.php:189
1671
+ #: modules/button/button.php:227 modules/callout/callout.php:252
1672
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1673
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1674
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1675
+ #: modules/menu/menu.php:158 modules/photo/photo.php:434
1676
+ #: modules/social-buttons/social-buttons.php:100
1677
+ msgid "Center"
1678
+ msgstr "Uprostřed"
1679
+
1680
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1681
+ msgid "Center Bottom"
1682
+ msgstr "Uprostřed dole"
1683
+
1684
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1685
+ msgid "Position will tell the image where it should sit in the background."
1686
+ msgstr "Pozicí nastavíte, kde se obrázek na pozadí zobrazí"
1687
+
1688
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1689
+ msgid "Attachment"
1690
+ msgstr "Příloha"
1691
+
1692
+ #: includes/column-settings.php:162 includes/row-settings.php:202
1693
+ #: modules/post-grid/post-grid.php:78
1694
+ msgid "Scroll"
1695
+ msgstr "Rolovat"
1696
+
1697
+ #: includes/column-settings.php:163 includes/global-settings.php:69
1698
+ #: includes/global-settings.php:83 includes/row-settings.php:19
1699
+ #: includes/row-settings.php:37 includes/row-settings.php:203
1700
+ msgid "Fixed"
1701
+ msgstr "Pevná"
1702
+
1703
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1704
+ msgid ""
1705
+ "Attachment will specify how the image reacts when scrolling a page. When "
1706
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1707
+ "the default setting. Fixed will allow the image to scroll within the "
1708
+ "background if fill is selected in the scale setting."
1709
+ msgstr ""
1710
+ "Příloha určí, jak bude obrázek reagovat při rolování stránky. Když zvolíte "
1711
+ "rolování, což je přednastavená honota, obrázek se roluje společně se "
1712
+ "stránkou. Pevné připojení umožní obrázku rolovat v pozadí, pokud je v "
1713
+ "natažení zvoleno vyplnění pozadí."
1714
+
1715
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1716
+ msgid "Scale"
1717
+ msgstr "Měřítko"
1718
+
1719
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1720
+ msgctxt "Background scale."
1721
+ msgid "None"
1722
+ msgstr "Žádné"
1723
+
1724
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1725
+ msgid "Fit"
1726
+ msgstr "Přizpůsobit"
1727
+
1728
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1729
+ msgid "Fill"
1730
+ msgstr "Vyplnit"
1731
+
1732
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1733
+ msgid ""
1734
+ "Scale applies to how the image should display in the background. You can "
1735
+ "select either fill or fit to the background."
1736
+ msgstr ""
1737
+ "Měřítko pozadí určí, jak se obrázek zobrazí na pozadí řádku. Můžete obrázek "
1738
+ "natáhnout na celou šířku nebo ho přizpůsobit, aby se zobrazil na pozadí "
1739
+ "řádku ceý."
1740
+
1741
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1742
+ msgid "Background Overlay"
1743
+ msgstr "Překrytí pozadí"
1744
+
1745
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1746
+ msgid "Overlay Color"
1747
+ msgstr "Barva překrytí"
1748
+
1749
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1750
+ msgid "Overlay Opacity"
1751
+ msgstr "Neprůhlednost překrytí"
1752
+
1753
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1754
+ msgid "Border"
1755
+ msgstr "Okraj"
1756
+
1757
+ #: includes/column-settings.php:217 includes/row-settings.php:396
1758
+ msgid ""
1759
+ "The type of border to use. Double borders must have a width of at least 3px "
1760
+ "to render properly."
1761
+ msgstr ""
1762
+ "Typo použitého okraje. Dvojitý okraj musí mít šířku alespoň 3px, aby se "
1763
+ "zobrazil správně."
1764
+
1765
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1766
+ msgctxt "Border type."
1767
+ msgid "None"
1768
+ msgstr "Žádný"
1769
+
1770
+ #: includes/column-settings.php:220 includes/row-settings.php:399
1771
+ #: modules/separator/separator.php:75
1772
+ msgctxt "Border type."
1773
+ msgid "Solid"
1774
+ msgstr "Plný"
1775
+
1776
+ #: includes/column-settings.php:221 includes/row-settings.php:400
1777
+ #: modules/separator/separator.php:76
1778
+ msgctxt "Border type."
1779
+ msgid "Dashed"
1780
+ msgstr "Přerušovaný"
1781
+
1782
+ #: includes/column-settings.php:222 includes/row-settings.php:401
1783
+ #: modules/separator/separator.php:77
1784
+ msgctxt "Border type."
1785
+ msgid "Dotted"
1786
+ msgstr "Tečkovaný"
1787
+
1788
+ #: includes/column-settings.php:223 includes/row-settings.php:402
1789
+ #: modules/separator/separator.php:78
1790
+ msgctxt "Border type."
1791
+ msgid "Double"
1792
+ msgstr "Dvojitý"
1793
+
1794
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1795
+ msgid "Top Width"
1796
+ msgstr "Šířka nahoře"
1797
+
1798
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1799
+ msgid "Bottom Width"
1800
+ msgstr "Šířka dole"
1801
+
1802
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1803
+ msgid "Left Width"
1804
+ msgstr "Šířka vlevo"
1805
+
1806
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1807
+ msgid "Right Width"
1808
+ msgstr "Šířka vpravo"
1809
+
1810
+ #: includes/column-settings.php:318 includes/module-settings.php:6
1811
+ #: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
1812
+ msgid "Advanced"
1813
+ msgstr "Pokročilé"
1814
+
1815
+ #: includes/column-settings.php:321 includes/global-settings.php:41
1816
+ #: includes/global-settings.php:94 includes/module-settings.php:9
1817
+ #: includes/row-settings.php:500
1818
+ msgid "Margins"
1819
+ msgstr "Odsazení"
1820
+
1821
+ #: includes/column-settings.php:325 includes/column-settings.php:378
1822
+ #: includes/module-settings.php:13 includes/row-settings.php:504
1823
+ #: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1824
+ msgid "Top"
1825
+ msgstr "Nahoře"
1826
+
1827
+ #: includes/column-settings.php:337 includes/column-settings.php:390
1828
+ #: includes/module-settings.php:25 includes/row-settings.php:516
1829
+ #: includes/row-settings.php:569 modules/post-slider/post-slider.php:632
1830
+ #: modules/slideshow/slideshow.php:482
1831
+ msgid "Bottom"
1832
+ msgstr "Dole"
1833
+
1834
+ #: includes/column-settings.php:349 includes/column-settings.php:402
1835
+ #: includes/module-settings.php:37 includes/row-settings.php:528
1836
+ #: includes/row-settings.php:581 modules/button/button.php:228
1837
+ #: modules/callout/callout.php:253
1838
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1839
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
1840
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1841
+ #: modules/menu/menu.php:157 modules/photo/photo.php:433
1842
+ #: modules/post-slider/post-slider.php:630
1843
+ #: modules/post-slider/post-slider.php:649
1844
+ #: modules/social-buttons/social-buttons.php:101
1845
+ msgid "Left"
1846
+ msgstr "Vlevo"
1847
+
1848
+ #: includes/column-settings.php:361 includes/column-settings.php:414
1849
+ #: includes/module-settings.php:49 includes/row-settings.php:540
1850
+ #: includes/row-settings.php:593 modules/button/button.php:229
1851
+ #: modules/callout/callout.php:254
1852
+ #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1853
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
1854
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1855
+ #: modules/menu/menu.php:159 modules/photo/photo.php:435
1856
+ #: modules/post-slider/post-slider.php:631
1857
+ #: modules/post-slider/post-slider.php:650
1858
+ #: modules/social-buttons/social-buttons.php:102
1859
+ msgid "Right"
1860
+ msgstr "Vpravo"
1861
+
1862
+ #: includes/column-settings.php:374 includes/global-settings.php:49
1863
+ #: includes/row-settings.php:553 modules/button/button.php:242
1864
+ #: modules/callout/callout.php:609
1865
+ #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1866
+ #: modules/subscribe-form/subscribe-form.php:273
1867
+ msgid "Padding"
1868
+ msgstr "Vnitřní odsazení"
1869
+
1870
+ #: includes/column-settings.php:427 includes/global-settings.php:103
1871
+ #: includes/module-settings.php:62 includes/row-settings.php:606
1872
+ msgid "Responsive Layout"
1873
+ msgstr "Responzivní rozvržení"
1874
+
1875
+ #: includes/column-settings.php:431 includes/module-settings.php:66
1876
+ #: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
1877
+ msgid "Display"
1878
+ msgstr "Zobrazení"
1879
+
1880
+ #: includes/column-settings.php:433 includes/module-settings.php:68
1881
+ #: includes/row-settings.php:612
1882
+ msgid "Always"
1883
+ msgstr "Vždy"
1884
+
1885
+ #: includes/column-settings.php:434 includes/module-settings.php:69
1886
+ #: includes/row-settings.php:613
1887
+ msgid "Large Devices Only"
1888
+ msgstr "Pouze na velkých zařízeních"
1889
+
1890
+ #: includes/column-settings.php:435 includes/module-settings.php:70
1891
+ #: includes/row-settings.php:614
1892
+ msgid "Large &amp; Medium Devices Only"
1893
+ msgstr "Pouze na velkých a středních zařízeních"
1894
+
1895
+ #: includes/column-settings.php:436 includes/module-settings.php:71
1896
+ #: includes/row-settings.php:615
1897
+ msgid "Medium Devices Only"
1898
+ msgstr "Pouze na středních zařízeních"
1899
+
1900
+ #: includes/column-settings.php:437 includes/module-settings.php:72
1901
+ #: includes/row-settings.php:616
1902
+ msgid "Medium &amp; Small Devices Only"
1903
+ msgstr "Pouze na středních a malých zařízeních"
1904
+
1905
+ #: includes/column-settings.php:438 includes/module-settings.php:73
1906
+ #: includes/row-settings.php:617
1907
+ msgid "Small Devices Only"
1908
+ msgstr "Pouze na malých zařízeních"
1909
+
1910
+ #: includes/column-settings.php:440
1911
+ msgid "Choose whether to show or hide this column at different device sizes."
1912
+ msgstr ""
1913
+ "Zvolte, zda se má tento sloupec zobrazit na zařízeních různých velikostí."
1914
+
1915
+ #: includes/column-settings.php:447
1916
+ msgid "Medium Device Width"
1917
+ msgstr "Šířka pro středně velké zařízení"
1918
+
1919
+ #: includes/column-settings.php:448
1920
+ msgid "The width of this column on medium devices such as tablets."
1921
+ msgstr "Šířka tohoto sloupce na středně velkých zařízeních jakou jsou tablety."
1922
+
1923
+ #: includes/column-settings.php:450 includes/column-settings.php:478
1924
+ #: modules/callout/callout.php:284
1925
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1926
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
1927
+ #: modules/heading/heading.php:174 modules/menu/menu.php:156
1928
+ #: modules/post-slider/post-slider.php:602
1929
+ msgid "Default"
1930
+ msgstr "Přednastavené"
1931
+
1932
+ #: includes/column-settings.php:451 includes/column-settings.php:479
1933
+ #: modules/button/button.php:202 modules/callout/callout.php:285
1934
+ #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1935
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
1936
+ #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:603
1937
+ #: modules/social-buttons/social-buttons.php:74
1938
+ msgid "Custom"
1939
+ msgstr "Vlastní"
1940
+
1941
+ #: includes/column-settings.php:464
1942
+ msgid "Custom Medium Device Width"
1943
+ msgstr "Vlastní šířka na středně malých zařízeních"
1944
+
1945
+ #: includes/column-settings.php:475
1946
+ msgid "Small Device Width"
1947
+ msgstr "Šířka pro malé zařízení"
1948
+
1949
+ #: includes/column-settings.php:476
1950
+ msgid "The width of this column on small devices such as phones."
1951
+ msgstr "Šířka tohoto sloupce na malých zařízeních jako jsou telefony."
1952
+
1953
+ #: includes/column-settings.php:492
1954
+ msgid "Custom Small Device Width"
1955
+ msgstr "Vlastní šířka na malých zařízeních"
1956
+
1957
+ #: includes/column-settings.php:504 includes/module-settings.php:115
1958
+ #: includes/row-settings.php:627
1959
+ msgid "CSS Selectors"
1960
+ msgstr "CSS selektor"
1961
+
1962
+ #: includes/column-settings.php:508 includes/loop-settings.php:28
1963
+ #: includes/module-settings.php:119 includes/row-settings.php:631
1964
+ msgid "ID"
1965
+ msgstr "ID"
1966
+
1967
+ #: includes/column-settings.php:509
1968
+ msgid ""
1969
+ "A unique ID that will be applied to this column's HTML. Must start with a "
1970
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
1971
+ msgstr ""
1972
+ "Unikátní ID které bude aplikováno na HTML tohoto sloupce. Musí začínat "
1973
+ "písmenem a obsahovat pouze pomlčky, podtržítka, písmena a čísla. Mezery "
1974
+ "nejsou povolené."
1975
+
1976
+ #: includes/column-settings.php:516
1977
+ msgid "CSS Class"
1978
+ msgstr "Třída CSS"
1979
+
1980
+ #: includes/column-settings.php:517
1981
+ msgid ""
1982
+ "A class that will be applied to this column's HTML. Must start with a letter "
1983
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
1984
+ "classes with spaces."
1985
+ msgstr ""
1986
+ "Třída která bude aplikována na HTML tohoto sloupce. Musí začínat písmenem a "
1987
+ "obsahovat pouze pomlčky, podtržítka, písmena a čísla. Více tříd oddělte "
1988
+ "mezerami."
1989
+
1990
+ #: includes/field-form.php:28
1991
+ #, php-format
1992
+ msgctxt "%s stands for form field label."
1993
+ msgid "Edit %s"
1994
+ msgstr "%s &rarr; upravit"
1995
+
1996
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
1997
+ msgid "Select Icon"
1998
+ msgstr "Zvolit ikonu"
1999
+
2000
+ #: includes/field-icon.php:5 includes/field-photo.php:13
2001
+ msgid "Replace"
2002
+ msgstr "Nahradit"
2003
+
2004
+ #: includes/field-icon.php:7 includes/ui-js-config.php:65
2005
+ #: includes/ui-js-templates.php:15 includes/ui-js-templates.php:32
2006
+ #: includes/ui-js-templates.php:56
2007
+ msgid "Remove"
2008
+ msgstr "Odstranit"
2009
+
2010
+ #: includes/field-link.php:3
2011
+ msgid "Select"
2012
+ msgstr "Zvolit"
2013
+
2014
+ #: includes/field-link.php:5
2015
+ msgid "Enter a post title to search."
2016
+ msgstr "Zadejte název hledaného článku."
2017
+
2018
+ #: includes/field-link.php:6 includes/field-suggest.php:7
2019
+ msgid "Start typing..."
2020
+ msgstr "Začněte psát…"
2021
+
2022
+ #: includes/field-link.php:7 includes/icon-selector.php:28
2023
+ #: includes/settings.php:71 includes/template-selector.php:92
2024
+ #: includes/ui-js-config.php:22 includes/ui-js-templates.php:72
2025
+ msgid "Cancel"
2026
+ msgstr "Zrušit"
2027
+
2028
+ #: includes/field-multiple-photos.php:20
2029
+ #, php-format
2030
+ msgid "1 Photo Selected"
2031
+ msgid_plural "%d Photos Selected"
2032
+ msgstr[0] "1 obrázek zvolený"
2033
+ msgstr[1] "%d obrázky zvolené"
2034
+ msgstr[2] "%d obrázků zvolených"
2035
+
2036
+ #: includes/field-multiple-photos.php:22
2037
+ msgid "Create Gallery"
2038
+ msgstr "Vytvořit galerii"
2039
+
2040
+ #: includes/field-multiple-photos.php:23
2041
+ msgid "Edit Gallery"
2042
+ msgstr "Upravit galerii"
2043
+
2044
+ #: includes/field-multiple-photos.php:24
2045
+ msgid "Add Photos"
2046
+ msgstr "Přidat obrázky"
2047
+
2048
+ #: includes/field-photo.php:3 includes/ui-js-config.php:71
2049
+ msgid "Select Photo"
2050
+ msgstr "Zvolit obrázek"
2051
+
2052
+ #: includes/field-video.php:3 includes/ui-js-config.php:73
2053
+ msgid "Select Video"
2054
+ msgstr "Zvolit video"
2055
+
2056
+ #: includes/field-video.php:17
2057
+ msgid "Replace Video"
2058
+ msgstr "Nahradit video"
2059
+
2060
+ #: includes/global-settings.php:7 includes/node-template-settings.php:7
2061
+ #: includes/template-settings.php:7 includes/user-template-settings.php:7
2062
+ #: modules/accordion/accordion.php:110 modules/button/button.php:59
2063
+ #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
2064
+ #: modules/content-slider/content-slider.php:191
2065
+ #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2066
+ #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
2067
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2068
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/menu/menu.php:82
2069
+ #: modules/photo/photo.php:384 modules/pricing-table/pricing-table.php:87
2070
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2071
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2072
+ #: modules/social-buttons/social-buttons.php:64
2073
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
2074
+ #: modules/testimonials/testimonials.php:30
2075
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
2076
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
2077
+ msgid "General"
2078
+ msgstr "Všeobecné"
2079
+
2080
+ #: includes/global-settings.php:8
2081
+ msgid "Note: These settings apply to all posts and pages."
2082
+ msgstr "Upozornění: Tato nastavení se aplikují na všechny články a stránky."
2083
+
2084
+ #: includes/global-settings.php:11
2085
+ msgid "Default Page Heading"
2086
+ msgstr "Přednastavený hlavní nadpis stránky"
2087
+
2088
+ #: includes/global-settings.php:15
2089
+ msgctxt ""
2090
+ "General settings form field label. Intended meaning: \"Show page heading?\""
2091
+ msgid "Show"
2092
+ msgstr "Zobrazit"
2093
+
2094
+ #: includes/global-settings.php:26
2095
+ msgid ""
2096
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
2097
+ "You will also be required to enter some basic CSS for this to work if you "
2098
+ "choose no."
2099
+ msgstr ""
2100
+ "Zvolíte-li ne, hlavní nadpis dané stránky se nezobrazí. Budete muset také "
2101
+ "zadat základní CSS styly, aby toto nastavení fungovalo."
2102
+
2103
+ #: includes/global-settings.php:30
2104
+ msgid "CSS Selector"
2105
+ msgstr "CSS selektor"
2106
+
2107
+ #: includes/global-settings.php:32
2108
+ msgid "Enter a CSS selector for the default page heading to hide it."
2109
+ msgstr ""
2110
+ "Zadejte CSS selektor pro hlavní nadpis stránky, aby ho bylo možné skrýt."
2111
+
2112
+ #: includes/global-settings.php:37
2113
+ msgid "Rows"
2114
+ msgstr "řádky"
2115
+
2116
+ #: includes/global-settings.php:57
2117
+ msgid "Max Width"
2118
+ msgstr "Maximální šířka"
2119
+
2120
+ #: includes/global-settings.php:62
2121
+ msgid ""
2122
+ "All rows will default to this width. You can override this and make a row "
2123
+ "full width in the settings for each row."
2124
+ msgstr ""
2125
+ "Všechny řádky budou přednastavené na tuto šířku. Toto nastevení “přepsat” "
2126
+ "roztáhnutím řádku na celou šířku v nastaveních daného řádku."
2127
+
2128
+ #: includes/global-settings.php:66
2129
+ msgid "Default Row Width"
2130
+ msgstr "Přednastavená šířka řádku"
2131
+
2132
+ #: includes/global-settings.php:70 includes/global-settings.php:84
2133
+ #: includes/row-settings.php:20 includes/row-settings.php:38
2134
+ #: modules/button/button.php:201 modules/callout/callout.php:596
2135
+ msgid "Full Width"
2136
+ msgstr "Celá šířka"
2137
+
2138
+ #: includes/global-settings.php:80
2139
+ msgid "Default Row Content Width"
2140
+ msgstr "Přednastavená šířka obsahu řádku"
2141
+
2142
+ #: includes/global-settings.php:107
2143
+ msgctxt ""
2144
+ "General settings form field label. Intended meaning: \"Responsive layout "
2145
+ "enabled?\""
2146
+ msgid "Enabled"
2147
+ msgstr "Povolit"
2148
+
2149
+ #: includes/global-settings.php:121
2150
+ msgctxt ""
2151
+ "General settings form field label. Intended meaning: \"Enable auto spacing "
2152
+ "for responsive layouts?\""
2153
+ msgid "Enable Auto Spacing"
2154
+ msgstr "Povolit automatické rozestupy"
2155
+
2156
+ #: includes/global-settings.php:127
2157
+ msgid ""
2158
+ "When auto spacing is enabled, the builder will automatically adjust the "
2159
+ "margins and padding in your layout once the small device breakpoint is "
2160
+ "reached. Most users will want to leave this enabled."
2161
+ msgstr ""
2162
+ "Pokud zvolíte automatické rozestupy, editor automaticky nastaví odsazení pro "
2163
+ "malá zařízení. Většina uživatelů nechává povolené."
2164
+
2165
+ #: includes/global-settings.php:131
2166
+ msgid "Medium Device Breakpoint"
2167
+ msgstr "Zlomový bod pro středně velké zařízení"
2168
+
2169
+ #: includes/global-settings.php:136
2170
+ msgid ""
2171
+ "The browser width at which the layout will adjust for medium devices such as "
2172
+ "tablets."
2173
+ msgstr ""
2174
+ "Šířka internetového prohlížeče, do které se rozvržení nastaví, pro středně "
2175
+ "velká zařízení jako jsou tablety."
2176
+
2177
+ #: includes/global-settings.php:140
2178
+ msgid "Small Device Breakpoint"
2179
+ msgstr "Zlomový bod pro malé zařízení"
2180
+
2181
+ #: includes/global-settings.php:145
2182
+ msgid ""
2183
+ "The browser width at which the layout will adjust for small devices such as "
2184
+ "phones."
2185
+ msgstr ""
2186
+ "Šířka internetového prohlížeče, do které se rozvržení nastaví, pro malá "
2187
+ "zařízení jako jsou telefony."
2188
+
2189
+ #: includes/icon-selector.php:5
2190
+ msgctxt "Select option for showing all icon libraries."
2191
+ msgid "All Libraries"
2192
+ msgstr "Všechny knihovny"
2193
+
2194
+ #: includes/loop-settings.php:20
2195
+ msgid "Post Type"
2196
+ msgstr "Typ článku"
2197
+
2198
+ #: includes/loop-settings.php:26
2199
+ msgid "Order By"
2200
+ msgstr "Třídit podle"
2201
+
2202
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2203
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508
2204
+ #: modules/woocommerce/woocommerce.php:189
2205
+ msgid "Date"
2206
+ msgstr "Datum"
2207
+
2208
+ #: includes/loop-settings.php:30
2209
+ msgid "Date Last Modified"
2210
+ msgstr "Datum poslední změny"
2211
+
2212
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2213
+ #: modules/pricing-table/pricing-table.php:94
2214
+ msgid "Title"
2215
+ msgstr "Nadpis"
2216
+
2217
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2218
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
2219
+ msgid "Author"
2220
+ msgstr "Autor"
2221
+
2222
+ #: includes/loop-settings.php:33
2223
+ msgid "Comment Count"
2224
+ msgstr "Počet komentářů"
2225
+
2226
+ #: includes/loop-settings.php:34
2227
+ msgid "Menu Order"
2228
+ msgstr "Nastavení pořadí"
2229
+
2230
+ #: includes/loop-settings.php:35
2231
+ msgid "Random"
2232
+ msgstr "Náhodně"
2233
+
2234
+ #: includes/loop-settings.php:42
2235
+ msgid "Order"
2236
+ msgstr "Seřadit"
2237
+
2238
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2239
+ msgid "Descending"
2240
+ msgstr "Sestupně"
2241
+
2242
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2243
+ msgid "Ascending"
2244
+ msgstr "Vzestupně"
2245
+
2246
+ #: includes/loop-settings.php:52
2247
+ msgctxt "How many posts to skip."
2248
+ msgid "Offset"
2249
+ msgstr "Počet přeskočených článků"
2250
+
2251
+ #: includes/loop-settings.php:55
2252
+ msgid "Skip this many posts that match the specified criteria."
2253
+ msgstr "Přeskočit zadaný počet článků."
2254
+
2255
+ #: includes/loop-settings.php:62
2256
+ msgid "Filter"
2257
+ msgstr "Filtr"
2258
+
2259
+ #: includes/loop-settings.php:73
2260
+ #, php-format
2261
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2262
+ msgstr "%s: zadejte čárkou oddělený seznam. Zobrazí se pouze tyto %s."
2263
+
2264
+ #: includes/loop-settings.php:86
2265
+ #, php-format
2266
+ msgid ""
2267
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
2268
+ msgstr ""
2269
+ "%s: zadejte čárkou oddělený seznam. %s se použije na filtrovaní zobrazení "
2270
+ "článků."
2271
+
2272
+ #: includes/loop-settings.php:100
2273
+ msgid "Authors"
2274
+ msgstr "Autoři"
2275
+
2276
+ #: includes/loop-settings.php:101
2277
+ msgid ""
2278
+ "Enter a comma separated list of authors usernames. Only posts with these "
2279
+ "authors will be shown."
2280
+ msgstr ""
2281
+ "Zadejte čárkou oddělený seznam uživatelských jmen autorů. Zobrazí se pouze "
2282
+ "články těchto autorů."
2283
+
2284
+ #: includes/module-settings.php:75
2285
+ msgid "Choose whether to show or hide this module at different device sizes."
2286
+ msgstr ""
2287
+ "Vyberte, zda chcete zobrazit nebo skrýt tento modul na zařízeních různých "
2288
+ "velikostí."
2289
+
2290
+ #: includes/module-settings.php:83
2291
+ msgid "Animation"
2292
+ msgstr "Animace"
2293
+
2294
+ #: includes/module-settings.php:89
2295
+ msgctxt "Animation style."
2296
+ msgid "None"
2297
+ msgstr "Žádná"
2298
+
2299
+ #: includes/module-settings.php:90
2300
+ msgctxt "Animation style."
2301
+ msgid "Fade In"
2302
+ msgstr "Pozvolna zobrazit"
2303
+
2304
+ #: includes/module-settings.php:91
2305
+ msgctxt "Animation style."
2306
+ msgid "Slide Left"
2307
+ msgstr "Najet zleva"
2308
+
2309
+ #: includes/module-settings.php:92
2310
+ msgctxt "Animation style."
2311
+ msgid "Slide Right"
2312
+ msgstr "Najet zprava"
2313
+
2314
+ #: includes/module-settings.php:93
2315
+ msgctxt "Animation style."
2316
+ msgid "Slide Up"
2317
+ msgstr "Najet shora"
2318
+
2319
+ #: includes/module-settings.php:94
2320
+ msgctxt "Animation style."
2321
+ msgid "Slide Down"
2322
+ msgstr "Najet zdola"
2323
+
2324
+ #: includes/module-settings.php:102
2325
+ #: modules/content-slider/content-slider.php:230
2326
+ #: modules/post-carousel/post-carousel.php:145
2327
+ #: modules/post-slider/post-slider.php:363
2328
+ #: modules/testimonials/testimonials.php:91
2329
+ msgid "Delay"
2330
+ msgstr "Zpoždění"
2331
+
2332
+ #: includes/module-settings.php:106 includes/row-settings.php:290
2333
+ #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2334
+ #: modules/content-slider/content-slider.php:251
2335
+ #: modules/post-carousel/post-carousel.php:148
2336
+ #: modules/post-carousel/post-carousel.php:164
2337
+ #: modules/post-slider/post-slider.php:366
2338
+ #: modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:393
2339
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2340
+ #: modules/testimonials/testimonials.php:95
2341
+ #: modules/testimonials/testimonials.php:112
2342
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2343
+ msgid "seconds"
2344
+ msgstr "(v sekundách)"
2345
+
2346
+ #: includes/module-settings.php:107
2347
+ msgid "The amount of time in seconds before this animation starts."
2348
+ msgstr "Čas v sekundách před tím než se spustí animace."
2349
+
2350
+ #: includes/module-settings.php:120
2351
+ msgid ""
2352
+ "A unique ID that will be applied to this module's HTML. Must start with a "
2353
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2354
+ msgstr ""
2355
+ "Unikátní ID které bude aplikováno na HTML tohoto modulu. Musí začínat "
2356
+ "písmenem a obsahovat pouze pomlčky, podtržítka, písmena a čísla. Mezery "
2357
+ "nejsou povolené."
2358
+
2359
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2360
+ msgid "Class"
2361
+ msgstr "Třída"
2362
+
2363
+ #: includes/module-settings.php:128
2364
+ msgid ""
2365
+ "A class that will be applied to this module's HTML. Must start with a letter "
2366
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2367
+ "classes with spaces."
2368
+ msgstr ""
2369
+ "Třída která bude aplikována na HTML tohoto modulu. Musí začínat písmenem a "
2370
+ "obsahovat pouze pomlčky, podtržítka, písmena a čísla. Vícero tříd oddělte "
2371
+ "mezerami."
2372
+
2373
+ #: includes/node-template-settings.php:4
2374
+ #, php-format
2375
+ msgctxt "%s stands for the type of node template being saved."
2376
+ msgid "Save %s Template"
2377
+ msgstr "Uložit šablonu %s"
2378
+
2379
+ #: includes/node-template-settings.php:14 includes/template-settings.php:14
2380
+ #: includes/user-template-settings.php:15
2381
+ msgctxt "Template name."
2382
+ msgid "Name"
2383
+ msgstr "Název"
2384
+
2385
+ #: includes/node-template-settings.php:18
2386
+ msgctxt "Whether this is a global template or not."
2387
+ msgid "Global"
2388
+ msgstr "Globální"
2389
+
2390
+ #: includes/node-template-settings.php:19
2391
+ msgid ""
2392
+ "Global templates can be added to multiple pages and edited in one place."
2393
+ msgstr ""
2394
+ "Globální šablony lze přidat na vícero stránek a editovat na jednom místě."
2395
+
2396
+ #: includes/row-settings.php:6 includes/ui-js-config.php:67
2397
+ #: includes/ui-js-templates.php:12
2398
+ msgid "Row Settings"
2399
+ msgstr "Nastavení řádku"
2400
+
2401
+ #: includes/row-settings.php:16 modules/button/button.php:197
2402
+ #: modules/content-slider/content-slider.php:484
2403
+ msgid "Width"
2404
+ msgstr "Šířka"
2405
+
2406
+ #: includes/row-settings.php:27
2407
+ msgid ""
2408
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
2409
+ "no wider than the Row Max Width set in the Global Settings."
2410
+ msgstr ""
2411
+ "Řádky s nastavením roztažení na plnou šířku se zobrazí na celou šířku "
2412
+ "stránky. Pevná šířka řádku zabezpečí, že řádek nebude širší než maximální "
2413
+ "šířka řádku zadaná v globálních nastaveních."
2414
+
2415
+ #: includes/row-settings.php:34
2416
+ msgid "Content Width"
2417
+ msgstr "Šířka obsahu"
2418
+
2419
+ #: includes/row-settings.php:40
2420
+ msgid ""
2421
+ "Full width content spans the width of the page from edge to edge. Fixed "
2422
+ "content is no wider than the Row Max Width set in the Global Settings."
2423
+ msgstr ""
2424
+ "Obsah s nastavením roztažení na plnou šířku se zobrazí na celou šířku "
2425
+ "stránky. Pevná šířka řádku zabezpečí, že řádek nebude širší než maximální "
2426
+ "šířka řádku zadaná v globálních nastaveních."
2427
+
2428
+ #: includes/row-settings.php:48 modules/button/button.php:120
2429
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2430
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2431
+ #: modules/post-carousel/post-carousel.php:392
2432
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:680
2433
+ msgid "Colors"
2434
+ msgstr "Barvy"
2435
+
2436
+ #: includes/row-settings.php:52 modules/button/button.php:139
2437
+ #: modules/callout/callout.php:534
2438
+ #: modules/content-slider/content-slider.php:529
2439
+ #: modules/content-slider/content-slider.php:651
2440
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2441
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2442
+ #: modules/post-carousel/post-carousel.php:396
2443
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684
2444
+ #: modules/subscribe-form/subscribe-form.php:207
2445
+ msgid "Text Color"
2446
+ msgstr "Barva textu"
2447
+
2448
+ #: includes/row-settings.php:95
2449
+ msgctxt "Background type."
2450
+ msgid "Video"
2451
+ msgstr "Video"
2452
+
2453
+ #: includes/row-settings.php:97
2454
+ msgctxt "Background type."
2455
+ msgid "Slideshow"
2456
+ msgstr "Prezentace obrázků"
2457
+
2458
+ #: includes/row-settings.php:101
2459
+ msgctxt "Background type."
2460
+ msgid "Parallax"
2461
+ msgstr "Paralaxa"
2462
+
2463
+ #: includes/row-settings.php:227
2464
+ msgid "Background Video"
2465
+ msgstr "Video na pozadí"
2466
+
2467
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2468
+ #: modules/video/video.php:19 modules/video/video.php:100
2469
+ msgid "Video"
2470
+ msgstr "Video"
2471
+
2472
+ #: includes/row-settings.php:232
2473
+ msgid ""
2474
+ "An HTML5 video to use as the background of this row. Supported types are "
2475
+ "MP4, WebM and Ogg."
2476
+ msgstr ""
2477
+ "Na pozadí tohoto řádku se zobrazí HTML5 video. Podporované jsou MP4, WebM "
2478
+ "and Ogg video formáty."
2479
+
2480
+ #: includes/row-settings.php:239
2481
+ msgid "Fallback Photo"
2482
+ msgstr "Pomocný obrázek"
2483
+
2484
+ #: includes/row-settings.php:240
2485
+ msgid "A photo that will be displayed if the video fails to load."
2486
+ msgstr "Tento obrázek se zobrazí, pokud se nenačte video."
2487
+
2488
+ #: includes/row-settings.php:248
2489
+ msgid "Background Slideshow"
2490
+ msgstr "Prezentace obrázků na pozadí"
2491
+
2492
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241
2493
+ #: modules/slideshow/slideshow.php:271
2494
+ msgid "Source"
2495
+ msgstr "Zdroj"
2496
+
2497
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244
2498
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2499
+ #: modules/video/video.php:86
2500
+ msgid "Media Library"
2501
+ msgstr "Knihovna médií"
2502
+
2503
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247
2504
+ #: modules/slideshow/slideshow.php:277
2505
+ msgid ""
2506
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
2507
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2508
+ "accessed by using the get a link function in your SmugMug gallery."
2509
+ msgstr ""
2510
+ "Vyberte obrázky z multimediální knihovny WordPress nebo zadejte galerii na "
2511
+ "Vaší SmugMug stránce pomocí URL odkazu na RSS kanál. Odkaz na RSS kanál je "
2512
+ "možné získat pomocí funkce na získání odkazů ve Vaší SmugMug galérii."
2513
+
2514
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2515
+ #: modules/slideshow/slideshow.php:289
2516
+ msgid "Photos"
2517
+ msgstr "Obrázky"
2518
+
2519
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263
2520
+ #: modules/slideshow/slideshow.php:293
2521
+ msgid "Feed URL"
2522
+ msgstr "URL kanálu"
2523
+
2524
+ #: includes/row-settings.php:287 includes/row-settings.php:352
2525
+ #: modules/slideshow/slideshow.php:390
2526
+ msgid "Speed"
2527
+ msgstr "Rychlost"
2528
+
2529
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2530
+ #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397
2531
+ #: modules/testimonials/testimonials.php:99
2532
+ msgid "Transition"
2533
+ msgstr "Přechod"
2534
+
2535
+ #: includes/row-settings.php:300
2536
+ msgctxt "Slideshow transition type."
2537
+ msgid "None"
2538
+ msgstr "Žádný"
2539
+
2540
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2541
+ #: modules/post-carousel/post-carousel.php:241
2542
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:373
2543
+ #: modules/slideshow/slideshow.php:401
2544
+ #: modules/testimonials/testimonials.php:103
2545
+ msgid "Fade"
2546
+ msgstr "Překrývání"
2547
+
2548
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2549
+ msgid "Ken Burns"
2550
+ msgstr "Ken Burns"
2551
+
2552
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2553
+ msgid "Slide Horizontal"
2554
+ msgstr "Najet horizontálně"
2555
+
2556
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2557
+ msgid "Slide Vertical"
2558
+ msgstr "Najet vertikálně"
2559
+
2560
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2561
+ msgid "Blinds"
2562
+ msgstr "Žaluzie"
2563
+
2564
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2565
+ msgid "Bars"
2566
+ msgstr "Pásky"
2567
+
2568
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2569
+ msgid "Random Bars"
2570
+ msgstr "Náhodné pásky"
2571
+
2572
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2573
+ msgid "Boxes"
2574
+ msgstr "Čtverce"
2575
+
2576
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2577
+ msgid "Random Boxes"
2578
+ msgstr "Náhodné čtverce"
2579
+
2580
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2581
+ msgid "Boxes Grow"
2582
+ msgstr "Rostoucí čtverce"
2583
+
2584
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2585
+ #: modules/post-carousel/post-carousel.php:161
2586
+ #: modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:415
2587
+ #: modules/testimonials/testimonials.php:108
2588
+ msgid "Transition Speed"
2589
+ msgstr "Rychlost přechodu"
2590
+
2591
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2592
+ msgid "Randomize Photos"
2593
+ msgstr "Náhodné zobrazení obrázků"
2594
+
2595
+ #: includes/row-settings.php:341
2596
+ msgid "Background Parallax"
2597
+ msgstr "Paralaxa pozadí"
2598
+
2599
+ #: includes/row-settings.php:355
2600
+ msgid "Fast"
2601
+ msgstr "Rychle"
2602
+
2603
+ #: includes/row-settings.php:356
2604
+ msgctxt "Speed."
2605
+ msgid "Medium"
2606
+ msgstr "Středně"
2607
+
2608
+ #: includes/row-settings.php:357
2609
+ msgid "Slow"
2610
+ msgstr "Pomalu"
2611
+
2612
+ #: includes/row-settings.php:619
2613
+ msgid "Choose whether to show or hide this row at different device sizes."
2614
+ msgstr ""
2615
+ "Zvolte, zda se má tento řádek zobrazit na zařízeních různých velikostí."
2616
+
2617
+ #: includes/row-settings.php:632
2618
+ msgid ""
2619
+ "A unique ID that will be applied to this row's HTML. Must start with a "
2620
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2621
+ msgstr ""
2622
+ "Unikátní ID které bude aplikováno na HTML tohoto řádku. Musí začínat "
2623
+ "písmenem a obsahovat pouze pomlčky, podtržítka, písmena a čísla. Mezery "
2624
+ "nejsou povolené."
2625
+
2626
+ #: includes/row-settings.php:640
2627
+ msgid ""
2628
+ "A class that will be applied to this row's HTML. Must start with a letter "
2629
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2630
+ "classes with spaces."
2631
+ msgstr ""
2632
+ "Třída která bude aplikována na HTML tohoto řádku. Musí začínat písmenem a "
2633
+ "obsahovat pouze pomlčky, podtržítka, písmena a čísla. Vícero tříd oddělte "
2634
+ "mezerami."
2635
+
2636
+ #: includes/service-settings.php:32
2637
+ msgid "Service"
2638
+ msgstr "Služba"
2639
+
2640
+ #: includes/settings.php:67
2641
+ msgid "Save"
2642
+ msgstr "Uložit"
2643
+
2644
+ #: includes/settings.php:69
2645
+ msgid "Save As..."
2646
+ msgstr "Uložit jako"
2647
+
2648
+ #: includes/template-selector.php:4
2649
+ msgid "Layout Templates"
2650
+ msgstr "Šablona rozvržení"
2651
+
2652
+ #: includes/template-selector.php:17
2653
+ msgid "Your Templates"
2654
+ msgstr "Vaše šablony"
2655
+
2656
+ #: includes/template-selector.php:53
2657
+ msgid ""
2658
+ "You haven't saved any templates yet! To do so, create a layout and save it "
2659
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
2660
+ msgstr ""
2661
+ "Zatím jste neuložili žádnou šablonu! Pokud chcete šablonu uložit, vytvořte "
2662
+ "rozvržení a uložte ho jako pomocnou šablonu <strong>Nástroje &rarr; Uložit "
2663
+ "šablonu</strong>."
2664
+
2665
+ #: includes/template-selector.php:58
2666
+ msgctxt "Template name."
2667
+ msgid "Blank"
2668
+ msgstr "Prázdná"
2669
+
2670
+ #: includes/template-settings.php:18
2671
+ msgid "Image Filename"
2672
+ msgstr "Soubor obrázku"
2673
+
2674
+ #: includes/template-settings.php:19
2675
+ msgid ""
2676
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
2677
+ "templates/\" directory."
2678
+ msgstr ""
2679
+ "Název souboru obrázku, jako například \"miniatura.jpg\", který se nachází v "
2680
+ "adresáři \"img/templates/\"."
2681
+
2682
+ #: includes/ui-js-config.php:21
2683
+ msgid "What would you like to do?"
2684
+ msgstr "Co si přejete udělat?"
2685
+
2686
+ #: includes/ui-js-config.php:23
2687
+ msgid "Change Template"
2688
+ msgstr "Změnit šablonu"
2689
+
2690
+ #: includes/ui-js-config.php:24
2691
+ msgid ""
2692
+ "Warning! Changing the template will replace your existing layout. Do you "
2693
+ "really want to do this?"
2694
+ msgstr ""
2695
+ "Pozor! Změnou šablony nahradíte existující rozvržení. Opravdu chcete změnit "
2696
+ "šablonu?"
2697
+
2698
+ #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
2699
+ msgid "Column"
2700
+ msgstr "Sloupec"
2701
+
2702
+ #: includes/ui-js-config.php:26
2703
+ msgid ""
2704
+ "Please select either a background layout or content layout before submitting."
2705
+ msgstr "Před odesláním prosím zvolte rozvržení pozadí nebo obsahu."
2706
+
2707
+ #: includes/ui-js-config.php:27
2708
+ msgid "Remove Account"
2709
+ msgstr "Odstranit účet"
2710
+
2711
+ #: includes/ui-js-config.php:28
2712
+ msgid ""
2713
+ "Are you sure you want to remove this account? Other modules that are "
2714
+ "connected to it will be affected."
2715
+ msgstr ""
2716
+ "Jste si jistí, že chcete odstranit tento účet? Ovlivní to i další moduly, "
2717
+ "které jsou s tímto účtem spojené."
2718
+
2719
+ #: includes/ui-js-config.php:29
2720
+ msgid "Do you really want to delete this item?"
2721
+ msgstr "Opravdu chcete tuto položku odstranit?"
2722
+
2723
+ #: includes/ui-js-config.php:30
2724
+ msgid ""
2725
+ "Do you really want to delete this module? All content data will be "
2726
+ "permanently deleted."
2727
+ msgstr ""
2728
+ "Opravdu chcete tento modul odstranit? Všechny data jeho obsahu budou trvale "
2729
+ "smazána."
2730
+
2731
+ #: includes/ui-js-config.php:31
2732
+ msgid ""
2733
+ "Do you really want to delete this row? All content data will be permanently "
2734
+ "deleted."
2735
+ msgstr ""
2736
+ "Opravdu chcete tento řádek odstranit? Veškerý obsah řádku bude trvale smazán."
2737
+
2738
+ #: includes/ui-js-config.php:33
2739
+ msgid ""
2740
+ "WARNING! You are about to delete a global template that may be linked to "
2741
+ "other pages. Do you really want to delete this template and unlink it?"
2742
+ msgstr ""
2743
+ "POZOR! Chystáte se odstranit globální šablonu, která se možná propojena na "
2744
+ "další stránky. Opravdu chcete tuto šablonu a její propojení odstranit?"
2745
+
2746
+ #: includes/ui-js-config.php:34
2747
+ msgid "Discard Changes"
2748
+ msgstr "Zrušit změny"
2749
+
2750
+ #: includes/ui-js-config.php:35
2751
+ msgid ""
2752
+ "Do you really want to discard these changes? All of your changes that are "
2753
+ "not published will be lost."
2754
+ msgstr ""
2755
+ "Opravdu chcete tyto změny zrušit? Ztratí se tím všechny nepublikované změny."
2756
+
2757
+ #: includes/ui-js-config.php:37
2758
+ msgid "Save Draft"
2759
+ msgstr "Uložit koncept"
2760
+
2761
+ #: includes/ui-js-config.php:38 includes/ui-js-templates.php:14
2762
+ #: includes/ui-js-templates.php:54
2763
+ msgid "Duplicate"
2764
+ msgstr "Duplikovat"
2765
+
2766
+ #: includes/ui-js-config.php:39
2767
+ msgid "Duplicate This Page"
2768
+ msgstr "Duplikovat tuto stránku"
2769
+
2770
+ #: includes/ui-js-config.php:40
2771
+ msgid "Duplicate This Template"
2772
+ msgstr "Duplikovat tuto šablonu"
2773
+
2774
+ #: includes/ui-js-config.php:41
2775
+ msgid "Edit Global Settings"
2776
+ msgstr "Upravit globální nastavení"
2777
+
2778
+ #: includes/ui-js-config.php:42
2779
+ msgid "Drop a row layout or module to get started!"
2780
+ msgstr "Začněte vložením řádku nebo modulu!"
2781
+
2782
+ #: includes/ui-js-config.php:43
2783
+ msgid ""
2784
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
2785
+ "not functioning as expected the cause is most likely this error. Please help "
2786
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
2787
+ "each to determine if the issue is related to a third party plugin."
2788
+ msgstr ""
2789
+ "Beaver Builder zaznamenal následující JavaScript chybu. Pokud Beaver Builder "
2790
+ "nefunguje jak očekáváte, důvodem je pravděpodobně tato chyba. Pomozte nám, "
2791
+ "prosím, deaktivací všech modulů a testováním Beaver Builder během postupné "
2792
+ "reaktivace všech modulů ke zjištění, zda problém souvisí s moduly třetích "
2793
+ "stran."
2794
+
2795
+ #: includes/ui-js-config.php:44
2796
+ msgid "Full Size"
2797
+ msgstr "Původní velikost"
2798
+
2799
+ #: includes/ui-js-config.php:45
2800
+ msgid "Get Help"
2801
+ msgstr "Získat pomoc"
2802
+
2803
+ #: includes/ui-js-config.php:46
2804
+ msgid "\"{message}\" on line {line} of {file}."
2805
+ msgstr "\"{message}\" na řádku {line} souboru {file}."
2806
+
2807
+ #: includes/ui-js-config.php:47
2808
+ msgid "Insert"
2809
+ msgstr "Vložit"
2810
+
2811
+ #: includes/ui-js-config.php:48
2812
+ msgid "Large"
2813
+ msgstr "Velké"
2814
+
2815
+ #: includes/ui-js-config.php:49
2816
+ msgid "Manage Templates"
2817
+ msgstr "Správa šablon"
2818
+
2819
+ #: includes/ui-js-config.php:50
2820
+ msgid "Medium"
2821
+ msgstr "Střední"
2822
+
2823
+ #: includes/ui-js-config.php:51
2824
+ msgid "Module"
2825
+ msgstr "Modul"
2826
+
2827
+ #: includes/ui-js-config.php:52
2828
+ msgid "Module Template Saved!"
2829
+ msgstr "Šablona modulu byla uložená!"
2830
+
2831
+ #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10
2832
+ #: includes/ui-js-templates.php:50
2833
+ msgid "Move"
2834
+ msgstr "Přesunout"
2835
+
2836
+ #: includes/ui-js-config.php:54
2837
+ msgid "New Column"
2838
+ msgstr "Nový sloupec"
2839
+
2840
+ #: includes/ui-js-config.php:55
2841
+ msgid "New Row"
2842
+ msgstr "Nový řádek"
2843
+
2844
+ #: includes/ui-js-config.php:56
2845
+ msgid "No results found."
2846
+ msgstr "Nebyly nalezeny žádné záznamy."
2847
+
2848
+ #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
2849
+ msgid "No saved rows found."
2850
+ msgstr "Nebyly nalezeny žádné uložené řádky."
2851
+
2852
+ #: includes/ui-js-config.php:58 includes/ui-panel-node-templates.php:42
2853
+ msgid "No saved modules found."
2854
+ msgstr "Nebyly nalezeny žádné uložené moduly."
2855
+
2856
+ #: includes/ui-js-config.php:59 includes/ui-js-templates.php:80
2857
+ msgid "OK"
2858
+ msgstr "OK"
2859
+
2860
+ #: includes/ui-js-config.php:60 modules/photo/photo.php:470
2861
+ msgid "Photo Page"
2862
+ msgstr "Stránka obrázku"
2863
+
2864
+ #: includes/ui-js-config.php:61
2865
+ msgid "Photo Selected"
2866
+ msgstr "Vybraný obrázek"
2867
+
2868
+ #: includes/ui-js-config.php:62
2869
+ msgid "Photos Selected"
2870
+ msgstr "Vybrené obrázky"
2871
+
2872
+ #: includes/ui-js-config.php:63 modules/subscribe-form/includes/frontend.php:15
2873
+ msgid "Please Wait..."
2874
+ msgstr "Čekejte prosím…"
2875
+
2876
+ #: includes/ui-js-config.php:64
2877
+ msgid "Publish Changes"
2878
+ msgstr "Publikovat změny"
2879
+
2880
+ #: includes/ui-js-config.php:66 includes/ui-js-templates.php:5
2881
+ msgid "Row"
2882
+ msgstr "Řádek"
2883
+
2884
+ #: includes/ui-js-config.php:68
2885
+ msgid "Row Template Saved!"
2886
+ msgstr "Šablona řádku byla uložena!"
2887
+
2888
+ #: includes/ui-js-config.php:69
2889
+ msgid "Save Core Template"
2890
+ msgstr "Uložit základní šablonu"
2891
+
2892
+ #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
2893
+ msgid "Save Template"
2894
+ msgstr "Uložit šablonu"
2895
+
2896
+ #: includes/ui-js-config.php:72
2897
+ msgid "Select Photos"
2898
+ msgstr "Vybrat obrázky"
2899
+
2900
+ #: includes/ui-js-config.php:74
2901
+ msgid "Please select an account before saving."
2902
+ msgstr "Před uložením vyberte účet."
2903
+
2904
+ #: includes/ui-js-config.php:75
2905
+ msgid "Please connect an account before saving."
2906
+ msgstr "Před uložením připojte účet."
2907
+
2908
+ #: includes/ui-js-config.php:76
2909
+ msgid "Please select a list before saving."
2910
+ msgstr "Před uložením zvolte seznam."
2911
+
2912
+ #: includes/ui-js-config.php:77
2913
+ msgid "Take a Tour"
2914
+ msgstr "Spustit průvodce"
2915
+
2916
+ #: includes/ui-js-config.php:78
2917
+ msgid "Append New Layout"
2918
+ msgstr "Přidat nové rozvržení"
2919
+
2920
+ #: includes/ui-js-config.php:79
2921
+ msgid "Replace Existing Layout"
2922
+ msgstr "Nahradit existující rozvržení"
2923
+
2924
+ #: includes/ui-js-config.php:80
2925
+ msgid "Template Saved!"
2926
+ msgstr "Šablona byla uložená!"
2927
+
2928
+ #: includes/ui-js-config.php:81 modules/post-slider/post-slider.php:464
2929
+ msgid "Thumbnail"
2930
+ msgstr "Miniatura"
2931
+
2932
+ #: includes/ui-js-config.php:82
2933
+ msgid "Next"
2934
+ msgstr "Dál"
2935
+
2936
+ #: includes/ui-js-config.php:83
2937
+ msgid "Get Started"
2938
+ msgstr "Začínáme"
2939
+
2940
+ #: includes/ui-js-config.php:84
2941
+ msgid "Choose a Template"
2942
+ msgstr "Volba šablony"
2943
+
2944
+ #: includes/ui-js-config.php:85
2945
+ msgid ""
2946
+ "Get started by choosing a layout template to customize, or build a page from "
2947
+ "scratch by selecting the blank layout template."
2948
+ msgstr ""
2949
+ "Začněte volbou šablony rozvržení, kterou chcete upravit nebo nastavte "
2950
+ "prázdnou šablonu pro vytvoření vlastního rozvržení stránky."
2951
+
2952
+ #: includes/ui-js-config.php:86
2953
+ msgid "Add Rows"
2954
+ msgstr "Přidat řádky"
2955
+
2956
+ #: includes/ui-js-config.php:87
2957
+ msgid ""
2958
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2959
+ "and dropping row layouts onto the page."
2960
+ msgstr ""
2961
+ "Přidejte vícesloupcové řádky, upravte odsazení, přidejte pozadí a další "
2962
+ "nastavení uchopením a přesunutím rozvržení řádku do stránky."
2963
+
2964
+ #: includes/ui-js-config.php:89
2965
+ msgid ""
2966
+ "Add new content by dragging and dropping modules or widgets into your row "
2967
+ "layouts or to create a new row layout."
2968
+ msgstr ""
2969
+ "Přidejte nový obsah uchopení a přetáhnutím modulů nebo widgetů do Vašich "
2970
+ "rozvržení řádků nebo vytvořte nové rozvržení."
2971
+
2972
+ #: includes/ui-js-config.php:90
2973
+ msgid "Edit Content"
2974
+ msgstr "Upravte obsah"
2975
+
2976
+ #: includes/ui-js-config.php:91
2977
+ msgid ""
2978
+ "Move your mouse over rows, columns or modules to edit and interact with them."
2979
+ msgstr ""
2980
+ "Přejeďte myší přes řádky, sloupce nebo moduly pro úpravu a interakci s nimi."
2981
+
2982
+ #: includes/ui-js-config.php:92
2983
+ msgid ""
2984
+ "Use the action buttons to perform actions such as moving, editing, "
2985
+ "duplicating or deleting rows, columns and modules."
2986
+ msgstr ""
2987
+ "Použijte akční tlačítka k provedení akcí jako přesun, úprava, duplikace nebo "
2988
+ "smazání řádků, sloupců a modulů."
2989
+
2990
+ #: includes/ui-js-config.php:93
2991
+ msgid "Add More Content"
2992
+ msgstr "Přidejte více obsahu"
2993
+
2994
+ #: includes/ui-js-config.php:94
2995
+ msgid ""
2996
+ "Use the Add Content button to open the content panel and add new row "
2997
+ "layouts, modules or widgets."
2998
+ msgstr ""
2999
+ "Použijte tlačítko \"Přidat obsah\" k otevření panelu obsahu a přidejte nové "
3000
+ "rozvržení řádku, moduly nebo widgety."
3001
+
3002
+ #: includes/ui-js-config.php:95
3003
+ msgid "Change Templates"
3004
+ msgstr "Změňte šablony"
3005
+
3006
+ #: includes/ui-js-config.php:96
3007
+ msgid ""
3008
+ "Use the Templates button to pick a new template or append one to your "
3009
+ "layout. Appending will insert a new template at the end of your existing "
3010
+ "page content."
3011
+ msgstr ""
3012
+ "Použijte tlačítko \"Šablony\" pro výběr nové šablony nebo pro přidání jiné "
3013
+ "šablony k Vašemu rozvržení. Připojení vloží novou šablonu na konec Vašeho "
3014
+ "existujícího obsahu stránky."
3015
+
3016
+ #: includes/ui-js-config.php:97
3017
+ msgid "Helpful Tools"
3018
+ msgstr "Pomocné nástroje"
3019
+
3020
+ #: includes/ui-js-config.php:98
3021
+ msgid ""
3022
+ "The Tools button lets you duplicate a page, save a template or edit the "
3023
+ "global settings."
3024
+ msgstr ""
3025
+ "Tlačítko \"Nástroje\" umožní duplikovat stránky, uložit šablonu nebo upravit "
3026
+ "globální nastavení."
3027
+
3028
+ #: includes/ui-js-config.php:99
3029
+ msgid "Publish Your Changes"
3030
+ msgstr "Publikujte změny"
3031
+
3032
+ #: includes/ui-js-config.php:100
3033
+ msgid ""
3034
+ "Once you're finished, click the Done button to publish your changes, save a "
3035
+ "draft or revert back to the last published state."
3036
+ msgstr ""
3037
+ "Jakmile skončíte s úpravami, klikněte na tlačítko \"Hotovo\", pro zveřejnění "
3038
+ "Vašich změn, uložení konceptu nebo k návratu k posledně zveřejněnému stavu. "
3039
+
3040
+ #: includes/ui-js-config.php:101
3041
+ msgid "Let's Get Building!"
3042
+ msgstr "Začněme tvořit!"
3043
+
3044
+ #: includes/ui-js-config.php:102
3045
+ msgid ""
3046
+ "Now that you know the basics, you're ready to start building! If at any time "
3047
+ "you need help, click the help icon in the upper right corner to access the "
3048
+ "help menu. Happy building!"
3049
+ msgstr ""
3050
+ "Teď když už ovládáte základy, jste připraveni tvořit vlastní stránky! Pokud "
3051
+ "někdy budete opět potřebovat pomoc, klikněte na ikonu pomoci v pravém horním "
3052
+ "rohu. Příjemné tvoření!"
3053
+
3054
+ #: includes/ui-js-config.php:103
3055
+ msgid ""
3056
+ "The settings you are currently editing will not be saved if you navigate "
3057
+ "away from this page."
3058
+ msgstr ""
3059
+ "Nastavení která právě provádíte se neuloží, pokud opustíte tuto stránku."
3060
+
3061
+ #: includes/ui-js-config.php:104
3062
+ msgid "View the Knowledge Base"
3063
+ msgstr "Prohlédnout znalostní databázi"
3064
+
3065
+ #: includes/ui-js-config.php:105
3066
+ msgid "Visit the Forums"
3067
+ msgstr "Navštívit fóra"
3068
+
3069
+ #: includes/ui-js-config.php:106
3070
+ msgid "Watch the Video"
3071
+ msgstr "Shlédnout video"
3072
+
3073
+ #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29
3074
+ #: includes/ui-js-templates.php:45
3075
+ msgid "Global"
3076
+ msgstr "Globální"
3077
+
3078
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:47
3079
+ msgid "Locked"
3080
+ msgstr "Zamčený"
3081
+
3082
+ #: includes/ui-js-templates.php:52
3083
+ msgid "Settings"
3084
+ msgstr "Nastavení"
3085
+
3086
+ #: includes/ui-js-templates.php:87
3087
+ msgid ""
3088
+ "Welcome! It looks like this might be your first time using the builder. "
3089
+ "Would you like to take a tour?"
3090
+ msgstr ""
3091
+ "Vítejte! Vypadá to, že toto je poprvé, co používáte editor stránek. Přejete "
3092
+ "si pustit průvodce?"
3093
+
3094
+ #: includes/ui-js-templates.php:88
3095
+ msgid "No Thanks"
3096
+ msgstr "Ne děkuji"
3097
+
3098
+ #: includes/ui-js-templates.php:89
3099
+ msgid "Yes Please!"
3100
+ msgstr "Ano prosím!"
3101
+
3102
+ #: includes/ui-js-templates.php:96
3103
+ msgid "Getting Started Video"
3104
+ msgstr "Video “Začínáme”"
3105
+
3106
+ #: includes/ui-panel-node-templates.php:6
3107
+ msgid "Saved Rows"
3108
+ msgstr "Uložené řádky"
3109
+
3110
+ #: includes/ui-panel-node-templates.php:37
3111
+ msgid "Saved Modules"
3112
+ msgstr "Uložené moduly"
3113
+
3114
+ #: includes/ui-panel.php:11
3115
+ msgid "Row Layouts"
3116
+ msgstr "Rozložení řádku"
3117
+
3118
+ #: includes/ui-panel.php:15
3119
+ msgid "1 Column"
3120
+ msgstr "1 sloupec"
3121
+
3122
+ #: includes/ui-panel.php:16
3123
+ msgid "2 Columns"
3124
+ msgstr "2 sloupce"
3125
+
3126
+ #: includes/ui-panel.php:17
3127
+ msgid "3 Columns"
3128
+ msgstr "3 sloupce"
3129
+
3130
+ #: includes/ui-panel.php:18
3131
+ msgid "4 Columns"
3132
+ msgstr "4 sloupce"
3133
+
3134
+ #: includes/ui-panel.php:19
3135
+ msgid "5 Columns"
3136
+ msgstr "5 sloupců"
3137
+
3138
+ #: includes/ui-panel.php:20
3139
+ msgid "6 Columns"
3140
+ msgstr "6 sloupců"
3141
+
3142
+ #: includes/ui-panel.php:21
3143
+ msgid "Left Sidebar"
3144
+ msgstr "Levý boční panel"
3145
+
3146
+ #: includes/ui-panel.php:22
3147
+ msgid "Right Sidebar"
3148
+ msgstr "Pravý boční panel"
3149
+
3150
+ #: includes/ui-panel.php:23
3151
+ msgid "Left &amp; Right Sidebar"
3152
+ msgstr "Levý a pravý boční panel"
3153
+
3154
+ #: includes/updater/classes/class-fl-updater.php:132
3155
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3156
+ msgstr "<strong>AKTUALIZACE NEDOSTUPNÉ</strong>"
3157
+
3158
+ #: includes/updater/classes/class-fl-updater.php:134
3159
+ msgid "Please subscribe to enable automatic updates for this plugin."
3160
+ msgstr "Zaregistrujte se pro aktivaci automatických aktualizací tohoto modulu."
3161
+
3162
+ #: includes/updater/classes/class-fl-updater.php:136
3163
+ #: includes/updater/includes/form.php:6
3164
+ msgid "Subscribe Now"
3165
+ msgstr "Zaregistrujte se"
3166
+
3167
+ #: includes/updater/includes/form.php:5
3168
+ msgid ""
3169
+ "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to "
3170
+ "enable automatic updates."
3171
+ msgstr ""
3172
+ "AKTUALIZACE NEDOSTUPNÉ! Zaregistrujte se prosím nebo zadejte Váš licenční "
3173
+ "klíč k aktivaci automatických aktualizací."
3174
+
3175
+ #: includes/updater/includes/form.php:11
3176
+ msgid "Updates &amp; Support Subscription"
3177
+ msgstr "Aktualizace a technická podpora"
3178
+
3179
+ #: includes/updater/includes/form.php:14
3180
+ msgid "Active!"
3181
+ msgstr "Aktivní!"
3182
+
3183
+ #: includes/updater/includes/form.php:16
3184
+ msgid "Not Active!"
3185
+ msgstr "Neaktivní!"
3186
+
3187
+ #: includes/updater/includes/form.php:22
3188
+ msgid "Email address saved!"
3189
+ msgstr "Email adresa byla uložená!"
3190
+
3191
+ #: includes/updater/includes/form.php:27
3192
+ #, php-format
3193
+ msgid "Enter your <a%s>license key</a> to enable remote updates and support."
3194
+ msgstr ""
3195
+ "Zadejte Váš <a%s>licenční klíč</a> pro aktivaci automatických aktualizaci a "
3196
+ "technické podpory."
3197
+
3198
+ #: includes/updater/includes/form.php:39
3199
+ msgid "Save Subscription Settings"
3200
+ msgstr "Uložit nastavení registrace"
3201
+
3202
+ #: includes/user-template-settings.php:8
3203
+ msgid ""
3204
+ "Save the current layout as a template that can be reused under "
3205
+ "<strong>Templates &rarr; Your Templates</strong>."
3206
+ msgstr ""
3207
+ "Uložit aktuální rozvržení jako šablonu, kterou budete moci znovu použít pod "
3208
+ "<strong>Šablony &rarr; Vlastní šablony</strong>."
3209
+
3210
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
3211
+ msgid "Accordion"
3212
+ msgstr "Akordeon"
3213
+
3214
+ #: modules/accordion/accordion.php:15
3215
+ msgid "Display a collapsible accordion of items."
3216
+ msgstr "Zobrazí rozbalovací seznam položek"
3217
+
3218
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3219
+ msgid "Items"
3220
+ msgstr "Sekce"
3221
+
3222
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
3223
+ msgid "Item"
3224
+ msgstr "Sekce"
3225
+
3226
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
3227
+ msgid "Border Color"
3228
+ msgstr "Barva okraje"
3229
+
3230
+ #: modules/accordion/accordion.php:62
3231
+ msgid "Label Size"
3232
+ msgstr "Velikost nadpisu"
3233
+
3234
+ #: modules/accordion/accordion.php:65
3235
+ msgctxt "Label size."
3236
+ msgid "Small"
3237
+ msgstr "Malý"
3238
+
3239
+ #: modules/accordion/accordion.php:66
3240
+ msgctxt "Label size."
3241
+ msgid "Medium"
3242
+ msgstr "Střední"
3243
+
3244
+ #: modules/accordion/accordion.php:67
3245
+ msgctxt "Label size."
3246
+ msgid "Large"
3247
+ msgstr "Velký"
3248
+
3249
+ #: modules/accordion/accordion.php:75
3250
+ msgid "Item Spacing"
3251
+ msgstr "Odsazení položek"
3252
+
3253
+ #: modules/accordion/accordion.php:86
3254
+ msgid "Collapse Inactive"
3255
+ msgstr "Sbalit neaktivní"
3256
+
3257
+ #: modules/accordion/accordion.php:92
3258
+ msgid ""
3259
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
3260
+ "multiple items to be open at the same time."
3261
+ msgstr ""
3262
+ "Zvolením \"ano\" bude rozbalena pouze jedna sekce. Zvolením \"ne\" bude "
3263
+ "možno rozbalit více sekcí najednou."
3264
+
3265
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
3266
+ msgid "Add Item"
3267
+ msgstr "Přidat sekci"
3268
+
3269
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
3270
+ msgid "Label"
3271
+ msgstr "Nadpis"
3272
+
3273
+ #: modules/accordion/accordion.php:122
3274
+ #: modules/post-carousel/post-carousel.php:359
3275
+ #: modules/post-carousel/post-carousel.php:363
3276
+ #: modules/post-carousel/post-carousel.php:435
3277
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3278
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:548
3279
+ #: modules/post-slider/post-slider.php:552
3280
+ #: modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
3281
+ msgid "Content"
3282
+ msgstr "Obsah"
3283
+
3284
+ #: modules/button/button.php:14 modules/callout/callout.php:480
3285
+ #: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
3286
+ #: modules/pricing-table/pricing-table.php:129
3287
+ #: modules/subscribe-form/subscribe-form.php:161
3288
+ msgid "Button"
3289
+ msgstr "Tlačítko"
3290
+
3291
+ #: modules/button/button.php:15
3292
+ msgid "A simple call to action button."
3293
+ msgstr "Jednoduché tlačítko pro vyvolání akce"
3294
+
3295
+ #: modules/button/button.php:67 modules/cta/cta.php:223
3296
+ msgid "Click Here"
3297
+ msgstr "Klikněte zde"
3298
+
3299
+ #: modules/button/button.php:75 modules/callout/callout.php:318
3300
+ #: modules/callout/callout.php:366 modules/callout/callout.php:370
3301
+ #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3302
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3303
+ #: modules/icon/icon.php:34
3304
+ msgid "Icon"
3305
+ msgstr "Ikona"
3306
+
3307
+ #: modules/button/button.php:80 modules/cta/cta.php:236
3308
+ #: modules/subscribe-form/subscribe-form.php:178
3309
+ msgid "Icon Position"
3310
+ msgstr "Pozice ikony"
3311
+
3312
+ #: modules/button/button.php:83 modules/callout/callout.php:508
3313
+ #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3314
+ #: modules/subscribe-form/subscribe-form.php:181
3315
+ msgid "Before Text"
3316
+ msgstr "Před textem"
3317
+
3318
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3319
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3320
+ #: modules/subscribe-form/subscribe-form.php:182
3321
+ msgid "After Text"
3322
+ msgstr "Za textem"
3323
+
3324
+ #: modules/button/button.php:90 modules/button/button.php:94
3325
+ #: modules/callout/callout.php:446 modules/callout/callout.php:450
3326
+ #: modules/content-slider/content-slider.php:574
3327
+ #: modules/content-slider/content-slider.php:578
3328
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
3329
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
3330
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3331
+ #: modules/slideshow/slideshow.php:351
3332
+ msgid "Link"
3333
+ msgstr "Odkaz"
3334
+
3335
+ #: modules/button/button.php:95
3336
+ msgid "http://www.example.com"
3337
+ msgstr "http://www.priklad.com"
3338
+
3339
+ #: modules/button/button.php:102 modules/callout/callout.php:458
3340
+ #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
3341
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
3342
+ #: modules/photo/photo.php:494
3343
+ msgid "Link Target"
3344
+ msgstr "Cíl odkazu"
3345
+
3346
+ #: modules/button/button.php:105 modules/callout/callout.php:461
3347
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
3348
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
3349
+ #: modules/photo/photo.php:497
3350
+ msgid "Same Window"
3351
+ msgstr "Stejné okno"
3352
+
3353
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3354
+ #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
3355
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
3356
+ #: modules/photo/photo.php:498
3357
+ msgid "New Window"
3358
+ msgstr "Nové okno"
3359
+
3360
+ #: modules/button/button.php:130 modules/callout/callout.php:410
3361
+ #: modules/callout/callout.php:525
3362
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
3363
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3364
+ #: modules/subscribe-form/subscribe-form.php:198
3365
+ msgid "Background Hover Color"
3366
+ msgstr "Barva pozadí při najetí myší"
3367
+
3368
+ #: modules/button/button.php:145 modules/callout/callout.php:540
3369
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
3370
+ #: modules/subscribe-form/subscribe-form.php:213
3371
+ msgid "Text Hover Color"
3372
+ msgstr "Barva textu při najetí myší"
3373
+
3374
+ #: modules/button/button.php:162 modules/callout/callout.php:557
3375
+ #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
3376
+ #: modules/subscribe-form/subscribe-form.php:230
3377
+ msgid "Flat"
3378
+ msgstr "Plochý"
3379
+
3380
+ #: modules/button/button.php:163 modules/callout/callout.php:418
3381
+ #: modules/callout/callout.php:558
3382
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
3383
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3384
+ #: modules/subscribe-form/subscribe-form.php:231
3385
+ msgid "Gradient"
3386
+ msgstr "Gradient"
3387
+
3388
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3389
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3390
+ #: modules/subscribe-form/subscribe-form.php:232
3391
+ msgid "Transparent"
3392
+ msgstr "Průhledný"
3393
+
3394
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3395
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3396
+ #: modules/pricing-table/pricing-table.php:67
3397
+ #: modules/subscribe-form/subscribe-form.php:242
3398
+ msgid "Border Size"
3399
+ msgstr "Velikost okraje"
3400
+
3401
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3402
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3403
+ #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
3404
+ msgid "Background Opacity"
3405
+ msgstr "Neprůhlednost pozadí"
3406
+
3407
+ #: modules/button/button.php:193 modules/callout/callout.php:245
3408
+ #: modules/cta/cta.php:105 modules/heading/heading.php:82
3409
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3410
+ #: modules/subscribe-form/subscribe-form.php:95
3411
+ msgid "Structure"
3412
+ msgstr "Struktura"
3413
+
3414
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3415
+ msgctxt "Width."
3416
+ msgid "Auto"
3417
+ msgstr "Automatická"
3418
+
3419
+ #: modules/button/button.php:216
3420
+ msgid "Custom Width"
3421
+ msgstr "Vlastní šířka"
3422
+
3423
+ #: modules/button/button.php:224 modules/cta/cta.php:123
3424
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
3425
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3426
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3427
+ msgid "Alignment"
3428
+ msgstr "Zarovnání"
3429
+
3430
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3431
+ #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
3432
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
3433
+ #: modules/subscribe-form/subscribe-form.php:265
3434
+ msgid "Font Size"
3435
+ msgstr "Velikost písma"
3436
+
3437
+ #: modules/button/button.php:250 modules/callout/callout.php:617
3438
+ #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3439
+ msgid "Round Corners"
3440
+ msgstr "Zaoblené rohy"
3441
+
3442
+ #: modules/callout/callout.php:14
3443
+ msgid "Callout"
3444
+ msgstr "Promo"
3445
+
3446
+ #: modules/callout/callout.php:15
3447
+ msgid "A heading and snippet of text with an optional link, icon and image."
3448
+ msgstr "Nadpis a text s možností nastavené ikonky, obrázku a odkazu."
3449
+
3450
+ #: modules/callout/callout.php:217
3451
+ #: modules/content-slider/content-slider.php:414
3452
+ #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3453
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
3454
+ #: modules/post-slider/post-slider.php:582
3455
+ #: modules/testimonials/testimonials.php:56
3456
+ #: modules/testimonials/testimonials.php:61
3457
+ msgid "Heading"
3458
+ msgstr "Nadpis"
3459
+
3460
+ #: modules/callout/callout.php:249
3461
+ msgid "Overall Alignment"
3462
+ msgstr "Celkové zarovnání"
3463
+
3464
+ #: modules/callout/callout.php:256
3465
+ msgid "The alignment that will apply to all elements within the callout."
3466
+ msgstr ""
3467
+ "Zarovnání které bude aplikováno na všechny elementy v tomto promo modulu."
3468
+
3469
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3470
+ msgid "Heading Structure"
3471
+ msgstr "Struktura nadpisu"
3472
+
3473
+ #: modules/callout/callout.php:268
3474
+ #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3475
+ #: modules/post-slider/post-slider.php:586
3476
+ msgid "Heading Tag"
3477
+ msgstr "Tag nadpisu"
3478
+
3479
+ #: modules/callout/callout.php:281
3480
+ #: modules/content-slider/content-slider.php:446
3481
+ #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3482
+ #: modules/post-slider/post-slider.php:599
3483
+ #: modules/post-slider/post-slider.php:613
3484
+ #: modules/testimonials/testimonials.php:69
3485
+ msgid "Heading Size"
3486
+ msgstr "Velikost nadpisu"
3487
+
3488
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3489
+ msgid "Heading Custom Size"
3490
+ msgstr "Vlastní velikost nadpisu"
3491
+
3492
+ #: modules/callout/callout.php:313
3493
+ msgid "Image Type"
3494
+ msgstr "Typ obrázku"
3495
+
3496
+ #: modules/callout/callout.php:316
3497
+ msgctxt "Image type."
3498
+ msgid "None"
3499
+ msgstr "Žádný"
3500
+
3501
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417
3502
+ #: modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:320
3503
+ msgid "Crop"
3504
+ msgstr "Oříznutí"
3505
+
3506
+ #: modules/callout/callout.php:344 modules/photo/photo.php:420
3507
+ msgctxt "Photo Crop."
3508
+ msgid "None"
3509
+ msgstr "Žadné"
3510
+
3511
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421
3512
+ #: modules/post-slider/post-slider.php:485
3513
+ msgid "Landscape"
3514
+ msgstr "Horizontální obrázek"
3515
+
3516
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422
3517
+ #: modules/post-slider/post-slider.php:486
3518
+ msgid "Panorama"
3519
+ msgstr "Panorama"
3520
+
3521
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423
3522
+ #: modules/post-slider/post-slider.php:487
3523
+ msgid "Portrait"
3524
+ msgstr "Vertikální obrázek"
3525
+
3526
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424
3527
+ #: modules/post-slider/post-slider.php:488
3528
+ msgid "Square"
3529
+ msgstr "Čtverec"
3530
+
3531
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425
3532
+ #: modules/post-slider/post-slider.php:489
3533
+ msgid "Circle"
3534
+ msgstr "Kruh"
3535
+
3536
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3537
+ msgid "Above Heading"
3538
+ msgstr "Nad nadpisem"
3539
+
3540
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3541
+ msgid "Below Heading"
3542
+ msgstr "Pod nadpisem"
3543
+
3544
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3545
+ msgid "Left of Text and Heading"
3546
+ msgstr "Vlevo od textu a nadpisu"
3547
+
3548
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3549
+ msgid "Right of Text and Heading"
3550
+ msgstr "Vpravo od textu a nadpisu"
3551
+
3552
+ #: modules/callout/callout.php:379
3553
+ msgid "Left of Heading"
3554
+ msgstr "Vlevo od nadpisu"
3555
+
3556
+ #: modules/callout/callout.php:380
3557
+ msgid "Right of Heading"
3558
+ msgstr "Vpravo od nadpisu"
3559
+
3560
+ #: modules/callout/callout.php:388
3561
+ msgid "Icon Colors"
3562
+ msgstr "Barvy ikony"
3563
+
3564
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3565
+ #: modules/icon/icon.php:87
3566
+ msgid "Hover Color"
3567
+ msgstr "Barva při najetí myší"
3568
+
3569
+ #: modules/callout/callout.php:428
3570
+ msgid "Icon Structure"
3571
+ msgstr "Struktura ikony"
3572
+
3573
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3574
+ #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3575
+ #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
3576
+ msgid "Size"
3577
+ msgstr "Velikost"
3578
+
3579
+ #: modules/callout/callout.php:443
3580
+ #: modules/content-slider/content-slider.php:571
3581
+ msgid "Call To Action"
3582
+ msgstr "Výzva k akci"
3583
+
3584
+ #: modules/callout/callout.php:451
3585
+ msgid ""
3586
+ "The link applies to the entire module. If choosing a call to action type "
3587
+ "below, this link will also be used for the text or button."
3588
+ msgstr ""
3589
+ "Odkaz se aplikuje na celý modul. Pokud určíte typ výzvy k akci, tento odkaz "
3590
+ "se také použije na text nebo tlačítko."
3591
+
3592
+ #: modules/callout/callout.php:471
3593
+ #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3594
+ msgid "Call to Action"
3595
+ msgstr "Výzva k akci"
3596
+
3597
+ #: modules/callout/callout.php:478
3598
+ #: modules/content-slider/content-slider.php:600
3599
+ msgctxt "Call to action."
3600
+ msgid "None"
3601
+ msgstr "Žádná"
3602
+
3603
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3604
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
3605
+ msgid "Read More"
3606
+ msgstr "Číst dál"
3607
+
3608
+ #: modules/callout/callout.php:500
3609
+ #: modules/content-slider/content-slider.php:621
3610
+ #: modules/subscribe-form/subscribe-form.php:173
3611
+ msgid "Button Icon"
3612
+ msgstr "Ikona tlačítka"
3613
+
3614
+ #: modules/callout/callout.php:505
3615
+ #: modules/content-slider/content-slider.php:626
3616
+ msgid "Button Icon Position"
3617
+ msgstr "Pozice ikony tlačítka"
3618
+
3619
+ #: modules/callout/callout.php:515
3620
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3621
+ #: modules/subscribe-form/subscribe-form.php:188
3622
+ msgid "Button Colors"
3623
+ msgstr "Barva tlačítka"
3624
+
3625
+ #: modules/callout/callout.php:550
3626
+ #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3627
+ #: modules/subscribe-form/subscribe-form.php:223
3628
+ msgid "Button Style"
3629
+ msgstr "Styl tlačítka"
3630
+
3631
+ #: modules/callout/callout.php:588
3632
+ #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3633
+ #: modules/subscribe-form/subscribe-form.php:261
3634
+ msgid "Button Structure"
3635
+ msgstr "Struktura tlačítka"
3636
+
3637
+ #: modules/callout/callout.php:592
3638
+ msgid "Button Width"
3639
+ msgstr "Šířka tlačítka"
3640
+
3641
+ #: modules/contact-form/contact-form.php:14
3642
+ msgid "Contact Form"
3643
+ msgstr "Kontaktní formulář"
3644
+
3645
+ #: modules/contact-form/contact-form.php:15
3646
+ msgid "A very simple contact form."
3647
+ msgstr "Velmi jednoduchý kontaktní formulář"
3648
+
3649
+ #: modules/contact-form/contact-form.php:31
3650
+ msgid "Contact Form Submission"
3651
+ msgstr "Odeslání kontaktního formuláře"
3652
+
3653
+ #: modules/contact-form/contact-form.php:41
3654
+ msgid "Message"
3655
+ msgstr "Zpráva"
3656
+
3657
+ #: modules/contact-form/contact-form.php:65
3658
+ msgid "Send To Email"
3659
+ msgstr "Odeslat na email"
3660
+
3661
+ #: modules/contact-form/contact-form.php:67
3662
+ msgid "example@mail.com"
3663
+ msgstr "příklad@mail.com"
3664
+
3665
+ #: modules/contact-form/contact-form.php:68
3666
+ msgid "The contact form will send to this e-mail"
3667
+ msgstr "Kontaktní formulář bude odeslán na tuto emailovou adresu"
3668
+
3669
+ #: modules/contact-form/contact-form.php:75
3670
+ #: modules/subscribe-form/subscribe-form.php:108
3671
+ msgid "Name Field"
3672
+ msgstr "Pole “jméno”"
3673
+
3674
+ #: modules/contact-form/contact-form.php:78
3675
+ #: modules/contact-form/contact-form.php:87
3676
+ #: modules/contact-form/contact-form.php:96
3677
+ #: modules/contact-form/contact-form.php:105
3678
+ #: modules/post-carousel/post-carousel.php:258
3679
+ #: modules/post-carousel/post-carousel.php:322
3680
+ #: modules/post-carousel/post-carousel.php:331
3681
+ #: modules/post-carousel/post-carousel.php:366
3682
+ #: modules/post-carousel/post-carousel.php:375
3683
+ #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3684
+ #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3685
+ #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3686
+ #: modules/post-slider/post-slider.php:443
3687
+ #: modules/post-slider/post-slider.php:502
3688
+ #: modules/post-slider/post-slider.php:511
3689
+ #: modules/post-slider/post-slider.php:541
3690
+ #: modules/post-slider/post-slider.php:555
3691
+ #: modules/post-slider/post-slider.php:564
3692
+ #: modules/subscribe-form/subscribe-form.php:111
3693
+ msgid "Show"
3694
+ msgstr "Zobrazit"
3695
+
3696
+ #: modules/contact-form/contact-form.php:79
3697
+ #: modules/contact-form/contact-form.php:88
3698
+ #: modules/contact-form/contact-form.php:97
3699
+ #: modules/contact-form/contact-form.php:106
3700
+ #: modules/post-carousel/post-carousel.php:259
3701
+ #: modules/post-carousel/post-carousel.php:323
3702
+ #: modules/post-carousel/post-carousel.php:332
3703
+ #: modules/post-carousel/post-carousel.php:367
3704
+ #: modules/post-carousel/post-carousel.php:376
3705
+ #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
3706
+ #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
3707
+ #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
3708
+ #: modules/post-slider/post-slider.php:444
3709
+ #: modules/post-slider/post-slider.php:503
3710
+ #: modules/post-slider/post-slider.php:512
3711
+ #: modules/post-slider/post-slider.php:542
3712
+ #: modules/post-slider/post-slider.php:556
3713
+ #: modules/post-slider/post-slider.php:565
3714
+ #: modules/subscribe-form/subscribe-form.php:112
3715
+ msgid "Hide"
3716
+ msgstr "Skrýt"
3717
+
3718
+ #: modules/contact-form/contact-form.php:84
3719
+ msgid "Subject Field"
3720
+ msgstr "Pole “předmět”"
3721
+
3722
+ #: modules/contact-form/contact-form.php:93
3723
+ msgid "Email Field"
3724
+ msgstr "Pole “email”"
3725
+
3726
+ #: modules/contact-form/contact-form.php:102
3727
+ msgid "Phone Field"
3728
+ msgstr "Pole “telefon”"
3729
+
3730
+ #: modules/contact-form/includes/frontend.php:5
3731
+ msgctxt "Contact form field label."
3732
+ msgid "Name"
3733
+ msgstr "Jméno"
3734
+
3735
+ #: modules/contact-form/includes/frontend.php:6
3736
+ #: modules/subscribe-form/includes/frontend.php:6
3737
+ msgid "Please enter your name."
3738
+ msgstr "Zadejte, prosím, Vaše jméno."
3739
+
3740
+ #: modules/contact-form/includes/frontend.php:7
3741
+ msgid "Your name"
3742
+ msgstr "Vaše jméno"
3743
+
3744
+ #: modules/contact-form/includes/frontend.php:13
3745
+ #: modules/contact-form/includes/frontend.php:15
3746
+ msgid "Subject"
3747
+ msgstr "Předmět"
3748
+
3749
+ #: modules/contact-form/includes/frontend.php:14
3750
+ msgid "Please enter a subject."
3751
+ msgstr "Zadejte, prosím, předmět."
3752
+
3753
+ #: modules/contact-form/includes/frontend.php:22
3754
+ msgid "Please enter a valid email."
3755
+ msgstr "Zadejte, prosím, Váš platný email."
3756
+
3757
+ #: modules/contact-form/includes/frontend.php:23
3758
+ msgid "Your email"
3759
+ msgstr "Váš email"
3760
+
3761
+ #: modules/contact-form/includes/frontend.php:29
3762
+ msgid "Phone"
3763
+ msgstr "Telefon"
3764
+
3765
+ #: modules/contact-form/includes/frontend.php:30
3766
+ msgid "Please enter a valid phone number."
3767
+ msgstr "Zadejte, prosím, Vaše platné telefonní číslo."
3768
+
3769
+ #: modules/contact-form/includes/frontend.php:31
3770
+ msgid "Your phone"
3771
+ msgstr "Váš telefon"
3772
+
3773
+ #: modules/contact-form/includes/frontend.php:36
3774
+ msgid "Your Message"
3775
+ msgstr "Vaše zpráva"
3776
+
3777
+ #: modules/contact-form/includes/frontend.php:37
3778
+ msgid "Please enter a message."
3779
+ msgstr "Zadejte Vaši zprávu"
3780
+
3781
+ #: modules/contact-form/includes/frontend.php:38
3782
+ msgid "Your message"
3783
+ msgstr "Vaše zpráva"
3784
+
3785
+ #: modules/contact-form/includes/frontend.php:43
3786
+ msgid "Send"
3787
+ msgstr "Odeslat"
3788
+
3789
+ #: modules/contact-form/includes/frontend.php:44
3790
+ msgid "Message Sent!"
3791
+ msgstr "Zpráva odeslána!"
3792
+
3793
+ #: modules/contact-form/includes/frontend.php:45
3794
+ msgid "Message failed. Please try again."
3795
+ msgstr "Zprávu nebylo možno odeslat. Zkuste, prosím, znovu."
3796
+
3797
+ #: modules/content-slider/content-slider.php:14
3798
+ msgid "Content Slider"
3799
+ msgstr "Prezentace obsahu"
3800
+
3801
+ #: modules/content-slider/content-slider.php:15
3802
+ msgid "Displays multiple slides with an optional heading and call to action."
3803
+ msgstr "Zobrazí více snímků s volitelným nadpisem a výzvou k akci."
3804
+
3805
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
3806
+ #: modules/post-slider/post-slider.php:345 modules/separator/separator.php:58
3807
+ #: modules/slideshow/slideshow.php:302
3808
+ msgid "Height"
3809
+ msgstr "Výška"
3810
+
3811
+ #: modules/content-slider/content-slider.php:203
3812
+ msgid ""
3813
+ "This setting is the minimum height of the content slider. Content will "
3814
+ "expand the height automatically."
3815
+ msgstr ""
3816
+ "Tímto se nastaví minimální výška prezentace obsahu. Pokud je obsah "
3817
+ "prezentace vyšší, výška se automaticky přizpůsobí."
3818
+
3819
+ #: modules/content-slider/content-slider.php:207
3820
+ #: modules/post-carousel/post-carousel.php:136
3821
+ #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381
3822
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3823
+ msgid "Auto Play"
3824
+ msgstr "Automatické přehrávání"
3825
+
3826
+ #: modules/content-slider/content-slider.php:221
3827
+ msgid "Show Play/Pause"
3828
+ msgstr "Zobraz tlačítka přehrát / pauza"
3829
+
3830
+ #: modules/content-slider/content-slider.php:241
3831
+ #: modules/testimonials/testimonials.php:102
3832
+ msgctxt "Transition type."
3833
+ msgid "Slide"
3834
+ msgstr "Najetí"
3835
+
3836
+ #: modules/content-slider/content-slider.php:255
3837
+ #: modules/post-carousel/post-carousel.php:188
3838
+ #: modules/post-slider/post-slider.php:415
3839
+ #: modules/testimonials/testimonials.php:121
3840
+ msgid "Show Arrows"
3841
+ msgstr "Zobrazit šipky"
3842
+
3843
+ #: modules/content-slider/content-slider.php:264
3844
+ #: modules/post-carousel/post-carousel.php:179
3845
+ #: modules/post-slider/post-slider.php:406
3846
+ #: modules/testimonials/testimonials.php:151
3847
+ msgid "Show Dots"
3848
+ msgstr "Zobrazit tečky"
3849
+
3850
+ #: modules/content-slider/content-slider.php:278
3851
+ msgid "Max Content Width"
3852
+ msgstr "Maximální šířka obsahu"
3853
+
3854
+ #: modules/content-slider/content-slider.php:283
3855
+ msgid "The max width that the content area will be within your slides."
3856
+ msgstr "Maximální šířka obsahu ve Vašich snímcích."
3857
+
3858
+ #: modules/content-slider/content-slider.php:290
3859
+ msgid "Slides"
3860
+ msgstr "Snímky"
3861
+
3862
+ #: modules/content-slider/content-slider.php:297
3863
+ #: modules/post-slider/post-slider.php:374
3864
+ msgid "Slide"
3865
+ msgstr "Snímek"
3866
+
3867
+ #: modules/content-slider/content-slider.php:312
3868
+ msgid "Slide Settings"
3869
+ msgstr "Nastavení snímku"
3870
+
3871
+ #: modules/content-slider/content-slider.php:322
3872
+ msgid "Slide Label"
3873
+ msgstr "Popis snímku"
3874
+
3875
+ #: modules/content-slider/content-slider.php:323
3876
+ msgid ""
3877
+ "A label to identify this slide on the Slides tab of the Content Slider "
3878
+ "settings."
3879
+ msgstr ""
3880
+ "Popis, kterým se tento snímek identifikuje v nastaveních prezentace obsahu."
3881
+
3882
+ #: modules/content-slider/content-slider.php:328
3883
+ msgid "Background Layout"
3884
+ msgstr "Rozložení pozadí"
3885
+
3886
+ #: modules/content-slider/content-slider.php:334
3887
+ msgid "This setting is for the entire background of your slide."
3888
+ msgstr "Toto nastavení je pro celé pozadí Vašeho snímku."
3889
+
3890
+ #: modules/content-slider/content-slider.php:369
3891
+ msgid "Background Video Code"
3892
+ msgstr "Kód videa na pozadí"
3893
+
3894
+ #: modules/content-slider/content-slider.php:375
3895
+ msgid "Content Layout"
3896
+ msgstr "Rozložení obsahu"
3897
+
3898
+ #: modules/content-slider/content-slider.php:381
3899
+ msgid ""
3900
+ "This allows you to add content over or in addition to the background "
3901
+ "selection above. The location of the content layout can be selected in the "
3902
+ "style tab."
3903
+ msgstr ""
3904
+ "Toto nastavení umožní přidat obsah nad pozadí nastavené výše. Pozici obsahu "
3905
+ "nastavíte na záložce stylu."
3906
+
3907
+ #: modules/content-slider/content-slider.php:384
3908
+ msgid "Text &amp; Photo"
3909
+ msgstr "Text a obrázek"
3910
+
3911
+ #: modules/content-slider/content-slider.php:385
3912
+ msgid "Text &amp; Video"
3913
+ msgstr "Text a video"
3914
+
3915
+ #: modules/content-slider/content-slider.php:386
3916
+ msgctxt "Content type."
3917
+ msgid "None"
3918
+ msgstr "Žádný"
3919
+
3920
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3921
+ msgid "Video Embed Code"
3922
+ msgstr "Kód vloženého videa"
3923
+
3924
+ #: modules/content-slider/content-slider.php:469
3925
+ msgid "Text Position"
3926
+ msgstr "Pozice textu"
3927
+
3928
+ #: modules/content-slider/content-slider.php:475
3929
+ msgid ""
3930
+ "The position will move the content layout selections left, right or center "
3931
+ "over the background of the slide."
3932
+ msgstr ""
3933
+ "Pozicí nastavíte, zda se obsah zobrazí vlevo, vpravo nebo uprostřed nad "
3934
+ "pozadím snímku."
3935
+
3936
+ #: modules/content-slider/content-slider.php:492
3937
+ msgid "Top Margin"
3938
+ msgstr "Odsazení shora"
3939
+
3940
+ #: modules/content-slider/content-slider.php:500
3941
+ msgid "Bottom Margin"
3942
+ msgstr "Odsazení zdola"
3943
+
3944
+ #: modules/content-slider/content-slider.php:508
3945
+ msgid "Left Margin"
3946
+ msgstr "Odsazení zleva"
3947
+
3948
+ #: modules/content-slider/content-slider.php:516
3949
+ msgid "Right Margin"
3950
+ msgstr "Odsazení zprava"
3951
+
3952
+ #: modules/content-slider/content-slider.php:525
3953
+ msgid "Text Colors"
3954
+ msgstr "Barvy textu"
3955
+
3956
+ #: modules/content-slider/content-slider.php:535
3957
+ msgid "Text Shadow"
3958
+ msgstr "Stín textu"
3959
+
3960
+ #: modules/content-slider/content-slider.php:544
3961
+ #: modules/content-slider/content-slider.php:770
3962
+ #: modules/post-carousel/post-carousel.php:411
3963
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:721
3964
+ msgid "Text Background Color"
3965
+ msgstr "Barva pozadí textu"
3966
+
3967
+ #: modules/content-slider/content-slider.php:545
3968
+ #: modules/post-carousel/post-carousel.php:413
3969
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
3970
+ msgid ""
3971
+ "The color applies to the overlay behind text over the background selections."
3972
+ msgstr "Barva se aplikuje na překrytí obrázku za textem."
3973
+
3974
+ #: modules/content-slider/content-slider.php:550
3975
+ #: modules/post-carousel/post-carousel.php:423
3976
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
3977
+ msgid "Text Background Opacity"
3978
+ msgstr "Neprůhlednost pozadí textu"
3979
+
3980
+ #: modules/content-slider/content-slider.php:558
3981
+ #: modules/post-slider/post-slider.php:745
3982
+ msgid "Text Background Height"
3983
+ msgstr "Výška pozadí textu"
3984
+
3985
+ #: modules/content-slider/content-slider.php:560
3986
+ #: modules/post-slider/post-slider.php:747
3987
+ msgid ""
3988
+ "Auto will allow the overlay to fit however long the text content is. 100% "
3989
+ "will fit the overlay to the top and bottom of the slide."
3990
+ msgstr ""
3991
+ "Automatické nastavení přizpůsobí překrytí délce textu obsahu. 100% natáhne "
3992
+ "překrytí od shora po spodek snímku."
3993
+
3994
+ #: modules/content-slider/content-slider.php:562
3995
+ #: modules/post-slider/post-slider.php:749
3996
+ msgctxt "Background height."
3997
+ msgid "Auto"
3998
+ msgstr "Automatická"
3999
+
4000
+ #: modules/content-slider/content-slider.php:579
4001
+ msgid ""
4002
+ "The link applies to the entire slide. If choosing a call to action type "
4003
+ "below, this link will also be used for the text or button."
4004
+ msgstr ""
4005
+ "Odkaz se aplikuje na celý snímek. Pokud zvolíte výzvu k akci, použije se "
4006
+ "tento odkaz také na text nebo tlačítko."
4007
+
4008
+ #: modules/content-slider/content-slider.php:721
4009
+ msgid "Border Radius"
4010
+ msgstr "Poloměr okrajů"
4011
+
4012
+ #: modules/content-slider/content-slider.php:732
4013
+ msgctxt "Module settings form tab. Display on mobile devices."
4014
+ msgid "Mobile"
4015
+ msgstr "Mobilní zobrazení"
4016
+
4017
+ #: modules/content-slider/content-slider.php:735
4018
+ msgid "Mobile Photo"
4019
+ msgstr "Obrázek pro mobilní zařízení"
4020
+
4021
+ #: modules/content-slider/content-slider.php:741
4022
+ msgid ""
4023
+ "You can choose a different photo that the slide will change to on mobile "
4024
+ "devices or no photo if desired."
4025
+ msgstr ""
4026
+ "Pro zobrazení na mobilních zařízeních můžete zvolit jiný obrázek nebo žádný, "
4027
+ "pokud je to třeba."
4028
+
4029
+ #: modules/content-slider/content-slider.php:743
4030
+ msgid "Use Main Photo"
4031
+ msgstr "Použít hlavní obrázek"
4032
+
4033
+ #: modules/content-slider/content-slider.php:744
4034
+ msgid "Choose Another Photo"
4035
+ msgstr "Vyberte jiný obrázek"
4036
+
4037
+ #: modules/content-slider/content-slider.php:745
4038
+ msgid "No Photo"
4039
+ msgstr "Žádný obrázek"
4040
+
4041
+ #: modules/content-slider/content-slider.php:760
4042
+ msgid "Mobile Text Colors"
4043
+ msgstr "Barva textu na mobilních zařízeních"
4044
+
4045
+ #: modules/cta/cta.php:15
4046
+ msgid "Display a heading, subheading and a button."
4047
+ msgstr "Zobrazí nadpis, podnadpis a tlačítko."
4048
+
4049
+ #: modules/cta/cta.php:76
4050
+ msgid "Ready to find out more?"
4051
+ msgstr "Připraveni, dozvědět se víc?"
4052
+
4053
+ #: modules/cta/cta.php:91
4054
+ msgid "Drop us a line today for a free quote!"
4055
+ msgstr "Napište nám ještě dne pro bezplatnou konzultaci!"
4056
+
4057
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4058
+ #: modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117
4059
+ #: modules/post-carousel/post-carousel.php:206
4060
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
4061
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4062
+ #: modules/testimonials/testimonials.php:37
4063
+ #: modules/woocommerce/woocommerce.php:57
4064
+ msgid "Layout"
4065
+ msgstr "Rozložení"
4066
+
4067
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
4068
+ msgid "Inline"
4069
+ msgstr "V jednom řádku"
4070
+
4071
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
4072
+ msgid "Stacked"
4073
+ msgstr "Naskládané"
4074
+
4075
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
4076
+ msgid "Spacing"
4077
+ msgstr "Rozestupy"
4078
+
4079
+ #: modules/cta/cta.php:246
4080
+ msgid "Button Link"
4081
+ msgstr "Odkaz tlačítka"
4082
+
4083
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
4084
+ #: modules/post-grid/post-grid.php:55
4085
+ msgid "Gallery"
4086
+ msgstr "Galerie"
4087
+
4088
+ #: modules/gallery/gallery.php:15
4089
+ msgid "Display multiple photos in a gallery view."
4090
+ msgstr "Zobrazí více obrázku v zobrazení galerie."
4091
+
4092
+ #: modules/gallery/gallery.php:230
4093
+ msgid "Collage"
4094
+ msgstr "Koláž"
4095
+
4096
+ #: modules/gallery/gallery.php:231
4097
+ msgctxt "Gallery layout: thumbnails."
4098
+ msgid "Thumbs"
4099
+ msgstr "Miniatury"
4100
+
4101
+ #: modules/gallery/gallery.php:267
4102
+ msgid "Photo Size"
4103
+ msgstr "Velikost obrázku"
4104
+
4105
+ #: modules/gallery/gallery.php:270
4106
+ msgctxt "Photo size."
4107
+ msgid "Small"
4108
+ msgstr "Malý"
4109
+
4110
+ #: modules/gallery/gallery.php:271
4111
+ msgctxt "Photo size."
4112
+ msgid "Medium"
4113
+ msgstr "Střední"
4114
+
4115
+ #: modules/gallery/gallery.php:272
4116
+ msgctxt "Photo size."
4117
+ msgid "Large"
4118
+ msgstr "Velký"
4119
+
4120
+ #: modules/gallery/gallery.php:277
4121
+ msgid "Photo Spacing"
4122
+ msgstr "Rozestupy obrázků"
4123
+
4124
+ #: modules/gallery/gallery.php:285
4125
+ msgid "Show Captions"
4126
+ msgstr "Zobrazit popisek"
4127
+
4128
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4129
+ msgid "Never"
4130
+ msgstr "Nikdy"
4131
+
4132
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4133
+ msgid "On Hover"
4134
+ msgstr "Při najetí myší"
4135
+
4136
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4137
+ msgid "Below Photo"
4138
+ msgstr "Pod obrázkem"
4139
+
4140
+ #: modules/gallery/gallery.php:292
4141
+ msgid ""
4142
+ "The caption pulls from whatever text you put in the caption area in the "
4143
+ "media manager for each image. The caption is also pulled directly from "
4144
+ "SmugMug if you have captions set in your gallery."
4145
+ msgstr ""
4146
+ "Pro každý obrázek se popisek natáhne z pole “popisek”, který jste vyplnili "
4147
+ "ve správci multimédií. Popisek se automaticky natáhne ze SmugMug, pokud ve "
4148
+ "Vaší galerii máte popisky nastavené."
4149
+
4150
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4151
+ msgid "Click Action"
4152
+ msgstr "Akce kliknutí"
4153
+
4154
+ #: modules/gallery/gallery.php:299
4155
+ msgctxt "Click action."
4156
+ msgid "None"
4157
+ msgstr "Žádná"
4158
+
4159
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4160
+ msgid "Lightbox"
4161
+ msgstr "Lightbox (zvětšení obrázků)"
4162
+
4163
+ #: modules/gallery/gallery.php:301
4164
+ msgid "Photo Link"
4165
+ msgstr "Odkaz na obrázek"
4166
+
4167
+ #: modules/heading/heading.php:15
4168
+ msgid "Display a title/page heading."
4169
+ msgstr "Zobrazit nadpis stránky."
4170
+
4171
+ #: modules/heading/heading.php:101
4172
+ msgid "HTML Tag"
4173
+ msgstr "HTML tag"
4174
+
4175
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
4176
+ msgid "Custom Font Size"
4177
+ msgstr "Vlastní velikost písma"
4178
+
4179
+ #: modules/heading/heading.php:137
4180
+ msgid "Mobile Structure"
4181
+ msgstr "Mobilní zobrazení"
4182
+
4183
+ #: modules/heading/heading.php:158
4184
+ msgid "Custom Alignment"
4185
+ msgstr "Vlastní zarovnání"
4186
+
4187
+ #: modules/html/html.php:14
4188
+ msgid "HTML"
4189
+ msgstr "HTML"
4190
+
4191
+ #: modules/html/html.php:15
4192
+ msgid "Display raw HTML code."
4193
+ msgstr "Zobrazí surový HTML kód."
4194
+
4195
+ #: modules/icon-group/icon-group.php:14
4196
+ msgid "Icon Group"
4197
+ msgstr "Skupina ikon"
4198
+
4199
+ #: modules/icon-group/icon-group.php:15
4200
+ msgid "Display a group of linked Font Awesome icons."
4201
+ msgstr "Zobrazí skupinu připojených Font Awesome ikon."
4202
+
4203
+ #: modules/icon-group/icon-group.php:125
4204
+ msgid "Add Icon"
4205
+ msgstr "Přidat ikonu"
4206
+
4207
+ #: modules/icon/icon.php:15
4208
+ msgid "Display an icon and optional title."
4209
+ msgstr "Zobrazí ikonu a nepovinný nadpis."
4210
+
4211
+ #: modules/map/map.php:14
4212
+ msgid "Map"
4213
+ msgstr "Mapa"
4214
+
4215
+ #: modules/map/map.php:15
4216
+ msgid "Display a Google map."
4217
+ msgstr "Zobrazí Google mapu."
4218
+
4219
+ #: modules/map/map.php:33
4220
+ msgid "Address"
4221
+ msgstr "Adresa"
4222
+
4223
+ #: modules/map/map.php:34
4224
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4225
+ msgstr "Plzeň, Česká republika"
4226
+
4227
+ #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62
4228
+ #: modules/menu/menu.php:69
4229
+ msgid "Menu"
4230
+ msgstr "Menu"
4231
+
4232
+ #: modules/menu/menu.php:15
4233
+ msgid "Renders a WordPress menu."
4234
+ msgstr "Zobrazí WordPress menu."
4235
+
4236
+ #: modules/menu/menu.php:25
4237
+ msgid ""
4238
+ "Select a WordPress menu that you created in the admin under Appearance > "
4239
+ "Menus."
4240
+ msgstr ""
4241
+ "Zvolte WordPress menu, které jste vytvořili v administraci ve Vzhled > Menu."
4242
+
4243
+ #: modules/menu/menu.php:42
4244
+ msgid "No Menus Found"
4245
+ msgstr "Nenalezeny žádná menu"
4246
+
4247
+ #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4248
+ msgid "Horizontal"
4249
+ msgstr "Horizontální"
4250
+
4251
+ #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
4252
+ msgid "Vertical"
4253
+ msgstr "Vertikální"
4254
+
4255
+ #: modules/menu/menu.php:96 modules/menu/menu.php:134
4256
+ msgid "Expanded"
4257
+ msgstr "Rozšířené"
4258
+
4259
+ #: modules/menu/menu.php:112
4260
+ msgid "Submenu Icon"
4261
+ msgstr "Ikona podmenu"
4262
+
4263
+ #: modules/menu/menu.php:115 modules/menu/menu.php:125
4264
+ msgid "Arrows"
4265
+ msgstr "Šipky"
4266
+
4267
+ #: modules/menu/menu.php:116 modules/menu/menu.php:126
4268
+ msgid "Plus sign"
4269
+ msgstr "Znaménko plus"
4270
+
4271
+ #: modules/menu/menu.php:117 modules/menu/menu.php:223
4272
+ msgid "None"
4273
+ msgstr "Žádná"
4274
+
4275
+ #: modules/menu/menu.php:122
4276
+ msgid "Submenu Icon click"
4277
+ msgstr "Kliknutí na ikonu podmenu"
4278
+
4279
+ #: modules/menu/menu.php:131
4280
+ msgid "Mobile Style"
4281
+ msgstr "Mobilní styl"
4282
+
4283
+ #: modules/menu/menu.php:135
4284
+ msgid "Hamburger Icon"
4285
+ msgstr "Ikona “hamburger”"
4286
+
4287
+ #: modules/menu/menu.php:136
4288
+ msgid "Hamburger Icon + label"
4289
+ msgstr "Ikona “hamburger” + nadpis"
4290
+
4291
+ #: modules/menu/menu.php:137
4292
+ msgid "Menu Button"
4293
+ msgstr "Tlačítko menu"
4294
+
4295
+ #: modules/menu/menu.php:153
4296
+ msgid "Menu Alignment"
4297
+ msgstr "Zarovnání"
4298
+
4299
+ #: modules/menu/menu.php:164
4300
+ msgid "Submenu Drop Shadow"
4301
+ msgstr "Stín podmenu"
4302
+
4303
+ #: modules/menu/menu.php:206
4304
+ msgid "Link Size"
4305
+ msgstr "Velikost odkazu"
4306
+
4307
+ #: modules/menu/menu.php:220
4308
+ msgid "Link Format"
4309
+ msgstr "Formát odkazu"
4310
+
4311
+ #: modules/menu/menu.php:224
4312
+ msgid "Uppercase"
4313
+ msgstr "Velké písmo"
4314
+
4315
+ #: modules/menu/menu.php:225
4316
+ msgid "Lowercase"
4317
+ msgstr "Malé písmo"
4318
+
4319
+ #: modules/menu/menu.php:226
4320
+ msgid "Capitalize"
4321
+ msgstr "Kapitálky"
4322
+
4323
+ #: modules/menu/menu.php:236
4324
+ msgid "Link Weight"
4325
+ msgstr "Tučnost odkazu"
4326
+
4327
+ #: modules/menu/menu.php:239
4328
+ msgid "Normal"
4329
+ msgstr "Normální"
4330
+
4331
+ #: modules/menu/menu.php:240
4332
+ msgid "Bold"
4333
+ msgstr "Tučné"
4334
+
4335
+ #: modules/menu/menu.php:241
4336
+ msgid "Light"
4337
+ msgstr "Tenké"
4338
+
4339
+ #: modules/menu/menu.php:251
4340
+ msgid "Horizontal Spacing"
4341
+ msgstr "Horizontální odsazení"
4342
+
4343
+ #: modules/menu/menu.php:274
4344
+ msgid "Vertical Spacing"
4345
+ msgstr "Vertikální odsazení"
4346
+
4347
+ #: modules/menu/menu.php:299
4348
+ msgid "Backgrounds"
4349
+ msgstr "Pozadí"
4350
+
4351
+ #: modules/menu/menu.php:303
4352
+ msgid "Menu Background Color"
4353
+ msgstr "Barva pozadí menu"
4354
+
4355
+ #: modules/menu/menu.php:313 modules/menu/menu.php:331
4356
+ msgid "Menu Background Opacity"
4357
+ msgstr "Neprůhlednost pozadí menu"
4358
+
4359
+ #: modules/menu/menu.php:321
4360
+ msgid "Submenu Background Color"
4361
+ msgstr "Barva pozadí podmenu"
4362
+
4363
+ #: modules/menu/menu.php:340
4364
+ msgid "Link Background Hover Color"
4365
+ msgstr "Barva pozadí odkazu při najetí myší"
4366
+
4367
+ #: modules/menu/menu.php:351 modules/separator/separator.php:14
4368
+ msgid "Separator"
4369
+ msgstr "Oddělovač"
4370
+
4371
+ #: modules/menu/menu.php:355
4372
+ msgid "Show Separators"
4373
+ msgstr "Zobrazit oddělovače"
4374
+
4375
+ #: modules/menu/menu.php:369
4376
+ msgid "Separator Color"
4377
+ msgstr "Barva oddělovače"
4378
+
4379
+ #: modules/menu/menu.php:374
4380
+ msgid "Separator Opacity"
4381
+ msgstr "Neprůhlednost oddělovače"
4382
+
4383
+ #: modules/photo/photo.php:26
4384
+ msgid "Upload a photo or display one from the media library."
4385
+ msgstr "Nahrajte obrázek nebo použijte existujicí z multimediální knihovny."
4386
+
4387
+ #: modules/photo/photo.php:391
4388
+ msgid "Photo Source"
4389
+ msgstr "Zdroj obrázku"
4390
+
4391
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
4392
+ msgid "URL"
4393
+ msgstr "URL"
4394
+
4395
+ #: modules/photo/photo.php:412
4396
+ msgid "Photo URL"
4397
+ msgstr "URL adresa obrázku"
4398
+
4399
+ #: modules/photo/photo.php:413
4400
+ msgid "http://www.example.com/my-photo.jpg"
4401
+ msgstr "http://www.priklad.com/muj-obrazek.jpg"
4402
+
4403
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
4404
+ msgid "Caption"
4405
+ msgstr "popisek"
4406
+
4407
+ #: modules/photo/photo.php:445
4408
+ msgid "Show Caption"
4409
+ msgstr "Zobrazí popisek"
4410
+
4411
+ #: modules/photo/photo.php:464
4412
+ msgid "Link Type"
4413
+ msgstr "Typ odkazu"
4414
+
4415
+ #: modules/photo/photo.php:466
4416
+ msgctxt "Link type."
4417
+ msgid "None"
4418
+ msgstr "Žádný"
4419
+
4420
+ #: modules/photo/photo.php:469
4421
+ msgid "Photo File"
4422
+ msgstr "Soubor obrázku"
4423
+
4424
+ #: modules/photo/photo.php:480
4425
+ msgid ""
4426
+ "Link type applies to how the image should be linked on click. You can choose "
4427
+ "a specific URL, the individual photo or a separate page with the photo."
4428
+ msgstr ""
4429
+ "Typ odkazu určí kam budete přesměrováni po kliknutí na obrázek. Můžete "
4430
+ "zvolit konkrétní URL adresu, obrázek nebo samostatnou stránku s daným "
4431
+ "obrázkem."
4432
+
4433
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4434
+ msgid "Link URL"
4435
+ msgstr "Odkaz URL"
4436
+
4437
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
4438
+ #: modules/post-carousel/includes/post-grid-loop.php:22
4439
+ #: modules/post-grid/includes/post-feed.php:14
4440
+ #: modules/post-grid/includes/post-grid.php:24
4441
+ #: modules/post-slider/includes/post-loop.php:29
4442
+ #, php-format
4443
+ msgctxt "%s stands for author name."
4444
+ msgid "By %s"
4445
+ msgstr "Autor: %s"
4446
+
4447
+ #: modules/post-carousel/post-carousel.php:14
4448
+ msgid "Posts Carousel"
4449
+ msgstr "Kolotoč článků"
4450
+
4451
+ #: modules/post-carousel/post-carousel.php:15
4452
+ msgid "Display a carousel of your WordPress posts."
4453
+ msgstr "Zobrazí kolotoč Vašich WordPress článků."
4454
+
4455
+ #: modules/post-carousel/post-carousel.php:110
4456
+ #: modules/post-slider/post-slider.php:338
4457
+ msgid "Slider"
4458
+ msgstr "Posuvník"
4459
+
4460
+ #: modules/post-carousel/post-carousel.php:120
4461
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
4462
+ msgid "Grid"
4463
+ msgstr "Mřížka"
4464
+
4465
+ #: modules/post-carousel/post-carousel.php:152
4466
+ #: modules/post-slider/post-slider.php:379 modules/video/video.php:120
4467
+ msgid "Loop"
4468
+ msgstr "Smyčka"
4469
+
4470
+ #: modules/post-carousel/post-carousel.php:168
4471
+ #: modules/post-slider/post-slider.php:395
4472
+ msgid "Number of Posts"
4473
+ msgstr "Počet článků"
4474
+
4475
+ #: modules/post-carousel/post-carousel.php:175
4476
+ #: modules/post-slider/post-slider.php:402
4477
+ msgid "Slider Controls"
4478
+ msgstr "Ovladače posuvníku"
4479
+
4480
+ #: modules/post-carousel/post-carousel.php:209
4481
+ #: modules/post-grid/post-grid.php:14
4482
+ msgid "Posts"
4483
+ msgstr "Články"
4484
+
4485
+ #: modules/post-carousel/post-carousel.php:213
4486
+ msgid "Post Max Width"
4487
+ msgstr "Maximální šířka článku"
4488
+
4489
+ #: modules/post-carousel/post-carousel.php:221
4490
+ #: modules/post-grid/post-grid.php:103
4491
+ msgid "Post Spacing"
4492
+ msgstr "Rozestupy článků"
4493
+
4494
+ #: modules/post-carousel/post-carousel.php:229
4495
+ msgid "Equalize Column Heights"
4496
+ msgstr "Zarovna výšku sloupců"
4497
+
4498
+ #: modules/post-carousel/post-carousel.php:238
4499
+ msgid "Post Hover Transition"
4500
+ msgstr "Změna článku po přechodu myší"
4501
+
4502
+ #: modules/post-carousel/post-carousel.php:242
4503
+ #: modules/post-grid/post-grid.php:248
4504
+ msgid "Slide Up"
4505
+ msgstr "Najet shora"
4506
+
4507
+ #: modules/post-carousel/post-carousel.php:243
4508
+ #: modules/post-grid/post-grid.php:249
4509
+ msgid "Slide Down"
4510
+ msgstr "Najet zdola"
4511
+
4512
+ #: modules/post-carousel/post-carousel.php:244
4513
+ #: modules/post-grid/post-grid.php:250
4514
+ msgid "Scale Up"
4515
+ msgstr "Zvětšit"
4516
+
4517
+ #: modules/post-carousel/post-carousel.php:245
4518
+ #: modules/post-grid/post-grid.php:251
4519
+ msgid "Scale Down"
4520
+ msgstr "Zmenšit"
4521
+
4522
+ #: modules/post-carousel/post-carousel.php:251
4523
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:456
4524
+ msgid "Featured Image"
4525
+ msgstr "Prezentační obrázek"
4526
+
4527
+ #: modules/post-carousel/post-carousel.php:279
4528
+ #: modules/post-grid/post-grid.php:261
4529
+ msgid "Use Icon for Posts"
4530
+ msgstr "Použít ikonu článků"
4531
+
4532
+ #: modules/post-carousel/post-carousel.php:293
4533
+ #: modules/post-grid/post-grid.php:275
4534
+ msgid "Post Icon"
4535
+ msgstr "Ikona článku"
4536
+
4537
+ #: modules/post-carousel/post-carousel.php:297
4538
+ #: modules/post-grid/post-grid.php:279
4539
+ msgid "Post Icon Position"
4540
+ msgstr "Pozice ikony článku"
4541
+
4542
+ #: modules/post-carousel/post-carousel.php:300
4543
+ #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4544
+ msgid "Above Text"
4545
+ msgstr "Nad textem"
4546
+
4547
+ #: modules/post-carousel/post-carousel.php:301
4548
+ #: modules/post-grid/post-grid.php:283
4549
+ msgid "Below Text"
4550
+ msgstr "Pod textem"
4551
+
4552
+ #: modules/post-carousel/post-carousel.php:306
4553
+ #: modules/post-grid/post-grid.php:288
4554
+ msgid "Post Icon Size"
4555
+ msgstr "Velikost ikony článku"
4556
+
4557
+ #: modules/post-carousel/post-carousel.php:315
4558
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
4559
+ msgid "Post Info"
4560
+ msgstr "Informace o článku"
4561
+
4562
+ #: modules/post-carousel/post-carousel.php:342
4563
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:522
4564
+ msgid "Date Format"
4565
+ msgstr "Formát data"
4566
+
4567
+ #: modules/post-carousel/post-carousel.php:372
4568
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:561
4569
+ msgid "More Link"
4570
+ msgstr "Odkaz \"Číst dále\""
4571
+
4572
+ #: modules/post-carousel/post-carousel.php:381
4573
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
4574
+ msgid "More Link Text"
4575
+ msgstr "Text odkazu \"Číst dále\""
4576
+
4577
+ #: modules/post-carousel/post-carousel.php:418
4578
+ #: modules/post-grid/post-grid.php:307
4579
+ msgid "Post Icon Color"
4580
+ msgstr "Barva ikony článku"
4581
+
4582
+ #: modules/post-grid/includes/frontend.php:41
4583
+ msgid "No posts found."
4584
+ msgstr "Nenalezen žádný příspěvek"
4585
+
4586
+ #: modules/post-grid/post-grid.php:15
4587
+ msgid "Display a grid of your WordPress posts."
4588
+ msgstr "Zobrazí mřížku Vašich WordPress článků."
4589
+
4590
+ #: modules/post-grid/post-grid.php:51
4591
+ msgid "Layout Style"
4592
+ msgstr "Styl rozvržení"
4593
+
4594
+ #: modules/post-grid/post-grid.php:56
4595
+ msgid "Feed"
4596
+ msgstr "Seznam"
4597
+
4598
+ #: modules/post-grid/post-grid.php:74
4599
+ msgid "Pagination Style"
4600
+ msgstr "Styl stránkování"
4601
+
4602
+ #: modules/post-grid/post-grid.php:77
4603
+ msgid "Numbers"
4604
+ msgstr "Čísla"
4605
+
4606
+ #: modules/post-grid/post-grid.php:79
4607
+ msgctxt "Pagination style."
4608
+ msgid "None"
4609
+ msgstr "Žádné"
4610
+
4611
+ #: modules/post-grid/post-grid.php:84
4612
+ msgid "Posts Per Page"
4613
+ msgstr "Počet článku na stránku"
4614
+
4615
+ #: modules/post-grid/post-grid.php:95
4616
+ msgid "Post Width"
4617
+ msgstr "Šířka článku"
4618
+
4619
+ #: modules/post-grid/post-grid.php:134
4620
+ msgid "Beside Text"
4621
+ msgstr "Vedle textu"
4622
+
4623
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
4624
+ msgid "Comments"
4625
+ msgstr "Komentáře"
4626
+
4627
+ #: modules/post-grid/post-grid.php:211
4628
+ msgid "Content Type"
4629
+ msgstr "Typ obsahu"
4630
+
4631
+ #: modules/post-grid/post-grid.php:214
4632
+ msgid "Excerpt"
4633
+ msgstr "Shrnutí"
4634
+
4635
+ #: modules/post-grid/post-grid.php:215
4636
+ msgid "Full Text"
4637
+ msgstr "Celý text"
4638
+
4639
+ #: modules/post-grid/post-grid.php:244
4640
+ msgid "Hover Transition"
4641
+ msgstr "Změna po najetí myší"
4642
+
4643
+ #: modules/post-slider/post-slider.php:14
4644
+ msgid "Posts Slider"
4645
+ msgstr "Posuvník článků"
4646
+
4647
+ #: modules/post-slider/post-slider.php:15
4648
+ msgid "Display a slider of your WordPress posts."
4649
+ msgstr "Zobrazí posuvník Vašich WordPress článků."
4650
+
4651
+ #: modules/post-slider/post-slider.php:350
4652
+ msgid ""
4653
+ "This setting is the minimum height of the post slider. Content will expand "
4654
+ "the height automatically."
4655
+ msgstr ""
4656
+ "Toto nastavení určuje minimální výšku posuvníku článku. Obsah článku zvětší "
4657
+ "výšku automaticky."
4658
+
4659
+ #: modules/post-slider/post-slider.php:440
4660
+ msgid "Show Featured Image?"
4661
+ msgstr "Zobrazit prezentační obrázek?"
4662
+
4663
+ #: modules/post-slider/post-slider.php:628
4664
+ msgid ""
4665
+ "The position will move the content layout selections left, right or bottom "
4666
+ "over the background of the slide."
4667
+ msgstr "Tato pozice přesune obsah vlevo, vpravo nebo dolů přes pozadí snímku."
4668
+
4669
+ #: modules/post-slider/post-slider.php:647
4670
+ msgid ""
4671
+ "The position will move the content layout selections left or right or center "
4672
+ "of the thumbnail of the slide."
4673
+ msgstr ""
4674
+ "Tato pozice přesune obsah vlevo, vpravo nebo doprostřed náhledu snímku."
4675
+
4676
+ #: modules/post-slider/post-slider.php:663
4677
+ msgid "Text Width"
4678
+ msgstr "Šířka textu"
4679
+
4680
+ #: modules/post-slider/post-slider.php:671
4681
+ msgid "Text Padding"
4682
+ msgstr "Odsazení textu"
4683
+
4684
+ #: modules/post-slider/post-slider.php:736
4685
+ msgid "Text Background Gradient"
4686
+ msgstr "Gradient pozadí textu"
4687
+
4688
+ #: modules/pricing-table/pricing-table.php:14
4689
+ msgid "Pricing Table"
4690
+ msgstr "Tabulka cen"
4691
+
4692
+ #: modules/pricing-table/pricing-table.php:15
4693
+ msgid "A simple pricing table generator."
4694
+ msgstr "Jednoduchý generátor tabulky cen"
4695
+
4696
+ #: modules/pricing-table/pricing-table.php:26
4697
+ msgid "Pricing Boxes"
4698
+ msgstr "Cenová pole"
4699
+
4700
+ #: modules/pricing-table/pricing-table.php:33
4701
+ msgid "Pricing Box"
4702
+ msgstr "Cenové pole"
4703
+
4704
+ #: modules/pricing-table/pricing-table.php:50
4705
+ msgid "Box Spacing"
4706
+ msgstr "Rozestupy polí"
4707
+
4708
+ #: modules/pricing-table/pricing-table.php:53
4709
+ #: modules/testimonials/testimonials.php:40
4710
+ msgid "Wide"
4711
+ msgstr "Široké"
4712
+
4713
+ #: modules/pricing-table/pricing-table.php:54
4714
+ msgid "Tight"
4715
+ msgstr "Úzké"
4716
+
4717
+ #: modules/pricing-table/pricing-table.php:59
4718
+ msgid "Features Min Height"
4719
+ msgstr "Minimální výška vlastností"
4720
+
4721
+ #: modules/pricing-table/pricing-table.php:63
4722
+ msgid ""
4723
+ "Use this to normalize the height of your boxes when they have different "
4724
+ "numbers of features."
4725
+ msgstr ""
4726
+ "Použijte toto nastevení pro sjednocení výšky polí, pokud obsahují různý "
4727
+ "počet vlastností."
4728
+
4729
+ #: modules/pricing-table/pricing-table.php:70
4730
+ msgctxt "Border size."
4731
+ msgid "Wide"
4732
+ msgstr "Široký"
4733
+
4734
+ #: modules/pricing-table/pricing-table.php:71
4735
+ msgctxt "Border size."
4736
+ msgid "Tight"
4737
+ msgstr "Úzký"
4738
+
4739
+ #: modules/pricing-table/pricing-table.php:84
4740
+ msgid "Add Pricing Box"
4741
+ msgstr "Přidat cenové pole"
4742
+
4743
+ #: modules/pricing-table/pricing-table.php:98
4744
+ msgid "Title Size"
4745
+ msgstr "Velikost nadpisu"
4746
+
4747
+ #: modules/pricing-table/pricing-table.php:107
4748
+ msgid "Price Box"
4749
+ msgstr "Cenové pole"
4750
+
4751
+ #: modules/pricing-table/pricing-table.php:111
4752
+ #: modules/woocommerce/woocommerce.php:190
4753
+ msgid "Price"
4754
+ msgstr "Cena"
4755
+
4756
+ #: modules/pricing-table/pricing-table.php:115
4757
+ msgid "Duration"
4758
+ msgstr "Trvání"
4759
+
4760
+ #: modules/pricing-table/pricing-table.php:116
4761
+ msgid "per Year"
4762
+ msgstr "Ročně"
4763
+
4764
+ #: modules/pricing-table/pricing-table.php:120
4765
+ msgid "Price Size"
4766
+ msgstr "Velikost ceny"
4767
+
4768
+ #: modules/pricing-table/pricing-table.php:133
4769
+ #: modules/subscribe-form/subscribe-form.php:168
4770
+ msgid "Button Text"
4771
+ msgstr "Text tlačítka"
4772
+
4773
+ #: modules/pricing-table/pricing-table.php:137
4774
+ msgid "Button URL"
4775
+ msgstr "URL odkaz tlačítka"
4776
+
4777
+ #: modules/pricing-table/pricing-table.php:142
4778
+ msgctxt "Price features displayed in pricing box."
4779
+ msgid "Features"
4780
+ msgstr "Vlastnosti"
4781
+
4782
+ #: modules/pricing-table/pricing-table.php:147
4783
+ msgid "One feature per line. HTML is okay."
4784
+ msgstr "Jedna vlastnost na každý řádek. Můžete použít HTML."
4785
+
4786
+ #: modules/pricing-table/pricing-table.php:162
4787
+ msgid "Box Background"
4788
+ msgstr "Pozadí pole"
4789
+
4790
+ #: modules/pricing-table/pricing-table.php:167
4791
+ msgid "Box Foreground"
4792
+ msgstr "Popředí pole"
4793
+
4794
+ #: modules/pricing-table/pricing-table.php:173
4795
+ msgid "Accent Color"
4796
+ msgstr "Důrazová barva"
4797
+
4798
+ #: modules/pricing-table/pricing-table.php:178
4799
+ msgid "Accent Text Color"
4800
+ msgstr "Důrazová barva textu"
4801
+
4802
+ #: modules/pricing-table/pricing-table.php:182
4803
+ msgid "Box Top Margin"
4804
+ msgstr "Odsazení boxu shora"
4805
+
4806
+ #: modules/rich-text/rich-text.php:15
4807
+ msgid "A WYSIWYG text editor."
4808
+ msgstr "Textový editor"
4809
+
4810
+ #: modules/separator/separator.php:15
4811
+ msgid "A divider line to separate content."
4812
+ msgstr "Dělící čára pro oddělení obsahu"
4813
+
4814
+ #: modules/separator/separator.php:85
4815
+ msgid ""
4816
+ "The type of border to use. Double borders must have a height of at least 3px "
4817
+ "to render properly."
4818
+ msgstr ""
4819
+ "Typ použitého okraje. Dvojité okraje musí mít výšku alespoň 3px, aby se "
4820
+ "zobrazily správně."
4821
+
4822
+ #: modules/sidebar/includes/settings-general.php:5
4823
+ #: modules/sidebar/sidebar.php:14
4824
+ msgid "Sidebar"
4825
+ msgstr "Boční panel"
4826
+
4827
+ #: modules/sidebar/sidebar.php:15
4828
+ msgid ""
4829
+ "Display a WordPress sidebar that has been registered by the current theme."
4830
+ msgstr ""
4831
+ "Zobrazí WordPress boční panel, který byl registrovaný aktuálním tématem."
4832
+
4833
+ #: modules/slideshow/slideshow.php:14
4834
+ msgid "Slideshow"
4835
+ msgstr "Prezentace obrázků"
4836
+
4837
+ #: modules/slideshow/slideshow.php:15
4838
+ msgid "Display multiple photos in a slideshow view."
4839
+ msgstr "Zobrazí precentaci více obrázků."
4840
+
4841
+ #: modules/slideshow/slideshow.php:310
4842
+ msgid "Skin Color"
4843
+ msgstr "Barva vzhledu"
4844
+
4845
+ #: modules/slideshow/slideshow.php:313
4846
+ msgctxt "Color."
4847
+ msgid "Light"
4848
+ msgstr "Světlá"
4849
+
4850
+ #: modules/slideshow/slideshow.php:314
4851
+ msgctxt "Color."
4852
+ msgid "Dark"
4853
+ msgstr "Tmavá"
4854
+
4855
+ #: modules/slideshow/slideshow.php:316
4856
+ msgid ""
4857
+ "If your overall theme/images are lighter in color, light will display "
4858
+ "buttons in a darker color scheme and vice versa for dark."
4859
+ msgstr ""
4860
+ "Pokud je Vaše celkové téma nebo obrázky světlejší barvy, volbou světlejšího "
4861
+ "vzhledu se tlačítka zobrazí v tmavší barvě a opačně v případě volby tmavšího "
4862
+ "vzhledu. "
4863
+
4864
+ #: modules/slideshow/slideshow.php:326
4865
+ msgid ""
4866
+ "Crop set to no will fit the slideshow images to the height you specify and "
4867
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
4868
+ "images to all sides of the content area while cropping the left and right to "
4869
+ "fit the height you specify."
4870
+ msgstr ""
4871
+ "Nastavení ořezání na \"ne\" se obrázky přizpůsobí nastavené výšce a ponechá "
4872
+ "se tomu úměrná šířka, zatímco volbou \"ano\" se všechny obrázky ořežou zleva "
4873
+ "a zprava tak, aby byla dodržena Vámi zadaná výška."
4874
+
4875
+ #: modules/slideshow/slideshow.php:330
4876
+ msgid "Disable Right-Click"
4877
+ msgstr "Zakázat kliknutí pravým tlačítkem myši"
4878
+
4879
+ #: modules/slideshow/slideshow.php:350
4880
+ msgctxt "Click action type."
4881
+ msgid "None"
4882
+ msgstr "Žádný"
4883
+
4884
+ #: modules/slideshow/slideshow.php:374
4885
+ msgid "Playback"
4886
+ msgstr "Přehrávání"
4887
+
4888
+ #: modules/slideshow/slideshow.php:400
4889
+ msgctxt "Slideshow transition."
4890
+ msgid "None"
4891
+ msgstr "Žádný"
4892
+
4893
+ #: modules/slideshow/slideshow.php:437
4894
+ msgid "Controls"
4895
+ msgstr "Ovládání"
4896
+
4897
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
4898
+ msgid "Navigation Arrows"
4899
+ msgstr "Navigační šipky"
4900
+
4901
+ #: modules/slideshow/slideshow.php:450
4902
+ msgid ""
4903
+ "Navigational arrows allow the visitor to freely move through the images in "
4904
+ "your slideshow. These are larger arrows that overlay your slideshow images "
4905
+ "and are separate from the control bar navigational arrows."
4906
+ msgstr ""
4907
+ "Navigační šipky umožňují návštěvníkům Vaší stránky volný pohyb mezi obrázky "
4908
+ "prezentace. Jedná se o větší šipky překrývající obrázky a jsou oddělené od o "
4909
+ "navigačních šipek v ovládacím panelu."
4910
+
4911
+ #: modules/slideshow/slideshow.php:455
4912
+ msgid "Control Bar"
4913
+ msgstr "Ovládací panel"
4914
+
4915
+ #: modules/slideshow/slideshow.php:459
4916
+ msgid "Nav Type"
4917
+ msgstr "Typ navigace"
4918
+
4919
+ #: modules/slideshow/slideshow.php:462
4920
+ msgctxt "Nav type."
4921
+ msgid "None"
4922
+ msgstr "Žádný"
4923
+
4924
+ #: modules/slideshow/slideshow.php:463
4925
+ msgid "Buttons"
4926
+ msgstr "Tlačítka"
4927
+
4928
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
4929
+ msgid "Thumbs"
4930
+ msgstr "Miniatury"
4931
+
4932
+ #: modules/slideshow/slideshow.php:479
4933
+ msgid "Nav Position"
4934
+ msgstr "Pozice navigace"
4935
+
4936
+ #: modules/slideshow/slideshow.php:489
4937
+ msgid "Control Bar Buttons"
4938
+ msgstr "Tlačítka ovládacího panelu"
4939
+
4940
+ #: modules/slideshow/slideshow.php:502
4941
+ msgid "Play Button"
4942
+ msgstr "Tlačítko přehrávání"
4943
+
4944
+ #: modules/slideshow/slideshow.php:511
4945
+ msgid "Fullscreen Button"
4946
+ msgstr "Tlačítko přepnutí na celou obrazovku"
4947
+
4948
+ #: modules/slideshow/slideshow.php:520
4949
+ msgid "Photo Count"
4950
+ msgstr "Počet obrázků"
4951
+
4952
+ #: modules/slideshow/slideshow.php:529
4953
+ msgid "Thumbs Button"
4954
+ msgstr "Tlačítko miniatur"
4955
+
4956
+ #: modules/slideshow/slideshow.php:538
4957
+ msgid "Caption Button"
4958
+ msgstr "Tlačítko popisu"
4959
+
4960
+ #: modules/slideshow/slideshow.php:547
4961
+ msgid "Social Button"
4962
+ msgstr "Tlačítko sociálních sítí"
4963
+
4964
+ #: modules/slideshow/slideshow.php:557
4965
+ msgid "Control Bar Overlay"
4966
+ msgstr "Překrytí ovládacího panelu"
4967
+
4968
+ #: modules/slideshow/slideshow.php:561
4969
+ msgid "Overlay Enabled"
4970
+ msgstr "Překrytí aktivované"
4971
+
4972
+ #: modules/slideshow/slideshow.php:572
4973
+ msgid ""
4974
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
4975
+ "your slideshow images or site below the slideshow completely."
4976
+ msgstr ""
4977
+ "Překrytí ovládacího panelu určí, zda vybraná tlačítka ovládacího panelu "
4978
+ "úplně překryjí Vaši prezentaci obrázků nebo stránku pod prezentací."
4979
+
4980
+ #: modules/slideshow/slideshow.php:576
4981
+ msgid "Overlay Hide"
4982
+ msgstr "Skrytí překrytí"
4983
+
4984
+ #: modules/slideshow/slideshow.php:582
4985
+ msgid ""
4986
+ "Overlay hide will hide the control bar after however many seconds you "
4987
+ "specify below. They will reappear upon mouse over."
4988
+ msgstr ""
4989
+ "Skrývání překrytí zabezpečí skrytí ovládacího panelu po dobu, kterou jste "
4990
+ "zadali níže. Ovládací panel se znovu zobrazí po přejetí myší."
4991
+
4992
+ #: modules/slideshow/slideshow.php:586
4993
+ msgid "Overlay Hide Delay"
4994
+ msgstr "Opoždění skrytí překrytí"
4995
+
4996
+ #: modules/slideshow/slideshow.php:598
4997
+ msgid "Thumbs Size"
4998
+ msgstr "Velikost miniatur"
4999
+
5000
+ #: modules/slideshow/slideshow.php:607
5001
+ msgid "Social"
5002
+ msgstr "Sociální sítě"
5003
+
5004
+ #: modules/slideshow/slideshow.php:611
5005
+ msgid "Facebook Button"
5006
+ msgstr "Tlačítko Facebook"
5007
+
5008
+ #: modules/slideshow/slideshow.php:623
5009
+ msgid "Twitter Button"
5010
+ msgstr "Tlačítko Twitter"
5011
+
5012
+ #: modules/slideshow/slideshow.php:635
5013
+ msgid "Google Plus Button"
5014
+ msgstr "Tlačítko Google Plus"
5015
+
5016
+ #: modules/slideshow/slideshow.php:647
5017
+ msgid "Pinterest Button"
5018
+ msgstr "Tlačítko Pinterest"
5019
+
5020
+ #: modules/social-buttons/social-buttons.php:14
5021
+ msgid "Social Buttons"
5022
+ msgstr "Tlačítka sociálních sítí"
5023
+
5024
+ #: modules/social-buttons/social-buttons.php:15
5025
+ msgid "Displays social buttons."
5026
+ msgstr "Zobrazí tlačítka sociálních sítí."
5027
+
5028
+ #: modules/social-buttons/social-buttons.php:71
5029
+ msgid "Target URL"
5030
+ msgstr "URL odkaz cíle"
5031
+
5032
+ #: modules/social-buttons/social-buttons.php:75
5033
+ msgid "Current Page"
5034
+ msgstr "Aktuální stránka"
5035
+
5036
+ #: modules/social-buttons/social-buttons.php:82
5037
+ msgid ""
5038
+ "The Target URL field correlates to the page you would like your social icons "
5039
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
5040
+ "whatever you put in this field."
5041
+ msgstr ""
5042
+ "URL odkaz cíle určí, která stránka bude sdílená danými ikonami sociálních "
5043
+ "sítí. Například, pokud zobrazíte Facebook ikonu, návštěvník jakoby stlačil "
5044
+ "tlačítko \"Like\" pre odkaz, který tu nastavíte."
5045
+
5046
+ #: modules/social-buttons/social-buttons.php:89
5047
+ msgid "Custom URL"
5048
+ msgstr "Vlastní odkaz URL"
5049
+
5050
+ #: modules/social-buttons/social-buttons.php:107
5051
+ msgid "Show Facebook"
5052
+ msgstr "Zobrazit Facebook"
5053
+
5054
+ #: modules/social-buttons/social-buttons.php:116
5055
+ msgid "Show Twitter"
5056
+ msgstr "Zobrazit Twitter"
5057
+
5058
+ #: modules/social-buttons/social-buttons.php:125
5059
+ msgid "Show Google+"
5060
+ msgstr "Zobrazit Google+"
5061
+
5062
+ #: modules/subscribe-form/includes/frontend.php:5
5063
+ msgctxt "First and last name."
5064
+ msgid "Name"
5065
+ msgstr "Jméno"
5066
+
5067
+ #: modules/subscribe-form/includes/frontend.php:12
5068
+ msgid "Please enter a valid email address."
5069
+ msgstr "Zadejte, prosím, platnou email adresu."
5070
+
5071
+ #: modules/subscribe-form/includes/frontend.php:41
5072
+ msgid "Something went wrong. Please check your entries and try again."
5073
+ msgstr "Něco se pokazilo. Zkontrolujte, prosím, své údaje a zkuste znovu."
5074
+
5075
+ #: modules/subscribe-form/subscribe-form.php:18
5076
+ msgid "Subscribe Form"
5077
+ msgstr "Formulář odběru"
5078
+
5079
+ #: modules/subscribe-form/subscribe-form.php:19
5080
+ msgid "Adds a simple subscribe form to your layout."
5081
+ msgstr "Přidejte jednoduchý formulář pro registraci odběrů"
5082
+
5083
+ #: modules/subscribe-form/subscribe-form.php:118
5084
+ msgid "Success"
5085
+ msgstr "Úspěch"
5086
+
5087
+ #: modules/subscribe-form/subscribe-form.php:122
5088
+ msgid "Success Action"
5089
+ msgstr "Úspěšná akce"
5090
+
5091
+ #: modules/subscribe-form/subscribe-form.php:124
5092
+ msgid "Show Message"
5093
+ msgstr "Zobrazit zprávu"
5094
+
5095
+ #: modules/subscribe-form/subscribe-form.php:125
5096
+ msgid "Redirect"
5097
+ msgstr "Přesměrovat"
5098
+
5099
+ #: modules/subscribe-form/subscribe-form.php:144
5100
+ msgid ""
5101
+ "Thanks for subscribing! Please check your email for further instructions."
5102
+ msgstr ""
5103
+ "Díky za registraci! Zkontrolujte, prosím, Váš email pro další instrukce."
5104
+
5105
+ #: modules/subscribe-form/subscribe-form.php:151
5106
+ msgid "Success URL"
5107
+ msgstr "Úspěšné URL"
5108
+
5109
+ #: modules/subscribe-form/subscribe-form.php:169
5110
+ msgid "Subscribe!"
5111
+ msgstr "Registrovat!"
5112
+
5113
+ #: modules/tabs/tabs.php:14
5114
+ msgid "Tabs"
5115
+ msgstr "Záložky"
5116
+
5117
+ #: modules/tabs/tabs.php:15
5118
+ msgid "Display a collection of tabbed content."
5119
+ msgstr "Zobrazí soubor záložek s obsahem."
5120
+
5121
+ #: modules/testimonials/testimonials.php:14
5122
+ #: modules/testimonials/testimonials.php:60
5123
+ #: modules/testimonials/testimonials.php:174
5124
+ msgid "Testimonials"
5125
+ msgstr "Posudky"
5126
+
5127
+ #: modules/testimonials/testimonials.php:15
5128
+ msgid "An animated tesimonials area."
5129
+ msgstr "Animované oblast posudků"
5130
+
5131
+ #: modules/testimonials/testimonials.php:41
5132
+ msgid "Compact"
5133
+ msgstr "Kompaktní"
5134
+
5135
+ #: modules/testimonials/testimonials.php:51
5136
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
5137
+ msgstr ""
5138
+ "Široké zobrazení je pro 1 sloupec v řádku, kompaktní je pro vícesloupcový "
5139
+ "řádek."
5140
+
5141
+ #: modules/testimonials/testimonials.php:78
5142
+ msgid "Slider Settings"
5143
+ msgstr "Nastavení prezentace"
5144
+
5145
+ #: modules/testimonials/testimonials.php:135
5146
+ msgid "Arrow Color"
5147
+ msgstr "Barva šipky"
5148
+
5149
+ #: modules/testimonials/testimonials.php:165
5150
+ msgid "Dot Color"
5151
+ msgstr "Barva tečky"
5152
+
5153
+ #: modules/testimonials/testimonials.php:181
5154
+ msgid "Testimonial"
5155
+ msgstr "Posudek"
5156
+
5157
+ #: modules/testimonials/testimonials.php:197
5158
+ msgid "Add Testimonial"
5159
+ msgstr "Přidat posudek"
5160
+
5161
+ #: modules/video/video.php:20
5162
+ msgid "Render a WordPress or embedable video."
5163
+ msgstr "Zobrazí WordPress nebo vložené video"
5164
+
5165
+ #: modules/video/video.php:83
5166
+ msgid "Video Type"
5167
+ msgstr "Typ videa"
5168
+
5169
+ #: modules/video/video.php:87
5170
+ msgid "Embed"
5171
+ msgstr "Vložené"
5172
+
5173
+ #: modules/video/video.php:104
5174
+ msgctxt "Video preview/fallback image."
5175
+ msgid "Poster"
5176
+ msgstr "Náhled"
5177
+
5178
+ #: modules/widget/includes/frontend.php:35
5179
+ #: modules/widget/includes/settings-general.php:46
5180
+ #, php-format
5181
+ msgctxt "%s stands for widget slug."
5182
+ msgid "%s no longer exists."
5183
+ msgstr "%s už neexistuje"
5184
+
5185
+ #: modules/widget/widget.php:14
5186
+ msgid "Widget"
5187
+ msgstr "Widget"
5188
+
5189
+ #: modules/widget/widget.php:15
5190
+ msgid "Display a WordPress widget."
5191
+ msgstr "Zobrazí WordPress widget."
5192
+
5193
+ #: modules/woocommerce/woocommerce.php:16
5194
+ msgid "WooCommerce"
5195
+ msgstr "WooCommerce"
5196
+
5197
+ #: modules/woocommerce/woocommerce.php:17
5198
+ msgid "Display products or categories from your WooCommerce store."
5199
+ msgstr "Zobrazí produkty nebo kategorie z Vašeho WooCommerce obchodu."
5200
+
5201
+ #: modules/woocommerce/woocommerce.php:61
5202
+ msgid "Single Product"
5203
+ msgstr "Jeden produkt"
5204
+
5205
+ #: modules/woocommerce/woocommerce.php:62
5206
+ #: modules/woocommerce/woocommerce.php:113
5207
+ msgid "Multiple Products"
5208
+ msgstr "Více produktů"
5209
+
5210
+ #: modules/woocommerce/woocommerce.php:63
5211
+ msgid "\"Add to Cart\" Button"
5212
+ msgstr "Tlačítko “Vložit do košíku”"
5213
+
5214
+ #: modules/woocommerce/woocommerce.php:64
5215
+ msgid "Categories"
5216
+ msgstr "Kategorie"
5217
+
5218
+ #: modules/woocommerce/woocommerce.php:65
5219
+ msgid "Cart"
5220
+ msgstr "Košík"
5221
+
5222
+ #: modules/woocommerce/woocommerce.php:66
5223
+ msgid "Checkout"
5224
+ msgstr "Pokladna"
5225
+
5226
+ #: modules/woocommerce/woocommerce.php:67
5227
+ msgid "Order Tracking"
5228
+ msgstr "Sledování zásilky"
5229
+
5230
+ #: modules/woocommerce/woocommerce.php:68
5231
+ msgid "My Account"
5232
+ msgstr "Můj účet"
5233
+
5234
+ #: modules/woocommerce/woocommerce.php:87
5235
+ msgid "Product ID"
5236
+ msgstr "ID produktu"
5237
+
5238
+ #: modules/woocommerce/woocommerce.php:90
5239
+ msgid ""
5240
+ "As you add products in the WooCommerce Products area, each will be assigned "
5241
+ "a unique ID. You can find this unique product ID by visiting the Products "
5242
+ "area and rolling over the product. The unique ID will be the first attribute."
5243
+ msgstr ""
5244
+ "Během přidávání nových produktů do WooCommerce bude každému z nich přidělené "
5245
+ "unikátní ID. Tento jedinečný identifikátor produktu můžete najít na stránce "
5246
+ "seznamu produktů přesunem myši přes daný produkt. ID se zobrazí jako první "
5247
+ "pod popisem produktu."
5248
+
5249
+ #: modules/woocommerce/woocommerce.php:94
5250
+ msgid "Parent Category ID"
5251
+ msgstr "ID nadřazené kategorie"
5252
+
5253
+ #: modules/woocommerce/woocommerce.php:97
5254
+ msgid ""
5255
+ "As you add product categories in the WooCommerce Products area, each will be "
5256
+ "assigned a unique ID. This ID can be found by hovering on the category in "
5257
+ "the categories area under Products and looking in the URL that is displayed "
5258
+ "in your browser. The ID will be the only number value in the URL."
5259
+ msgstr ""
5260
+ "Během přidávání nových produktových kategorií do WooCommerce bude každé z "
5261
+ "nich přidělené unikátní ID. Toto ID najdete na stránce kategorií v sekci "
5262
+ "WooCommerce produktů když přesunete myš nad název kategorie a vyčtete ho z "
5263
+ "URL adresy, která se zobrazí ve Vašem prohlížeči. ID bude jediné číslo v "
5264
+ "této URL."
5265
+
5266
+ #: modules/woocommerce/woocommerce.php:101
5267
+ #: modules/woocommerce/woocommerce.php:172
5268
+ msgid "Columns"
5269
+ msgstr "Sloupce"
5270
+
5271
+ #: modules/woocommerce/woocommerce.php:117
5272
+ msgid "Products Source"
5273
+ msgstr "Zdroj produktů"
5274
+
5275
+ #: modules/woocommerce/woocommerce.php:120
5276
+ msgid "Products IDs"
5277
+ msgstr "Identifikátory produktů"
5278
+
5279
+ #: modules/woocommerce/woocommerce.php:121
5280
+ msgid "Product Category"
5281
+ msgstr "Produktová kategorie"
5282
+
5283
+ #: modules/woocommerce/woocommerce.php:122
5284
+ msgid "Recent Products"
5285
+ msgstr "Nejnovější produkty"
5286
+
5287
+ #: modules/woocommerce/woocommerce.php:123
5288
+ msgid "Featured Products"
5289
+ msgstr "Doporučené produkty"
5290
+
5291
+ #: modules/woocommerce/woocommerce.php:124
5292
+ msgid "Sale Products"
5293
+ msgstr "Produkty ve výprodeji"
5294
+
5295
+ #: modules/woocommerce/woocommerce.php:125
5296
+ msgid "Best Selling Products"
5297
+ msgstr "Nejprodávanější produkty"
5298
+
5299
+ #: modules/woocommerce/woocommerce.php:126
5300
+ msgid "Top Rated Products"
5301
+ msgstr "Nejlépe hodnocené produkty"
5302
+
5303
+ #: modules/woocommerce/woocommerce.php:154
5304
+ msgid "Product IDs"
5305
+ msgstr "Identifikátory produktů"
5306
+
5307
+ #: modules/woocommerce/woocommerce.php:156
5308
+ msgid ""
5309
+ "As you add products in the WooCommerce Products area, each will be assigned "
5310
+ "a unique ID. You can find this unique product ID by visiting the Products "
5311
+ "area and rolling over the product. The unique ID will be the first attribute "
5312
+ "and you can add several here separated by a comma."
5313
+ msgstr ""
5314
+ "Jakmile budete přidávat nové produkty do WooCommerce, bude každému z nich "
5315
+ "přiděleno unikátní ID. Tento identifikátor naleznete na stránce seznamu "
5316
+ "produktů, když přejedete přes daný produkt myší. Identifikátor bude první "
5317
+ "atribut a je možno přidat identifikátorů více a oddělit je čárkou."
5318
+
5319
+ #: modules/woocommerce/woocommerce.php:160
5320
+ msgid "Category Slug"
5321
+ msgstr "Slug kategorie"
5322
+
5323
+ #: modules/woocommerce/woocommerce.php:162
5324
+ msgid ""
5325
+ "As you add product categories in the WooCommerce Products area, each will be "
5326
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
5327
+ "found in the Categories area under WooCommerce Products. Several can be "
5328
+ "added here separated by a comma."
5329
+ msgstr ""
5330
+ "Během přidávání nových produktových kategorií do části WooCommerce produkty, "
5331
+ "bude každé z nich přidělený unikátní slug, který můžete změnit nebo přidat "
5332
+ "svůj vlastní. Tyto slugy naleznete na stránce “kategorie” v sekci "
5333
+ "WooCommerce produktů. Do tohoto pole můžete přidat více slugů oddělených "
5334
+ "čárkou."
5335
+
5336
+ #: modules/woocommerce/woocommerce.php:166
5337
+ msgid "Number of Products"
5338
+ msgstr "Počet produktů"
5339
+
5340
+ #: modules/woocommerce/woocommerce.php:183
5341
+ msgid "Sort By"
5342
+ msgstr "Třídit podle"
5343
+
5344
+ #: modules/woocommerce/woocommerce.php:186
5345
+ msgctxt "Sort by."
5346
+ msgid "Default"
5347
+ msgstr "Přednastavené"
5348
+
5349
+ #: modules/woocommerce/woocommerce.php:187
5350
+ msgid "Popularity"
5351
+ msgstr "Popularita"
5352
+
5353
+ #: modules/woocommerce/woocommerce.php:188
5354
+ msgid "Rating"
5355
+ msgstr "Hodnocení"
5356
+
5357
+ #: modules/woocommerce/woocommerce.php:195
5358
+ msgid "Sort Direction"
5359
+ msgstr "Směr třídění"
languages/fa_IR.mo ADDED
Binary file
languages/fa_IR.po ADDED
@@ -0,0 +1,5013 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-08-31 09:36-0700\n"
6
+ "PO-Revision-Date: 2015-12-09 15:29+0330\n"
7
+ "Last-Translator: Danial Rahimi <Fa.danial@gmail.com>\n"
8
+ "Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
9
+ "Language: fa\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.8.6\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;"
17
+ "esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=1; plural=0;\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/class-fl-builder-admin-settings.php:116 includes/global-settings.php:4
22
+ #, php-format
23
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
24
+ msgid "%s Settings"
25
+ msgstr "‏‪%‬s تنظیمات"
26
+
27
+ #: classes/class-fl-builder-admin-settings.php:133
28
+ msgid "Settings updated!"
29
+ msgstr "تنظیمات بروز شدند."
30
+
31
+ #: classes/class-fl-builder-admin-settings.php:147
32
+ msgid "License"
33
+ msgstr "مجوز"
34
+
35
+ #: classes/class-fl-builder-admin-settings.php:151 includes/admin-settings-upgrade.php:3
36
+ msgid "Upgrade"
37
+ msgstr "ارتقاع دهید!"
38
+
39
+ #: classes/class-fl-builder-admin-settings.php:155 includes/global-settings.php:90
40
+ msgid "Modules"
41
+ msgstr "ماژول ها"
42
+
43
+ #: classes/class-fl-builder-admin-settings.php:159 classes/class-fl-builder.php:668
44
+ msgid "Templates"
45
+ msgstr "قالب ها"
46
+
47
+ #: classes/class-fl-builder-admin-settings.php:163 includes/admin-settings-post-types.php:3
48
+ msgid "Post Types"
49
+ msgstr "انواع نوشته"
50
+
51
+ #: classes/class-fl-builder-admin-settings.php:167 modules/icon-group/icon-group.php:27
52
+ #: modules/post-carousel/post-carousel.php:275 modules/post-grid/post-grid.php:257
53
+ msgid "Icons"
54
+ msgstr "آیکون ها"
55
+
56
+ #: classes/class-fl-builder-admin-settings.php:171
57
+ msgid "Editing"
58
+ msgstr "ویرایش کردن"
59
+
60
+ #: classes/class-fl-builder-admin-settings.php:175 includes/admin-settings-branding.php:3
61
+ msgid "Branding"
62
+ msgstr "برندینگ"
63
+
64
+ #: classes/class-fl-builder-admin-settings.php:179
65
+ msgid "Help Button"
66
+ msgstr "دکمه راهنما"
67
+
68
+ #: classes/class-fl-builder-admin-settings.php:183 includes/admin-settings-cache.php:3
69
+ msgid "Cache"
70
+ msgstr "نهانگاه"
71
+
72
+ #: classes/class-fl-builder-admin-settings.php:187 includes/admin-settings-uninstall.php:3
73
+ #: includes/admin-settings-uninstall.php:15
74
+ msgid "Uninstall"
75
+ msgstr "حذف"
76
+
77
+ #: classes/class-fl-builder-admin-settings.php:439
78
+ msgid "Error! You must have at least one icon set enabled."
79
+ msgstr "خطا! شما باید حداقل یک مجموعه آیکون را فعال کنید."
80
+
81
+ #: classes/class-fl-builder-admin-settings.php:481
82
+ msgid "Error! Could not unzip file."
83
+ msgstr "خطا! فایل از حالت فشرده خارج نمی شود."
84
+
85
+ #: classes/class-fl-builder-admin-settings.php:515
86
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
87
+ msgstr "خطا! مجموعه‌ای آیکون از Icomoon یا Fontello را بارگذاری کنید."
88
+
89
+ #: classes/class-fl-builder-admin-settings.php:620
90
+ msgid "Error! Please enter an iframe for the video embed code."
91
+ msgstr "خطا! لطفا یک کد iframe برای کد قراردادن ویدیو وارد کنید."
92
+
93
+ #: classes/class-fl-builder-admin-settings.php:638
94
+ msgid "Error! You must have at least one feature of the help button enabled."
95
+ msgstr "خطا! شما باید حداقل یک ویژگی از دکمه کمک را فعال کنید."
96
+
97
+ #: classes/class-fl-builder-admin.php:45
98
+ #, php-format
99
+ msgid ""
100
+ "This version of the <strong>Page Builder</strong> plugin is not compatible with WordPress Multisite. <a"
101
+ "%s>Please upgrade</a> to the Multisite version of this plugin."
102
+ msgstr ""
103
+ "این نسخه از پلاگین <strong>صفحه ساز</strong> با مولتی سایت وردپرس سازگار نیست. لطفا به ورژن <a%s>صفحه ساز "
104
+ "مولتی سایت</a> ارتقا دهید. "
105
+
106
+ #: classes/class-fl-builder-admin.php:55
107
+ msgid ""
108
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update "
109
+ "WordPress before activating the plugin."
110
+ msgstr ""
111
+ "افزونه <strong>صفحه ساز</strong> به وردپرس نسخه 3.5 یا بالاتر نیاز دارد. لطفا قبل از فعال کردن افزونه "
112
+ "وردپرس را بروزرسانی کنید."
113
+
114
+ #: classes/class-fl-builder-admin.php:112
115
+ #, php-format
116
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
117
+ msgstr "صفحه ساز فعال شد! برای فعال سازی به روز رسانی از راه دور <‪/‬a>اینجا کلیک کنید.<a‪%‬s>"
118
+
119
+ #: classes/class-fl-builder-admin.php:238
120
+ msgctxt "Plugin action link label."
121
+ msgid "Upgrade"
122
+ msgstr "ارتقاع دهید!"
123
+
124
+ #: classes/class-fl-builder-admin.php:253 classes/class-fl-builder-model.php:4077
125
+ msgid "Page Builder"
126
+ msgstr "صفحه ساز"
127
+
128
+ #: classes/class-fl-builder-model.php:1756
129
+ #, php-format
130
+ msgctxt "%s stands for the module filename"
131
+ msgid ""
132
+ "A module with the filename %s.php already exists! Please namespace your module filenames to ensure "
133
+ "compatibility with Beaver Builder."
134
+ msgstr ""
135
+ "ماژولی با نام %s.php در حال حاضر وجود دارد. با لحاظ کردن نام جدید در نام‌گذاری خود از ساز‌گاری با صفحه‌ساز "
136
+ "مطمئن شوید."
137
+
138
+ #: classes/class-fl-builder-model.php:1807 classes/class-fl-builder-model.php:1868
139
+ #: modules/heading/heading.php:16 modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
140
+ #: modules/separator/separator.php:16 modules/video/video.php:21
141
+ msgid "Basic Modules"
142
+ msgstr "ماژول‌های پایه"
143
+
144
+ #: classes/class-fl-builder-model.php:1808 classes/class-fl-builder-model.php:1869
145
+ #: modules/accordion/accordion.php:16 modules/button/button.php:16 modules/callout/callout.php:16
146
+ #: modules/contact-form/contact-form.php:16 modules/content-slider/content-slider.php:16
147
+ #: modules/cta/cta.php:16 modules/gallery/gallery.php:16 modules/html/html.php:16
148
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16 modules/map/map.php:16
149
+ #: modules/menu/menu.php:16 modules/post-carousel/post-carousel.php:16 modules/post-grid/post-grid.php:16
150
+ #: modules/post-slider/post-slider.php:16 modules/pricing-table/pricing-table.php:16
151
+ #: modules/sidebar/sidebar.php:16 modules/slideshow/slideshow.php:16
152
+ #: modules/social-buttons/social-buttons.php:16 modules/subscribe-form/subscribe-form.php:20
153
+ #: modules/tabs/tabs.php:16 modules/testimonials/testimonials.php:16 modules/woocommerce/woocommerce.php:18
154
+ msgid "Advanced Modules"
155
+ msgstr "ماژول های پیشرفته"
156
+
157
+ #: classes/class-fl-builder-model.php:1809 classes/class-fl-builder-model.php:1870
158
+ msgid "Other Modules"
159
+ msgstr "ماژول های دیگر"
160
+
161
+ #: classes/class-fl-builder-model.php:1810 classes/class-fl-builder-model.php:1871
162
+ #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56 modules/widget/widget.php:16
163
+ msgid "WordPress Widgets"
164
+ msgstr "ابزارک های وردپرس"
165
+
166
+ #: classes/class-fl-builder-model.php:2535
167
+ #, php-format
168
+ msgctxt "%s stands for post/page title."
169
+ msgid "Copy of %s"
170
+ msgstr "کپی از ‪%‬s"
171
+
172
+ #: classes/class-fl-builder-model.php:3014
173
+ msgctxt "Default user template category."
174
+ msgid "Uncategorized"
175
+ msgstr "دسته بندی نشده"
176
+
177
+ #: classes/class-fl-builder-model.php:4034
178
+ msgid "Home Pages"
179
+ msgstr "صفحه اصلی"
180
+
181
+ #: classes/class-fl-builder-model.php:4035
182
+ msgid "Content Pages"
183
+ msgstr "صفحات محتوا"
184
+
185
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
186
+ msgctxt "Image size."
187
+ msgid "Full Size"
188
+ msgstr "سایز کامل"
189
+
190
+ #: classes/class-fl-builder-photo.php:101
191
+ msgctxt "Image size."
192
+ msgid "Large"
193
+ msgstr "بزرگ"
194
+
195
+ #: classes/class-fl-builder-photo.php:102
196
+ msgctxt "Image size."
197
+ msgid "Medium"
198
+ msgstr "متوسط"
199
+
200
+ #: classes/class-fl-builder-photo.php:103
201
+ msgctxt "Image size."
202
+ msgid "Thumbnail"
203
+ msgstr "بند انگشتی"
204
+
205
+ #: classes/class-fl-builder-service-activecampaign.php:69
206
+ msgid "Error: You must provide an API URL."
207
+ msgstr "خطا: شما بایستی یک لینک API فراهم کنید."
208
+
209
+ #: classes/class-fl-builder-service-activecampaign.php:73
210
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
211
+ #: classes/class-fl-builder-service-constant-contact.php:48
212
+ #: classes/class-fl-builder-service-getresponse.php:67 classes/class-fl-builder-service-hatchbuck.php:48
213
+ #: classes/class-fl-builder-service-infusionsoft.php:79 classes/class-fl-builder-service-madmimi.php:73
214
+ #: classes/class-fl-builder-service-mailchimp.php:67
215
+ msgid "Error: You must provide an API key."
216
+ msgstr "خطا: شما بایستی یک کلید API فراهم کنید."
217
+
218
+ #: classes/class-fl-builder-service-activecampaign.php:81
219
+ msgid "Error: Please check your API URL and API key."
220
+ msgstr "خطا: لطفا لینک API و کلید API خود را چک کنید."
221
+
222
+ #: classes/class-fl-builder-service-activecampaign.php:108
223
+ msgid "API URL"
224
+ msgstr "آدرس لینک API"
225
+
226
+ #: classes/class-fl-builder-service-activecampaign.php:109
227
+ msgid "Your API url can be found in your ActiveCampaign account under My Settings > API."
228
+ msgstr "لینک API خود را می توانید در حساب ActiveCampaign خود در My Settings ‪>‬ API بیابید."
229
+
230
+ #: classes/class-fl-builder-service-activecampaign.php:119
231
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
232
+ #: classes/class-fl-builder-service-constant-contact.php:88
233
+ #: classes/class-fl-builder-service-getresponse.php:100 classes/class-fl-builder-service-hatchbuck.php:87
234
+ #: classes/class-fl-builder-service-infusionsoft.php:129 classes/class-fl-builder-service-madmimi.php:121
235
+ #: classes/class-fl-builder-service-mailchimp.php:100
236
+ msgid "API Key"
237
+ msgstr "کلید API"
238
+
239
+ #: classes/class-fl-builder-service-activecampaign.php:120
240
+ msgid "Your API key can be found in your ActiveCampaign account under My Settings > API."
241
+ msgstr "کلید API خود را می توانید در حساب ActiveCampaign خود در My Settings ‪>‬ API بیابید."
242
+
243
+ #: classes/class-fl-builder-service-activecampaign.php:169 classes/class-fl-builder-service-aweber.php:182
244
+ #: classes/class-fl-builder-service-campaign-monitor.php:148
245
+ #: classes/class-fl-builder-service-campaign-monitor.php:199
246
+ #: classes/class-fl-builder-service-constant-contact.php:156
247
+ #: classes/class-fl-builder-service-getresponse.php:154 classes/class-fl-builder-service-icontact.php:207
248
+ #: classes/class-fl-builder-service-infusionsoft.php:204 classes/class-fl-builder-service-madmimi.php:178
249
+ #: classes/class-fl-builder-service-mailchimp.php:177 classes/class-fl-builder-service-mailpoet.php:92
250
+ #: classes/class-fl-builder-service-sendinblue.php:161 classes/class-fl-builder-services.php:288
251
+ #: includes/service-settings.php:21 modules/woocommerce/woocommerce.php:60
252
+ msgid "Choose..."
253
+ msgstr "انتخاب کردن…"
254
+
255
+ #: classes/class-fl-builder-service-activecampaign.php:181 classes/class-fl-builder-service-aweber.php:192
256
+ #: classes/class-fl-builder-service-campaign-monitor.php:209
257
+ #: classes/class-fl-builder-service-constant-contact.php:166
258
+ #: classes/class-fl-builder-service-getresponse.php:164 classes/class-fl-builder-service-icontact.php:217
259
+ #: classes/class-fl-builder-service-infusionsoft.php:214 classes/class-fl-builder-service-madmimi.php:188
260
+ #: classes/class-fl-builder-service-mailchimp.php:187 classes/class-fl-builder-service-mailpoet.php:102
261
+ #: classes/class-fl-builder-service-sendinblue.php:171
262
+ msgctxt "An email list from a third party provider."
263
+ msgid "List"
264
+ msgstr "لیست"
265
+
266
+ #: classes/class-fl-builder-service-activecampaign.php:208
267
+ msgid "There was an error subscribing to ActiveCampaign. The account is no longer connected."
268
+ msgstr "خطایی در اشتراک ActiveCampaign وجود داشت. حساب دیگر متصل نمی شود."
269
+
270
+ #: classes/class-fl-builder-service-activecampaign.php:239
271
+ msgid "Error: Invalid API data."
272
+ msgstr "خطا: داده API نامعتبر است."
273
+
274
+ #: classes/class-fl-builder-service-aweber.php:72
275
+ msgid "Error: You must provide an Authorization Code."
276
+ msgstr "خطا: شما باید کد شناسایی ارائه وارد کنید."
277
+
278
+ #: classes/class-fl-builder-service-aweber.php:76
279
+ msgid "Error: Please enter a valid Authorization Code."
280
+ msgstr "خطا: لطفا یک کد شناسایی معتبر وارد کنید."
281
+
282
+ #: classes/class-fl-builder-service-aweber.php:127
283
+ msgid "Authorization Code"
284
+ msgstr "کد شناسایی"
285
+
286
+ #: classes/class-fl-builder-service-aweber.php:128
287
+ #, php-format
288
+ msgid "Please register this website with AWeber to get your Authorization Code. <a%s>Register Now</a>"
289
+ msgstr ""
290
+ "لطفا این وب سایت را با AWeber ثبت کنید تا کد شناسایی خود را دریافت کنید. <a%s> اکنون ثبت نام کنید </a>"
291
+
292
+ #: classes/class-fl-builder-service-aweber.php:219
293
+ msgid "There was an error subscribing to AWeber. The account is no longer connected."
294
+ msgstr "خطایی در اشتراک ActiveCampaign وجود داشت. حساب دیگر متصل نمی شود."
295
+
296
+ #: classes/class-fl-builder-service-aweber.php:242
297
+ msgid "There was an error connecting to AWeber. Please try again."
298
+ msgstr "خطایی هنگام اتصال به AWeber وجود دارد. لطفا دوباره تلاش کنید."
299
+
300
+ #: classes/class-fl-builder-service-aweber.php:247
301
+ #, php-format
302
+ msgid "There was an error subscribing to AWeber. %s"
303
+ msgstr "خطایی در اشتراک از AWeber وجود داشت. ‪%‬s"
304
+
305
+ #: classes/class-fl-builder-service-campaign-monitor.php:67
306
+ #: classes/class-fl-builder-service-campaign-monitor.php:129
307
+ #: classes/class-fl-builder-service-getresponse.php:76 classes/class-fl-builder-service-getresponse.php:132
308
+ #: classes/class-fl-builder-service-hatchbuck.php:63
309
+ msgid "Error: Please check your API key."
310
+ msgstr "خطا: لطفا کلید API خود را بررسی کنید."
311
+
312
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
313
+ msgid "Your API key can be found in your Campaign Monitor account under Account Settings > API Key."
314
+ msgstr "کلید API خود را می توانید در حساب ActiveCampaign خود در Account Settings ‪>‬ API Key بیابید."
315
+
316
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
317
+ msgctxt "A client account in Campaign Monitor."
318
+ msgid "Client"
319
+ msgstr "مشتری"
320
+
321
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
322
+ msgid "There was an error subscribing to Campaign Monitor. The account is no longer connected."
323
+ msgstr "خطایی در اشتراک Campaign Monitor وجود داشت. حساب دیگر متصل نمی شود."
324
+
325
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
326
+ msgid "There was an error subscribing to Campaign Monitor."
327
+ msgstr "خطایی در اشتراک Campaign Monitor وجود داشت‪.‬"
328
+
329
+ #: classes/class-fl-builder-service-constant-contact.php:52
330
+ msgid "Error: You must provide an access token."
331
+ msgstr "خطا: شما باید کد اتصال جهت ارائه وارد کنید."
332
+
333
+ #: classes/class-fl-builder-service-constant-contact.php:61
334
+ #: classes/class-fl-builder-service-constant-contact.php:134
335
+ #, php-format
336
+ msgid "Error: Could not connect to Constant Contact. %s"
337
+ msgstr "خطا: اتصال به Constant Contact ناموفق بود. %s"
338
+
339
+ #: classes/class-fl-builder-service-constant-contact.php:89
340
+ msgid "Your Constant Contact API key."
341
+ msgstr "کلید Constant Contact API شما"
342
+
343
+ #: classes/class-fl-builder-service-constant-contact.php:99
344
+ msgid "Access Token"
345
+ msgstr "کد دسترسی"
346
+
347
+ #: classes/class-fl-builder-service-constant-contact.php:100
348
+ msgid "Your Constant Contact access token."
349
+ msgstr "کد دسترسی Constant Contact شما"
350
+
351
+ #: classes/class-fl-builder-service-constant-contact.php:101
352
+ #, php-format
353
+ msgid ""
354
+ "You must register a <a%s>Developer Account</a> with Constant Contact to obtain an API key and access "
355
+ "token. Please see <a%s>Getting an API key</a> for complete instructions."
356
+ msgstr ""
357
+ "جهت دستیابی به کلید API و کد دسترسی، بایستی با Constant Contact یک <a%s>اکانت توسعه دهنده‪</‬a‪>‬ ثبت کنید. "
358
+ "جهت مشاهده آموزش مربوطه <a%s> کلیک کنید.‪</‬a‪>‬"
359
+
360
+ #: classes/class-fl-builder-service-constant-contact.php:193
361
+ msgid "There was an error subscribing to Constant Contact. The account is no longer connected."
362
+ msgstr "خطایی در اشتراک Constant Contact وجود داشت. حساب دیگر متصل نمی شود."
363
+
364
+ #: classes/class-fl-builder-service-constant-contact.php:245
365
+ #: classes/class-fl-builder-service-constant-contact.php:279
366
+ #, php-format
367
+ msgid "There was an error subscribing to Constant Contact. %s"
368
+ msgstr "خطایی در ثبت اشتراک شما در Constant Contact وجود داشت."
369
+
370
+ #: classes/class-fl-builder-service-email-address.php:39 classes/class-fl-builder-service-madmimi.php:69
371
+ msgid "Error: You must provide an email address."
372
+ msgstr "خطا: شما باید یک آدرس ایمیل وارد کنید."
373
+
374
+ #: classes/class-fl-builder-service-email-address.php:63 classes/class-fl-builder-service-madmimi.php:110
375
+ #: modules/subscribe-form/includes/frontend.php:11
376
+ msgid "Email Address"
377
+ msgstr "آدرس ایمیل"
378
+
379
+ #: classes/class-fl-builder-service-email-address.php:110
380
+ msgid "There was an error subscribing. The account is no longer connected."
381
+ msgstr "خطایی در اشتراک وجود داشت. حساب دیگر متصل نمی شود."
382
+
383
+ #: classes/class-fl-builder-service-email-address.php:114
384
+ msgid "Subscribe Form Signup"
385
+ msgstr "مشترک شدن در فرم ثبت نام"
386
+
387
+ #: classes/class-fl-builder-service-email-address.php:115 modules/contact-form/includes/frontend.php:21
388
+ msgid "Email"
389
+ msgstr "ایمیل"
390
+
391
+ #: classes/class-fl-builder-service-email-address.php:118
392
+ msgid "Name"
393
+ msgstr "نام"
394
+
395
+ #: classes/class-fl-builder-service-email-address.php:124 modules/subscribe-form/subscribe-form.php:73
396
+ msgid "There was an error subscribing. Please try again."
397
+ msgstr "خطایی وجود دارد. لطفا دوباره سعی کنید."
398
+
399
+ #: classes/class-fl-builder-service-getresponse.php:101
400
+ msgid "Your API key can be found in your GetResponse account under My Account > GetResponse API."
401
+ msgstr "کلید API خود را می توانید در حساب GetResponse خود در My Settings ‪>‬ GetResponse API بیابید."
402
+
403
+ #: classes/class-fl-builder-service-getresponse.php:191
404
+ msgid "There was an error subscribing to GetResponse. The account is no longer connected."
405
+ msgstr "خطایی در اشتراک GetResponse وجود داشت. حساب دیگر متصل نمی شود."
406
+
407
+ #: classes/class-fl-builder-service-getresponse.php:202
408
+ #, php-format
409
+ msgid "There was an error subscribing to GetResponse. %s"
410
+ msgstr "خطایی در اشتراک از GetResponse وجود داشت. ‪%‬s"
411
+
412
+ #: classes/class-fl-builder-service-hatchbuck.php:88
413
+ msgid "Your API key can be found in your Hatchbuck account under Account Settings > Web API."
414
+ msgstr "کلید API خود را می توانید در حساب Hatchbuck خود در My Settings ‪>‬ API بیابید."
415
+
416
+ #: classes/class-fl-builder-service-hatchbuck.php:134
417
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
418
+ msgid "Tag"
419
+ msgstr "برچسب (تگ)"
420
+
421
+ #: classes/class-fl-builder-service-hatchbuck.php:161
422
+ msgid "There was an error subscribing to Hatchbuck. The account is no longer connected."
423
+ msgstr "خطایی در اشتراک Hatchbuck وجود داشت. حساب دیگر متصل نمی شود."
424
+
425
+ #: classes/class-fl-builder-service-hatchbuck.php:190
426
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
427
+ msgstr "خطایی در اشتراک Hatchbuck وجود داشت. کلید API نامعتبر است."
428
+
429
+ #: classes/class-fl-builder-service-hatchbuck.php:200 classes/class-fl-builder-service-hatchbuck.php:232
430
+ msgid "There was an error subscribing to Hatchbuck."
431
+ msgstr "خطایی در اشتراک Hatchbuck وجود داشت. "
432
+
433
+ #: classes/class-fl-builder-service-icontact.php:75
434
+ msgid "Error: You must provide a username."
435
+ msgstr "خطا: شما باید یک نام کاربری ارائه کنید."
436
+
437
+ #: classes/class-fl-builder-service-icontact.php:79
438
+ msgid "Error: You must provide a app ID."
439
+ msgstr "شما باید یک ID برنامه ارائه دهید."
440
+
441
+ #: classes/class-fl-builder-service-icontact.php:83
442
+ msgid "Error: You must provide a app password."
443
+ msgstr "شما باید یک پسورد برنامه ارائه دهید."
444
+
445
+ #: classes/class-fl-builder-service-icontact.php:104 classes/class-fl-builder-service-icontact.php:188
446
+ #, php-format
447
+ msgid "Error: Could not connect to iContact. %s"
448
+ msgstr "امکان اتصال به iContact نیست. %s"
449
+
450
+ #: classes/class-fl-builder-service-icontact.php:125
451
+ msgid "Username"
452
+ msgstr "نام کاربری"
453
+
454
+ #: classes/class-fl-builder-service-icontact.php:126
455
+ msgid "Your iContact username."
456
+ msgstr "نام کاربری iContact شما."
457
+
458
+ #: classes/class-fl-builder-service-icontact.php:136 classes/class-fl-builder-service-infusionsoft.php:118
459
+ msgid "App ID"
460
+ msgstr "آیدی برنامه"
461
+
462
+ #: classes/class-fl-builder-service-icontact.php:137
463
+ msgid "Your iContact app ID."
464
+ msgstr "نام کاربری برنامه iContact شما."
465
+
466
+ #: classes/class-fl-builder-service-icontact.php:147
467
+ msgid "App Password"
468
+ msgstr "پسورد برنامه"
469
+
470
+ #: classes/class-fl-builder-service-icontact.php:148
471
+ msgid "Your iContact app password."
472
+ msgstr "پسورد برنامه iContact شما."
473
+
474
+ #: classes/class-fl-builder-service-icontact.php:149
475
+ #, php-format
476
+ msgid ""
477
+ "You must <a%s>create an app</a> in iContact to obtain an app ID and password. Please see <a%s>the iContact "
478
+ "docs</a> for complete instructions."
479
+ msgstr ""
480
+ "جهت دستیابی به کلید API و کد دسترسی، بایستی با Constant Contact یک <a%s>اکانت توسعه دهنده‪</‬a‪>‬ ثبت کنید. "
481
+ "جهت مشاهده آموزش مربوطه <a%s> کلیک کنید.‪</‬a‪>‬"
482
+
483
+ #: classes/class-fl-builder-service-icontact.php:244
484
+ msgid "There was an error subscribing to iContact. The account is no longer connected."
485
+ msgstr "خطایی در اشتراک iContact وجود داشت. حساب دیگر متصل نمی شود."
486
+
487
+ #: classes/class-fl-builder-service-icontact.php:280
488
+ #, php-format
489
+ msgid "There was an error subscribing to iContact. %s"
490
+ msgstr "خطایی در اشتراک از iContact وجود داشت. ‪%‬s"
491
+
492
+ #: classes/class-fl-builder-service-infusionsoft.php:49
493
+ #, php-format
494
+ msgid "There was an error connecting to Infusionsoft. %s"
495
+ msgstr "خطایی هنگام اتصال به Infusionsoft وجود داشت. %s"
496
+
497
+ #: classes/class-fl-builder-service-infusionsoft.php:83
498
+ msgid "Error: You must provide an app ID."
499
+ msgstr "شما باید یک ID برنامه ارائه دهید."
500
+
501
+ #: classes/class-fl-builder-service-infusionsoft.php:119
502
+ msgid ""
503
+ "Your App ID can be found in the URL for your account. For example, if the URL for your account is "
504
+ "myaccount.infusionsoft.com, your App ID would be <strong>myaccount</strong>."
505
+ msgstr ""
506
+ "‏ID برنامه در آدرس لینک اکانت شما موجود است. بطور مثال،اگر آدرس لینک برای اکانت شما myaccount.infusionsoft."
507
+ "com است، ID برنامه <strong>myaccount</strong> خواهد بود."
508
+
509
+ #: classes/class-fl-builder-service-infusionsoft.php:130
510
+ msgid ""
511
+ "Your API key can be found in your Infusionsoft account under Admin > Settings > Application > API > "
512
+ "Encrypted Key."
513
+ msgstr ""
514
+ "کلید API خود را می توانید در حساب Infusionsoft خود در Admin > Settings > Application > API > Encrypted Key "
515
+ "بیابید."
516
+
517
+ #: classes/class-fl-builder-service-infusionsoft.php:242
518
+ msgid "There was an error subscribing to Infusionsoft. The account is no longer connected."
519
+ msgstr "خطایی در اشتراک Infusionsoft وجود داشت. حساب دیگر متصل نمی شود."
520
+
521
+ #: classes/class-fl-builder-service-infusionsoft.php:291
522
+ #, php-format
523
+ msgid "There was an error subscribing to Infusionsoft. %s"
524
+ msgstr "خطایی در ثبت اشتراک شما در Infusionsoft وجود داشت. %s"
525
+
526
+ #: classes/class-fl-builder-service-madmimi.php:83
527
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
528
+ msgstr "اتصال به Mad Mimi ناموفق بود. لطفا مشخصات کاربری خود را بازبینی کنید."
529
+
530
+ #: classes/class-fl-builder-service-madmimi.php:111
531
+ msgid "The email address associated with your Mad Mimi account."
532
+ msgstr "آدرس ایمیل مرتبط با حساب Mad Mimi."
533
+
534
+ #: classes/class-fl-builder-service-madmimi.php:122
535
+ msgid "Your API key can be found in your Mad Mimi account under Account > Settings &amp; Billing > API."
536
+ msgstr "کلید API خود را می توانید در حساب Mad Mimi خود در Account > Settings &amp; Billing > API بیابید."
537
+
538
+ #: classes/class-fl-builder-service-madmimi.php:156
539
+ msgid "There was a problem retrieving your lists. Please check your API credentials."
540
+ msgstr "مشکلی در بازیابی لیست های شما بوجود آمد. لطفا اطلاعات کاربری API خود را چک کنید."
541
+
542
+ #: classes/class-fl-builder-service-madmimi.php:215 classes/class-fl-builder-service-madmimi.php:242
543
+ msgid "There was an error subscribing to Mad Mimi. The account is no longer connected."
544
+ msgstr "خطایی در اشتراک Mad Mimi وجود داشت. حساب دیگر متصل نمی شود."
545
+
546
+ #: classes/class-fl-builder-service-mailchimp.php:101
547
+ msgid "Your API key can be found in your MailChimp account under Account > Extras > API Keys."
548
+ msgstr "کلید API خود را می توانید در حساب MailChimp خود در Account > Extras > API Keys بیابید."
549
+
550
+ #: classes/class-fl-builder-service-mailchimp.php:215
551
+ msgid "No Group"
552
+ msgstr "هیچ گروه"
553
+
554
+ #: classes/class-fl-builder-service-mailchimp.php:227
555
+ msgctxt "MailChimp list group."
556
+ msgid "Groups"
557
+ msgstr "گروه‌ها"
558
+
559
+ #: classes/class-fl-builder-service-mailchimp.php:255
560
+ msgid "There was an error subscribing to MailChimp. The account is no longer connected."
561
+ msgstr "خطایی در اشتراک MailChimp وجود داشت. حساب دیگر متصل نمی شود."
562
+
563
+ #: classes/class-fl-builder-service-mailchimp.php:352
564
+ #, php-format
565
+ msgid "There was an error subscribing to MailChimp. %s"
566
+ msgstr "خطایی در اشتراک از MailChimp وجود داشت. ‪%‬s"
567
+
568
+ #: classes/class-fl-builder-service-mailpoet.php:73
569
+ msgid "There was an error retrieveing your lists."
570
+ msgstr "مشکلی در بازیابی لیست شما وجود داشت."
571
+
572
+ #: classes/class-fl-builder-service-mailpoet.php:129
573
+ msgid "There was an error subscribing. MailPoet is not installed."
574
+ msgstr "خطایی در اشتراک وجود داشت. MailPoet نصب نشده است."
575
+
576
+ #: classes/class-fl-builder-service-sendinblue.php:67
577
+ msgid "Error: You must provide an Access Key."
578
+ msgstr "خطا: شما بایستی یک کلید API فراهم کنید."
579
+
580
+ #: classes/class-fl-builder-service-sendinblue.php:76 classes/class-fl-builder-service-sendinblue.php:136
581
+ msgid "There was an error connecting to SendinBlue. Please try again."
582
+ msgstr "خطایی هنگام اتصال به SendinBlue وجود داشت. لطفا دوباره سعی کنید."
583
+
584
+ #: classes/class-fl-builder-service-sendinblue.php:79 classes/class-fl-builder-service-sendinblue.php:139
585
+ #, php-format
586
+ msgid "Error: Could not connect to SendinBlue. %s"
587
+ msgstr "خطا: اتصال به SendinBlue ناموفق بود. %s"
588
+
589
+ #: classes/class-fl-builder-service-sendinblue.php:103
590
+ msgid "Access Key"
591
+ msgstr "کلید دسترسی"
592
+
593
+ #: classes/class-fl-builder-service-sendinblue.php:104
594
+ msgid ""
595
+ "Your Access Key can be found in your SendinBlue account under API & Integration > Manager Your Keys > "
596
+ "Version 2.0 > Access Key."
597
+ msgstr ""
598
+ "کلید دسترسی خود را می توانید در حساب SendinBlue خود در API & Integration > Manager Your Keys > Version 2.0 "
599
+ "> Access Key بیابید."
600
+
601
+ #: classes/class-fl-builder-service-sendinblue.php:198
602
+ msgid "There was an error subscribing to SendinBlue. The account is no longer connected."
603
+ msgstr "خطایی در اشتراک SendinBlue وجود داشت. حساب دیگر متصل نمی شود."
604
+
605
+ #: classes/class-fl-builder-service-sendinblue.php:220
606
+ msgid "There was an error subscribing to SendinBlue. Please try again."
607
+ msgstr "خطایی هنگام اتصال به SendinBlue وجود داشت. لطفا دوباره سعی کنید."
608
+
609
+ #: classes/class-fl-builder-service-sendinblue.php:223
610
+ #, php-format
611
+ msgid "Error: Could not subscribe to SendinBlue. %s"
612
+ msgstr "خطا: اتصال به SendinBlue ناموفق بود. %s"
613
+
614
+ #: classes/class-fl-builder-services.php:158
615
+ msgctxt "Third party service such as MailChimp."
616
+ msgid "Error: Missing service type."
617
+ msgstr "خطا: نوع سرویس قابل شناسایی نیست."
618
+
619
+ #: classes/class-fl-builder-services.php:161
620
+ msgctxt "Connection data such as an API key."
621
+ msgid "Error: Missing service data."
622
+ msgstr "خطا: داده های سرویس قابل شناسایی نیست."
623
+
624
+ #: classes/class-fl-builder-services.php:164
625
+ msgctxt "Account name for a third party service such as MailChimp."
626
+ msgid "Error: Missing account name."
627
+ msgstr "خطا: نام حساب قابل شناسایی نیست."
628
+
629
+ #: classes/class-fl-builder-services.php:173
630
+ msgctxt "Account name for a third party service such as MailChimp."
631
+ msgid "Error: An account with that name already exists."
632
+ msgstr "خطا: حسابی با این نام از قبل وجود دارد."
633
+
634
+ #: classes/class-fl-builder-services.php:253
635
+ msgid "Account Name"
636
+ msgstr "نام کاربری"
637
+
638
+ #: classes/class-fl-builder-services.php:254
639
+ msgid "Used to identify this connection within the accounts list and can be anything you like."
640
+ msgstr ""
641
+ "این برای شناسایی اتصال بین لیست حساب های کاربری استفاده می شود و می توانید آن را به هر چه می خواهید تغییر "
642
+ "دهید."
643
+
644
+ #: classes/class-fl-builder-services.php:267
645
+ msgid "Connect"
646
+ msgstr "اتصال"
647
+
648
+ #: classes/class-fl-builder-services.php:295
649
+ msgid "Add Account..."
650
+ msgstr "افزودن حساب"
651
+
652
+ #: classes/class-fl-builder-services.php:302
653
+ msgid "Account"
654
+ msgstr "حساب کاربری"
655
+
656
+ #: classes/class-fl-builder-template-settings.php:33
657
+ msgid "Page Builder Templates"
658
+ msgstr "قالب‌های صفحه ‌ساز"
659
+
660
+ #: classes/class-fl-builder-templates-override.php:49
661
+ msgid "Error! Please enter a number for the site ID."
662
+ msgstr "خطا! لطفاً شماره ای برای شناسه سایت وارد کنید."
663
+
664
+ #: classes/class-fl-builder-templates-override.php:53
665
+ msgid "Error! A site with that ID doesn't exist."
666
+ msgstr "خطا! سایتی با ID که وارد کردید وجود ندارد."
667
+
668
+ #: classes/class-fl-builder.php:617
669
+ #, php-format
670
+ msgid "Template: %s"
671
+ msgstr "قالب: %s"
672
+
673
+ #: classes/class-fl-builder.php:652
674
+ msgid "Upgrade!"
675
+ msgstr "ارتقاء دهید!"
676
+
677
+ #: classes/class-fl-builder.php:656
678
+ msgid "Buy Now!"
679
+ msgstr "همین حالا خریداری کنید"
680
+
681
+ #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36 includes/ui-js-templates.php:100
682
+ msgid "Done"
683
+ msgstr "انجام شد"
684
+
685
+ #: classes/class-fl-builder.php:664
686
+ msgid "Tools"
687
+ msgstr "ابزارها"
688
+
689
+ #: classes/class-fl-builder.php:672 includes/ui-js-config.php:88
690
+ msgid "Add Content"
691
+ msgstr "افزودن محتوا"
692
+
693
+ #: classes/class-fl-builder.php:1032
694
+ #, php-format
695
+ msgctxt "Field name to add."
696
+ msgid "Add %s"
697
+ msgstr "اضافه کردن %s"
698
+
699
+ #: classes/class-fl-builder.php:1126 classes/class-fl-builder.php:1128
700
+ msgctxt "Custom post type label."
701
+ msgid "Templates"
702
+ msgstr "قالب ها"
703
+
704
+ #: classes/class-fl-builder.php:1127 classes/class-fl-builder.php:1129
705
+ msgctxt "Custom post type label."
706
+ msgid "Template"
707
+ msgstr "قالب"
708
+
709
+ #: classes/class-fl-builder.php:1130
710
+ msgctxt "Custom post type label."
711
+ msgid "Add New"
712
+ msgstr "افزودن جدید"
713
+
714
+ #: classes/class-fl-builder.php:1131
715
+ msgctxt "Custom post type label."
716
+ msgid "Add New Template"
717
+ msgstr "افزودن طراحی قالب جدید"
718
+
719
+ #: classes/class-fl-builder.php:1132
720
+ msgctxt "Custom post type label."
721
+ msgid "New Template"
722
+ msgstr "قالب جدید"
723
+
724
+ #: classes/class-fl-builder.php:1133
725
+ msgctxt "Custom post type label."
726
+ msgid "Edit Template"
727
+ msgstr "ویرایش قالب"
728
+
729
+ #: classes/class-fl-builder.php:1134
730
+ msgctxt "Custom post type label."
731
+ msgid "View Template"
732
+ msgstr "نمایش قالب"
733
+
734
+ #: classes/class-fl-builder.php:1135
735
+ msgctxt "Custom post type label."
736
+ msgid "All Templates"
737
+ msgstr "همه قالب ها"
738
+
739
+ #: classes/class-fl-builder.php:1136
740
+ msgctxt "Custom post type label."
741
+ msgid "Search Templates"
742
+ msgstr "جستجوی قالب‌ها"
743
+
744
+ #: classes/class-fl-builder.php:1137
745
+ msgctxt "Custom post type label."
746
+ msgid "Parent Templates:"
747
+ msgstr "قالب های طراحی مرجع:"
748
+
749
+ #: classes/class-fl-builder.php:1138
750
+ msgctxt "Custom post type label."
751
+ msgid "No templates found."
752
+ msgstr "هیچ طرح‌بندی قالبی یافت نشد"
753
+
754
+ #: classes/class-fl-builder.php:1139
755
+ msgctxt "Custom post type label."
756
+ msgid "No templates found in Trash."
757
+ msgstr "هیچ طرح‌بندی قالبی در زباله‌دان یافت نشد."
758
+
759
+ #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1163
760
+ msgctxt "Custom taxonomy label."
761
+ msgid "Categories"
762
+ msgstr "موضوعات"
763
+
764
+ #: classes/class-fl-builder.php:1154
765
+ msgctxt "Custom taxonomy label."
766
+ msgid "Category"
767
+ msgstr "دسته بندی"
768
+
769
+ #: classes/class-fl-builder.php:1155
770
+ msgctxt "Custom taxonomy label."
771
+ msgid "Search Categories"
772
+ msgstr "جست‌وجوی دسته‌بندی‌ها"
773
+
774
+ #: classes/class-fl-builder.php:1156
775
+ msgctxt "Custom taxonomy label."
776
+ msgid "All Categories"
777
+ msgstr "همه دسته بندی ها"
778
+
779
+ #: classes/class-fl-builder.php:1157
780
+ msgctxt "Custom taxonomy label."
781
+ msgid "Parent Category"
782
+ msgstr "دسته بندی‌های مرجع"
783
+
784
+ #: classes/class-fl-builder.php:1158
785
+ msgctxt "Custom taxonomy label."
786
+ msgid "Parent Category:"
787
+ msgstr "دسته بندی مادر:"
788
+
789
+ #: classes/class-fl-builder.php:1159
790
+ msgctxt "Custom taxonomy label."
791
+ msgid "Edit Category"
792
+ msgstr "ویرایش دسته"
793
+
794
+ #: classes/class-fl-builder.php:1160
795
+ msgctxt "Custom taxonomy label."
796
+ msgid "Update Category"
797
+ msgstr "بروزرسانی دسته"
798
+
799
+ #: classes/class-fl-builder.php:1161
800
+ msgctxt "Custom taxonomy label."
801
+ msgid "Add New Category"
802
+ msgstr "افزودن دسته بندی جدید"
803
+
804
+ #: classes/class-fl-builder.php:1162
805
+ msgctxt "Custom taxonomy label."
806
+ msgid "New Category Name"
807
+ msgstr "نام دسته بندی جدید"
808
+
809
+ #: classes/class-fl-builder.php:1172
810
+ msgctxt "Custom taxonomy label."
811
+ msgid "Type"
812
+ msgstr "نوع"
813
+
814
+ #: classes/class-fl-builder.php:1448 classes/class-fl-builder.php:1527 classes/class-fl-builder.php:1735
815
+ #: includes/ui-js-templates.php:110 includes/ui-panel-node-templates.php:18
816
+ #: includes/ui-panel-node-templates.php:49
817
+ msgctxt "Indicator for global node templates."
818
+ msgid "Global"
819
+ msgstr "کلی"
820
+
821
+ #: classes/class-fl-builder.php:1734
822
+ #, php-format
823
+ msgctxt "%s stands for module name."
824
+ msgid "%s Settings"
825
+ msgstr "‏‪%‬s تنظیمات"
826
+
827
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
828
+ msgid "Text Editor"
829
+ msgstr "ویرایش‌گر متن"
830
+
831
+ #: includes/admin-posts.php:7
832
+ #, php-format
833
+ msgctxt ""
834
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s stands for the post type name."
835
+ msgid "%s is currently active for this %s."
836
+ msgstr "‏%s در حال حاضر برای این s‪%‬ فعال است."
837
+
838
+ #: includes/admin-posts.php:8
839
+ #, php-format
840
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
841
+ msgid "Launch %s"
842
+ msgstr "اجرای %s"
843
+
844
+ #: includes/admin-settings-branding.php:7
845
+ msgid "White label the page builder by entering a custom name below."
846
+ msgstr "با وارد کردن یک نام سفارشی در زیر، صفحه ساز را برچسب سفید کنید."
847
+
848
+ #: includes/admin-settings-branding.php:10
849
+ msgid ""
850
+ "Additionally, you may also add a custom icon by entering the URL of an image below. Leave the field blank "
851
+ "if you do not wish to use an icon."
852
+ msgstr ""
853
+ "همچنین، شما می‌توانید آیکون موردنظر را با وارد کردن URL تصویر در زیر اضافه کنید. اگر تمایلی به استفاده از "
854
+ "این امکان را ندارید، فیلد را خالی بگذارید."
855
+
856
+ #: includes/admin-settings-branding.php:14
857
+ msgid "Save Branding"
858
+ msgstr "ذخیره نام تجاری"
859
+
860
+ #: includes/admin-settings-cache.php:9
861
+ msgid ""
862
+ "A CSS and JavaScript file is dynamically generated and cached each time you create a new layout. Sometimes "
863
+ "the cache needs to be refreshed when you migrate your site to another server or update to the latest "
864
+ "version. If you are running into any issues, please try clearing the cache by clicking the button below."
865
+ msgstr ""
866
+ "یک فایل CSS و JavaScript بصورت اتومات در زمان ساخت هر لایه جدیدی ساخته می شود. بعضی اوقات کش نیاز دارد در "
867
+ "زمان آپدیت یا انتقال سایت به سرور دیگر نوسازی شود. اگر با مشکلی مواجه شدید دکمه پایین را امتحان کنید، شاید "
868
+ "با خالی کردن کش مشکل حل می شود."
869
+
870
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
871
+ #: includes/admin-settings-uninstall.php:7 includes/admin-settings-uninstall.php:10
872
+ #: includes/updater/includes/form.php:31
873
+ msgid "NOTE:"
874
+ msgstr "یادداشت"
875
+
876
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-uninstall.php:10
877
+ #: includes/updater/includes/form.php:31
878
+ msgid "This applies to all sites on the network."
879
+ msgstr "این در مورد تمام سایت‌های موجود در شبکه اعمال می‌شود."
880
+
881
+ #: includes/admin-settings-cache.php:14
882
+ msgid ""
883
+ "This only applies to this site. Please visit the Network Admin Settings to clear the cache for all sites "
884
+ "on the network."
885
+ msgstr ""
886
+ "این فقط به این سایت اعمال می شود. لطفا به Network Admin Settings مراجعه می کنید تا تمامی کش سایت خود بر "
887
+ "روی شبکه را پاک کنید."
888
+
889
+ #: includes/admin-settings-cache.php:19
890
+ msgid "Clear Cache"
891
+ msgstr "پاک کردن کش"
892
+
893
+ #: includes/admin-settings-editing.php:3
894
+ msgid "Editing Settings"
895
+ msgstr "ویرایش تنظیمات"
896
+
897
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
898
+ #: includes/admin-settings-modules.php:10 includes/admin-settings-post-types.php:10
899
+ #: includes/admin-settings-templates.php:16
900
+ msgid "Override network settings?"
901
+ msgstr "تنظیمات شبکه نادیده گرفته شود؟"
902
+
903
+ #: includes/admin-settings-editing.php:16
904
+ msgid "Editing Capability"
905
+ msgstr "قابلیت ویرایش"
906
+
907
+ #: includes/admin-settings-editing.php:17
908
+ #, php-format
909
+ msgid ""
910
+ "Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting "
911
+ "or moving modules."
912
+ msgstr ""
913
+ "تنظیم <a%s>قابلیت</a> لازم برای کاربران تا بتوانند به ویرایش پیشرفته مثل افزودن، حذف و یا حرکت دادن "
914
+ "ماژول‌ها دسترسی داشته باشند."
915
+
916
+ #: includes/admin-settings-editing.php:21
917
+ msgid "Global Templates Editing Capability"
918
+ msgstr "قابلیت عمومی ویرایش قالب"
919
+
920
+ #: includes/admin-settings-editing.php:22
921
+ #, php-format
922
+ msgid "Set the <a%s>capability</a> required for users to global templates."
923
+ msgstr "تنظیم <a%s>قابلیت</a> لازم برای کاربران برای قالب های کلی."
924
+
925
+ #: includes/admin-settings-editing.php:28
926
+ msgid "Save Editing Settings"
927
+ msgstr "ذخیره تغییرات پیکربندی"
928
+
929
+ #: includes/admin-settings-help-button.php:8
930
+ msgid "Help Button Settings"
931
+ msgstr "تنظیمات دکمه راهنما"
932
+
933
+ #: includes/admin-settings-help-button.php:17
934
+ msgid "Enable Help Button"
935
+ msgstr "فعال کردن دکمه راهنما"
936
+
937
+ #: includes/admin-settings-help-button.php:23
938
+ msgid "Help Tour"
939
+ msgstr "تور آموزشی"
940
+
941
+ #: includes/admin-settings-help-button.php:27
942
+ msgid "Enable Help Tour"
943
+ msgstr "فعال کردن تور آموزشی"
944
+
945
+ #: includes/admin-settings-help-button.php:31
946
+ msgid "Help Video"
947
+ msgstr "ویدیو راهنما"
948
+
949
+ #: includes/admin-settings-help-button.php:35
950
+ msgid "Enable Help Video"
951
+ msgstr "فعال کردن ویدئو راهنما"
952
+
953
+ #: includes/admin-settings-help-button.php:39
954
+ msgid "Help Video Embed Code"
955
+ msgstr "کدهای embded ویدئو راهنما"
956
+
957
+ #: includes/admin-settings-help-button.php:45
958
+ msgid "Knowledge Base"
959
+ msgstr "مرکز آموزش"
960
+
961
+ #: includes/admin-settings-help-button.php:49
962
+ msgid "Enable Knowledge Base"
963
+ msgstr "فعال کردن مرکز آموزش"
964
+
965
+ #: includes/admin-settings-help-button.php:53
966
+ msgid "Knowledge Base URL"
967
+ msgstr "آدرس لینک مرکز آموزش"
968
+
969
+ #: includes/admin-settings-help-button.php:59
970
+ msgid "Forums"
971
+ msgstr "انجمن ها"
972
+
973
+ #: includes/admin-settings-help-button.php:63
974
+ msgid "Enable Forums"
975
+ msgstr "فعال کردن انجمن ها"
976
+
977
+ #: includes/admin-settings-help-button.php:67
978
+ msgid "Forums URL"
979
+ msgstr "آدرس لینک انجمن"
980
+
981
+ #: includes/admin-settings-help-button.php:77
982
+ msgid "Save Help Button Settings"
983
+ msgstr "ذخیره تنظیمات دکمه راهنما"
984
+
985
+ #: includes/admin-settings-icons.php:3
986
+ msgid "Icon Settings"
987
+ msgstr "تنظیمات آیکون"
988
+
989
+ #: includes/admin-settings-icons.php:13
990
+ msgid "Icons for the main site must be managed in the network admin."
991
+ msgstr "آیکون ها برای سایت اصلی باید در مدیریت شبکه تنظیم شوند."
992
+
993
+ #: includes/admin-settings-icons.php:33
994
+ #, php-format
995
+ msgid ""
996
+ "Enable or disable icon sets using the options below or upload a custom icon set from either <a%s>Icomoon</"
997
+ "a> or <a%s>Fontello</a>."
998
+ msgstr ""
999
+ "با استفاده از تنظیمات زیر دسته آیکون ها را فعال یا غیر فعال کرده و یا دسته دیگری به انتخاب خود از <a"
1000
+ "%s>Icomoon</a> یا <a%s>Fontello</a> انتخاب کنید."
1001
+
1002
+ #: includes/admin-settings-icons.php:48
1003
+ msgctxt "Plugin setup page: Delete icon set."
1004
+ msgid "Delete"
1005
+ msgstr "حذف"
1006
+
1007
+ #: includes/admin-settings-icons.php:59
1008
+ msgid "Upload Icon Set"
1009
+ msgstr "آپلود مجموعه آیکون"
1010
+
1011
+ #: includes/admin-settings-icons.php:60
1012
+ msgid "Save Icon Settings"
1013
+ msgstr "ذخیره کردن تنظیمات آيكون"
1014
+
1015
+ #: includes/admin-settings-js-config.php:4
1016
+ msgid "Select File"
1017
+ msgstr "انتخاب فایل"
1018
+
1019
+ #: includes/admin-settings-js-config.php:5
1020
+ msgid ""
1021
+ "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder "
1022
+ "and all of its data."
1023
+ msgstr ""
1024
+ "لطفاً با تایپ کردن “uninstall” در جعبه‌ی زیر تایید کنید که می‌خواهید صفحه‌ ساز و همه‌ی اطلاعات مربوط به آن را "
1025
+ "حذف کنید."
1026
+
1027
+ #: includes/admin-settings-modules.php:3
1028
+ msgid "Enabled Modules"
1029
+ msgstr "ماژول های فعال"
1030
+
1031
+ #: includes/admin-settings-modules.php:16
1032
+ msgid "Check or uncheck modules below to enable or disable them."
1033
+ msgstr "با انتخاب کردن ماژول‌های مورد‌نظرتان در لیست زیر آن‌ها را فعال یا غیر فعال کنید."
1034
+
1035
+ #: includes/admin-settings-modules.php:26
1036
+ msgctxt "Plugin setup page: Modules."
1037
+ msgid "All"
1038
+ msgstr "همه"
1039
+
1040
+ #: includes/admin-settings-modules.php:64
1041
+ msgid "Save Module Settings"
1042
+ msgstr "ذخیره تنظیمات ماژول"
1043
+
1044
+ #: includes/admin-settings-post-types.php:18
1045
+ msgid "Enter a comma separated list of the post types you would like the builder to work with."
1046
+ msgstr "لیستی از نوع نوشته که می‌خواهید در صفحه‌ساز فعال باشند وارد کرده و آن‌ها را با کاما از هم جدا کنید."
1047
+
1048
+ #: includes/admin-settings-post-types.php:19 includes/admin-settings-post-types.php:39
1049
+ msgid "NOTE: Not all custom post types may be supported."
1050
+ msgstr "توجه: همه نوع نوشته ها ممکن است پشتیبانی نشوند."
1051
+
1052
+ #: includes/admin-settings-post-types.php:34
1053
+ msgid "Example: page, post, product"
1054
+ msgstr "مثال: صفحه, نوشته, محصول"
1055
+
1056
+ #: includes/admin-settings-post-types.php:38
1057
+ msgid "Select the post types you would like the builder to work with."
1058
+ msgstr "لیستی از نوع نوشته که می‌خواهید در صفحه ‌ساز فعال باشند را انتخاب کنید."
1059
+
1060
+ #: includes/admin-settings-post-types.php:70
1061
+ msgid "Save Post Types"
1062
+ msgstr "دخیره کردن نوع نوشته"
1063
+
1064
+ #: includes/admin-settings-templates-override.php:1 includes/admin-settings-templates-override.php:12
1065
+ msgid "Override Core Templates"
1066
+ msgstr "قالب های اصلی را نادیده بگیرید"
1067
+
1068
+ #: includes/admin-settings-templates-override.php:3
1069
+ msgid ""
1070
+ "Enter the ID of a site on the network whose templates should override core builder templates. Leave this "
1071
+ "field blank if you do not wish to override core templates."
1072
+ msgstr ""
1073
+ "‏ID سایتی از شبکه را که قالب های اصلی صفحه ساز را می پوشاند وارد کنید. اگر قصد پاک کردن قالب های اصلی سایت "
1074
+ "را ندارید این فیلد را خالی بگزارید."
1075
+
1076
+ #: includes/admin-settings-templates-override.php:8
1077
+ msgid "Use this setting to override core builder templates with your templates."
1078
+ msgstr "از این تنظیمات برای جایگزینی قالب های خود با قالب های هسته صفحه ساز استفاده نمایید."
1079
+
1080
+ #: includes/admin-settings-templates-override.php:17
1081
+ msgid ""
1082
+ "You may also choose to show your row and module templates as sections within the builder panel. A new "
1083
+ "section will be created for each row or module category that you have defined."
1084
+ msgstr ""
1085
+ "شما همجنین می توانید انتخاب کنید که ردیف یا پوسته ماژول های شما درون قسمت های صفحه ساز نمایش داده شود. "
1086
+ "قسمتی جدید از ساخته های شما در هر دسته ردیف و ماژول ساخته خواهد شد."
1087
+
1088
+ #: includes/admin-settings-templates-override.php:21
1089
+ msgid "Show Row Templates?"
1090
+ msgstr "نمایش قالب های خام؟"
1091
+
1092
+ #: includes/admin-settings-templates-override.php:27
1093
+ msgid "Show Module Templates?"
1094
+ msgstr "ماژول قالب نشان داده شود؟"
1095
+
1096
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1097
+ msgid "Template Settings"
1098
+ msgstr "تنظیمات قالب"
1099
+
1100
+ #: includes/admin-settings-templates.php:22
1101
+ msgid "Enable Templates"
1102
+ msgstr "فعال کردن قالب ها"
1103
+
1104
+ #: includes/admin-settings-templates.php:23
1105
+ msgid "Use this setting to enable or disable templates in the builder interface."
1106
+ msgstr "با استفاده از تنظیمات زیر قالب‌های مورد نظرتان را فعال یا غیر فعال کنید."
1107
+
1108
+ #: includes/admin-settings-templates.php:25
1109
+ msgid "Enable All Templates"
1110
+ msgstr "همه قالب ها فعال شوند"
1111
+
1112
+ #: includes/admin-settings-templates.php:26
1113
+ msgid "Enable Core Templates Only"
1114
+ msgstr "تنها قالب‌های اصلی فعال شوند"
1115
+
1116
+ #: includes/admin-settings-templates.php:27
1117
+ msgid "Enable User Templates Only"
1118
+ msgstr "تنها قالب‌های کاربر فعال شوند"
1119
+
1120
+ #: includes/admin-settings-templates.php:28
1121
+ msgid "Disable All Templates"
1122
+ msgstr "غیر فعال کردن همه قالب ها"
1123
+
1124
+ #: includes/admin-settings-templates.php:31 includes/admin-settings-templates.php:36
1125
+ msgid "Enable Templates Admin"
1126
+ msgstr "فعال کردن قالب های ادمین"
1127
+
1128
+ #: includes/admin-settings-templates.php:32
1129
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1130
+ msgstr "از این تنظیمات برای ویرایش پوسته های صفحه ساز در ادمین وردپرس استفاده نمایید."
1131
+
1132
+ #: includes/admin-settings-templates.php:50
1133
+ msgid "Save Template Settings"
1134
+ msgstr "ذخیره تنظیمات قالب‌ها"
1135
+
1136
+ #: includes/admin-settings-uninstall.php:5
1137
+ msgid ""
1138
+ "Clicking the button below will uninstall the page builder plugin and delete all of the data associated "
1139
+ "with it. You can uninstall or deactivate the page builder from the plugins page instead if you do not wish "
1140
+ "to delete the data."
1141
+ msgstr ""
1142
+ "کلیک روی دکمه زیر افزونه صفحه ساز و تمام اطلاعات مربوط به آن را حذف می کند. چنانچه قصد حذف کردن داده ها را "
1143
+ "ندارید می توانید افزونه صفحه ساز را از صفحه افزونه ها حذف یا غیرفعال کنید."
1144
+
1145
+ #: includes/admin-settings-uninstall.php:7
1146
+ msgid ""
1147
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> "
1148
+ "and <code>_fl_builder_enabled</code> in case you want to reinstall it later. If you do, the builder will "
1149
+ "rebuild all of its data using those meta values."
1150
+ msgstr ""
1151
+ "افزونه‌ی صفحه‌ساز کد‌های متا <code>_fl_builder_data</code>، <code>_fl_builder_draft</code> و "
1152
+ "<code>_fl_builder_enabled</code> را برای روز مبادا نگه‌داری خواهد کرد. اگر این کار را انجام دهید پس از نصب "
1153
+ "مجدد از این اطلاعات برای بازسازی و آماده سازی افزونه برای شما استفاده خواهد کرد."
1154
+
1155
+ #: includes/admin-settings-upgrade.php:5
1156
+ msgid ""
1157
+ "You are currently running the lite version of the Beaver Builder plugin. Upgrade today for access to "
1158
+ "premium features such as advanced modules, templates, support and more!"
1159
+ msgstr ""
1160
+ "شما در حال حاضر نسخه سبُک صفحه ساز را در اختیار دارید. برای دسترسی به امکاناتی نظیر ماژول های حرفه ای، قالب "
1161
+ "ها، پشتیبانی و بیشتر به نسخه پولی ارتقا دهید!"
1162
+
1163
+ #: includes/admin-settings-upgrade.php:7
1164
+ msgid "Upgrade Now"
1165
+ msgstr "هم اکنون ارتقاء دهید!"
1166
+
1167
+ #: includes/admin-settings-upgrade.php:9
1168
+ msgid "Learn More"
1169
+ msgstr "بیشتر بدانید"
1170
+
1171
+ #: includes/admin-templates-edit.php:3
1172
+ msgid "Edit Template"
1173
+ msgstr "ویرایش قالب"
1174
+
1175
+ #: includes/admin-templates-edit.php:8
1176
+ msgctxt "Template edit form field label. Template name."
1177
+ msgid "Name"
1178
+ msgstr "نام"
1179
+
1180
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1181
+ #: modules/post-carousel/post-carousel.php:255 modules/post-grid/post-grid.php:116
1182
+ #: modules/post-slider/post-slider.php:460
1183
+ msgid "Image"
1184
+ msgstr "تصویر"
1185
+
1186
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139 includes/row-settings.php:179
1187
+ #: includes/template-settings.php:23 modules/callout/callout.php:354 modules/callout/callout.php:374
1188
+ #: modules/content-slider/content-slider.php:473 modules/post-grid/post-grid.php:130
1189
+ #: modules/post-slider/post-slider.php:626 modules/post-slider/post-slider.php:645
1190
+ msgid "Position"
1191
+ msgstr "موقعیت"
1192
+
1193
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1194
+ msgctxt "Template edit form field label. Is template premium one?"
1195
+ msgid "Premium"
1196
+ msgstr "نسخه پولی"
1197
+
1198
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30 includes/global-settings.php:18
1199
+ #: includes/global-settings.php:110 includes/global-settings.php:124 includes/node-template-settings.php:22
1200
+ #: includes/row-settings.php:331 includes/template-settings.php:31 modules/accordion/accordion.php:90
1201
+ #: modules/callout/callout.php:421 modules/content-slider/content-slider.php:210
1202
+ #: modules/content-slider/content-slider.php:224 modules/content-slider/content-slider.php:258
1203
+ #: modules/content-slider/content-slider.php:267 modules/content-slider/content-slider.php:538
1204
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111 modules/menu/menu.php:167
1205
+ #: modules/menu/menu.php:358 modules/post-carousel/post-carousel.php:139
1206
+ #: modules/post-carousel/post-carousel.php:155 modules/post-carousel/post-carousel.php:182
1207
+ #: modules/post-carousel/post-carousel.php:191 modules/post-carousel/post-carousel.php:232
1208
+ #: modules/post-carousel/post-carousel.php:283 modules/post-grid/post-grid.php:265
1209
+ #: modules/post-slider/post-slider.php:357 modules/post-slider/post-slider.php:382
1210
+ #: modules/post-slider/post-slider.php:409 modules/post-slider/post-slider.php:418
1211
+ #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:323
1212
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1213
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1214
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1215
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1216
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1217
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1218
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1219
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1220
+ #: modules/slideshow/slideshow.php:650 modules/social-buttons/social-buttons.php:111
1221
+ #: modules/social-buttons/social-buttons.php:120 modules/social-buttons/social-buttons.php:129
1222
+ #: modules/testimonials/testimonials.php:85 modules/testimonials/testimonials.php:124
1223
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111 modules/video/video.php:123
1224
+ msgid "No"
1225
+ msgstr "خیر"
1226
+
1227
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30 includes/global-settings.php:19
1228
+ #: includes/global-settings.php:111 includes/global-settings.php:125 includes/node-template-settings.php:23
1229
+ #: includes/row-settings.php:332 includes/template-settings.php:32 modules/accordion/accordion.php:89
1230
+ #: modules/callout/callout.php:422 modules/content-slider/content-slider.php:211
1231
+ #: modules/content-slider/content-slider.php:225 modules/content-slider/content-slider.php:259
1232
+ #: modules/content-slider/content-slider.php:268 modules/content-slider/content-slider.php:539
1233
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112 modules/menu/menu.php:168
1234
+ #: modules/menu/menu.php:359 modules/post-carousel/post-carousel.php:140
1235
+ #: modules/post-carousel/post-carousel.php:156 modules/post-carousel/post-carousel.php:183
1236
+ #: modules/post-carousel/post-carousel.php:192 modules/post-carousel/post-carousel.php:233
1237
+ #: modules/post-carousel/post-carousel.php:282 modules/post-grid/post-grid.php:264
1238
+ #: modules/post-slider/post-slider.php:358 modules/post-slider/post-slider.php:383
1239
+ #: modules/post-slider/post-slider.php:410 modules/post-slider/post-slider.php:419
1240
+ #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:324
1241
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1242
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1243
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1244
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1245
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1246
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1247
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1248
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1249
+ #: modules/slideshow/slideshow.php:651 modules/social-buttons/social-buttons.php:110
1250
+ #: modules/social-buttons/social-buttons.php:119 modules/social-buttons/social-buttons.php:128
1251
+ #: modules/testimonials/testimonials.php:86 modules/testimonials/testimonials.php:125
1252
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112 modules/video/video.php:124
1253
+ msgid "Yes"
1254
+ msgstr "بله"
1255
+
1256
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1257
+ msgid "Category"
1258
+ msgstr "دسته بندی"
1259
+
1260
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1261
+ msgctxt "Templates category label."
1262
+ msgid "Landing Pages"
1263
+ msgstr "صفحات فرود"
1264
+
1265
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1266
+ msgctxt "Templates category label."
1267
+ msgid "Company Info"
1268
+ msgstr "اطلاعات شرکت"
1269
+
1270
+ #: includes/admin-templates-edit.php:40
1271
+ msgid "Update Template"
1272
+ msgstr "بروزرسانی قالب"
1273
+
1274
+ #: includes/admin-templates.php:3
1275
+ msgid "Page Builder Template"
1276
+ msgstr "قالب صفحه ‌ساز"
1277
+
1278
+ #: includes/admin-templates.php:10
1279
+ msgctxt "Templates list column label."
1280
+ msgid "Name"
1281
+ msgstr "نام"
1282
+
1283
+ #: includes/admin-templates.php:11
1284
+ msgctxt "Templates list column label."
1285
+ msgid "Category"
1286
+ msgstr "دسته بندی"
1287
+
1288
+ #: includes/admin-templates.php:12
1289
+ msgctxt "Templates list column label. Is template premium one?"
1290
+ msgid "Premium"
1291
+ msgstr "نسخه پولی"
1292
+
1293
+ #: includes/admin-templates.php:25 includes/field-photo.php:12 includes/template-selector.php:70
1294
+ msgid "Edit"
1295
+ msgstr "ویرایش"
1296
+
1297
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1298
+ msgid "Delete"
1299
+ msgstr "حذف"
1300
+
1301
+ #: includes/admin-templates.php:40 includes/ui-js-config.php:32
1302
+ msgid "Do you really want to delete this template?"
1303
+ msgstr "آیا شما واقعا می خواهید این قالب را حذف کنید؟"
1304
+
1305
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:31 includes/ui-js-templates.php:55
1306
+ msgid "Column Settings"
1307
+ msgstr "تنظیمات ستون"
1308
+
1309
+ #: includes/column-settings.php:7 includes/module-settings.php:87 includes/row-settings.php:9
1310
+ #: modules/accordion/accordion.php:45 modules/button/button.php:117 modules/button/button.php:155
1311
+ #: modules/button/button.php:159 modules/callout/callout.php:242 modules/callout/callout.php:554
1312
+ #: modules/content-slider/content-slider.php:426 modules/content-slider/content-slider.php:667
1313
+ #: modules/cta/cta.php:102 modules/cta/cta.php:309 modules/heading/heading.php:69
1314
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75 modules/menu/menu.php:146
1315
+ #: modules/post-carousel/post-carousel.php:389 modules/post-grid/post-grid.php:237
1316
+ #: modules/post-slider/post-slider.php:579 modules/pricing-table/pricing-table.php:43
1317
+ #: modules/pricing-table/pricing-table.php:155 modules/separator/separator.php:72
1318
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1319
+ msgid "Style"
1320
+ msgstr "طرح"
1321
+
1322
+ #: includes/column-settings.php:14
1323
+ msgid "Column Width"
1324
+ msgstr "عرض ستون"
1325
+
1326
+ #: includes/column-settings.php:26 modules/button/button.php:66 modules/callout/callout.php:226
1327
+ #: modules/callout/callout.php:479 modules/callout/callout.php:495
1328
+ #: modules/content-slider/content-slider.php:383 modules/content-slider/content-slider.php:617
1329
+ #: modules/cta/cta.php:85 modules/cta/cta.php:222 modules/menu/menu.php:174
1330
+ #: modules/post-slider/post-slider.php:622
1331
+ msgid "Text"
1332
+ msgstr "متن"
1333
+
1334
+ #: includes/column-settings.php:30 includes/column-settings.php:93 includes/column-settings.php:248
1335
+ #: includes/row-settings.php:133 includes/row-settings.php:427 modules/callout/callout.php:392
1336
+ #: modules/content-slider/content-slider.php:338 modules/icon-group/icon-group.php:51
1337
+ #: modules/icon/icon.php:82 modules/separator/separator.php:34
1338
+ msgid "Color"
1339
+ msgstr "رنگ"
1340
+
1341
+ #: includes/column-settings.php:38 includes/row-settings.php:60 modules/menu/menu.php:178
1342
+ #: modules/post-carousel/post-carousel.php:401 modules/post-slider/post-slider.php:699
1343
+ msgid "Link Color"
1344
+ msgstr "رنگ لینک"
1345
+
1346
+ #: includes/column-settings.php:46 includes/row-settings.php:68 modules/menu/menu.php:196
1347
+ #: modules/post-carousel/post-carousel.php:406 modules/post-slider/post-slider.php:715
1348
+ msgid "Link Hover Color"
1349
+ msgstr "رنگ لینک در زمان قرا گرفتن کرسر موس بر روی آن"
1350
+
1351
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1352
+ msgid "Heading Color"
1353
+ msgstr "رنگ هدینگ"
1354
+
1355
+ #: includes/column-settings.php:63 includes/row-settings.php:85 modules/post-slider/post-slider.php:463
1356
+ msgid "Background"
1357
+ msgstr "پس زمینه"
1358
+
1359
+ #: includes/column-settings.php:67 includes/column-settings.php:215 includes/row-settings.php:89
1360
+ #: includes/row-settings.php:394 modules/callout/callout.php:475
1361
+ #: modules/content-slider/content-slider.php:332 modules/content-slider/content-slider.php:379
1362
+ #: modules/content-slider/content-slider.php:597 modules/content-slider/content-slider.php:739
1363
+ #: modules/slideshow/slideshow.php:347
1364
+ msgid "Type"
1365
+ msgstr "نوع"
1366
+
1367
+ #: includes/column-settings.php:70 includes/row-settings.php:92 modules/content-slider/content-slider.php:339
1368
+ msgctxt "Background type."
1369
+ msgid "None"
1370
+ msgstr "هیچ کدام"
1371
+
1372
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1373
+ msgctxt "Background type."
1374
+ msgid "Color"
1375
+ msgstr "رنگ"
1376
+
1377
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1378
+ msgctxt "Background type."
1379
+ msgid "Photo"
1380
+ msgstr "عکس"
1381
+
1382
+ #: includes/column-settings.php:89 includes/row-settings.php:129 modules/button/button.php:124
1383
+ #: modules/callout/callout.php:405 modules/callout/callout.php:519
1384
+ #: modules/content-slider/content-slider.php:364 modules/content-slider/content-slider.php:640
1385
+ #: modules/cta/cta.php:198 modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1386
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1387
+ msgid "Background Color"
1388
+ msgstr "رنگ پس زمینه"
1389
+
1390
+ #: includes/column-settings.php:101 includes/column-settings.php:256 includes/row-settings.php:141
1391
+ #: includes/row-settings.php:435 modules/separator/separator.php:44
1392
+ msgid "Opacity"
1393
+ msgstr "شفافیت"
1394
+
1395
+ #: includes/column-settings.php:113 includes/row-settings.php:153
1396
+ #: modules/content-slider/content-slider.php:360
1397
+ msgid "Background Photo"
1398
+ msgstr "عکس پس زمینه"
1399
+
1400
+ #: includes/column-settings.php:117 includes/row-settings.php:157 includes/row-settings.php:345
1401
+ #: modules/callout/callout.php:317 modules/callout/callout.php:333 modules/callout/callout.php:337
1402
+ #: modules/content-slider/content-slider.php:336 modules/content-slider/content-slider.php:405
1403
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25 modules/photo/photo.php:408
1404
+ msgid "Photo"
1405
+ msgstr "عکس"
1406
+
1407
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1408
+ msgid "Repeat"
1409
+ msgstr "تکرار"
1410
+
1411
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1412
+ msgctxt "Background repeat."
1413
+ msgid "None"
1414
+ msgstr "هیچ کدام"
1415
+
1416
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1417
+ msgctxt "Background repeat."
1418
+ msgid "Tile"
1419
+ msgstr "کاشی مانند"
1420
+
1421
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1422
+ msgctxt "Background repeat."
1423
+ msgid "Horizontal"
1424
+ msgstr "افقی"
1425
+
1426
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1427
+ msgctxt "Background repeat."
1428
+ msgid "Vertical"
1429
+ msgstr "عمودی"
1430
+
1431
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1432
+ msgid ""
1433
+ "Repeat applies to how the image should display in the background. Choosing none will display the image as "
1434
+ "uploaded. Tile will repeat the image as many times as needed to fill the background horizontally and "
1435
+ "vertically. You can also specify the image to only repeat horizontally or vertically."
1436
+ msgstr ""
1437
+ "تکرار تنظیم می کند که عکس چگونه در پس زمینه نمایش داده شود. انتخاب هیچ کدام عکس را فقط در سایت بازگزاری می "
1438
+ "کند. کاشی مانند عکس را بارها و بارها تکرار می کند تا تمامی ردیف را بپوشاند. همچنین می توانید انتخاب کنید "
1439
+ "که عکس فقط افقی یا عمودی تکرار شود."
1440
+
1441
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1442
+ msgid "Left Top"
1443
+ msgstr "چپ بالا"
1444
+
1445
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1446
+ msgid "Left Center"
1447
+ msgstr "وسط سمت چپ"
1448
+
1449
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1450
+ msgid "Left Bottom"
1451
+ msgstr "پایین سمت چپ"
1452
+
1453
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1454
+ msgid "Right Top"
1455
+ msgstr "بالا سمت راست"
1456
+
1457
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1458
+ msgid "Right Center"
1459
+ msgstr "وسط سمت راست"
1460
+
1461
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1462
+ msgid "Right Bottom"
1463
+ msgstr "پایین سمت راست"
1464
+
1465
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1466
+ msgid "Center Top"
1467
+ msgstr "وسط سمت بالا"
1468
+
1469
+ #: includes/column-settings.php:149 includes/row-settings.php:189 modules/button/button.php:227
1470
+ #: modules/callout/callout.php:252 modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1471
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162 modules/icon-group/icon-group.php:110
1472
+ #: modules/icon/icon.php:133 modules/menu/menu.php:158 modules/photo/photo.php:434
1473
+ #: modules/social-buttons/social-buttons.php:100
1474
+ msgid "Center"
1475
+ msgstr "وسط"
1476
+
1477
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1478
+ msgid "Center Bottom"
1479
+ msgstr "وسط سمت پایین"
1480
+
1481
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1482
+ msgid "Position will tell the image where it should sit in the background."
1483
+ msgstr "موقعیت تنظیم می کند که عکس در کجای پس زمینه قرار بگیرد."
1484
+
1485
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1486
+ msgid "Attachment"
1487
+ msgstr "فایل ضمیمه"
1488
+
1489
+ #: includes/column-settings.php:162 includes/row-settings.php:202 modules/post-grid/post-grid.php:78
1490
+ msgid "Scroll"
1491
+ msgstr "اسکرول"
1492
+
1493
+ #: includes/column-settings.php:163 includes/global-settings.php:69 includes/global-settings.php:83
1494
+ #: includes/row-settings.php:19 includes/row-settings.php:37 includes/row-settings.php:203
1495
+ msgid "Fixed"
1496
+ msgstr "ثابت"
1497
+
1498
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1499
+ msgid ""
1500
+ "Attachment will specify how the image reacts when scrolling a page. When scrolling is selected, the image "
1501
+ "will scroll with page scrolling. This is the default setting. Fixed will allow the image to scroll within "
1502
+ "the background if fill is selected in the scale setting."
1503
+ msgstr ""
1504
+ "ضمیمه مشخص می کند که عکس پس زمینه چه نمایشی هنگام اسکرول صفحه داشته باشد. اگر پیمایش انتخاب شود عکس پس "
1505
+ "زمینه به همراه اسکرول صفحه حرکت خواهد کرد. این تنظیم پیش فرض است. اگر حالت پر شدن در تنظیمات مقیاس انتخاب "
1506
+ "شده باشد با انتخاب ثابت شده به عکس پس زمینه اجازه می دهید که در داخل زمینه ردیف حرکت کند."
1507
+
1508
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1509
+ msgid "Scale"
1510
+ msgstr "مقیاس"
1511
+
1512
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1513
+ msgctxt "Background scale."
1514
+ msgid "None"
1515
+ msgstr "هیچ کدام"
1516
+
1517
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1518
+ msgid "Fit"
1519
+ msgstr "تطبیق دادن"
1520
+
1521
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1522
+ msgid "Fill"
1523
+ msgstr "پر کردن"
1524
+
1525
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1526
+ msgid ""
1527
+ "Scale applies to how the image should display in the background. You can select either fill or fit to the "
1528
+ "background."
1529
+ msgstr ""
1530
+ "بزرگنمایی تعیین می‌کند که عکس در پس‌زمینه‌ی ردیف چگونه نمایش داده شود. می‌توانید تعیین کنید که یا صفحه با عکس "
1531
+ "پر شود و یا به صفحه فیت شود."
1532
+
1533
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1534
+ msgid "Background Overlay"
1535
+ msgstr "روکش پس زمینه"
1536
+
1537
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1538
+ msgid "Overlay Color"
1539
+ msgstr "رنگ پوشش"
1540
+
1541
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1542
+ msgid "Overlay Opacity"
1543
+ msgstr "شفافیت پوشش"
1544
+
1545
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1546
+ msgid "Border"
1547
+ msgstr "حاشیه"
1548
+
1549
+ #: includes/column-settings.php:217 includes/row-settings.php:396
1550
+ msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
1551
+ msgstr ""
1552
+ "نوع حاشیه مورد استفاده. حاشیه های دوبل باید پهنایی حداقل 3 پیکسل داشته باشند تا بتوانند به درستی نمایش "
1553
+ "داده شوند."
1554
+
1555
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1556
+ msgctxt "Border type."
1557
+ msgid "None"
1558
+ msgstr "هیچ کدام"
1559
+
1560
+ #: includes/column-settings.php:220 includes/row-settings.php:399 modules/separator/separator.php:75
1561
+ msgctxt "Border type."
1562
+ msgid "Solid"
1563
+ msgstr "یکدست"
1564
+
1565
+ #: includes/column-settings.php:221 includes/row-settings.php:400 modules/separator/separator.php:76
1566
+ msgctxt "Border type."
1567
+ msgid "Dashed"
1568
+ msgstr "خط‌ چین شده"
1569
+
1570
+ #: includes/column-settings.php:222 includes/row-settings.php:401 modules/separator/separator.php:77
1571
+ msgctxt "Border type."
1572
+ msgid "Dotted"
1573
+ msgstr "نقطه ‌چین شده"
1574
+
1575
+ #: includes/column-settings.php:223 includes/row-settings.php:402 modules/separator/separator.php:78
1576
+ msgctxt "Border type."
1577
+ msgid "Double"
1578
+ msgstr "دو خطی"
1579
+
1580
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1581
+ msgid "Top Width"
1582
+ msgstr "عرض بالا"
1583
+
1584
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1585
+ msgid "Bottom Width"
1586
+ msgstr "عرض پایین"
1587
+
1588
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1589
+ msgid "Left Width"
1590
+ msgstr "عرض چپ"
1591
+
1592
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1593
+ msgid "Right Width"
1594
+ msgstr "عرض راست"
1595
+
1596
+ #: includes/column-settings.php:318 includes/module-settings.php:6 includes/row-settings.php:497
1597
+ #: modules/content-slider/content-slider.php:274
1598
+ msgid "Advanced"
1599
+ msgstr "پیشرفته"
1600
+
1601
+ #: includes/column-settings.php:321 includes/global-settings.php:41 includes/global-settings.php:94
1602
+ #: includes/module-settings.php:9 includes/row-settings.php:500
1603
+ msgid "Margins"
1604
+ msgstr "حاشیه ها"
1605
+
1606
+ #: includes/column-settings.php:325 includes/column-settings.php:378 includes/module-settings.php:13
1607
+ #: includes/row-settings.php:504 includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1608
+ msgid "Top"
1609
+ msgstr "بالا"
1610
+
1611
+ #: includes/column-settings.php:337 includes/column-settings.php:390 includes/module-settings.php:25
1612
+ #: includes/row-settings.php:516 includes/row-settings.php:569 modules/post-slider/post-slider.php:632
1613
+ #: modules/slideshow/slideshow.php:482
1614
+ msgid "Bottom"
1615
+ msgstr "پایین"
1616
+
1617
+ #: includes/column-settings.php:349 includes/column-settings.php:402 includes/module-settings.php:37
1618
+ #: includes/row-settings.php:528 includes/row-settings.php:581 modules/button/button.php:228
1619
+ #: modules/callout/callout.php:253 modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1620
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161 modules/icon-group/icon-group.php:111
1621
+ #: modules/icon/icon.php:134 modules/menu/menu.php:157 modules/photo/photo.php:433
1622
+ #: modules/post-slider/post-slider.php:630 modules/post-slider/post-slider.php:649
1623
+ #: modules/social-buttons/social-buttons.php:101
1624
+ msgid "Left"
1625
+ msgstr "چپ"
1626
+
1627
+ #: includes/column-settings.php:361 includes/column-settings.php:414 includes/module-settings.php:49
1628
+ #: includes/row-settings.php:540 includes/row-settings.php:593 modules/button/button.php:229
1629
+ #: modules/callout/callout.php:254 modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1630
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163 modules/icon-group/icon-group.php:112
1631
+ #: modules/icon/icon.php:135 modules/menu/menu.php:159 modules/photo/photo.php:435
1632
+ #: modules/post-slider/post-slider.php:631 modules/post-slider/post-slider.php:650
1633
+ #: modules/social-buttons/social-buttons.php:102
1634
+ msgid "Right"
1635
+ msgstr "راست"
1636
+
1637
+ #: includes/column-settings.php:374 includes/global-settings.php:49 includes/row-settings.php:553
1638
+ #: modules/button/button.php:242 modules/callout/callout.php:609
1639
+ #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1640
+ #: modules/subscribe-form/subscribe-form.php:273
1641
+ msgid "Padding"
1642
+ msgstr "فاصله داخلی"
1643
+
1644
+ #: includes/column-settings.php:427 includes/global-settings.php:103 includes/module-settings.php:62
1645
+ #: includes/row-settings.php:606
1646
+ msgid "Responsive Layout"
1647
+ msgstr "طراحی واکنشگرا"
1648
+
1649
+ #: includes/column-settings.php:431 includes/module-settings.php:66 includes/row-settings.php:610
1650
+ #: modules/slideshow/slideshow.php:298
1651
+ msgid "Display"
1652
+ msgstr "نمایش"
1653
+
1654
+ #: includes/column-settings.php:433 includes/module-settings.php:68 includes/row-settings.php:612
1655
+ msgid "Always"
1656
+ msgstr "همیشه"
1657
+
1658
+ #: includes/column-settings.php:434 includes/module-settings.php:69 includes/row-settings.php:613
1659
+ msgid "Large Devices Only"
1660
+ msgstr "تنها در دستگاه‌های بزرگ"
1661
+
1662
+ #: includes/column-settings.php:435 includes/module-settings.php:70 includes/row-settings.php:614
1663
+ msgid "Large &amp; Medium Devices Only"
1664
+ msgstr "تنها در دستگاه‌های بزرگ و متوسط"
1665
+
1666
+ #: includes/column-settings.php:436 includes/module-settings.php:71 includes/row-settings.php:615
1667
+ msgid "Medium Devices Only"
1668
+ msgstr "تنها در دستگاه‌های متوسط"
1669
+
1670
+ #: includes/column-settings.php:437 includes/module-settings.php:72 includes/row-settings.php:616
1671
+ msgid "Medium &amp; Small Devices Only"
1672
+ msgstr "تنها در دستگاه‌های متوسط و کوچک"
1673
+
1674
+ #: includes/column-settings.php:438 includes/module-settings.php:73 includes/row-settings.php:617
1675
+ msgid "Small Devices Only"
1676
+ msgstr "تنها در دستگاه‌های کوچک"
1677
+
1678
+ #: includes/column-settings.php:440
1679
+ msgid "Choose whether to show or hide this column at different device sizes."
1680
+ msgstr "انتخاب کنید آیا این ستون در دستگاه‌هایی با اندازه‌های متفاوت مخفی شود و یا نمایش داده شود."
1681
+
1682
+ #: includes/column-settings.php:447
1683
+ msgid "Medium Device Width"
1684
+ msgstr "دستگاه با عرض متوسط"
1685
+
1686
+ #: includes/column-settings.php:448
1687
+ msgid "The width of this column on medium devices such as tablets."
1688
+ msgstr "عرض این ستون در دستگاه های متوسط ​​مانند تبلت‌ها."
1689
+
1690
+ #: includes/column-settings.php:450 includes/column-settings.php:478 modules/callout/callout.php:284
1691
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168 modules/heading/heading.php:117
1692
+ #: modules/heading/heading.php:144 modules/heading/heading.php:174 modules/menu/menu.php:156
1693
+ #: modules/post-slider/post-slider.php:602
1694
+ msgid "Default"
1695
+ msgstr "پیش فرض"
1696
+
1697
+ #: includes/column-settings.php:451 includes/column-settings.php:479 modules/button/button.php:202
1698
+ #: modules/callout/callout.php:285 modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1699
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145 modules/heading/heading.php:175
1700
+ #: modules/post-slider/post-slider.php:603 modules/social-buttons/social-buttons.php:74
1701
+ msgid "Custom"
1702
+ msgstr "سفارشی"
1703
+
1704
+ #: includes/column-settings.php:464
1705
+ msgid "Custom Medium Device Width"
1706
+ msgstr "دستگاه با عرض متوسط سفارشی"
1707
+
1708
+ #: includes/column-settings.php:475
1709
+ msgid "Small Device Width"
1710
+ msgstr "دستگاه با عرض کوچک"
1711
+
1712
+ #: includes/column-settings.php:476
1713
+ msgid "The width of this column on small devices such as phones."
1714
+ msgstr "عرض این ستون در دستگاه های کوچک ​​مانند موبایل‌ها."
1715
+
1716
+ #: includes/column-settings.php:492
1717
+ msgid "Custom Small Device Width"
1718
+ msgstr "عرض سفارشی در دستگاه های کوچک"
1719
+
1720
+ #: includes/column-settings.php:504 includes/module-settings.php:115 includes/row-settings.php:627
1721
+ msgid "CSS Selectors"
1722
+ msgstr "انتخاب کننده CSS"
1723
+
1724
+ #: includes/column-settings.php:508 includes/loop-settings.php:28 includes/module-settings.php:119
1725
+ #: includes/row-settings.php:631
1726
+ msgid "ID"
1727
+ msgstr "شناسه"
1728
+
1729
+ #: includes/column-settings.php:509
1730
+ msgid ""
1731
+ "A unique ID that will be applied to this column's HTML. Must start with a letter and only contain dashes, "
1732
+ "underscores, letters or numbers. No spaces."
1733
+ msgstr ""
1734
+ "یک ID یکتا که بر HTML این ستون اعمال خواهد شد. باید با یک حرف شروع شود و میتواند شامل خط‌تیره، خط‌تیره‌ی "
1735
+ "بلند، حرف و یا عدد باشد. بدون فاصله."
1736
+
1737
+ #: includes/column-settings.php:516
1738
+ msgid "CSS Class"
1739
+ msgstr "کد CSS"
1740
+
1741
+ #: includes/column-settings.php:517
1742
+ msgid ""
1743
+ "A class that will be applied to this column's HTML. Must start with a letter and only contain dashes, "
1744
+ "underscores, letters or numbers. Separate multiple classes with spaces."
1745
+ msgstr ""
1746
+ "یک Class یکتا که بر HTML این ستون اعمال خواهد شد. باید با یک حرف شروع شود و میتواند شامل خط‌تیره، خط‌تیره‌ی "
1747
+ "بلند، حرف و یا عدد باشد. بدون فاصله."
1748
+
1749
+ #: includes/field-form.php:28
1750
+ #, php-format
1751
+ msgctxt "%s stands for form field label."
1752
+ msgid "Edit %s"
1753
+ msgstr "ویرایش %s"
1754
+
1755
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
1756
+ msgid "Select Icon"
1757
+ msgstr "انتخاب آیکون"
1758
+
1759
+ #: includes/field-icon.php:5 includes/field-photo.php:13
1760
+ msgid "Replace"
1761
+ msgstr "جایگزینی"
1762
+
1763
+ #: includes/field-icon.php:7 includes/ui-js-config.php:65 includes/ui-js-templates.php:15
1764
+ #: includes/ui-js-templates.php:32 includes/ui-js-templates.php:56
1765
+ msgid "Remove"
1766
+ msgstr "حذف"
1767
+
1768
+ #: includes/field-link.php:3
1769
+ msgid "Select"
1770
+ msgstr "انتخاب"
1771
+
1772
+ #: includes/field-link.php:5
1773
+ msgid "Enter a post title to search."
1774
+ msgstr "عنوان پست را برای جستجو وارد کنید."
1775
+
1776
+ #: includes/field-link.php:6 includes/field-suggest.php:7
1777
+ msgid "Start typing..."
1778
+ msgstr "متن و عبارت مورد جستجو …"
1779
+
1780
+ #: includes/field-link.php:7 includes/icon-selector.php:28 includes/settings.php:71
1781
+ #: includes/template-selector.php:92 includes/ui-js-config.php:22 includes/ui-js-templates.php:72
1782
+ msgid "Cancel"
1783
+ msgstr "انصراف"
1784
+
1785
+ #: includes/field-multiple-photos.php:20
1786
+ #, php-format
1787
+ msgid "1 Photo Selected"
1788
+ msgid_plural "%d Photos Selected"
1789
+ msgstr[0] "عکس انتخاب شد"
1790
+
1791
+ #: includes/field-multiple-photos.php:22
1792
+ msgid "Create Gallery"
1793
+ msgstr "ساخت گالری"
1794
+
1795
+ #: includes/field-multiple-photos.php:23
1796
+ msgid "Edit Gallery"
1797
+ msgstr "ویرایش گالری"
1798
+
1799
+ #: includes/field-multiple-photos.php:24
1800
+ msgid "Add Photos"
1801
+ msgstr "افزودن تصاویر"
1802
+
1803
+ #: includes/field-photo.php:3 includes/ui-js-config.php:71
1804
+ msgid "Select Photo"
1805
+ msgstr "عکس انتخاب کنید"
1806
+
1807
+ #: includes/field-video.php:3 includes/ui-js-config.php:73
1808
+ msgid "Select Video"
1809
+ msgstr "ویدئو انتخاب کنید"
1810
+
1811
+ #: includes/field-video.php:17
1812
+ msgid "Replace Video"
1813
+ msgstr "جایگزینی ویدئو"
1814
+
1815
+ #: includes/global-settings.php:7 includes/node-template-settings.php:7 includes/template-settings.php:7
1816
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110 modules/button/button.php:59
1817
+ #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
1818
+ #: modules/content-slider/content-slider.php:191 modules/content-slider/content-slider.php:315
1819
+ #: modules/cta/cta.php:68 modules/gallery/gallery.php:220 modules/heading/heading.php:26
1820
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128 modules/icon/icon.php:27
1821
+ #: modules/map/map.php:26 modules/menu/menu.php:82 modules/photo/photo.php:384
1822
+ #: modules/pricing-table/pricing-table.php:87 modules/rich-text/rich-text.php:26
1823
+ #: modules/separator/separator.php:27 modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
1824
+ #: modules/social-buttons/social-buttons.php:64 modules/subscribe-form/subscribe-form.php:87
1825
+ #: modules/tabs/tabs.php:77 modules/testimonials/testimonials.php:30
1826
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76 modules/widget/widget.php:64
1827
+ #: modules/woocommerce/woocommerce.php:50
1828
+ msgid "General"
1829
+ msgstr "عمومی"
1830
+
1831
+ #: includes/global-settings.php:8
1832
+ msgid "Note: These settings apply to all posts and pages."
1833
+ msgstr "نکته: این تنظیمات به همه پست ها و صفحات اعمال می شود."
1834
+
1835
+ #: includes/global-settings.php:11
1836
+ msgid "Default Page Heading"
1837
+ msgstr "به طور پیش فرض نمایش عنوان صفحه"
1838
+
1839
+ #: includes/global-settings.php:15
1840
+ msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
1841
+ msgid "Show"
1842
+ msgstr "نمایش"
1843
+
1844
+ #: includes/global-settings.php:26
1845
+ msgid ""
1846
+ "Choosing no will hide the default theme heading for the \"Page\" post type. You will also be required to "
1847
+ "enter some basic CSS for this to work if you choose no."
1848
+ msgstr ""
1849
+ "اگر انتخاب کنید که نمایش داده نشود، عنوان پیش‌فرض صفحه مخفی خواهد شد. همچنین می‌بایست مقداری کد CSS نیز برای "
1850
+ "انجام کار وارد کنید."
1851
+
1852
+ #: includes/global-settings.php:30
1853
+ msgid "CSS Selector"
1854
+ msgstr "انتخاب کننده CSS"
1855
+
1856
+ #: includes/global-settings.php:32
1857
+ msgid "Enter a CSS selector for the default page heading to hide it."
1858
+ msgstr "یک CSS Selector برای مخفی کردن عنوان پیش‌فرض صفحه انتخاب کنید."
1859
+
1860
+ #: includes/global-settings.php:37
1861
+ msgid "Rows"
1862
+ msgstr "ردیف ها"
1863
+
1864
+ #: includes/global-settings.php:57
1865
+ msgid "Max Width"
1866
+ msgstr "حداکثر عرض"
1867
+
1868
+ #: includes/global-settings.php:62
1869
+ msgid ""
1870
+ "All rows will default to this width. You can override this and make a row full width in the settings for "
1871
+ "each row."
1872
+ msgstr ""
1873
+ "همه‌ی ردیف‌ها این عرض را خواهند داشت. شما می‌توانید این تنظیم را بطور انحصاری برای هر ردیف در بخش تنظیماتش "
1874
+ "سفارشی کنید."
1875
+
1876
+ #: includes/global-settings.php:66
1877
+ msgid "Default Row Width"
1878
+ msgstr "عرض پیشفرض ردیف"
1879
+
1880
+ #: includes/global-settings.php:70 includes/global-settings.php:84 includes/row-settings.php:20
1881
+ #: includes/row-settings.php:38 modules/button/button.php:201 modules/callout/callout.php:596
1882
+ msgid "Full Width"
1883
+ msgstr "تمام عرض"
1884
+
1885
+ #: includes/global-settings.php:80
1886
+ msgid "Default Row Content Width"
1887
+ msgstr "عرض پیشفرض ردیف محتوا"
1888
+
1889
+ #: includes/global-settings.php:107
1890
+ msgctxt "General settings form field label. Intended meaning: \"Responsive layout enabled?\""
1891
+ msgid "Enabled"
1892
+ msgstr "فعال شده"
1893
+
1894
+ #: includes/global-settings.php:121
1895
+ msgctxt ""
1896
+ "General settings form field label. Intended meaning: \"Enable auto spacing for responsive layouts?\""
1897
+ msgid "Enable Auto Spacing"
1898
+ msgstr "فاصله خودکار را فعال کنید"
1899
+
1900
+ #: includes/global-settings.php:127
1901
+ msgid ""
1902
+ "When auto spacing is enabled, the builder will automatically adjust the margins and padding in your layout "
1903
+ "once the small device breakpoint is reached. Most users will want to leave this enabled."
1904
+ msgstr ""
1905
+ "در صورت فعال بودن فاصله خودکار، صفحه ساز به طور خودکار فاصله های داخلی و خارجی را در اندازه های نمایشگرهای "
1906
+ "مختلف تنظیم خواهد کرد. اغلب کاربران این گزینه را فعال می گذارند."
1907
+
1908
+ #: includes/global-settings.php:131
1909
+ msgid "Medium Device Breakpoint"
1910
+ msgstr "نقطه تغییر شکل به نمایش در دستگاه‌های متوسط"
1911
+
1912
+ #: includes/global-settings.php:136
1913
+ msgid "The browser width at which the layout will adjust for medium devices such as tablets."
1914
+ msgstr "عرض مرورگر که در آن طرح‌بندی برای دستگاه های متوسط مانند تبلت‌ها تنظیم خواهد شد."
1915
+
1916
+ #: includes/global-settings.php:140
1917
+ msgid "Small Device Breakpoint"
1918
+ msgstr "نقطه تغییر شکل به نمایش در دستگاه‌های کوچک"
1919
+
1920
+ #: includes/global-settings.php:145
1921
+ msgid "The browser width at which the layout will adjust for small devices such as phones."
1922
+ msgstr "عرض مرورگر که در آن طرح‌بندی برای دستگاه های کوچک مانند تلفن‌ها تنظیم خواهد شد."
1923
+
1924
+ #: includes/icon-selector.php:5
1925
+ msgctxt "Select option for showing all icon libraries."
1926
+ msgid "All Libraries"
1927
+ msgstr "همه کتابخانه ها"
1928
+
1929
+ #: includes/loop-settings.php:20
1930
+ msgid "Post Type"
1931
+ msgstr "نوع پست"
1932
+
1933
+ #: includes/loop-settings.php:26
1934
+ msgid "Order By"
1935
+ msgstr "چیده شود براساس"
1936
+
1937
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
1938
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508
1939
+ #: modules/woocommerce/woocommerce.php:189
1940
+ msgid "Date"
1941
+ msgstr "تاریخ"
1942
+
1943
+ #: includes/loop-settings.php:30
1944
+ msgid "Date Last Modified"
1945
+ msgstr "تاریخ آخرین تغییرات"
1946
+
1947
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
1948
+ #: modules/pricing-table/pricing-table.php:94
1949
+ msgid "Title"
1950
+ msgstr "عنوان"
1951
+
1952
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
1953
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
1954
+ msgid "Author"
1955
+ msgstr "نویسنده"
1956
+
1957
+ #: includes/loop-settings.php:33
1958
+ msgid "Comment Count"
1959
+ msgstr "تعداد دیدگاه"
1960
+
1961
+ #: includes/loop-settings.php:34
1962
+ msgid "Menu Order"
1963
+ msgstr "ترتیب منو"
1964
+
1965
+ #: includes/loop-settings.php:35
1966
+ msgid "Random"
1967
+ msgstr "تصادفی"
1968
+
1969
+ #: includes/loop-settings.php:42
1970
+ msgid "Order"
1971
+ msgstr "ترتیب"
1972
+
1973
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
1974
+ msgid "Descending"
1975
+ msgstr "نزولی"
1976
+
1977
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
1978
+ msgid "Ascending"
1979
+ msgstr "صعودی"
1980
+
1981
+ #: includes/loop-settings.php:52
1982
+ msgctxt "How many posts to skip."
1983
+ msgid "Offset"
1984
+ msgstr "افست"
1985
+
1986
+ #: includes/loop-settings.php:55
1987
+ msgid "Skip this many posts that match the specified criteria."
1988
+ msgstr "این گزینه از پست هایی که منطبق با معیارهای مشخص شده است صرف نظر می کند."
1989
+
1990
+ #: includes/loop-settings.php:62
1991
+ msgid "Filter"
1992
+ msgstr "فیلتر"
1993
+
1994
+ #: includes/loop-settings.php:73
1995
+ #, php-format
1996
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
1997
+ msgstr "لیست ‪%‬s را با کاما از هم جدا کنید. فقط این ‪%‬s نمایش داده خواهند شد."
1998
+
1999
+ #: includes/loop-settings.php:86
2000
+ #, php-format
2001
+ msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
2002
+ msgstr "لیست ‪%‬s را با کاما از هم جدا کنید. فقط نوشته هایی با این ‪%‬s نمایش داده خواهند شد."
2003
+
2004
+ #: includes/loop-settings.php:100
2005
+ msgid "Authors"
2006
+ msgstr "نویسنده‌ها"
2007
+
2008
+ #: includes/loop-settings.php:101
2009
+ msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
2010
+ msgstr "لیست اسامی نویسنده ها را با کاما از هم جدا کنید. فقط نوشته های این نویسنده ها نمایش داده خواهند شد."
2011
+
2012
+ #: includes/module-settings.php:75
2013
+ msgid "Choose whether to show or hide this module at different device sizes."
2014
+ msgstr "انتخاب کنید آیا این ماژول در دستگاه‌هایی با اندازه‌های متفاوت مخفی شود و یا نمایش داده شود."
2015
+
2016
+ #: includes/module-settings.php:83
2017
+ msgid "Animation"
2018
+ msgstr "انیمیشن"
2019
+
2020
+ #: includes/module-settings.php:89
2021
+ msgctxt "Animation style."
2022
+ msgid "None"
2023
+ msgstr "هیچ کدام"
2024
+
2025
+ #: includes/module-settings.php:90
2026
+ msgctxt "Animation style."
2027
+ msgid "Fade In"
2028
+ msgstr "محو شدن"
2029
+
2030
+ #: includes/module-settings.php:91
2031
+ msgctxt "Animation style."
2032
+ msgid "Slide Left"
2033
+ msgstr "اسلاید از راست"
2034
+
2035
+ #: includes/module-settings.php:92
2036
+ msgctxt "Animation style."
2037
+ msgid "Slide Right"
2038
+ msgstr "اسلاید از چپ"
2039
+
2040
+ #: includes/module-settings.php:93
2041
+ msgctxt "Animation style."
2042
+ msgid "Slide Up"
2043
+ msgstr "اسلاید از پايين"
2044
+
2045
+ #: includes/module-settings.php:94
2046
+ msgctxt "Animation style."
2047
+ msgid "Slide Down"
2048
+ msgstr "اسلاید از بالا"
2049
+
2050
+ #: includes/module-settings.php:102 modules/content-slider/content-slider.php:230
2051
+ #: modules/post-carousel/post-carousel.php:145 modules/post-slider/post-slider.php:363
2052
+ #: modules/testimonials/testimonials.php:91
2053
+ msgid "Delay"
2054
+ msgstr "تاخیر"
2055
+
2056
+ #: includes/module-settings.php:106 includes/row-settings.php:290 includes/row-settings.php:321
2057
+ #: modules/content-slider/content-slider.php:234 modules/content-slider/content-slider.php:251
2058
+ #: modules/post-carousel/post-carousel.php:148 modules/post-carousel/post-carousel.php:164
2059
+ #: modules/post-slider/post-slider.php:366 modules/post-slider/post-slider.php:391
2060
+ #: modules/slideshow/slideshow.php:393 modules/slideshow/slideshow.php:418
2061
+ #: modules/slideshow/slideshow.php:589 modules/testimonials/testimonials.php:95
2062
+ #: modules/testimonials/testimonials.php:112
2063
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2064
+ msgid "seconds"
2065
+ msgstr "ثانیه‌"
2066
+
2067
+ #: includes/module-settings.php:107
2068
+ msgid "The amount of time in seconds before this animation starts."
2069
+ msgstr "مقدار زمان به ثانیه تا اینکه این انیمیشن شروع شود."
2070
+
2071
+ #: includes/module-settings.php:120
2072
+ msgid ""
2073
+ "A unique ID that will be applied to this module's HTML. Must start with a letter and only contain dashes, "
2074
+ "underscores, letters or numbers. No spaces."
2075
+ msgstr ""
2076
+ "یک ID یکتا که بر HTML این ماژول اعمال خواهد شد. باید با یک حرف شروع شود و میتواند شامل خط‌تیره، خط‌تیره‌ی "
2077
+ "بلند، حرف و یا عدد باشد. بدون فاصله."
2078
+
2079
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2080
+ msgid "Class"
2081
+ msgstr "کلاس"
2082
+
2083
+ #: includes/module-settings.php:128
2084
+ msgid ""
2085
+ "A class that will be applied to this module's HTML. Must start with a letter and only contain dashes, "
2086
+ "underscores, letters or numbers. Separate multiple classes with spaces."
2087
+ msgstr ""
2088
+ "یک Class یکتا که بر HTML این ستون اعمال خواهد شد. باید با یک حرف شروع شود و میتواند شامل خط‌تیره، خط‌تیره‌ی "
2089
+ "بلند، حرف و یا عدد باشد. بدون فاصله."
2090
+
2091
+ #: includes/node-template-settings.php:4
2092
+ #, php-format
2093
+ msgctxt "%s stands for the type of node template being saved."
2094
+ msgid "Save %s Template"
2095
+ msgstr "ذخیره %s قالب"
2096
+
2097
+ #: includes/node-template-settings.php:14 includes/template-settings.php:14
2098
+ #: includes/user-template-settings.php:15
2099
+ msgctxt "Template name."
2100
+ msgid "Name"
2101
+ msgstr "نام"
2102
+
2103
+ #: includes/node-template-settings.php:18
2104
+ msgctxt "Whether this is a global template or not."
2105
+ msgid "Global"
2106
+ msgstr "کلی"
2107
+
2108
+ #: includes/node-template-settings.php:19
2109
+ msgid "Global templates can be added to multiple pages and edited in one place."
2110
+ msgstr "پوسته های کلی می توانند به چند صفحه اضافه شده و یکجا تنظیم شوند."
2111
+
2112
+ #: includes/row-settings.php:6 includes/ui-js-config.php:67 includes/ui-js-templates.php:12
2113
+ msgid "Row Settings"
2114
+ msgstr "تنظیمات ردیف"
2115
+
2116
+ #: includes/row-settings.php:16 modules/button/button.php:197 modules/content-slider/content-slider.php:484
2117
+ msgid "Width"
2118
+ msgstr "عرض"
2119
+
2120
+ #: includes/row-settings.php:27
2121
+ msgid ""
2122
+ "Full width rows span the width of the page from edge to edge. Fixed rows are no wider than the Row Max "
2123
+ "Width set in the Global Settings."
2124
+ msgstr ""
2125
+ "ردیف های تمام عرض، به اندازه عرض کل صفحه عریض می شوند. ردیف ها ثابت از حداکثر عرض ردیف که در تنظیمات کلی "
2126
+ "تنظیم شده است فراتر نمی روند."
2127
+
2128
+ #: includes/row-settings.php:34
2129
+ msgid "Content Width"
2130
+ msgstr "عرض محتوا"
2131
+
2132
+ #: includes/row-settings.php:40
2133
+ msgid ""
2134
+ "Full width content spans the width of the page from edge to edge. Fixed content is no wider than the Row "
2135
+ "Max Width set in the Global Settings."
2136
+ msgstr ""
2137
+ "محتوای تمام عرض، به اندازه عرض کل صفحه عریض می شوند. محتوای ثابت از حداکثر عرض ردیف که در تنظیمات کلی "
2138
+ "تنظیم شده است فراتر نمی روند."
2139
+
2140
+ #: includes/row-settings.php:48 modules/button/button.php:120 modules/cta/cta.php:188
2141
+ #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2142
+ #: modules/post-carousel/post-carousel.php:392 modules/post-grid/post-grid.php:297
2143
+ #: modules/post-slider/post-slider.php:680
2144
+ msgid "Colors"
2145
+ msgstr "رنگ ها"
2146
+
2147
+ #: includes/row-settings.php:52 modules/button/button.php:139 modules/callout/callout.php:534
2148
+ #: modules/content-slider/content-slider.php:529 modules/content-slider/content-slider.php:651
2149
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192 modules/cta/cta.php:289
2150
+ #: modules/heading/heading.php:77 modules/post-carousel/post-carousel.php:396
2151
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684
2152
+ #: modules/subscribe-form/subscribe-form.php:207
2153
+ msgid "Text Color"
2154
+ msgstr "رنگ متن"
2155
+
2156
+ #: includes/row-settings.php:95
2157
+ msgctxt "Background type."
2158
+ msgid "Video"
2159
+ msgstr "ویدئو"
2160
+
2161
+ #: includes/row-settings.php:97
2162
+ msgctxt "Background type."
2163
+ msgid "Slideshow"
2164
+ msgstr "اسلایدشو"
2165
+
2166
+ #: includes/row-settings.php:101
2167
+ msgctxt "Background type."
2168
+ msgid "Parallax"
2169
+ msgstr "پارالاکس"
2170
+
2171
+ #: includes/row-settings.php:227
2172
+ msgid "Background Video"
2173
+ msgstr "ویدئو پس زمینه"
2174
+
2175
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337 modules/video/video.php:19
2176
+ #: modules/video/video.php:100
2177
+ msgid "Video"
2178
+ msgstr "ویدئو"
2179
+
2180
+ #: includes/row-settings.php:232
2181
+ msgid "An HTML5 video to use as the background of this row. Supported types are MP4, WebM and Ogg."
2182
+ msgstr "یک ویدئوی HTML5 برای استفاده به عنوان پس زمینه‌ی این ردیف. پسوند‌های MP4، WebM و Ogg پشتیبانی می‌شوند."
2183
+
2184
+ #: includes/row-settings.php:239
2185
+ msgid "Fallback Photo"
2186
+ msgstr "عکس جایگزین"
2187
+
2188
+ #: includes/row-settings.php:240
2189
+ msgid "A photo that will be displayed if the video fails to load."
2190
+ msgstr "تصویری که که در صورت نمایش داده نشدن ویدئو نمابش داده می شود."
2191
+
2192
+ #: includes/row-settings.php:248
2193
+ msgid "Background Slideshow"
2194
+ msgstr "پس زمینه اسلایدشو"
2195
+
2196
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241 modules/slideshow/slideshow.php:271
2197
+ msgid "Source"
2198
+ msgstr "منبع"
2199
+
2200
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244 modules/photo/photo.php:394
2201
+ #: modules/slideshow/slideshow.php:274 modules/video/video.php:86
2202
+ msgid "Media Library"
2203
+ msgstr "کتابخانه‌ رسانه"
2204
+
2205
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247 modules/slideshow/slideshow.php:277
2206
+ msgid ""
2207
+ "Pull images from the WordPress media library or a gallery on your SmugMug site by inserting the RSS feed "
2208
+ "URL from SmugMug. The RSS feed URL can be accessed by using the get a link function in your SmugMug "
2209
+ "gallery."
2210
+ msgstr ""
2211
+ "عکس ها را از بخش رسانه سایت یا از گالری SmugMug (با کپی کردن لینک فید) خود وارد کنید. لینک SmugMug را از "
2212
+ "بخش function می توانید بدست آورید."
2213
+
2214
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259 modules/slideshow/slideshow.php:289
2215
+ msgid "Photos"
2216
+ msgstr "تصاویر"
2217
+
2218
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263 modules/slideshow/slideshow.php:293
2219
+ msgid "Feed URL"
2220
+ msgstr "لینک فید"
2221
+
2222
+ #: includes/row-settings.php:287 includes/row-settings.php:352 modules/slideshow/slideshow.php:390
2223
+ msgid "Speed"
2224
+ msgstr "سرعت"
2225
+
2226
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2227
+ #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397
2228
+ #: modules/testimonials/testimonials.php:99
2229
+ msgid "Transition"
2230
+ msgstr "انتقال"
2231
+
2232
+ #: includes/row-settings.php:300
2233
+ msgctxt "Slideshow transition type."
2234
+ msgid "None"
2235
+ msgstr "هیچ کدام"
2236
+
2237
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2238
+ #: modules/post-carousel/post-carousel.php:241 modules/post-grid/post-grid.php:247
2239
+ #: modules/post-slider/post-slider.php:373 modules/slideshow/slideshow.php:401
2240
+ #: modules/testimonials/testimonials.php:103
2241
+ msgid "Fade"
2242
+ msgstr "محو شدن"
2243
+
2244
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2245
+ msgid "Ken Burns"
2246
+ msgstr "کن برنز"
2247
+
2248
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2249
+ msgid "Slide Horizontal"
2250
+ msgstr "اسلاید افقی"
2251
+
2252
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2253
+ msgid "Slide Vertical"
2254
+ msgstr "اسلاید عمودی"
2255
+
2256
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2257
+ msgid "Blinds"
2258
+ msgstr "پرده ای"
2259
+
2260
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2261
+ msgid "Bars"
2262
+ msgstr "میله ای"
2263
+
2264
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2265
+ msgid "Random Bars"
2266
+ msgstr "میله های تصادفی"
2267
+
2268
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2269
+ msgid "Boxes"
2270
+ msgstr "جعبه ها"
2271
+
2272
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2273
+ msgid "Random Boxes"
2274
+ msgstr "جعبه های تصادفی"
2275
+
2276
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2277
+ msgid "Boxes Grow"
2278
+ msgstr "جعبه های بزرگ‌شونده"
2279
+
2280
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2281
+ #: modules/post-carousel/post-carousel.php:161 modules/post-slider/post-slider.php:388
2282
+ #: modules/slideshow/slideshow.php:415 modules/testimonials/testimonials.php:108
2283
+ msgid "Transition Speed"
2284
+ msgstr "سرعت انتقال"
2285
+
2286
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2287
+ msgid "Randomize Photos"
2288
+ msgstr "عکس های تصادفی"
2289
+
2290
+ #: includes/row-settings.php:341
2291
+ msgid "Background Parallax"
2292
+ msgstr "پس زمینه پارالاکس"
2293
+
2294
+ #: includes/row-settings.php:355
2295
+ msgid "Fast"
2296
+ msgstr "سریع"
2297
+
2298
+ #: includes/row-settings.php:356
2299
+ msgctxt "Speed."
2300
+ msgid "Medium"
2301
+ msgstr "متوسط"
2302
+
2303
+ #: includes/row-settings.php:357
2304
+ msgid "Slow"
2305
+ msgstr "کند"
2306
+
2307
+ #: includes/row-settings.php:619
2308
+ msgid "Choose whether to show or hide this row at different device sizes."
2309
+ msgstr "انتخاب کنید آیا این ستون در دستگاه‌هایی با اندازه‌های متفاوت مخفی شود و یا نمایش داده شود."
2310
+
2311
+ #: includes/row-settings.php:632
2312
+ msgid ""
2313
+ "A unique ID that will be applied to this row's HTML. Must start with a letter and only contain dashes, "
2314
+ "underscores, letters or numbers. No spaces."
2315
+ msgstr ""
2316
+ "یک ID یکتا که بر HTML این ردیف اعمال خواهد شد. باید با یک حرف شروع شود و میتواند شامل خط‌تیره، خط‌تیره‌ی "
2317
+ "بلند، حرف و یا عدد باشد. بدون فاصله."
2318
+
2319
+ #: includes/row-settings.php:640
2320
+ msgid ""
2321
+ "A class that will be applied to this row's HTML. Must start with a letter and only contain dashes, "
2322
+ "underscores, letters or numbers. Separate multiple classes with spaces."
2323
+ msgstr ""
2324
+ "یک Class یکتا که بر HTML این ردیف اعمال خواهد شد. باید با یک حرف شروع شود و میتواند شامل خط‌تیره، خط‌تیره‌ی "
2325
+ "بلند، حرف و یا عدد باشد. می توانید چند Class را با فاصله از هم جدا کرده و وارد کنید."
2326
+
2327
+ #: includes/service-settings.php:32
2328
+ msgid "Service"
2329
+ msgstr "خدمات"
2330
+
2331
+ #: includes/settings.php:67
2332
+ msgid "Save"
2333
+ msgstr "ذخیره"
2334
+
2335
+ #: includes/settings.php:69
2336
+ msgid "Save As..."
2337
+ msgstr "ذخیره کردن به عنوان"
2338
+
2339
+ #: includes/template-selector.php:4
2340
+ msgid "Layout Templates"
2341
+ msgstr "طراحی‌ قالب‌ها"
2342
+
2343
+ #: includes/template-selector.php:17
2344
+ msgid "Your Templates"
2345
+ msgstr "قالب های شما"
2346
+
2347
+ #: includes/template-selector.php:53
2348
+ msgid ""
2349
+ "You haven't saved any templates yet! To do so, create a layout and save it as a template under "
2350
+ "<strong>Tools &rarr; Save Template</strong>."
2351
+ msgstr ""
2352
+ "شما هنوز قالبی را ذخیره نکرده اید! برای این کار بایستی طرحی را انتخاب کرده و به عنوان قالب در بخش <strong> "
2353
+ "ابزارها - ذخیره قالب </strong> ذخیره کنید."
2354
+
2355
+ #: includes/template-selector.php:58
2356
+ msgctxt "Template name."
2357
+ msgid "Blank"
2358
+ msgstr "خالی"
2359
+
2360
+ #: includes/template-settings.php:18
2361
+ msgid "Image Filename"
2362
+ msgstr "نام فایل تصویر"
2363
+
2364
+ #: includes/template-settings.php:19
2365
+ msgid "The filename of the image such as \"thumb.jpg\" that resides in the \"img/templates/\" directory."
2366
+ msgstr "نام فایل عکس مانند “thumb.jpg” که در پوشه‌ی “img/templates/“ وجود دارد."
2367
+
2368
+ #: includes/ui-js-config.php:21
2369
+ msgid "What would you like to do?"
2370
+ msgstr "تمایل دارید چه ‌کاری انجام دهید؟"
2371
+
2372
+ #: includes/ui-js-config.php:23
2373
+ msgid "Change Template"
2374
+ msgstr "تغییر قالب"
2375
+
2376
+ #: includes/ui-js-config.php:24
2377
+ msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
2378
+ msgstr ""
2379
+ "هشدار! تغییر دادن قالب، باعث جایگزین شدن طرح جدید با طرح‌بندی موجود شما خواهد شد. آیا واقعا می خواهید این "
2380
+ "کار را انجام دهید؟"
2381
+
2382
+ #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
2383
+ msgid "Column"
2384
+ msgstr "ستون"
2385
+
2386
+ #: includes/ui-js-config.php:26
2387
+ msgid "Please select either a background layout or content layout before submitting."
2388
+ msgstr "لطفاً قبل از دخیره سازی یک طرح برای پس‌زمینه یا یک طرح برای محتوا انتخاب کنید."
2389
+
2390
+ #: includes/ui-js-config.php:27
2391
+ msgid "Remove Account"
2392
+ msgstr "حذف اکانت"
2393
+
2394
+ #: includes/ui-js-config.php:28
2395
+ msgid ""
2396
+ "Are you sure you want to remove this account? Other modules that are connected to it will be affected."
2397
+ msgstr ""
2398
+ "آیا مطمئن هستید که می خواهید این اکانت را حذف کنید؟ ماژول های دیگری که به آن متصل هستند دچار تغییر خواهند "
2399
+ "شد."
2400
+
2401
+ #: includes/ui-js-config.php:29
2402
+ msgid "Do you really want to delete this item?"
2403
+ msgstr "واقعا می‌خواهید این آیتم را حذف کنید؟"
2404
+
2405
+ #: includes/ui-js-config.php:30
2406
+ msgid "Do you really want to delete this module? All content data will be permanently deleted."
2407
+ msgstr "واقعا می‌خواهید این ماژول را حذف کنید؟ همه داده های محتوا برای همیشه حذف خواهد شد."
2408
+
2409
+ #: includes/ui-js-config.php:31
2410
+ msgid "Do you really want to delete this row? All content data will be permanently deleted."
2411
+ msgstr "واقعا می‌خواهید این ردیف را حذف کنید؟ همه داده های محتوا برای همیشه حذف خواهد شد."
2412
+
2413
+ #: includes/ui-js-config.php:33
2414
+ msgid ""
2415
+ "WARNING! You are about to delete a global template that may be linked to other pages. Do you really want "
2416
+ "to delete this template and unlink it?"
2417
+ msgstr ""
2418
+ "هشدار! شما در حال پاک کردن یک قالب کلی هستید و این می تواند تمامی صفحات دیگر متصل را دچار مشکل کند. آیا از "
2419
+ "پاک کردن این قالب اطمینان دارید؟"
2420
+
2421
+ #: includes/ui-js-config.php:34
2422
+ msgid "Discard Changes"
2423
+ msgstr "انصراف از تغییرات"
2424
+
2425
+ #: includes/ui-js-config.php:35
2426
+ msgid "Do you really want to discard these changes? All of your changes that are not published will be lost."
2427
+ msgstr "شما واقعا می خواهید این تغییرات را دور بیندازید؟ همه تغییرات شما که منتشر نشده از دست خواهد رفت."
2428
+
2429
+ #: includes/ui-js-config.php:37
2430
+ msgid "Save Draft"
2431
+ msgstr "ذخیره پیش نویس"
2432
+
2433
+ #: includes/ui-js-config.php:38 includes/ui-js-templates.php:14 includes/ui-js-templates.php:54
2434
+ msgid "Duplicate"
2435
+ msgstr "کپی کردن"
2436
+
2437
+ #: includes/ui-js-config.php:39
2438
+ msgid "Duplicate This Page"
2439
+ msgstr "کپی گرفتن از این برگه"
2440
+
2441
+ #: includes/ui-js-config.php:40
2442
+ msgid "Duplicate This Template"
2443
+ msgstr "کپی گرفتن از این قالب"
2444
+
2445
+ #: includes/ui-js-config.php:41
2446
+ msgid "Edit Global Settings"
2447
+ msgstr "ویرایش تنظیمات کلی"
2448
+
2449
+ #: includes/ui-js-config.php:42
2450
+ msgid "Drop a row layout or module to get started!"
2451
+ msgstr "برای شروع یک ردیف و یا یک ماژول را در اینجا رها کنید!"
2452
+
2453
+ #: includes/ui-js-config.php:43
2454
+ msgid ""
2455
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is not functioning as expected the "
2456
+ "cause is most likely this error. Please help us by disabling all plugins and testing Beaver Builder while "
2457
+ "reactivating each to determine if the issue is related to a third party plugin."
2458
+ msgstr ""
2459
+ "صفحه‌ساز دچار خطای جاوا اسکریچت زیر شده است. اگر صفحه‌ساز کار نمی‌کند به احتمال زیاد به‌خاطر این خطا است. همه‌ی "
2460
+ "افزونه‌های موجود را غیر فعال کنید و دوباره تلاش کنید. شاید این خطا به‌خاطر تداخل افزونه‌ها باشد."
2461
+
2462
+ #: includes/ui-js-config.php:44
2463
+ msgid "Full Size"
2464
+ msgstr "سایز کامل"
2465
+
2466
+ #: includes/ui-js-config.php:45
2467
+ msgid "Get Help"
2468
+ msgstr "راهنمایی"
2469
+
2470
+ #: includes/ui-js-config.php:46
2471
+ msgid "\"{message}\" on line {line} of {file}."
2472
+ msgstr "‏“{message}” در خط {line} از {file}."
2473
+
2474
+ #: includes/ui-js-config.php:47
2475
+ msgid "Insert"
2476
+ msgstr "وارد کردن"
2477
+
2478
+ #: includes/ui-js-config.php:48
2479
+ msgid "Large"
2480
+ msgstr "بزرگ"
2481
+
2482
+ #: includes/ui-js-config.php:49
2483
+ msgid "Manage Templates"
2484
+ msgstr "مدیریت قالب‌ها"
2485
+
2486
+ #: includes/ui-js-config.php:50
2487
+ msgid "Medium"
2488
+ msgstr "متوسط"
2489
+
2490
+ #: includes/ui-js-config.php:51
2491
+ msgid "Module"
2492
+ msgstr "ماژول"
2493
+
2494
+ #: includes/ui-js-config.php:52
2495
+ msgid "Module Template Saved!"
2496
+ msgstr "قالب ذخیره شد!"
2497
+
2498
+ #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10 includes/ui-js-templates.php:50
2499
+ msgid "Move"
2500
+ msgstr "انتقال"
2501
+
2502
+ #: includes/ui-js-config.php:54
2503
+ msgid "New Column"
2504
+ msgstr "ستون جدید"
2505
+
2506
+ #: includes/ui-js-config.php:55
2507
+ msgid "New Row"
2508
+ msgstr "ردیف جدید"
2509
+
2510
+ #: includes/ui-js-config.php:56
2511
+ msgid "No results found."
2512
+ msgstr "نتیجه ای یافت نشد."
2513
+
2514
+ #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
2515
+ msgid "No saved rows found."
2516
+ msgstr "هیچ ردیف ذخیره شده ای یافت نشد."
2517
+
2518
+ #: includes/ui-js-config.php:58 includes/ui-panel-node-templates.php:42
2519
+ msgid "No saved modules found."
2520
+ msgstr "هیچ ماژول ذخیره شده ای یافت نشد."
2521
+
2522
+ #: includes/ui-js-config.php:59 includes/ui-js-templates.php:80
2523
+ msgid "OK"
2524
+ msgstr "قابل قبول"
2525
+
2526
+ #: includes/ui-js-config.php:60 modules/photo/photo.php:470
2527
+ msgid "Photo Page"
2528
+ msgstr "صفحه عکس"
2529
+
2530
+ #: includes/ui-js-config.php:61
2531
+ msgid "Photo Selected"
2532
+ msgstr "عکس انتخاب شد"
2533
+
2534
+ #: includes/ui-js-config.php:62
2535
+ msgid "Photos Selected"
2536
+ msgstr "عکس‌های انتخاب شده"
2537
+
2538
+ #: includes/ui-js-config.php:63 modules/subscribe-form/includes/frontend.php:15
2539
+ msgid "Please Wait..."
2540
+ msgstr "لطفا صبر کنید…"
2541
+
2542
+ #: includes/ui-js-config.php:64
2543
+ msgid "Publish Changes"
2544
+ msgstr "اعمال تغییرات"
2545
+
2546
+ #: includes/ui-js-config.php:66 includes/ui-js-templates.php:5
2547
+ msgid "Row"
2548
+ msgstr "ردیف"
2549
+
2550
+ #: includes/ui-js-config.php:68
2551
+ msgid "Row Template Saved!"
2552
+ msgstr "قالب ردیف ذخیره شد!"
2553
+
2554
+ #: includes/ui-js-config.php:69
2555
+ msgid "Save Core Template"
2556
+ msgstr "ذخیره هسته پوسته"
2557
+
2558
+ #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
2559
+ msgid "Save Template"
2560
+ msgstr "ذخیره پوسته"
2561
+
2562
+ #: includes/ui-js-config.php:72
2563
+ msgid "Select Photos"
2564
+ msgstr "انتخاب عکس‌ها"
2565
+
2566
+ #: includes/ui-js-config.php:74
2567
+ msgid "Please select an account before saving."
2568
+ msgstr "لطفا اکانتی را قبل از ذخیره انتخاب کنید."
2569
+
2570
+ #: includes/ui-js-config.php:75
2571
+ msgid "Please connect an account before saving."
2572
+ msgstr "لطفا اکانتی را قبل از ذخیره متصل کنید."
2573
+
2574
+ #: includes/ui-js-config.php:76
2575
+ msgid "Please select a list before saving."
2576
+ msgstr "لطفا لیستی را قبل از ذخیره انتخاب کنید."
2577
+
2578
+ #: includes/ui-js-config.php:77
2579
+ msgid "Take a Tour"
2580
+ msgstr "تور آموزشی"
2581
+
2582
+ #: includes/ui-js-config.php:78
2583
+ msgid "Append New Layout"
2584
+ msgstr "افزودن طراحی جدید"
2585
+
2586
+ #: includes/ui-js-config.php:79
2587
+ msgid "Replace Existing Layout"
2588
+ msgstr "جایگزینی طرح‌بندی جدید"
2589
+
2590
+ #: includes/ui-js-config.php:80
2591
+ msgid "Template Saved!"
2592
+ msgstr "قالب ذخیره شد!"
2593
+
2594
+ #: includes/ui-js-config.php:81 modules/post-slider/post-slider.php:464
2595
+ msgid "Thumbnail"
2596
+ msgstr "بند انگشتی"
2597
+
2598
+ #: includes/ui-js-config.php:82
2599
+ msgid "Next"
2600
+ msgstr "بعدی"
2601
+
2602
+ #: includes/ui-js-config.php:83
2603
+ msgid "Get Started"
2604
+ msgstr "آغاز به کار"
2605
+
2606
+ #: includes/ui-js-config.php:84
2607
+ msgid "Choose a Template"
2608
+ msgstr "یک قالب انتخاب کنید"
2609
+
2610
+ #: includes/ui-js-config.php:85
2611
+ msgid ""
2612
+ "Get started by choosing a layout template to customize, or build a page from scratch by selecting the "
2613
+ "blank layout template."
2614
+ msgstr ""
2615
+ "با انتخاب قالبی برای تنظیم شروع کنید یا برای اینکه لایه ای را از ابتدا خودتان بسازید قالب خالی را انتخاب "
2616
+ "کنید."
2617
+
2618
+ #: includes/ui-js-config.php:86
2619
+ msgid "Add Rows"
2620
+ msgstr "اضافه کردن ردیف ها"
2621
+
2622
+ #: includes/ui-js-config.php:87
2623
+ msgid ""
2624
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging and dropping row layouts onto "
2625
+ "the page."
2626
+ msgstr ""
2627
+ "می توانید ردیف های متعدد، فاصله ها، و پس زمینه ها را اضافه کرده و قالب های مختلف را به قالب خود اضافه کنید."
2628
+
2629
+ #: includes/ui-js-config.php:89
2630
+ msgid ""
2631
+ "Add new content by dragging and dropping modules or widgets into your row layouts or to create a new row "
2632
+ "layout."
2633
+ msgstr "ماژول ها و ویجت ها را با گرفتن و رها کردن در لایه های خود اضافه کنید."
2634
+
2635
+ #: includes/ui-js-config.php:90
2636
+ msgid "Edit Content"
2637
+ msgstr "ویرایش محتوا"
2638
+
2639
+ #: includes/ui-js-config.php:91
2640
+ msgid "Move your mouse over rows, columns or modules to edit and interact with them."
2641
+ msgstr "جهت ویرایش ردیف ها یا ستون ها و ماژول ها ماوس خود را بر روی آنها ببرید."
2642
+
2643
+ #: includes/ui-js-config.php:92
2644
+ msgid ""
2645
+ "Use the action buttons to perform actions such as moving, editing, duplicating or deleting rows, columns "
2646
+ "and modules."
2647
+ msgstr "از دکمه های عملیات جهت تغییر، حرکت دادن، حذف یا کپی کردن ردیف ها، ستون ها و ماژول ها استفاده نمایید."
2648
+
2649
+ #: includes/ui-js-config.php:93
2650
+ msgid "Add More Content"
2651
+ msgstr "افزودن محتوای بیشتر"
2652
+
2653
+ #: includes/ui-js-config.php:94
2654
+ msgid "Use the Add Content button to open the content panel and add new row layouts, modules or widgets."
2655
+ msgstr "از دکمه اضافه کردن برای اضافه کردن طرح بندی، ماژول ها و کناره ها استفاده کنید."
2656
+
2657
+ #: includes/ui-js-config.php:95
2658
+ msgid "Change Templates"
2659
+ msgstr "تغییر قالب ها"
2660
+
2661
+ #: includes/ui-js-config.php:96
2662
+ msgid ""
2663
+ "Use the Templates button to pick a new template or append one to your layout. Appending will insert a new "
2664
+ "template at the end of your existing page content."
2665
+ msgstr ""
2666
+ "برای انتخاب یک قالب جدید یا افزودن قالبی به طرح خود از دکمه قالب‌ها استفاده کنید. قالب انتخاب شده جدید، زیر "
2667
+ "قالب قبلی شما اضافه خواهد شد."
2668
+
2669
+ #: includes/ui-js-config.php:97
2670
+ msgid "Helpful Tools"
2671
+ msgstr "ابزارهای مفید"
2672
+
2673
+ #: includes/ui-js-config.php:98
2674
+ msgid "The Tools button lets you duplicate a page, save a template or edit the global settings."
2675
+ msgstr "دکمه ابزارها کمکتان می کند که یک صفحه را کپی کرده، قالبی را ذخیره کنید یا تنظیمات کلی را تغییر دهید."
2676
+
2677
+ #: includes/ui-js-config.php:99
2678
+ msgid "Publish Your Changes"
2679
+ msgstr "اعمال تغییرات"
2680
+
2681
+ #: includes/ui-js-config.php:100
2682
+ msgid ""
2683
+ "Once you're finished, click the Done button to publish your changes, save a draft or revert back to the "
2684
+ "last published state."
2685
+ msgstr ""
2686
+ "زمانی که ساختن را تمام کردین روی دکمه انجام شد کلیک کنید تا تغییرات شما اعمال شود، البته می‌توانید قبل از "
2687
+ "نهایی شدن، یک نسخه پیش نویس بصورت موقت بسازید یا کلاً تغییرات داده شده خود را کنسل کنید."
2688
+
2689
+ #: includes/ui-js-config.php:101
2690
+ msgid "Let's Get Building!"
2691
+ msgstr "شروع کنیم به ساختن!"
2692
+
2693
+ #: includes/ui-js-config.php:102
2694
+ msgid ""
2695
+ "Now that you know the basics, you're ready to start building! If at any time you need help, click the help "
2696
+ "icon in the upper right corner to access the help menu. Happy building!"
2697
+ msgstr ""
2698
+ "حالا که آموزش‌های اولیه را یاد گرفتید، آماده هستید که ساختن را شروع کنید! اگر هر زمانی کمکی لازم داشتین، "
2699
+ "روی آیکون کمک در قسمت بالا سمت راست کلیک کنید. از ساختم سایتتان لذت ببرید!"
2700
+
2701
+ #: includes/ui-js-config.php:103
2702
+ msgid "The settings you are currently editing will not be saved if you navigate away from this page."
2703
+ msgstr "اگر از این صفحه به صفحه‌ی دیگری بروید، تنظیمات حال حاضر شما دخیره نخواهد شد."
2704
+
2705
+ #: includes/ui-js-config.php:104
2706
+ msgid "View the Knowledge Base"
2707
+ msgstr "مشاهده منبع آموزشی"
2708
+
2709
+ #: includes/ui-js-config.php:105
2710
+ msgid "Visit the Forums"
2711
+ msgstr "بازدید از انجمن ها"
2712
+
2713
+ #: includes/ui-js-config.php:106
2714
+ msgid "Watch the Video"
2715
+ msgstr "تماشای ویدیو"
2716
+
2717
+ #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29 includes/ui-js-templates.php:45
2718
+ msgid "Global"
2719
+ msgstr "کلی"
2720
+
2721
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:47
2722
+ msgid "Locked"
2723
+ msgstr "قفل شده"
2724
+
2725
+ #: includes/ui-js-templates.php:52
2726
+ msgid "Settings"
2727
+ msgstr "تنطیمات"
2728
+
2729
+ #: includes/ui-js-templates.php:87
2730
+ msgid ""
2731
+ "Welcome! It looks like this might be your first time using the builder. Would you like to take a tour?"
2732
+ msgstr ""
2733
+ "خوش آمدید! بنظر می رسد که با اول است که می خواهید با صفحه‌ساز کار کنید. آیا می‌خواهید کار با صفحه‌ساز را یاد "
2734
+ "بگیرید؟"
2735
+
2736
+ #: includes/ui-js-templates.php:88
2737
+ msgid "No Thanks"
2738
+ msgstr "خیر، متشکرم"
2739
+
2740
+ #: includes/ui-js-templates.php:89
2741
+ msgid "Yes Please!"
2742
+ msgstr "بله لطفا!"
2743
+
2744
+ #: includes/ui-js-templates.php:96
2745
+ msgid "Getting Started Video"
2746
+ msgstr "شروع فیلم"
2747
+
2748
+ #: includes/ui-panel-node-templates.php:6
2749
+ msgid "Saved Rows"
2750
+ msgstr "ردیف های ذخیره شده"
2751
+
2752
+ #: includes/ui-panel-node-templates.php:37
2753
+ msgid "Saved Modules"
2754
+ msgstr "ماژول های ذخیره شده"
2755
+
2756
+ #: includes/ui-panel.php:11
2757
+ msgid "Row Layouts"
2758
+ msgstr "طرح‌بندی‌های ردیف"
2759
+
2760
+ #: includes/ui-panel.php:15
2761
+ msgid "1 Column"
2762
+ msgstr "1 ستونه"
2763
+
2764
+ #: includes/ui-panel.php:16
2765
+ msgid "2 Columns"
2766
+ msgstr "2 ستونه"
2767
+
2768
+ #: includes/ui-panel.php:17
2769
+ msgid "3 Columns"
2770
+ msgstr "3 ستونه"
2771
+
2772
+ #: includes/ui-panel.php:18
2773
+ msgid "4 Columns"
2774
+ msgstr "4 ستونه"
2775
+
2776
+ #: includes/ui-panel.php:19
2777
+ msgid "5 Columns"
2778
+ msgstr "5 ستونه"
2779
+
2780
+ #: includes/ui-panel.php:20
2781
+ msgid "6 Columns"
2782
+ msgstr "6 ستونه"
2783
+
2784
+ #: includes/ui-panel.php:21
2785
+ msgid "Left Sidebar"
2786
+ msgstr "ستون کناری سمت راست"
2787
+
2788
+ #: includes/ui-panel.php:22
2789
+ msgid "Right Sidebar"
2790
+ msgstr "ستون کناری سمت چپ"
2791
+
2792
+ #: includes/ui-panel.php:23
2793
+ msgid "Left &amp; Right Sidebar"
2794
+ msgstr "ستون کناری چپ و راست"
2795
+
2796
+ #: includes/updater/classes/class-fl-updater.php:132
2797
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2798
+ msgstr "<strong>به روز رسانی موجود نیست!</strong>"
2799
+
2800
+ #: includes/updater/classes/class-fl-updater.php:134
2801
+ msgid "Please subscribe to enable automatic updates for this plugin."
2802
+ msgstr "برای فعال کردن بروزرسانی خودکار مشترک شوید."
2803
+
2804
+ #: includes/updater/classes/class-fl-updater.php:136 includes/updater/includes/form.php:6
2805
+ msgid "Subscribe Now"
2806
+ msgstr "هم اکنون مشترک شوید!"
2807
+
2808
+ #: includes/updater/includes/form.php:5
2809
+ msgid "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to enable automatic updates."
2810
+ msgstr ""
2811
+ "به روز رسانی در دسترس نیست! مشترک شوید و یا با وارد کردن کد فعال سازی خود در زیر، به روز رسانی خودکار را "
2812
+ "فعال کنید."
2813
+
2814
+ #: includes/updater/includes/form.php:11
2815
+ msgid "Updates &amp; Support Subscription"
2816
+ msgstr "به روز رسانی و اشتراک پشتیبانی"
2817
+
2818
+ #: includes/updater/includes/form.php:14
2819
+ msgid "Active!"
2820
+ msgstr "فعال"
2821
+
2822
+ #: includes/updater/includes/form.php:16
2823
+ msgid "Not Active!"
2824
+ msgstr "غیر فعال!"
2825
+
2826
+ #: includes/updater/includes/form.php:22
2827
+ msgid "Email address saved!"
2828
+ msgstr "آدرس ایمیل دخیره شد!"
2829
+
2830
+ #: includes/updater/includes/form.php:27
2831
+ #, php-format
2832
+ msgid "Enter your <a%s>license key</a> to enable remote updates and support."
2833
+ msgstr "‏<a%s>کد فعال سازی</a> خود را برای فعال کردن به روزرسانی از راه دور و پشتیبانی وارد کنید."
2834
+
2835
+ #: includes/updater/includes/form.php:39
2836
+ msgid "Save Subscription Settings"
2837
+ msgstr "ذخیره تنظیمات اشتراک"
2838
+
2839
+ #: includes/user-template-settings.php:8
2840
+ msgid ""
2841
+ "Save the current layout as a template that can be reused under <strong>Templates &rarr; Your Templates</"
2842
+ "strong>."
2843
+ msgstr ""
2844
+ "طرح جاری را به عنوان قالب برای استفاده‌ی مجدد ذخیره کن. برای استفاده مجدد به نشانی <strong>قالب‌ها &larr; "
2845
+ "قالب‌های شما</strong> مراجعه کنید."
2846
+
2847
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
2848
+ msgid "Accordion"
2849
+ msgstr "آکاردئون"
2850
+
2851
+ #: modules/accordion/accordion.php:15
2852
+ msgid "Display a collapsible accordion of items."
2853
+ msgstr "آکوردئون تاشو از بخش ها را نمایش دهد."
2854
+
2855
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2856
+ msgid "Items"
2857
+ msgstr "بخش ها"
2858
+
2859
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
2860
+ msgid "Item"
2861
+ msgstr "بخش"
2862
+
2863
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
2864
+ msgid "Border Color"
2865
+ msgstr "رنگ حاشیه"
2866
+
2867
+ #: modules/accordion/accordion.php:62
2868
+ msgid "Label Size"
2869
+ msgstr "سایز برچسب"
2870
+
2871
+ #: modules/accordion/accordion.php:65
2872
+ msgctxt "Label size."
2873
+ msgid "Small"
2874
+ msgstr "کوچک"
2875
+
2876
+ #: modules/accordion/accordion.php:66
2877
+ msgctxt "Label size."
2878
+ msgid "Medium"
2879
+ msgstr "متوسط"
2880
+
2881
+ #: modules/accordion/accordion.php:67
2882
+ msgctxt "Label size."
2883
+ msgid "Large"
2884
+ msgstr "بزرگ"
2885
+
2886
+ #: modules/accordion/accordion.php:75
2887
+ msgid "Item Spacing"
2888
+ msgstr "فاصله بخش ها"
2889
+
2890
+ #: modules/accordion/accordion.php:86
2891
+ msgid "Collapse Inactive"
2892
+ msgstr "قابلیت تاشدن غیرفعال شود"
2893
+
2894
+ #: modules/accordion/accordion.php:92
2895
+ msgid ""
2896
+ "Choosing yes will keep only one item open at a time. Choosing no will allow multiple items to be open at "
2897
+ "the same time."
2898
+ msgstr ""
2899
+ "اگر بله را انتخاب کنید تنها یک آیتم باز خواهد ماند. اگر خیر را انتخاب کنید چندین آیتم اجازه‌ی باز ماندن "
2900
+ "خواهند داشت."
2901
+
2902
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
2903
+ msgid "Add Item"
2904
+ msgstr "افزودن بخش"
2905
+
2906
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
2907
+ msgid "Label"
2908
+ msgstr "برچسب"
2909
+
2910
+ #: modules/accordion/accordion.php:122 modules/post-carousel/post-carousel.php:359
2911
+ #: modules/post-carousel/post-carousel.php:363 modules/post-carousel/post-carousel.php:435
2912
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
2913
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:548
2914
+ #: modules/post-slider/post-slider.php:552 modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
2915
+ msgid "Content"
2916
+ msgstr "محتوا"
2917
+
2918
+ #: modules/button/button.php:14 modules/callout/callout.php:480 modules/content-slider/content-slider.php:602
2919
+ #: modules/cta/cta.php:215 modules/pricing-table/pricing-table.php:129
2920
+ #: modules/subscribe-form/subscribe-form.php:161
2921
+ msgid "Button"
2922
+ msgstr "دکمه"
2923
+
2924
+ #: modules/button/button.php:15
2925
+ msgid "A simple call to action button."
2926
+ msgstr "دکمه فراخوانی ساده"
2927
+
2928
+ #: modules/button/button.php:67 modules/cta/cta.php:223
2929
+ msgid "Click Here"
2930
+ msgstr "کلیک کنید"
2931
+
2932
+ #: modules/button/button.php:75 modules/callout/callout.php:318 modules/callout/callout.php:366
2933
+ #: modules/callout/callout.php:370 modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
2934
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14 modules/icon/icon.php:34
2935
+ msgid "Icon"
2936
+ msgstr "آیکون"
2937
+
2938
+ #: modules/button/button.php:80 modules/cta/cta.php:236 modules/subscribe-form/subscribe-form.php:178
2939
+ msgid "Icon Position"
2940
+ msgstr "موقعیت آیکون"
2941
+
2942
+ #: modules/button/button.php:83 modules/callout/callout.php:508 modules/content-slider/content-slider.php:629
2943
+ #: modules/cta/cta.php:239 modules/subscribe-form/subscribe-form.php:181
2944
+ msgid "Before Text"
2945
+ msgstr "قبل متن"
2946
+
2947
+ #: modules/button/button.php:84 modules/callout/callout.php:509 modules/content-slider/content-slider.php:630
2948
+ #: modules/cta/cta.php:240 modules/subscribe-form/subscribe-form.php:182
2949
+ msgid "After Text"
2950
+ msgstr "بعد از متن"
2951
+
2952
+ #: modules/button/button.php:90 modules/button/button.php:94 modules/callout/callout.php:446
2953
+ #: modules/callout/callout.php:450 modules/content-slider/content-slider.php:574
2954
+ #: modules/content-slider/content-slider.php:578 modules/content-slider/content-slider.php:601
2955
+ #: modules/cta/cta.php:250 modules/heading/heading.php:43 modules/heading/heading.php:47
2956
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43 modules/slideshow/slideshow.php:351
2957
+ msgid "Link"
2958
+ msgstr "لینک"
2959
+
2960
+ #: modules/button/button.php:95
2961
+ msgid "http://www.example.com"
2962
+ msgstr "مثلا http://www.example.com"
2963
+
2964
+ #: modules/button/button.php:102 modules/callout/callout.php:458
2965
+ #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257 modules/heading/heading.php:54
2966
+ #: modules/icon/icon.php:50 modules/photo/photo.php:494
2967
+ msgid "Link Target"
2968
+ msgstr "لینک مقصد"
2969
+
2970
+ #: modules/button/button.php:105 modules/callout/callout.php:461
2971
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260 modules/heading/heading.php:57
2972
+ #: modules/icon/icon.php:53 modules/photo/photo.php:497
2973
+ msgid "Same Window"
2974
+ msgstr "همان پنجره"
2975
+
2976
+ #: modules/button/button.php:106 modules/callout/callout.php:462
2977
+ #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261 modules/heading/heading.php:58
2978
+ #: modules/icon/icon.php:54 modules/photo/photo.php:498
2979
+ msgid "New Window"
2980
+ msgstr "پنجره‌ی جدید"
2981
+
2982
+ #: modules/button/button.php:130 modules/callout/callout.php:410 modules/callout/callout.php:525
2983
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280 modules/icon-group/icon-group.php:69
2984
+ #: modules/icon/icon.php:100 modules/subscribe-form/subscribe-form.php:198
2985
+ msgid "Background Hover Color"
2986
+ msgstr "رنگ هاور پس زمینه"
2987
+
2988
+ #: modules/button/button.php:145 modules/callout/callout.php:540
2989
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
2990
+ #: modules/subscribe-form/subscribe-form.php:213
2991
+ msgid "Text Hover Color"
2992
+ msgstr "رنگ متن زمانی که موس روی آن می رود"
2993
+
2994
+ #: modules/button/button.php:162 modules/callout/callout.php:557
2995
+ #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
2996
+ #: modules/subscribe-form/subscribe-form.php:230
2997
+ msgid "Flat"
2998
+ msgstr "مسطح"
2999
+
3000
+ #: modules/button/button.php:163 modules/callout/callout.php:418 modules/callout/callout.php:558
3001
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313 modules/icon-group/icon-group.php:77
3002
+ #: modules/icon/icon.php:108 modules/subscribe-form/subscribe-form.php:231
3003
+ msgid "Gradient"
3004
+ msgstr "گرادینت"
3005
+
3006
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3007
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3008
+ #: modules/subscribe-form/subscribe-form.php:232
3009
+ msgid "Transparent"
3010
+ msgstr "شفاف"
3011
+
3012
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3013
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3014
+ #: modules/pricing-table/pricing-table.php:67 modules/subscribe-form/subscribe-form.php:242
3015
+ msgid "Border Size"
3016
+ msgstr "سایز کادر"
3017
+
3018
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3019
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204 modules/cta/cta.php:333
3020
+ #: modules/subscribe-form/subscribe-form.php:251
3021
+ msgid "Background Opacity"
3022
+ msgstr "شفافیت پس زمینه"
3023
+
3024
+ #: modules/button/button.php:193 modules/callout/callout.php:245 modules/cta/cta.php:105
3025
+ #: modules/heading/heading.php:82 modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3026
+ #: modules/subscribe-form/subscribe-form.php:95
3027
+ msgid "Structure"
3028
+ msgstr "ساختار"
3029
+
3030
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3031
+ msgctxt "Width."
3032
+ msgid "Auto"
3033
+ msgstr "خودکار"
3034
+
3035
+ #: modules/button/button.php:216
3036
+ msgid "Custom Width"
3037
+ msgstr "عرض سفارشی"
3038
+
3039
+ #: modules/button/button.php:224 modules/cta/cta.php:123 modules/heading/heading.php:86
3040
+ #: modules/heading/heading.php:141 modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3041
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3042
+ msgid "Alignment"
3043
+ msgstr "چیدمان"
3044
+
3045
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3046
+ #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347 modules/heading/heading.php:114
3047
+ #: modules/heading/heading.php:171 modules/subscribe-form/subscribe-form.php:265
3048
+ msgid "Font Size"
3049
+ msgstr "اندازه فونت"
3050
+
3051
+ #: modules/button/button.php:250 modules/callout/callout.php:617 modules/cta/cta.php:363
3052
+ #: modules/subscribe-form/subscribe-form.php:281
3053
+ msgid "Round Corners"
3054
+ msgstr "گوشه های گرد"
3055
+
3056
+ #: modules/callout/callout.php:14
3057
+ msgid "Callout"
3058
+ msgstr "اعلان"
3059
+
3060
+ #: modules/callout/callout.php:15
3061
+ msgid "A heading and snippet of text with an optional link, icon and image."
3062
+ msgstr "یک عنوان و یک متن کوتاه به همراه لینک و آیکون و عکس اختیاری."
3063
+
3064
+ #: modules/callout/callout.php:217 modules/content-slider/content-slider.php:414
3065
+ #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75 modules/heading/heading.php:14
3066
+ #: modules/heading/heading.php:33 modules/post-slider/post-slider.php:582
3067
+ #: modules/testimonials/testimonials.php:56 modules/testimonials/testimonials.php:61
3068
+ msgid "Heading"
3069
+ msgstr "عنوان"
3070
+
3071
+ #: modules/callout/callout.php:249
3072
+ msgid "Overall Alignment"
3073
+ msgstr "چیدمان کلی"
3074
+
3075
+ #: modules/callout/callout.php:256
3076
+ msgid "The alignment that will apply to all elements within the callout."
3077
+ msgstr "چیدمانی که بر تمام عناصر داخل اعلان اعمال خواهد شد."
3078
+
3079
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3080
+ msgid "Heading Structure"
3081
+ msgstr "ساختار عنوان"
3082
+
3083
+ #: modules/callout/callout.php:268 modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3084
+ #: modules/post-slider/post-slider.php:586
3085
+ msgid "Heading Tag"
3086
+ msgstr "برچسب عنوان"
3087
+
3088
+ #: modules/callout/callout.php:281 modules/content-slider/content-slider.php:446
3089
+ #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3090
+ #: modules/post-slider/post-slider.php:599 modules/post-slider/post-slider.php:613
3091
+ #: modules/testimonials/testimonials.php:69
3092
+ msgid "Heading Size"
3093
+ msgstr "سایز عنوان"
3094
+
3095
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3096
+ msgid "Heading Custom Size"
3097
+ msgstr "اندازه فونت عنوان"
3098
+
3099
+ #: modules/callout/callout.php:313
3100
+ msgid "Image Type"
3101
+ msgstr "نوع تصویر"
3102
+
3103
+ #: modules/callout/callout.php:316
3104
+ msgctxt "Image type."
3105
+ msgid "None"
3106
+ msgstr "هیچ کدام"
3107
+
3108
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417 modules/post-slider/post-slider.php:482
3109
+ #: modules/slideshow/slideshow.php:320
3110
+ msgid "Crop"
3111
+ msgstr "برش عكس"
3112
+
3113
+ #: modules/callout/callout.php:344 modules/photo/photo.php:420
3114
+ msgctxt "Photo Crop."
3115
+ msgid "None"
3116
+ msgstr "هیچ کدام"
3117
+
3118
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421 modules/post-slider/post-slider.php:485
3119
+ msgid "Landscape"
3120
+ msgstr "عرضی"
3121
+
3122
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422 modules/post-slider/post-slider.php:486
3123
+ msgid "Panorama"
3124
+ msgstr "پانوراما"
3125
+
3126
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423 modules/post-slider/post-slider.php:487
3127
+ msgid "Portrait"
3128
+ msgstr "عمودی"
3129
+
3130
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424 modules/post-slider/post-slider.php:488
3131
+ msgid "Square"
3132
+ msgstr "مربع"
3133
+
3134
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425 modules/post-slider/post-slider.php:489
3135
+ msgid "Circle"
3136
+ msgstr "دایره"
3137
+
3138
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3139
+ msgid "Above Heading"
3140
+ msgstr "بالای عنوان"
3141
+
3142
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3143
+ msgid "Below Heading"
3144
+ msgstr "زیر عنوان"
3145
+
3146
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3147
+ msgid "Left of Text and Heading"
3148
+ msgstr "چپ متن و عنوان"
3149
+
3150
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3151
+ msgid "Right of Text and Heading"
3152
+ msgstr "راست متن و عنوان"
3153
+
3154
+ #: modules/callout/callout.php:379
3155
+ msgid "Left of Heading"
3156
+ msgstr "چپ عنوان"
3157
+
3158
+ #: modules/callout/callout.php:380
3159
+ msgid "Right of Heading"
3160
+ msgstr "راست عنوان"
3161
+
3162
+ #: modules/callout/callout.php:388
3163
+ msgid "Icon Colors"
3164
+ msgstr "رنگ آیکون"
3165
+
3166
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56 modules/icon/icon.php:87
3167
+ msgid "Hover Color"
3168
+ msgstr "رنگ متن زمانی که موس روی آن می رود"
3169
+
3170
+ #: modules/callout/callout.php:428
3171
+ msgid "Icon Structure"
3172
+ msgstr "ساختار آیکون"
3173
+
3174
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91 modules/icon/icon.php:122
3175
+ #: modules/post-carousel/post-carousel.php:269 modules/post-grid/post-grid.php:139
3176
+ #: modules/post-slider/post-slider.php:477
3177
+ msgid "Size"
3178
+ msgstr "اندازه"
3179
+
3180
+ #: modules/callout/callout.php:443 modules/content-slider/content-slider.php:571
3181
+ msgid "Call To Action"
3182
+ msgstr "فراخوانی برای عمل"
3183
+
3184
+ #: modules/callout/callout.php:451
3185
+ msgid ""
3186
+ "The link applies to the entire module. If choosing a call to action type below, this link will also be "
3187
+ "used for the text or button."
3188
+ msgstr ""
3189
+ "لینک به کل ماؤول اعمال می‌شود. اگر نوار فراخوانی را در زیر انتخاب می‌کنید، این لینک برای متن و دکمه نیز "
3190
+ "استفاده می‌شود."
3191
+
3192
+ #: modules/callout/callout.php:471 modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3193
+ msgid "Call to Action"
3194
+ msgstr "فراخوانی برای عمل"
3195
+
3196
+ #: modules/callout/callout.php:478 modules/content-slider/content-slider.php:600
3197
+ msgctxt "Call to action."
3198
+ msgid "None"
3199
+ msgstr "هیچ کدام"
3200
+
3201
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3202
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
3203
+ msgid "Read More"
3204
+ msgstr "ادامه مطلب"
3205
+
3206
+ #: modules/callout/callout.php:500 modules/content-slider/content-slider.php:621
3207
+ #: modules/subscribe-form/subscribe-form.php:173
3208
+ msgid "Button Icon"
3209
+ msgstr "آیکون دکمه"
3210
+
3211
+ #: modules/callout/callout.php:505 modules/content-slider/content-slider.php:626
3212
+ msgid "Button Icon Position"
3213
+ msgstr "موقعیت آیکون دکمه"
3214
+
3215
+ #: modules/callout/callout.php:515 modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3216
+ #: modules/subscribe-form/subscribe-form.php:188
3217
+ msgid "Button Colors"
3218
+ msgstr "رنگ های دکمه"
3219
+
3220
+ #: modules/callout/callout.php:550 modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3221
+ #: modules/subscribe-form/subscribe-form.php:223
3222
+ msgid "Button Style"
3223
+ msgstr "استایل دکمه"
3224
+
3225
+ #: modules/callout/callout.php:588 modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3226
+ #: modules/subscribe-form/subscribe-form.php:261
3227
+ msgid "Button Structure"
3228
+ msgstr "ساختار دکمه"
3229
+
3230
+ #: modules/callout/callout.php:592
3231
+ msgid "Button Width"
3232
+ msgstr "عرض دکمه"
3233
+
3234
+ #: modules/contact-form/contact-form.php:14
3235
+ msgid "Contact Form"
3236
+ msgstr "فرم تماس"
3237
+
3238
+ #: modules/contact-form/contact-form.php:15
3239
+ msgid "A very simple contact form."
3240
+ msgstr "فرم تماس بسیار ساده."
3241
+
3242
+ #: modules/contact-form/contact-form.php:31
3243
+ msgid "Contact Form Submission"
3244
+ msgstr "ثبت فرم تماس"
3245
+
3246
+ #: modules/contact-form/contact-form.php:41
3247
+ msgid "Message"
3248
+ msgstr "پیام"
3249
+
3250
+ #: modules/contact-form/contact-form.php:65
3251
+ msgid "Send To Email"
3252
+ msgstr "ارسال به ایمیل"
3253
+
3254
+ #: modules/contact-form/contact-form.php:67
3255
+ msgid "example@mail.com"
3256
+ msgstr "مثال: example@mail.com"
3257
+
3258
+ #: modules/contact-form/contact-form.php:68
3259
+ msgid "The contact form will send to this e-mail"
3260
+ msgstr "ایمیل ارسال شده توسط فرم تماس به این ایمیل ارسال خواهد شد."
3261
+
3262
+ #: modules/contact-form/contact-form.php:75 modules/subscribe-form/subscribe-form.php:108
3263
+ msgid "Name Field"
3264
+ msgstr "نام فیلد"
3265
+
3266
+ #: modules/contact-form/contact-form.php:78 modules/contact-form/contact-form.php:87
3267
+ #: modules/contact-form/contact-form.php:96 modules/contact-form/contact-form.php:105
3268
+ #: modules/post-carousel/post-carousel.php:258 modules/post-carousel/post-carousel.php:322
3269
+ #: modules/post-carousel/post-carousel.php:331 modules/post-carousel/post-carousel.php:366
3270
+ #: modules/post-carousel/post-carousel.php:375 modules/post-grid/post-grid.php:119
3271
+ #: modules/post-grid/post-grid.php:152 modules/post-grid/post-grid.php:161
3272
+ #: modules/post-grid/post-grid.php:191 modules/post-grid/post-grid.php:205
3273
+ #: modules/post-grid/post-grid.php:223 modules/post-slider/post-slider.php:443
3274
+ #: modules/post-slider/post-slider.php:502 modules/post-slider/post-slider.php:511
3275
+ #: modules/post-slider/post-slider.php:541 modules/post-slider/post-slider.php:555
3276
+ #: modules/post-slider/post-slider.php:564 modules/subscribe-form/subscribe-form.php:111
3277
+ msgid "Show"
3278
+ msgstr "نمایش"
3279
+
3280
+ #: modules/contact-form/contact-form.php:79 modules/contact-form/contact-form.php:88
3281
+ #: modules/contact-form/contact-form.php:97 modules/contact-form/contact-form.php:106
3282
+ #: modules/post-carousel/post-carousel.php:259 modules/post-carousel/post-carousel.php:323
3283
+ #: modules/post-carousel/post-carousel.php:332 modules/post-carousel/post-carousel.php:367
3284
+ #: modules/post-carousel/post-carousel.php:376 modules/post-grid/post-grid.php:120
3285
+ #: modules/post-grid/post-grid.php:153 modules/post-grid/post-grid.php:162
3286
+ #: modules/post-grid/post-grid.php:192 modules/post-grid/post-grid.php:206
3287
+ #: modules/post-grid/post-grid.php:224 modules/post-slider/post-slider.php:444
3288
+ #: modules/post-slider/post-slider.php:503 modules/post-slider/post-slider.php:512
3289
+ #: modules/post-slider/post-slider.php:542 modules/post-slider/post-slider.php:556
3290
+ #: modules/post-slider/post-slider.php:565 modules/subscribe-form/subscribe-form.php:112
3291
+ msgid "Hide"
3292
+ msgstr "پنهان کردن"
3293
+
3294
+ #: modules/contact-form/contact-form.php:84
3295
+ msgid "Subject Field"
3296
+ msgstr "فیلد موضوعی"
3297
+
3298
+ #: modules/contact-form/contact-form.php:93
3299
+ msgid "Email Field"
3300
+ msgstr "فیلد ایمیل"
3301
+
3302
+ #: modules/contact-form/contact-form.php:102
3303
+ msgid "Phone Field"
3304
+ msgstr "فیلد تلفن"
3305
+
3306
+ #: modules/contact-form/includes/frontend.php:5
3307
+ msgctxt "Contact form field label."
3308
+ msgid "Name"
3309
+ msgstr "نام"
3310
+
3311
+ #: modules/contact-form/includes/frontend.php:6 modules/subscribe-form/includes/frontend.php:6
3312
+ msgid "Please enter your name."
3313
+ msgstr "خواهشمند است نام خود را بنویسید."
3314
+
3315
+ #: modules/contact-form/includes/frontend.php:7
3316
+ msgid "Your name"
3317
+ msgstr "نام شما"
3318
+
3319
+ #: modules/contact-form/includes/frontend.php:13 modules/contact-form/includes/frontend.php:15
3320
+ msgid "Subject"
3321
+ msgstr "موضوع"
3322
+
3323
+ #: modules/contact-form/includes/frontend.php:14
3324
+ msgid "Please enter a subject."
3325
+ msgstr "لطفا موضوع خود را بنویسید"
3326
+
3327
+ #: modules/contact-form/includes/frontend.php:22
3328
+ msgid "Please enter a valid email."
3329
+ msgstr "لطفا یک آدرس ایمیل معتبر وارد کنید."
3330
+
3331
+ #: modules/contact-form/includes/frontend.php:23
3332
+ msgid "Your email"
3333
+ msgstr "ایمیل شما"
3334
+
3335
+ #: modules/contact-form/includes/frontend.php:29
3336
+ msgid "Phone"
3337
+ msgstr "تلفن"
3338
+
3339
+ #: modules/contact-form/includes/frontend.php:30
3340
+ msgid "Please enter a valid phone number."
3341
+ msgstr "لطفا یک شماره تلفن معتبر وارد نمایید."
3342
+
3343
+ #: modules/contact-form/includes/frontend.php:31
3344
+ msgid "Your phone"
3345
+ msgstr "تلفن شما"
3346
+
3347
+ #: modules/contact-form/includes/frontend.php:36
3348
+ msgid "Your Message"
3349
+ msgstr "پیام شما"
3350
+
3351
+ #: modules/contact-form/includes/frontend.php:37
3352
+ msgid "Please enter a message."
3353
+ msgstr "لطفا پیامتان را بنویسید."
3354
+
3355
+ #: modules/contact-form/includes/frontend.php:38
3356
+ msgid "Your message"
3357
+ msgstr "پیام شما"
3358
+
3359
+ #: modules/contact-form/includes/frontend.php:43
3360
+ msgid "Send"
3361
+ msgstr "ارسال"
3362
+
3363
+ #: modules/contact-form/includes/frontend.php:44
3364
+ msgid "Message Sent!"
3365
+ msgstr "پیام با موفقیت ارسال شد."
3366
+
3367
+ #: modules/contact-form/includes/frontend.php:45
3368
+ msgid "Message failed. Please try again."
3369
+ msgstr "پیام شما ارسال نشد. لطفا دوباره سعی کنید."
3370
+
3371
+ #: modules/content-slider/content-slider.php:14
3372
+ msgid "Content Slider"
3373
+ msgstr "اسلایدر محتوا"
3374
+
3375
+ #: modules/content-slider/content-slider.php:15
3376
+ msgid "Displays multiple slides with an optional heading and call to action."
3377
+ msgstr "نمایش چند اسلاید با عنوان اختیاری و فراخوان."
3378
+
3379
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
3380
+ #: modules/post-slider/post-slider.php:345 modules/separator/separator.php:58
3381
+ #: modules/slideshow/slideshow.php:302
3382
+ msgid "Height"
3383
+ msgstr "ارتفاع"
3384
+
3385
+ #: modules/content-slider/content-slider.php:203
3386
+ msgid ""
3387
+ "This setting is the minimum height of the content slider. Content will expand the height automatically."
3388
+ msgstr "این تنظیم حداقل ارتفاع هر اسلاید را تعیین می‌کند. ارتفاع محتوا به‌طور خودکار گسترده می‌شود."
3389
+
3390
+ #: modules/content-slider/content-slider.php:207 modules/post-carousel/post-carousel.php:136
3391
+ #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381
3392
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3393
+ msgid "Auto Play"
3394
+ msgstr "پخش خودکار"
3395
+
3396
+ #: modules/content-slider/content-slider.php:221
3397
+ msgid "Show Play/Pause"
3398
+ msgstr "دکمه پخش/مکث"
3399
+
3400
+ #: modules/content-slider/content-slider.php:241 modules/testimonials/testimonials.php:102
3401
+ msgctxt "Transition type."
3402
+ msgid "Slide"
3403
+ msgstr "اسلاید"
3404
+
3405
+ #: modules/content-slider/content-slider.php:255 modules/post-carousel/post-carousel.php:188
3406
+ #: modules/post-slider/post-slider.php:415 modules/testimonials/testimonials.php:121
3407
+ msgid "Show Arrows"
3408
+ msgstr "نمایش فِلش‌ها"
3409
+
3410
+ #: modules/content-slider/content-slider.php:264 modules/post-carousel/post-carousel.php:179
3411
+ #: modules/post-slider/post-slider.php:406 modules/testimonials/testimonials.php:151
3412
+ msgid "Show Dots"
3413
+ msgstr "نمایش نقطه های اسلایدر"
3414
+
3415
+ #: modules/content-slider/content-slider.php:278
3416
+ msgid "Max Content Width"
3417
+ msgstr "حداکثر عرض محتوا"
3418
+
3419
+ #: modules/content-slider/content-slider.php:283
3420
+ msgid "The max width that the content area will be within your slides."
3421
+ msgstr "حداگر پهنای محتوا که در اسلایدها اشغال خواهد کرد."
3422
+
3423
+ #: modules/content-slider/content-slider.php:290
3424
+ msgid "Slides"
3425
+ msgstr "اسلاید ها"
3426
+
3427
+ #: modules/content-slider/content-slider.php:297 modules/post-slider/post-slider.php:374
3428
+ msgid "Slide"
3429
+ msgstr "اسلاید"
3430
+
3431
+ #: modules/content-slider/content-slider.php:312
3432
+ msgid "Slide Settings"
3433
+ msgstr "تنظیمات اسلاید"
3434
+
3435
+ #: modules/content-slider/content-slider.php:322
3436
+ msgid "Slide Label"
3437
+ msgstr "برچسب اسلاید"
3438
+
3439
+ #: modules/content-slider/content-slider.php:323
3440
+ msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
3441
+ msgstr "یک برچسب برای شناسایی این اسلاید در برگه تنظیمات اسلایدر محتوا."
3442
+
3443
+ #: modules/content-slider/content-slider.php:328
3444
+ msgid "Background Layout"
3445
+ msgstr "طرح بندی پس‌زمینه"
3446
+
3447
+ #: modules/content-slider/content-slider.php:334
3448
+ msgid "This setting is for the entire background of your slide."
3449
+ msgstr "این تنظیم برای پس‌زمینه‌ی کل اسلاید استفاده خواهد شد."
3450
+
3451
+ #: modules/content-slider/content-slider.php:369
3452
+ msgid "Background Video Code"
3453
+ msgstr "کد ویدئوی پس‌زمینه"
3454
+
3455
+ #: modules/content-slider/content-slider.php:375
3456
+ msgid "Content Layout"
3457
+ msgstr "طرح بندی محتوا"
3458
+
3459
+ #: modules/content-slider/content-slider.php:381
3460
+ msgid ""
3461
+ "This allows you to add content over or in addition to the background selection above. The location of the "
3462
+ "content layout can be selected in the style tab."
3463
+ msgstr ""
3464
+ "این اجازه می‌دهد که شما محتوای روی یا علاوه‌بر انتخاب پس‌زمینه‌ی بالا اضافه کنید. موقعیت طرح محتوا می‌تواند در "
3465
+ "برگه استایل انتخاب شود."
3466
+
3467
+ #: modules/content-slider/content-slider.php:384
3468
+ msgid "Text &amp; Photo"
3469
+ msgstr "متن و عکس"
3470
+
3471
+ #: modules/content-slider/content-slider.php:385
3472
+ msgid "Text &amp; Video"
3473
+ msgstr "متن و ویدئو"
3474
+
3475
+ #: modules/content-slider/content-slider.php:386
3476
+ msgctxt "Content type."
3477
+ msgid "None"
3478
+ msgstr "هیچ کدام"
3479
+
3480
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3481
+ msgid "Video Embed Code"
3482
+ msgstr "کدهای embded ویدئو"
3483
+
3484
+ #: modules/content-slider/content-slider.php:469
3485
+ msgid "Text Position"
3486
+ msgstr "موقعیت متن"
3487
+
3488
+ #: modules/content-slider/content-slider.php:475
3489
+ msgid ""
3490
+ "The position will move the content layout selections left, right or center over the background of the "
3491
+ "slide."
3492
+ msgstr "موقعیت طرح محتوا را به چپ، راست یا وسط پس‌زمینه‌ی اسلاید حرکت می‌دهد."
3493
+
3494
+ #: modules/content-slider/content-slider.php:492
3495
+ msgid "Top Margin"
3496
+ msgstr "فاصله از بالا"
3497
+
3498
+ #: modules/content-slider/content-slider.php:500
3499
+ msgid "Bottom Margin"
3500
+ msgstr "فاصله از پایین"
3501
+
3502
+ #: modules/content-slider/content-slider.php:508
3503
+ msgid "Left Margin"
3504
+ msgstr "فاصله از چپ"
3505
+
3506
+ #: modules/content-slider/content-slider.php:516
3507
+ msgid "Right Margin"
3508
+ msgstr "فاصله از راست"
3509
+
3510
+ #: modules/content-slider/content-slider.php:525
3511
+ msgid "Text Colors"
3512
+ msgstr "رنگ متن"
3513
+
3514
+ #: modules/content-slider/content-slider.php:535
3515
+ msgid "Text Shadow"
3516
+ msgstr "سایه متن"
3517
+
3518
+ #: modules/content-slider/content-slider.php:544 modules/content-slider/content-slider.php:770
3519
+ #: modules/post-carousel/post-carousel.php:411 modules/post-grid/post-grid.php:312
3520
+ #: modules/post-slider/post-slider.php:721
3521
+ msgid "Text Background Color"
3522
+ msgstr "رنگ پس زمینه متن"
3523
+
3524
+ #: modules/content-slider/content-slider.php:545 modules/post-carousel/post-carousel.php:413
3525
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
3526
+ msgid "The color applies to the overlay behind text over the background selections."
3527
+ msgstr "رنگ بر روی پوشش پشت عکس که روی پس‌زمینه قرار دارد اعمال می‌شود."
3528
+
3529
+ #: modules/content-slider/content-slider.php:550 modules/post-carousel/post-carousel.php:423
3530
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
3531
+ msgid "Text Background Opacity"
3532
+ msgstr "شفافیت پس زمینه متن"
3533
+
3534
+ #: modules/content-slider/content-slider.php:558 modules/post-slider/post-slider.php:745
3535
+ msgid "Text Background Height"
3536
+ msgstr "ارتفاع پس زمینه متن"
3537
+
3538
+ #: modules/content-slider/content-slider.php:560 modules/post-slider/post-slider.php:747
3539
+ msgid ""
3540
+ "Auto will allow the overlay to fit however long the text content is. 100% will fit the overlay to the top "
3541
+ "and bottom of the slide."
3542
+ msgstr ""
3543
+ "خودکار به پوشش اجازه خواهد داد که هرچقدر که متن طول دارد کشیده شود. 100% پوشش را به بالا و پایین اسلاید "
3544
+ "فیت خواهد کرد."
3545
+
3546
+ #: modules/content-slider/content-slider.php:562 modules/post-slider/post-slider.php:749
3547
+ msgctxt "Background height."
3548
+ msgid "Auto"
3549
+ msgstr "خودکار"
3550
+
3551
+ #: modules/content-slider/content-slider.php:579
3552
+ msgid ""
3553
+ "The link applies to the entire slide. If choosing a call to action type below, this link will also be used "
3554
+ "for the text or button."
3555
+ msgstr ""
3556
+ "لینک به کل اسلاید اعمال خواهد شد. اگر دکمه‌ی فراخوان نیز انتخاب شود، این لینک بر روی متن و یا دکمه نیز "
3557
+ "اعمال خواهد شد."
3558
+
3559
+ #: modules/content-slider/content-slider.php:721
3560
+ msgid "Border Radius"
3561
+ msgstr "گردکردن حاشیه"
3562
+
3563
+ #: modules/content-slider/content-slider.php:732
3564
+ msgctxt "Module settings form tab. Display on mobile devices."
3565
+ msgid "Mobile"
3566
+ msgstr "موبایل"
3567
+
3568
+ #: modules/content-slider/content-slider.php:735
3569
+ msgid "Mobile Photo"
3570
+ msgstr "عکس در موبایل"
3571
+
3572
+ #: modules/content-slider/content-slider.php:741
3573
+ msgid ""
3574
+ "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
3575
+ msgstr ""
3576
+ "می‌توانید عکسی متفاوت انتخاب کنید که اسلاید در یک موبایل به آن تغییر خواهد کرد و یا اگر می‌خواهید هیچ عکسی "
3577
+ "انتخاب نکنید."
3578
+
3579
+ #: modules/content-slider/content-slider.php:743
3580
+ msgid "Use Main Photo"
3581
+ msgstr "استفاده از عکس اصلی"
3582
+
3583
+ #: modules/content-slider/content-slider.php:744
3584
+ msgid "Choose Another Photo"
3585
+ msgstr "استفاده از عکسی دیگر"
3586
+
3587
+ #: modules/content-slider/content-slider.php:745
3588
+ msgid "No Photo"
3589
+ msgstr "بدون عکس"
3590
+
3591
+ #: modules/content-slider/content-slider.php:760
3592
+ msgid "Mobile Text Colors"
3593
+ msgstr "رنگ متن در موبایل"
3594
+
3595
+ #: modules/cta/cta.php:15
3596
+ msgid "Display a heading, subheading and a button."
3597
+ msgstr "نمایش عنوان، زیرعنوان و یک دکمه"
3598
+
3599
+ #: modules/cta/cta.php:76
3600
+ msgid "Ready to find out more?"
3601
+ msgstr "می‌خواهید بیشتر بدانید؟"
3602
+
3603
+ #: modules/cta/cta.php:91
3604
+ msgid "Drop us a line today for a free quote!"
3605
+ msgstr "برای اطلاعات بیشتر با ما تماس بگیرید!"
3606
+
3607
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227 modules/menu/menu.php:90
3608
+ #: modules/post-carousel/post-carousel.php:117 modules/post-carousel/post-carousel.php:206
3609
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
3610
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
3611
+ #: modules/testimonials/testimonials.php:37 modules/woocommerce/woocommerce.php:57
3612
+ msgid "Layout"
3613
+ msgstr "طرح"
3614
+
3615
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
3616
+ msgid "Inline"
3617
+ msgstr "درون خطی"
3618
+
3619
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
3620
+ msgid "Stacked"
3621
+ msgstr "پشته‌سازی"
3622
+
3623
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
3624
+ msgid "Spacing"
3625
+ msgstr "فاصله"
3626
+
3627
+ #: modules/cta/cta.php:246
3628
+ msgid "Button Link"
3629
+ msgstr "لینک دکمه"
3630
+
3631
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
3632
+ #: modules/post-grid/post-grid.php:55
3633
+ msgid "Gallery"
3634
+ msgstr "گالری"
3635
+
3636
+ #: modules/gallery/gallery.php:15
3637
+ msgid "Display multiple photos in a gallery view."
3638
+ msgstr "چند عکس در نمای گالری نمایش داده‌شود."
3639
+
3640
+ #: modules/gallery/gallery.php:230
3641
+ msgid "Collage"
3642
+ msgstr "چسبانه‌کاری"
3643
+
3644
+ #: modules/gallery/gallery.php:231
3645
+ msgctxt "Gallery layout: thumbnails."
3646
+ msgid "Thumbs"
3647
+ msgstr "بند انگشتی"
3648
+
3649
+ #: modules/gallery/gallery.php:267
3650
+ msgid "Photo Size"
3651
+ msgstr "اندازه عکس"
3652
+
3653
+ #: modules/gallery/gallery.php:270
3654
+ msgctxt "Photo size."
3655
+ msgid "Small"
3656
+ msgstr "کوچک"
3657
+
3658
+ #: modules/gallery/gallery.php:271
3659
+ msgctxt "Photo size."
3660
+ msgid "Medium"
3661
+ msgstr "متوسط"
3662
+
3663
+ #: modules/gallery/gallery.php:272
3664
+ msgctxt "Photo size."
3665
+ msgid "Large"
3666
+ msgstr "بزرگ"
3667
+
3668
+ #: modules/gallery/gallery.php:277
3669
+ msgid "Photo Spacing"
3670
+ msgstr "فاصله عکس‌ها"
3671
+
3672
+ #: modules/gallery/gallery.php:285
3673
+ msgid "Show Captions"
3674
+ msgstr "نمایش توضیحات"
3675
+
3676
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
3677
+ msgid "Never"
3678
+ msgstr "هرگز"
3679
+
3680
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
3681
+ msgid "On Hover"
3682
+ msgstr "هنگام حضور ماوس"
3683
+
3684
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
3685
+ msgid "Below Photo"
3686
+ msgstr "زیر عکس"
3687
+
3688
+ #: modules/gallery/gallery.php:292
3689
+ msgid ""
3690
+ "The caption pulls from whatever text you put in the caption area in the media manager for each image. The "
3691
+ "caption is also pulled directly from SmugMug if you have captions set in your gallery."
3692
+ msgstr ""
3693
+ "توضیحات، از توضیحاتی که هنگام آپلود کردن برای هرعکس وارد می‌کنید استفاده می‌کند. اگر از عکس‌های SmugMug "
3694
+ "استفاده می‌کنید، توضیحات در گالری وارد می‌شوند."
3695
+
3696
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
3697
+ msgid "Click Action"
3698
+ msgstr "فعال شدن با کلیک"
3699
+
3700
+ #: modules/gallery/gallery.php:299
3701
+ msgctxt "Click action."
3702
+ msgid "None"
3703
+ msgstr "هیچ کدام"
3704
+
3705
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
3706
+ msgid "Lightbox"
3707
+ msgstr ""
3708
+ "لایت‌باکس (جعبه هایی که روی صفحه ی اصلی نمایش داده میشوند و اصولا حاوی متن یا عکسی برای توضیحات هستند)"
3709
+
3710
+ #: modules/gallery/gallery.php:301
3711
+ msgid "Photo Link"
3712
+ msgstr "لینک عکس"
3713
+
3714
+ #: modules/heading/heading.php:15
3715
+ msgid "Display a title/page heading."
3716
+ msgstr "نمایش عنوان صفحه / عنوان."
3717
+
3718
+ #: modules/heading/heading.php:101
3719
+ msgid "HTML Tag"
3720
+ msgstr "تگ های HTML"
3721
+
3722
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
3723
+ msgid "Custom Font Size"
3724
+ msgstr "اندازه فونت سفارشی"
3725
+
3726
+ #: modules/heading/heading.php:137
3727
+ msgid "Mobile Structure"
3728
+ msgstr "ساختار در تلفن همراه"
3729
+
3730
+ #: modules/heading/heading.php:158
3731
+ msgid "Custom Alignment"
3732
+ msgstr "چیدمان سفارشی"
3733
+
3734
+ #: modules/html/html.php:14
3735
+ msgid "HTML"
3736
+ msgstr "HTML"
3737
+
3738
+ #: modules/html/html.php:15
3739
+ msgid "Display raw HTML code."
3740
+ msgstr "کد های خام HTML را نمایش بده."
3741
+
3742
+ #: modules/icon-group/icon-group.php:14
3743
+ msgid "Icon Group"
3744
+ msgstr "گروه آیکون"
3745
+
3746
+ #: modules/icon-group/icon-group.php:15
3747
+ msgid "Display a group of linked Font Awesome icons."
3748
+ msgstr "نمایش یک گروه از آیکون‌های لینک‌شده از آیکون‌های Font Awesome."
3749
+
3750
+ #: modules/icon-group/icon-group.php:125
3751
+ msgid "Add Icon"
3752
+ msgstr "افزودن آیکون"
3753
+
3754
+ #: modules/icon/icon.php:15
3755
+ msgid "Display an icon and optional title."
3756
+ msgstr "نمایش آیکون و عنوان اختیاری."
3757
+
3758
+ #: modules/map/map.php:14
3759
+ msgid "Map"
3760
+ msgstr "نقشه"
3761
+
3762
+ #: modules/map/map.php:15
3763
+ msgid "Display a Google map."
3764
+ msgstr "نمایش نقشه گوگل"
3765
+
3766
+ #: modules/map/map.php:33
3767
+ msgid "Address"
3768
+ msgstr "آدرس"
3769
+
3770
+ #: modules/map/map.php:34
3771
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
3772
+ msgstr "تهران، میدان ولی‌عصر، خیابان ولی عصر، پلاک 16"
3773
+
3774
+ #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62 modules/menu/menu.php:69
3775
+ msgid "Menu"
3776
+ msgstr "منو"
3777
+
3778
+ #: modules/menu/menu.php:15
3779
+ msgid "Renders a WordPress menu."
3780
+ msgstr "نمایش منویی از وردپرس."
3781
+
3782
+ #: modules/menu/menu.php:25
3783
+ msgid "Select a WordPress menu that you created in the admin under Appearance > Menus."
3784
+ msgstr "یک فهرست که قبلا در تنظیمات پیشخوان ‪-‬ نمایش - فهرست ها ساخته اید را انتخاب کنید"
3785
+
3786
+ #: modules/menu/menu.php:42
3787
+ msgid "No Menus Found"
3788
+ msgstr "فهرستی یافت نشد."
3789
+
3790
+ #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
3791
+ msgid "Horizontal"
3792
+ msgstr "افقی"
3793
+
3794
+ #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
3795
+ msgid "Vertical"
3796
+ msgstr "عمودی"
3797
+
3798
+ #: modules/menu/menu.php:96 modules/menu/menu.php:134
3799
+ msgid "Expanded"
3800
+ msgstr "باز شد"
3801
+
3802
+ #: modules/menu/menu.php:112
3803
+ msgid "Submenu Icon"
3804
+ msgstr "آیکون زیر منوها"
3805
+
3806
+ #: modules/menu/menu.php:115 modules/menu/menu.php:125
3807
+ msgid "Arrows"
3808
+ msgstr "فِلش‌ها"
3809
+
3810
+ #: modules/menu/menu.php:116 modules/menu/menu.php:126
3811
+ msgid "Plus sign"
3812
+ msgstr "علامت بعلاوه"
3813
+
3814
+ #: modules/menu/menu.php:117 modules/menu/menu.php:223
3815
+ msgid "None"
3816
+ msgstr "هیچ کدام"
3817
+
3818
+ #: modules/menu/menu.php:122
3819
+ msgid "Submenu Icon click"
3820
+ msgstr "آیکون زیر منوها در کلیک"
3821
+
3822
+ #: modules/menu/menu.php:131
3823
+ msgid "Mobile Style"
3824
+ msgstr "استایل منو در موبایل"
3825
+
3826
+ #: modules/menu/menu.php:135
3827
+ msgid "Hamburger Icon"
3828
+ msgstr "آیکون همبرگری"
3829
+
3830
+ #: modules/menu/menu.php:136
3831
+ msgid "Hamburger Icon + label"
3832
+ msgstr "آیکون همبرگری با لیبل"
3833
+
3834
+ #: modules/menu/menu.php:137
3835
+ msgid "Menu Button"
3836
+ msgstr "دکمه منو"
3837
+
3838
+ #: modules/menu/menu.php:153
3839
+ msgid "Menu Alignment"
3840
+ msgstr "چیدمان منو"
3841
+
3842
+ #: modules/menu/menu.php:164
3843
+ msgid "Submenu Drop Shadow"
3844
+ msgstr "سایه زیر منو"
3845
+
3846
+ #: modules/menu/menu.php:206
3847
+ msgid "Link Size"
3848
+ msgstr "سایز لینک"
3849
+
3850
+ #: modules/menu/menu.php:220
3851
+ msgid "Link Format"
3852
+ msgstr "فرمت لینک"
3853
+
3854
+ #: modules/menu/menu.php:224
3855
+ msgid "Uppercase"
3856
+ msgstr "با حروف بزرگ"
3857
+
3858
+ #: modules/menu/menu.php:225
3859
+ msgid "Lowercase"
3860
+ msgstr "با حروف کوچک"
3861
+
3862
+ #: modules/menu/menu.php:226
3863
+ msgid "Capitalize"
3864
+ msgstr "با حروف درشت"
3865
+
3866
+ #: modules/menu/menu.php:236
3867
+ msgid "Link Weight"
3868
+ msgstr "حجم فونت لینک"
3869
+
3870
+ #: modules/menu/menu.php:239
3871
+ msgid "Normal"
3872
+ msgstr "نرمال"
3873
+
3874
+ #: modules/menu/menu.php:240
3875
+ msgid "Bold"
3876
+ msgstr "برجسته"
3877
+
3878
+ #: modules/menu/menu.php:241
3879
+ msgid "Light"
3880
+ msgstr "سبک"
3881
+
3882
+ #: modules/menu/menu.php:251
3883
+ msgid "Horizontal Spacing"
3884
+ msgstr "فاصله افقی"
3885
+
3886
+ #: modules/menu/menu.php:274
3887
+ msgid "Vertical Spacing"
3888
+ msgstr "فاصله عمودی"
3889
+
3890
+ #: modules/menu/menu.php:299
3891
+ msgid "Backgrounds"
3892
+ msgstr "پس‌زمینه ها"
3893
+
3894
+ #: modules/menu/menu.php:303
3895
+ msgid "Menu Background Color"
3896
+ msgstr "رنگ پس زمینه منو"
3897
+
3898
+ #: modules/menu/menu.php:313 modules/menu/menu.php:331
3899
+ msgid "Menu Background Opacity"
3900
+ msgstr "میزان شفافیت پسزمینه منو"
3901
+
3902
+ #: modules/menu/menu.php:321
3903
+ msgid "Submenu Background Color"
3904
+ msgstr "رنگ پس زمینه زیر منو"
3905
+
3906
+ #: modules/menu/menu.php:340
3907
+ msgid "Link Background Hover Color"
3908
+ msgstr "رنگ زمینه لینک زمان قرار گرفتن موس بر روی آن"
3909
+
3910
+ #: modules/menu/menu.php:351 modules/separator/separator.php:14
3911
+ msgid "Separator"
3912
+ msgstr "جدا کننده"
3913
+
3914
+ #: modules/menu/menu.php:355
3915
+ msgid "Show Separators"
3916
+ msgstr "نمایش جداکننده ها"
3917
+
3918
+ #: modules/menu/menu.php:369
3919
+ msgid "Separator Color"
3920
+ msgstr "رنگ جدا کننده"
3921
+
3922
+ #: modules/menu/menu.php:374
3923
+ msgid "Separator Opacity"
3924
+ msgstr "شفافیت جداکننده"
3925
+
3926
+ #: modules/photo/photo.php:26
3927
+ msgid "Upload a photo or display one from the media library."
3928
+ msgstr "عکسی آپلود کنید و یا از یکی از عکس‌های موجود در کتابخانه رسانه استفاده کنید."
3929
+
3930
+ #: modules/photo/photo.php:391
3931
+ msgid "Photo Source"
3932
+ msgstr "منبع عکس"
3933
+
3934
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
3935
+ msgid "URL"
3936
+ msgstr "آدرس لینک"
3937
+
3938
+ #: modules/photo/photo.php:412
3939
+ msgid "Photo URL"
3940
+ msgstr "آدرس لینک عکس"
3941
+
3942
+ #: modules/photo/photo.php:413
3943
+ msgid "http://www.example.com/my-photo.jpg"
3944
+ msgstr "مثل: http://www.example.com/my-photo.jpg"
3945
+
3946
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
3947
+ msgid "Caption"
3948
+ msgstr "شرح"
3949
+
3950
+ #: modules/photo/photo.php:445
3951
+ msgid "Show Caption"
3952
+ msgstr "نمایش شرح"
3953
+
3954
+ #: modules/photo/photo.php:464
3955
+ msgid "Link Type"
3956
+ msgstr "نوع لینک"
3957
+
3958
+ #: modules/photo/photo.php:466
3959
+ msgctxt "Link type."
3960
+ msgid "None"
3961
+ msgstr "هیچ کدام"
3962
+
3963
+ #: modules/photo/photo.php:469
3964
+ msgid "Photo File"
3965
+ msgstr "فایل عکس"
3966
+
3967
+ #: modules/photo/photo.php:480
3968
+ msgid ""
3969
+ "Link type applies to how the image should be linked on click. You can choose a specific URL, the "
3970
+ "individual photo or a separate page with the photo."
3971
+ msgstr ""
3972
+ "نوع لینک بر روی چگونگی لینک شدن عکس اثر خواهد گذاشت. می‌توانید یک نشانی مشخص، یک عکس جداگانه و یا یک برگه‌ی "
3973
+ "جدا با عکس انتخاب کنید."
3974
+
3975
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
3976
+ msgid "Link URL"
3977
+ msgstr "آدرس لینک"
3978
+
3979
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
3980
+ #: modules/post-carousel/includes/post-grid-loop.php:22 modules/post-grid/includes/post-feed.php:14
3981
+ #: modules/post-grid/includes/post-grid.php:24 modules/post-slider/includes/post-loop.php:29
3982
+ #, php-format
3983
+ msgctxt "%s stands for author name."
3984
+ msgid "By %s"
3985
+ msgstr "توسط: ‪%s"
3986
+
3987
+ #: modules/post-carousel/post-carousel.php:14
3988
+ msgid "Posts Carousel"
3989
+ msgstr "اسلایدر پست ها"
3990
+
3991
+ #: modules/post-carousel/post-carousel.php:15
3992
+ msgid "Display a carousel of your WordPress posts."
3993
+ msgstr "نمایش اسلایدری از نوشته‌های وردپرس شما."
3994
+
3995
+ #: modules/post-carousel/post-carousel.php:110 modules/post-slider/post-slider.php:338
3996
+ msgid "Slider"
3997
+ msgstr "اسلایدر"
3998
+
3999
+ #: modules/post-carousel/post-carousel.php:120 modules/post-grid/post-grid.php:54
4000
+ #: modules/post-grid/post-grid.php:91
4001
+ msgid "Grid"
4002
+ msgstr "شبکه"
4003
+
4004
+ #: modules/post-carousel/post-carousel.php:152 modules/post-slider/post-slider.php:379
4005
+ #: modules/video/video.php:120
4006
+ msgid "Loop"
4007
+ msgstr "بازپخش"
4008
+
4009
+ #: modules/post-carousel/post-carousel.php:168 modules/post-slider/post-slider.php:395
4010
+ msgid "Number of Posts"
4011
+ msgstr "تعداد نوشته ها"
4012
+
4013
+ #: modules/post-carousel/post-carousel.php:175 modules/post-slider/post-slider.php:402
4014
+ msgid "Slider Controls"
4015
+ msgstr "کنترل اسلایدر"
4016
+
4017
+ #: modules/post-carousel/post-carousel.php:209 modules/post-grid/post-grid.php:14
4018
+ msgid "Posts"
4019
+ msgstr "نوشته ها"
4020
+
4021
+ #: modules/post-carousel/post-carousel.php:213
4022
+ msgid "Post Max Width"
4023
+ msgstr "حداکثر عرض نوشته"
4024
+
4025
+ #: modules/post-carousel/post-carousel.php:221 modules/post-grid/post-grid.php:103
4026
+ msgid "Post Spacing"
4027
+ msgstr "فاصله بین نوشته ها"
4028
+
4029
+ #: modules/post-carousel/post-carousel.php:229
4030
+ msgid "Equalize Column Heights"
4031
+ msgstr "ارتفاع برابر برای تمامی ستون ها"
4032
+
4033
+ #: modules/post-carousel/post-carousel.php:238
4034
+ msgid "Post Hover Transition"
4035
+ msgstr "مدت زمان تغییر نوشته هنگام هاور"
4036
+
4037
+ #: modules/post-carousel/post-carousel.php:242 modules/post-grid/post-grid.php:248
4038
+ msgid "Slide Up"
4039
+ msgstr "اسلاید از پايين"
4040
+
4041
+ #: modules/post-carousel/post-carousel.php:243 modules/post-grid/post-grid.php:249
4042
+ msgid "Slide Down"
4043
+ msgstr "اسلاید از بالا"
4044
+
4045
+ #: modules/post-carousel/post-carousel.php:244 modules/post-grid/post-grid.php:250
4046
+ msgid "Scale Up"
4047
+ msgstr "اندازه بالا"
4048
+
4049
+ #: modules/post-carousel/post-carousel.php:245 modules/post-grid/post-grid.php:251
4050
+ msgid "Scale Down"
4051
+ msgstr "اندازه پایین"
4052
+
4053
+ #: modules/post-carousel/post-carousel.php:251 modules/post-grid/post-grid.php:112
4054
+ #: modules/post-slider/post-slider.php:456
4055
+ msgid "Featured Image"
4056
+ msgstr "تصویر شاخص"
4057
+
4058
+ #: modules/post-carousel/post-carousel.php:279 modules/post-grid/post-grid.php:261
4059
+ msgid "Use Icon for Posts"
4060
+ msgstr "استفاده از آیکون برای نوشته ها"
4061
+
4062
+ #: modules/post-carousel/post-carousel.php:293 modules/post-grid/post-grid.php:275
4063
+ msgid "Post Icon"
4064
+ msgstr "آیکون نوشته"
4065
+
4066
+ #: modules/post-carousel/post-carousel.php:297 modules/post-grid/post-grid.php:279
4067
+ msgid "Post Icon Position"
4068
+ msgstr "موقعیت آیکون نوشته"
4069
+
4070
+ #: modules/post-carousel/post-carousel.php:300 modules/post-grid/post-grid.php:133
4071
+ #: modules/post-grid/post-grid.php:282
4072
+ msgid "Above Text"
4073
+ msgstr "بالای متن"
4074
+
4075
+ #: modules/post-carousel/post-carousel.php:301 modules/post-grid/post-grid.php:283
4076
+ msgid "Below Text"
4077
+ msgstr "زیر متن"
4078
+
4079
+ #: modules/post-carousel/post-carousel.php:306 modules/post-grid/post-grid.php:288
4080
+ msgid "Post Icon Size"
4081
+ msgstr "سایز آیکون نوشته"
4082
+
4083
+ #: modules/post-carousel/post-carousel.php:315 modules/post-grid/post-grid.php:145
4084
+ #: modules/post-slider/post-slider.php:495
4085
+ msgid "Post Info"
4086
+ msgstr "اطلاعات نوشته"
4087
+
4088
+ #: modules/post-carousel/post-carousel.php:342 modules/post-grid/post-grid.php:172
4089
+ #: modules/post-slider/post-slider.php:522
4090
+ msgid "Date Format"
4091
+ msgstr "فرمت تاریخ"
4092
+
4093
+ #: modules/post-carousel/post-carousel.php:372 modules/post-grid/post-grid.php:220
4094
+ #: modules/post-slider/post-slider.php:561
4095
+ msgid "More Link"
4096
+ msgstr "لینک بیشتر"
4097
+
4098
+ #: modules/post-carousel/post-carousel.php:381 modules/post-grid/post-grid.php:229
4099
+ #: modules/post-slider/post-slider.php:570
4100
+ msgid "More Link Text"
4101
+ msgstr "متن لینک (بیشتر)"
4102
+
4103
+ #: modules/post-carousel/post-carousel.php:418 modules/post-grid/post-grid.php:307
4104
+ msgid "Post Icon Color"
4105
+ msgstr "رنگ آیکون نوشته"
4106
+
4107
+ #: modules/post-grid/includes/frontend.php:41
4108
+ msgid "No posts found."
4109
+ msgstr "نوشته‌ای پیدا نمیشود"
4110
+
4111
+ #: modules/post-grid/post-grid.php:15
4112
+ msgid "Display a grid of your WordPress posts."
4113
+ msgstr "نمایش شبکه‌ای از نوشته‌های وردپرس شما."
4114
+
4115
+ #: modules/post-grid/post-grid.php:51
4116
+ msgid "Layout Style"
4117
+ msgstr "سبک طراحی"
4118
+
4119
+ #: modules/post-grid/post-grid.php:56
4120
+ msgid "Feed"
4121
+ msgstr "خوراک وب"
4122
+
4123
+ #: modules/post-grid/post-grid.php:74
4124
+ msgid "Pagination Style"
4125
+ msgstr "نحوه صفحه گذاری"
4126
+
4127
+ #: modules/post-grid/post-grid.php:77
4128
+ msgid "Numbers"
4129
+ msgstr "اعداد"
4130
+
4131
+ #: modules/post-grid/post-grid.php:79
4132
+ msgctxt "Pagination style."
4133
+ msgid "None"
4134
+ msgstr "هیچ کدام"
4135
+
4136
+ #: modules/post-grid/post-grid.php:84
4137
+ msgid "Posts Per Page"
4138
+ msgstr "تعداد نوشته ها در هر صفحه"
4139
+
4140
+ #: modules/post-grid/post-grid.php:95
4141
+ msgid "Post Width"
4142
+ msgstr "عرض نوشته"
4143
+
4144
+ #: modules/post-grid/post-grid.php:134
4145
+ msgid "Beside Text"
4146
+ msgstr "کنار متن"
4147
+
4148
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
4149
+ msgid "Comments"
4150
+ msgstr "دیدگاه‎ها"
4151
+
4152
+ #: modules/post-grid/post-grid.php:211
4153
+ msgid "Content Type"
4154
+ msgstr "نوع محتوا"
4155
+
4156
+ #: modules/post-grid/post-grid.php:214
4157
+ msgid "Excerpt"
4158
+ msgstr "گلچین کردن"
4159
+
4160
+ #: modules/post-grid/post-grid.php:215
4161
+ msgid "Full Text"
4162
+ msgstr "نمایش کل متن"
4163
+
4164
+ #: modules/post-grid/post-grid.php:244
4165
+ msgid "Hover Transition"
4166
+ msgstr "مدت اعمال تغییرات پس از هاور"
4167
+
4168
+ #: modules/post-slider/post-slider.php:14
4169
+ msgid "Posts Slider"
4170
+ msgstr "اسلایدر نوشته‌ها"
4171
+
4172
+ #: modules/post-slider/post-slider.php:15
4173
+ msgid "Display a slider of your WordPress posts."
4174
+ msgstr "نمایش اسلایدری از نوشته‌های وردپرس شما."
4175
+
4176
+ #: modules/post-slider/post-slider.php:350
4177
+ msgid "This setting is the minimum height of the post slider. Content will expand the height automatically."
4178
+ msgstr "این تنظیم حداقل ارتفاع هر اسلاید را تعیین می‌کند. ارتفاع محتوا به‌طور خودکار گسترده خواهد شد."
4179
+
4180
+ #: modules/post-slider/post-slider.php:440
4181
+ msgid "Show Featured Image?"
4182
+ msgstr "تصویر شاخص را نمایش می دهید؟"
4183
+
4184
+ #: modules/post-slider/post-slider.php:628
4185
+ msgid ""
4186
+ "The position will move the content layout selections left, right or bottom over the background of the "
4187
+ "slide."
4188
+ msgstr "موقعیت طرح محتوا را به چپ، راست یا وسط پس‌زمینه‌ی اسلاید حرکت می‌دهد."
4189
+
4190
+ #: modules/post-slider/post-slider.php:647
4191
+ msgid ""
4192
+ "The position will move the content layout selections left or right or center of the thumbnail of the slide."
4193
+ msgstr "موقعیت طرح، محتوا را به چپ، راست یا وسط بندانگشتی اسلاید حرکت می‌دهد."
4194
+
4195
+ #: modules/post-slider/post-slider.php:663
4196
+ msgid "Text Width"
4197
+ msgstr "عرض متن"
4198
+
4199
+ #: modules/post-slider/post-slider.php:671
4200
+ msgid "Text Padding"
4201
+ msgstr "فاصله داخلی متن"
4202
+
4203
+ #: modules/post-slider/post-slider.php:736
4204
+ msgid "Text Background Gradient"
4205
+ msgstr "شفافیت پس زمینه متن"
4206
+
4207
+ #: modules/pricing-table/pricing-table.php:14
4208
+ msgid "Pricing Table"
4209
+ msgstr "جدول قیمت"
4210
+
4211
+ #: modules/pricing-table/pricing-table.php:15
4212
+ msgid "A simple pricing table generator."
4213
+ msgstr "سازنده ساده‌ی جدول قیمت‌گذاری"
4214
+
4215
+ #: modules/pricing-table/pricing-table.php:26
4216
+ msgid "Pricing Boxes"
4217
+ msgstr "جعبه های قیمت گذاری"
4218
+
4219
+ #: modules/pricing-table/pricing-table.php:33
4220
+ msgid "Pricing Box"
4221
+ msgstr "جعبه قیمت"
4222
+
4223
+ #: modules/pricing-table/pricing-table.php:50
4224
+ msgid "Box Spacing"
4225
+ msgstr "فاصله جعبه‌ها"
4226
+
4227
+ #: modules/pricing-table/pricing-table.php:53 modules/testimonials/testimonials.php:40
4228
+ msgid "Wide"
4229
+ msgstr "عریض"
4230
+
4231
+ #: modules/pricing-table/pricing-table.php:54
4232
+ msgid "Tight"
4233
+ msgstr "فشرده"
4234
+
4235
+ #: modules/pricing-table/pricing-table.php:59
4236
+ msgid "Features Min Height"
4237
+ msgstr "حداقل ارتفاع ویژگی‌ها"
4238
+
4239
+ #: modules/pricing-table/pricing-table.php:63
4240
+ msgid "Use this to normalize the height of your boxes when they have different numbers of features."
4241
+ msgstr "از این امکان برای هم‌ارتفاع کردن جعبه‌هایی استفاده کنید که ارتفاع یکسانی ندارند."
4242
+
4243
+ #: modules/pricing-table/pricing-table.php:70
4244
+ msgctxt "Border size."
4245
+ msgid "Wide"
4246
+ msgstr "عریض"
4247
+
4248
+ #: modules/pricing-table/pricing-table.php:71
4249
+ msgctxt "Border size."
4250
+ msgid "Tight"
4251
+ msgstr "فشرده"
4252
+
4253
+ #: modules/pricing-table/pricing-table.php:84
4254
+ msgid "Add Pricing Box"
4255
+ msgstr "افزودن جعبه قیمت گذاری"
4256
+
4257
+ #: modules/pricing-table/pricing-table.php:98
4258
+ msgid "Title Size"
4259
+ msgstr "سایز عنوان"
4260
+
4261
+ #: modules/pricing-table/pricing-table.php:107
4262
+ msgid "Price Box"
4263
+ msgstr "جعبه قیمت"
4264
+
4265
+ #: modules/pricing-table/pricing-table.php:111 modules/woocommerce/woocommerce.php:190
4266
+ msgid "Price"
4267
+ msgstr "قیمت"
4268
+
4269
+ #: modules/pricing-table/pricing-table.php:115
4270
+ msgid "Duration"
4271
+ msgstr "بازه زمانی"
4272
+
4273
+ #: modules/pricing-table/pricing-table.php:116
4274
+ msgid "per Year"
4275
+ msgstr "سالانه"
4276
+
4277
+ #: modules/pricing-table/pricing-table.php:120
4278
+ msgid "Price Size"
4279
+ msgstr "اندازه‌ی قیمت"
4280
+
4281
+ #: modules/pricing-table/pricing-table.php:133 modules/subscribe-form/subscribe-form.php:168
4282
+ msgid "Button Text"
4283
+ msgstr "متن دکمه"
4284
+
4285
+ #: modules/pricing-table/pricing-table.php:137
4286
+ msgid "Button URL"
4287
+ msgstr "آدرس لینک دکمه"
4288
+
4289
+ #: modules/pricing-table/pricing-table.php:142
4290
+ msgctxt "Price features displayed in pricing box."
4291
+ msgid "Features"
4292
+ msgstr "ویژگی ها"
4293
+
4294
+ #: modules/pricing-table/pricing-table.php:147
4295
+ msgid "One feature per line. HTML is okay."
4296
+ msgstr "یک ویژگی در هر خط"
4297
+
4298
+ #: modules/pricing-table/pricing-table.php:162
4299
+ msgid "Box Background"
4300
+ msgstr "پس زمینه جعبه"
4301
+
4302
+ #: modules/pricing-table/pricing-table.php:167
4303
+ msgid "Box Foreground"
4304
+ msgstr "پیش زمینه جعبه‌ها"
4305
+
4306
+ #: modules/pricing-table/pricing-table.php:173
4307
+ msgid "Accent Color"
4308
+ msgstr "شدت رنگ"
4309
+
4310
+ #: modules/pricing-table/pricing-table.php:178
4311
+ msgid "Accent Text Color"
4312
+ msgstr "شدت رنگ متن"
4313
+
4314
+ #: modules/pricing-table/pricing-table.php:182
4315
+ msgid "Box Top Margin"
4316
+ msgstr "فاصله بالا جعبه"
4317
+
4318
+ #: modules/rich-text/rich-text.php:15
4319
+ msgid "A WYSIWYG text editor."
4320
+ msgstr "ویرایشگر دیداری"
4321
+
4322
+ #: modules/separator/separator.php:15
4323
+ msgid "A divider line to separate content."
4324
+ msgstr "خط جدا کننده برای جدا کردن محتوا."
4325
+
4326
+ #: modules/separator/separator.php:85
4327
+ msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
4328
+ msgstr ""
4329
+ "نوع حاشیه مورد استفاده. حاشیه های دوبل باید پهنایی حداقل 3 پیکسل داشته باشند تا بتوانند به درستی نمایش "
4330
+ "داده شوند."
4331
+
4332
+ #: modules/sidebar/includes/settings-general.php:5 modules/sidebar/sidebar.php:14
4333
+ msgid "Sidebar"
4334
+ msgstr "ستون کناری"
4335
+
4336
+ #: modules/sidebar/sidebar.php:15
4337
+ msgid "Display a WordPress sidebar that has been registered by the current theme."
4338
+ msgstr "نمایش یک ستون کناری که توسط پوسته‌ی فعلی ثبت شده است."
4339
+
4340
+ #: modules/slideshow/slideshow.php:14
4341
+ msgid "Slideshow"
4342
+ msgstr "اسلایدشو"
4343
+
4344
+ #: modules/slideshow/slideshow.php:15
4345
+ msgid "Display multiple photos in a slideshow view."
4346
+ msgstr "نمایش چند عکس در یک اسلایدشو."
4347
+
4348
+ #: modules/slideshow/slideshow.php:310
4349
+ msgid "Skin Color"
4350
+ msgstr "رنگ پوسته"
4351
+
4352
+ #: modules/slideshow/slideshow.php:313
4353
+ msgctxt "Color."
4354
+ msgid "Light"
4355
+ msgstr "روشن"
4356
+
4357
+ #: modules/slideshow/slideshow.php:314
4358
+ msgctxt "Color."
4359
+ msgid "Dark"
4360
+ msgstr "تیره"
4361
+
4362
+ #: modules/slideshow/slideshow.php:316
4363
+ msgid ""
4364
+ "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and "
4365
+ "vice versa for dark."
4366
+ msgstr "اگر پوسته‌ی سایت به‌طور کلی روشن است از روشن و اگر تیره است از تیره استفاده کنید."
4367
+
4368
+ #: modules/slideshow/slideshow.php:326
4369
+ msgid ""
4370
+ "Crop set to no will fit the slideshow images to the height you specify and keep the width proportional, "
4371
+ "whereas crop set to yes will fit the slideshow images to all sides of the content area while cropping the "
4372
+ "left and right to fit the height you specify."
4373
+ msgstr ""
4374
+ "اگر برش روی نه باشد، ارتفاع عکس با ارتفاعی که شما تعیین کرده‌باشید تنظیم می‌شود و به نسبت آن پهنا نیز تغییر "
4375
+ "می‌کند، در صورتی که برش روی بله باشد، عکس ها به اندازه اسلایدها بزرگ شده و کناره های عکس به نسبت بزرگنمایی "
4376
+ "حذف خواهد شد."
4377
+
4378
+ #: modules/slideshow/slideshow.php:330
4379
+ msgid "Disable Right-Click"
4380
+ msgstr "غیر فعال کردن کلیک راست"
4381
+
4382
+ #: modules/slideshow/slideshow.php:350
4383
+ msgctxt "Click action type."
4384
+ msgid "None"
4385
+ msgstr "هیچ کدام"
4386
+
4387
+ #: modules/slideshow/slideshow.php:374
4388
+ msgid "Playback"
4389
+ msgstr "بازپخش"
4390
+
4391
+ #: modules/slideshow/slideshow.php:400
4392
+ msgctxt "Slideshow transition."
4393
+ msgid "None"
4394
+ msgstr "هیچ کدام"
4395
+
4396
+ #: modules/slideshow/slideshow.php:437
4397
+ msgid "Controls"
4398
+ msgstr "کنترل‌ها"
4399
+
4400
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
4401
+ msgid "Navigation Arrows"
4402
+ msgstr "فلش‌های ناوبری"
4403
+
4404
+ #: modules/slideshow/slideshow.php:450
4405
+ msgid ""
4406
+ "Navigational arrows allow the visitor to freely move through the images in your slideshow. These are "
4407
+ "larger arrows that overlay your slideshow images and are separate from the control bar navigational arrows."
4408
+ msgstr ""
4409
+ "فلش ناوبری اجازه می‌دهد که کاربر نمایش اسلاید دلخواهش را کنترل کند. این‌ها فلش‌های بزرگتری هستند که روی "
4410
+ "اسلاید‌های شما قرار می‌گیرند و جدا از نوار کنترل و دکمه‌های ناوبری آن هستند."
4411
+
4412
+ #: modules/slideshow/slideshow.php:455
4413
+ msgid "Control Bar"
4414
+ msgstr "نوار کنترل"
4415
+
4416
+ #: modules/slideshow/slideshow.php:459
4417
+ msgid "Nav Type"
4418
+ msgstr "نوع نوار کنترل"
4419
+
4420
+ #: modules/slideshow/slideshow.php:462
4421
+ msgctxt "Nav type."
4422
+ msgid "None"
4423
+ msgstr "هیچ کدام"
4424
+
4425
+ #: modules/slideshow/slideshow.php:463
4426
+ msgid "Buttons"
4427
+ msgstr "دکمه‌ها"
4428
+
4429
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
4430
+ msgid "Thumbs"
4431
+ msgstr "بند انگشتی‌ها"
4432
+
4433
+ #: modules/slideshow/slideshow.php:479
4434
+ msgid "Nav Position"
4435
+ msgstr "موقعیت نوار کنترل"
4436
+
4437
+ #: modules/slideshow/slideshow.php:489
4438
+ msgid "Control Bar Buttons"
4439
+ msgstr "دکمه‌های نوار کنترل"
4440
+
4441
+ #: modules/slideshow/slideshow.php:502
4442
+ msgid "Play Button"
4443
+ msgstr "دکمه پخش"
4444
+
4445
+ #: modules/slideshow/slideshow.php:511
4446
+ msgid "Fullscreen Button"
4447
+ msgstr "دکمه تمام صفحه"
4448
+
4449
+ #: modules/slideshow/slideshow.php:520
4450
+ msgid "Photo Count"
4451
+ msgstr "شمارش عکس"
4452
+
4453
+ #: modules/slideshow/slideshow.php:529
4454
+ msgid "Thumbs Button"
4455
+ msgstr "دکمه عکس‌های بند انگشتی"
4456
+
4457
+ #: modules/slideshow/slideshow.php:538
4458
+ msgid "Caption Button"
4459
+ msgstr "شرح دکمه"
4460
+
4461
+ #: modules/slideshow/slideshow.php:547
4462
+ msgid "Social Button"
4463
+ msgstr "دکمه شبکه های اجتماعی"
4464
+
4465
+ #: modules/slideshow/slideshow.php:557
4466
+ msgid "Control Bar Overlay"
4467
+ msgstr "پوشش نوار کنترل"
4468
+
4469
+ #: modules/slideshow/slideshow.php:561
4470
+ msgid "Overlay Enabled"
4471
+ msgstr "پوشش فعال شد"
4472
+
4473
+ #: modules/slideshow/slideshow.php:572
4474
+ msgid ""
4475
+ "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site "
4476
+ "below the slideshow completely."
4477
+ msgstr ""
4478
+ "پوشش نوار کنترل تعیین میکند که دکمه‌هایی که تعیین میکنید روی اسلاید‌ها قرار بگیرند و یا به طور کلی در زیر آن."
4479
+
4480
+ #: modules/slideshow/slideshow.php:576
4481
+ msgid "Overlay Hide"
4482
+ msgstr "پنهان‌کردن پوشش"
4483
+
4484
+ #: modules/slideshow/slideshow.php:582
4485
+ msgid ""
4486
+ "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear "
4487
+ "upon mouse over."
4488
+ msgstr ""
4489
+ "پنهان‌کردن پوشش، نوار کنترل را پس از هر تعداد ثانیه‌ای که شما در زیر تعیین کنید، مخفی می‌کند. پس از حضور ماوس "
4490
+ "دوباره ظاهر خواهند شد."
4491
+
4492
+ #: modules/slideshow/slideshow.php:586
4493
+ msgid "Overlay Hide Delay"
4494
+ msgstr "تاخیر پهان‌کردن پوشش"
4495
+
4496
+ #: modules/slideshow/slideshow.php:598
4497
+ msgid "Thumbs Size"
4498
+ msgstr "اندازه بندانگشتی ها"
4499
+
4500
+ #: modules/slideshow/slideshow.php:607
4501
+ msgid "Social"
4502
+ msgstr "اجتماعی"
4503
+
4504
+ #: modules/slideshow/slideshow.php:611
4505
+ msgid "Facebook Button"
4506
+ msgstr "دکمه فیسبوک"
4507
+
4508
+ #: modules/slideshow/slideshow.php:623
4509
+ msgid "Twitter Button"
4510
+ msgstr "دکمه توییتر"
4511
+
4512
+ #: modules/slideshow/slideshow.php:635
4513
+ msgid "Google Plus Button"
4514
+ msgstr "دکمه گوگل پلاس"
4515
+
4516
+ #: modules/slideshow/slideshow.php:647
4517
+ msgid "Pinterest Button"
4518
+ msgstr "دکمه پینترست"
4519
+
4520
+ #: modules/social-buttons/social-buttons.php:14
4521
+ msgid "Social Buttons"
4522
+ msgstr "شبکه های اجتماعی"
4523
+
4524
+ #: modules/social-buttons/social-buttons.php:15
4525
+ msgid "Displays social buttons."
4526
+ msgstr "نمایش دکمه های اجتماعی."
4527
+
4528
+ #: modules/social-buttons/social-buttons.php:71
4529
+ msgid "Target URL"
4530
+ msgstr "لینک هدف"
4531
+
4532
+ #: modules/social-buttons/social-buttons.php:75
4533
+ msgid "Current Page"
4534
+ msgstr "برگه فعلی"
4535
+
4536
+ #: modules/social-buttons/social-buttons.php:82
4537
+ msgid ""
4538
+ "The Target URL field correlates to the page you would like your social icons to interface with. For "
4539
+ "example, if you show Facebook, the user will \"Like\" whatever you put in this field."
4540
+ msgstr ""
4541
+ "آدرس لینک، ارتباطی بین آیکون های شبکه های اجتماعی و صفحات شما ایجاد می کند. به این شکل که بطور مثال:اگر "
4542
+ "شما فیس بوک را نمایش دهید، مخاطب هر چیزی که در این بخش وارد کنید را like خواهد کرد."
4543
+
4544
+ #: modules/social-buttons/social-buttons.php:89
4545
+ msgid "Custom URL"
4546
+ msgstr "آدرس لینک سفارشی"
4547
+
4548
+ #: modules/social-buttons/social-buttons.php:107
4549
+ msgid "Show Facebook"
4550
+ msgstr "نمایش آیکون فیس بوک"
4551
+
4552
+ #: modules/social-buttons/social-buttons.php:116
4553
+ msgid "Show Twitter"
4554
+ msgstr "نمایش آیکون توییتر"
4555
+
4556
+ #: modules/social-buttons/social-buttons.php:125
4557
+ msgid "Show Google+"
4558
+ msgstr "نمایش آیکون گوگل پلاس"
4559
+
4560
+ #: modules/subscribe-form/includes/frontend.php:5
4561
+ msgctxt "First and last name."
4562
+ msgid "Name"
4563
+ msgstr "نام"
4564
+
4565
+ #: modules/subscribe-form/includes/frontend.php:12
4566
+ msgid "Please enter a valid email address."
4567
+ msgstr "لطفا یک آدرس ایمیل معتبر وارد کنید."
4568
+
4569
+ #: modules/subscribe-form/includes/frontend.php:41
4570
+ msgid "Something went wrong. Please check your entries and try again."
4571
+ msgstr "مشکلی پیش آمد. لطفا داده های خود را بررسی کرده و دوباره سعی کنید"
4572
+
4573
+ #: modules/subscribe-form/subscribe-form.php:18
4574
+ msgid "Subscribe Form"
4575
+ msgstr "فرم عضویت"
4576
+
4577
+ #: modules/subscribe-form/subscribe-form.php:19
4578
+ msgid "Adds a simple subscribe form to your layout."
4579
+ msgstr "فرم ساده عضویت به طرح شما می فزاید"
4580
+
4581
+ #: modules/subscribe-form/subscribe-form.php:118
4582
+ msgid "Success"
4583
+ msgstr "موفقیت"
4584
+
4585
+ #: modules/subscribe-form/subscribe-form.php:122
4586
+ msgid "Success Action"
4587
+ msgstr "عمل موفق"
4588
+
4589
+ #: modules/subscribe-form/subscribe-form.php:124
4590
+ msgid "Show Message"
4591
+ msgstr "نمایش پیام"
4592
+
4593
+ #: modules/subscribe-form/subscribe-form.php:125
4594
+ msgid "Redirect"
4595
+ msgstr "تعیین مجدد مسیر"
4596
+
4597
+ #: modules/subscribe-form/subscribe-form.php:144
4598
+ msgid "Thanks for subscribing! Please check your email for further instructions."
4599
+ msgstr "ثبت نام شما با موفقیت انجام شد.لطفا ایمیل خود را برای اطلاعات بیشتر بررسی کنید."
4600
+
4601
+ #: modules/subscribe-form/subscribe-form.php:151
4602
+ msgid "Success URL"
4603
+ msgstr "آدرس لینک موفق"
4604
+
4605
+ #: modules/subscribe-form/subscribe-form.php:169
4606
+ msgid "Subscribe!"
4607
+ msgstr "هم اکنون عضو شوید!"
4608
+
4609
+ #: modules/tabs/tabs.php:14
4610
+ msgid "Tabs"
4611
+ msgstr "سربرگ‌ها"
4612
+
4613
+ #: modules/tabs/tabs.php:15
4614
+ msgid "Display a collection of tabbed content."
4615
+ msgstr "نمایش مجموعه ای از محتوای برگه"
4616
+
4617
+ #: modules/testimonials/testimonials.php:14 modules/testimonials/testimonials.php:60
4618
+ #: modules/testimonials/testimonials.php:174
4619
+ msgid "Testimonials"
4620
+ msgstr "دیدگاه مشتریان"
4621
+
4622
+ #: modules/testimonials/testimonials.php:15
4623
+ msgid "An animated tesimonials area."
4624
+ msgstr "منطقه دیدگاه متشریان متحرک."
4625
+
4626
+ #: modules/testimonials/testimonials.php:41
4627
+ msgid "Compact"
4628
+ msgstr "فشرده"
4629
+
4630
+ #: modules/testimonials/testimonials.php:51
4631
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
4632
+ msgstr "پهن برای ردیف‌هایی با 1 ستون است، فشرده برای ردیف‌هایی با چند ستون."
4633
+
4634
+ #: modules/testimonials/testimonials.php:78
4635
+ msgid "Slider Settings"
4636
+ msgstr "تنظیمات اسلایدر"
4637
+
4638
+ #: modules/testimonials/testimonials.php:135
4639
+ msgid "Arrow Color"
4640
+ msgstr "رنگ فلش"
4641
+
4642
+ #: modules/testimonials/testimonials.php:165
4643
+ msgid "Dot Color"
4644
+ msgstr "رنگ نقطه"
4645
+
4646
+ #: modules/testimonials/testimonials.php:181
4647
+ msgid "Testimonial"
4648
+ msgstr "دیدگاه مشتریان"
4649
+
4650
+ #: modules/testimonials/testimonials.php:197
4651
+ msgid "Add Testimonial"
4652
+ msgstr "افزودن دیدگاه مشتری"
4653
+
4654
+ #: modules/video/video.php:20
4655
+ msgid "Render a WordPress or embedable video."
4656
+ msgstr "نمایش یک ویدئوی وردپرس یا یک ویدئوی جاسازی (Embed) شده"
4657
+
4658
+ #: modules/video/video.php:83
4659
+ msgid "Video Type"
4660
+ msgstr "نوع ویدیو"
4661
+
4662
+ #: modules/video/video.php:87
4663
+ msgid "Embed"
4664
+ msgstr "جاسازی شده (Embed)"
4665
+
4666
+ #: modules/video/video.php:104
4667
+ msgctxt "Video preview/fallback image."
4668
+ msgid "Poster"
4669
+ msgstr "عکس پیش نمایش"
4670
+
4671
+ #: modules/widget/includes/frontend.php:35 modules/widget/includes/settings-general.php:46
4672
+ #, php-format
4673
+ msgctxt "%s stands for widget slug."
4674
+ msgid "%s no longer exists."
4675
+ msgstr "%s دیگر وجود ندارد."
4676
+
4677
+ #: modules/widget/widget.php:14
4678
+ msgid "Widget"
4679
+ msgstr "ابزارک"
4680
+
4681
+ #: modules/widget/widget.php:15
4682
+ msgid "Display a WordPress widget."
4683
+ msgstr "نمایش یک ابزارک وردپرس."
4684
+
4685
+ #: modules/woocommerce/woocommerce.php:16
4686
+ msgid "WooCommerce"
4687
+ msgstr "ووکامرس"
4688
+
4689
+ #: modules/woocommerce/woocommerce.php:17
4690
+ msgid "Display products or categories from your WooCommerce store."
4691
+ msgstr "نمایش محصولات یا دسته‌ی کالاها از فروشگاه ووکامرس شما."
4692
+
4693
+ #: modules/woocommerce/woocommerce.php:61
4694
+ msgid "Single Product"
4695
+ msgstr "محصول تنها"
4696
+
4697
+ #: modules/woocommerce/woocommerce.php:62 modules/woocommerce/woocommerce.php:113
4698
+ msgid "Multiple Products"
4699
+ msgstr "چند محصول"
4700
+
4701
+ #: modules/woocommerce/woocommerce.php:63
4702
+ msgid "\"Add to Cart\" Button"
4703
+ msgstr "دکمه‌ی “افزودن به سبد خرید”"
4704
+
4705
+ #: modules/woocommerce/woocommerce.php:64
4706
+ msgid "Categories"
4707
+ msgstr "موضوعات"
4708
+
4709
+ #: modules/woocommerce/woocommerce.php:65
4710
+ msgid "Cart"
4711
+ msgstr "سبد خرید"
4712
+
4713
+ #: modules/woocommerce/woocommerce.php:66
4714
+ msgid "Checkout"
4715
+ msgstr "نمایش سبد خرید"
4716
+
4717
+ #: modules/woocommerce/woocommerce.php:67
4718
+ msgid "Order Tracking"
4719
+ msgstr "رهگیری سفارش"
4720
+
4721
+ #: modules/woocommerce/woocommerce.php:68
4722
+ msgid "My Account"
4723
+ msgstr "اکانت من"
4724
+
4725
+ #: modules/woocommerce/woocommerce.php:87
4726
+ msgid "Product ID"
4727
+ msgstr "شناسه محصول"
4728
+
4729
+ #: modules/woocommerce/woocommerce.php:90
4730
+ msgid ""
4731
+ "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this "
4732
+ "unique product ID by visiting the Products area and rolling over the product. The unique ID will be the "
4733
+ "first attribute."
4734
+ msgstr ""
4735
+ "در هنگام اضافه کردن محصولات در ووکامرس در بخش کالاهای ووکامرس، هر محصول یک ID اختصاصی خواهد داشت. این "
4736
+ "نامک‌ها را می‌توانید با رفتن به بخش کالاها و دیدن کالا پیدا کنید. ID محصول اولین ویژگی خواهد بود."
4737
+
4738
+ #: modules/woocommerce/woocommerce.php:94
4739
+ msgid "Parent Category ID"
4740
+ msgstr "شناسه دسته بندی مادر"
4741
+
4742
+ #: modules/woocommerce/woocommerce.php:97
4743
+ msgid ""
4744
+ "As you add product categories in the WooCommerce Products area, each will be assigned a unique ID. This ID "
4745
+ "can be found by hovering on the category in the categories area under Products and looking in the URL that "
4746
+ "is displayed in your browser. The ID will be the only number value in the URL."
4747
+ msgstr ""
4748
+ "در هنگام اضافه کردن دسته‌های محصولات در ووکامرس در بخش محصولات ووکامرس، هر دسته‌بندی یک ID دارد که بایستی "
4749
+ "وارد شود. این ID را می‌توانید در بخش دسته‌بندی‌های کالاها در ووکامرس پیدا کنید. می توانید چند دسته را با ‪,‬ "
4750
+ "وارد کنید."
4751
+
4752
+ #: modules/woocommerce/woocommerce.php:101 modules/woocommerce/woocommerce.php:172
4753
+ msgid "Columns"
4754
+ msgstr "ستون ها"
4755
+
4756
+ #: modules/woocommerce/woocommerce.php:117
4757
+ msgid "Products Source"
4758
+ msgstr "منبع محصولات"
4759
+
4760
+ #: modules/woocommerce/woocommerce.php:120
4761
+ msgid "Products IDs"
4762
+ msgstr "شناسه های محصولات"
4763
+
4764
+ #: modules/woocommerce/woocommerce.php:121
4765
+ msgid "Product Category"
4766
+ msgstr "دسته بندی محصول"
4767
+
4768
+ #: modules/woocommerce/woocommerce.php:122
4769
+ msgid "Recent Products"
4770
+ msgstr "آخرین محصولات"
4771
+
4772
+ #: modules/woocommerce/woocommerce.php:123
4773
+ msgid "Featured Products"
4774
+ msgstr "محصولات ویژه"
4775
+
4776
+ #: modules/woocommerce/woocommerce.php:124
4777
+ msgid "Sale Products"
4778
+ msgstr "محصولات حراج شده"
4779
+
4780
+ #: modules/woocommerce/woocommerce.php:125
4781
+ msgid "Best Selling Products"
4782
+ msgstr "پرفروش ترین محصولات"
4783
+
4784
+ #: modules/woocommerce/woocommerce.php:126
4785
+ msgid "Top Rated Products"
4786
+ msgstr "پرامتیازترین محصولات"
4787
+
4788
+ #: modules/woocommerce/woocommerce.php:154
4789
+ msgid "Product IDs"
4790
+ msgstr "شناسه‌های محصول"
4791
+
4792
+ #: modules/woocommerce/woocommerce.php:156
4793
+ msgid ""
4794
+ "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this "
4795
+ "unique product ID by visiting the Products area and rolling over the product. The unique ID will be the "
4796
+ "first attribute and you can add several here separated by a comma."
4797
+ msgstr ""
4798
+ "در هنگام اضافه کردن محصولات در ووکامرس در بخش کالاهای ووکامرس، هر محصول یک ID اختصاصی خواهد داشت. این "
4799
+ "نامک‌ها را می‌توانید با رفتن به بخش کالاها و دیدن کالا پیدا کنید. ID محصول اولین ویژگی خواهد بود و شما "
4800
+ "می‌توانید در اینجا چند ID وارد کنید و آن‌ها را با ‪,‬ جدا کنید."
4801
+
4802
+ #: modules/woocommerce/woocommerce.php:160
4803
+ msgid "Category Slug"
4804
+ msgstr "متغییر دسته بندی"
4805
+
4806
+ #: modules/woocommerce/woocommerce.php:162
4807
+ msgid ""
4808
+ "As you add product categories in the WooCommerce Products area, each will be assigned a unique slug or you "
4809
+ "can edit and add your own. These slugs can be found in the Categories area under WooCommerce Products. "
4810
+ "Several can be added here separated by a comma."
4811
+ msgstr ""
4812
+ "در هنگام اضافه کردن دسته‌های محصولات در ووکامرس در بخش محصولات ووکامرس، هر دسته‌بندی یک ID دارد که بایستی "
4813
+ "وارد شود. این ID را می‌توانید در بخش دسته‌بندی‌های کالاها در ووکامرس پیدا کنید. می توانید چند دسته را با ‪,‬ "
4814
+ "وارد کنید."
4815
+
4816
+ #: modules/woocommerce/woocommerce.php:166
4817
+ msgid "Number of Products"
4818
+ msgstr "تعداد محصولات"
4819
+
4820
+ #: modules/woocommerce/woocommerce.php:183
4821
+ msgid "Sort By"
4822
+ msgstr "مرتب سازی بر اساس"
4823
+
4824
+ #: modules/woocommerce/woocommerce.php:186
4825
+ msgctxt "Sort by."
4826
+ msgid "Default"
4827
+ msgstr "پیشفرض"
4828
+
4829
+ #: modules/woocommerce/woocommerce.php:187
4830
+ msgid "Popularity"
4831
+ msgstr "محبوبیت"
4832
+
4833
+ #: modules/woocommerce/woocommerce.php:188
4834
+ msgid "Rating"
4835
+ msgstr "امتیازها"
4836
+
4837
+ #: modules/woocommerce/woocommerce.php:195
4838
+ msgid "Sort Direction"
4839
+ msgstr "مرتب سازی بر اساس"
4840
+
4841
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
4842
+ msgid ""
4843
+ "Switching to Text Editor mode will disable your %s layout until it is enabled again. Any edits made while "
4844
+ "in Text Editor mode will not be made on your %s layout. Do you want to continue?"
4845
+ msgstr ""
4846
+ "با تغییر به حالت متنی تنظیمات لایه %s شما به طور موقت غیرفعال می شوند. هر گونه تغییری که در حالت متنی به "
4847
+ "محتوای خود بدهید، در تنظیمات لایه %s شما اعمال نخواهد شد. آیا می خواهید ادامه دهید؟"
4848
+
4849
+ msgid "List"
4850
+ msgstr "لیست"
4851
+
4852
+ msgid "Client"
4853
+ msgstr "مشتری"
4854
+
4855
+ msgid "Offset"
4856
+ msgstr "افست"
4857
+
4858
+ msgid ""
4859
+ "Add mulit-column rows, adjust spacing, add backgrounds and more by dragging and dropping row layouts onto "
4860
+ "the page."
4861
+ msgstr ""
4862
+ "با گرفتن و رها کردن لایه‌ها بر روی صفحه، می توانید چندین ستون به هر ردیف اضافه کرده، فاصله‌ها و پس زمینه "
4863
+ "آنها را تنظیم نمایید."
4864
+
4865
+ msgid ""
4866
+ "Use the action buttons to perform actions such as moving, editing, duplicating, accessing individual "
4867
+ "column settings or deleting rows, columns and modules."
4868
+ msgstr "جهت جا به جایی، تنظیم، کپی، پاک کردن یا دسترسی به تنظیمات خاص هر بخش از دکمه‌های عملیات استفاده کنید."
4869
+
4870
+ msgid "Use the Add Content button to open the content panel and add new row layouts or content."
4871
+ msgstr "برای اضافه کردن ردیف یا محتوا جدید، از دکمه اضافه کردن محتوا استفاده کنید."
4872
+
4873
+ #~ msgctxt "Duplicate page/post action label."
4874
+ #~ msgid "Duplicate"
4875
+ #~ msgstr "کپی کردن"
4876
+
4877
+ #~ msgid "Page Builder Demo"
4878
+ #~ msgstr "دموی صفحه‌ساز"
4879
+
4880
+ #~ msgid "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates."
4881
+ #~ msgstr ""
4882
+ #~ "به روز رسانی در دسترس نیست! مشترک شوید و یا با وارد کردن کد فعال سازی خود در زیر، به روز رسانی خودکار "
4883
+ #~ "را فعال کنید."
4884
+
4885
+ #~ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
4886
+ #~ msgstr "‏<a%s>کد فعال سازی</a> خود را برای فعال کردن به روزرسانی از راه دور و پشتیبانی وارد کنید."
4887
+
4888
+ #~ msgctxt "Crop"
4889
+ #~ msgid "None"
4890
+ #~ msgstr "هیچ کدام"
4891
+
4892
+ #~ msgctxt "Crop."
4893
+ #~ msgid "None"
4894
+ #~ msgstr "هیچ کدام"
4895
+
4896
+ #~ msgctxt "Custom post type label."
4897
+ #~ msgid "Layout Templates"
4898
+ #~ msgstr "طراحی‌ قالب‌ها"
4899
+
4900
+ #~ msgctxt "Custom post type label."
4901
+ #~ msgid "Layout Template"
4902
+ #~ msgstr "طراحی قالب"
4903
+
4904
+ #~ msgctxt "Custom post type label."
4905
+ #~ msgid "Add New Layout Template"
4906
+ #~ msgstr "افزودن طراحی قالب جدید"
4907
+
4908
+ #~ msgctxt "Custom post type label."
4909
+ #~ msgid "New Layout Template"
4910
+ #~ msgstr "طراحی قالب جدید"
4911
+
4912
+ #~ msgctxt "Custom post type label."
4913
+ #~ msgid "Edit Layout Template"
4914
+ #~ msgstr "ویرایش طراحی قالب"
4915
+
4916
+ #~ msgctxt "Custom post type label."
4917
+ #~ msgid "View Layout Template"
4918
+ #~ msgstr "نمایش طراحی قالب"
4919
+
4920
+ #~ msgctxt "Custom post type label."
4921
+ #~ msgid "All Layout Templates"
4922
+ #~ msgstr "تمام قالب های طراحی"
4923
+
4924
+ #~ msgctxt "Custom post type label."
4925
+ #~ msgid "Search Layout Templates"
4926
+ #~ msgstr "جستجو طرح‌بندی قالب‌ها"
4927
+
4928
+ #~ msgctxt "Custom post type label."
4929
+ #~ msgid "Parent Layout Templates:"
4930
+ #~ msgstr "قالب های طراحی مرجع:"
4931
+
4932
+ #~ msgctxt "Custom post type label."
4933
+ #~ msgid "No layout templates found."
4934
+ #~ msgstr "هیچ طرح‌بندی قالبی یافت نشد"
4935
+
4936
+ #~ msgctxt "Custom post type label."
4937
+ #~ msgid "No layout templates found in Trash."
4938
+ #~ msgstr "هیچ طرح‌بندی قالبی در زباله‌دان یافت نشد."
4939
+
4940
+ #~ msgctxt "%s stands for custom branded \"Page Builder\" name."
4941
+ #~ msgid "%s is currently active for this page."
4942
+ #~ msgstr "%s در حال حاضر برای این صفحه فعال است."
4943
+
4944
+ #~ msgid "Enable or disable templates using the options below."
4945
+ #~ msgstr "با استفاده از تنظیمات زیر قالب‌های مورد نظرتان را فعال یا غیر فعال کنید."
4946
+
4947
+ #~ msgid "Discard Draft"
4948
+ #~ msgstr "صرف نظر از پیش نویس"
4949
+
4950
+ #~ msgid "Do you really want to discard this draft? All of your changes that are not published will be lost."
4951
+ #~ msgstr "واقعاً می‌خواهید از این پیش‌نویس صرف‌نظر کنید؟ همه‌ی تغیراتی که دادید از بین خواهند رفت."
4952
+
4953
+ #~ msgid ""
4954
+ #~ "Repeat applies to how the image should display in the row background. Choosing none will display the "
4955
+ #~ "image as uploaded. Tile will repeat the image as many times as needed to fill the row horizontally and "
4956
+ #~ "vertically. You can also specify the image to only repeat horizontally or vertically."
4957
+ #~ msgstr ""
4958
+ #~ "تکرار تنظیم می کند که عکس چگونه در پس زمینه نمایش داده شود. انتخاب هیچ کدام عکس را فقط در سایت بازگزاری "
4959
+ #~ "می کند. کاشی مانند عکس را بارها و بارها تکرار می کند تا تمامی ردیف را بپوشاند. همچنین می توانید انتخاب "
4960
+ #~ "کنید که عکس فقط افقی یا عمودی تکرار شود."
4961
+
4962
+ #~ msgid "Position will tell the image where it should sit in the row background."
4963
+ #~ msgstr "موقعیت تصویر آغازین در پس زمینه ردیف."
4964
+
4965
+ #~ msgid ""
4966
+ #~ "Attachment will specify how the image reacts when scrolling a page. When scrolling is selected, the "
4967
+ #~ "image will scroll with page scrolling. This is the default setting. Fixed will allow the image to "
4968
+ #~ "scroll within the row background if fill is selected in the scale setting."
4969
+ #~ msgstr ""
4970
+ #~ "ضمیمه مشخص می کند که عکس پس زمینه چه نمایشی هنگام اسکرول صفحه داشته باشد. اگر پیمایش انتخاب شود عکس پس "
4971
+ #~ "زمینه به همراه اسکرول صفحه حرکت خواهد کرد. این تنظیم پیش فرض است. اگر حالت پر شدن در تنظیمات مقیاس "
4972
+ #~ "انتخاب شده باشد با انتخاب ثابت شده به عکس پس زمینه اجازه می دهید که در داخل زمینه ردیف حرکت کند."
4973
+
4974
+ #~ msgid ""
4975
+ #~ "Scale applies to how the image should display in the row background. You can select either fill or fit "
4976
+ #~ "to the row background."
4977
+ #~ msgstr ""
4978
+ #~ "بزرگنمایی تعیین می‌کند که عکس در پس‌زمینه‌ی ردیف چگونه نمایش داده شود. می‌توانید تعیین کنید که یا صفحه با "
4979
+ #~ "عکس پر شود و یا به صفحه فیت شود."
4980
+
4981
+ #~ msgid "Price: Low to High"
4982
+ #~ msgstr "قیمت: از کم به زیاد"
4983
+
4984
+ #~ msgid "Price: High to Low"
4985
+ #~ msgstr "قیمت: از زیاد به کم"
4986
+
4987
+ #~ msgid "A custom CSS class that will be applied to this column. Spaces only, no dots."
4988
+ #~ msgstr ""
4989
+ #~ "‏CSS دلخواهی را وارد کنید که فقط برای این فرم اعمال شود. فقط از فاصله ها استفاده کنید، به نقطه ها نیازی "
4990
+ #~ "نیست."
4991
+
4992
+ #~ msgid "Filter: "
4993
+ #~ msgstr "فیلتر:"
4994
+
4995
+ #~ msgid "A custom CSS class that will be applied to this module. Spaces only, no dots."
4996
+ #~ msgstr ""
4997
+ #~ "‏CSS دلخواهی را وارد کنید که فقط برای این ماژول اعمال شود. فقط از فاصله ها استفاده کنید، به نقطه ها "
4998
+ #~ "نیازی نیست."
4999
+
5000
+ #~ msgid "Add a custom CSS selector here to apply additional styling to this row."
5001
+ #~ msgstr "در صورت نیاز سلکتورهای اضافی CSS به این ردیف را در اینجا وارد کنید."
5002
+
5003
+ #~ msgid "Upgrade Today!"
5004
+ #~ msgstr "ارتقاء دهید!"
5005
+
5006
+ #~ msgid "Add"
5007
+ #~ msgstr "افزودن"
5008
+
5009
+ #~ msgid "Mobile"
5010
+ #~ msgstr "موبایل"
5011
+
5012
+ #~ msgid "Add Pricing Column"
5013
+ #~ msgstr "اضافه کردن ستون قیمت گذاری"
languages/fr_FR.mo CHANGED
Binary file
languages/hu_HU.mo ADDED
Binary file
languages/hu_HU.po ADDED
@@ -0,0 +1,5285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-12-01 08:04+0100\n"
6
+ "PO-Revision-Date: 2015-12-14 08:44+0100\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=2; plural=(n != 1);\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;"
15
+ "__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;"
16
+ "_nx_noop:4c,1,2\n"
17
+ "X-Poedit-Basepath: ..\n"
18
+ "X-Textdomain-Support: yes\n"
19
+ "Last-Translator: \n"
20
+ "Language: hu_HU\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+
23
+ #: classes/class-fl-builder-admin-settings.php:116
24
+ #: includes/global-settings.php:4
25
+ #, php-format
26
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
27
+ msgid "%s Settings"
28
+ msgstr "%s Beállítások"
29
+
30
+ #: classes/class-fl-builder-admin-settings.php:133
31
+ msgid "Settings updated!"
32
+ msgstr "Beállítások frissítve!"
33
+
34
+ #: classes/class-fl-builder-admin-settings.php:147
35
+ msgid "License"
36
+ msgstr "Licenc"
37
+
38
+ #: classes/class-fl-builder-admin-settings.php:151
39
+ #: includes/admin-settings-upgrade.php:3
40
+ msgid "Upgrade"
41
+ msgstr "Frissítés"
42
+
43
+ #: classes/class-fl-builder-admin-settings.php:155
44
+ #: includes/global-settings.php:90
45
+ msgid "Modules"
46
+ msgstr "Modulok"
47
+
48
+ #: classes/class-fl-builder-admin-settings.php:159
49
+ #: classes/class-fl-builder.php:668
50
+ msgid "Templates"
51
+ msgstr "Sablonok"
52
+
53
+ #: classes/class-fl-builder-admin-settings.php:163
54
+ #: includes/admin-settings-post-types.php:3
55
+ msgid "Post Types"
56
+ msgstr "Bejegyzés típusok"
57
+
58
+ #: classes/class-fl-builder-admin-settings.php:167
59
+ #: modules/icon-group/icon-group.php:27
60
+ #: modules/post-carousel/post-carousel.php:275
61
+ #: modules/post-grid/post-grid.php:257
62
+ msgid "Icons"
63
+ msgstr "Ikonok"
64
+
65
+ #: classes/class-fl-builder-admin-settings.php:171
66
+ msgid "Editing"
67
+ msgstr "Szerkesztés"
68
+
69
+ #: classes/class-fl-builder-admin-settings.php:175
70
+ #: includes/admin-settings-branding.php:3
71
+ msgid "Branding"
72
+ msgstr "Márkajelzés"
73
+
74
+ #: classes/class-fl-builder-admin-settings.php:179
75
+ msgid "Help Button"
76
+ msgstr "Súgó gomb"
77
+
78
+ #: classes/class-fl-builder-admin-settings.php:183
79
+ #: includes/admin-settings-cache.php:3
80
+ msgid "Cache"
81
+ msgstr "Gyorsítótár"
82
+
83
+ #: classes/class-fl-builder-admin-settings.php:187
84
+ #: includes/admin-settings-uninstall.php:3
85
+ #: includes/admin-settings-uninstall.php:15
86
+ msgid "Uninstall"
87
+ msgstr "Eltávolítás"
88
+
89
+ #: classes/class-fl-builder-admin-settings.php:439
90
+ msgid "Error! You must have at least one icon set enabled."
91
+ msgstr "Hiba! Legalább egy ikon beállítást engedélyeznie kell. "
92
+
93
+ #: classes/class-fl-builder-admin-settings.php:481
94
+ msgid "Error! Could not unzip file."
95
+ msgstr "Hiba! Nem sikerült a kicsomagolás."
96
+
97
+ #: classes/class-fl-builder-admin-settings.php:515
98
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
99
+ msgstr "Hiba! Kérjük, töltsön fel egy ikont az Icomoon-ról vagy Fontello-ról."
100
+
101
+ #: classes/class-fl-builder-admin-settings.php:620
102
+ msgid "Error! Please enter an iframe for the video embed code."
103
+ msgstr "Hiba! Adjon meg egy iframe video beillesztési kódot."
104
+
105
+ #: classes/class-fl-builder-admin-settings.php:638
106
+ msgid "Error! You must have at least one feature of the help button enabled."
107
+ msgstr "Hiba! Legalább egy súgógom funkciót engedélyeznie kell."
108
+
109
+ #: classes/class-fl-builder-admin.php:45
110
+ #, php-format
111
+ msgid ""
112
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
113
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
114
+ "of this plugin."
115
+ msgstr ""
116
+ "A <strong>Page Builder</strong> bővítmény ezen verziója nem kompatibilis a "
117
+ "WordPress Multisite-al. <a%s>Kérem váltson </a> a Multisite verzióra."
118
+
119
+ #: classes/class-fl-builder-admin.php:55
120
+ msgid ""
121
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
122
+ "greater. Please update WordPress before activating the plugin."
123
+ msgstr ""
124
+ "Az <strong>Page Builder - Oldal szerkesztő</strong> WordPress 3.5 verziót "
125
+ "vagy újabb verziót igényel. Kérjük, frissítse WordPress aktiválása előtt."
126
+
127
+ #: classes/class-fl-builder-admin.php:112
128
+ #, php-format
129
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
130
+ msgstr "Szerkesztő aktiválva! <a%s> Kattintson ide a beállításokhoz."
131
+
132
+ #: classes/class-fl-builder-admin.php:238
133
+ msgctxt "Plugin action link label."
134
+ msgid "Upgrade"
135
+ msgstr "Frissítés"
136
+
137
+ #: classes/class-fl-builder-admin.php:253
138
+ #: classes/class-fl-builder-model.php:4077
139
+ msgid "Page Builder"
140
+ msgstr "Szerkesztő "
141
+
142
+ #: classes/class-fl-builder-model.php:1756
143
+ #, php-format
144
+ msgctxt "%s stands for the module filename"
145
+ msgid ""
146
+ "A module with the filename %s.php already exists! Please namespace your "
147
+ "module filenames to ensure compatibility with Beaver Builder."
148
+ msgstr ""
149
+ "Egy modul ezzel a fájlnévvel: %s már létezik: Kérjük adjon meg más "
150
+ "fájlnevet, ezzel biztosítva a Beaver Bulderrel a kompatibilitást. "
151
+
152
+ #: classes/class-fl-builder-model.php:1807
153
+ #: classes/class-fl-builder-model.php:1868 modules/heading/heading.php:16
154
+ #: modules/photo/photo.php:27 modules/rich-text/rich-text.php:16
155
+ #: modules/separator/separator.php:16 modules/video/video.php:21
156
+ msgid "Basic Modules"
157
+ msgstr "Alap modulok"
158
+
159
+ #: classes/class-fl-builder-model.php:1808
160
+ #: classes/class-fl-builder-model.php:1869 modules/accordion/accordion.php:16
161
+ #: modules/button/button.php:16 modules/callout/callout.php:16
162
+ #: modules/contact-form/contact-form.php:16
163
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
164
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
165
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
166
+ #: modules/map/map.php:16 modules/menu/menu.php:16
167
+ #: modules/post-carousel/post-carousel.php:16
168
+ #: modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
169
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
170
+ #: modules/slideshow/slideshow.php:16
171
+ #: modules/social-buttons/social-buttons.php:16
172
+ #: modules/subscribe-form/subscribe-form.php:20 modules/tabs/tabs.php:16
173
+ #: modules/testimonials/testimonials.php:16
174
+ #: modules/woocommerce/woocommerce.php:18
175
+ msgid "Advanced Modules"
176
+ msgstr "Részletes modulok"
177
+
178
+ #: classes/class-fl-builder-model.php:1809
179
+ #: classes/class-fl-builder-model.php:1870
180
+ msgid "Other Modules"
181
+ msgstr "Egyéb modulok"
182
+
183
+ #: classes/class-fl-builder-model.php:1810
184
+ #: classes/class-fl-builder-model.php:1871
185
+ #: includes/admin-settings-modules.php:32 includes/ui-panel.php:56
186
+ #: modules/widget/widget.php:16
187
+ msgid "WordPress Widgets"
188
+ msgstr "WordPress widgetek"
189
+
190
+ #: classes/class-fl-builder-model.php:2535
191
+ #, php-format
192
+ msgctxt "%s stands for post/page title."
193
+ msgid "Copy of %s"
194
+ msgstr "A %s másolata "
195
+
196
+ #: classes/class-fl-builder-model.php:3014
197
+ msgctxt "Default user template category."
198
+ msgid "Uncategorized"
199
+ msgstr "Kategorizátlan"
200
+
201
+ #: classes/class-fl-builder-model.php:4034
202
+ msgid "Home Pages"
203
+ msgstr "Nyitólap"
204
+
205
+ #: classes/class-fl-builder-model.php:4035
206
+ msgid "Content Pages"
207
+ msgstr "Tartalmi oldalak"
208
+
209
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
210
+ msgctxt "Image size."
211
+ msgid "Full Size"
212
+ msgstr "Teljes méret"
213
+
214
+ #: classes/class-fl-builder-photo.php:101
215
+ msgctxt "Image size."
216
+ msgid "Large"
217
+ msgstr "Nagy"
218
+
219
+ #: classes/class-fl-builder-photo.php:102
220
+ msgctxt "Image size."
221
+ msgid "Medium"
222
+ msgstr "Közepes"
223
+
224
+ #: classes/class-fl-builder-photo.php:103
225
+ msgctxt "Image size."
226
+ msgid "Thumbnail"
227
+ msgstr "Bélyegkép"
228
+
229
+ #: classes/class-fl-builder-service-activecampaign.php:69
230
+ msgid "Error: You must provide an API URL."
231
+ msgstr "Hiba: Meg kell adnia az API URL-t."
232
+
233
+ #: classes/class-fl-builder-service-activecampaign.php:73
234
+ #: classes/class-fl-builder-service-campaign-monitor.php:55
235
+ #: classes/class-fl-builder-service-constant-contact.php:48
236
+ #: classes/class-fl-builder-service-getresponse.php:67
237
+ #: classes/class-fl-builder-service-hatchbuck.php:48
238
+ #: classes/class-fl-builder-service-infusionsoft.php:79
239
+ #: classes/class-fl-builder-service-madmimi.php:73
240
+ #: classes/class-fl-builder-service-mailchimp.php:67
241
+ msgid "Error: You must provide an API key."
242
+ msgstr "Hiba: Meg kell adnia az API kulcsot."
243
+
244
+ #: classes/class-fl-builder-service-activecampaign.php:81
245
+ msgid "Error: Please check your API URL and API key."
246
+ msgstr "Hiba: Ellenőrizze az API URL-t és API-kulcsot."
247
+
248
+ #: classes/class-fl-builder-service-activecampaign.php:108
249
+ msgid "API URL"
250
+ msgstr "API URL"
251
+
252
+ #: classes/class-fl-builder-service-activecampaign.php:109
253
+ msgid ""
254
+ "Your API url can be found in your ActiveCampaign account under My Settings > "
255
+ "API."
256
+ msgstr ""
257
+ "Az API URL megtalálható a ActiveCampaign fiókban My Settings> API "
258
+ "beállításnál."
259
+
260
+ #: classes/class-fl-builder-service-activecampaign.php:119
261
+ #: classes/class-fl-builder-service-campaign-monitor.php:88
262
+ #: classes/class-fl-builder-service-constant-contact.php:88
263
+ #: classes/class-fl-builder-service-getresponse.php:100
264
+ #: classes/class-fl-builder-service-hatchbuck.php:87
265
+ #: classes/class-fl-builder-service-infusionsoft.php:129
266
+ #: classes/class-fl-builder-service-madmimi.php:121
267
+ #: classes/class-fl-builder-service-mailchimp.php:100
268
+ msgid "API Key"
269
+ msgstr "API Key"
270
+
271
+ #: classes/class-fl-builder-service-activecampaign.php:120
272
+ msgid ""
273
+ "Your API key can be found in your ActiveCampaign account under My Settings > "
274
+ "API."
275
+ msgstr ""
276
+ "Az API URL megtalálható a ActiveCampaign fiókban My Settings> API "
277
+ "beállításnál."
278
+
279
+ #: classes/class-fl-builder-service-activecampaign.php:169
280
+ #: classes/class-fl-builder-service-aweber.php:182
281
+ #: classes/class-fl-builder-service-campaign-monitor.php:148
282
+ #: classes/class-fl-builder-service-campaign-monitor.php:199
283
+ #: classes/class-fl-builder-service-constant-contact.php:156
284
+ #: classes/class-fl-builder-service-getresponse.php:154
285
+ #: classes/class-fl-builder-service-icontact.php:207
286
+ #: classes/class-fl-builder-service-infusionsoft.php:204
287
+ #: classes/class-fl-builder-service-madmimi.php:178
288
+ #: classes/class-fl-builder-service-mailchimp.php:177
289
+ #: classes/class-fl-builder-service-mailpoet.php:92
290
+ #: classes/class-fl-builder-service-sendinblue.php:161
291
+ #: classes/class-fl-builder-services.php:288 includes/service-settings.php:21
292
+ #: modules/woocommerce/woocommerce.php:60
293
+ msgid "Choose..."
294
+ msgstr "Választás..."
295
+
296
+ #: classes/class-fl-builder-service-activecampaign.php:181
297
+ #: classes/class-fl-builder-service-aweber.php:192
298
+ #: classes/class-fl-builder-service-campaign-monitor.php:209
299
+ #: classes/class-fl-builder-service-constant-contact.php:166
300
+ #: classes/class-fl-builder-service-getresponse.php:164
301
+ #: classes/class-fl-builder-service-icontact.php:217
302
+ #: classes/class-fl-builder-service-infusionsoft.php:214
303
+ #: classes/class-fl-builder-service-madmimi.php:188
304
+ #: classes/class-fl-builder-service-mailchimp.php:187
305
+ #: classes/class-fl-builder-service-mailpoet.php:102
306
+ #: classes/class-fl-builder-service-sendinblue.php:171
307
+ msgctxt "An email list from a third party provider."
308
+ msgid "List"
309
+ msgstr "Lista"
310
+
311
+ #: classes/class-fl-builder-service-activecampaign.php:208
312
+ msgid ""
313
+ "There was an error subscribing to ActiveCampaign. The account is no longer "
314
+ "connected."
315
+ msgstr ""
316
+ "Hiba történt az ActiveCampaign feliratkozásnál. Megszakadt a kapcsolat a "
317
+ "fiókkal. "
318
+
319
+ #: classes/class-fl-builder-service-activecampaign.php:239
320
+ msgid "Error: Invalid API data."
321
+ msgstr "Hiba: Érvénytelen API adatokat."
322
+
323
+ #: classes/class-fl-builder-service-aweber.php:72
324
+ msgid "Error: You must provide an Authorization Code."
325
+ msgstr "Hiba: Meg kell adnia egy engedélyezési kódot."
326
+
327
+ #: classes/class-fl-builder-service-aweber.php:76
328
+ msgid "Error: Please enter a valid Authorization Code."
329
+ msgstr "Hiba: Adjon meg egy érvényes Engedélyezési kód."
330
+
331
+ #: classes/class-fl-builder-service-aweber.php:127
332
+ msgid "Authorization Code"
333
+ msgstr "Jogosultsági kód"
334
+
335
+ #: classes/class-fl-builder-service-aweber.php:128
336
+ #, php-format
337
+ msgid ""
338
+ "Please register this website with AWeber to get your Authorization Code. <a"
339
+ "%s>Register Now</a>"
340
+ msgstr ""
341
+ "Kérjük, regisztráljon ezen a weboldalon az Aweber-től kap jogosultsági "
342
+ "kódot. <a%s> Regisztráljon most"
343
+
344
+ #: classes/class-fl-builder-service-aweber.php:219
345
+ msgid ""
346
+ "There was an error subscribing to AWeber. The account is no longer connected."
347
+ msgstr ""
348
+ "Hiba történt az AWeber feliratkozásnál. Megszakadt a kapcsolat a fiókkal. "
349
+
350
+ #: classes/class-fl-builder-service-aweber.php:242
351
+ msgid "There was an error connecting to AWeber. Please try again."
352
+ msgstr ""
353
+ "Hiba történt az Aweber-hez történő csatlakozás közben. Kérjük próbálja újra."
354
+
355
+ #: classes/class-fl-builder-service-aweber.php:247
356
+ #, php-format
357
+ msgid "There was an error subscribing to AWeber. %s"
358
+ msgstr "Hiba történ az AWeber-nél: %s"
359
+
360
+ #: classes/class-fl-builder-service-campaign-monitor.php:67
361
+ #: classes/class-fl-builder-service-campaign-monitor.php:129
362
+ #: classes/class-fl-builder-service-getresponse.php:76
363
+ #: classes/class-fl-builder-service-getresponse.php:132
364
+ #: classes/class-fl-builder-service-hatchbuck.php:63
365
+ msgid "Error: Please check your API key."
366
+ msgstr "Hiba: Ellenőrizze az API-kulcsot."
367
+
368
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
369
+ msgid ""
370
+ "Your API key can be found in your Campaign Monitor account under Account "
371
+ "Settings > API Key."
372
+ msgstr ""
373
+ "Az API-kulcs megtalálható a Campaign Monitor fiókjában a Fiókbeállítások "
374
+ "(Account Settings) > API-kulcs résznél."
375
+
376
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
377
+ msgctxt "A client account in Campaign Monitor."
378
+ msgid "Client"
379
+ msgstr "Kliens"
380
+
381
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
382
+ msgid ""
383
+ "There was an error subscribing to Campaign Monitor. The account is no longer "
384
+ "connected."
385
+ msgstr ""
386
+ "Hiba történt a Campaign Monitor feliratkozásnál. Megszakadt a kapcsolat a "
387
+ "fiókkal. "
388
+
389
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
390
+ msgid "There was an error subscribing to Campaign Monitor."
391
+ msgstr "Hiba a Campaign Monitor beállításainál."
392
+
393
+ #: classes/class-fl-builder-service-constant-contact.php:52
394
+ msgid "Error: You must provide an access token."
395
+ msgstr "Hiba: Meg kell adnia egy hozzáférési tokent."
396
+
397
+ #: classes/class-fl-builder-service-constant-contact.php:61
398
+ #: classes/class-fl-builder-service-constant-contact.php:134
399
+ #, php-format
400
+ msgid "Error: Could not connect to Constant Contact. %s"
401
+ msgstr "Hiba: Nem sikerült csatlakoztatni az állandó kapcsolatot. %s "
402
+
403
+ #: classes/class-fl-builder-service-constant-contact.php:89
404
+ msgid "Your Constant Contact API key."
405
+ msgstr "Constant Contact API kulcs."
406
+
407
+ #: classes/class-fl-builder-service-constant-contact.php:99
408
+ msgid "Access Token"
409
+ msgstr "Hozzáférési kulcs (Access Token)"
410
+
411
+ #: classes/class-fl-builder-service-constant-contact.php:100
412
+ msgid "Your Constant Contact access token."
413
+ msgstr "Az ön állandó kapcsolathozzáférési tokenje. "
414
+
415
+ #: classes/class-fl-builder-service-constant-contact.php:101
416
+ #, php-format
417
+ msgid ""
418
+ "You must register a <a%s>Developer Account</a> with Constant Contact to "
419
+ "obtain an API key and access token. Please see <a%s>Getting an API key</a> "
420
+ "for complete instructions."
421
+ msgstr ""
422
+ "Regisztrálnia kell egy <a%s>Fejlesztői fiókot</a> állandó kapcsolaton "
423
+ "keresztül, amihez be kell szereznie egy API kulcsot és egy hozzáférési "
424
+ "tokent. Kérem nézze meg az<a%s>API kulcs beszerzése</a> részben a teljes "
425
+ "utasítást hozzá."
426
+
427
+ #: classes/class-fl-builder-service-constant-contact.php:193
428
+ msgid ""
429
+ "There was an error subscribing to Constant Contact. The account is no longer "
430
+ "connected."
431
+ msgstr ""
432
+ "Hiba történt az állandó kapcsolatra történő csatlakozáskor. A fiókkal "
433
+ "megakadt a kapcsolat. "
434
+
435
+ #: classes/class-fl-builder-service-constant-contact.php:245
436
+ #: classes/class-fl-builder-service-constant-contact.php:279
437
+ #, php-format
438
+ msgid "There was an error subscribing to Constant Contact. %s"
439
+ msgstr "Hiba történt az állandó kapcsolatra történő csatlakozáskor. %s"
440
+
441
+ #: classes/class-fl-builder-service-email-address.php:39
442
+ #: classes/class-fl-builder-service-madmimi.php:69
443
+ msgid "Error: You must provide an email address."
444
+ msgstr "Hiba: Meg kell adnia egy email címet!"
445
+
446
+ #: classes/class-fl-builder-service-email-address.php:63
447
+ #: classes/class-fl-builder-service-madmimi.php:110
448
+ #: modules/subscribe-form/includes/frontend.php:11
449
+ msgid "Email Address"
450
+ msgstr "Email cím"
451
+
452
+ #: classes/class-fl-builder-service-email-address.php:110
453
+ msgid "There was an error subscribing. The account is no longer connected."
454
+ msgstr "Hiba történt a feliratkozáskor. A kapcsolat megszakadt. "
455
+
456
+ #: classes/class-fl-builder-service-email-address.php:114
457
+ msgid "Subscribe Form Signup"
458
+ msgstr "Feliratkozó űrlap"
459
+
460
+ #: classes/class-fl-builder-service-email-address.php:115
461
+ #: modules/contact-form/includes/frontend.php:21
462
+ msgid "Email"
463
+ msgstr "Email"
464
+
465
+ #: classes/class-fl-builder-service-email-address.php:118
466
+ msgid "Name"
467
+ msgstr "Név"
468
+
469
+ #: classes/class-fl-builder-service-email-address.php:124
470
+ #: modules/subscribe-form/subscribe-form.php:73
471
+ msgid "There was an error subscribing. Please try again."
472
+ msgstr "Hiba! Kérjük próbáld újra."
473
+
474
+ #: classes/class-fl-builder-service-getresponse.php:101
475
+ msgid ""
476
+ "Your API key can be found in your GetResponse account under My Account > "
477
+ "GetResponse API."
478
+ msgstr ""
479
+ "Az ön API kulcsa (kódja) megtalálható a GetResponse fiókjában a My Account "
480
+ "menüpontban > GetResponse API."
481
+
482
+ #: classes/class-fl-builder-service-getresponse.php:191
483
+ msgid ""
484
+ "There was an error subscribing to GetResponse. The account is no longer "
485
+ "connected."
486
+ msgstr ""
487
+ "Hiba történt a GetResponsba történő feliratkozás közben. A kapcsolat a "
488
+ "fiókkal megszakadt. "
489
+
490
+ #: classes/class-fl-builder-service-getresponse.php:202
491
+ #, php-format
492
+ msgid "There was an error subscribing to GetResponse. %s"
493
+ msgstr "Hiba történt a GetResponse-ba történő feliratkozás közben. %s"
494
+
495
+ #: classes/class-fl-builder-service-hatchbuck.php:88
496
+ msgid ""
497
+ "Your API key can be found in your Hatchbuck account under Account Settings > "
498
+ "Web API."
499
+ msgstr ""
500
+ "Az API kulcs megtalálható a Hatchbuck fiókban: Account Settings/Fiók "
501
+ "szerkesztés> Web API."
502
+
503
+ #: classes/class-fl-builder-service-hatchbuck.php:134
504
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
505
+ msgid "Tag"
506
+ msgstr "Címke/Angolul: Tag"
507
+
508
+ #: classes/class-fl-builder-service-hatchbuck.php:161
509
+ msgid ""
510
+ "There was an error subscribing to Hatchbuck. The account is no longer "
511
+ "connected."
512
+ msgstr ""
513
+ "Hiba történt a Hatchbuk-ba történő feliratkozáskor. A kapcsolat megszakadt. "
514
+
515
+ #: classes/class-fl-builder-service-hatchbuck.php:190
516
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
517
+ msgstr ""
518
+ "Hiba történt a Hatchbuck-ba történő feliratkozás közben. Az API-kulcs "
519
+ "érvénytelen."
520
+
521
+ #: classes/class-fl-builder-service-hatchbuck.php:200
522
+ #: classes/class-fl-builder-service-hatchbuck.php:232
523
+ msgid "There was an error subscribing to Hatchbuck."
524
+ msgstr "Hiba történt a Hatchbuck-ba történő feliratkozás közben. "
525
+
526
+ #: classes/class-fl-builder-service-icontact.php:75
527
+ msgid "Error: You must provide a username."
528
+ msgstr "Hiba: Meg kell adnia egy felhasználónevet."
529
+
530
+ #: classes/class-fl-builder-service-icontact.php:79
531
+ msgid "Error: You must provide a app ID."
532
+ msgstr "Hiba: Meg kell adnia egy app azonosítót (ID)."
533
+
534
+ #: classes/class-fl-builder-service-icontact.php:83
535
+ msgid "Error: You must provide a app password."
536
+ msgstr "Hiba: Meg kell adnia egy app jelszót."
537
+
538
+ #: classes/class-fl-builder-service-icontact.php:104
539
+ #: classes/class-fl-builder-service-icontact.php:188
540
+ #, php-format
541
+ msgid "Error: Could not connect to iContact. %s"
542
+ msgstr "Hiba: Nem tud csatlakozni az iContact-hoz. %s"
543
+
544
+ #: classes/class-fl-builder-service-icontact.php:125
545
+ msgid "Username"
546
+ msgstr "Felhasználónév"
547
+
548
+ #: classes/class-fl-builder-service-icontact.php:126
549
+ msgid "Your iContact username."
550
+ msgstr "Az ön iContact felhasználóneve."
551
+
552
+ #: classes/class-fl-builder-service-icontact.php:136
553
+ #: classes/class-fl-builder-service-infusionsoft.php:118
554
+ msgid "App ID"
555
+ msgstr "Alkalmazás azonosító (ID)"
556
+
557
+ #: classes/class-fl-builder-service-icontact.php:137
558
+ msgid "Your iContact app ID."
559
+ msgstr "Az Ön iContact alkalmazás azonosítója."
560
+
561
+ #: classes/class-fl-builder-service-icontact.php:147
562
+ msgid "App Password"
563
+ msgstr "Alkalmazás jelszó"
564
+
565
+ #: classes/class-fl-builder-service-icontact.php:148
566
+ msgid "Your iContact app password."
567
+ msgstr "Az ön iContact jelszava."
568
+
569
+ #: classes/class-fl-builder-service-icontact.php:149
570
+ #, php-format
571
+ msgid ""
572
+ "You must <a%s>create an app</a> in iContact to obtain an app ID and "
573
+ "password. Please see <a%s>the iContact docs</a> for complete instructions."
574
+ msgstr ""
575
+ "Neked muszáj <a%s> hozzon létre egy app az iContact szerezni egy app "
576
+ "azonosítóját és jelszavát. Kérjük, olvassa el <a%s> A iContact docs a teljes "
577
+ "utasítást."
578
+
579
+ #: classes/class-fl-builder-service-icontact.php:244
580
+ msgid ""
581
+ "There was an error subscribing to iContact. The account is no longer "
582
+ "connected."
583
+ msgstr ""
584
+ "Hiba történt az iContact-ba történő feliratkozáskor. A kapcsolat megszakadt. "
585
+
586
+ #: classes/class-fl-builder-service-icontact.php:280
587
+ #, php-format
588
+ msgid "There was an error subscribing to iContact. %s"
589
+ msgstr "Hiba történt az iContact-ba történő feliratkozáskor. %s"
590
+
591
+ #: classes/class-fl-builder-service-infusionsoft.php:49
592
+ #, php-format
593
+ msgid "There was an error connecting to Infusionsoft. %s"
594
+ msgstr "Hiba történt az Infusionsofthoz csatlakozásnál. %s"
595
+
596
+ #: classes/class-fl-builder-service-infusionsoft.php:83
597
+ msgid "Error: You must provide an app ID."
598
+ msgstr "Hiba: Meg kell adnia egy app azonosítót (ID)."
599
+
600
+ #: classes/class-fl-builder-service-infusionsoft.php:119
601
+ msgid ""
602
+ "Your App ID can be found in the URL for your account. For example, if the "
603
+ "URL for your account is myaccount.infusionsoft.com, your App ID would be "
604
+ "<strong>myaccount</strong>."
605
+ msgstr ""
606
+ "Az Ön alkalmazás azonosítója (ID) a fiókjához megtalálható az URL-ben. "
607
+ "Például, ha az URL a fiókjához myaccount.infusionsoft.com, az ön alkalmazás "
608
+ "azonosítója (ID) <strong>azenfiokom</strong>"
609
+
610
+ #: classes/class-fl-builder-service-infusionsoft.php:130
611
+ msgid ""
612
+ "Your API key can be found in your Infusionsoft account under Admin > "
613
+ "Settings > Application > API > Encrypted Key."
614
+ msgstr ""
615
+ "Az API kulcs megtalálható az Infusionsoft fiókjában az Admin> Beállítások> "
616
+ "Alkalmazás> API> titkosított kulcs."
617
+
618
+ #: classes/class-fl-builder-service-infusionsoft.php:242
619
+ msgid ""
620
+ "There was an error subscribing to Infusionsoft. The account is no longer "
621
+ "connected."
622
+ msgstr ""
623
+ "Hiba történt az Infusionsoftba történő feliratkozáskor. A kapcsolat "
624
+ "megszakadt. "
625
+
626
+ #: classes/class-fl-builder-service-infusionsoft.php:291
627
+ #, php-format
628
+ msgid "There was an error subscribing to Infusionsoft. %s"
629
+ msgstr "Hiba történt az Infusionsoftba történő feliratkozáskor. %s"
630
+
631
+ #: classes/class-fl-builder-service-madmimi.php:83
632
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
633
+ msgstr ""
634
+ "Nem lehet csatlakozni a Mad Mimihez. Kérjük, ellenőrizze az érvényességét."
635
+
636
+ #: classes/class-fl-builder-service-madmimi.php:111
637
+ msgid "The email address associated with your Mad Mimi account."
638
+ msgstr "Az ön email címe társításra került a Mad Mimi fiókjával. "
639
+
640
+ #: classes/class-fl-builder-service-madmimi.php:122
641
+ msgid ""
642
+ "Your API key can be found in your Mad Mimi account under Account > Settings "
643
+ "&amp; Billing > API."
644
+ msgstr ""
645
+ "Az ön API kulcsa megtalálható a Mad Mimi fiókjában: a Fiók> Beállítások és "
646
+ "számlázás> API részben."
647
+
648
+ #: classes/class-fl-builder-service-madmimi.php:156
649
+ msgid ""
650
+ "There was a problem retrieving your lists. Please check your API credentials."
651
+ msgstr ""
652
+ "Nem sikerült betölteni a listákat. Kérjük, ellenőrizze a API érvényességét."
653
+
654
+ #: classes/class-fl-builder-service-madmimi.php:215
655
+ #: classes/class-fl-builder-service-madmimi.php:242
656
+ msgid ""
657
+ "There was an error subscribing to Mad Mimi. The account is no longer "
658
+ "connected."
659
+ msgstr ""
660
+ "Hiba történt a Mad Mimi-be történő feliratkozáskor. A kapcsolat megszakadt. "
661
+
662
+ #: classes/class-fl-builder-service-mailchimp.php:101
663
+ msgid ""
664
+ "Your API key can be found in your MailChimp account under Account > Extras > "
665
+ "API Keys."
666
+ msgstr ""
667
+ "Az API kulcs megtalálható a MailChimp fiókban az Account/Fiók> Extrák> API "
668
+ "Keys menüpontban."
669
+
670
+ #: classes/class-fl-builder-service-mailchimp.php:215
671
+ msgid "No Group"
672
+ msgstr "Nincs csoport"
673
+
674
+ #: classes/class-fl-builder-service-mailchimp.php:227
675
+ msgctxt "MailChimp list group."
676
+ msgid "Groups"
677
+ msgstr "Csoportok"
678
+
679
+ #: classes/class-fl-builder-service-mailchimp.php:255
680
+ msgid ""
681
+ "There was an error subscribing to MailChimp. The account is no longer "
682
+ "connected."
683
+ msgstr ""
684
+ "Hiba történt a MailChimp feliratkozásnál. Megszakadt a kapcsolat a fiókkal. "
685
+
686
+ #: classes/class-fl-builder-service-mailchimp.php:352
687
+ #, php-format
688
+ msgid "There was an error subscribing to MailChimp. %s"
689
+ msgstr "Hiba történt a MailChinp-be történő feliratkozás közben. %s"
690
+
691
+ #: classes/class-fl-builder-service-mailpoet.php:73
692
+ msgid "There was an error retrieveing your lists."
693
+ msgstr "Hiba történt a lista betöltésénél."
694
+
695
+ #: classes/class-fl-builder-service-mailpoet.php:129
696
+ msgid "There was an error subscribing. MailPoet is not installed."
697
+ msgstr "Hiba történt a feliratkozáskor. A MailPoet nincs telepítve."
698
+
699
+ #: classes/class-fl-builder-service-sendinblue.php:67
700
+ msgid "Error: You must provide an Access Key."
701
+ msgstr "Hiba: Meg kell adnia egy hozzáférési kulcsot."
702
+
703
+ #: classes/class-fl-builder-service-sendinblue.php:76
704
+ #: classes/class-fl-builder-service-sendinblue.php:136
705
+ msgid "There was an error connecting to SendinBlue. Please try again."
706
+ msgstr ""
707
+ "Hiba történt a SendinBlue-hoz történő csatlakozás közben. Kérjük próbálja "
708
+ "újra."
709
+
710
+ #: classes/class-fl-builder-service-sendinblue.php:79
711
+ #: classes/class-fl-builder-service-sendinblue.php:139
712
+ #, php-format
713
+ msgid "Error: Could not connect to SendinBlue. %s"
714
+ msgstr "Hiba: Nem tud csatlakozni az SendinBlue-hoz. %s"
715
+
716
+ #: classes/class-fl-builder-service-sendinblue.php:103
717
+ msgid "Access Key"
718
+ msgstr "Hozzáférési kód"
719
+
720
+ #: classes/class-fl-builder-service-sendinblue.php:104
721
+ msgid ""
722
+ "Your Access Key can be found in your SendinBlue account under API & "
723
+ "Integration > Manager Your Keys > Version 2.0 > Access Key."
724
+ msgstr ""
725
+ "Az ön hozzáférési kulcsa megtalálható az ön SendinBlue fiókjában az API & "
726
+ "Integration > Manager Your Keys > Version 2.0 > Access Key menüpontban."
727
+
728
+ #: classes/class-fl-builder-service-sendinblue.php:198
729
+ msgid ""
730
+ "There was an error subscribing to SendinBlue. The account is no longer "
731
+ "connected."
732
+ msgstr ""
733
+ "Hiba történt a SendinBlue-ba történő feliratkozáskor. A kapcsolat "
734
+ "megszakadt. "
735
+
736
+ #: classes/class-fl-builder-service-sendinblue.php:220
737
+ msgid "There was an error subscribing to SendinBlue. Please try again."
738
+ msgstr ""
739
+ "Hiba történt a SendinBlue-hoz történő csatlakozás közben. Kérjük próbálja "
740
+ "újra."
741
+
742
+ #: classes/class-fl-builder-service-sendinblue.php:223
743
+ #, php-format
744
+ msgid "Error: Could not subscribe to SendinBlue. %s"
745
+ msgstr "Hiba: Nem tud csatlakozni az SendinBlue-hoz. %s"
746
+
747
+ #: classes/class-fl-builder-services.php:158
748
+ msgctxt "Third party service such as MailChimp."
749
+ msgid "Error: Missing service type."
750
+ msgstr "Hiba: Hiányzik a szolgáltatás típusa. "
751
+
752
+ #: classes/class-fl-builder-services.php:161
753
+ msgctxt "Connection data such as an API key."
754
+ msgid "Error: Missing service data."
755
+ msgstr "Hiba: Hiányzó szolgáltatási adat."
756
+
757
+ #: classes/class-fl-builder-services.php:164
758
+ msgctxt "Account name for a third party service such as MailChimp."
759
+ msgid "Error: Missing account name."
760
+ msgstr "Hiba: Hiányzó fiók név."
761
+
762
+ #: classes/class-fl-builder-services.php:173
763
+ msgctxt "Account name for a third party service such as MailChimp."
764
+ msgid "Error: An account with that name already exists."
765
+ msgstr "Hiba: Egy fiók már létezik ezzel a névvel!"
766
+
767
+ #: classes/class-fl-builder-services.php:253
768
+ msgid "Account Name"
769
+ msgstr "Fiók neve"
770
+
771
+ #: classes/class-fl-builder-services.php:254
772
+ msgid ""
773
+ "Used to identify this connection within the accounts list and can be "
774
+ "anything you like."
775
+ msgstr ""
776
+ "Használja az azonosításhoz ennél a kapcsolatnál a fióklistát és bármi lehet/"
777
+ "tehet, amit csak szeretne."
778
+
779
+ #: classes/class-fl-builder-services.php:267
780
+ msgid "Connect"
781
+ msgstr "Csatlakozás"
782
+
783
+ #: classes/class-fl-builder-services.php:295
784
+ msgid "Add Account..."
785
+ msgstr "Fiók hozzáadása..."
786
+
787
+ #: classes/class-fl-builder-services.php:302
788
+ msgid "Account"
789
+ msgstr "Fiókadatok"
790
+
791
+ #: classes/class-fl-builder-template-settings.php:33
792
+ msgid "Page Builder Templates"
793
+ msgstr "Sablonok"
794
+
795
+ #: classes/class-fl-builder-templates-override.php:49
796
+ msgid "Error! Please enter a number for the site ID."
797
+ msgstr "Hiba! Adja meg honlap azonosítót (site ID)."
798
+
799
+ #: classes/class-fl-builder-templates-override.php:53
800
+ msgid "Error! A site with that ID doesn't exist."
801
+ msgstr "Hiba! A honlap azonosító (site ID) nem létezik."
802
+
803
+ #: classes/class-fl-builder.php:617
804
+ #, php-format
805
+ msgid "Template: %s"
806
+ msgstr "Sablon: %s"
807
+
808
+ #: classes/class-fl-builder.php:652
809
+ msgid "Upgrade!"
810
+ msgstr "Frissítés"
811
+
812
+ #: classes/class-fl-builder.php:656
813
+ msgid "Buy Now!"
814
+ msgstr "Vedd meg most!"
815
+
816
+ #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36
817
+ #: includes/ui-js-templates.php:100
818
+ msgid "Done"
819
+ msgstr "Kész"
820
+
821
+ #: classes/class-fl-builder.php:664
822
+ msgid "Tools"
823
+ msgstr "Eszközök"
824
+
825
+ #: classes/class-fl-builder.php:672 includes/ui-js-config.php:88
826
+ msgid "Add Content"
827
+ msgstr "Tartalom hozzáadása"
828
+
829
+ #: classes/class-fl-builder.php:1032
830
+ #, php-format
831
+ msgctxt "Field name to add."
832
+ msgid "Add %s"
833
+ msgstr "Hozzáadás %s"
834
+
835
+ #: classes/class-fl-builder.php:1126 classes/class-fl-builder.php:1128
836
+ msgctxt "Custom post type label."
837
+ msgid "Templates"
838
+ msgstr "Sablonok"
839
+
840
+ #: classes/class-fl-builder.php:1127 classes/class-fl-builder.php:1129
841
+ msgctxt "Custom post type label."
842
+ msgid "Template"
843
+ msgstr "Sablon"
844
+
845
+ #: classes/class-fl-builder.php:1130
846
+ msgctxt "Custom post type label."
847
+ msgid "Add New"
848
+ msgstr "Új hozzáadása"
849
+
850
+ #: classes/class-fl-builder.php:1131
851
+ msgctxt "Custom post type label."
852
+ msgid "Add New Template"
853
+ msgstr "Új sablon"
854
+
855
+ #: classes/class-fl-builder.php:1132
856
+ msgctxt "Custom post type label."
857
+ msgid "New Template"
858
+ msgstr "Új sablon"
859
+
860
+ #: classes/class-fl-builder.php:1133
861
+ msgctxt "Custom post type label."
862
+ msgid "Edit Template"
863
+ msgstr "A sablon szerkesztése"
864
+
865
+ #: classes/class-fl-builder.php:1134
866
+ msgctxt "Custom post type label."
867
+ msgid "View Template"
868
+ msgstr "Sablon megtekintése"
869
+
870
+ #: classes/class-fl-builder.php:1135
871
+ msgctxt "Custom post type label."
872
+ msgid "All Templates"
873
+ msgstr "Minden sablon"
874
+
875
+ #: classes/class-fl-builder.php:1136
876
+ msgctxt "Custom post type label."
877
+ msgid "Search Templates"
878
+ msgstr "Sablonok keresése"
879
+
880
+ #: classes/class-fl-builder.php:1137
881
+ msgctxt "Custom post type label."
882
+ msgid "Parent Templates:"
883
+ msgstr "Szülő sablonok:"
884
+
885
+ #: classes/class-fl-builder.php:1138
886
+ msgctxt "Custom post type label."
887
+ msgid "No templates found."
888
+ msgstr "Nem találhatók sablonok."
889
+
890
+ #: classes/class-fl-builder.php:1139
891
+ msgctxt "Custom post type label."
892
+ msgid "No templates found in Trash."
893
+ msgstr "Nem találhatók sablonok a lomtárban."
894
+
895
+ #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1163
896
+ msgctxt "Custom taxonomy label."
897
+ msgid "Categories"
898
+ msgstr "Kategóriák"
899
+
900
+ #: classes/class-fl-builder.php:1154
901
+ msgctxt "Custom taxonomy label."
902
+ msgid "Category"
903
+ msgstr "Kategória"
904
+
905
+ #: classes/class-fl-builder.php:1155
906
+ msgctxt "Custom taxonomy label."
907
+ msgid "Search Categories"
908
+ msgstr "Keresés a kategóriákban"
909
+
910
+ #: classes/class-fl-builder.php:1156
911
+ msgctxt "Custom taxonomy label."
912
+ msgid "All Categories"
913
+ msgstr "Minden kategória"
914
+
915
+ #: classes/class-fl-builder.php:1157
916
+ msgctxt "Custom taxonomy label."
917
+ msgid "Parent Category"
918
+ msgstr "Fő kategória"
919
+
920
+ #: classes/class-fl-builder.php:1158
921
+ msgctxt "Custom taxonomy label."
922
+ msgid "Parent Category:"
923
+ msgstr "Szülő kategória"
924
+
925
+ #: classes/class-fl-builder.php:1159
926
+ msgctxt "Custom taxonomy label."
927
+ msgid "Edit Category"
928
+ msgstr "Kategória szerkesztés"
929
+
930
+ #: classes/class-fl-builder.php:1160
931
+ msgctxt "Custom taxonomy label."
932
+ msgid "Update Category"
933
+ msgstr "Kategória frissítése"
934
+
935
+ #: classes/class-fl-builder.php:1161
936
+ msgctxt "Custom taxonomy label."
937
+ msgid "Add New Category"
938
+ msgstr "Új kategória hozzáadás"
939
+
940
+ #: classes/class-fl-builder.php:1162
941
+ msgctxt "Custom taxonomy label."
942
+ msgid "New Category Name"
943
+ msgstr "Új kategória neve"
944
+
945
+ #: classes/class-fl-builder.php:1172
946
+ msgctxt "Custom taxonomy label."
947
+ msgid "Type"
948
+ msgstr "Típus"
949
+
950
+ #: classes/class-fl-builder.php:1448 classes/class-fl-builder.php:1527
951
+ #: classes/class-fl-builder.php:1735 includes/ui-js-templates.php:110
952
+ #: includes/ui-panel-node-templates.php:18
953
+ #: includes/ui-panel-node-templates.php:49
954
+ msgctxt "Indicator for global node templates."
955
+ msgid "Global"
956
+ msgstr "Öszzes"
957
+
958
+ #: classes/class-fl-builder.php:1734
959
+ #, php-format
960
+ msgctxt "%s stands for module name."
961
+ msgid "%s Settings"
962
+ msgstr "%s beállítások"
963
+
964
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
965
+ msgid "Text Editor"
966
+ msgstr "Szövegszerkesztő"
967
+
968
+ #: includes/admin-posts.php:7
969
+ #, php-format
970
+ msgctxt ""
971
+ "The first %s stands for custom branded \"Page Builder\" name. The second %s "
972
+ "stands for the post type name."
973
+ msgid "%s is currently active for this %s."
974
+ msgstr "%s jelenleg aktív: %s."
975
+
976
+ #: includes/admin-posts.php:8
977
+ #, php-format
978
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
979
+ msgid "Launch %s"
980
+ msgstr "Indítás: %s"
981
+
982
+ #: includes/admin-settings-branding.php:7
983
+ msgid "White label the page builder by entering a custom name below."
984
+ msgstr "Fehér címke lehetővé teszi az oldalkészítői egyéni név megadását."
985
+
986
+ #: includes/admin-settings-branding.php:10
987
+ msgid ""
988
+ "Additionally, you may also add a custom icon by entering the URL of an image "
989
+ "below. Leave the field blank if you do not wish to use an icon."
990
+ msgstr ""
991
+ "Ezen felül, hozzá adhat egy egyéni ikont az URL beírásával a kép alatt. "
992
+ "Hagyja üresen a mezőt, ha nem kívánja ikonként használni."
993
+
994
+ #: includes/admin-settings-branding.php:14
995
+ msgid "Save Branding"
996
+ msgstr "Márkajelzés mentése"
997
+
998
+ #: includes/admin-settings-cache.php:9
999
+ msgid ""
1000
+ "A CSS and JavaScript file is dynamically generated and cached each time you "
1001
+ "create a new layout. Sometimes the cache needs to be refreshed when you "
1002
+ "migrate your site to another server or update to the latest version. If you "
1003
+ "are running into any issues, please try clearing the cache by clicking the "
1004
+ "button below."
1005
+ msgstr ""
1006
+ "A CSS és JavaScript fájlt dinamikusan generált és tárolt minden alkalommal, "
1007
+ "amikor ön meglakot egy új elrendezést. Néha a cache-nek frissülnie kell, "
1008
+ "amikor webhelyre való migrálást végez egy másik szerverről vagy frissít a "
1009
+ "legújabb verzióra. Ha bármelyiket futtatja, kérjük, próbálja törölni a "
1010
+ "gyorsítótárat az alábbi gombra kattintva."
1011
+
1012
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14
1013
+ #: includes/admin-settings-uninstall.php:7
1014
+ #: includes/admin-settings-uninstall.php:10
1015
+ #: includes/updater/includes/form.php:31
1016
+ msgid "NOTE:"
1017
+ msgstr "MEGJEGYZÉS:"
1018
+
1019
+ #: includes/admin-settings-cache.php:12
1020
+ #: includes/admin-settings-uninstall.php:10
1021
+ #: includes/updater/includes/form.php:31
1022
+ msgid "This applies to all sites on the network."
1023
+ msgstr "Ez vonatkozik minden weboldalra a hálózatban."
1024
+
1025
+ #: includes/admin-settings-cache.php:14
1026
+ msgid ""
1027
+ "This only applies to this site. Please visit the Network Admin Settings to "
1028
+ "clear the cache for all sites on the network."
1029
+ msgstr ""
1030
+ "Ez természetesen csak az ezen az oldalon működik. Kérjük, látogasson el a "
1031
+ "Network Admin Settings részbe, és törölje a cache-t a számára fontos minden "
1032
+ "területen, a hálózaton."
1033
+
1034
+ #: includes/admin-settings-cache.php:19
1035
+ msgid "Clear Cache"
1036
+ msgstr "Gyorsítótár törlése"
1037
+
1038
+ #: includes/admin-settings-editing.php:3
1039
+ msgid "Editing Settings"
1040
+ msgstr "Szerkesztési beállítások"
1041
+
1042
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27
1043
+ #: includes/admin-settings-modules.php:10
1044
+ #: includes/admin-settings-post-types.php:10
1045
+ #: includes/admin-settings-templates.php:16
1046
+ msgid "Override network settings?"
1047
+ msgstr "Hálózati beállítások felülírása"
1048
+
1049
+ #: includes/admin-settings-editing.php:16
1050
+ msgid "Editing Capability"
1051
+ msgstr "Szerkesztési beállítások"
1052
+
1053
+ #: includes/admin-settings-editing.php:17
1054
+ #, php-format
1055
+ msgid ""
1056
+ "Set the <a%s>capability</a> required for users to access advanced builder "
1057
+ "editing such as adding, deleting or moving modules."
1058
+ msgstr ""
1059
+ "Állítsa be a <a%s> képességet, mert szükséges a felhasználók hozzáférését "
1060
+ "biztosítni a bővített szerkesztésnél, úgy mint, törlés, illetve a modulok "
1061
+ "mozgatása."
1062
+
1063
+ #: includes/admin-settings-editing.php:21
1064
+ msgid "Global Templates Editing Capability"
1065
+ msgstr "Globális sablonok szerkesztési beállítás"
1066
+
1067
+ #: includes/admin-settings-editing.php:22
1068
+ #, php-format
1069
+ msgid "Set the <a%s>capability</a> required for users to global templates."
1070
+ msgstr ""
1071
+ "Állítsa be a <a%s> képességet, mely szükséges a felhasználóknak, a globális "
1072
+ "sablonokhoz."
1073
+
1074
+ #: includes/admin-settings-editing.php:28
1075
+ msgid "Save Editing Settings"
1076
+ msgstr "Szerkesztési beállítások mentése"
1077
+
1078
+ #: includes/admin-settings-help-button.php:8
1079
+ msgid "Help Button Settings"
1080
+ msgstr "Súgó gomb beállítások"
1081
+
1082
+ #: includes/admin-settings-help-button.php:17
1083
+ msgid "Enable Help Button"
1084
+ msgstr "Súgó gomb engedélyezése"
1085
+
1086
+ #: includes/admin-settings-help-button.php:23
1087
+ msgid "Help Tour"
1088
+ msgstr "Segítség bemutató"
1089
+
1090
+ #: includes/admin-settings-help-button.php:27
1091
+ msgid "Enable Help Tour"
1092
+ msgstr "Segítség bemutató bekapcsolása"
1093
+
1094
+ #: includes/admin-settings-help-button.php:31
1095
+ msgid "Help Video"
1096
+ msgstr "Videó Súgó"
1097
+
1098
+ #: includes/admin-settings-help-button.php:35
1099
+ msgid "Enable Help Video"
1100
+ msgstr "Súgó Videó engedélyezése"
1101
+
1102
+ #: includes/admin-settings-help-button.php:39
1103
+ msgid "Help Video Embed Code"
1104
+ msgstr "Súgó Videó beágyazó kód"
1105
+
1106
+ #: includes/admin-settings-help-button.php:45
1107
+ msgid "Knowledge Base"
1108
+ msgstr "Tudásbázis"
1109
+
1110
+ #: includes/admin-settings-help-button.php:49
1111
+ msgid "Enable Knowledge Base"
1112
+ msgstr "Tudásbázis engedélyezése"
1113
+
1114
+ #: includes/admin-settings-help-button.php:53
1115
+ msgid "Knowledge Base URL"
1116
+ msgstr "Tudásbázis URL"
1117
+
1118
+ #: includes/admin-settings-help-button.php:59
1119
+ msgid "Forums"
1120
+ msgstr "Fórum"
1121
+
1122
+ #: includes/admin-settings-help-button.php:63
1123
+ msgid "Enable Forums"
1124
+ msgstr "Fórum engedélyezése"
1125
+
1126
+ #: includes/admin-settings-help-button.php:67
1127
+ msgid "Forums URL"
1128
+ msgstr "Fórumok URL"
1129
+
1130
+ #: includes/admin-settings-help-button.php:77
1131
+ msgid "Save Help Button Settings"
1132
+ msgstr "Súgó gomb beállításának mentése"
1133
+
1134
+ #: includes/admin-settings-icons.php:3
1135
+ msgid "Icon Settings"
1136
+ msgstr "Ikon beállítások"
1137
+
1138
+ #: includes/admin-settings-icons.php:13
1139
+ msgid "Icons for the main site must be managed in the network admin."
1140
+ msgstr "Ikonok a fő oldalon, melyeket kell tudnia kezelni a hálózati adminnak."
1141
+
1142
+ #: includes/admin-settings-icons.php:33
1143
+ #, php-format
1144
+ msgid ""
1145
+ "Enable or disable icon sets using the options below or upload a custom icon "
1146
+ "set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
1147
+ msgstr ""
1148
+ "Engedélyezése vagy tiltása az ikonnak, mely segítségével határozza meg az "
1149
+ "alábbi lehetőségek közül, vagy feltölteni egy egyéni ikont beállítani vagy <a"
1150
+ "%s> Icomoon vagy <a%s> Fontello."
1151
+
1152
+ #: includes/admin-settings-icons.php:48
1153
+ msgctxt "Plugin setup page: Delete icon set."
1154
+ msgid "Delete"
1155
+ msgstr "Törlés"
1156
+
1157
+ #: includes/admin-settings-icons.php:59
1158
+ msgid "Upload Icon Set"
1159
+ msgstr "Ikonok feltöltése"
1160
+
1161
+ #: includes/admin-settings-icons.php:60
1162
+ msgid "Save Icon Settings"
1163
+ msgstr "Ikon beállítások mentése"
1164
+
1165
+ #: includes/admin-settings-js-config.php:4
1166
+ msgid "Select File"
1167
+ msgstr "Válasszon fájlt"
1168
+
1169
+ #: includes/admin-settings-js-config.php:5
1170
+ msgid ""
1171
+ "Please type \"uninstall\" in the box below to confirm that you really want "
1172
+ "to uninstall the page builder and all of its data."
1173
+ msgstr ""
1174
+ "Kérjük, írja be az \"uninstall\" szót az alábbi mezőbe, hogy erősítse meg, "
1175
+ "hogy valóban el szeretné távolítani a page builder-t és minden adatot."
1176
+
1177
+ #: includes/admin-settings-modules.php:3
1178
+ msgid "Enabled Modules"
1179
+ msgstr "Modulok engedélyezése"
1180
+
1181
+ #: includes/admin-settings-modules.php:16
1182
+ msgid "Check or uncheck modules below to enable or disable them."
1183
+ msgstr ""
1184
+ "Jelölje be vagy törölje a jelölést alábbi moduloknál, és ezzel engedélyezze "
1185
+ "vagy tiltsa le őket."
1186
+
1187
+ #: includes/admin-settings-modules.php:26
1188
+ msgctxt "Plugin setup page: Modules."
1189
+ msgid "All"
1190
+ msgstr "Összes"
1191
+
1192
+ #: includes/admin-settings-modules.php:64
1193
+ msgid "Save Module Settings"
1194
+ msgstr "Modul beállítások mentése"
1195
+
1196
+ #: includes/admin-settings-post-types.php:18
1197
+ msgid ""
1198
+ "Enter a comma separated list of the post types you would like the builder to "
1199
+ "work with."
1200
+ msgstr ""
1201
+ "Adjon meg egy vesszővel elválasztott listát a poszt típusú tartalmakról, "
1202
+ "amiken szeretne a szerkesztővel dolgozni."
1203
+
1204
+ #: includes/admin-settings-post-types.php:19
1205
+ #: includes/admin-settings-post-types.php:39
1206
+ msgid "NOTE: Not all custom post types may be supported."
1207
+ msgstr "Figyelem: Nem minden egyéni bejegyzés típus támogatott!"
1208
+
1209
+ #: includes/admin-settings-post-types.php:34
1210
+ msgid "Example: page, post, product"
1211
+ msgstr "Példa: oldal, posta, termék"
1212
+
1213
+ #: includes/admin-settings-post-types.php:38
1214
+ msgid "Select the post types you would like the builder to work with."
1215
+ msgstr ""
1216
+ "Válassza ki a poszt típusát, amivel szeretne dolgozni a szerkesztőben. "
1217
+
1218
+ #: includes/admin-settings-post-types.php:70
1219
+ msgid "Save Post Types"
1220
+ msgstr "Bejegyzés típus mentése"
1221
+
1222
+ #: includes/admin-settings-templates-override.php:1
1223
+ #: includes/admin-settings-templates-override.php:12
1224
+ msgid "Override Core Templates"
1225
+ msgstr "Alap sablon felülírása"
1226
+
1227
+ #: includes/admin-settings-templates-override.php:3
1228
+ msgid ""
1229
+ "Enter the ID of a site on the network whose templates should override core "
1230
+ "builder templates. Leave this field blank if you do not wish to override "
1231
+ "core templates."
1232
+ msgstr ""
1233
+ "Adja meg az azonosítót egy helyet a hálózaton, amely sablonokat előtérbe "
1234
+ "kell helyeznie a központi szerkesztő sablonokkal. Hagyja üresen, ha nem "
1235
+ "akarja, hogy felülbírálja a rendszer a központi sablonokat."
1236
+
1237
+ #: includes/admin-settings-templates-override.php:8
1238
+ msgid ""
1239
+ "Use this setting to override core builder templates with your templates."
1240
+ msgstr ""
1241
+ "Használja ezt a beállítást ha felülbírálja az alapvető sablonokat a saját "
1242
+ "sablonokkal."
1243
+
1244
+ #: includes/admin-settings-templates-override.php:17
1245
+ msgid ""
1246
+ "You may also choose to show your row and module templates as sections within "
1247
+ "the builder panel. A new section will be created for each row or module "
1248
+ "category that you have defined."
1249
+ msgstr ""
1250
+ "Lehetősége van arra is, hogy mutassa meg a sort és a modul sablonok szekciók "
1251
+ "keretében az szerkesztőt. Egy új szakasz jön létre minden egyes sornál vagy "
1252
+ "modul kategóriában, ahogy megadja."
1253
+
1254
+ #: includes/admin-settings-templates-override.php:21
1255
+ msgid "Show Row Templates?"
1256
+ msgstr "Mutassa a sor sablonokat?"
1257
+
1258
+ #: includes/admin-settings-templates-override.php:27
1259
+ msgid "Show Module Templates?"
1260
+ msgstr "Mutassa a modul sablonokat?"
1261
+
1262
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
1263
+ msgid "Template Settings"
1264
+ msgstr "Sablon beállítások"
1265
+
1266
+ #: includes/admin-settings-templates.php:22
1267
+ msgid "Enable Templates"
1268
+ msgstr "Sablonok engedélyezése"
1269
+
1270
+ #: includes/admin-settings-templates.php:23
1271
+ msgid ""
1272
+ "Use this setting to enable or disable templates in the builder interface."
1273
+ msgstr ""
1274
+ "Használja ezt a beállítást a sablon be- és kikapcsolására a szerkesztő "
1275
+ "interfészében. "
1276
+
1277
+ #: includes/admin-settings-templates.php:25
1278
+ msgid "Enable All Templates"
1279
+ msgstr "Sablonok engedélyezése"
1280
+
1281
+ #: includes/admin-settings-templates.php:26
1282
+ msgid "Enable Core Templates Only"
1283
+ msgstr "Csak az alapsablonok bekapcsolása."
1284
+
1285
+ #: includes/admin-settings-templates.php:27
1286
+ msgid "Enable User Templates Only"
1287
+ msgstr "Csak a felhasználói ablonok bekapcsolása."
1288
+
1289
+ #: includes/admin-settings-templates.php:28
1290
+ msgid "Disable All Templates"
1291
+ msgstr "Minden sablon letiltása"
1292
+
1293
+ #: includes/admin-settings-templates.php:31
1294
+ #: includes/admin-settings-templates.php:36
1295
+ msgid "Enable Templates Admin"
1296
+ msgstr "Sablonok engedélyezése"
1297
+
1298
+ #: includes/admin-settings-templates.php:32
1299
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1300
+ msgstr ""
1301
+ "Használja ezt a beállítást a sablon szerkesztéséhez a Wordpress adminban. "
1302
+
1303
+ #: includes/admin-settings-templates.php:50
1304
+ msgid "Save Template Settings"
1305
+ msgstr "Sablon beállítások mentése"
1306
+
1307
+ #: includes/admin-settings-uninstall.php:5
1308
+ msgid ""
1309
+ "Clicking the button below will uninstall the page builder plugin and delete "
1310
+ "all of the data associated with it. You can uninstall or deactivate the page "
1311
+ "builder from the plugins page instead if you do not wish to delete the data."
1312
+ msgstr ""
1313
+ "Az alábbi gombra kattintva eltávolítja a oldalszerkesztő plugint, és törli "
1314
+ "az összes adatot, ami társul hozzá. El tudja távolítani, illetve deaktiválni "
1315
+ "tudja a szerkesztőt a pluginek közül, ha nem akarja törölni az adatokat."
1316
+
1317
+ #: includes/admin-settings-uninstall.php:7
1318
+ msgid ""
1319
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
1320
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
1321
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
1322
+ "its data using those meta values."
1323
+ msgstr ""
1324
+ "Az szerkesztő nem törli a posztban a meta <code>_fl_builder_data</code> , "
1325
+ "<code>_fl_builder_draft</code> és <code>_fl_builder_enabled</code> adatokat "
1326
+ "abban az esetben, ha szeretné újra installálni később. Ha szeretné újra "
1327
+ "installálni, a szerkesztő újraépíti az összes adatot amire használja e meta "
1328
+ "értékeket."
1329
+
1330
+ #: includes/admin-settings-upgrade.php:5
1331
+ msgid ""
1332
+ "You are currently running the lite version of the Beaver Builder plugin. "
1333
+ "Upgrade today for access to premium features such as advanced modules, "
1334
+ "templates, support and more!"
1335
+ msgstr ""
1336
+ "Ön jelenleg a Beaver Builder plugin Lite verzióját futtatja. Frissítsen ma "
1337
+ "és a prémium funkciók, mint például a fejlett modulok, sablonok, támogatás "
1338
+ "és más is előrhetővé válik önnek!"
1339
+
1340
+ #: includes/admin-settings-upgrade.php:7
1341
+ msgid "Upgrade Now"
1342
+ msgstr "Frissítse most"
1343
+
1344
+ #: includes/admin-settings-upgrade.php:9
1345
+ msgid "Learn More"
1346
+ msgstr "Bővebben..."
1347
+
1348
+ #: includes/admin-templates-edit.php:3
1349
+ msgid "Edit Template"
1350
+ msgstr "Sablon szerkesztése"
1351
+
1352
+ #: includes/admin-templates-edit.php:8
1353
+ msgctxt "Template edit form field label. Template name."
1354
+ msgid "Name"
1355
+ msgstr "Név"
1356
+
1357
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306
1358
+ #: modules/post-carousel/post-carousel.php:255
1359
+ #: modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:460
1360
+ msgid "Image"
1361
+ msgstr "Kép"
1362
+
1363
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139
1364
+ #: includes/row-settings.php:179 includes/template-settings.php:23
1365
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
1366
+ #: modules/content-slider/content-slider.php:473
1367
+ #: modules/post-grid/post-grid.php:130 modules/post-slider/post-slider.php:626
1368
+ #: modules/post-slider/post-slider.php:645
1369
+ msgid "Position"
1370
+ msgstr "Pozíció"
1371
+
1372
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1373
+ msgctxt "Template edit form field label. Is template premium one?"
1374
+ msgid "Premium"
1375
+ msgstr "Prémium"
1376
+
1377
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30
1378
+ #: includes/global-settings.php:18 includes/global-settings.php:110
1379
+ #: includes/global-settings.php:124 includes/node-template-settings.php:22
1380
+ #: includes/row-settings.php:331 includes/template-settings.php:31
1381
+ #: modules/accordion/accordion.php:90 modules/callout/callout.php:421
1382
+ #: modules/content-slider/content-slider.php:210
1383
+ #: modules/content-slider/content-slider.php:224
1384
+ #: modules/content-slider/content-slider.php:258
1385
+ #: modules/content-slider/content-slider.php:267
1386
+ #: modules/content-slider/content-slider.php:538
1387
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
1388
+ #: modules/menu/menu.php:167 modules/menu/menu.php:358
1389
+ #: modules/post-carousel/post-carousel.php:139
1390
+ #: modules/post-carousel/post-carousel.php:155
1391
+ #: modules/post-carousel/post-carousel.php:182
1392
+ #: modules/post-carousel/post-carousel.php:191
1393
+ #: modules/post-carousel/post-carousel.php:232
1394
+ #: modules/post-carousel/post-carousel.php:283
1395
+ #: modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:357
1396
+ #: modules/post-slider/post-slider.php:382
1397
+ #: modules/post-slider/post-slider.php:409
1398
+ #: modules/post-slider/post-slider.php:418
1399
+ #: modules/post-slider/post-slider.php:739 modules/slideshow/slideshow.php:323
1400
+ #: modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384
1401
+ #: modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447
1402
+ #: modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505
1403
+ #: modules/slideshow/slideshow.php:514 modules/slideshow/slideshow.php:523
1404
+ #: modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541
1405
+ #: modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564
1406
+ #: modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614
1407
+ #: modules/slideshow/slideshow.php:626 modules/slideshow/slideshow.php:638
1408
+ #: modules/slideshow/slideshow.php:650
1409
+ #: modules/social-buttons/social-buttons.php:111
1410
+ #: modules/social-buttons/social-buttons.php:120
1411
+ #: modules/social-buttons/social-buttons.php:129
1412
+ #: modules/testimonials/testimonials.php:85
1413
+ #: modules/testimonials/testimonials.php:124
1414
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
1415
+ #: modules/video/video.php:123
1416
+ msgid "No"
1417
+ msgstr "Nem"
1418
+
1419
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30
1420
+ #: includes/global-settings.php:19 includes/global-settings.php:111
1421
+ #: includes/global-settings.php:125 includes/node-template-settings.php:23
1422
+ #: includes/row-settings.php:332 includes/template-settings.php:32
1423
+ #: modules/accordion/accordion.php:89 modules/callout/callout.php:422
1424
+ #: modules/content-slider/content-slider.php:211
1425
+ #: modules/content-slider/content-slider.php:225
1426
+ #: modules/content-slider/content-slider.php:259
1427
+ #: modules/content-slider/content-slider.php:268
1428
+ #: modules/content-slider/content-slider.php:539
1429
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
1430
+ #: modules/menu/menu.php:168 modules/menu/menu.php:359
1431
+ #: modules/post-carousel/post-carousel.php:140
1432
+ #: modules/post-carousel/post-carousel.php:156
1433
+ #: modules/post-carousel/post-carousel.php:183
1434
+ #: modules/post-carousel/post-carousel.php:192
1435
+ #: modules/post-carousel/post-carousel.php:233
1436
+ #: modules/post-carousel/post-carousel.php:282
1437
+ #: modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:358
1438
+ #: modules/post-slider/post-slider.php:383
1439
+ #: modules/post-slider/post-slider.php:410
1440
+ #: modules/post-slider/post-slider.php:419
1441
+ #: modules/post-slider/post-slider.php:740 modules/slideshow/slideshow.php:324
1442
+ #: modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385
1443
+ #: modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448
1444
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
1445
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
1446
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
1447
+ #: modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565
1448
+ #: modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615
1449
+ #: modules/slideshow/slideshow.php:627 modules/slideshow/slideshow.php:639
1450
+ #: modules/slideshow/slideshow.php:651
1451
+ #: modules/social-buttons/social-buttons.php:110
1452
+ #: modules/social-buttons/social-buttons.php:119
1453
+ #: modules/social-buttons/social-buttons.php:128
1454
+ #: modules/testimonials/testimonials.php:86
1455
+ #: modules/testimonials/testimonials.php:125
1456
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
1457
+ #: modules/video/video.php:124
1458
+ msgid "Yes"
1459
+ msgstr "Igen"
1460
+
1461
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1462
+ msgid "Category"
1463
+ msgstr "Kategória"
1464
+
1465
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1466
+ msgctxt "Templates category label."
1467
+ msgid "Landing Pages"
1468
+ msgstr "Landoló oldalak"
1469
+
1470
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1471
+ msgctxt "Templates category label."
1472
+ msgid "Company Info"
1473
+ msgstr "Cégadatok"
1474
+
1475
+ #: includes/admin-templates-edit.php:40
1476
+ msgid "Update Template"
1477
+ msgstr "Sablon frissítés"
1478
+
1479
+ #: includes/admin-templates.php:3
1480
+ msgid "Page Builder Template"
1481
+ msgstr "Sablonok"
1482
+
1483
+ #: includes/admin-templates.php:10
1484
+ msgctxt "Templates list column label."
1485
+ msgid "Name"
1486
+ msgstr "Név"
1487
+
1488
+ #: includes/admin-templates.php:11
1489
+ msgctxt "Templates list column label."
1490
+ msgid "Category"
1491
+ msgstr "Kategória"
1492
+
1493
+ #: includes/admin-templates.php:12
1494
+ msgctxt "Templates list column label. Is template premium one?"
1495
+ msgid "Premium"
1496
+ msgstr "Prémium"
1497
+
1498
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
1499
+ #: includes/template-selector.php:70
1500
+ msgid "Edit"
1501
+ msgstr "Szerkesztés"
1502
+
1503
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1504
+ msgid "Delete"
1505
+ msgstr "Törlés"
1506
+
1507
+ #: includes/admin-templates.php:40 includes/ui-js-config.php:32
1508
+ msgid "Do you really want to delete this template?"
1509
+ msgstr "Biztosan törölni szeretné az aktuális sablont?"
1510
+
1511
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:31
1512
+ #: includes/ui-js-templates.php:55
1513
+ msgid "Column Settings"
1514
+ msgstr "Oszlop beállítások"
1515
+
1516
+ #: includes/column-settings.php:7 includes/module-settings.php:87
1517
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
1518
+ #: modules/button/button.php:117 modules/button/button.php:155
1519
+ #: modules/button/button.php:159 modules/callout/callout.php:242
1520
+ #: modules/callout/callout.php:554
1521
+ #: modules/content-slider/content-slider.php:426
1522
+ #: modules/content-slider/content-slider.php:667 modules/cta/cta.php:102
1523
+ #: modules/cta/cta.php:309 modules/heading/heading.php:69
1524
+ #: modules/icon-group/icon-group.php:44 modules/icon/icon.php:75
1525
+ #: modules/menu/menu.php:146 modules/post-carousel/post-carousel.php:389
1526
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:579
1527
+ #: modules/pricing-table/pricing-table.php:43
1528
+ #: modules/pricing-table/pricing-table.php:155
1529
+ #: modules/separator/separator.php:72
1530
+ #: modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1531
+ msgid "Style"
1532
+ msgstr "Stílus"
1533
+
1534
+ #: includes/column-settings.php:14
1535
+ msgid "Column Width"
1536
+ msgstr "Oszlop szélesség"
1537
+
1538
+ #: includes/column-settings.php:26 modules/button/button.php:66
1539
+ #: modules/callout/callout.php:226 modules/callout/callout.php:479
1540
+ #: modules/callout/callout.php:495
1541
+ #: modules/content-slider/content-slider.php:383
1542
+ #: modules/content-slider/content-slider.php:617 modules/cta/cta.php:85
1543
+ #: modules/cta/cta.php:222 modules/menu/menu.php:174
1544
+ #: modules/post-slider/post-slider.php:622
1545
+ msgid "Text"
1546
+ msgstr "Szöveg"
1547
+
1548
+ #: includes/column-settings.php:30 includes/column-settings.php:93
1549
+ #: includes/column-settings.php:248 includes/row-settings.php:133
1550
+ #: includes/row-settings.php:427 modules/callout/callout.php:392
1551
+ #: modules/content-slider/content-slider.php:338
1552
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1553
+ #: modules/separator/separator.php:34
1554
+ msgid "Color"
1555
+ msgstr "Szín"
1556
+
1557
+ #: includes/column-settings.php:38 includes/row-settings.php:60
1558
+ #: modules/menu/menu.php:178 modules/post-carousel/post-carousel.php:401
1559
+ #: modules/post-slider/post-slider.php:699
1560
+ msgid "Link Color"
1561
+ msgstr "Hivatkozás színe"
1562
+
1563
+ #: includes/column-settings.php:46 includes/row-settings.php:68
1564
+ #: modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406
1565
+ #: modules/post-slider/post-slider.php:715
1566
+ msgid "Link Hover Color"
1567
+ msgstr "Hivatkozás háttérszíne egér rávitelekor"
1568
+
1569
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1570
+ msgid "Heading Color"
1571
+ msgstr "Címsor színe"
1572
+
1573
+ #: includes/column-settings.php:63 includes/row-settings.php:85
1574
+ #: modules/post-slider/post-slider.php:463
1575
+ msgid "Background"
1576
+ msgstr "Háttér"
1577
+
1578
+ #: includes/column-settings.php:67 includes/column-settings.php:215
1579
+ #: includes/row-settings.php:89 includes/row-settings.php:394
1580
+ #: modules/callout/callout.php:475
1581
+ #: modules/content-slider/content-slider.php:332
1582
+ #: modules/content-slider/content-slider.php:379
1583
+ #: modules/content-slider/content-slider.php:597
1584
+ #: modules/content-slider/content-slider.php:739
1585
+ #: modules/slideshow/slideshow.php:347
1586
+ msgid "Type"
1587
+ msgstr "Típus"
1588
+
1589
+ #: includes/column-settings.php:70 includes/row-settings.php:92
1590
+ #: modules/content-slider/content-slider.php:339
1591
+ msgctxt "Background type."
1592
+ msgid "None"
1593
+ msgstr "Nincs"
1594
+
1595
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1596
+ msgctxt "Background type."
1597
+ msgid "Color"
1598
+ msgstr "Szín"
1599
+
1600
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1601
+ msgctxt "Background type."
1602
+ msgid "Photo"
1603
+ msgstr "Kép"
1604
+
1605
+ #: includes/column-settings.php:89 includes/row-settings.php:129
1606
+ #: modules/button/button.php:124 modules/callout/callout.php:405
1607
+ #: modules/callout/callout.php:519
1608
+ #: modules/content-slider/content-slider.php:364
1609
+ #: modules/content-slider/content-slider.php:640 modules/cta/cta.php:198
1610
+ #: modules/cta/cta.php:274 modules/icon-group/icon-group.php:64
1611
+ #: modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1612
+ msgid "Background Color"
1613
+ msgstr "Háttérszín"
1614
+
1615
+ #: includes/column-settings.php:101 includes/column-settings.php:256
1616
+ #: includes/row-settings.php:141 includes/row-settings.php:435
1617
+ #: modules/separator/separator.php:44
1618
+ msgid "Opacity"
1619
+ msgstr "Átlátszóság"
1620
+
1621
+ #: includes/column-settings.php:113 includes/row-settings.php:153
1622
+ #: modules/content-slider/content-slider.php:360
1623
+ msgid "Background Photo"
1624
+ msgstr "Kép háttérszín"
1625
+
1626
+ #: includes/column-settings.php:117 includes/row-settings.php:157
1627
+ #: includes/row-settings.php:345 modules/callout/callout.php:317
1628
+ #: modules/callout/callout.php:333 modules/callout/callout.php:337
1629
+ #: modules/content-slider/content-slider.php:336
1630
+ #: modules/content-slider/content-slider.php:405
1631
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25
1632
+ #: modules/photo/photo.php:408
1633
+ msgid "Photo"
1634
+ msgstr "Kép"
1635
+
1636
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1637
+ msgid "Repeat"
1638
+ msgstr "Ismétlés"
1639
+
1640
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1641
+ msgctxt "Background repeat."
1642
+ msgid "None"
1643
+ msgstr "Nincs"
1644
+
1645
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1646
+ msgctxt "Background repeat."
1647
+ msgid "Tile"
1648
+ msgstr "Cím"
1649
+
1650
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1651
+ msgctxt "Background repeat."
1652
+ msgid "Horizontal"
1653
+ msgstr "Vízszintes"
1654
+
1655
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1656
+ msgctxt "Background repeat."
1657
+ msgid "Vertical"
1658
+ msgstr "Függőleges"
1659
+
1660
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1661
+ msgid ""
1662
+ "Repeat applies to how the image should display in the background. Choosing "
1663
+ "none will display the image as uploaded. Tile will repeat the image as many "
1664
+ "times as needed to fill the background horizontally and vertically. You can "
1665
+ "also specify the image to only repeat horizontally or vertically."
1666
+ msgstr ""
1667
+
1668
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1669
+ msgid "Left Top"
1670
+ msgstr "Balra fent"
1671
+
1672
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1673
+ msgid "Left Center"
1674
+ msgstr "Balra középen"
1675
+
1676
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1677
+ msgid "Left Bottom"
1678
+ msgstr "Balra lent"
1679
+
1680
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1681
+ msgid "Right Top"
1682
+ msgstr "Jobbra fent"
1683
+
1684
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1685
+ msgid "Right Center"
1686
+ msgstr "Jobbra középen"
1687
+
1688
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1689
+ msgid "Right Bottom"
1690
+ msgstr "Jobbra lent"
1691
+
1692
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1693
+ msgid "Center Top"
1694
+ msgstr "Középen (center)"
1695
+
1696
+ #: includes/column-settings.php:149 includes/row-settings.php:189
1697
+ #: modules/button/button.php:227 modules/callout/callout.php:252
1698
+ #: modules/content-slider/content-slider.php:478 modules/cta/cta.php:127
1699
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1700
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1701
+ #: modules/menu/menu.php:158 modules/photo/photo.php:434
1702
+ #: modules/social-buttons/social-buttons.php:100
1703
+ msgid "Center"
1704
+ msgstr "Középen"
1705
+
1706
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1707
+ msgid "Center Bottom"
1708
+ msgstr "Alul középen"
1709
+
1710
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1711
+ msgid "Position will tell the image where it should sit in the background."
1712
+ msgstr "Pozíció megmondja a képen, hol kell lennie a háttérben."
1713
+
1714
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1715
+ msgid "Attachment"
1716
+ msgstr "Csatolmány"
1717
+
1718
+ #: includes/column-settings.php:162 includes/row-settings.php:202
1719
+ #: modules/post-grid/post-grid.php:78
1720
+ msgid "Scroll"
1721
+ msgstr "Görgetett"
1722
+
1723
+ #: includes/column-settings.php:163 includes/global-settings.php:69
1724
+ #: includes/global-settings.php:83 includes/row-settings.php:19
1725
+ #: includes/row-settings.php:37 includes/row-settings.php:203
1726
+ msgid "Fixed"
1727
+ msgstr "Rögzített"
1728
+
1729
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1730
+ msgid ""
1731
+ "Attachment will specify how the image reacts when scrolling a page. When "
1732
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1733
+ "the default setting. Fixed will allow the image to scroll within the "
1734
+ "background if fill is selected in the scale setting."
1735
+ msgstr ""
1736
+ "A csatolmány fogja meghatározni, hogy a kép hogyan reagál, amikor görgetés "
1737
+ "történik az oldalon. Amikor görgetést választja a látogató, a kép gördül az "
1738
+ "oldalon együtt a görgetéssel. Ez az alapértelmezett beállítás. Lehetővé "
1739
+ "teszi a kép görgetését a háttérben, ha ki van jelölve a skála beállítása."
1740
+
1741
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1742
+ msgid "Scale"
1743
+ msgstr "Méretarány"
1744
+
1745
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1746
+ msgctxt "Background scale."
1747
+ msgid "None"
1748
+ msgstr "Nincs"
1749
+
1750
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1751
+ msgid "Fit"
1752
+ msgstr "Illeszkedik"
1753
+
1754
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1755
+ msgid "Fill"
1756
+ msgstr "Kitölt"
1757
+
1758
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1759
+ msgid ""
1760
+ "Scale applies to how the image should display in the background. You can "
1761
+ "select either fill or fit to the background."
1762
+ msgstr ""
1763
+
1764
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1765
+ msgid "Background Overlay"
1766
+ msgstr "Borító háttér"
1767
+
1768
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1769
+ msgid "Overlay Color"
1770
+ msgstr "Borító szín"
1771
+
1772
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1773
+ msgid "Overlay Opacity"
1774
+ msgstr "Borító átlászósága"
1775
+
1776
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1777
+ msgid "Border"
1778
+ msgstr "Szegély"
1779
+
1780
+ #: includes/column-settings.php:217 includes/row-settings.php:396
1781
+ msgid ""
1782
+ "The type of border to use. Double borders must have a width of at least 3px "
1783
+ "to render properly."
1784
+ msgstr ""
1785
+
1786
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1787
+ msgctxt "Border type."
1788
+ msgid "None"
1789
+ msgstr "Nincs"
1790
+
1791
+ #: includes/column-settings.php:220 includes/row-settings.php:399
1792
+ #: modules/separator/separator.php:75
1793
+ msgctxt "Border type."
1794
+ msgid "Solid"
1795
+ msgstr "Vonal"
1796
+
1797
+ #: includes/column-settings.php:221 includes/row-settings.php:400
1798
+ #: modules/separator/separator.php:76
1799
+ msgctxt "Border type."
1800
+ msgid "Dashed"
1801
+ msgstr "Szaggatott"
1802
+
1803
+ #: includes/column-settings.php:222 includes/row-settings.php:401
1804
+ #: modules/separator/separator.php:77
1805
+ msgctxt "Border type."
1806
+ msgid "Dotted"
1807
+ msgstr "Pontozott"
1808
+
1809
+ #: includes/column-settings.php:223 includes/row-settings.php:402
1810
+ #: modules/separator/separator.php:78
1811
+ msgctxt "Border type."
1812
+ msgid "Double"
1813
+ msgstr "Dupla"
1814
+
1815
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1816
+ msgid "Top Width"
1817
+ msgstr "Fenti szélesség"
1818
+
1819
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1820
+ msgid "Bottom Width"
1821
+ msgstr "Lenti szélesség"
1822
+
1823
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1824
+ msgid "Left Width"
1825
+ msgstr "Bal szélesség"
1826
+
1827
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1828
+ msgid "Right Width"
1829
+ msgstr "Jobb szélesség"
1830
+
1831
+ #: includes/column-settings.php:318 includes/module-settings.php:6
1832
+ #: includes/row-settings.php:497 modules/content-slider/content-slider.php:274
1833
+ msgid "Advanced"
1834
+ msgstr "Haladó"
1835
+
1836
+ #: includes/column-settings.php:321 includes/global-settings.php:41
1837
+ #: includes/global-settings.php:94 includes/module-settings.php:9
1838
+ #: includes/row-settings.php:500
1839
+ msgid "Margins"
1840
+ msgstr "Margók"
1841
+
1842
+ #: includes/column-settings.php:325 includes/column-settings.php:378
1843
+ #: includes/module-settings.php:13 includes/row-settings.php:504
1844
+ #: includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1845
+ msgid "Top"
1846
+ msgstr "Fent"
1847
+
1848
+ #: includes/column-settings.php:337 includes/column-settings.php:390
1849
+ #: includes/module-settings.php:25 includes/row-settings.php:516
1850
+ #: includes/row-settings.php:569 modules/post-slider/post-slider.php:632
1851
+ #: modules/slideshow/slideshow.php:482
1852
+ msgid "Bottom"
1853
+ msgstr "Lent"
1854
+
1855
+ #: includes/column-settings.php:349 includes/column-settings.php:402
1856
+ #: includes/module-settings.php:37 includes/row-settings.php:528
1857
+ #: includes/row-settings.php:581 modules/button/button.php:228
1858
+ #: modules/callout/callout.php:253
1859
+ #: modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1860
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
1861
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
1862
+ #: modules/menu/menu.php:157 modules/photo/photo.php:433
1863
+ #: modules/post-slider/post-slider.php:630
1864
+ #: modules/post-slider/post-slider.php:649
1865
+ #: modules/social-buttons/social-buttons.php:101
1866
+ msgid "Left"
1867
+ msgstr "Bal"
1868
+
1869
+ #: includes/column-settings.php:361 includes/column-settings.php:414
1870
+ #: includes/module-settings.php:49 includes/row-settings.php:540
1871
+ #: includes/row-settings.php:593 modules/button/button.php:229
1872
+ #: modules/callout/callout.php:254
1873
+ #: modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1874
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
1875
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
1876
+ #: modules/menu/menu.php:159 modules/photo/photo.php:435
1877
+ #: modules/post-slider/post-slider.php:631
1878
+ #: modules/post-slider/post-slider.php:650
1879
+ #: modules/social-buttons/social-buttons.php:102
1880
+ msgid "Right"
1881
+ msgstr "Jobb"
1882
+
1883
+ #: includes/column-settings.php:374 includes/global-settings.php:49
1884
+ #: includes/row-settings.php:553 modules/button/button.php:242
1885
+ #: modules/callout/callout.php:609
1886
+ #: modules/content-slider/content-slider.php:713 modules/cta/cta.php:355
1887
+ #: modules/subscribe-form/subscribe-form.php:273
1888
+ msgid "Padding"
1889
+ msgstr "Belső margó"
1890
+
1891
+ #: includes/column-settings.php:427 includes/global-settings.php:103
1892
+ #: includes/module-settings.php:62 includes/row-settings.php:606
1893
+ msgid "Responsive Layout"
1894
+ msgstr "Reszponzív elrendezés"
1895
+
1896
+ #: includes/column-settings.php:431 includes/module-settings.php:66
1897
+ #: includes/row-settings.php:610 modules/slideshow/slideshow.php:298
1898
+ msgid "Display"
1899
+ msgstr "Megjelenítés"
1900
+
1901
+ #: includes/column-settings.php:433 includes/module-settings.php:68
1902
+ #: includes/row-settings.php:612
1903
+ msgid "Always"
1904
+ msgstr "Mindig"
1905
+
1906
+ #: includes/column-settings.php:434 includes/module-settings.php:69
1907
+ #: includes/row-settings.php:613
1908
+ msgid "Large Devices Only"
1909
+ msgstr "Csak nagy méretű eszköz"
1910
+
1911
+ #: includes/column-settings.php:435 includes/module-settings.php:70
1912
+ #: includes/row-settings.php:614
1913
+ msgid "Large &amp; Medium Devices Only"
1914
+ msgstr "Csak nagy és közepes méretű eszköz"
1915
+
1916
+ #: includes/column-settings.php:436 includes/module-settings.php:71
1917
+ #: includes/row-settings.php:615
1918
+ msgid "Medium Devices Only"
1919
+ msgstr "Csak közepes méretű eszköz"
1920
+
1921
+ #: includes/column-settings.php:437 includes/module-settings.php:72
1922
+ #: includes/row-settings.php:616
1923
+ msgid "Medium &amp; Small Devices Only"
1924
+ msgstr "Csak közepes és kisebb méretű eszköz"
1925
+
1926
+ #: includes/column-settings.php:438 includes/module-settings.php:73
1927
+ #: includes/row-settings.php:617
1928
+ msgid "Small Devices Only"
1929
+ msgstr "Csak kis méretű eszköz"
1930
+
1931
+ #: includes/column-settings.php:440
1932
+ msgid "Choose whether to show or hide this column at different device sizes."
1933
+ msgstr ""
1934
+
1935
+ #: includes/column-settings.php:447
1936
+ msgid "Medium Device Width"
1937
+ msgstr "Közepes eszköz szélesség"
1938
+
1939
+ #: includes/column-settings.php:448
1940
+ msgid "The width of this column on medium devices such as tablets."
1941
+ msgstr ""
1942
+ "A szélessége ebben az oszlopban a közepes eszközökhöz illeszkedik, mint "
1943
+ "például tabletek."
1944
+
1945
+ #: includes/column-settings.php:450 includes/column-settings.php:478
1946
+ #: modules/callout/callout.php:284
1947
+ #: modules/content-slider/content-slider.php:449 modules/cta/cta.php:168
1948
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
1949
+ #: modules/heading/heading.php:174 modules/menu/menu.php:156
1950
+ #: modules/post-slider/post-slider.php:602
1951
+ msgid "Default"
1952
+ msgstr "Alapértelmezett"
1953
+
1954
+ #: includes/column-settings.php:451 includes/column-settings.php:479
1955
+ #: modules/button/button.php:202 modules/callout/callout.php:285
1956
+ #: modules/content-slider/content-slider.php:450 modules/cta/cta.php:169
1957
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
1958
+ #: modules/heading/heading.php:175 modules/post-slider/post-slider.php:603
1959
+ #: modules/social-buttons/social-buttons.php:74
1960
+ msgid "Custom"
1961
+ msgstr "Egyéni"
1962
+
1963
+ #: includes/column-settings.php:464
1964
+ msgid "Custom Medium Device Width"
1965
+ msgstr "Egyedi közepes eszköz szélesség"
1966
+
1967
+ #: includes/column-settings.php:475
1968
+ msgid "Small Device Width"
1969
+ msgstr "Kisméretű eszköz szélesség"
1970
+
1971
+ #: includes/column-settings.php:476
1972
+ msgid "The width of this column on small devices such as phones."
1973
+ msgstr ""
1974
+ "A szélessége ebben az oszlopban a kis eszközökhöz illeszkedik, mint például "
1975
+ "mobiltelefonok."
1976
+
1977
+ #: includes/column-settings.php:492
1978
+ msgid "Custom Small Device Width"
1979
+ msgstr "Egyedi kisméretű eszköz szélesség"
1980
+
1981
+ #: includes/column-settings.php:504 includes/module-settings.php:115
1982
+ #: includes/row-settings.php:627
1983
+ msgid "CSS Selectors"
1984
+ msgstr "CSS választó"
1985
+
1986
+ #: includes/column-settings.php:508 includes/loop-settings.php:28
1987
+ #: includes/module-settings.php:119 includes/row-settings.php:631
1988
+ msgid "ID"
1989
+ msgstr "Azonosító (ID)"
1990
+
1991
+ #: includes/column-settings.php:509
1992
+ msgid ""
1993
+ "A unique ID that will be applied to this column's HTML. Must start with a "
1994
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
1995
+ msgstr ""
1996
+
1997
+ #: includes/column-settings.php:516
1998
+ msgid "CSS Class"
1999
+ msgstr "CSS osztály"
2000
+
2001
+ #: includes/column-settings.php:517
2002
+ msgid ""
2003
+ "A class that will be applied to this column's HTML. Must start with a letter "
2004
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2005
+ "classes with spaces."
2006
+ msgstr ""
2007
+
2008
+ #: includes/field-form.php:28
2009
+ #, php-format
2010
+ msgctxt "%s stands for form field label."
2011
+ msgid "Edit %s"
2012
+ msgstr "Szerkesztés %s"
2013
+
2014
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
2015
+ msgid "Select Icon"
2016
+ msgstr "Ikon választás"
2017
+
2018
+ #: includes/field-icon.php:5 includes/field-photo.php:13
2019
+ msgid "Replace"
2020
+ msgstr "Csere"
2021
+
2022
+ #: includes/field-icon.php:7 includes/ui-js-config.php:65
2023
+ #: includes/ui-js-templates.php:15 includes/ui-js-templates.php:32
2024
+ #: includes/ui-js-templates.php:56
2025
+ msgid "Remove"
2026
+ msgstr "Eltávolítás"
2027
+
2028
+ #: includes/field-link.php:3
2029
+ msgid "Select"
2030
+ msgstr "Válasszon..."
2031
+
2032
+ #: includes/field-link.php:5
2033
+ msgid "Enter a post title to search."
2034
+ msgstr "Keresés a bejegyzések között"
2035
+
2036
+ #: includes/field-link.php:6 includes/field-suggest.php:7
2037
+ msgid "Start typing..."
2038
+ msgstr "Kezdje el beírni ..."
2039
+
2040
+ #: includes/field-link.php:7 includes/icon-selector.php:28
2041
+ #: includes/settings.php:71 includes/template-selector.php:92
2042
+ #: includes/ui-js-config.php:22 includes/ui-js-templates.php:72
2043
+ msgid "Cancel"
2044
+ msgstr "Mégse"
2045
+
2046
+ #: includes/field-multiple-photos.php:20
2047
+ #, php-format
2048
+ msgid "1 Photo Selected"
2049
+ msgid_plural "%d Photos Selected"
2050
+ msgstr[0] "1 kép választása"
2051
+ msgstr[1] "%d képek választása"
2052
+
2053
+ #: includes/field-multiple-photos.php:22
2054
+ msgid "Create Gallery"
2055
+ msgstr "Galéria létrehozása"
2056
+
2057
+ #: includes/field-multiple-photos.php:23
2058
+ msgid "Edit Gallery"
2059
+ msgstr "Galéria szerkesztése"
2060
+
2061
+ #: includes/field-multiple-photos.php:24
2062
+ msgid "Add Photos"
2063
+ msgstr "Képek hozzáadása"
2064
+
2065
+ #: includes/field-photo.php:3 includes/ui-js-config.php:71
2066
+ msgid "Select Photo"
2067
+ msgstr "Válassza ki a képet"
2068
+
2069
+ #: includes/field-video.php:3 includes/ui-js-config.php:73
2070
+ msgid "Select Video"
2071
+ msgstr "Válassza ki a videót"
2072
+
2073
+ #: includes/field-video.php:17
2074
+ msgid "Replace Video"
2075
+ msgstr "Videó cseréje"
2076
+
2077
+ #: includes/global-settings.php:7 includes/node-template-settings.php:7
2078
+ #: includes/template-settings.php:7 includes/user-template-settings.php:7
2079
+ #: modules/accordion/accordion.php:110 modules/button/button.php:59
2080
+ #: modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
2081
+ #: modules/content-slider/content-slider.php:191
2082
+ #: modules/content-slider/content-slider.php:315 modules/cta/cta.php:68
2083
+ #: modules/gallery/gallery.php:220 modules/heading/heading.php:26
2084
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
2085
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/menu/menu.php:82
2086
+ #: modules/photo/photo.php:384 modules/pricing-table/pricing-table.php:87
2087
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
2088
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264
2089
+ #: modules/social-buttons/social-buttons.php:64
2090
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77
2091
+ #: modules/testimonials/testimonials.php:30
2092
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
2093
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
2094
+ msgid "General"
2095
+ msgstr "Általános"
2096
+
2097
+ #: includes/global-settings.php:8
2098
+ msgid "Note: These settings apply to all posts and pages."
2099
+ msgstr ""
2100
+ "Megjegyzés: Ezek a beállítások az összes bejegyzésre és oldalra vonatkozik."
2101
+
2102
+ #: includes/global-settings.php:11
2103
+ msgid "Default Page Heading"
2104
+ msgstr "Alapértelmezett fejléc"
2105
+
2106
+ #: includes/global-settings.php:15
2107
+ msgctxt ""
2108
+ "General settings form field label. Intended meaning: \"Show page heading?\""
2109
+ msgid "Show"
2110
+ msgstr "Mutat"
2111
+
2112
+ #: includes/global-settings.php:26
2113
+ msgid ""
2114
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
2115
+ "You will also be required to enter some basic CSS for this to work if you "
2116
+ "choose no."
2117
+ msgstr ""
2118
+
2119
+ #: includes/global-settings.php:30
2120
+ msgid "CSS Selector"
2121
+ msgstr "CSS választó"
2122
+
2123
+ #: includes/global-settings.php:32
2124
+ msgid "Enter a CSS selector for the default page heading to hide it."
2125
+ msgstr ""
2126
+ "Adjon meg egy CSS selector-t az alapértelmezett oldal felécét elrejteni."
2127
+
2128
+ #: includes/global-settings.php:37
2129
+ msgid "Rows"
2130
+ msgstr "Sorok"
2131
+
2132
+ #: includes/global-settings.php:57
2133
+ msgid "Max Width"
2134
+ msgstr "Maximális szélesség"
2135
+
2136
+ #: includes/global-settings.php:62
2137
+ msgid ""
2138
+ "All rows will default to this width. You can override this and make a row "
2139
+ "full width in the settings for each row."
2140
+ msgstr ""
2141
+
2142
+ #: includes/global-settings.php:66
2143
+ msgid "Default Row Width"
2144
+ msgstr "Alapértelmezett sor szélesség"
2145
+
2146
+ #: includes/global-settings.php:70 includes/global-settings.php:84
2147
+ #: includes/row-settings.php:20 includes/row-settings.php:38
2148
+ #: modules/button/button.php:201 modules/callout/callout.php:596
2149
+ msgid "Full Width"
2150
+ msgstr "Teljes szélesség"
2151
+
2152
+ #: includes/global-settings.php:80
2153
+ msgid "Default Row Content Width"
2154
+ msgstr "Alapértelmezett sor szélesség"
2155
+
2156
+ #: includes/global-settings.php:107
2157
+ msgctxt ""
2158
+ "General settings form field label. Intended meaning: \"Responsive layout "
2159
+ "enabled?\""
2160
+ msgid "Enabled"
2161
+ msgstr "Engedélyezett"
2162
+
2163
+ #: includes/global-settings.php:121
2164
+ msgctxt ""
2165
+ "General settings form field label. Intended meaning: \"Enable auto spacing "
2166
+ "for responsive layouts?\""
2167
+ msgid "Enable Auto Spacing"
2168
+ msgstr "Auto térköz engedélyezése"
2169
+
2170
+ #: includes/global-settings.php:127
2171
+ msgid ""
2172
+ "When auto spacing is enabled, the builder will automatically adjust the "
2173
+ "margins and padding in your layout once the small device breakpoint is "
2174
+ "reached. Most users will want to leave this enabled."
2175
+ msgstr ""
2176
+
2177
+ #: includes/global-settings.php:131
2178
+ msgid "Medium Device Breakpoint"
2179
+ msgstr "Közepes eszköznél töréspont"
2180
+
2181
+ #: includes/global-settings.php:136
2182
+ msgid ""
2183
+ "The browser width at which the layout will adjust for medium devices such as "
2184
+ "tablets."
2185
+ msgstr ""
2186
+
2187
+ #: includes/global-settings.php:140
2188
+ msgid "Small Device Breakpoint"
2189
+ msgstr "Kis eszköznél töréspont"
2190
+
2191
+ #: includes/global-settings.php:145
2192
+ msgid ""
2193
+ "The browser width at which the layout will adjust for small devices such as "
2194
+ "phones."
2195
+ msgstr ""
2196
+
2197
+ #: includes/icon-selector.php:5
2198
+ msgctxt "Select option for showing all icon libraries."
2199
+ msgid "All Libraries"
2200
+ msgstr "Minden könyvtár"
2201
+
2202
+ #: includes/loop-settings.php:20
2203
+ msgid "Post Type"
2204
+ msgstr "Bejegyzés típus"
2205
+
2206
+ #: includes/loop-settings.php:26
2207
+ msgid "Order By"
2208
+ msgstr "Rendezés szempontja:"
2209
+
2210
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328
2211
+ #: modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508
2212
+ #: modules/woocommerce/woocommerce.php:189
2213
+ msgid "Date"
2214
+ msgstr "Dátum"
2215
+
2216
+ #: includes/loop-settings.php:30
2217
+ msgid "Date Last Modified"
2218
+ msgstr "Legutóbbi módosítás"
2219
+
2220
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90
2221
+ #: modules/pricing-table/pricing-table.php:94
2222
+ msgid "Title"
2223
+ msgstr "Cím"
2224
+
2225
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319
2226
+ #: modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
2227
+ msgid "Author"
2228
+ msgstr "Szerző"
2229
+
2230
+ #: includes/loop-settings.php:33
2231
+ msgid "Comment Count"
2232
+ msgstr "Hozzászólás száma:"
2233
+
2234
+ #: includes/loop-settings.php:34
2235
+ msgid "Menu Order"
2236
+ msgstr "Menü rendezés"
2237
+
2238
+ #: includes/loop-settings.php:35
2239
+ msgid "Random"
2240
+ msgstr "Véletlen"
2241
+
2242
+ #: includes/loop-settings.php:42
2243
+ msgid "Order"
2244
+ msgstr "Rendezés"
2245
+
2246
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
2247
+ msgid "Descending"
2248
+ msgstr "Csökkenő"
2249
+
2250
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
2251
+ msgid "Ascending"
2252
+ msgstr "Növekvő"
2253
+
2254
+ #: includes/loop-settings.php:52
2255
+ msgctxt "How many posts to skip."
2256
+ msgid "Offset"
2257
+ msgstr ""
2258
+
2259
+ #: includes/loop-settings.php:55
2260
+ msgid "Skip this many posts that match the specified criteria."
2261
+ msgstr ""
2262
+
2263
+ #: includes/loop-settings.php:62
2264
+ msgid "Filter"
2265
+ msgstr "Szűrő"
2266
+
2267
+ #: includes/loop-settings.php:73
2268
+ #, php-format
2269
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
2270
+ msgstr ""
2271
+
2272
+ #: includes/loop-settings.php:86
2273
+ #, php-format
2274
+ msgid ""
2275
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
2276
+ msgstr ""
2277
+
2278
+ #: includes/loop-settings.php:100
2279
+ msgid "Authors"
2280
+ msgstr "Szerzők"
2281
+
2282
+ #: includes/loop-settings.php:101
2283
+ msgid ""
2284
+ "Enter a comma separated list of authors usernames. Only posts with these "
2285
+ "authors will be shown."
2286
+ msgstr ""
2287
+
2288
+ #: includes/module-settings.php:75
2289
+ msgid "Choose whether to show or hide this module at different device sizes."
2290
+ msgstr ""
2291
+
2292
+ #: includes/module-settings.php:83
2293
+ msgid "Animation"
2294
+ msgstr "Animáció"
2295
+
2296
+ #: includes/module-settings.php:89
2297
+ msgctxt "Animation style."
2298
+ msgid "None"
2299
+ msgstr "Nincs"
2300
+
2301
+ #: includes/module-settings.php:90
2302
+ msgctxt "Animation style."
2303
+ msgid "Fade In"
2304
+ msgstr "Halványít"
2305
+
2306
+ #: includes/module-settings.php:91
2307
+ msgctxt "Animation style."
2308
+ msgid "Slide Left"
2309
+ msgstr "Slide balról"
2310
+
2311
+ #: includes/module-settings.php:92
2312
+ msgctxt "Animation style."
2313
+ msgid "Slide Right"
2314
+ msgstr "Slide jobbról"
2315
+
2316
+ #: includes/module-settings.php:93
2317
+ msgctxt "Animation style."
2318
+ msgid "Slide Up"
2319
+ msgstr "Slide fel"
2320
+
2321
+ #: includes/module-settings.php:94
2322
+ msgctxt "Animation style."
2323
+ msgid "Slide Down"
2324
+ msgstr "Slide le"
2325
+
2326
+ #: includes/module-settings.php:102
2327
+ #: modules/content-slider/content-slider.php:230
2328
+ #: modules/post-carousel/post-carousel.php:145
2329
+ #: modules/post-slider/post-slider.php:363
2330
+ #: modules/testimonials/testimonials.php:91
2331
+ msgid "Delay"
2332
+ msgstr "Késleltetés"
2333
+
2334
+ #: includes/module-settings.php:106 includes/row-settings.php:290
2335
+ #: includes/row-settings.php:321 modules/content-slider/content-slider.php:234
2336
+ #: modules/content-slider/content-slider.php:251
2337
+ #: modules/post-carousel/post-carousel.php:148
2338
+ #: modules/post-carousel/post-carousel.php:164
2339
+ #: modules/post-slider/post-slider.php:366
2340
+ #: modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:393
2341
+ #: modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589
2342
+ #: modules/testimonials/testimonials.php:95
2343
+ #: modules/testimonials/testimonials.php:112
2344
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
2345
+ msgid "seconds"
2346
+ msgstr "másodperc"
2347
+
2348
+ #: includes/module-settings.php:107
2349
+ msgid "The amount of time in seconds before this animation starts."
2350
+ msgstr ""
2351
+
2352
+ #: includes/module-settings.php:120
2353
+ msgid ""
2354
+ "A unique ID that will be applied to this module's HTML. Must start with a "
2355
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2356
+ msgstr ""
2357
+
2358
+ #: includes/module-settings.php:127 includes/row-settings.php:639
2359
+ msgid "Class"
2360
+ msgstr "Osztály"
2361
+
2362
+ #: includes/module-settings.php:128
2363
+ msgid ""
2364
+ "A class that will be applied to this module's HTML. Must start with a letter "
2365
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2366
+ "classes with spaces."
2367
+ msgstr ""
2368
+
2369
+ #: includes/node-template-settings.php:4
2370
+ #, php-format
2371
+ msgctxt "%s stands for the type of node template being saved."
2372
+ msgid "Save %s Template"
2373
+ msgstr ""
2374
+
2375
+ #: includes/node-template-settings.php:14 includes/template-settings.php:14
2376
+ #: includes/user-template-settings.php:15
2377
+ msgctxt "Template name."
2378
+ msgid "Name"
2379
+ msgstr "Név"
2380
+
2381
+ #: includes/node-template-settings.php:18
2382
+ msgctxt "Whether this is a global template or not."
2383
+ msgid "Global"
2384
+ msgstr ""
2385
+
2386
+ #: includes/node-template-settings.php:19
2387
+ msgid ""
2388
+ "Global templates can be added to multiple pages and edited in one place."
2389
+ msgstr ""
2390
+
2391
+ #: includes/row-settings.php:6 includes/ui-js-config.php:67
2392
+ #: includes/ui-js-templates.php:12
2393
+ msgid "Row Settings"
2394
+ msgstr "Sor beállítások"
2395
+
2396
+ #: includes/row-settings.php:16 modules/button/button.php:197
2397
+ #: modules/content-slider/content-slider.php:484
2398
+ msgid "Width"
2399
+ msgstr "Szélesség"
2400
+
2401
+ #: includes/row-settings.php:27
2402
+ msgid ""
2403
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
2404
+ "no wider than the Row Max Width set in the Global Settings."
2405
+ msgstr ""
2406
+
2407
+ #: includes/row-settings.php:34
2408
+ msgid "Content Width"
2409
+ msgstr "Tartalom szélesség"
2410
+
2411
+ #: includes/row-settings.php:40
2412
+ msgid ""
2413
+ "Full width content spans the width of the page from edge to edge. Fixed "
2414
+ "content is no wider than the Row Max Width set in the Global Settings."
2415
+ msgstr ""
2416
+
2417
+ #: includes/row-settings.php:48 modules/button/button.php:120
2418
+ #: modules/cta/cta.php:188 modules/heading/heading.php:72
2419
+ #: modules/icon-group/icon-group.php:47 modules/icon/icon.php:78
2420
+ #: modules/post-carousel/post-carousel.php:392
2421
+ #: modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:680
2422
+ msgid "Colors"
2423
+ msgstr "Színek"
2424
+
2425
+ #: includes/row-settings.php:52 modules/button/button.php:139
2426
+ #: modules/callout/callout.php:534
2427
+ #: modules/content-slider/content-slider.php:529
2428
+ #: modules/content-slider/content-slider.php:651
2429
+ #: modules/content-slider/content-slider.php:764 modules/cta/cta.php:192
2430
+ #: modules/cta/cta.php:289 modules/heading/heading.php:77
2431
+ #: modules/post-carousel/post-carousel.php:396
2432
+ #: modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684
2433
+ #: modules/subscribe-form/subscribe-form.php:207
2434
+ msgid "Text Color"
2435
+ msgstr "Szövegszín"
2436
+
2437
+ #: includes/row-settings.php:95
2438
+ msgctxt "Background type."
2439
+ msgid "Video"
2440
+ msgstr "Videó"
2441
+
2442
+ #: includes/row-settings.php:97
2443
+ msgctxt "Background type."
2444
+ msgid "Slideshow"
2445
+ msgstr "Diavetítés"
2446
+
2447
+ #: includes/row-settings.php:101
2448
+ msgctxt "Background type."
2449
+ msgid "Parallax"
2450
+ msgstr ""
2451
+
2452
+ #: includes/row-settings.php:227
2453
+ msgid "Background Video"
2454
+ msgstr "Háttér videó"
2455
+
2456
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337
2457
+ #: modules/video/video.php:19 modules/video/video.php:100
2458
+ msgid "Video"
2459
+ msgstr "Videó"
2460
+
2461
+ #: includes/row-settings.php:232
2462
+ msgid ""
2463
+ "An HTML5 video to use as the background of this row. Supported types are "
2464
+ "MP4, WebM and Ogg."
2465
+ msgstr ""
2466
+
2467
+ #: includes/row-settings.php:239
2468
+ msgid "Fallback Photo"
2469
+ msgstr ""
2470
+
2471
+ #: includes/row-settings.php:240
2472
+ msgid "A photo that will be displayed if the video fails to load."
2473
+ msgstr "Egy fotó, ami betöltődik, ha a videó nem töltődne be."
2474
+
2475
+ #: includes/row-settings.php:248
2476
+ msgid "Background Slideshow"
2477
+ msgstr "Háttér diavetítés"
2478
+
2479
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241
2480
+ #: modules/slideshow/slideshow.php:271
2481
+ msgid "Source"
2482
+ msgstr "Forrás"
2483
+
2484
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244
2485
+ #: modules/photo/photo.php:394 modules/slideshow/slideshow.php:274
2486
+ #: modules/video/video.php:86
2487
+ msgid "Media Library"
2488
+ msgstr "Média könyvtár"
2489
+
2490
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247
2491
+ #: modules/slideshow/slideshow.php:277
2492
+ msgid ""
2493
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
2494
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
2495
+ "accessed by using the get a link function in your SmugMug gallery."
2496
+ msgstr ""
2497
+
2498
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259
2499
+ #: modules/slideshow/slideshow.php:289
2500
+ msgid "Photos"
2501
+ msgstr "Képek"
2502
+
2503
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263
2504
+ #: modules/slideshow/slideshow.php:293
2505
+ msgid "Feed URL"
2506
+ msgstr "Visszajelzés linkje/URL-je."
2507
+
2508
+ #: includes/row-settings.php:287 includes/row-settings.php:352
2509
+ #: modules/slideshow/slideshow.php:390
2510
+ msgid "Speed"
2511
+ msgstr "Sebesség"
2512
+
2513
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238
2514
+ #: modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397
2515
+ #: modules/testimonials/testimonials.php:99
2516
+ msgid "Transition"
2517
+ msgstr "Átmenet"
2518
+
2519
+ #: includes/row-settings.php:300
2520
+ msgctxt "Slideshow transition type."
2521
+ msgid "None"
2522
+ msgstr "Nincs"
2523
+
2524
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242
2525
+ #: modules/post-carousel/post-carousel.php:241
2526
+ #: modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:373
2527
+ #: modules/slideshow/slideshow.php:401
2528
+ #: modules/testimonials/testimonials.php:103
2529
+ msgid "Fade"
2530
+ msgstr ""
2531
+
2532
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
2533
+ msgid "Ken Burns"
2534
+ msgstr ""
2535
+
2536
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
2537
+ msgid "Slide Horizontal"
2538
+ msgstr "Vízszintes dia"
2539
+
2540
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
2541
+ msgid "Slide Vertical"
2542
+ msgstr "Függőleges dia"
2543
+
2544
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
2545
+ msgid "Blinds"
2546
+ msgstr ""
2547
+
2548
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
2549
+ msgid "Bars"
2550
+ msgstr ""
2551
+
2552
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
2553
+ msgid "Random Bars"
2554
+ msgstr ""
2555
+
2556
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
2557
+ msgid "Boxes"
2558
+ msgstr "Dobozok"
2559
+
2560
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
2561
+ msgid "Random Boxes"
2562
+ msgstr "Véletlen dobozok"
2563
+
2564
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
2565
+ msgid "Boxes Grow"
2566
+ msgstr "Dobozok növekednek"
2567
+
2568
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247
2569
+ #: modules/post-carousel/post-carousel.php:161
2570
+ #: modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:415
2571
+ #: modules/testimonials/testimonials.php:108
2572
+ msgid "Transition Speed"
2573
+ msgstr "Átmenet sebessége"
2574
+
2575
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
2576
+ msgid "Randomize Photos"
2577
+ msgstr "Véletlenszerű képek"
2578
+
2579
+ #: includes/row-settings.php:341
2580
+ msgid "Background Parallax"
2581
+ msgstr "Parallax háttér"
2582
+
2583
+ #: includes/row-settings.php:355
2584
+ msgid "Fast"
2585
+ msgstr "Gyors"
2586
+
2587
+ #: includes/row-settings.php:356
2588
+ msgctxt "Speed."
2589
+ msgid "Medium"
2590
+ msgstr "Közepes"
2591
+
2592
+ #: includes/row-settings.php:357
2593
+ msgid "Slow"
2594
+ msgstr "Lassú"
2595
+
2596
+ #: includes/row-settings.php:619
2597
+ msgid "Choose whether to show or hide this row at different device sizes."
2598
+ msgstr ""
2599
+ "Válassza ki, hogy megjelenjen vagy elrejtésre kerüljön ez a sor a különböző "
2600
+ "méretű eszközökön."
2601
+
2602
+ #: includes/row-settings.php:632
2603
+ msgid ""
2604
+ "A unique ID that will be applied to this row's HTML. Must start with a "
2605
+ "letter and only contain dashes, underscores, letters or numbers. No spaces."
2606
+ msgstr ""
2607
+ "Egyedi azonosító, ami alkalmazva lessz ennek a sornak a HTML részében. "
2608
+ "Betűvel kell, hogy kezdődjön és csak kötőjelet, aláhúzást, betűket és "
2609
+ "számokat tartalmazhat. Nem lehet benne szóköz. "
2610
+
2611
+ #: includes/row-settings.php:640
2612
+ msgid ""
2613
+ "A class that will be applied to this row's HTML. Must start with a letter "
2614
+ "and only contain dashes, underscores, letters or numbers. Separate multiple "
2615
+ "classes with spaces."
2616
+ msgstr ""
2617
+
2618
+ #: includes/service-settings.php:32
2619
+ msgid "Service"
2620
+ msgstr "Szolgáltatás"
2621
+
2622
+ #: includes/settings.php:67
2623
+ msgid "Save"
2624
+ msgstr "Mentés"
2625
+
2626
+ #: includes/settings.php:69
2627
+ msgid "Save As..."
2628
+ msgstr "Mentés másként..."
2629
+
2630
+ #: includes/template-selector.php:4
2631
+ msgid "Layout Templates"
2632
+ msgstr "Sablon elrendezések"
2633
+
2634
+ #: includes/template-selector.php:17
2635
+ msgid "Your Templates"
2636
+ msgstr "Saját sablonok"
2637
+
2638
+ #: includes/template-selector.php:53
2639
+ msgid ""
2640
+ "You haven't saved any templates yet! To do so, create a layout and save it "
2641
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
2642
+ msgstr ""
2643
+ "Még nincs mentett sablon! Ehhez hozzon létre egy elrendezést, és mentse el "
2644
+ "sablonként <strong>Eszközök </strong><strong>→ Sablon mentése</strong>"
2645
+
2646
+ #: includes/template-selector.php:58
2647
+ msgctxt "Template name."
2648
+ msgid "Blank"
2649
+ msgstr "Üres"
2650
+
2651
+ #: includes/template-settings.php:18
2652
+ msgid "Image Filename"
2653
+ msgstr "Kép fájlneve"
2654
+
2655
+ #: includes/template-settings.php:19
2656
+ msgid ""
2657
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
2658
+ "templates/\" directory."
2659
+ msgstr ""
2660
+ "A kép fájlneve, mint pl: \"thumb.jpg\" ami az \"img/templates/\" mappában "
2661
+ "található."
2662
+
2663
+ #: includes/ui-js-config.php:21
2664
+ msgid "What would you like to do?"
2665
+ msgstr "Mit szeretne tenni?"
2666
+
2667
+ #: includes/ui-js-config.php:23
2668
+ msgid "Change Template"
2669
+ msgstr "Sablon csere"
2670
+
2671
+ #: includes/ui-js-config.php:24
2672
+ msgid ""
2673
+ "Warning! Changing the template will replace your existing layout. Do you "
2674
+ "really want to do this?"
2675
+ msgstr ""
2676
+ "Figyelem! A sablon lecseréli a meglévő elrendezést. Biztosan akarja ezt?"
2677
+
2678
+ #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
2679
+ msgid "Column"
2680
+ msgstr "Oszlop"
2681
+
2682
+ #: includes/ui-js-config.php:26
2683
+ msgid ""
2684
+ "Please select either a background layout or content layout before submitting."
2685
+ msgstr ""
2686
+ "Kérjük válassza ki a háttér elrendezés vagy a tartalom elrendezés beolvasása "
2687
+ "előtt. "
2688
+
2689
+ #: includes/ui-js-config.php:27
2690
+ msgid "Remove Account"
2691
+ msgstr "Fiók törlése"
2692
+
2693
+ #: includes/ui-js-config.php:28
2694
+ msgid ""
2695
+ "Are you sure you want to remove this account? Other modules that are "
2696
+ "connected to it will be affected."
2697
+ msgstr ""
2698
+ "Biztos benne, hogy törölni szeretné a fiókot? Más kapcsolódó modulok is "
2699
+ "érintettek lehetnek!"
2700
+
2701
+ #: includes/ui-js-config.php:29
2702
+ msgid "Do you really want to delete this item?"
2703
+ msgstr "Biztosan törölni kívánja ezt az elemet?"
2704
+
2705
+ #: includes/ui-js-config.php:30
2706
+ msgid ""
2707
+ "Do you really want to delete this module? All content data will be "
2708
+ "permanently deleted."
2709
+ msgstr ""
2710
+ "Tényleg azt akarja törölni ezt a modult? Minden tartalom véglegesen törlésre "
2711
+ "kerül."
2712
+
2713
+ #: includes/ui-js-config.php:31
2714
+ msgid ""
2715
+ "Do you really want to delete this row? All content data will be permanently "
2716
+ "deleted."
2717
+ msgstr ""
2718
+ "Tényleg akarja törölni ezt a sort? Minden tartalom véglegesen törlésre kerül."
2719
+
2720
+ #: includes/ui-js-config.php:33
2721
+ msgid ""
2722
+ "WARNING! You are about to delete a global template that may be linked to "
2723
+ "other pages. Do you really want to delete this template and unlink it?"
2724
+ msgstr ""
2725
+ "FIGYELEM! Az általános téma, amit törölni szeretne kapcsolódhat más "
2726
+ "oldalakhoz! Biztosan törölni szeretné a témát és megszüntetni a kapcsolódást?"
2727
+
2728
+ #: includes/ui-js-config.php:34
2729
+ msgid "Discard Changes"
2730
+ msgstr "A módosítások eldobása"
2731
+
2732
+ #: includes/ui-js-config.php:35
2733
+ msgid ""
2734
+ "Do you really want to discard these changes? All of your changes that are "
2735
+ "not published will be lost."
2736
+ msgstr ""
2737
+ "Tényleg azt szeretné, hogy a módosítások elveszenek? Minden változtatás, ami "
2738
+ "nem lett mentve el fog veszni."
2739
+
2740
+ #: includes/ui-js-config.php:37
2741
+ msgid "Save Draft"
2742
+ msgstr "Mentés vázlatként"
2743
+
2744
+ #: includes/ui-js-config.php:38 includes/ui-js-templates.php:14
2745
+ #: includes/ui-js-templates.php:54
2746
+ msgid "Duplicate"
2747
+ msgstr "Másolat"
2748
+
2749
+ #: includes/ui-js-config.php:39
2750
+ msgid "Duplicate This Page"
2751
+ msgstr "Oldal másolása"
2752
+
2753
+ #: includes/ui-js-config.php:40
2754
+ msgid "Duplicate This Template"
2755
+ msgstr "Sablon másolása"
2756
+
2757
+ #: includes/ui-js-config.php:41
2758
+ msgid "Edit Global Settings"
2759
+ msgstr "Globális beállítások szerkesztése"
2760
+
2761
+ #: includes/ui-js-config.php:42
2762
+ msgid "Drop a row layout or module to get started!"
2763
+ msgstr ""
2764
+
2765
+ #: includes/ui-js-config.php:43
2766
+ msgid ""
2767
+ "Beaver Builder caught the following JavaScript error. If Beaver Builder is "
2768
+ "not functioning as expected the cause is most likely this error. Please help "
2769
+ "us by disabling all plugins and testing Beaver Builder while reactivating "
2770
+ "each to determine if the issue is related to a third party plugin."
2771
+ msgstr ""
2772
+
2773
+ #: includes/ui-js-config.php:44
2774
+ msgid "Full Size"
2775
+ msgstr "Teljes méret"
2776
+
2777
+ #: includes/ui-js-config.php:45
2778
+ msgid "Get Help"
2779
+ msgstr "Segítség"
2780
+
2781
+ #: includes/ui-js-config.php:46
2782
+ msgid "\"{message}\" on line {line} of {file}."
2783
+ msgstr ""
2784
+
2785
+ #: includes/ui-js-config.php:47
2786
+ msgid "Insert"
2787
+ msgstr "Beillesztés"
2788
+
2789
+ #: includes/ui-js-config.php:48
2790
+ msgid "Large"
2791
+ msgstr "Nagy"
2792
+
2793
+ #: includes/ui-js-config.php:49
2794
+ msgid "Manage Templates"
2795
+ msgstr "Sablonok kezelése"
2796
+
2797
+ #: includes/ui-js-config.php:50
2798
+ msgid "Medium"
2799
+ msgstr "Közepes"
2800
+
2801
+ #: includes/ui-js-config.php:51
2802
+ msgid "Module"
2803
+ msgstr "Modulok"
2804
+
2805
+ #: includes/ui-js-config.php:52
2806
+ msgid "Module Template Saved!"
2807
+ msgstr "Modul sablon mentve!"
2808
+
2809
+ #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10
2810
+ #: includes/ui-js-templates.php:50
2811
+ msgid "Move"
2812
+ msgstr "Mozgatás"
2813
+
2814
+ #: includes/ui-js-config.php:54
2815
+ msgid "New Column"
2816
+ msgstr "Új oszlop"
2817
+
2818
+ #: includes/ui-js-config.php:55
2819
+ msgid "New Row"
2820
+ msgstr "Új sor"
2821
+
2822
+ #: includes/ui-js-config.php:56
2823
+ msgid "No results found."
2824
+ msgstr "Nincs találat"
2825
+
2826
+ #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
2827
+ msgid "No saved rows found."
2828
+ msgstr "Nincs mentett sor."
2829
+
2830
+ #: includes/ui-js-config.php:58 includes/ui-panel-node-templates.php:42
2831
+ msgid "No saved modules found."
2832
+ msgstr "Nincs mentett modul."
2833
+
2834
+ #: includes/ui-js-config.php:59 includes/ui-js-templates.php:80
2835
+ msgid "OK"
2836
+ msgstr "Rendben"
2837
+
2838
+ #: includes/ui-js-config.php:60 modules/photo/photo.php:470
2839
+ msgid "Photo Page"
2840
+ msgstr "Kép oldal"
2841
+
2842
+ #: includes/ui-js-config.php:61
2843
+ msgid "Photo Selected"
2844
+ msgstr "Választott kép"
2845
+
2846
+ #: includes/ui-js-config.php:62
2847
+ msgid "Photos Selected"
2848
+ msgstr "Választott képek"
2849
+
2850
+ #: includes/ui-js-config.php:63 modules/subscribe-form/includes/frontend.php:15
2851
+ msgid "Please Wait..."
2852
+ msgstr "Kérem várjon ..."
2853
+
2854
+ #: includes/ui-js-config.php:64
2855
+ msgid "Publish Changes"
2856
+ msgstr "Módosítások közzététele"
2857
+
2858
+ #: includes/ui-js-config.php:66 includes/ui-js-templates.php:5
2859
+ msgid "Row"
2860
+ msgstr "Sor"
2861
+
2862
+ #: includes/ui-js-config.php:68
2863
+ msgid "Row Template Saved!"
2864
+ msgstr "Sor sablon mentve!"
2865
+
2866
+ #: includes/ui-js-config.php:69
2867
+ msgid "Save Core Template"
2868
+ msgstr "Alap téma mentés"
2869
+
2870
+ #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
2871
+ msgid "Save Template"
2872
+ msgstr "Sablon mentése"
2873
+
2874
+ #: includes/ui-js-config.php:72
2875
+ msgid "Select Photos"
2876
+ msgstr "Választott képek"
2877
+
2878
+ #: includes/ui-js-config.php:74
2879
+ msgid "Please select an account before saving."
2880
+ msgstr "Kérjük, válasszon ki egy fiókot mentés előtt."
2881
+
2882
+ #: includes/ui-js-config.php:75
2883
+ msgid "Please connect an account before saving."
2884
+ msgstr "Kérjük, csatlakoztasson egy fiókot mentés előtt."
2885
+
2886
+ #: includes/ui-js-config.php:76
2887
+ msgid "Please select a list before saving."
2888
+ msgstr "Kérjük, válasszon ki egy listát a mentés előtt."
2889
+
2890
+ #: includes/ui-js-config.php:77
2891
+ msgid "Take a Tour"
2892
+ msgstr "Nézz körbe"
2893
+
2894
+ #: includes/ui-js-config.php:78
2895
+ msgid "Append New Layout"
2896
+ msgstr "Hozzáfűzése új részként"
2897
+
2898
+ #: includes/ui-js-config.php:79
2899
+ msgid "Replace Existing Layout"
2900
+ msgstr "Meglévő cseréje a létező felülírásával"
2901
+
2902
+ #: includes/ui-js-config.php:80
2903
+ msgid "Template Saved!"
2904
+ msgstr "Sablon mentve!"
2905
+
2906
+ #: includes/ui-js-config.php:81 modules/post-slider/post-slider.php:464
2907
+ msgid "Thumbnail"
2908
+ msgstr "Bélyegkép"
2909
+
2910
+ #: includes/ui-js-config.php:82
2911
+ msgid "Next"
2912
+ msgstr "Következő"
2913
+
2914
+ #: includes/ui-js-config.php:83
2915
+ msgid "Get Started"
2916
+ msgstr "Indulhat"
2917
+
2918
+ #: includes/ui-js-config.php:84
2919
+ msgid "Choose a Template"
2920
+ msgstr "Válasszon egy sablont"
2921
+
2922
+ #: includes/ui-js-config.php:85
2923
+ msgid ""
2924
+ "Get started by choosing a layout template to customize, or build a page from "
2925
+ "scratch by selecting the blank layout template."
2926
+ msgstr ""
2927
+ "A kezdéshez válasszon egy sablont, hogy testreszabja, vagy készítsen egy "
2928
+ "oldalt a semmiből, az üres sablon kiválasztásával."
2929
+
2930
+ #: includes/ui-js-config.php:86
2931
+ msgid "Add Rows"
2932
+ msgstr "Sor hozzáadása"
2933
+
2934
+ #: includes/ui-js-config.php:87
2935
+ msgid ""
2936
+ "Add multi-column rows, adjust spacing, add backgrounds and more by dragging "
2937
+ "and dropping row layouts onto the page."
2938
+ msgstr ""
2939
+
2940
+ #: includes/ui-js-config.php:89
2941
+ msgid ""
2942
+ "Add new content by dragging and dropping modules or widgets into your row "
2943
+ "layouts or to create a new row layout."
2944
+ msgstr ""
2945
+
2946
+ #: includes/ui-js-config.php:90
2947
+ msgid "Edit Content"
2948
+ msgstr "Tartalom szerkesztése"
2949
+
2950
+ #: includes/ui-js-config.php:91
2951
+ msgid ""
2952
+ "Move your mouse over rows, columns or modules to edit and interact with them."
2953
+ msgstr ""
2954
+ "Mozgassa az egeret a sorok, oszlopok vagy a modulok felett a szerkesztéshez "
2955
+ "és interakciók mutatásához."
2956
+
2957
+ #: includes/ui-js-config.php:92
2958
+ msgid ""
2959
+ "Use the action buttons to perform actions such as moving, editing, "
2960
+ "duplicating or deleting rows, columns and modules."
2961
+ msgstr ""
2962
+
2963
+ #: includes/ui-js-config.php:93
2964
+ msgid "Add More Content"
2965
+ msgstr "További tartalom hozzáadása"
2966
+
2967
+ #: includes/ui-js-config.php:94
2968
+ msgid ""
2969
+ "Use the Add Content button to open the content panel and add new row "
2970
+ "layouts, modules or widgets."
2971
+ msgstr ""
2972
+
2973
+ #: includes/ui-js-config.php:95
2974
+ msgid "Change Templates"
2975
+ msgstr "Sablon csere"
2976
+
2977
+ #: includes/ui-js-config.php:96
2978
+ msgid ""
2979
+ "Use the Templates button to pick a new template or append one to your "
2980
+ "layout. Appending will insert a new template at the end of your existing "
2981
+ "page content."
2982
+ msgstr ""
2983
+
2984
+ #: includes/ui-js-config.php:97
2985
+ msgid "Helpful Tools"
2986
+ msgstr "Hasznos eszközök"
2987
+
2988
+ #: includes/ui-js-config.php:98
2989
+ msgid ""
2990
+ "The Tools button lets you duplicate a page, save a template or edit the "
2991
+ "global settings."
2992
+ msgstr ""
2993
+
2994
+ #: includes/ui-js-config.php:99
2995
+ msgid "Publish Your Changes"
2996
+ msgstr ""
2997
+
2998
+ #: includes/ui-js-config.php:100
2999
+ msgid ""
3000
+ "Once you're finished, click the Done button to publish your changes, save a "
3001
+ "draft or revert back to the last published state."
3002
+ msgstr ""
3003
+
3004
+ #: includes/ui-js-config.php:101
3005
+ msgid "Let's Get Building!"
3006
+ msgstr "Kezdjük el felépíteni!"
3007
+
3008
+ #: includes/ui-js-config.php:102
3009
+ msgid ""
3010
+ "Now that you know the basics, you're ready to start building! If at any time "
3011
+ "you need help, click the help icon in the upper right corner to access the "
3012
+ "help menu. Happy building!"
3013
+ msgstr ""
3014
+
3015
+ #: includes/ui-js-config.php:103
3016
+ msgid ""
3017
+ "The settings you are currently editing will not be saved if you navigate "
3018
+ "away from this page."
3019
+ msgstr ""
3020
+
3021
+ #: includes/ui-js-config.php:104
3022
+ msgid "View the Knowledge Base"
3023
+ msgstr "Tekintse meg a tudásbázist"
3024
+
3025
+ #: includes/ui-js-config.php:105
3026
+ msgid "Visit the Forums"
3027
+ msgstr "Látogasson el a fórumba"
3028
+
3029
+ #: includes/ui-js-config.php:106
3030
+ msgid "Watch the Video"
3031
+ msgstr "Videók megtekintése"
3032
+
3033
+ #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29
3034
+ #: includes/ui-js-templates.php:45
3035
+ msgid "Global"
3036
+ msgstr "Öszzes"
3037
+
3038
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:47
3039
+ msgid "Locked"
3040
+ msgstr "Zárolt"
3041
+
3042
+ #: includes/ui-js-templates.php:52
3043
+ msgid "Settings"
3044
+ msgstr "Beállítások"
3045
+
3046
+ #: includes/ui-js-templates.php:87
3047
+ msgid ""
3048
+ "Welcome! It looks like this might be your first time using the builder. "
3049
+ "Would you like to take a tour?"
3050
+ msgstr ""
3051
+
3052
+ #: includes/ui-js-templates.php:88
3053
+ msgid "No Thanks"
3054
+ msgstr "Köszönöm, nem!"
3055
+
3056
+ #: includes/ui-js-templates.php:89
3057
+ msgid "Yes Please!"
3058
+ msgstr "Igen, szeretném!"
3059
+
3060
+ #: includes/ui-js-templates.php:96
3061
+ msgid "Getting Started Video"
3062
+ msgstr "Videó elkezdése"
3063
+
3064
+ #: includes/ui-panel-node-templates.php:6
3065
+ msgid "Saved Rows"
3066
+ msgstr "Mentett sorok"
3067
+
3068
+ #: includes/ui-panel-node-templates.php:37
3069
+ msgid "Saved Modules"
3070
+ msgstr "Mentett modulok"
3071
+
3072
+ #: includes/ui-panel.php:11
3073
+ msgid "Row Layouts"
3074
+ msgstr "Sor elrendezések"
3075
+
3076
+ #: includes/ui-panel.php:15
3077
+ msgid "1 Column"
3078
+ msgstr "1 oszlop"
3079
+
3080
+ #: includes/ui-panel.php:16
3081
+ msgid "2 Columns"
3082
+ msgstr "2 oszlop"
3083
+
3084
+ #: includes/ui-panel.php:17
3085
+ msgid "3 Columns"
3086
+ msgstr "3 oszlop"
3087
+
3088
+ #: includes/ui-panel.php:18
3089
+ msgid "4 Columns"
3090
+ msgstr "4 oszlop"
3091
+
3092
+ #: includes/ui-panel.php:19
3093
+ msgid "5 Columns"
3094
+ msgstr "5 oszlopok"
3095
+
3096
+ #: includes/ui-panel.php:20
3097
+ msgid "6 Columns"
3098
+ msgstr "6 oszlop"
3099
+
3100
+ #: includes/ui-panel.php:21
3101
+ msgid "Left Sidebar"
3102
+ msgstr "Bal oldalsáv"
3103
+
3104
+ #: includes/ui-panel.php:22
3105
+ msgid "Right Sidebar"
3106
+ msgstr "Jobb oldalsáv"
3107
+
3108
+ #: includes/ui-panel.php:23
3109
+ msgid "Left &amp; Right Sidebar"
3110
+ msgstr "Bal és jobb oldalsáv"
3111
+
3112
+ #: includes/updater/classes/class-fl-updater.php:132
3113
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
3114
+ msgstr "<strong>FRISSÍTÉS NEM ELÉRHETŐ!</strong>"
3115
+
3116
+ #: includes/updater/classes/class-fl-updater.php:134
3117
+ msgid "Please subscribe to enable automatic updates for this plugin."
3118
+ msgstr ""
3119
+ "Kérjük iratkozzon fel és engedélyezze az értesítőt automatikus "
3120
+ "frissítésekről."
3121
+
3122
+ #: includes/updater/classes/class-fl-updater.php:136
3123
+ #: includes/updater/includes/form.php:6
3124
+ msgid "Subscribe Now"
3125
+ msgstr "Feliratkozás"
3126
+
3127
+ #: includes/updater/includes/form.php:5
3128
+ msgid ""
3129
+ "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to "
3130
+ "enable automatic updates."
3131
+ msgstr ""
3132
+ "FRISSÍTÉS nem elérhető Kérjük iratkozzon fel vagy adja meg a licenc kulcsot "
3133
+ "az automatikus frissítések engedélyezéséhez."
3134
+
3135
+ #: includes/updater/includes/form.php:11
3136
+ msgid "Updates &amp; Support Subscription"
3137
+ msgstr ""
3138
+
3139
+ #: includes/updater/includes/form.php:14
3140
+ msgid "Active!"
3141
+ msgstr "Aktív!"
3142
+
3143
+ #: includes/updater/includes/form.php:16
3144
+ msgid "Not Active!"
3145
+ msgstr "Nem aktív"
3146
+
3147
+ #: includes/updater/includes/form.php:22
3148
+ msgid "Email address saved!"
3149
+ msgstr "Email cím mentve!"
3150
+
3151
+ #: includes/updater/includes/form.php:27
3152
+ #, php-format
3153
+ msgid "Enter your <a%s>license key</a> to enable remote updates and support."
3154
+ msgstr ""
3155
+ "Adja meg <a%s> licenckulcsot, ami lehetővé teszi a távoli frissítéseket és "
3156
+ "támogatást."
3157
+
3158
+ #: includes/updater/includes/form.php:39
3159
+ msgid "Save Subscription Settings"
3160
+ msgstr "Feliratkozási beállítások mentése"
3161
+
3162
+ #: includes/user-template-settings.php:8
3163
+ msgid ""
3164
+ "Save the current layout as a template that can be reused under "
3165
+ "<strong>Templates &rarr; Your Templates</strong>."
3166
+ msgstr ""
3167
+ "Jelenlegi elrendezés mentését sablonként tudja használni. Sablon elérése: "
3168
+ "<strong>Sablonok → Saját sablonok.</strong>"
3169
+
3170
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
3171
+ msgid "Accordion"
3172
+ msgstr "Harmonika"
3173
+
3174
+ #: modules/accordion/accordion.php:15
3175
+ msgid "Display a collapsible accordion of items."
3176
+ msgstr ""
3177
+
3178
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
3179
+ msgid "Items"
3180
+ msgstr "Tételek"
3181
+
3182
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
3183
+ msgid "Item"
3184
+ msgstr "Elem"
3185
+
3186
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
3187
+ msgid "Border Color"
3188
+ msgstr "Szegély szín"
3189
+
3190
+ #: modules/accordion/accordion.php:62
3191
+ msgid "Label Size"
3192
+ msgstr "Címkeméret"
3193
+
3194
+ #: modules/accordion/accordion.php:65
3195
+ msgctxt "Label size."
3196
+ msgid "Small"
3197
+ msgstr "Kicsi"
3198
+
3199
+ #: modules/accordion/accordion.php:66
3200
+ msgctxt "Label size."
3201
+ msgid "Medium"
3202
+ msgstr "Közepes"
3203
+
3204
+ #: modules/accordion/accordion.php:67
3205
+ msgctxt "Label size."
3206
+ msgid "Large"
3207
+ msgstr "Nagy"
3208
+
3209
+ #: modules/accordion/accordion.php:75
3210
+ msgid "Item Spacing"
3211
+ msgstr "Elem térköz"
3212
+
3213
+ #: modules/accordion/accordion.php:86
3214
+ msgid "Collapse Inactive"
3215
+ msgstr "Összecsukás inaktív"
3216
+
3217
+ #: modules/accordion/accordion.php:92
3218
+ msgid ""
3219
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
3220
+ "multiple items to be open at the same time."
3221
+ msgstr ""
3222
+
3223
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
3224
+ msgid "Add Item"
3225
+ msgstr "Elem hozzáadása"
3226
+
3227
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
3228
+ msgid "Label"
3229
+ msgstr "Címke"
3230
+
3231
+ #: modules/accordion/accordion.php:122
3232
+ #: modules/post-carousel/post-carousel.php:359
3233
+ #: modules/post-carousel/post-carousel.php:363
3234
+ #: modules/post-carousel/post-carousel.php:435
3235
+ #: modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202
3236
+ #: modules/post-grid/post-grid.php:330 modules/post-slider/post-slider.php:548
3237
+ #: modules/post-slider/post-slider.php:552
3238
+ #: modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
3239
+ msgid "Content"
3240
+ msgstr "Tartalom"
3241
+
3242
+ #: modules/button/button.php:14 modules/callout/callout.php:480
3243
+ #: modules/content-slider/content-slider.php:602 modules/cta/cta.php:215
3244
+ #: modules/pricing-table/pricing-table.php:129
3245
+ #: modules/subscribe-form/subscribe-form.php:161
3246
+ msgid "Button"
3247
+ msgstr "Gomb"
3248
+
3249
+ #: modules/button/button.php:15
3250
+ msgid "A simple call to action button."
3251
+ msgstr "Cselekvésre felhívás gomb"
3252
+
3253
+ #: modules/button/button.php:67 modules/cta/cta.php:223
3254
+ msgid "Click Here"
3255
+ msgstr "Kattintson ide"
3256
+
3257
+ #: modules/button/button.php:75 modules/callout/callout.php:318
3258
+ #: modules/callout/callout.php:366 modules/callout/callout.php:370
3259
+ #: modules/cta/cta.php:231 modules/icon-group/icon-group.php:34
3260
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
3261
+ #: modules/icon/icon.php:34
3262
+ msgid "Icon"
3263
+ msgstr "Ikon"
3264
+
3265
+ #: modules/button/button.php:80 modules/cta/cta.php:236
3266
+ #: modules/subscribe-form/subscribe-form.php:178
3267
+ msgid "Icon Position"
3268
+ msgstr "Ikon pozíció"
3269
+
3270
+ #: modules/button/button.php:83 modules/callout/callout.php:508
3271
+ #: modules/content-slider/content-slider.php:629 modules/cta/cta.php:239
3272
+ #: modules/subscribe-form/subscribe-form.php:181
3273
+ msgid "Before Text"
3274
+ msgstr "Szöveg előtt"
3275
+
3276
+ #: modules/button/button.php:84 modules/callout/callout.php:509
3277
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:240
3278
+ #: modules/subscribe-form/subscribe-form.php:182
3279
+ msgid "After Text"
3280
+ msgstr "Szöveg után"
3281
+
3282
+ #: modules/button/button.php:90 modules/button/button.php:94
3283
+ #: modules/callout/callout.php:446 modules/callout/callout.php:450
3284
+ #: modules/content-slider/content-slider.php:574
3285
+ #: modules/content-slider/content-slider.php:578
3286
+ #: modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
3287
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
3288
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
3289
+ #: modules/slideshow/slideshow.php:351
3290
+ msgid "Link"
3291
+ msgstr "Hivatkozás"
3292
+
3293
+ #: modules/button/button.php:95
3294
+ msgid "http://www.example.com"
3295
+ msgstr "http://www.sajatoldal.hu"
3296
+
3297
+ #: modules/button/button.php:102 modules/callout/callout.php:458
3298
+ #: modules/content-slider/content-slider.php:583 modules/cta/cta.php:257
3299
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
3300
+ #: modules/photo/photo.php:494
3301
+ msgid "Link Target"
3302
+ msgstr "Hivatkozás megnyitása"
3303
+
3304
+ #: modules/button/button.php:105 modules/callout/callout.php:461
3305
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:260
3306
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
3307
+ #: modules/photo/photo.php:497
3308
+ msgid "Same Window"
3309
+ msgstr "Ugyanebben az ablakban"
3310
+
3311
+ #: modules/button/button.php:106 modules/callout/callout.php:462
3312
+ #: modules/content-slider/content-slider.php:587 modules/cta/cta.php:261
3313
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
3314
+ #: modules/photo/photo.php:498
3315
+ msgid "New Window"
3316
+ msgstr "Új ablakban"
3317
+
3318
+ #: modules/button/button.php:130 modules/callout/callout.php:410
3319
+ #: modules/callout/callout.php:525
3320
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:280
3321
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
3322
+ #: modules/subscribe-form/subscribe-form.php:198
3323
+ msgid "Background Hover Color"
3324
+ msgstr "Háttérszín egér rávitelekor"
3325
+
3326
+ #: modules/button/button.php:145 modules/callout/callout.php:540
3327
+ #: modules/content-slider/content-slider.php:657 modules/cta/cta.php:295
3328
+ #: modules/subscribe-form/subscribe-form.php:213
3329
+ msgid "Text Hover Color"
3330
+ msgstr "Szöveg színe egér rávitelekor"
3331
+
3332
+ #: modules/button/button.php:162 modules/callout/callout.php:557
3333
+ #: modules/content-slider/content-slider.php:670 modules/cta/cta.php:312
3334
+ #: modules/subscribe-form/subscribe-form.php:230
3335
+ msgid "Flat"
3336
+ msgstr "Sík"
3337
+
3338
+ #: modules/button/button.php:163 modules/callout/callout.php:418
3339
+ #: modules/callout/callout.php:558
3340
+ #: modules/content-slider/content-slider.php:671 modules/cta/cta.php:313
3341
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
3342
+ #: modules/subscribe-form/subscribe-form.php:231
3343
+ msgid "Gradient"
3344
+ msgstr "Lejtés"
3345
+
3346
+ #: modules/button/button.php:164 modules/callout/callout.php:559
3347
+ #: modules/content-slider/content-slider.php:672 modules/cta/cta.php:314
3348
+ #: modules/subscribe-form/subscribe-form.php:232
3349
+ msgid "Transparent"
3350
+ msgstr "Átlátszóság"
3351
+
3352
+ #: modules/button/button.php:174 modules/callout/callout.php:569
3353
+ #: modules/content-slider/content-slider.php:682 modules/cta/cta.php:324
3354
+ #: modules/pricing-table/pricing-table.php:67
3355
+ #: modules/subscribe-form/subscribe-form.php:242
3356
+ msgid "Border Size"
3357
+ msgstr "Szegély vastagsága"
3358
+
3359
+ #: modules/button/button.php:183 modules/callout/callout.php:578
3360
+ #: modules/content-slider/content-slider.php:691 modules/cta/cta.php:204
3361
+ #: modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
3362
+ msgid "Background Opacity"
3363
+ msgstr "Háttér átlátszósága"
3364
+
3365
+ #: modules/button/button.php:193 modules/callout/callout.php:245
3366
+ #: modules/cta/cta.php:105 modules/heading/heading.php:82
3367
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
3368
+ #: modules/subscribe-form/subscribe-form.php:95
3369
+ msgid "Structure"
3370
+ msgstr "Struktúra"
3371
+
3372
+ #: modules/button/button.php:200 modules/callout/callout.php:595
3373
+ msgctxt "Width."
3374
+ msgid "Auto"
3375
+ msgstr "Automata"
3376
+
3377
+ #: modules/button/button.php:216
3378
+ msgid "Custom Width"
3379
+ msgstr "Egyedi szélesség"
3380
+
3381
+ #: modules/button/button.php:224 modules/cta/cta.php:123
3382
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
3383
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
3384
+ #: modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
3385
+ msgid "Alignment"
3386
+ msgstr "Igazítás"
3387
+
3388
+ #: modules/button/button.php:234 modules/callout/callout.php:601
3389
+ #: modules/content-slider/content-slider.php:705 modules/cta/cta.php:347
3390
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
3391
+ #: modules/subscribe-form/subscribe-form.php:265
3392
+ msgid "Font Size"
3393
+ msgstr "Betűméret"
3394
+
3395
+ #: modules/button/button.php:250 modules/callout/callout.php:617
3396
+ #: modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
3397
+ msgid "Round Corners"
3398
+ msgstr "Kerekített sarkok"
3399
+
3400
+ #: modules/callout/callout.php:14
3401
+ msgid "Callout"
3402
+ msgstr "Képaláírás/Ábrafelirat"
3403
+
3404
+ #: modules/callout/callout.php:15
3405
+ msgid "A heading and snippet of text with an optional link, icon and image."
3406
+ msgstr ""
3407
+
3408
+ #: modules/callout/callout.php:217
3409
+ #: modules/content-slider/content-slider.php:414
3410
+ #: modules/content-slider/content-slider.php:429 modules/cta/cta.php:75
3411
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
3412
+ #: modules/post-slider/post-slider.php:582
3413
+ #: modules/testimonials/testimonials.php:56
3414
+ #: modules/testimonials/testimonials.php:61
3415
+ msgid "Heading"
3416
+ msgstr "Címsor"
3417
+
3418
+ #: modules/callout/callout.php:249
3419
+ msgid "Overall Alignment"
3420
+ msgstr "Mindent összehangol"
3421
+
3422
+ #: modules/callout/callout.php:256
3423
+ msgid "The alignment that will apply to all elements within the callout."
3424
+ msgstr ""
3425
+
3426
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
3427
+ msgid "Heading Structure"
3428
+ msgstr "Címsor felépítése"
3429
+
3430
+ #: modules/callout/callout.php:268
3431
+ #: modules/content-slider/content-slider.php:433 modules/cta/cta.php:152
3432
+ #: modules/post-slider/post-slider.php:586
3433
+ msgid "Heading Tag"
3434
+ msgstr "Fejléc 'Tag' része"
3435
+
3436
+ #: modules/callout/callout.php:281
3437
+ #: modules/content-slider/content-slider.php:446
3438
+ #: modules/content-slider/content-slider.php:460 modules/cta/cta.php:165
3439
+ #: modules/post-slider/post-slider.php:599
3440
+ #: modules/post-slider/post-slider.php:613
3441
+ #: modules/testimonials/testimonials.php:69
3442
+ msgid "Heading Size"
3443
+ msgstr "Fejléc méret"
3444
+
3445
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
3446
+ msgid "Heading Custom Size"
3447
+ msgstr "Fejléc egyedi mérete"
3448
+
3449
+ #: modules/callout/callout.php:313
3450
+ msgid "Image Type"
3451
+ msgstr "Kép típus"
3452
+
3453
+ #: modules/callout/callout.php:316
3454
+ msgctxt "Image type."
3455
+ msgid "None"
3456
+ msgstr "Nincs"
3457
+
3458
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417
3459
+ #: modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:320
3460
+ msgid "Crop"
3461
+ msgstr "Körülvág"
3462
+
3463
+ #: modules/callout/callout.php:344 modules/photo/photo.php:420
3464
+ msgctxt "Photo Crop."
3465
+ msgid "None"
3466
+ msgstr "Nincs"
3467
+
3468
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421
3469
+ #: modules/post-slider/post-slider.php:485
3470
+ msgid "Landscape"
3471
+ msgstr "Tájkép"
3472
+
3473
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422
3474
+ #: modules/post-slider/post-slider.php:486
3475
+ msgid "Panorama"
3476
+ msgstr "Panoráma"
3477
+
3478
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423
3479
+ #: modules/post-slider/post-slider.php:487
3480
+ msgid "Portrait"
3481
+ msgstr "Arckép"
3482
+
3483
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424
3484
+ #: modules/post-slider/post-slider.php:488
3485
+ msgid "Square"
3486
+ msgstr "Négyzet"
3487
+
3488
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425
3489
+ #: modules/post-slider/post-slider.php:489
3490
+ msgid "Circle"
3491
+ msgstr "Kör"
3492
+
3493
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
3494
+ msgid "Above Heading"
3495
+ msgstr "Címsor felett"
3496
+
3497
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
3498
+ msgid "Below Heading"
3499
+ msgstr "Címsor alatt"
3500
+
3501
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
3502
+ msgid "Left of Text and Heading"
3503
+ msgstr "Balra szöveg és fejléc"
3504
+
3505
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
3506
+ msgid "Right of Text and Heading"
3507
+ msgstr "Jobb a szöveg és fejléc"
3508
+
3509
+ #: modules/callout/callout.php:379
3510
+ msgid "Left of Heading"
3511
+ msgstr "Fejléc bal oldala"
3512
+
3513
+ #: modules/callout/callout.php:380
3514
+ msgid "Right of Heading"
3515
+ msgstr "Fejléc jobb oldala"
3516
+
3517
+ #: modules/callout/callout.php:388
3518
+ msgid "Icon Colors"
3519
+ msgstr "Ikon színek"
3520
+
3521
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56
3522
+ #: modules/icon/icon.php:87
3523
+ msgid "Hover Color"
3524
+ msgstr "Színe egér rávitelekor"
3525
+
3526
+ #: modules/callout/callout.php:428
3527
+ msgid "Icon Structure"
3528
+ msgstr "Ikon felépítése"
3529
+
3530
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91
3531
+ #: modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269
3532
+ #: modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
3533
+ msgid "Size"
3534
+ msgstr "Méret"
3535
+
3536
+ #: modules/callout/callout.php:443
3537
+ #: modules/content-slider/content-slider.php:571
3538
+ msgid "Call To Action"
3539
+ msgstr "Cselekvésre felhívás gomb"
3540
+
3541
+ #: modules/callout/callout.php:451
3542
+ msgid ""
3543
+ "The link applies to the entire module. If choosing a call to action type "
3544
+ "below, this link will also be used for the text or button."
3545
+ msgstr ""
3546
+
3547
+ #: modules/callout/callout.php:471
3548
+ #: modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
3549
+ msgid "Call to Action"
3550
+ msgstr "Cselekvésre felhívás gomb"
3551
+
3552
+ #: modules/callout/callout.php:478
3553
+ #: modules/content-slider/content-slider.php:600
3554
+ msgctxt "Call to action."
3555
+ msgid "None"
3556
+ msgstr "Nincs"
3557
+
3558
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382
3559
+ #: modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
3560
+ msgid "Read More"
3561
+ msgstr "Bővebben..."
3562
+
3563
+ #: modules/callout/callout.php:500
3564
+ #: modules/content-slider/content-slider.php:621
3565
+ #: modules/subscribe-form/subscribe-form.php:173
3566
+ msgid "Button Icon"
3567
+ msgstr "Gomb ikon"
3568
+
3569
+ #: modules/callout/callout.php:505
3570
+ #: modules/content-slider/content-slider.php:626
3571
+ msgid "Button Icon Position"
3572
+ msgstr "Gomb ikon pozíciója"
3573
+
3574
+ #: modules/callout/callout.php:515
3575
+ #: modules/content-slider/content-slider.php:636 modules/cta/cta.php:270
3576
+ #: modules/subscribe-form/subscribe-form.php:188
3577
+ msgid "Button Colors"
3578
+ msgstr "Gomb színek"
3579
+
3580
+ #: modules/callout/callout.php:550
3581
+ #: modules/content-slider/content-slider.php:663 modules/cta/cta.php:305
3582
+ #: modules/subscribe-form/subscribe-form.php:223
3583
+ msgid "Button Style"
3584
+ msgstr "Gomb stílus"
3585
+
3586
+ #: modules/callout/callout.php:588
3587
+ #: modules/content-slider/content-slider.php:701 modules/cta/cta.php:343
3588
+ #: modules/subscribe-form/subscribe-form.php:261
3589
+ msgid "Button Structure"
3590
+ msgstr "Gomb felépítése"
3591
+
3592
+ #: modules/callout/callout.php:592
3593
+ msgid "Button Width"
3594
+ msgstr "Gomb szélesség"
3595
+
3596
+ #: modules/contact-form/contact-form.php:14
3597
+ msgid "Contact Form"
3598
+ msgstr "Kapcsolati űrlap"
3599
+
3600
+ #: modules/contact-form/contact-form.php:15
3601
+ msgid "A very simple contact form."
3602
+ msgstr "Kapcsolati űrlap"
3603
+
3604
+ #: modules/contact-form/contact-form.php:31
3605
+ msgid "Contact Form Submission"
3606
+ msgstr "Kapcsolat űrlap beküldése"
3607
+
3608
+ #: modules/contact-form/contact-form.php:41
3609
+ msgid "Message"
3610
+ msgstr "Üzenet"
3611
+
3612
+ #: modules/contact-form/contact-form.php:65
3613
+ msgid "Send To Email"
3614
+ msgstr "Email elküldése"
3615
+
3616
+ #: modules/contact-form/contact-form.php:67
3617
+ msgid "example@mail.com"
3618
+ msgstr "mintaemail@mail.hu"
3619
+
3620
+ #: modules/contact-form/contact-form.php:68
3621
+ msgid "The contact form will send to this e-mail"
3622
+ msgstr "A kapcsolati űrlapot erre az e-mail címre küldi az üzenetet"
3623
+
3624
+ #: modules/contact-form/contact-form.php:75
3625
+ #: modules/subscribe-form/subscribe-form.php:108
3626
+ msgid "Name Field"
3627
+ msgstr "Név mező"
3628
+
3629
+ #: modules/contact-form/contact-form.php:78
3630
+ #: modules/contact-form/contact-form.php:87
3631
+ #: modules/contact-form/contact-form.php:96
3632
+ #: modules/contact-form/contact-form.php:105
3633
+ #: modules/post-carousel/post-carousel.php:258
3634
+ #: modules/post-carousel/post-carousel.php:322
3635
+ #: modules/post-carousel/post-carousel.php:331
3636
+ #: modules/post-carousel/post-carousel.php:366
3637
+ #: modules/post-carousel/post-carousel.php:375
3638
+ #: modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152
3639
+ #: modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191
3640
+ #: modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
3641
+ #: modules/post-slider/post-slider.php:443
3642
+ #: modules/post-slider/post-slider.php:502
3643
+ #: modules/post-slider/post-slider.php:511
3644
+ #: modules/post-slider/post-slider.php:541
3645
+ #: modules/post-slider/post-slider.php:555
3646
+ #: modules/post-slider/post-slider.php:564
3647
+ #: modules/subscribe-form/subscribe-form.php:111
3648
+ msgid "Show"
3649
+ msgstr "Mutat"
3650
+
3651
+ #: modules/contact-form/contact-form.php:79
3652
+ #: modules/contact-form/contact-form.php:88
3653
+ #: modules/contact-form/contact-form.php:97
3654
+ #: modules/contact-form/contact-form.php:106
3655
+ #: modules/post-carousel/post-carousel.php:259
3656
+ #: modules/post-carousel/post-carousel.php:323
3657
+ #: modules/post-carousel/post-carousel.php:332
3658
+ #: modules/post-carousel/post-carousel.php:367
3659
+ #: modules/post-carousel/post-carousel.php:376
3660
+ #: modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153
3661
+ #: modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192
3662
+ #: modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
3663
+ #: modules/post-slider/post-slider.php:444
3664
+ #: modules/post-slider/post-slider.php:503
3665
+ #: modules/post-slider/post-slider.php:512
3666
+ #: modules/post-slider/post-slider.php:542
3667
+ #: modules/post-slider/post-slider.php:556
3668
+ #: modules/post-slider/post-slider.php:565
3669
+ #: modules/subscribe-form/subscribe-form.php:112
3670
+ msgid "Hide"
3671
+ msgstr "Rejt"
3672
+
3673
+ #: modules/contact-form/contact-form.php:84
3674
+ msgid "Subject Field"
3675
+ msgstr "Tárgy mező"
3676
+
3677
+ #: modules/contact-form/contact-form.php:93
3678
+ msgid "Email Field"
3679
+ msgstr "Email mező"
3680
+
3681
+ #: modules/contact-form/contact-form.php:102
3682
+ msgid "Phone Field"
3683
+ msgstr "Telefonszám mező"
3684
+
3685
+ #: modules/contact-form/includes/frontend.php:5
3686
+ msgctxt "Contact form field label."
3687
+ msgid "Name"
3688
+ msgstr "Név"
3689
+
3690
+ #: modules/contact-form/includes/frontend.php:6
3691
+ #: modules/subscribe-form/includes/frontend.php:6
3692
+ msgid "Please enter your name."
3693
+ msgstr "Adja meg a nevét!"
3694
+
3695
+ #: modules/contact-form/includes/frontend.php:7
3696
+ msgid "Your name"
3697
+ msgstr "Az Ön neve"
3698
+
3699
+ #: modules/contact-form/includes/frontend.php:13
3700
+ #: modules/contact-form/includes/frontend.php:15
3701
+ msgid "Subject"
3702
+ msgstr "Tárgy"
3703
+
3704
+ #: modules/contact-form/includes/frontend.php:14
3705
+ msgid "Please enter a subject."
3706
+ msgstr "Adja meg a tárgyat."
3707
+
3708
+ #: modules/contact-form/includes/frontend.php:22
3709
+ msgid "Please enter a valid email."
3710
+ msgstr "Adja meg az e-mail címét!"
3711
+
3712
+ #: modules/contact-form/includes/frontend.php:23
3713
+ msgid "Your email"
3714
+ msgstr "Az Ön Email címe"
3715
+
3716
+ #: modules/contact-form/includes/frontend.php:29
3717
+ msgid "Phone"
3718
+ msgstr "Telefon"
3719
+
3720
+ #: modules/contact-form/includes/frontend.php:30
3721
+ msgid "Please enter a valid phone number."
3722
+ msgstr "Kérem, adjon meg egy érvényes mobilszámot"
3723
+
3724
+ #: modules/contact-form/includes/frontend.php:31
3725
+ msgid "Your phone"
3726
+ msgstr "Az Ön telefonszáma"
3727
+
3728
+ #: modules/contact-form/includes/frontend.php:36
3729
+ msgid "Your Message"
3730
+ msgstr "Az üzenet szövege"
3731
+
3732
+ #: modules/contact-form/includes/frontend.php:37
3733
+ msgid "Please enter a message."
3734
+ msgstr "Kérem, írja be az üzenetet"
3735
+
3736
+ #: modules/contact-form/includes/frontend.php:38
3737
+ msgid "Your message"
3738
+ msgstr "Üzenete"
3739
+
3740
+ #: modules/contact-form/includes/frontend.php:43
3741
+ msgid "Send"
3742
+ msgstr "Küldés"
3743
+
3744
+ #: modules/contact-form/includes/frontend.php:44
3745
+ msgid "Message Sent!"
3746
+ msgstr "Üzenet elküldve!"
3747
+
3748
+ #: modules/contact-form/includes/frontend.php:45
3749
+ msgid "Message failed. Please try again."
3750
+ msgstr "Nem sikerült elküldeni az üzenetet. Kérjük próbálja meg később újra!"
3751
+
3752
+ #: modules/content-slider/content-slider.php:14
3753
+ msgid "Content Slider"
3754
+ msgstr "Tartalom Slider"
3755
+
3756
+ #: modules/content-slider/content-slider.php:15
3757
+ msgid "Displays multiple slides with an optional heading and call to action."
3758
+ msgstr ""
3759
+
3760
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41
3761
+ #: modules/post-slider/post-slider.php:345 modules/separator/separator.php:58
3762
+ #: modules/slideshow/slideshow.php:302
3763
+ msgid "Height"
3764
+ msgstr "Magasság"
3765
+
3766
+ #: modules/content-slider/content-slider.php:203
3767
+ msgid ""
3768
+ "This setting is the minimum height of the content slider. Content will "
3769
+ "expand the height automatically."
3770
+ msgstr ""
3771
+
3772
+ #: modules/content-slider/content-slider.php:207
3773
+ #: modules/post-carousel/post-carousel.php:136
3774
+ #: modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381
3775
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
3776
+ msgid "Auto Play"
3777
+ msgstr "Automatikus lejátszás"
3778
+
3779
+ #: modules/content-slider/content-slider.php:221
3780
+ msgid "Show Play/Pause"
3781
+ msgstr "Lejátszás/Szünet"
3782
+
3783
+ #: modules/content-slider/content-slider.php:241
3784
+ #: modules/testimonials/testimonials.php:102
3785
+ msgctxt "Transition type."
3786
+ msgid "Slide"
3787
+ msgstr "Dia"
3788
+
3789
+ #: modules/content-slider/content-slider.php:255
3790
+ #: modules/post-carousel/post-carousel.php:188
3791
+ #: modules/post-slider/post-slider.php:415
3792
+ #: modules/testimonials/testimonials.php:121
3793
+ msgid "Show Arrows"
3794
+ msgstr "Nyilak mutatássa"
3795
+
3796
+ #: modules/content-slider/content-slider.php:264
3797
+ #: modules/post-carousel/post-carousel.php:179
3798
+ #: modules/post-slider/post-slider.php:406
3799
+ #: modules/testimonials/testimonials.php:151
3800
+ msgid "Show Dots"
3801
+ msgstr "Pontok mutatása"
3802
+
3803
+ #: modules/content-slider/content-slider.php:278
3804
+ msgid "Max Content Width"
3805
+ msgstr "Maximális szélesség"
3806
+
3807
+ #: modules/content-slider/content-slider.php:283
3808
+ msgid "The max width that the content area will be within your slides."
3809
+ msgstr ""
3810
+
3811
+ #: modules/content-slider/content-slider.php:290
3812
+ msgid "Slides"
3813
+ msgstr "Diák"
3814
+
3815
+ #: modules/content-slider/content-slider.php:297
3816
+ #: modules/post-slider/post-slider.php:374
3817
+ msgid "Slide"
3818
+ msgstr "Dia"
3819
+
3820
+ #: modules/content-slider/content-slider.php:312
3821
+ msgid "Slide Settings"
3822
+ msgstr "Dia beállítások"
3823
+
3824
+ #: modules/content-slider/content-slider.php:322
3825
+ msgid "Slide Label"
3826
+ msgstr "Dia neve"
3827
+
3828
+ #: modules/content-slider/content-slider.php:323
3829
+ msgid ""
3830
+ "A label to identify this slide on the Slides tab of the Content Slider "
3831
+ "settings."
3832
+ msgstr ""
3833
+
3834
+ #: modules/content-slider/content-slider.php:328
3835
+ msgid "Background Layout"
3836
+ msgstr "Háttér elrendezés"
3837
+
3838
+ #: modules/content-slider/content-slider.php:334
3839
+ msgid "This setting is for the entire background of your slide."
3840
+ msgstr ""
3841
+
3842
+ #: modules/content-slider/content-slider.php:369
3843
+ msgid "Background Video Code"
3844
+ msgstr "Háttér videó kód"
3845
+
3846
+ #: modules/content-slider/content-slider.php:375
3847
+ msgid "Content Layout"
3848
+ msgstr "Tartalom elrendezés"
3849
+
3850
+ #: modules/content-slider/content-slider.php:381
3851
+ msgid ""
3852
+ "This allows you to add content over or in addition to the background "
3853
+ "selection above. The location of the content layout can be selected in the "
3854
+ "style tab."
3855
+ msgstr ""
3856
+
3857
+ #: modules/content-slider/content-slider.php:384
3858
+ msgid "Text &amp; Photo"
3859
+ msgstr "Szöveg és fotó"
3860
+
3861
+ #: modules/content-slider/content-slider.php:385
3862
+ msgid "Text &amp; Video"
3863
+ msgstr "Szöveg és videó"
3864
+
3865
+ #: modules/content-slider/content-slider.php:386
3866
+ msgctxt "Content type."
3867
+ msgid "None"
3868
+ msgstr "Nincs"
3869
+
3870
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3871
+ msgid "Video Embed Code"
3872
+ msgstr "Videó beágyazási kód"
3873
+
3874
+ #: modules/content-slider/content-slider.php:469
3875
+ msgid "Text Position"
3876
+ msgstr "Szöveg pozíció"
3877
+
3878
+ #: modules/content-slider/content-slider.php:475
3879
+ msgid ""
3880
+ "The position will move the content layout selections left, right or center "
3881
+ "over the background of the slide."
3882
+ msgstr ""
3883
+
3884
+ #: modules/content-slider/content-slider.php:492
3885
+ msgid "Top Margin"
3886
+ msgstr "Felső margó"
3887
+
3888
+ #: modules/content-slider/content-slider.php:500
3889
+ msgid "Bottom Margin"
3890
+ msgstr "Alsó margó:"
3891
+
3892
+ #: modules/content-slider/content-slider.php:508
3893
+ msgid "Left Margin"
3894
+ msgstr "Bal margó"
3895
+
3896
+ #: modules/content-slider/content-slider.php:516
3897
+ msgid "Right Margin"
3898
+ msgstr "Jobb margó"
3899
+
3900
+ #: modules/content-slider/content-slider.php:525
3901
+ msgid "Text Colors"
3902
+ msgstr "Szöveg szín"
3903
+
3904
+ #: modules/content-slider/content-slider.php:535
3905
+ msgid "Text Shadow"
3906
+ msgstr "Szöveg árnyék"
3907
+
3908
+ #: modules/content-slider/content-slider.php:544
3909
+ #: modules/content-slider/content-slider.php:770
3910
+ #: modules/post-carousel/post-carousel.php:411
3911
+ #: modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:721
3912
+ msgid "Text Background Color"
3913
+ msgstr "Szöveg háttérszín"
3914
+
3915
+ #: modules/content-slider/content-slider.php:545
3916
+ #: modules/post-carousel/post-carousel.php:413
3917
+ #: modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
3918
+ msgid ""
3919
+ "The color applies to the overlay behind text over the background selections."
3920
+ msgstr ""
3921
+
3922
+ #: modules/content-slider/content-slider.php:550
3923
+ #: modules/post-carousel/post-carousel.php:423
3924
+ #: modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
3925
+ msgid "Text Background Opacity"
3926
+ msgstr "Szöveg háttér átlátszósága"
3927
+
3928
+ #: modules/content-slider/content-slider.php:558
3929
+ #: modules/post-slider/post-slider.php:745
3930
+ msgid "Text Background Height"
3931
+ msgstr "Szöveg háttér magasság"
3932
+
3933
+ #: modules/content-slider/content-slider.php:560
3934
+ #: modules/post-slider/post-slider.php:747
3935
+ msgid ""
3936
+ "Auto will allow the overlay to fit however long the text content is. 100% "
3937
+ "will fit the overlay to the top and bottom of the slide."
3938
+ msgstr ""
3939
+
3940
+ #: modules/content-slider/content-slider.php:562
3941
+ #: modules/post-slider/post-slider.php:749
3942
+ msgctxt "Background height."
3943
+ msgid "Auto"
3944
+ msgstr ""
3945
+
3946
+ #: modules/content-slider/content-slider.php:579
3947
+ msgid ""
3948
+ "The link applies to the entire slide. If choosing a call to action type "
3949
+ "below, this link will also be used for the text or button."
3950
+ msgstr ""
3951
+
3952
+ #: modules/content-slider/content-slider.php:721
3953
+ msgid "Border Radius"
3954
+ msgstr "Szegély kerekítés"
3955
+
3956
+ #: modules/content-slider/content-slider.php:732
3957
+ msgctxt "Module settings form tab. Display on mobile devices."
3958
+ msgid "Mobile"
3959
+ msgstr "Mobil"
3960
+
3961
+ #: modules/content-slider/content-slider.php:735
3962
+ msgid "Mobile Photo"
3963
+ msgstr "Mobil kép"
3964
+
3965
+ #: modules/content-slider/content-slider.php:741
3966
+ msgid ""
3967
+ "You can choose a different photo that the slide will change to on mobile "
3968
+ "devices or no photo if desired."
3969
+ msgstr ""
3970
+
3971
+ #: modules/content-slider/content-slider.php:743
3972
+ msgid "Use Main Photo"
3973
+ msgstr ""
3974
+
3975
+ #: modules/content-slider/content-slider.php:744
3976
+ msgid "Choose Another Photo"
3977
+ msgstr "Válasszon másik képet"
3978
+
3979
+ #: modules/content-slider/content-slider.php:745
3980
+ msgid "No Photo"
3981
+ msgstr "Nincs kép"
3982
+
3983
+ #: modules/content-slider/content-slider.php:760
3984
+ msgid "Mobile Text Colors"
3985
+ msgstr "Mobil szöveg színek"
3986
+
3987
+ #: modules/cta/cta.php:15
3988
+ msgid "Display a heading, subheading and a button."
3989
+ msgstr ""
3990
+
3991
+ #: modules/cta/cta.php:76
3992
+ msgid "Ready to find out more?"
3993
+ msgstr "Szeretne többet megtudni?"
3994
+
3995
+ #: modules/cta/cta.php:91
3996
+ msgid "Drop us a line today for a free quote!"
3997
+ msgstr ""
3998
+
3999
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227
4000
+ #: modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117
4001
+ #: modules/post-carousel/post-carousel.php:206
4002
+ #: modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433
4003
+ #: modules/subscribe-form/subscribe-form.php:99 modules/tabs/tabs.php:52
4004
+ #: modules/testimonials/testimonials.php:37
4005
+ #: modules/woocommerce/woocommerce.php:57
4006
+ msgid "Layout"
4007
+ msgstr "Elrendezés"
4008
+
4009
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
4010
+ msgid "Inline"
4011
+ msgstr "Sorban"
4012
+
4013
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
4014
+ msgid "Stacked"
4015
+ msgstr ""
4016
+
4017
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
4018
+ msgid "Spacing"
4019
+ msgstr "Térköz"
4020
+
4021
+ #: modules/cta/cta.php:246
4022
+ msgid "Button Link"
4023
+ msgstr "Gomb hivatkozása"
4024
+
4025
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121
4026
+ #: modules/post-grid/post-grid.php:55
4027
+ msgid "Gallery"
4028
+ msgstr "Galéria"
4029
+
4030
+ #: modules/gallery/gallery.php:15
4031
+ msgid "Display multiple photos in a gallery view."
4032
+ msgstr ""
4033
+
4034
+ #: modules/gallery/gallery.php:230
4035
+ msgid "Collage"
4036
+ msgstr "Kollázs"
4037
+
4038
+ #: modules/gallery/gallery.php:231
4039
+ msgctxt "Gallery layout: thumbnails."
4040
+ msgid "Thumbs"
4041
+ msgstr "Bélyegképek"
4042
+
4043
+ #: modules/gallery/gallery.php:267
4044
+ msgid "Photo Size"
4045
+ msgstr "Kép mérete"
4046
+
4047
+ #: modules/gallery/gallery.php:270
4048
+ msgctxt "Photo size."
4049
+ msgid "Small"
4050
+ msgstr "Kicsi"
4051
+
4052
+ #: modules/gallery/gallery.php:271
4053
+ msgctxt "Photo size."
4054
+ msgid "Medium"
4055
+ msgstr "Közepes"
4056
+
4057
+ #: modules/gallery/gallery.php:272
4058
+ msgctxt "Photo size."
4059
+ msgid "Large"
4060
+ msgstr "Nagy"
4061
+
4062
+ #: modules/gallery/gallery.php:277
4063
+ msgid "Photo Spacing"
4064
+ msgstr "Kép térköz"
4065
+
4066
+ #: modules/gallery/gallery.php:285
4067
+ msgid "Show Captions"
4068
+ msgstr "Feliratok mutatássa"
4069
+
4070
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
4071
+ msgid "Never"
4072
+ msgstr "Soha"
4073
+
4074
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
4075
+ msgid "On Hover"
4076
+ msgstr "Egér rávitelekor"
4077
+
4078
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
4079
+ msgid "Below Photo"
4080
+ msgstr "Kép alatt"
4081
+
4082
+ #: modules/gallery/gallery.php:292
4083
+ msgid ""
4084
+ "The caption pulls from whatever text you put in the caption area in the "
4085
+ "media manager for each image. The caption is also pulled directly from "
4086
+ "SmugMug if you have captions set in your gallery."
4087
+ msgstr ""
4088
+
4089
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
4090
+ msgid "Click Action"
4091
+ msgstr "Kattintson ide"
4092
+
4093
+ #: modules/gallery/gallery.php:299
4094
+ msgctxt "Click action."
4095
+ msgid "None"
4096
+ msgstr "Nincs"
4097
+
4098
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
4099
+ msgid "Lightbox"
4100
+ msgstr ""
4101
+
4102
+ #: modules/gallery/gallery.php:301
4103
+ msgid "Photo Link"
4104
+ msgstr "Kép link"
4105
+
4106
+ #: modules/heading/heading.php:15
4107
+ msgid "Display a title/page heading."
4108
+ msgstr ""
4109
+
4110
+ #: modules/heading/heading.php:101
4111
+ msgid "HTML Tag"
4112
+ msgstr "HTML-címke"
4113
+
4114
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
4115
+ msgid "Custom Font Size"
4116
+ msgstr "Egyedi betűméret"
4117
+
4118
+ #: modules/heading/heading.php:137
4119
+ msgid "Mobile Structure"
4120
+ msgstr "Mobil felépítése"
4121
+
4122
+ #: modules/heading/heading.php:158
4123
+ msgid "Custom Alignment"
4124
+ msgstr "Egyedi igazítás"
4125
+
4126
+ #: modules/html/html.php:14
4127
+ msgid "HTML"
4128
+ msgstr "HTML"
4129
+
4130
+ #: modules/html/html.php:15
4131
+ msgid "Display raw HTML code."
4132
+ msgstr "Mutatja egy sorban a HTML kódot."
4133
+
4134
+ #: modules/icon-group/icon-group.php:14
4135
+ msgid "Icon Group"
4136
+ msgstr "Ikon Csoport"
4137
+
4138
+ #: modules/icon-group/icon-group.php:15
4139
+ msgid "Display a group of linked Font Awesome icons."
4140
+ msgstr ""
4141
+
4142
+ #: modules/icon-group/icon-group.php:125
4143
+ msgid "Add Icon"
4144
+ msgstr "Ikon hozzáadása"
4145
+
4146
+ #: modules/icon/icon.php:15
4147
+ msgid "Display an icon and optional title."
4148
+ msgstr "Jelenjen meg az ikon és az opcionális címe."
4149
+
4150
+ #: modules/map/map.php:14
4151
+ msgid "Map"
4152
+ msgstr "Térkép"
4153
+
4154
+ #: modules/map/map.php:15
4155
+ msgid "Display a Google map."
4156
+ msgstr "Google térkép mutatása."
4157
+
4158
+ #: modules/map/map.php:33
4159
+ msgid "Address"
4160
+ msgstr "Cím"
4161
+
4162
+ #: modules/map/map.php:34
4163
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
4164
+ msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
4165
+
4166
+ #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62
4167
+ #: modules/menu/menu.php:69
4168
+ msgid "Menu"
4169
+ msgstr "Menü"
4170
+
4171
+ #: modules/menu/menu.php:15
4172
+ msgid "Renders a WordPress menu."
4173
+ msgstr "Ad egy WordPress menüt."
4174
+
4175
+ #: modules/menu/menu.php:25
4176
+ msgid ""
4177
+ "Select a WordPress menu that you created in the admin under Appearance > "
4178
+ "Menus."
4179
+ msgstr ""
4180
+
4181
+ #: modules/menu/menu.php:42
4182
+ msgid "No Menus Found"
4183
+ msgstr "Nem található menü."
4184
+
4185
+ #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
4186
+ msgid "Horizontal"
4187
+ msgstr "Vízszintes"
4188
+
4189
+ #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
4190
+ msgid "Vertical"
4191
+ msgstr "Függőleges"
4192
+
4193
+ #: modules/menu/menu.php:96 modules/menu/menu.php:134
4194
+ msgid "Expanded"
4195
+ msgstr "Kibontott"
4196
+
4197
+ #: modules/menu/menu.php:112
4198
+ msgid "Submenu Icon"
4199
+ msgstr "Almenü ikon"
4200
+
4201
+ #: modules/menu/menu.php:115 modules/menu/menu.php:125
4202
+ msgid "Arrows"
4203
+ msgstr "Nyilak"
4204
+
4205
+ #: modules/menu/menu.php:116 modules/menu/menu.php:126
4206
+ msgid "Plus sign"
4207
+ msgstr "Pluszjel: \"+\""
4208
+
4209
+ #: modules/menu/menu.php:117 modules/menu/menu.php:223
4210
+ msgid "None"
4211
+ msgstr "Nincs"
4212
+
4213
+ #: modules/menu/menu.php:122
4214
+ msgid "Submenu Icon click"
4215
+ msgstr "Almenü ikon kattintással"
4216
+
4217
+ #: modules/menu/menu.php:131
4218
+ msgid "Mobile Style"
4219
+ msgstr "Mobil stílus"
4220
+
4221
+ #: modules/menu/menu.php:135
4222
+ msgid "Hamburger Icon"
4223
+ msgstr "Hamburger ikon"
4224
+
4225
+ #: modules/menu/menu.php:136
4226
+ msgid "Hamburger Icon + label"
4227
+ msgstr "Hamburger Ikon + címke"
4228
+
4229
+ #: modules/menu/menu.php:137
4230
+ msgid "Menu Button"
4231
+ msgstr "Menü gomb"
4232
+
4233
+ #: modules/menu/menu.php:153
4234
+ msgid "Menu Alignment"
4235
+ msgstr "Menü igazítása"
4236
+
4237
+ #: modules/menu/menu.php:164
4238
+ msgid "Submenu Drop Shadow"
4239
+ msgstr "Almenü árnyéka"
4240
+
4241
+ #: modules/menu/menu.php:206
4242
+ msgid "Link Size"
4243
+ msgstr "Link méret"
4244
+
4245
+ #: modules/menu/menu.php:220
4246
+ msgid "Link Format"
4247
+ msgstr "Link formátum"
4248
+
4249
+ #: modules/menu/menu.php:224
4250
+ msgid "Uppercase"
4251
+ msgstr "Nagybetű"
4252
+
4253
+ #: modules/menu/menu.php:225
4254
+ msgid "Lowercase"
4255
+ msgstr "Kisbetű"
4256
+
4257
+ #: modules/menu/menu.php:226
4258
+ msgid "Capitalize"
4259
+ msgstr "Aktiválás"
4260
+
4261
+ #: modules/menu/menu.php:236
4262
+ msgid "Link Weight"
4263
+ msgstr "Link súlya"
4264
+
4265
+ #: modules/menu/menu.php:239
4266
+ msgid "Normal"
4267
+ msgstr "Normál"
4268
+
4269
+ #: modules/menu/menu.php:240
4270
+ msgid "Bold"
4271
+ msgstr "Félkövér"
4272
+
4273
+ #: modules/menu/menu.php:241
4274
+ msgid "Light"
4275
+ msgstr "Világos"
4276
+
4277
+ #: modules/menu/menu.php:251
4278
+ msgid "Horizontal Spacing"
4279
+ msgstr "Vízszintes térköz"
4280
+
4281
+ #: modules/menu/menu.php:274
4282
+ msgid "Vertical Spacing"
4283
+ msgstr "Függőleges térköz"
4284
+
4285
+ #: modules/menu/menu.php:299
4286
+ msgid "Backgrounds"
4287
+ msgstr "Háttér"
4288
+
4289
+ #: modules/menu/menu.php:303
4290
+ msgid "Menu Background Color"
4291
+ msgstr "Menü háttérszíne"
4292
+
4293
+ #: modules/menu/menu.php:313 modules/menu/menu.php:331
4294
+ msgid "Menu Background Opacity"
4295
+ msgstr "Menü háttér átlátszósága"
4296
+
4297
+ #: modules/menu/menu.php:321
4298
+ msgid "Submenu Background Color"
4299
+ msgstr "Almenü háttérszíne"
4300
+
4301
+ #: modules/menu/menu.php:340
4302
+ msgid "Link Background Hover Color"
4303
+ msgstr "Hivatkozás háttérszíne egér rávitelekor"
4304
+
4305
+ #: modules/menu/menu.php:351 modules/separator/separator.php:14
4306
+ msgid "Separator"
4307
+ msgstr "Elválasztó"
4308
+
4309
+ #: modules/menu/menu.php:355
4310
+ msgid "Show Separators"
4311
+ msgstr "Elválasztó mutatása"
4312
+
4313
+ #: modules/menu/menu.php:369
4314
+ msgid "Separator Color"
4315
+ msgstr "Elválasztó szín"
4316
+
4317
+ #: modules/menu/menu.php:374
4318
+ msgid "Separator Opacity"
4319
+ msgstr "Elválasztó átlátszóság"
4320
+
4321
+ #: modules/photo/photo.php:26
4322
+ msgid "Upload a photo or display one from the media library."
4323
+ msgstr ""
4324
+ "Töltsön fel egy fényképet, vagy válasszon ki egyet a média könyvtárból."
4325
+
4326
+ #: modules/photo/photo.php:391
4327
+ msgid "Photo Source"
4328
+ msgstr "Kép forrás"
4329
+
4330
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
4331
+ msgid "URL"
4332
+ msgstr "Link"
4333
+
4334
+ #: modules/photo/photo.php:412
4335
+ msgid "Photo URL"
4336
+ msgstr "Kép URL"
4337
+
4338
+ #: modules/photo/photo.php:413
4339
+ msgid "http://www.example.com/my-photo.jpg"
4340
+ msgstr "http://www.kephivatkozas.hu/minta-kep.jpg"
4341
+
4342
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
4343
+ msgid "Caption"
4344
+ msgstr "Képaláírás"
4345
+
4346
+ #: modules/photo/photo.php:445
4347
+ msgid "Show Caption"
4348
+ msgstr "Mutassa a képaláírást"
4349
+
4350
+ #: modules/photo/photo.php:464
4351
+ msgid "Link Type"
4352
+ msgstr "Link típus"
4353
+
4354
+ #: modules/photo/photo.php:466
4355
+ msgctxt "Link type."
4356
+ msgid "None"
4357
+ msgstr "Nincs"
4358
+
4359
+ #: modules/photo/photo.php:469
4360
+ msgid "Photo File"
4361
+ msgstr "Kép fájl"
4362
+
4363
+ #: modules/photo/photo.php:480
4364
+ msgid ""
4365
+ "Link type applies to how the image should be linked on click. You can choose "
4366
+ "a specific URL, the individual photo or a separate page with the photo."
4367
+ msgstr ""
4368
+
4369
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
4370
+ msgid "Link URL"
4371
+ msgstr "Hivatkozás webcíme"
4372
+
4373
+ #: modules/post-carousel/includes/post-gallery-loop.php:35
4374
+ #: modules/post-carousel/includes/post-grid-loop.php:22
4375
+ #: modules/post-grid/includes/post-feed.php:14
4376
+ #: modules/post-grid/includes/post-grid.php:24
4377
+ #: modules/post-slider/includes/post-loop.php:29
4378
+ #, php-format
4379
+ msgctxt "%s stands for author name."
4380
+ msgid "By %s"
4381
+ msgstr "Írta %s"
4382
+
4383
+ #: modules/post-carousel/post-carousel.php:14
4384
+ msgid "Posts Carousel"
4385
+ msgstr "Bejegyzés körhinta"
4386
+
4387
+ #: modules/post-carousel/post-carousel.php:15
4388
+ msgid "Display a carousel of your WordPress posts."
4389
+ msgstr "Mutatja a Wordpress bejegyzéseit körkörösen."
4390
+
4391
+ #: modules/post-carousel/post-carousel.php:110
4392
+ #: modules/post-slider/post-slider.php:338
4393
+ msgid "Slider"
4394
+ msgstr "Diavetítés"
4395
+
4396
+ #: modules/post-carousel/post-carousel.php:120
4397
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
4398
+ msgid "Grid"
4399
+ msgstr "Rács"
4400
+
4401
+ #: modules/post-carousel/post-carousel.php:152
4402
+ #: modules/post-slider/post-slider.php:379 modules/video/video.php:120
4403
+ msgid "Loop"
4404
+ msgstr "Folyamatos lejátszás"
4405
+
4406
+ #: modules/post-carousel/post-carousel.php:168
4407
+ #: modules/post-slider/post-slider.php:395
4408
+ msgid "Number of Posts"
4409
+ msgstr "Bejegyzések száma"
4410
+
4411
+ #: modules/post-carousel/post-carousel.php:175
4412
+ #: modules/post-slider/post-slider.php:402
4413
+ msgid "Slider Controls"
4414
+ msgstr "Diavetítés vezérlők"
4415
+
4416
+ #: modules/post-carousel/post-carousel.php:209
4417
+ #: modules/post-grid/post-grid.php:14
4418
+ msgid "Posts"
4419
+ msgstr "Bejegyzések"
4420
+
4421
+ #: modules/post-carousel/post-carousel.php:213
4422
+ msgid "Post Max Width"
4423
+ msgstr "Bejegyzés maximális szélesség"
4424
+
4425
+ #: modules/post-carousel/post-carousel.php:221
4426
+ #: modules/post-grid/post-grid.php:103
4427
+ msgid "Post Spacing"
4428
+ msgstr "Bejegyzés térköz"
4429
+
4430
+ #: modules/post-carousel/post-carousel.php:229
4431
+ msgid "Equalize Column Heights"
4432
+ msgstr "Egyenlő oszlop magasság"
4433
+
4434
+ #: modules/post-carousel/post-carousel.php:238
4435
+ msgid "Post Hover Transition"
4436
+ msgstr "Átmenet"
4437
+
4438
+ #: modules/post-carousel/post-carousel.php:242
4439
+ #: modules/post-grid/post-grid.php:248
4440
+ msgid "Slide Up"
4441
+ msgstr "Felcsúszás"
4442
+
4443
+ #: modules/post-carousel/post-carousel.php:243
4444
+ #: modules/post-grid/post-grid.php:249
4445
+ msgid "Slide Down"
4446
+ msgstr "Lecsúszás"
4447
+
4448
+ #: modules/post-carousel/post-carousel.php:244
4449
+ #: modules/post-grid/post-grid.php:250
4450
+ msgid "Scale Up"
4451
+ msgstr "Felfelé skála"
4452
+
4453
+ #: modules/post-carousel/post-carousel.php:245
4454
+ #: modules/post-grid/post-grid.php:251
4455
+ msgid "Scale Down"
4456
+ msgstr "Lefelé skála"
4457
+
4458
+ #: modules/post-carousel/post-carousel.php:251
4459
+ #: modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:456
4460
+ msgid "Featured Image"
4461
+ msgstr "Kiemelt kép"
4462
+
4463
+ #: modules/post-carousel/post-carousel.php:279
4464
+ #: modules/post-grid/post-grid.php:261
4465
+ msgid "Use Icon for Posts"
4466
+ msgstr "Ikon használat a bejegyzésben"
4467
+
4468
+ #: modules/post-carousel/post-carousel.php:293
4469
+ #: modules/post-grid/post-grid.php:275
4470
+ msgid "Post Icon"
4471
+ msgstr "Bejegyzés ikon"
4472
+
4473
+ #: modules/post-carousel/post-carousel.php:297
4474
+ #: modules/post-grid/post-grid.php:279
4475
+ msgid "Post Icon Position"
4476
+ msgstr "Bejegyzés ikon poziciója"
4477
+
4478
+ #: modules/post-carousel/post-carousel.php:300
4479
+ #: modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
4480
+ msgid "Above Text"
4481
+ msgstr "Szöveg felett"
4482
+
4483
+ #: modules/post-carousel/post-carousel.php:301
4484
+ #: modules/post-grid/post-grid.php:283
4485
+ msgid "Below Text"
4486
+ msgstr "Szöveg alatt"
4487
+
4488
+ #: modules/post-carousel/post-carousel.php:306
4489
+ #: modules/post-grid/post-grid.php:288
4490
+ msgid "Post Icon Size"
4491
+ msgstr "Bejegyzés ikon mérete"
4492
+
4493
+ #: modules/post-carousel/post-carousel.php:315
4494
+ #: modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
4495
+ msgid "Post Info"
4496
+ msgstr "Bejegyzés információ"
4497
+
4498
+ #: modules/post-carousel/post-carousel.php:342
4499
+ #: modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:522
4500
+ msgid "Date Format"
4501
+ msgstr "Dátum formátum"
4502
+
4503
+ #: modules/post-carousel/post-carousel.php:372
4504
+ #: modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:561
4505
+ msgid "More Link"
4506
+ msgstr "Bővebben link"
4507
+
4508
+ #: modules/post-carousel/post-carousel.php:381
4509
+ #: modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
4510
+ msgid "More Link Text"
4511
+ msgstr "Bővebben link szövege"
4512
+
4513
+ #: modules/post-carousel/post-carousel.php:418
4514
+ #: modules/post-grid/post-grid.php:307
4515
+ msgid "Post Icon Color"
4516
+ msgstr "Bejegyzés ikon színe"
4517
+
4518
+ #: modules/post-grid/includes/frontend.php:41
4519
+ msgid "No posts found."
4520
+ msgstr "Nem található bejegyzés."
4521
+
4522
+ #: modules/post-grid/post-grid.php:15
4523
+ msgid "Display a grid of your WordPress posts."
4524
+ msgstr "Mutatja a Wordpress bejegyzéseit rácsozatosan. "
4525
+
4526
+ #: modules/post-grid/post-grid.php:51
4527
+ msgid "Layout Style"
4528
+ msgstr "Elrendezés stílusa"
4529
+
4530
+ #: modules/post-grid/post-grid.php:56
4531
+ msgid "Feed"
4532
+ msgstr "Visszajelzés"
4533
+
4534
+ #: modules/post-grid/post-grid.php:74
4535
+ msgid "Pagination Style"
4536
+ msgstr "Lapszámozás stílusa"
4537
+
4538
+ #: modules/post-grid/post-grid.php:77
4539
+ msgid "Numbers"
4540
+ msgstr "Számok"
4541
+
4542
+ #: modules/post-grid/post-grid.php:79
4543
+ msgctxt "Pagination style."
4544
+ msgid "None"
4545
+ msgstr "Nincs"
4546
+
4547
+ #: modules/post-grid/post-grid.php:84
4548
+ msgid "Posts Per Page"
4549
+ msgstr "Bejegyzések oldalként"
4550
+
4551
+ #: modules/post-grid/post-grid.php:95
4552
+ msgid "Post Width"
4553
+ msgstr "Bejegyzés szélessége"
4554
+
4555
+ #: modules/post-grid/post-grid.php:134
4556
+ msgid "Beside Text"
4557
+ msgstr "Szöveg mellett"
4558
+
4559
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
4560
+ msgid "Comments"
4561
+ msgstr "Hozzászólás"
4562
+
4563
+ #: modules/post-grid/post-grid.php:211
4564
+ msgid "Content Type"
4565
+ msgstr "Tartalom típusa"
4566
+
4567
+ #: modules/post-grid/post-grid.php:214
4568
+ msgid "Excerpt"
4569
+ msgstr "Kivonat"
4570
+
4571
+ #: modules/post-grid/post-grid.php:215
4572
+ msgid "Full Text"
4573
+ msgstr "Teljes szöveg"
4574
+
4575
+ #: modules/post-grid/post-grid.php:244
4576
+ msgid "Hover Transition"
4577
+ msgstr "Átmenet"
4578
+
4579
+ #: modules/post-slider/post-slider.php:14
4580
+ msgid "Posts Slider"
4581
+ msgstr "Diavetítés"
4582
+
4583
+ #: modules/post-slider/post-slider.php:15
4584
+ msgid "Display a slider of your WordPress posts."
4585
+ msgstr "Mutatja a Wordpress bejegyzése csúszkáját. "
4586
+
4587
+ #: modules/post-slider/post-slider.php:350
4588
+ msgid ""
4589
+ "This setting is the minimum height of the post slider. Content will expand "
4590
+ "the height automatically."
4591
+ msgstr ""
4592
+
4593
+ #: modules/post-slider/post-slider.php:440
4594
+ msgid "Show Featured Image?"
4595
+ msgstr "Kiemelt kép megjelenítése?"
4596
+
4597
+ #: modules/post-slider/post-slider.php:628
4598
+ msgid ""
4599
+ "The position will move the content layout selections left, right or bottom "
4600
+ "over the background of the slide."
4601
+ msgstr ""
4602
+ "A tartalom pozícióját mozgatja balra, jobbra vagy a gomb szerint, háttérben "
4603
+ "lévő dián túl."
4604
+
4605
+ #: modules/post-slider/post-slider.php:647
4606
+ msgid ""
4607
+ "The position will move the content layout selections left or right or center "
4608
+ "of the thumbnail of the slide."
4609
+ msgstr ""
4610
+
4611
+ #: modules/post-slider/post-slider.php:663
4612
+ msgid "Text Width"
4613
+ msgstr "Szöveg szélesség"
4614
+
4615
+ #: modules/post-slider/post-slider.php:671
4616
+ msgid "Text Padding"
4617
+ msgstr "Szöveg belső margója"
4618
+
4619
+ #: modules/post-slider/post-slider.php:736
4620
+ msgid "Text Background Gradient"
4621
+ msgstr "Szöveg háttérszín"
4622
+
4623
+ #: modules/pricing-table/pricing-table.php:14
4624
+ msgid "Pricing Table"
4625
+ msgstr "Ártáblázat"
4626
+
4627
+ #: modules/pricing-table/pricing-table.php:15
4628
+ msgid "A simple pricing table generator."
4629
+ msgstr "Egyszerű ártábla"
4630
+
4631
+ #: modules/pricing-table/pricing-table.php:26
4632
+ msgid "Pricing Boxes"
4633
+ msgstr "Ár dobozok"
4634
+
4635
+ #: modules/pricing-table/pricing-table.php:33
4636
+ msgid "Pricing Box"
4637
+ msgstr "Ár doboz"
4638
+
4639
+ #: modules/pricing-table/pricing-table.php:50
4640
+ msgid "Box Spacing"
4641
+ msgstr "Dobozok közötti térköz"
4642
+
4643
+ #: modules/pricing-table/pricing-table.php:53
4644
+ #: modules/testimonials/testimonials.php:40
4645
+ msgid "Wide"
4646
+ msgstr "Széles"
4647
+
4648
+ #: modules/pricing-table/pricing-table.php:54
4649
+ msgid "Tight"
4650
+ msgstr "Szoros"
4651
+
4652
+ #: modules/pricing-table/pricing-table.php:59
4653
+ msgid "Features Min Height"
4654
+ msgstr "Min. magasság"
4655
+
4656
+ #: modules/pricing-table/pricing-table.php:63
4657
+ msgid ""
4658
+ "Use this to normalize the height of your boxes when they have different "
4659
+ "numbers of features."
4660
+ msgstr ""
4661
+
4662
+ #: modules/pricing-table/pricing-table.php:70
4663
+ msgctxt "Border size."
4664
+ msgid "Wide"
4665
+ msgstr "Széles"
4666
+
4667
+ #: modules/pricing-table/pricing-table.php:71
4668
+ msgctxt "Border size."
4669
+ msgid "Tight"
4670
+ msgstr "Szoros"
4671
+
4672
+ #: modules/pricing-table/pricing-table.php:84
4673
+ msgid "Add Pricing Box"
4674
+ msgstr "Ár doboz hozzáadása"
4675
+
4676
+ #: modules/pricing-table/pricing-table.php:98
4677
+ msgid "Title Size"
4678
+ msgstr "Címsor mérete"
4679
+
4680
+ #: modules/pricing-table/pricing-table.php:107
4681
+ msgid "Price Box"
4682
+ msgstr "Ár doboz"
4683
+
4684
+ #: modules/pricing-table/pricing-table.php:111
4685
+ #: modules/woocommerce/woocommerce.php:190
4686
+ msgid "Price"
4687
+ msgstr "Ár"
4688
+
4689
+ #: modules/pricing-table/pricing-table.php:115
4690
+ msgid "Duration"
4691
+ msgstr "Időtartam"
4692
+
4693
+ #: modules/pricing-table/pricing-table.php:116
4694
+ msgid "per Year"
4695
+ msgstr "évi"
4696
+
4697
+ #: modules/pricing-table/pricing-table.php:120
4698
+ msgid "Price Size"
4699
+ msgstr "Ár betűméret"
4700
+
4701
+ #: modules/pricing-table/pricing-table.php:133
4702
+ #: modules/subscribe-form/subscribe-form.php:168
4703
+ msgid "Button Text"
4704
+ msgstr "Gomb felirata"
4705
+
4706
+ #: modules/pricing-table/pricing-table.php:137
4707
+ msgid "Button URL"
4708
+ msgstr "Gomb hivatkozás (URL)"
4709
+
4710
+ #: modules/pricing-table/pricing-table.php:142
4711
+ msgctxt "Price features displayed in pricing box."
4712
+ msgid "Features"
4713
+ msgstr "Jellemzők"
4714
+
4715
+ #: modules/pricing-table/pricing-table.php:147
4716
+ msgid "One feature per line. HTML is okay."
4717
+ msgstr "Egy funkció vonalanként. HTML is lehet."
4718
+
4719
+ #: modules/pricing-table/pricing-table.php:162
4720
+ msgid "Box Background"
4721
+ msgstr "Doboz háttér"
4722
+
4723
+ #: modules/pricing-table/pricing-table.php:167
4724
+ msgid "Box Foreground"
4725
+ msgstr "Doboz előtér"
4726
+
4727
+ #: modules/pricing-table/pricing-table.php:173
4728
+ msgid "Accent Color"
4729
+ msgstr "Kiemelés színe"
4730
+
4731
+ #: modules/pricing-table/pricing-table.php:178
4732
+ msgid "Accent Text Color"
4733
+ msgstr "Kiemelés betűszíne"
4734
+
4735
+ #: modules/pricing-table/pricing-table.php:182
4736
+ msgid "Box Top Margin"
4737
+ msgstr "Doboz felső margó"
4738
+
4739
+ #: modules/rich-text/rich-text.php:15
4740
+ msgid "A WYSIWYG text editor."
4741
+ msgstr "WYSIWYG szövegszerkesztő."
4742
+
4743
+ #: modules/separator/separator.php:15
4744
+ msgid "A divider line to separate content."
4745
+ msgstr "Egy elválasztó vonal a tartalom elkülönítésére."
4746
+
4747
+ #: modules/separator/separator.php:85
4748
+ msgid ""
4749
+ "The type of border to use. Double borders must have a height of at least 3px "
4750
+ "to render properly."
4751
+ msgstr ""
4752
+ "A szegély típusának használata. Dupla szegélynek legalább 3pixel magasnak "
4753
+ "kell lennie."
4754
+
4755
+ #: modules/sidebar/includes/settings-general.php:5
4756
+ #: modules/sidebar/sidebar.php:14
4757
+ msgid "Sidebar"
4758
+ msgstr "Oldalsáv"
4759
+
4760
+ #: modules/sidebar/sidebar.php:15
4761
+ msgid ""
4762
+ "Display a WordPress sidebar that has been registered by the current theme."
4763
+ msgstr ""
4764
+ "Megjeleníti a WordPress oldalmenüt, amely az aktuális témához van "
4765
+ "regisztrálva."
4766
+
4767
+ #: modules/slideshow/slideshow.php:14
4768
+ msgid "Slideshow"
4769
+ msgstr "Diavetítés"
4770
+
4771
+ #: modules/slideshow/slideshow.php:15
4772
+ msgid "Display multiple photos in a slideshow view."
4773
+ msgstr "Több fotó megjelenítése egy Diavetítés nézetben."
4774
+
4775
+ #: modules/slideshow/slideshow.php:310
4776
+ msgid "Skin Color"
4777
+ msgstr "Borító szín"
4778
+
4779
+ #: modules/slideshow/slideshow.php:313
4780
+ msgctxt "Color."
4781
+ msgid "Light"
4782
+ msgstr "Világos"
4783
+
4784
+ #: modules/slideshow/slideshow.php:314
4785
+ msgctxt "Color."
4786
+ msgid "Dark"
4787
+ msgstr "Sötét"
4788
+
4789
+ #: modules/slideshow/slideshow.php:316
4790
+ msgid ""
4791
+ "If your overall theme/images are lighter in color, light will display "
4792
+ "buttons in a darker color scheme and vice versa for dark."
4793
+ msgstr ""
4794
+ "Ha a teljes téma/kép világosabb színű, világosan jelenik meg a gombokon egy "
4795
+ "sötétebb színű háttérben, és fordítva."
4796
+
4797
+ #: modules/slideshow/slideshow.php:326
4798
+ msgid ""
4799
+ "Crop set to no will fit the slideshow images to the height you specify and "
4800
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
4801
+ "images to all sides of the content area while cropping the left and right to "
4802
+ "fit the height you specify."
4803
+ msgstr ""
4804
+
4805
+ #: modules/slideshow/slideshow.php:330
4806
+ msgid "Disable Right-Click"
4807
+ msgstr "Jobb gomb letiltása"
4808
+
4809
+ #: modules/slideshow/slideshow.php:350
4810
+ msgctxt "Click action type."
4811
+ msgid "None"
4812
+ msgstr "Nincs"
4813
+
4814
+ #: modules/slideshow/slideshow.php:374
4815
+ msgid "Playback"
4816
+ msgstr "Lejátszás"
4817
+
4818
+ #: modules/slideshow/slideshow.php:400
4819
+ msgctxt "Slideshow transition."
4820
+ msgid "None"
4821
+ msgstr "Nincs"
4822
+
4823
+ #: modules/slideshow/slideshow.php:437
4824
+ msgid "Controls"
4825
+ msgstr "Vezérlők"
4826
+
4827
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
4828
+ msgid "Navigation Arrows"
4829
+ msgstr "Navigációs nyilak"
4830
+
4831
+ #: modules/slideshow/slideshow.php:450
4832
+ msgid ""
4833
+ "Navigational arrows allow the visitor to freely move through the images in "
4834
+ "your slideshow. These are larger arrows that overlay your slideshow images "
4835
+ "and are separate from the control bar navigational arrows."
4836
+ msgstr ""
4837
+ "A navigációs nyilak lehetővé teszik, hogy a látogató szabadon mozogjon a "
4838
+ "képek között. A nagyobb nyilakat választva elkülönítheti a navigációs "
4839
+ "nyilaktól. "
4840
+
4841
+ #: modules/slideshow/slideshow.php:455
4842
+ msgid "Control Bar"
4843
+ msgstr "Kontroll felület"
4844
+
4845
+ #: modules/slideshow/slideshow.php:459
4846
+ msgid "Nav Type"
4847
+ msgstr "Navigáció típusa"
4848
+
4849
+ #: modules/slideshow/slideshow.php:462
4850
+ msgctxt "Nav type."
4851
+ msgid "None"
4852
+ msgstr "Nincs"
4853
+
4854
+ #: modules/slideshow/slideshow.php:463
4855
+ msgid "Buttons"
4856
+ msgstr "Gombok"
4857
+
4858
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
4859
+ msgid "Thumbs"
4860
+ msgstr "Bélyegképek"
4861
+
4862
+ #: modules/slideshow/slideshow.php:479
4863
+ msgid "Nav Position"
4864
+ msgstr "Navigáció pozíciója"
4865
+
4866
+ #: modules/slideshow/slideshow.php:489
4867
+ msgid "Control Bar Buttons"
4868
+ msgstr "Kontrollfelület gombok"
4869
+
4870
+ #: modules/slideshow/slideshow.php:502
4871
+ msgid "Play Button"
4872
+ msgstr "Lejátszás gomb"
4873
+
4874
+ #: modules/slideshow/slideshow.php:511
4875
+ msgid "Fullscreen Button"
4876
+ msgstr "Teljesméret gomb"
4877
+
4878
+ #: modules/slideshow/slideshow.php:520
4879
+ msgid "Photo Count"
4880
+ msgstr "Fotó számláló"
4881
+
4882
+ #: modules/slideshow/slideshow.php:529
4883
+ msgid "Thumbs Button"
4884
+ msgstr "Bélyegkép gomb"
4885
+
4886
+ #: modules/slideshow/slideshow.php:538
4887
+ msgid "Caption Button"
4888
+ msgstr "Felirat gomb"
4889
+
4890
+ #: modules/slideshow/slideshow.php:547
4891
+ msgid "Social Button"
4892
+ msgstr "Megosztás gomb"
4893
+
4894
+ #: modules/slideshow/slideshow.php:557
4895
+ msgid "Control Bar Overlay"
4896
+ msgstr "Borító vezérlőpult"
4897
+
4898
+ #: modules/slideshow/slideshow.php:561
4899
+ msgid "Overlay Enabled"
4900
+ msgstr "Borító bekapcsolása"
4901
+
4902
+ #: modules/slideshow/slideshow.php:572
4903
+ msgid ""
4904
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
4905
+ "your slideshow images or site below the slideshow completely."
4906
+ msgstr ""
4907
+ "A vezérlőeszköztárban a borító meghatározza, hogy ha a vezérlő gombokat ön "
4908
+ "úgy választja ki, akkor a diavetítés képeit eltakarja vagy alatta az oldalon "
4909
+ "megmutajta."
4910
+
4911
+ #: modules/slideshow/slideshow.php:576
4912
+ msgid "Overlay Hide"
4913
+ msgstr "Borító elrejtése"
4914
+
4915
+ #: modules/slideshow/slideshow.php:582
4916
+ msgid ""
4917
+ "Overlay hide will hide the control bar after however many seconds you "
4918
+ "specify below. They will reappear upon mouse over."
4919
+ msgstr ""
4920
+ "A borítás elrejtése el fogja rejteni a vezérlőpultot annyi másodperc után "
4921
+ "amennyit itt ön megad. Amikor az egeret fölé viszi, újra megjelenik. "
4922
+
4923
+ #: modules/slideshow/slideshow.php:586
4924
+ msgid "Overlay Hide Delay"
4925
+ msgstr "Borító elrejtés késleltetése"
4926
+
4927
+ #: modules/slideshow/slideshow.php:598
4928
+ msgid "Thumbs Size"
4929
+ msgstr "Bélyegkép mérete"
4930
+
4931
+ #: modules/slideshow/slideshow.php:607
4932
+ msgid "Social"
4933
+ msgstr "Közösségi hálózat"
4934
+
4935
+ #: modules/slideshow/slideshow.php:611
4936
+ msgid "Facebook Button"
4937
+ msgstr "Facebook gomb"
4938
+
4939
+ #: modules/slideshow/slideshow.php:623
4940
+ msgid "Twitter Button"
4941
+ msgstr "Twitter gomb"
4942
+
4943
+ #: modules/slideshow/slideshow.php:635
4944
+ msgid "Google Plus Button"
4945
+ msgstr "Google Plus gomb"
4946
+
4947
+ #: modules/slideshow/slideshow.php:647
4948
+ msgid "Pinterest Button"
4949
+ msgstr "Pinterest gomb"
4950
+
4951
+ #: modules/social-buttons/social-buttons.php:14
4952
+ msgid "Social Buttons"
4953
+ msgstr "Megosztás gombok"
4954
+
4955
+ #: modules/social-buttons/social-buttons.php:15
4956
+ msgid "Displays social buttons."
4957
+ msgstr "Megosztás gombok megjelenítése"
4958
+
4959
+ #: modules/social-buttons/social-buttons.php:71
4960
+ msgid "Target URL"
4961
+ msgstr "Cél URL"
4962
+
4963
+ #: modules/social-buttons/social-buttons.php:75
4964
+ msgid "Current Page"
4965
+ msgstr "Aktuális oldal"
4966
+
4967
+ #: modules/social-buttons/social-buttons.php:82
4968
+ msgid ""
4969
+ "The Target URL field correlates to the page you would like your social icons "
4970
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
4971
+ "whatever you put in this field."
4972
+ msgstr ""
4973
+ "A cél URL mező a közösségi oldal ikonjait tartalamazó oldal megfelelője. "
4974
+ "Például ha a Facebook látható rajta, akkor a felhasználó Lájkolni fogja amit "
4975
+ "ebbe a mezőbe illesztünk. "
4976
+
4977
+ #: modules/social-buttons/social-buttons.php:89
4978
+ msgid "Custom URL"
4979
+ msgstr "Egyéni URL"
4980
+
4981
+ #: modules/social-buttons/social-buttons.php:107
4982
+ msgid "Show Facebook"
4983
+ msgstr "Facebook like mutatása"
4984
+
4985
+ #: modules/social-buttons/social-buttons.php:116
4986
+ msgid "Show Twitter"
4987
+ msgstr "Twitter mutatása"
4988
+
4989
+ #: modules/social-buttons/social-buttons.php:125
4990
+ msgid "Show Google+"
4991
+ msgstr "Google+ mutatása"
4992
+
4993
+ #: modules/subscribe-form/includes/frontend.php:5
4994
+ msgctxt "First and last name."
4995
+ msgid "Name"
4996
+ msgstr "Név"
4997
+
4998
+ #: modules/subscribe-form/includes/frontend.php:12
4999
+ msgid "Please enter a valid email address."
5000
+ msgstr "Kérjük adjon meg egy valódi e-mail címet"
5001
+
5002
+ #: modules/subscribe-form/includes/frontend.php:41
5003
+ msgid "Something went wrong. Please check your entries and try again."
5004
+ msgstr ""
5005
+ "Valami nem jó. Kérjük, ellenőrizze a bejegyzést, majd próbálkozzon újra."
5006
+
5007
+ #: modules/subscribe-form/subscribe-form.php:18
5008
+ msgid "Subscribe Form"
5009
+ msgstr "Feliratkozó űrlap"
5010
+
5011
+ #: modules/subscribe-form/subscribe-form.php:19
5012
+ msgid "Adds a simple subscribe form to your layout."
5013
+ msgstr "Adjon hozzá egy saját elrendezésű egyszerű feliratkozási űrlapot. "
5014
+
5015
+ #: modules/subscribe-form/subscribe-form.php:118
5016
+ msgid "Success"
5017
+ msgstr "Sikeres"
5018
+
5019
+ #: modules/subscribe-form/subscribe-form.php:122
5020
+ msgid "Success Action"
5021
+ msgstr "Sikeres akció"
5022
+
5023
+ #: modules/subscribe-form/subscribe-form.php:124
5024
+ msgid "Show Message"
5025
+ msgstr "Üzenet megjelenítése"
5026
+
5027
+ #: modules/subscribe-form/subscribe-form.php:125
5028
+ msgid "Redirect"
5029
+ msgstr "Átirányítás"
5030
+
5031
+ #: modules/subscribe-form/subscribe-form.php:144
5032
+ msgid ""
5033
+ "Thanks for subscribing! Please check your email for further instructions."
5034
+ msgstr ""
5035
+ "Köszönöm a feliratkozást! Kérjük, ellenőrizze az e-mail címét, a további "
5036
+ "utasításokat továbbítottuk."
5037
+
5038
+ #: modules/subscribe-form/subscribe-form.php:151
5039
+ msgid "Success URL"
5040
+ msgstr "Sikeres URL"
5041
+
5042
+ #: modules/subscribe-form/subscribe-form.php:169
5043
+ msgid "Subscribe!"
5044
+ msgstr "Feliratkozás"
5045
+
5046
+ #: modules/tabs/tabs.php:14
5047
+ msgid "Tabs"
5048
+ msgstr "Fülek"
5049
+
5050
+ #: modules/tabs/tabs.php:15
5051
+ msgid "Display a collection of tabbed content."
5052
+ msgstr "A fülek tartalmainak megjelenítése."
5053
+
5054
+ #: modules/testimonials/testimonials.php:14
5055
+ #: modules/testimonials/testimonials.php:60
5056
+ #: modules/testimonials/testimonials.php:174
5057
+ msgid "Testimonials"
5058
+ msgstr "Vélemények"
5059
+
5060
+ #: modules/testimonials/testimonials.php:15
5061
+ msgid "An animated tesimonials area."
5062
+ msgstr "Animált vevői vélemény területe."
5063
+
5064
+ #: modules/testimonials/testimonials.php:41
5065
+ msgid "Compact"
5066
+ msgstr "Kompakt"
5067
+
5068
+ #: modules/testimonials/testimonials.php:51
5069
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
5070
+ msgstr " 1 oszlop széles sorok, kompakt multi-oszlop sorok."
5071
+
5072
+ #: modules/testimonials/testimonials.php:78
5073
+ msgid "Slider Settings"
5074
+ msgstr "Diavetítés beállítások"
5075
+
5076
+ #: modules/testimonials/testimonials.php:135
5077
+ msgid "Arrow Color"
5078
+ msgstr "Nyíl színek"
5079
+
5080
+ #: modules/testimonials/testimonials.php:165
5081
+ msgid "Dot Color"
5082
+ msgstr "Képpont színe"
5083
+
5084
+ #: modules/testimonials/testimonials.php:181
5085
+ msgid "Testimonial"
5086
+ msgstr "Vélemény"
5087
+
5088
+ #: modules/testimonials/testimonials.php:197
5089
+ msgid "Add Testimonial"
5090
+ msgstr "Vélemény hozzáadása"
5091
+
5092
+ #: modules/video/video.php:20
5093
+ msgid "Render a WordPress or embedable video."
5094
+ msgstr "Egy Wordpress vagy beágyazható videó beillesztése."
5095
+
5096
+ #: modules/video/video.php:83
5097
+ msgid "Video Type"
5098
+ msgstr "Videó típusa"
5099
+
5100
+ #: modules/video/video.php:87
5101
+ msgid "Embed"
5102
+ msgstr "Beágyaz"
5103
+
5104
+ #: modules/video/video.php:104
5105
+ msgctxt "Video preview/fallback image."
5106
+ msgid "Poster"
5107
+ msgstr "Videó előnézeti kép"
5108
+
5109
+ #: modules/widget/includes/frontend.php:35
5110
+ #: modules/widget/includes/settings-general.php:46
5111
+ #, php-format
5112
+ msgctxt "%s stands for widget slug."
5113
+ msgid "%s no longer exists."
5114
+ msgstr "%s már nem létezik/nem elérhető."
5115
+
5116
+ #: modules/widget/widget.php:14
5117
+ msgid "Widget"
5118
+ msgstr "Widget/Kisalkalmazás"
5119
+
5120
+ #: modules/widget/widget.php:15
5121
+ msgid "Display a WordPress widget."
5122
+ msgstr "WordPress widget/kisalkalmazás mutatása. "
5123
+
5124
+ #: modules/woocommerce/woocommerce.php:16
5125
+ msgid "WooCommerce"
5126
+ msgstr "WooCommerce "
5127
+
5128
+ #: modules/woocommerce/woocommerce.php:17
5129
+ msgid "Display products or categories from your WooCommerce store."
5130
+ msgstr "Egy termék vagy kategória az ön WooCommerce áruházából. "
5131
+
5132
+ #: modules/woocommerce/woocommerce.php:61
5133
+ msgid "Single Product"
5134
+ msgstr "Termék oldal"
5135
+
5136
+ #: modules/woocommerce/woocommerce.php:62
5137
+ #: modules/woocommerce/woocommerce.php:113
5138
+ msgid "Multiple Products"
5139
+ msgstr "Többtermékes oldal"
5140
+
5141
+ #: modules/woocommerce/woocommerce.php:63
5142
+ msgid "\"Add to Cart\" Button"
5143
+ msgstr "\"Kosárba\" gomb"
5144
+
5145
+ #: modules/woocommerce/woocommerce.php:64
5146
+ msgid "Categories"
5147
+ msgstr "Kategóriák"
5148
+
5149
+ #: modules/woocommerce/woocommerce.php:65
5150
+ msgid "Cart"
5151
+ msgstr "Kosár"
5152
+
5153
+ #: modules/woocommerce/woocommerce.php:66
5154
+ msgid "Checkout"
5155
+ msgstr "Pénztár"
5156
+
5157
+ #: modules/woocommerce/woocommerce.php:67
5158
+ msgid "Order Tracking"
5159
+ msgstr "Rendeléskövetés"
5160
+
5161
+ #: modules/woocommerce/woocommerce.php:68
5162
+ msgid "My Account"
5163
+ msgstr "Fiókom"
5164
+
5165
+ #: modules/woocommerce/woocommerce.php:87
5166
+ msgid "Product ID"
5167
+ msgstr "Termék azonosító"
5168
+
5169
+ #: modules/woocommerce/woocommerce.php:90
5170
+ msgid ""
5171
+ "As you add products in the WooCommerce Products area, each will be assigned "
5172
+ "a unique ID. You can find this unique product ID by visiting the Products "
5173
+ "area and rolling over the product. The unique ID will be the first attribute."
5174
+ msgstr ""
5175
+ "Ahogy termék ad hozzá a WooCommerce termékek részen, minden termék kap egy "
5176
+ "egyedi azonosítót. Ez az egyedülálló termék azonosítás látszik a termékek "
5177
+ "részben. Egyedi azonosítója lesz az első attribútum."
5178
+
5179
+ #: modules/woocommerce/woocommerce.php:94
5180
+ msgid "Parent Category ID"
5181
+ msgstr "Szülő kategória ID"
5182
+
5183
+ #: modules/woocommerce/woocommerce.php:97
5184
+ msgid ""
5185
+ "As you add product categories in the WooCommerce Products area, each will be "
5186
+ "assigned a unique ID. This ID can be found by hovering on the category in "
5187
+ "the categories area under Products and looking in the URL that is displayed "
5188
+ "in your browser. The ID will be the only number value in the URL."
5189
+ msgstr ""
5190
+ "Ahogy hozzáad a termékkategóriákhoz a WooCommerce termékekben, mindegyik kap "
5191
+ "egy egyedi azonosítót. Ez az azonosító megtalálható a kategóriákban a "
5192
+ "kategória alatti területen, a termékek alatt, ahol az URL megjelenik a "
5193
+ "böngészőben. Az ID lesz az egyetlen számérték az URL-ben."
5194
+
5195
+ #: modules/woocommerce/woocommerce.php:101
5196
+ #: modules/woocommerce/woocommerce.php:172
5197
+ msgid "Columns"
5198
+ msgstr "Oszlopok"
5199
+
5200
+ #: modules/woocommerce/woocommerce.php:117
5201
+ msgid "Products Source"
5202
+ msgstr "Termék forrás"
5203
+
5204
+ #: modules/woocommerce/woocommerce.php:120
5205
+ msgid "Products IDs"
5206
+ msgstr "Termék azonosító"
5207
+
5208
+ #: modules/woocommerce/woocommerce.php:121
5209
+ msgid "Product Category"
5210
+ msgstr "Termék kategória"
5211
+
5212
+ #: modules/woocommerce/woocommerce.php:122
5213
+ msgid "Recent Products"
5214
+ msgstr "Legutóbbi termékek"
5215
+
5216
+ #: modules/woocommerce/woocommerce.php:123
5217
+ msgid "Featured Products"
5218
+ msgstr "Kiemelt termékek"
5219
+
5220
+ #: modules/woocommerce/woocommerce.php:124
5221
+ msgid "Sale Products"
5222
+ msgstr "Akciós termékek"
5223
+
5224
+ #: modules/woocommerce/woocommerce.php:125
5225
+ msgid "Best Selling Products"
5226
+ msgstr "Legjobban fogyó termékek"
5227
+
5228
+ #: modules/woocommerce/woocommerce.php:126
5229
+ msgid "Top Rated Products"
5230
+ msgstr "Legjobban értékelt termékek"
5231
+
5232
+ #: modules/woocommerce/woocommerce.php:154
5233
+ msgid "Product IDs"
5234
+ msgstr "Termék azonosítók"
5235
+
5236
+ #: modules/woocommerce/woocommerce.php:156
5237
+ msgid ""
5238
+ "As you add products in the WooCommerce Products area, each will be assigned "
5239
+ "a unique ID. You can find this unique product ID by visiting the Products "
5240
+ "area and rolling over the product. The unique ID will be the first attribute "
5241
+ "and you can add several here separated by a comma."
5242
+ msgstr ""
5243
+ "Amikor hozzáad egy terméket a WooCommerce-ben, minden termék kap egy egyedi "
5244
+ "azonosítót. Megtalálja ezt a termékazonosítót"
5245
+
5246
+ #: modules/woocommerce/woocommerce.php:160
5247
+ msgid "Category Slug"
5248
+ msgstr "Kategória ID / Név / slug"
5249
+
5250
+ #: modules/woocommerce/woocommerce.php:162
5251
+ msgid ""
5252
+ "As you add product categories in the WooCommerce Products area, each will be "
5253
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
5254
+ "found in the Categories area under WooCommerce Products. Several can be "
5255
+ "added here separated by a comma."
5256
+ msgstr ""
5257
+ "Ahogy hozzáad egy termék kategóriát a Woocommerce Termékek részben, "
5258
+ "mindegyik kap egy egyedi azonosítót vagy ön szerkeszthet egy saját "
5259
+ "azonosítót. Ezek az azonosítók megtalálhatók a Kategória részben, a "
5260
+ "WooCommerce termékek között. Akár több is adható vesszővel elválaztva. "
5261
+
5262
+ #: modules/woocommerce/woocommerce.php:166
5263
+ msgid "Number of Products"
5264
+ msgstr "Termékek száma"
5265
+
5266
+ #: modules/woocommerce/woocommerce.php:183
5267
+ msgid "Sort By"
5268
+ msgstr "Rendezés"
5269
+
5270
+ #: modules/woocommerce/woocommerce.php:186
5271
+ msgctxt "Sort by."
5272
+ msgid "Default"
5273
+ msgstr "Alapértelmezett"
5274
+
5275
+ #: modules/woocommerce/woocommerce.php:187
5276
+ msgid "Popularity"
5277
+ msgstr "Népszerűség"
5278
+
5279
+ #: modules/woocommerce/woocommerce.php:188
5280
+ msgid "Rating"
5281
+ msgstr "Értékelés"
5282
+
5283
+ #: modules/woocommerce/woocommerce.php:195
5284
+ msgid "Sort Direction"
5285
+ msgstr "Rendezés iránya"
languages/th_TH.mo ADDED
Binary file
languages/th_TH.po ADDED
@@ -0,0 +1,4283 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-11-10 16:30+0700\n"
6
+ "PO-Revision-Date: 2015-12-24 19:05+0700\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=1; plural=0;\n"
12
+ "X-Generator: Poedit 1.8.6\n"
13
+ "X-Poedit-SourceCharset: utf-8\n"
14
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "X-Textdomain-Support: yes\n"
17
+ "Last-Translator: \n"
18
+ "Language: th_TH\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/class-fl-builder-admin-settings.php:116 includes/global-settings.php:4
22
+ #, php-format
23
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
24
+ msgid "%s Settings"
25
+ msgstr "การตั้งค่า %s"
26
+
27
+ #: classes/class-fl-builder-admin-settings.php:133
28
+ msgid "Settings updated!"
29
+ msgstr "ปรับปรุงการตั้งค่าใหม่เสร็จสิ้น!"
30
+
31
+ #: classes/class-fl-builder-admin-settings.php:147
32
+ msgid "License"
33
+ msgstr "สิทธิ์การใช้งาน"
34
+
35
+ #: classes/class-fl-builder-admin-settings.php:151 includes/admin-settings-upgrade.php:3
36
+ msgid "Upgrade"
37
+ msgstr "อัพเกรด"
38
+
39
+ #: classes/class-fl-builder-admin-settings.php:155 includes/global-settings.php:90
40
+ msgid "Modules"
41
+ msgstr "โมดูล"
42
+
43
+ #: classes/class-fl-builder-admin-settings.php:159 classes/class-fl-builder.php:668
44
+ msgid "Templates"
45
+ msgstr "เทมเพลท"
46
+
47
+ #: classes/class-fl-builder-admin-settings.php:163 includes/admin-settings-post-types.php:3
48
+ msgid "Post Types"
49
+ msgstr "ประเภทของการโพสต์"
50
+
51
+ #: classes/class-fl-builder-admin-settings.php:167 modules/icon-group/icon-group.php:27 modules/post-carousel/post-carousel.php:275 modules/post-grid/post-grid.php:257
52
+ msgid "Icons"
53
+ msgstr "ไอคอน"
54
+
55
+ #: classes/class-fl-builder-admin-settings.php:171
56
+ msgid "Editing"
57
+ msgstr "การแก้ไข"
58
+
59
+ #: classes/class-fl-builder-admin-settings.php:175 includes/admin-settings-branding.php:3
60
+ msgid "Branding"
61
+ msgstr "ตราสินค้า"
62
+
63
+ #: classes/class-fl-builder-admin-settings.php:179
64
+ msgid "Help Button"
65
+ msgstr "ปุ่มช่วยเหลือ"
66
+
67
+ #: classes/class-fl-builder-admin-settings.php:183 includes/admin-settings-cache.php:3
68
+ msgid "Cache"
69
+ msgstr "แคช"
70
+
71
+ #: classes/class-fl-builder-admin-settings.php:187 includes/admin-settings-uninstall.php:3 includes/admin-settings-uninstall.php:15
72
+ msgid "Uninstall"
73
+ msgstr "ถอนการติดตั้ง"
74
+
75
+ #: classes/class-fl-builder-admin-settings.php:439
76
+ msgid "Error! You must have at least one icon set enabled."
77
+ msgstr "ข้อผิดพลาด! คุณต้องมีไอคอนอย่างน้อยหนึ่งชุดที่เปิดใช้งาน"
78
+
79
+ #: classes/class-fl-builder-admin-settings.php:481
80
+ msgid "Error! Could not unzip file."
81
+ msgstr "ข้อผิดพลาด! ไม่สามารถคลายแฟ้มไฟล์นี้ได้"
82
+
83
+ #: classes/class-fl-builder-admin-settings.php:515
84
+ msgid "Error! Please upload an icon set from either Icomoon or Fontello."
85
+ msgstr "ข้อผิดพลาด! กรุณาอัปโหลดชุดไอคอนจาก Icomoon หรือ Fontello"
86
+
87
+ #: classes/class-fl-builder-admin-settings.php:620
88
+ msgid "Error! Please enter an iframe for the video embed code."
89
+ msgstr "ข้อผิดพลาด! กรุณากรอก iframe สำหรับรหัสฝังวิดีโอ"
90
+
91
+ #: classes/class-fl-builder-admin-settings.php:638
92
+ msgid "Error! You must have at least one feature of the help button enabled."
93
+ msgstr "ข้อผิดพลาด! คุณต้องมีอย่างน้อยหนึ่งคุณลักษณะปุ่มความช่วยเหลือเปิดใช้งาน"
94
+
95
+ #: classes/class-fl-builder-admin.php:45
96
+ #, php-format
97
+ msgid "This version of the <strong>Page Builder</strong> plugin is not compatible with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version of this plugin."
98
+ msgstr "รุ่นของปลั๊กอิน <strong>Page Builder</strong> ไม่สามารถใช้ได้กับ WordPress Multisite ได้ <a%s> กรุณาอัพเกรดเป็นเวอร์ชั่น Multisite ของปลั๊กอินนี้"
99
+
100
+ #: classes/class-fl-builder-admin.php:55
101
+ msgid "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update WordPress before activating the plugin."
102
+ msgstr "ปลั๊กอิน <strong>Page Builder</strong> ต้องการ WordPress รุ่น 3.5 หรือสูงกว่า โปรดอัปเดต WordPress ก่อนที่จะเปิดใช้งานปลั๊กอิน"
103
+
104
+ #: classes/class-fl-builder-admin.php:112
105
+ #, php-format
106
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
107
+ msgstr "Page Builder ถูกเปิดใช้งาน! <a%s> คลิกที่นี่ </a> เพื่อเปิดใช้การปรับปรุงข้อมูลระยะไกล"
108
+
109
+ #: classes/class-fl-builder-admin.php:238
110
+ msgctxt "Plugin action link label."
111
+ msgid "Upgrade"
112
+ msgstr "อัพเกรด"
113
+
114
+ #: classes/class-fl-builder-admin.php:253 classes/class-fl-builder-model.php:4077
115
+ msgid "Page Builder"
116
+ msgstr "Page Builder"
117
+
118
+ #: classes/class-fl-builder-model.php:1756
119
+ #, php-format
120
+ msgctxt "%s stands for the module filename"
121
+ msgid "A module with the filename %s.php already exists! Please namespace your module filenames to ensure compatibility with Beaver Builder."
122
+ msgstr "โมดูลที่มีชื่อไฟล์ %s.php มีอยู่แล้ว! กรุณา namespace ชื่อไฟล์โมดูลของคุณเพื่อให้เข้ากันกับ Beaver Builder"
123
+
124
+ #: classes/class-fl-builder-model.php:1807 classes/class-fl-builder-model.php:1868 modules/heading/heading.php:16 modules/photo/photo.php:27 modules/rich-text/rich-text.php:16 modules/separator/separator.php:16 modules/video/video.php:21
125
+ msgid "Basic Modules"
126
+ msgstr "โมดูลพื้นฐาน"
127
+
128
+ #: classes/class-fl-builder-model.php:1808 classes/class-fl-builder-model.php:1869 modules/accordion/accordion.php:16 modules/button/button.php:16 modules/callout/callout.php:16 modules/contact-form/contact-form.php:16 modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
129
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16 modules/icon-group/icon-group.php:16 modules/icon/icon.php:16 modules/map/map.php:16 modules/menu/menu.php:16 modules/post-carousel/post-carousel.php:16 modules/post-grid/post-grid.php:16 modules/post-slider/post-slider.php:16
130
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16 modules/slideshow/slideshow.php:16 modules/social-buttons/social-buttons.php:16 modules/subscribe-form/subscribe-form.php:20 modules/tabs/tabs.php:16 modules/testimonials/testimonials.php:16 modules/woocommerce/woocommerce.php:18
131
+ msgid "Advanced Modules"
132
+ msgstr "โมดูลขั้นสูง"
133
+
134
+ #: classes/class-fl-builder-model.php:1809 classes/class-fl-builder-model.php:1870
135
+ msgid "Other Modules"
136
+ msgstr "โมดูลอื่น ๆ"
137
+
138
+ #: classes/class-fl-builder-model.php:1810 classes/class-fl-builder-model.php:1871 includes/admin-settings-modules.php:32 includes/ui-panel.php:56 modules/widget/widget.php:16
139
+ msgid "WordPress Widgets"
140
+ msgstr "WordPress Widgets"
141
+
142
+ #: classes/class-fl-builder-model.php:2535
143
+ #, php-format
144
+ msgctxt "%s stands for post/page title."
145
+ msgid "Copy of %s"
146
+ msgstr "คัดลอกของ %s"
147
+
148
+ #: classes/class-fl-builder-model.php:3014
149
+ msgctxt "Default user template category."
150
+ msgid "Uncategorized"
151
+ msgstr "ไม่มีหมวดหมู่"
152
+
153
+ #: classes/class-fl-builder-model.php:4034
154
+ msgid "Home Pages"
155
+ msgstr "หน้าแรก"
156
+
157
+ #: classes/class-fl-builder-model.php:4035
158
+ msgid "Content Pages"
159
+ msgstr "หน้าเนื้อหา"
160
+
161
+ #: classes/class-fl-builder-photo.php:95 classes/class-fl-builder-photo.php:100
162
+ msgctxt "Image size."
163
+ msgid "Full Size"
164
+ msgstr "ขนาดเต็ม"
165
+
166
+ #: classes/class-fl-builder-photo.php:101
167
+ msgctxt "Image size."
168
+ msgid "Large"
169
+ msgstr "ขนาดใหญ่"
170
+
171
+ #: classes/class-fl-builder-photo.php:102
172
+ msgctxt "Image size."
173
+ msgid "Medium"
174
+ msgstr "ขนาดปานกลาง"
175
+
176
+ #: classes/class-fl-builder-photo.php:103
177
+ msgctxt "Image size."
178
+ msgid "Thumbnail"
179
+ msgstr "รูปขนาดย่อ"
180
+
181
+ #: classes/class-fl-builder-service-activecampaign.php:69
182
+ msgid "Error: You must provide an API URL."
183
+ msgstr "ข้อผิดพลาด: คุณต้องให้ API URL"
184
+
185
+ #: classes/class-fl-builder-service-activecampaign.php:73 classes/class-fl-builder-service-campaign-monitor.php:55 classes/class-fl-builder-service-constant-contact.php:48 classes/class-fl-builder-service-getresponse.php:67 classes/class-fl-builder-service-hatchbuck.php:48
186
+ #: classes/class-fl-builder-service-infusionsoft.php:79 classes/class-fl-builder-service-madmimi.php:73 classes/class-fl-builder-service-mailchimp.php:67
187
+ msgid "Error: You must provide an API key."
188
+ msgstr "ข้อผิดพลาด: คุณต้องใส่ API Key"
189
+
190
+ #: classes/class-fl-builder-service-activecampaign.php:81
191
+ msgid "Error: Please check your API URL and API key."
192
+ msgstr "ข้อผิดพลาด: โปรดตรวจสอบ API URL ของคุณและ API Key"
193
+
194
+ #: classes/class-fl-builder-service-activecampaign.php:108
195
+ msgid "API URL"
196
+ msgstr "API URL"
197
+
198
+ #: classes/class-fl-builder-service-activecampaign.php:109
199
+ msgid "Your API url can be found in your ActiveCampaign account under My Settings > API."
200
+ msgstr "API URL ของคุณสามารถพบได้ในบัญชี ActiveCampaign ของคุณภายใต้ My Settings > API"
201
+
202
+ #: classes/class-fl-builder-service-activecampaign.php:119 classes/class-fl-builder-service-campaign-monitor.php:88 classes/class-fl-builder-service-constant-contact.php:88 classes/class-fl-builder-service-getresponse.php:100 classes/class-fl-builder-service-hatchbuck.php:87
203
+ #: classes/class-fl-builder-service-infusionsoft.php:129 classes/class-fl-builder-service-madmimi.php:121 classes/class-fl-builder-service-mailchimp.php:100
204
+ msgid "API Key"
205
+ msgstr "API Key"
206
+
207
+ #: classes/class-fl-builder-service-activecampaign.php:120
208
+ msgid "Your API key can be found in your ActiveCampaign account under My Settings > API."
209
+ msgstr "API Key ของคุณสามารถพบได้ในบัญชี ActiveCampaign ของคุณ ภายใต้ My Settings > API"
210
+
211
+ #: classes/class-fl-builder-service-activecampaign.php:169 classes/class-fl-builder-service-aweber.php:182 classes/class-fl-builder-service-campaign-monitor.php:148 classes/class-fl-builder-service-campaign-monitor.php:199 classes/class-fl-builder-service-constant-contact.php:156
212
+ #: classes/class-fl-builder-service-getresponse.php:154 classes/class-fl-builder-service-icontact.php:207 classes/class-fl-builder-service-infusionsoft.php:204 classes/class-fl-builder-service-madmimi.php:178 classes/class-fl-builder-service-mailchimp.php:177 classes/class-fl-builder-service-mailpoet.php:92
213
+ #: classes/class-fl-builder-service-sendinblue.php:161 classes/class-fl-builder-services.php:288 includes/service-settings.php:21 modules/woocommerce/woocommerce.php:60
214
+ msgid "Choose..."
215
+ msgstr "เลือก..."
216
+
217
+ #: classes/class-fl-builder-service-activecampaign.php:181 classes/class-fl-builder-service-aweber.php:192 classes/class-fl-builder-service-campaign-monitor.php:209 classes/class-fl-builder-service-constant-contact.php:166 classes/class-fl-builder-service-getresponse.php:164
218
+ #: classes/class-fl-builder-service-icontact.php:217 classes/class-fl-builder-service-infusionsoft.php:214 classes/class-fl-builder-service-madmimi.php:188 classes/class-fl-builder-service-mailchimp.php:187 classes/class-fl-builder-service-mailpoet.php:102 classes/class-fl-builder-service-sendinblue.php:171
219
+ msgctxt "An email list from a third party provider."
220
+ msgid "List"
221
+ msgstr "รายการ"
222
+
223
+ #: classes/class-fl-builder-service-activecampaign.php:208
224
+ msgid "There was an error subscribing to ActiveCampaign. The account is no longer connected."
225
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ ActiveCampaign บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
226
+
227
+ #: classes/class-fl-builder-service-activecampaign.php:239
228
+ msgid "Error: Invalid API data."
229
+ msgstr "ข้อผิดพลาด: ข้อมูล API ไม่ถูกต้อง"
230
+
231
+ #: classes/class-fl-builder-service-aweber.php:72
232
+ msgid "Error: You must provide an Authorization Code."
233
+ msgstr "ข้อผิดพลาด: คุณต้องใส่รหัสการอนุญาต"
234
+
235
+ #: classes/class-fl-builder-service-aweber.php:76
236
+ msgid "Error: Please enter a valid Authorization Code."
237
+ msgstr "ข้อผิดพลาด: กรุณากรอกรหัสการอนุญาตที่ถูกต้อง"
238
+
239
+ #: classes/class-fl-builder-service-aweber.php:127
240
+ msgid "Authorization Code"
241
+ msgstr "รหัสการอนุมัติ"
242
+
243
+ #: classes/class-fl-builder-service-aweber.php:128
244
+ #, php-format
245
+ msgid "Please register this website with AWeber to get your Authorization Code. <a%s>Register Now</a>"
246
+ msgstr "กรุณาลงทะเบียนกับเว็บไซต์นี้ด้วย AWeber ที่จะรับรหัสการอนุมัติของคุณ <a%s>สมัครตอนนี้</a>"
247
+
248
+ #: classes/class-fl-builder-service-aweber.php:219
249
+ msgid "There was an error subscribing to AWeber. The account is no longer connected."
250
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ AWeber บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
251
+
252
+ #: classes/class-fl-builder-service-aweber.php:242
253
+ msgid "There was an error connecting to AWeber. Please try again."
254
+ msgstr "มีข้อผิดพลาดระหว่างทำการเชื่อมต่อกับ AWeber กรุณาลองอีกครั้ง."
255
+
256
+ #: classes/class-fl-builder-service-aweber.php:247
257
+ #, php-format
258
+ msgid "There was an error subscribing to AWeber. %s"
259
+ msgstr "มีข้อผิดพลาดระหว่างทำลงทะเบียนกับ AWeber. %s"
260
+
261
+ #: classes/class-fl-builder-service-campaign-monitor.php:67 classes/class-fl-builder-service-campaign-monitor.php:129 classes/class-fl-builder-service-getresponse.php:76 classes/class-fl-builder-service-getresponse.php:132 classes/class-fl-builder-service-hatchbuck.php:63
262
+ msgid "Error: Please check your API key."
263
+ msgstr "ข้อผิดพลาด: โปรดตรวจสอบ API Key ของคุณ"
264
+
265
+ #: classes/class-fl-builder-service-campaign-monitor.php:89
266
+ msgid "Your API key can be found in your Campaign Monitor account under Account Settings > API Key."
267
+ msgstr "API key ของคุณสามารถพบได้ในบัญชี Campaign Monitor ของคุณ ภายใต้ Account Settings > API Key"
268
+
269
+ #: classes/class-fl-builder-service-campaign-monitor.php:158
270
+ msgctxt "A client account in Campaign Monitor."
271
+ msgid "Client"
272
+ msgstr "ลูกค้า"
273
+
274
+ #: classes/class-fl-builder-service-campaign-monitor.php:236
275
+ msgid "There was an error subscribing to Campaign Monitor. The account is no longer connected."
276
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Campaign Monitor บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
277
+
278
+ #: classes/class-fl-builder-service-campaign-monitor.php:253
279
+ msgid "There was an error subscribing to Campaign Monitor."
280
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Campaign Monitor"
281
+
282
+ #: classes/class-fl-builder-service-constant-contact.php:52
283
+ msgid "Error: You must provide an access token."
284
+ msgstr "ข้อผิดพลาด: คุณต้องโทเค็นการเข้าถึง"
285
+
286
+ #: classes/class-fl-builder-service-constant-contact.php:61 classes/class-fl-builder-service-constant-contact.php:134
287
+ #, php-format
288
+ msgid "Error: Could not connect to Constant Contact. %s"
289
+ msgstr "ข้อผิดพลาด: ไม่สามารถเชื่อมต่อกับ Constant Contact %s"
290
+
291
+ #: classes/class-fl-builder-service-constant-contact.php:89
292
+ msgid "Your Constant Contact API key."
293
+ msgstr "Constant Contact API Key ของคุณ"
294
+
295
+ #: classes/class-fl-builder-service-constant-contact.php:99
296
+ msgid "Access Token"
297
+ msgstr "โทเค็นการเข้าถึง"
298
+
299
+ #: classes/class-fl-builder-service-constant-contact.php:100
300
+ msgid "Your Constant Contact access token."
301
+ msgstr "โทเค็นการเข้าถึง Constant Contact ของคุณ"
302
+
303
+ #: classes/class-fl-builder-service-constant-contact.php:101
304
+ #, php-format
305
+ msgid "You must register a <a%s>Developer Account</a> with Constant Contact to obtain an API key and access token. Please see <a%s>Getting an API key</a> for complete instructions."
306
+ msgstr "คุณต้องลงทะเบียนเป็น <a%s>บัญชีนักพัฒนา</a> กับ Constant Contact เพื่อรับ API Key และโทเค็นการเข้าถึง โปรดดู <a%s>ขอรับ API Key</a> สำหรับคำแนะนำที่สมบูรณ์"
307
+
308
+ #: classes/class-fl-builder-service-constant-contact.php:193
309
+ msgid "There was an error subscribing to Constant Contact. The account is no longer connected."
310
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Constant Contact บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
311
+
312
+ #: classes/class-fl-builder-service-constant-contact.php:245 classes/class-fl-builder-service-constant-contact.php:279
313
+ #, php-format
314
+ msgid "There was an error subscribing to Constant Contact. %s"
315
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Constant Contact %s"
316
+
317
+ #: classes/class-fl-builder-service-email-address.php:39 classes/class-fl-builder-service-madmimi.php:69
318
+ msgid "Error: You must provide an email address."
319
+ msgstr "ข้อผิดพลาด: คุณต้องให้ที่อยู่อีเมล"
320
+
321
+ #: classes/class-fl-builder-service-email-address.php:63 classes/class-fl-builder-service-madmimi.php:110 modules/subscribe-form/includes/frontend.php:11
322
+ msgid "Email Address"
323
+ msgstr "ที่อยู่อีเมล"
324
+
325
+ #: classes/class-fl-builder-service-email-address.php:110
326
+ msgid "There was an error subscribing. The account is no longer connected."
327
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียน บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
328
+
329
+ #: classes/class-fl-builder-service-email-address.php:114
330
+ msgid "Subscribe Form Signup"
331
+ msgstr "แบบฟอร์มลงทะเบียนสมัครสมาชิก"
332
+
333
+ #: classes/class-fl-builder-service-email-address.php:115 modules/contact-form/includes/frontend.php:21
334
+ msgid "Email"
335
+ msgstr "อีเมล"
336
+
337
+ #: classes/class-fl-builder-service-email-address.php:118
338
+ msgid "Name"
339
+ msgstr "ชื่อ"
340
+
341
+ #: classes/class-fl-builder-service-email-address.php:124 modules/subscribe-form/subscribe-form.php:73
342
+ msgid "There was an error subscribing. Please try again."
343
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียน กรุณาลองอีกครั้ง."
344
+
345
+ #: classes/class-fl-builder-service-getresponse.php:101
346
+ msgid "Your API key can be found in your GetResponse account under My Account > GetResponse API."
347
+ msgstr "API Key ของคุณสามารถพบได้ในบัญชี GetResponse ของคุณ ภายใต้ My Account > GetResponse API"
348
+
349
+ #: classes/class-fl-builder-service-getresponse.php:191
350
+ msgid "There was an error subscribing to GetResponse. The account is no longer connected."
351
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ GetResponse บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
352
+
353
+ #: classes/class-fl-builder-service-getresponse.php:202
354
+ #, php-format
355
+ msgid "There was an error subscribing to GetResponse. %s"
356
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ GetResponse %s"
357
+
358
+ #: classes/class-fl-builder-service-hatchbuck.php:88
359
+ msgid "Your API key can be found in your Hatchbuck account under Account Settings > Web API."
360
+ msgstr "API Key ของคุณสามารถพบได้ในบัญชี Hatchbuck ของคุณ ภายใต้ Account Settings > Web API"
361
+
362
+ #: classes/class-fl-builder-service-hatchbuck.php:134
363
+ msgctxt "A tag to add to contacts in Hatchbuck when they subscribe."
364
+ msgid "Tag"
365
+ msgstr "แท็ก"
366
+
367
+ #: classes/class-fl-builder-service-hatchbuck.php:161
368
+ msgid "There was an error subscribing to Hatchbuck. The account is no longer connected."
369
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Hatchbuck บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
370
+
371
+ #: classes/class-fl-builder-service-hatchbuck.php:190
372
+ msgid "There was an error subscribing to Hatchbuck. The API key is invalid."
373
+ msgstr "มีข้อผิดพลาดการลงทะเบียนกับ Hatchbuck. API Key ไม่ถูกต้อง"
374
+
375
+ #: classes/class-fl-builder-service-hatchbuck.php:200 classes/class-fl-builder-service-hatchbuck.php:232
376
+ msgid "There was an error subscribing to Hatchbuck."
377
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Hatchbuck"
378
+
379
+ #: classes/class-fl-builder-service-icontact.php:75
380
+ msgid "Error: You must provide a username."
381
+ msgstr "ข้อผิดพลาด: คุณต้องให้ชื่อผู้ใช้"
382
+
383
+ #: classes/class-fl-builder-service-icontact.php:79
384
+ msgid "Error: You must provide a app ID."
385
+ msgstr "ข้อผิดพลาด: คุณต้องตรวจสอบ App ID"
386
+
387
+ #: classes/class-fl-builder-service-icontact.php:83
388
+ msgid "Error: You must provide a app password."
389
+ msgstr "ข้อผิดพลาด: คุณต้องใส่รหัสผ่าน App"
390
+
391
+ #: classes/class-fl-builder-service-icontact.php:104 classes/class-fl-builder-service-icontact.php:188
392
+ #, php-format
393
+ msgid "Error: Could not connect to iContact. %s"
394
+ msgstr "ข้อผิดพลาด: ไม่สามารถเชื่อมต่อ iContact %s"
395
+
396
+ #: classes/class-fl-builder-service-icontact.php:125
397
+ msgid "Username"
398
+ msgstr "ชื่อผู้ใช้"
399
+
400
+ #: classes/class-fl-builder-service-icontact.php:126
401
+ msgid "Your iContact username."
402
+ msgstr "ชื่อผู้ใช้ iContact ของคุณ"
403
+
404
+ #: classes/class-fl-builder-service-icontact.php:136 classes/class-fl-builder-service-infusionsoft.php:118
405
+ msgid "App ID"
406
+ msgstr "App ID"
407
+
408
+ #: classes/class-fl-builder-service-icontact.php:137
409
+ msgid "Your iContact app ID."
410
+ msgstr "iContact app ID ของคุณ"
411
+
412
+ #: classes/class-fl-builder-service-icontact.php:147
413
+ msgid "App Password"
414
+ msgstr "รหัสผ่าน App"
415
+
416
+ #: classes/class-fl-builder-service-icontact.php:148
417
+ msgid "Your iContact app password."
418
+ msgstr "รหัสผ่าน app iContact ของคุณ"
419
+
420
+ #: classes/class-fl-builder-service-icontact.php:149
421
+ #, php-format
422
+ msgid "You must <a%s>create an app</a> in iContact to obtain an app ID and password. Please see <a%s>the iContact docs</a> for complete instructions."
423
+ msgstr "คุณต้อง <a%s>สร้าง app</a> ใน iContact เพื่อที่จะรับ app ID และรหัสผ่าน โปรดดูใน <a%s>เอกสาร iContact</a> สำหรับคำแนะนำที่สมบูรณ์"
424
+
425
+ #: classes/class-fl-builder-service-icontact.php:244
426
+ msgid "There was an error subscribing to iContact. The account is no longer connected."
427
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ iContact บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
428
+
429
+ #: classes/class-fl-builder-service-icontact.php:280
430
+ #, php-format
431
+ msgid "There was an error subscribing to iContact. %s"
432
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ iContact %s"
433
+
434
+ #: classes/class-fl-builder-service-infusionsoft.php:49
435
+ #, php-format
436
+ msgid "There was an error connecting to Infusionsoft. %s"
437
+ msgstr "มีข้อผิดพลาดระหว่างทำการเชื่อมต่อกับ Infusionsoft %s"
438
+
439
+ #: classes/class-fl-builder-service-infusionsoft.php:83
440
+ msgid "Error: You must provide an app ID."
441
+ msgstr "ข้อผิดพลาด: คุณต้องให้ app ID"
442
+
443
+ #: classes/class-fl-builder-service-infusionsoft.php:119
444
+ msgid "Your App ID can be found in the URL for your account. For example, if the URL for your account is myaccount.infusionsoft.com, your App ID would be <strong>myaccount</strong>."
445
+ msgstr "App ID ของคุณสามารถพบได้ใน URL สำหรับบัญชีของคุณ ตัวอย่างเช่น ถ้า URL สำหรับบัญชีของคุณคือ myaccount.infusionsoft.com รหัส App ID ของคุณจะเป็น <strong>myaccount</strong>"
446
+
447
+ #: classes/class-fl-builder-service-infusionsoft.php:130
448
+ msgid "Your API key can be found in your Infusionsoft account under Admin > Settings > Application > API > Encrypted Key."
449
+ msgstr "API Key ของคุณสามารถพบได้ในบัญชี Infusionsoft ของคุณ ภายใต้ Admin > Settings > Application > API > Encrypted Key"
450
+
451
+ #: classes/class-fl-builder-service-infusionsoft.php:242
452
+ msgid "There was an error subscribing to Infusionsoft. The account is no longer connected."
453
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Infusionsoft บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
454
+
455
+ #: classes/class-fl-builder-service-infusionsoft.php:291
456
+ #, php-format
457
+ msgid "There was an error subscribing to Infusionsoft. %s"
458
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Infusionsoft %s"
459
+
460
+ #: classes/class-fl-builder-service-madmimi.php:83
461
+ msgid "Unable to connect to Mad Mimi. Please check your credentials."
462
+ msgstr "ไม่สามารถเชื่อมต่อกับ Mad Mimi กรุณาตรวจสอบข้อมูลประจำตัวของคุณ"
463
+
464
+ #: classes/class-fl-builder-service-madmimi.php:111
465
+ msgid "The email address associated with your Mad Mimi account."
466
+ msgstr "ที่อยู่อีเมลที่เชื่อมโยงกับบัญชี Mad Mimi ของคุณ"
467
+
468
+ #: classes/class-fl-builder-service-madmimi.php:122
469
+ msgid "Your API key can be found in your Mad Mimi account under Account > Settings &amp; Billing > API."
470
+ msgstr "API Key ของคุณสามารถพบได้ในบัญชี Mad Mimi ของคุณ ภายใต้ Account > Settings &amp; Billing > API"
471
+
472
+ #: classes/class-fl-builder-service-madmimi.php:156
473
+ msgid "There was a problem retrieving your lists. Please check your API credentials."
474
+ msgstr "มีปัญหาในการเรียกรายการของคุณเป็น กรุณาตรวจสอบข้อมูลประจำตัว API ของคุณ"
475
+
476
+ #: classes/class-fl-builder-service-madmimi.php:215 classes/class-fl-builder-service-madmimi.php:242
477
+ msgid "There was an error subscribing to Mad Mimi. The account is no longer connected."
478
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ Mad Mimi บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
479
+
480
+ #: classes/class-fl-builder-service-mailchimp.php:101
481
+ msgid "Your API key can be found in your MailChimp account under Account > Extras > API Keys."
482
+ msgstr "API Key ของคุณสามารถพบได้ในบัญชี MailChimp ของคุณ ภายใต้ Account > Extras > API Keys"
483
+
484
+ #: classes/class-fl-builder-service-mailchimp.php:215
485
+ msgid "No Group"
486
+ msgstr "ไม่มีกลุ่ม"
487
+
488
+ #: classes/class-fl-builder-service-mailchimp.php:227
489
+ msgctxt "MailChimp list group."
490
+ msgid "Groups"
491
+ msgstr "กลุ่ม"
492
+
493
+ #: classes/class-fl-builder-service-mailchimp.php:255
494
+ msgid "There was an error subscribing to MailChimp. The account is no longer connected."
495
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ MailChimp บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
496
+
497
+ #: classes/class-fl-builder-service-mailchimp.php:352
498
+ #, php-format
499
+ msgid "There was an error subscribing to MailChimp. %s"
500
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ MailChimp %s"
501
+
502
+ #: classes/class-fl-builder-service-mailpoet.php:73
503
+ msgid "There was an error retrieveing your lists."
504
+ msgstr "มีข้อผิดพลาดระหว่างการเรียนกรายชื่อของคุณ"
505
+
506
+ #: classes/class-fl-builder-service-mailpoet.php:129
507
+ msgid "There was an error subscribing. MailPoet is not installed."
508
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียน. MailPoet ไม่ได้ติดตั้งอยู่"
509
+
510
+ #: classes/class-fl-builder-service-sendinblue.php:67
511
+ msgid "Error: You must provide an Access Key."
512
+ msgstr "ข้อผิดพลาด: คุณต้องให้ Access Key"
513
+
514
+ #: classes/class-fl-builder-service-sendinblue.php:76 classes/class-fl-builder-service-sendinblue.php:136
515
+ msgid "There was an error connecting to SendinBlue. Please try again."
516
+ msgstr "มีข้อผิดพลาดระหว่างทำการเชื่อมต่อกับ SendingBlue กรุณาลองอีกครั้ง."
517
+
518
+ #: classes/class-fl-builder-service-sendinblue.php:79 classes/class-fl-builder-service-sendinblue.php:139
519
+ #, php-format
520
+ msgid "Error: Could not connect to SendinBlue. %s"
521
+ msgstr "ข้อผิดพลาด: ไม่สามารถเชื่อมต่อ SendinBlue %s"
522
+
523
+ #: classes/class-fl-builder-service-sendinblue.php:103
524
+ msgid "Access Key"
525
+ msgstr "การเข้าถึง"
526
+
527
+ #: classes/class-fl-builder-service-sendinblue.php:104
528
+ msgid "Your Access Key can be found in your SendinBlue account under API & Integration > Manager Your Keys > Version 2.0 > Access Key."
529
+ msgstr "Access Key คุณสามารถพบได้ในบัญชี SendingBlue ของคุณ ภายใต้ API & Integration > Manager Your Keys > Version 2.0 > Access Key."
530
+
531
+ #: classes/class-fl-builder-service-sendinblue.php:198
532
+ msgid "There was an error subscribing to SendinBlue. The account is no longer connected."
533
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ SendinBlue บัญชีนี้ได้ถูกตัดการเชื่อมต่อแล้ว"
534
+
535
+ #: classes/class-fl-builder-service-sendinblue.php:220
536
+ msgid "There was an error subscribing to SendinBlue. Please try again."
537
+ msgstr "มีข้อผิดพลาดระหว่างทำการลงทะเบียนกับ SendinBlue กรุณาลองอีกครั้ง."
538
+
539
+ #: classes/class-fl-builder-service-sendinblue.php:223
540
+ #, php-format
541
+ msgid "Error: Could not subscribe to SendinBlue. %s"
542
+ msgstr "ข้อผิดพลาด: ไม่สามารถสมัครเป็นสมาชิก SendinBlue %s"
543
+
544
+ #: classes/class-fl-builder-services.php:158
545
+ msgctxt "Third party service such as MailChimp."
546
+ msgid "Error: Missing service type."
547
+ msgstr "ข้อผิดพลาด: ประเภทบริการขาดหายไป"
548
+
549
+ #: classes/class-fl-builder-services.php:161
550
+ msgctxt "Connection data such as an API key."
551
+ msgid "Error: Missing service data."
552
+ msgstr "ข้อผิดพลาด: ข้อมูลการบริการขาดหายไป"
553
+
554
+ #: classes/class-fl-builder-services.php:164
555
+ msgctxt "Account name for a third party service such as MailChimp."
556
+ msgid "Error: Missing account name."
557
+ msgstr "ข้อผิดพลาด: ชื่อบัญชีขาดหายไป"
558
+
559
+ #: classes/class-fl-builder-services.php:173
560
+ msgctxt "Account name for a third party service such as MailChimp."
561
+ msgid "Error: An account with that name already exists."
562
+ msgstr "ข้อผิดพลาด: บัญชีทั้มีชื่อนี้ที่มีอยู่แล้ว"
563
+
564
+ #: classes/class-fl-builder-services.php:253
565
+ msgid "Account Name"
566
+ msgstr "ชื่อบัญชี"
567
+
568
+ #: classes/class-fl-builder-services.php:254
569
+ msgid "Used to identify this connection within the accounts list and can be anything you like."
570
+ msgstr "ใช้ในการระบุการเชื่อมต่อนี้ ในรายการบัญชีและสามารถเป็นอะไรก็ได้ที่คุณต้องการ"
571
+
572
+ #: classes/class-fl-builder-services.php:267
573
+ msgid "Connect"
574
+ msgstr "เชื่อมต่อ"
575
+
576
+ #: classes/class-fl-builder-services.php:295
577
+ msgid "Add Account..."
578
+ msgstr "เพิ่มบัญชี"
579
+
580
+ #: classes/class-fl-builder-services.php:302
581
+ msgid "Account"
582
+ msgstr "บัญชี"
583
+
584
+ #: classes/class-fl-builder-template-settings.php:33
585
+ msgid "Page Builder Templates"
586
+ msgstr "เทมเพลท Page Builder"
587
+
588
+ #: classes/class-fl-builder-templates-override.php:49
589
+ msgid "Error! Please enter a number for the site ID."
590
+ msgstr "ข้อผิดพลาด! กรุณากรอกตัวเลขสำหรับ ID เว็บไซต์"
591
+
592
+ #: classes/class-fl-builder-templates-override.php:53
593
+ msgid "Error! A site with that ID doesn't exist."
594
+ msgstr "ข้อผิดพลาด! เว็บไซต์ที่มี ID นี้ ไม่มีอยู่"
595
+
596
+ #: classes/class-fl-builder.php:617
597
+ #, php-format
598
+ msgid "Template: %s"
599
+ msgstr "เทมเพลท: %s"
600
+
601
+ #: classes/class-fl-builder.php:652
602
+ msgid "Upgrade!"
603
+ msgstr "อัพเกรด!"
604
+
605
+ #: classes/class-fl-builder.php:656
606
+ msgid "Buy Now!"
607
+ msgstr "ซื้อตอนนี้!"
608
+
609
+ #: classes/class-fl-builder.php:660 includes/ui-js-config.php:36 includes/ui-js-templates.php:100
610
+ msgid "Done"
611
+ msgstr "เสร็จสิ้น"
612
+
613
+ #: classes/class-fl-builder.php:664
614
+ msgid "Tools"
615
+ msgstr "เครื่องมือ"
616
+
617
+ #: classes/class-fl-builder.php:672 includes/ui-js-config.php:88
618
+ msgid "Add Content"
619
+ msgstr "เพิ่มเนื้อหา"
620
+
621
+ #: classes/class-fl-builder.php:1032
622
+ #, php-format
623
+ msgctxt "Field name to add."
624
+ msgid "Add %s"
625
+ msgstr "เพิ่ม %s"
626
+
627
+ #: classes/class-fl-builder.php:1126 classes/class-fl-builder.php:1128
628
+ msgctxt "Custom post type label."
629
+ msgid "Templates"
630
+ msgstr "เทมเพลท"
631
+
632
+ #: classes/class-fl-builder.php:1127 classes/class-fl-builder.php:1129
633
+ msgctxt "Custom post type label."
634
+ msgid "Template"
635
+ msgstr "เทมเพลท"
636
+
637
+ #: classes/class-fl-builder.php:1130
638
+ msgctxt "Custom post type label."
639
+ msgid "Add New"
640
+ msgstr "เพิ่มใหม่"
641
+
642
+ #: classes/class-fl-builder.php:1131
643
+ msgctxt "Custom post type label."
644
+ msgid "Add New Template"
645
+ msgstr "เพิ่มเทมเพลทใหม่"
646
+
647
+ #: classes/class-fl-builder.php:1132
648
+ msgctxt "Custom post type label."
649
+ msgid "New Template"
650
+ msgstr "เทมเพลทใหม่"
651
+
652
+ #: classes/class-fl-builder.php:1133
653
+ msgctxt "Custom post type label."
654
+ msgid "Edit Template"
655
+ msgstr "แก้ไขเทมเพลท"
656
+
657
+ #: classes/class-fl-builder.php:1134
658
+ msgctxt "Custom post type label."
659
+ msgid "View Template"
660
+ msgstr "ดูเทมเพลท"
661
+
662
+ #: classes/class-fl-builder.php:1135
663
+ msgctxt "Custom post type label."
664
+ msgid "All Templates"
665
+ msgstr "เทมเพลททั้งหมด"
666
+
667
+ #: classes/class-fl-builder.php:1136
668
+ msgctxt "Custom post type label."
669
+ msgid "Search Templates"
670
+ msgstr "ค้นหาเทมเพลท"
671
+
672
+ #: classes/class-fl-builder.php:1137
673
+ msgctxt "Custom post type label."
674
+ msgid "Parent Templates:"
675
+ msgstr "เทมเพลทหลัก:"
676
+
677
+ #: classes/class-fl-builder.php:1138
678
+ msgctxt "Custom post type label."
679
+ msgid "No templates found."
680
+ msgstr "ไม่พบเทมเพลท"
681
+
682
+ #: classes/class-fl-builder.php:1139
683
+ msgctxt "Custom post type label."
684
+ msgid "No templates found in Trash."
685
+ msgstr "ไม่พบเทมเพลทในถังขยะ"
686
+
687
+ #: classes/class-fl-builder.php:1153 classes/class-fl-builder.php:1163
688
+ msgctxt "Custom taxonomy label."
689
+ msgid "Categories"
690
+ msgstr "หมวดหมู่"
691
+
692
+ #: classes/class-fl-builder.php:1154
693
+ msgctxt "Custom taxonomy label."
694
+ msgid "Category"
695
+ msgstr "หมวดหมู่"
696
+
697
+ #: classes/class-fl-builder.php:1155
698
+ msgctxt "Custom taxonomy label."
699
+ msgid "Search Categories"
700
+ msgstr "ค้นหาหมวดหมู่"
701
+
702
+ #: classes/class-fl-builder.php:1156
703
+ msgctxt "Custom taxonomy label."
704
+ msgid "All Categories"
705
+ msgstr "ทุกหมวดหมู่"
706
+
707
+ #: classes/class-fl-builder.php:1157
708
+ msgctxt "Custom taxonomy label."
709
+ msgid "Parent Category"
710
+ msgstr "หมวดหมู่หลัก"
711
+
712
+ #: classes/class-fl-builder.php:1158
713
+ msgctxt "Custom taxonomy label."
714
+ msgid "Parent Category:"
715
+ msgstr "หมวดหมู่หลัก:"
716
+
717
+ #: classes/class-fl-builder.php:1159
718
+ msgctxt "Custom taxonomy label."
719
+ msgid "Edit Category"
720
+ msgstr "แก้ไขหมวดหมู่"
721
+
722
+ #: classes/class-fl-builder.php:1160
723
+ msgctxt "Custom taxonomy label."
724
+ msgid "Update Category"
725
+ msgstr "ปรับปรุงหมวดหมู่"
726
+
727
+ #: classes/class-fl-builder.php:1161
728
+ msgctxt "Custom taxonomy label."
729
+ msgid "Add New Category"
730
+ msgstr "เพิ่มหมวดหมู่"
731
+
732
+ #: classes/class-fl-builder.php:1162
733
+ msgctxt "Custom taxonomy label."
734
+ msgid "New Category Name"
735
+ msgstr "ชื่อหมวดหมู่ใหม่"
736
+
737
+ #: classes/class-fl-builder.php:1172
738
+ msgctxt "Custom taxonomy label."
739
+ msgid "Type"
740
+ msgstr "ประเภท"
741
+
742
+ #: classes/class-fl-builder.php:1448 classes/class-fl-builder.php:1527 classes/class-fl-builder.php:1735 includes/ui-js-templates.php:110 includes/ui-panel-node-templates.php:18 includes/ui-panel-node-templates.php:49
743
+ msgctxt "Indicator for global node templates."
744
+ msgid "Global"
745
+ msgstr "ส่วนกลาง"
746
+
747
+ #: classes/class-fl-builder.php:1734
748
+ #, php-format
749
+ msgctxt "%s stands for module name."
750
+ msgid "%s Settings"
751
+ msgstr "การตั้งค่า %s"
752
+
753
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
754
+ msgid "Text Editor"
755
+ msgstr "ตัวแก้ไขข้อความ"
756
+
757
+ #: includes/admin-posts.php:7
758
+ #, php-format
759
+ msgctxt "The first %s stands for custom branded \"Page Builder\" name. The second %s stands for the post type name."
760
+ msgid "%s is currently active for this %s."
761
+ msgstr "%s ปัจจุบันได้เปิดใช้งานสำหรับ %s นี้"
762
+
763
+ #: includes/admin-posts.php:8
764
+ #, php-format
765
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
766
+ msgid "Launch %s"
767
+ msgstr "เปิด %s"
768
+
769
+ #: includes/admin-settings-branding.php:7
770
+ msgid "White label the page builder by entering a custom name below."
771
+ msgstr "ป้ายสีขาวบนตัวสร้างหน้าโดยการป้อนชื่อที่กำหนดเองด้านล่าง"
772
+
773
+ #: includes/admin-settings-branding.php:10
774
+ msgid "Additionally, you may also add a custom icon by entering the URL of an image below. Leave the field blank if you do not wish to use an icon."
775
+ msgstr "นอกจากนี้คุณยังสามารถเพิ่มไอคอนที่กำหนดเองโดยการป้อน URL ของรูปภาพด้านล่าง เว้นฟิลด์นี้ว่างถ้าคุณไม่ต้องการที่จะใช้ไอคอน"
776
+
777
+ #: includes/admin-settings-branding.php:14
778
+ msgid "Save Branding"
779
+ msgstr "บันทึกตราสินค้า"
780
+
781
+ #: includes/admin-settings-cache.php:9
782
+ msgid ""
783
+ "A CSS and JavaScript file is dynamically generated and cached each time you create a new layout. Sometimes the cache needs to be refreshed when you migrate your site to another server or update to the latest version. If you are running into any issues, please try clearing the cache by clicking the button "
784
+ "below."
785
+ msgstr "ไฟล์ CSS และ JavaScript ได้ถูกสร้างขึ้นแบบไดนามิกและเก็บไว้ทุกครั้งที่คุณสร้างเลย์เอ้าท์ใหม่ บางครั้งแคชจะต้องมีการรีเฟรชเมื่อคุณย้ายเว็บไซต์ของคุณไปยังเซิร์ฟเวอร์อื่นหรืออัพเดตให้เป็นรุ่นล่าสุด หากคุณพบปัญหาใดๆ โปรดลองล้างแคชโดยคลิกที่ปุ่มด้านล่างนี้"
786
+
787
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-cache.php:14 includes/admin-settings-uninstall.php:7 includes/admin-settings-uninstall.php:10 includes/updater/includes/form.php:31
788
+ msgid "NOTE:"
789
+ msgstr "หมายเหตุ:"
790
+
791
+ #: includes/admin-settings-cache.php:12 includes/admin-settings-uninstall.php:10 includes/updater/includes/form.php:31
792
+ msgid "This applies to all sites on the network."
793
+ msgstr "จะถูกนำไปใช้กับทุกเว็บไซต์ในเครือข่าย"
794
+
795
+ #: includes/admin-settings-cache.php:14
796
+ msgid "This only applies to this site. Please visit the Network Admin Settings to clear the cache for all sites on the network."
797
+ msgstr "จะถูกนำไปใช้กับเว็บไซต์นี้ โปรดไปที่การตั้งค่าเครือข่ายผู้ดูแลระบบเพื่อล้างแคชสำหรับไซต์ทั้งหมดในเครือข่าย"
798
+
799
+ #: includes/admin-settings-cache.php:19
800
+ msgid "Clear Cache"
801
+ msgstr "ล้างเแคช"
802
+
803
+ #: includes/admin-settings-editing.php:3
804
+ msgid "Editing Settings"
805
+ msgstr "การตั้งค่าตัวแก้ไข"
806
+
807
+ #: includes/admin-settings-editing.php:10 includes/admin-settings-icons.php:27 includes/admin-settings-modules.php:10 includes/admin-settings-post-types.php:10 includes/admin-settings-templates.php:16
808
+ msgid "Override network settings?"
809
+ msgstr "ต้องการแทนที่การตั้งค่าเครือข่าย?"
810
+
811
+ #: includes/admin-settings-editing.php:16
812
+ msgid "Editing Capability"
813
+ msgstr "ความสามารถในการแก้ไข"
814
+
815
+ #: includes/admin-settings-editing.php:17
816
+ #, php-format
817
+ msgid "Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules."
818
+ msgstr "ตั้ง <a%s>ความสามารถ</a> ที่จำเป็นสำหรับผู้ใช้ที่สามารถเข้าถึงการแก้ไขสร้างขั้นสูง เช่น การเพิ่ม, ลบ หรือย้ายโมดูล"
819
+
820
+ #: includes/admin-settings-editing.php:21
821
+ msgid "Global Templates Editing Capability"
822
+ msgstr "ความสามารถในการแก้ไขเทมเพลทส่วนกลาง"
823
+
824
+ #: includes/admin-settings-editing.php:22
825
+ #, php-format
826
+ msgid "Set the <a%s>capability</a> required for users to global templates."
827
+ msgstr "ตั้ง <a%s> ความสามารถ </a> จำเป็นสำหรับผู้ใช้ในเทมเพลทส่วนกลาง"
828
+
829
+ #: includes/admin-settings-editing.php:28
830
+ msgid "Save Editing Settings"
831
+ msgstr "บันทึกการตั้งค่าการแก้ไข"
832
+
833
+ #: includes/admin-settings-help-button.php:8
834
+ msgid "Help Button Settings"
835
+ msgstr "การตั้งค่าปุ่มช่วยเหลือ"
836
+
837
+ #: includes/admin-settings-help-button.php:17
838
+ msgid "Enable Help Button"
839
+ msgstr "เปิดการใช้งานปุ่มช่วยเหลือ"
840
+
841
+ #: includes/admin-settings-help-button.php:23
842
+ msgid "Help Tour"
843
+ msgstr "ทัวร์การช่วยเหลือ"
844
+
845
+ #: includes/admin-settings-help-button.php:27
846
+ msgid "Enable Help Tour"
847
+ msgstr "เปิดใช้งานทัวร์การช่วยเหลือ"
848
+
849
+ #: includes/admin-settings-help-button.php:31
850
+ msgid "Help Video"
851
+ msgstr "วิดีโอช่วยเหลือ"
852
+
853
+ #: includes/admin-settings-help-button.php:35
854
+ msgid "Enable Help Video"
855
+ msgstr "เปิดใช้งานการวีดีโอช่วยเหลือ"
856
+
857
+ #: includes/admin-settings-help-button.php:39
858
+ msgid "Help Video Embed Code"
859
+ msgstr "ฝังรหัสวิดีโอช่วยเหลือ"
860
+
861
+ #: includes/admin-settings-help-button.php:45
862
+ msgid "Knowledge Base"
863
+ msgstr "ฐานความรู้"
864
+
865
+ #: includes/admin-settings-help-button.php:49
866
+ msgid "Enable Knowledge Base"
867
+ msgstr "เปิดใช้ฐานความรู้"
868
+
869
+ #: includes/admin-settings-help-button.php:53
870
+ msgid "Knowledge Base URL"
871
+ msgstr "URL ฐานความรู้"
872
+
873
+ #: includes/admin-settings-help-button.php:59
874
+ msgid "Forums"
875
+ msgstr "ฟอรั่ม"
876
+
877
+ #: includes/admin-settings-help-button.php:63
878
+ msgid "Enable Forums"
879
+ msgstr "เปิดการใช้งานฟอรั่ม"
880
+
881
+ #: includes/admin-settings-help-button.php:67
882
+ msgid "Forums URL"
883
+ msgstr "URL ฟอรั่ม"
884
+
885
+ #: includes/admin-settings-help-button.php:77
886
+ msgid "Save Help Button Settings"
887
+ msgstr "บันทึกการตั้งค่าปุ่มช่วยเหลือ"
888
+
889
+ #: includes/admin-settings-icons.php:3
890
+ msgid "Icon Settings"
891
+ msgstr "การตั้งค่าไอคอน"
892
+
893
+ #: includes/admin-settings-icons.php:13
894
+ msgid "Icons for the main site must be managed in the network admin."
895
+ msgstr "ไอคอนสำหรับเว็บไซต์หลักจะต้องได้รับการจัดการในผู้ดูแลระบบเครือข่าย"
896
+
897
+ #: includes/admin-settings-icons.php:33
898
+ #, php-format
899
+ msgid "Enable or disable icon sets using the options below or upload a custom icon set from either <a%s>Icomoon</a> or <a%s>Fontello</a>."
900
+ msgstr "เปิดหรือปิดชุดไอคอนโดยใช้ตัวเลือกด้านล่างหรืออัปโหลดชุดไอคอนที่กำหนดเองจากทั้ง <a%s>Icomoon</a> หรือ <a%s>Fontello</a>"
901
+
902
+ #: includes/admin-settings-icons.php:48
903
+ msgctxt "Plugin setup page: Delete icon set."
904
+ msgid "Delete"
905
+ msgstr "ลบ"
906
+
907
+ #: includes/admin-settings-icons.php:59
908
+ msgid "Upload Icon Set"
909
+ msgstr "อัปโหลดชุดไอคอน"
910
+
911
+ #: includes/admin-settings-icons.php:60
912
+ msgid "Save Icon Settings"
913
+ msgstr "บันทึกการตั้งค่าไอคอน"
914
+
915
+ #: includes/admin-settings-js-config.php:4
916
+ msgid "Select File"
917
+ msgstr "เลือกไฟล์"
918
+
919
+ #: includes/admin-settings-js-config.php:5
920
+ msgid "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder and all of its data."
921
+ msgstr "กรุณาพิมพ์ \"ถอนการติดตั้ง\" ในช่องด้านล่างนี้เพื่อยืนยันว่าคุณต้องการที่จะถอนการติดตั้งสร้างหน้าและข้อมูลทั้งหมด"
922
+
923
+ #: includes/admin-settings-modules.php:3
924
+ msgid "Enabled Modules"
925
+ msgstr "เปิดใช้งานโมดูล"
926
+
927
+ #: includes/admin-settings-modules.php:16
928
+ msgid "Check or uncheck modules below to enable or disable them."
929
+ msgstr "เลือกหรือไม่เลือกโมดูลด้านล่างเพื่อเปิดหรือปิดการใช้งาน"
930
+
931
+ #: includes/admin-settings-modules.php:26
932
+ msgctxt "Plugin setup page: Modules."
933
+ msgid "All"
934
+ msgstr "ทั้งหมด"
935
+
936
+ #: includes/admin-settings-modules.php:64
937
+ msgid "Save Module Settings"
938
+ msgstr "บันทึกการตั้งค่าโมดูล"
939
+
940
+ #: includes/admin-settings-post-types.php:18
941
+ msgid "Enter a comma separated list of the post types you would like the builder to work with."
942
+ msgstr "ป้อนจุลภาคคั่นรายการประเภทโพสต์ที่คุณต้องการสร้างการทำงานร่วมด้วย"
943
+
944
+ #: includes/admin-settings-post-types.php:19 includes/admin-settings-post-types.php:39
945
+ msgid "NOTE: Not all custom post types may be supported."
946
+ msgstr "หมายเหตุ: ไม่ใช่ทุกประเภทโพสต์ที่กำหนดเองที่อาจจะได้รับการสนับสนุน"
947
+
948
+ #: includes/admin-settings-post-types.php:34
949
+ msgid "Example: page, post, product"
950
+ msgstr "ตัวอย่าง: หน้า, โพสต์, ผลิตภัณฑ์"
951
+
952
+ #: includes/admin-settings-post-types.php:38
953
+ msgid "Select the post types you would like the builder to work with."
954
+ msgstr "เลือกประเภทโพสต์ที่คุณต้องการสร้างการทำงานร่วมด้วย"
955
+
956
+ #: includes/admin-settings-post-types.php:70
957
+ msgid "Save Post Types"
958
+ msgstr "บันทึกประเภทโพสต์"
959
+
960
+ #: includes/admin-settings-templates-override.php:1 includes/admin-settings-templates-override.php:12
961
+ msgid "Override Core Templates"
962
+ msgstr "แทนที่เทมเพลทหลัก"
963
+
964
+ #: includes/admin-settings-templates-override.php:3
965
+ msgid "Enter the ID of a site on the network whose templates should override core builder templates. Leave this field blank if you do not wish to override core templates."
966
+ msgstr "ป้อน ID ของเว็บไซต์บนเครือข่ายที่มีเทมเพลทควรจะแทนที่เทมเพลทตัวสร้างหลัก ปล่อยว่างฟิลด์นี้ถ้าคุณไม่ต้องการที่จะแทนที่แม่แบบหลัก"
967
+
968
+ #: includes/admin-settings-templates-override.php:8
969
+ msgid "Use this setting to override core builder templates with your templates."
970
+ msgstr "ใช้การตั้งค่านี้จะแทนที่การสร้างหลักที่มีเทมเพลทของคุณ"
971
+
972
+ #: includes/admin-settings-templates-override.php:17
973
+ msgid "You may also choose to show your row and module templates as sections within the builder panel. A new section will be created for each row or module category that you have defined."
974
+ msgstr "นอกจากนี้คุณยังสามารถเลือกที่จะแสดงเทมเพลทแถวและโมดูลของคุณเป็นส่วนที่อยู่ในแผงตัวสร้าง ส่วนใหม่จะถูกสร้างขึ้นสำหรับแถวหรือโมดูลแต่ละประเภทที่คุณได้กำหนดหมวดหมู่ไว้"
975
+
976
+ #: includes/admin-settings-templates-override.php:21
977
+ msgid "Show Row Templates?"
978
+ msgstr "แสดงเทมเพลทแถว?"
979
+
980
+ #: includes/admin-settings-templates-override.php:27
981
+ msgid "Show Module Templates?"
982
+ msgstr "แสดงเทมเพลทโมดูล?"
983
+
984
+ #: includes/admin-settings-templates.php:9 includes/template-settings.php:4
985
+ msgid "Template Settings"
986
+ msgstr "แก้ไขเทมเพลท"
987
+
988
+ #: includes/admin-settings-templates.php:22
989
+ msgid "Enable Templates"
990
+ msgstr "เปิดใช้งานเทมเพลท"
991
+
992
+ #: includes/admin-settings-templates.php:23
993
+ msgid "Use this setting to enable or disable templates in the builder interface."
994
+ msgstr "ใช้การตั้งค่านี้เพื่อเปิดหรือปิดการใช้งานเทมเพลทในอินเตอร์เฟซการสร้าง"
995
+
996
+ #: includes/admin-settings-templates.php:25
997
+ msgid "Enable All Templates"
998
+ msgstr "เปิดใช้งานเทมเพลททั้งหมด"
999
+
1000
+ #: includes/admin-settings-templates.php:26
1001
+ msgid "Enable Core Templates Only"
1002
+ msgstr "เปิดการใช้งานเฉพาะเทมเพลทหลักเท่านั้น"
1003
+
1004
+ #: includes/admin-settings-templates.php:27
1005
+ msgid "Enable User Templates Only"
1006
+ msgstr "เปิดใช้งานเฉพาะเทมเพลทผู้ใช้เท่านั้น"
1007
+
1008
+ #: includes/admin-settings-templates.php:28
1009
+ msgid "Disable All Templates"
1010
+ msgstr "ปิดการใช้งานเทมเพลททั้งหมด"
1011
+
1012
+ #: includes/admin-settings-templates.php:31 includes/admin-settings-templates.php:36
1013
+ msgid "Enable Templates Admin"
1014
+ msgstr "เปิดใช้งานเทมเพลทผู้ดูแลระบบ"
1015
+
1016
+ #: includes/admin-settings-templates.php:32
1017
+ msgid "Use this setting to edit builder templates in the WordPress admin."
1018
+ msgstr "ใช้การตั้งค่านี้เพื่อแก้ไขเทมเพลทในการสร้างผู้ดูแลระบบเวิร์ดเพรส"
1019
+
1020
+ #: includes/admin-settings-templates.php:50
1021
+ msgid "Save Template Settings"
1022
+ msgstr "บันทึกการตั้งค่าเทมเพลท"
1023
+
1024
+ #: includes/admin-settings-uninstall.php:5
1025
+ msgid "Clicking the button below will uninstall the page builder plugin and delete all of the data associated with it. You can uninstall or deactivate the page builder from the plugins page instead if you do not wish to delete the data."
1026
+ msgstr "คลิกที่ปุ่มด้านล่างจะถอนการติดตั้งปลั๊กอินสร้างหน้าและลบข้อมูลทั้งหมดที่เกี่ยวข้องกับมัน คุณสามารถถอนการติดตั้งหรือปิดใช้งานการสร้างหน้าจากหน้าปลั๊กอินแทนได้ หากคุณไม่ต้องการที่จะลบข้อมูล"
1027
+
1028
+ #: includes/admin-settings-uninstall.php:7
1029
+ msgid "The builder does not delete the post meta <code>_fl_builder_data</code>, <code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values."
1030
+ msgstr "ตัวสร้างไม่ได้ลบโพสต์เมตา <code>_fl_builder_data</code> <code>_fl_builder_draft</code> และ <code>_fl_builder_enabled</code> ในกรณีที่คุณต้องการติดตั้งได้ในภายหลัง ถ้าคุณต้องการ ตัวสร้างจะสร้างข้อมูลทั้งหมดที่ใช้ค่า meta เหล่านั้น"
1031
+
1032
+ #: includes/admin-settings-upgrade.php:5
1033
+ msgid "You are currently running the lite version of the Beaver Builder plugin. Upgrade today for access to premium features such as advanced modules, templates, support and more!"
1034
+ msgstr "คุณกำลังใช้รุ่น Lite ของปลั๊กอิน Beaver Builder อัพเกรดวันนี้สำหรับการเข้าถึงคุณสมบัติพิเศษเช่นโมดูลขั้นสูง, เทมเพลท, การสนับสนุน และอื่น ๆ !"
1035
+
1036
+ #: includes/admin-settings-upgrade.php:7
1037
+ msgid "Upgrade Now"
1038
+ msgstr "อัพเกรดเดี๋ยวนี้"
1039
+
1040
+ #: includes/admin-settings-upgrade.php:9
1041
+ msgid "Learn More"
1042
+ msgstr "เรียนรู้เพิ่มเติม"
1043
+
1044
+ #: includes/admin-templates-edit.php:3
1045
+ msgid "Edit Template"
1046
+ msgstr "แก้ไขเทมเพลท"
1047
+
1048
+ #: includes/admin-templates-edit.php:8
1049
+ msgctxt "Template edit form field label. Template name."
1050
+ msgid "Name"
1051
+ msgstr "ชื่อ"
1052
+
1053
+ #: includes/admin-templates-edit.php:12 modules/callout/callout.php:306 modules/post-carousel/post-carousel.php:255 modules/post-grid/post-grid.php:116 modules/post-slider/post-slider.php:460
1054
+ msgid "Image"
1055
+ msgstr "รูปภาพ"
1056
+
1057
+ #: includes/admin-templates-edit.php:16 includes/column-settings.php:139 includes/row-settings.php:179 includes/template-settings.php:23 modules/callout/callout.php:354 modules/callout/callout.php:374 modules/content-slider/content-slider.php:473 modules/post-grid/post-grid.php:130
1058
+ #: modules/post-slider/post-slider.php:626 modules/post-slider/post-slider.php:645
1059
+ msgid "Position"
1060
+ msgstr "ตำแหน่ง"
1061
+
1062
+ #: includes/admin-templates-edit.php:20 includes/template-settings.php:28
1063
+ msgctxt "Template edit form field label. Is template premium one?"
1064
+ msgid "Premium"
1065
+ msgstr "พรีเ​​มี่ยม"
1066
+
1067
+ #: includes/admin-templates-edit.php:23 includes/admin-templates.php:30 includes/global-settings.php:18 includes/global-settings.php:110 includes/global-settings.php:124 includes/node-template-settings.php:22 includes/row-settings.php:331 includes/template-settings.php:31 modules/accordion/accordion.php:90
1068
+ #: modules/callout/callout.php:421 modules/content-slider/content-slider.php:210 modules/content-slider/content-slider.php:224 modules/content-slider/content-slider.php:258 modules/content-slider/content-slider.php:267 modules/content-slider/content-slider.php:538 modules/icon-group/icon-group.php:80
1069
+ #: modules/icon/icon.php:111 modules/menu/menu.php:167 modules/menu/menu.php:358 modules/post-carousel/post-carousel.php:139 modules/post-carousel/post-carousel.php:155 modules/post-carousel/post-carousel.php:182 modules/post-carousel/post-carousel.php:191 modules/post-carousel/post-carousel.php:232
1070
+ #: modules/post-carousel/post-carousel.php:283 modules/post-grid/post-grid.php:265 modules/post-slider/post-slider.php:357 modules/post-slider/post-slider.php:382 modules/post-slider/post-slider.php:409 modules/post-slider/post-slider.php:418 modules/post-slider/post-slider.php:739
1071
+ #: modules/slideshow/slideshow.php:323 modules/slideshow/slideshow.php:333 modules/slideshow/slideshow.php:384 modules/slideshow/slideshow.php:425 modules/slideshow/slideshow.php:447 modules/slideshow/slideshow.php:496 modules/slideshow/slideshow.php:505 modules/slideshow/slideshow.php:514
1072
+ #: modules/slideshow/slideshow.php:523 modules/slideshow/slideshow.php:532 modules/slideshow/slideshow.php:541 modules/slideshow/slideshow.php:550 modules/slideshow/slideshow.php:564 modules/slideshow/slideshow.php:579 modules/slideshow/slideshow.php:614 modules/slideshow/slideshow.php:626
1073
+ #: modules/slideshow/slideshow.php:638 modules/slideshow/slideshow.php:650 modules/social-buttons/social-buttons.php:111 modules/social-buttons/social-buttons.php:120 modules/social-buttons/social-buttons.php:129 modules/testimonials/testimonials.php:85 modules/testimonials/testimonials.php:124
1074
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111 modules/video/video.php:123
1075
+ msgid "No"
1076
+ msgstr "ไม่ใช่"
1077
+
1078
+ #: includes/admin-templates-edit.php:24 includes/admin-templates.php:30 includes/global-settings.php:19 includes/global-settings.php:111 includes/global-settings.php:125 includes/node-template-settings.php:23 includes/row-settings.php:332 includes/template-settings.php:32 modules/accordion/accordion.php:89
1079
+ #: modules/callout/callout.php:422 modules/content-slider/content-slider.php:211 modules/content-slider/content-slider.php:225 modules/content-slider/content-slider.php:259 modules/content-slider/content-slider.php:268 modules/content-slider/content-slider.php:539 modules/icon-group/icon-group.php:81
1080
+ #: modules/icon/icon.php:112 modules/menu/menu.php:168 modules/menu/menu.php:359 modules/post-carousel/post-carousel.php:140 modules/post-carousel/post-carousel.php:156 modules/post-carousel/post-carousel.php:183 modules/post-carousel/post-carousel.php:192 modules/post-carousel/post-carousel.php:233
1081
+ #: modules/post-carousel/post-carousel.php:282 modules/post-grid/post-grid.php:264 modules/post-slider/post-slider.php:358 modules/post-slider/post-slider.php:383 modules/post-slider/post-slider.php:410 modules/post-slider/post-slider.php:419 modules/post-slider/post-slider.php:740
1082
+ #: modules/slideshow/slideshow.php:324 modules/slideshow/slideshow.php:334 modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:426 modules/slideshow/slideshow.php:448 modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506 modules/slideshow/slideshow.php:515
1083
+ #: modules/slideshow/slideshow.php:524 modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542 modules/slideshow/slideshow.php:551 modules/slideshow/slideshow.php:565 modules/slideshow/slideshow.php:580 modules/slideshow/slideshow.php:615 modules/slideshow/slideshow.php:627
1084
+ #: modules/slideshow/slideshow.php:639 modules/slideshow/slideshow.php:651 modules/social-buttons/social-buttons.php:110 modules/social-buttons/social-buttons.php:119 modules/social-buttons/social-buttons.php:128 modules/testimonials/testimonials.php:86 modules/testimonials/testimonials.php:125
1085
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112 modules/video/video.php:124
1086
+ msgid "Yes"
1087
+ msgstr "ใช่"
1088
+
1089
+ #: includes/admin-templates-edit.php:29 includes/template-settings.php:37
1090
+ msgid "Category"
1091
+ msgstr "หมวดหมู่"
1092
+
1093
+ #: includes/admin-templates-edit.php:32 includes/template-settings.php:40
1094
+ msgctxt "Templates category label."
1095
+ msgid "Landing Pages"
1096
+ msgstr "หน้า Landing"
1097
+
1098
+ #: includes/admin-templates-edit.php:33 includes/template-settings.php:41
1099
+ msgctxt "Templates category label."
1100
+ msgid "Company Info"
1101
+ msgstr "ข้อมูล บริษัท"
1102
+
1103
+ #: includes/admin-templates-edit.php:40
1104
+ msgid "Update Template"
1105
+ msgstr "ปรับปรุงเทมเพลท"
1106
+
1107
+ #: includes/admin-templates.php:3
1108
+ msgid "Page Builder Template"
1109
+ msgstr "เทมเพลท Page Builder"
1110
+
1111
+ #: includes/admin-templates.php:10
1112
+ msgctxt "Templates list column label."
1113
+ msgid "Name"
1114
+ msgstr "ชื่อ"
1115
+
1116
+ #: includes/admin-templates.php:11
1117
+ msgctxt "Templates list column label."
1118
+ msgid "Category"
1119
+ msgstr "หมวดหมู่"
1120
+
1121
+ #: includes/admin-templates.php:12
1122
+ msgctxt "Templates list column label. Is template premium one?"
1123
+ msgid "Premium"
1124
+ msgstr "พรีเ​​มี่ยม"
1125
+
1126
+ #: includes/admin-templates.php:25 includes/field-photo.php:12 includes/template-selector.php:70
1127
+ msgid "Edit"
1128
+ msgstr "แก้ไข"
1129
+
1130
+ #: includes/admin-templates.php:27 includes/template-selector.php:71
1131
+ msgid "Delete"
1132
+ msgstr "ลบ"
1133
+
1134
+ #: includes/admin-templates.php:40 includes/ui-js-config.php:32
1135
+ msgid "Do you really want to delete this template?"
1136
+ msgstr "คุณต้องการที่จะลบเทมเพลทนี้จริงๆหรอ?"
1137
+
1138
+ #: includes/column-settings.php:4 includes/ui-js-templates.php:31 includes/ui-js-templates.php:55
1139
+ msgid "Column Settings"
1140
+ msgstr "การตั้งค่าคอลัมน์"
1141
+
1142
+ #: includes/column-settings.php:7 includes/module-settings.php:87 includes/row-settings.php:9 modules/accordion/accordion.php:45 modules/button/button.php:117 modules/button/button.php:155 modules/button/button.php:159 modules/callout/callout.php:242 modules/callout/callout.php:554
1143
+ #: modules/content-slider/content-slider.php:426 modules/content-slider/content-slider.php:667 modules/cta/cta.php:102 modules/cta/cta.php:309 modules/heading/heading.php:69 modules/icon-group/icon-group.php:44 modules/icon/icon.php:75 modules/menu/menu.php:146 modules/post-carousel/post-carousel.php:389
1144
+ #: modules/post-grid/post-grid.php:237 modules/post-slider/post-slider.php:579 modules/pricing-table/pricing-table.php:43 modules/pricing-table/pricing-table.php:155 modules/separator/separator.php:72 modules/subscribe-form/subscribe-form.php:227 modules/tabs/tabs.php:45
1145
+ msgid "Style"
1146
+ msgstr "สไตล์"
1147
+
1148
+ #: includes/column-settings.php:14
1149
+ msgid "Column Width"
1150
+ msgstr "ความกว้างคอลัมน์"
1151
+
1152
+ #: includes/column-settings.php:26 modules/button/button.php:66 modules/callout/callout.php:226 modules/callout/callout.php:479 modules/callout/callout.php:495 modules/content-slider/content-slider.php:383 modules/content-slider/content-slider.php:617 modules/cta/cta.php:85 modules/cta/cta.php:222
1153
+ #: modules/menu/menu.php:174 modules/post-slider/post-slider.php:622
1154
+ msgid "Text"
1155
+ msgstr "ข้อความ"
1156
+
1157
+ #: includes/column-settings.php:30 includes/column-settings.php:93 includes/column-settings.php:248 includes/row-settings.php:133 includes/row-settings.php:427 modules/callout/callout.php:392 modules/content-slider/content-slider.php:338 modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
1158
+ #: modules/separator/separator.php:34
1159
+ msgid "Color"
1160
+ msgstr "สี"
1161
+
1162
+ #: includes/column-settings.php:38 includes/row-settings.php:60 modules/menu/menu.php:178 modules/post-carousel/post-carousel.php:401 modules/post-slider/post-slider.php:699
1163
+ msgid "Link Color"
1164
+ msgstr "สีของลิงค์"
1165
+
1166
+ #: includes/column-settings.php:46 includes/row-settings.php:68 modules/menu/menu.php:196 modules/post-carousel/post-carousel.php:406 modules/post-slider/post-slider.php:715
1167
+ msgid "Link Hover Color"
1168
+ msgstr "สีของลิงค์เมื่อเอาเมาส์ไปวาง"
1169
+
1170
+ #: includes/column-settings.php:54 includes/row-settings.php:76
1171
+ msgid "Heading Color"
1172
+ msgstr "สีส่วนหัว"
1173
+
1174
+ #: includes/column-settings.php:63 includes/row-settings.php:85 modules/post-slider/post-slider.php:463
1175
+ msgid "Background"
1176
+ msgstr "พื้นหลัง"
1177
+
1178
+ #: includes/column-settings.php:67 includes/column-settings.php:215 includes/row-settings.php:89 includes/row-settings.php:394 modules/callout/callout.php:475 modules/content-slider/content-slider.php:332 modules/content-slider/content-slider.php:379 modules/content-slider/content-slider.php:597
1179
+ #: modules/content-slider/content-slider.php:739 modules/slideshow/slideshow.php:347
1180
+ msgid "Type"
1181
+ msgstr "ประเภท"
1182
+
1183
+ #: includes/column-settings.php:70 includes/row-settings.php:92 modules/content-slider/content-slider.php:339
1184
+ msgctxt "Background type."
1185
+ msgid "None"
1186
+ msgstr "ไม่มี"
1187
+
1188
+ #: includes/column-settings.php:71 includes/row-settings.php:93
1189
+ msgctxt "Background type."
1190
+ msgid "Color"
1191
+ msgstr "สี"
1192
+
1193
+ #: includes/column-settings.php:72 includes/row-settings.php:94
1194
+ msgctxt "Background type."
1195
+ msgid "Photo"
1196
+ msgstr "ภาพถ่าย"
1197
+
1198
+ #: includes/column-settings.php:89 includes/row-settings.php:129 modules/button/button.php:124 modules/callout/callout.php:405 modules/callout/callout.php:519 modules/content-slider/content-slider.php:364 modules/content-slider/content-slider.php:640 modules/cta/cta.php:198 modules/cta/cta.php:274
1199
+ #: modules/icon-group/icon-group.php:64 modules/icon/icon.php:95 modules/subscribe-form/subscribe-form.php:192
1200
+ msgid "Background Color"
1201
+ msgstr "สีพื้นหลัง"
1202
+
1203
+ #: includes/column-settings.php:101 includes/column-settings.php:256 includes/row-settings.php:141 includes/row-settings.php:435 modules/separator/separator.php:44
1204
+ msgid "Opacity"
1205
+ msgstr "ความทึบ"
1206
+
1207
+ #: includes/column-settings.php:113 includes/row-settings.php:153 modules/content-slider/content-slider.php:360
1208
+ msgid "Background Photo"
1209
+ msgstr "รูปภาพพื้นหลัง"
1210
+
1211
+ #: includes/column-settings.php:117 includes/row-settings.php:157 includes/row-settings.php:345 modules/callout/callout.php:317 modules/callout/callout.php:333 modules/callout/callout.php:337 modules/content-slider/content-slider.php:336 modules/content-slider/content-slider.php:405
1212
+ #: modules/content-slider/content-slider.php:755 modules/photo/photo.php:25 modules/photo/photo.php:408
1213
+ msgid "Photo"
1214
+ msgstr "ภาพถ่าย"
1215
+
1216
+ #: includes/column-settings.php:124 includes/row-settings.php:164
1217
+ msgid "Repeat"
1218
+ msgstr "เล่นซ้ำ"
1219
+
1220
+ #: includes/column-settings.php:127 includes/row-settings.php:167
1221
+ msgctxt "Background repeat."
1222
+ msgid "None"
1223
+ msgstr "ไม่มี"
1224
+
1225
+ #: includes/column-settings.php:128 includes/row-settings.php:168
1226
+ msgctxt "Background repeat."
1227
+ msgid "Tile"
1228
+ msgstr "แบบแผ่น"
1229
+
1230
+ #: includes/column-settings.php:129 includes/row-settings.php:169
1231
+ msgctxt "Background repeat."
1232
+ msgid "Horizontal"
1233
+ msgstr "แนวนอน"
1234
+
1235
+ #: includes/column-settings.php:130 includes/row-settings.php:170
1236
+ msgctxt "Background repeat."
1237
+ msgid "Vertical"
1238
+ msgstr "แนวตั้ง"
1239
+
1240
+ #: includes/column-settings.php:132 includes/row-settings.php:172
1241
+ msgid "Repeat applies to how the image should display in the background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the background horizontally and vertically. You can also specify the image to only repeat horizontally or vertically."
1242
+ msgstr "ทำซ้ำนำไปใช้กับวิธีการที่ภาพจะแสดงในพื้นหลัง หากเลือกไม่มีจะแสดงภาพที่อัปโหลด แบบแผ่นจะทำซ้ำภาพหลาย ๆ ครั้งตามความจำเป็นเพื่อเติมเต็มพื้นหลังทั้งแนวนอนและแนวตั้ง นอกจากนี้คุณยังสามารถระบุภาพที่จะทำซ้ำเฉพาะในแนวตั้งหรือแนวนอนได้"
1243
+
1244
+ #: includes/column-settings.php:142 includes/row-settings.php:182
1245
+ msgid "Left Top"
1246
+ msgstr "ด้านซ้ายบน"
1247
+
1248
+ #: includes/column-settings.php:143 includes/row-settings.php:183
1249
+ msgid "Left Center"
1250
+ msgstr "ด้านซ้ายกึ่งกลาง"
1251
+
1252
+ #: includes/column-settings.php:144 includes/row-settings.php:184
1253
+ msgid "Left Bottom"
1254
+ msgstr "ด้านซ้ายล่าง"
1255
+
1256
+ #: includes/column-settings.php:145 includes/row-settings.php:185
1257
+ msgid "Right Top"
1258
+ msgstr "ด้านขวาบน"
1259
+
1260
+ #: includes/column-settings.php:146 includes/row-settings.php:186
1261
+ msgid "Right Center"
1262
+ msgstr "ด้านขวากึ่งกลาง"
1263
+
1264
+ #: includes/column-settings.php:147 includes/row-settings.php:187
1265
+ msgid "Right Bottom"
1266
+ msgstr "ด้านขวาล่าง"
1267
+
1268
+ #: includes/column-settings.php:148 includes/row-settings.php:188
1269
+ msgid "Center Top"
1270
+ msgstr "ตรงกลางบน"
1271
+
1272
+ #: includes/column-settings.php:149 includes/row-settings.php:189 modules/button/button.php:227 modules/callout/callout.php:252 modules/content-slider/content-slider.php:478 modules/cta/cta.php:127 modules/heading/heading.php:90 modules/heading/heading.php:162 modules/icon-group/icon-group.php:110
1273
+ #: modules/icon/icon.php:133 modules/menu/menu.php:158 modules/photo/photo.php:434 modules/social-buttons/social-buttons.php:100
1274
+ msgid "Center"
1275
+ msgstr "ตรงกึ่งกลาง"
1276
+
1277
+ #: includes/column-settings.php:150 includes/row-settings.php:190
1278
+ msgid "Center Bottom"
1279
+ msgstr "ตรงกลางล่าง"
1280
+
1281
+ #: includes/column-settings.php:152 includes/row-settings.php:192
1282
+ msgid "Position will tell the image where it should sit in the background."
1283
+ msgstr "ตำแหน่งจะบอกภาพว่ามันควรจะอยู่ในภาพพื้นหลัง"
1284
+
1285
+ #: includes/column-settings.php:159 includes/row-settings.php:199
1286
+ msgid "Attachment"
1287
+ msgstr "แนบสื่อ"
1288
+
1289
+ #: includes/column-settings.php:162 includes/row-settings.php:202 modules/post-grid/post-grid.php:78
1290
+ msgid "Scroll"
1291
+ msgstr "ม้วน"
1292
+
1293
+ #: includes/column-settings.php:163 includes/global-settings.php:69 includes/global-settings.php:83 includes/row-settings.php:19 includes/row-settings.php:37 includes/row-settings.php:203
1294
+ msgid "Fixed"
1295
+ msgstr "อยู่กับที่"
1296
+
1297
+ #: includes/column-settings.php:165 includes/row-settings.php:205
1298
+ msgid "Attachment will specify how the image reacts when scrolling a page. When scrolling is selected, the image will scroll with page scrolling. This is the default setting. Fixed will allow the image to scroll within the background if fill is selected in the scale setting."
1299
+ msgstr "สิ่งที่แนบมาจะระบุวิธีการตอบสนองภาพเมื่อเลื่อนหน้า เมื่อการเลื่อนได้ถูกเลือก ภาพที่จะเลื่อนด้วยการเลื่อนหน้า นี้เป็นค่าเริ่มต้น การคงที่จะช่วยให้ภาพเลื่อนอยู่ในพื้นหลังถ้าเติมเต็มถูกเลือกในการตั้งค่าขนาด"
1300
+
1301
+ #: includes/column-settings.php:172 includes/row-settings.php:212
1302
+ msgid "Scale"
1303
+ msgstr "ย่อขยาย"
1304
+
1305
+ #: includes/column-settings.php:175 includes/row-settings.php:215
1306
+ msgctxt "Background scale."
1307
+ msgid "None"
1308
+ msgstr "ไม่มี"
1309
+
1310
+ #: includes/column-settings.php:176 includes/row-settings.php:216
1311
+ msgid "Fit"
1312
+ msgstr "พอดี"
1313
+
1314
+ #: includes/column-settings.php:177 includes/row-settings.php:217
1315
+ msgid "Fill"
1316
+ msgstr "เติม"
1317
+
1318
+ #: includes/column-settings.php:179 includes/row-settings.php:219
1319
+ msgid "Scale applies to how the image should display in the background. You can select either fill or fit to the background."
1320
+ msgstr "ขนาดเพื่อใช้กับวิธีการที่ภาพจะแสดงในพื้นหลัง คุณสามารถเลือกระหว่าง เติมเต็ม หรือ พอดี กับพื้นหลัง"
1321
+
1322
+ #: includes/column-settings.php:187 includes/row-settings.php:366
1323
+ msgid "Background Overlay"
1324
+ msgstr "การทับของพื้นหลัง"
1325
+
1326
+ #: includes/column-settings.php:191 includes/row-settings.php:370
1327
+ msgid "Overlay Color"
1328
+ msgstr "การทับซ้อนสี"
1329
+
1330
+ #: includes/column-settings.php:199 includes/row-settings.php:378
1331
+ msgid "Overlay Opacity"
1332
+ msgstr "ซ้อนทับความทึบ"
1333
+
1334
+ #: includes/column-settings.php:211 includes/row-settings.php:390
1335
+ msgid "Border"
1336
+ msgstr "ขอบ"
1337
+
1338
+ #: includes/column-settings.php:217 includes/row-settings.php:396
1339
+ msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
1340
+ msgstr "ประเภทของขอบที่จะใช้ ขอบคู่จะต้องมีความกว้างอย่างน้อย 3px เพิ่อที่จะแสดงผลได้ถูกต้อง"
1341
+
1342
+ #: includes/column-settings.php:219 includes/row-settings.php:398
1343
+ msgctxt "Border type."
1344
+ msgid "None"
1345
+ msgstr "ไม่มี"
1346
+
1347
+ #: includes/column-settings.php:220 includes/row-settings.php:399 modules/separator/separator.php:75
1348
+ msgctxt "Border type."
1349
+ msgid "Solid"
1350
+ msgstr "แข็ง"
1351
+
1352
+ #: includes/column-settings.php:221 includes/row-settings.php:400 modules/separator/separator.php:76
1353
+ msgctxt "Border type."
1354
+ msgid "Dashed"
1355
+ msgstr "ประ"
1356
+
1357
+ #: includes/column-settings.php:222 includes/row-settings.php:401 modules/separator/separator.php:77
1358
+ msgctxt "Border type."
1359
+ msgid "Dotted"
1360
+ msgstr "จุด"
1361
+
1362
+ #: includes/column-settings.php:223 includes/row-settings.php:402 modules/separator/separator.php:78
1363
+ msgctxt "Border type."
1364
+ msgid "Double"
1365
+ msgstr "คู่"
1366
+
1367
+ #: includes/column-settings.php:267 includes/row-settings.php:446
1368
+ msgid "Top Width"
1369
+ msgstr "ความกว้างด้านบน"
1370
+
1371
+ #: includes/column-settings.php:279 includes/row-settings.php:458
1372
+ msgid "Bottom Width"
1373
+ msgstr "ความกว้างด้านล่าง"
1374
+
1375
+ #: includes/column-settings.php:291 includes/row-settings.php:470
1376
+ msgid "Left Width"
1377
+ msgstr "ความกว้างซ้าย"
1378
+
1379
+ #: includes/column-settings.php:303 includes/row-settings.php:482
1380
+ msgid "Right Width"
1381
+ msgstr "ความกว้าง"
1382
+
1383
+ #: includes/column-settings.php:318 includes/module-settings.php:6 includes/row-settings.php:497 modules/content-slider/content-slider.php:274
1384
+ msgid "Advanced"
1385
+ msgstr "ขั้นสูง"
1386
+
1387
+ #: includes/column-settings.php:321 includes/global-settings.php:41 includes/global-settings.php:94 includes/module-settings.php:9 includes/row-settings.php:500
1388
+ msgid "Margins"
1389
+ msgstr "ความห่าง"
1390
+
1391
+ #: includes/column-settings.php:325 includes/column-settings.php:378 includes/module-settings.php:13 includes/row-settings.php:504 includes/row-settings.php:557 modules/slideshow/slideshow.php:483
1392
+ msgid "Top"
1393
+ msgstr "ด้านบน"
1394
+
1395
+ #: includes/column-settings.php:337 includes/column-settings.php:390 includes/module-settings.php:25 includes/row-settings.php:516 includes/row-settings.php:569 modules/post-slider/post-slider.php:632 modules/slideshow/slideshow.php:482
1396
+ msgid "Bottom"
1397
+ msgstr "ด้านล่าง"
1398
+
1399
+ #: includes/column-settings.php:349 includes/column-settings.php:402 includes/module-settings.php:37 includes/row-settings.php:528 includes/row-settings.php:581 modules/button/button.php:228 modules/callout/callout.php:253 modules/content-slider/content-slider.php:477 modules/cta/cta.php:126
1400
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161 modules/icon-group/icon-group.php:111 modules/icon/icon.php:134 modules/menu/menu.php:157 modules/photo/photo.php:433 modules/post-slider/post-slider.php:630 modules/post-slider/post-slider.php:649
1401
+ #: modules/social-buttons/social-buttons.php:101
1402
+ msgid "Left"
1403
+ msgstr "ซ้าย"
1404
+
1405
+ #: includes/column-settings.php:361 includes/column-settings.php:414 includes/module-settings.php:49 includes/row-settings.php:540 includes/row-settings.php:593 modules/button/button.php:229 modules/callout/callout.php:254 modules/content-slider/content-slider.php:479 modules/cta/cta.php:128
1406
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163 modules/icon-group/icon-group.php:112 modules/icon/icon.php:135 modules/menu/menu.php:159 modules/photo/photo.php:435 modules/post-slider/post-slider.php:631 modules/post-slider/post-slider.php:650
1407
+ #: modules/social-buttons/social-buttons.php:102
1408
+ msgid "Right"
1409
+ msgstr "ขวา"
1410
+
1411
+ #: includes/column-settings.php:374 includes/global-settings.php:49 includes/row-settings.php:553 modules/button/button.php:242 modules/callout/callout.php:609 modules/content-slider/content-slider.php:713 modules/cta/cta.php:355 modules/subscribe-form/subscribe-form.php:273
1412
+ msgid "Padding"
1413
+ msgstr "ระยะห่าง"
1414
+
1415
+ #: includes/column-settings.php:427 includes/global-settings.php:103 includes/module-settings.php:62 includes/row-settings.php:606
1416
+ msgid "Responsive Layout"
1417
+ msgstr "เลย์เอ้าท์ Responsive"
1418
+
1419
+ #: includes/column-settings.php:431 includes/module-settings.php:66 includes/row-settings.php:610 modules/slideshow/slideshow.php:298
1420
+ msgid "Display"
1421
+ msgstr "การแสดงผล"
1422
+
1423
+ #: includes/column-settings.php:433 includes/module-settings.php:68 includes/row-settings.php:612
1424
+ msgid "Always"
1425
+ msgstr "เสมอ"
1426
+
1427
+ #: includes/column-settings.php:434 includes/module-settings.php:69 includes/row-settings.php:613
1428
+ msgid "Large Devices Only"
1429
+ msgstr "เฉพาะอุปกรณ์ขนาดใหญ่เท่านั้น"
1430
+
1431
+ #: includes/column-settings.php:435 includes/module-settings.php:70 includes/row-settings.php:614
1432
+ msgid "Large &amp; Medium Devices Only"
1433
+ msgstr "เฉพาะอุปกรณ์ที่มีขนาดใหญ่และขนาดกลาง"
1434
+
1435
+ #: includes/column-settings.php:436 includes/module-settings.php:71 includes/row-settings.php:615
1436
+ msgid "Medium Devices Only"
1437
+ msgstr "เฉพาะอุปกรณ์ขนาดกลางเท่านั้น"
1438
+
1439
+ #: includes/column-settings.php:437 includes/module-settings.php:72 includes/row-settings.php:616
1440
+ msgid "Medium &amp; Small Devices Only"
1441
+ msgstr "เฉพาะอุปกรณ์ขนาดกลางและขนาดเล็กเท่านั้น"
1442
+
1443
+ #: includes/column-settings.php:438 includes/module-settings.php:73 includes/row-settings.php:617
1444
+ msgid "Small Devices Only"
1445
+ msgstr "เฉพาะอุปกรณ์ขนาดเล็กเท่านั้น"
1446
+
1447
+ #: includes/column-settings.php:440
1448
+ msgid "Choose whether to show or hide this column at different device sizes."
1449
+ msgstr "เลือกว่าจะแสดงหรือซ่อนคอลัมน์นี้บนอุปกรณ์ที่มีขนาดแตกต่างกัน"
1450
+
1451
+ #: includes/column-settings.php:447
1452
+ msgid "Medium Device Width"
1453
+ msgstr "ความกว้างอุปกรณ์ขนาดกลาง"
1454
+
1455
+ #: includes/column-settings.php:448
1456
+ msgid "The width of this column on medium devices such as tablets."
1457
+ msgstr "ความกว้างของคอลัมน์นี้บนอุปกรณ์ขนาดกลางเช่นแท็บเล็ต"
1458
+
1459
+ #: includes/column-settings.php:450 includes/column-settings.php:478 modules/callout/callout.php:284 modules/content-slider/content-slider.php:449 modules/cta/cta.php:168 modules/heading/heading.php:117 modules/heading/heading.php:144 modules/heading/heading.php:174 modules/menu/menu.php:156
1460
+ #: modules/post-slider/post-slider.php:602
1461
+ msgid "Default"
1462
+ msgstr "ค่าเริ่มต้น"
1463
+
1464
+ #: includes/column-settings.php:451 includes/column-settings.php:479 modules/button/button.php:202 modules/callout/callout.php:285 modules/content-slider/content-slider.php:450 modules/cta/cta.php:169 modules/heading/heading.php:118 modules/heading/heading.php:145 modules/heading/heading.php:175
1465
+ #: modules/post-slider/post-slider.php:603 modules/social-buttons/social-buttons.php:74
1466
+ msgid "Custom"
1467
+ msgstr "กำหนดเอง"
1468
+
1469
+ #: includes/column-settings.php:464
1470
+ msgid "Custom Medium Device Width"
1471
+ msgstr "ความกว้างอุปกรณ์ขนาดกลางที่กำหนดเอง"
1472
+
1473
+ #: includes/column-settings.php:475
1474
+ msgid "Small Device Width"
1475
+ msgstr "ความกว้างของอุปกรณ์ขนาดเล็ก"
1476
+
1477
+ #: includes/column-settings.php:476
1478
+ msgid "The width of this column on small devices such as phones."
1479
+ msgstr "ความกว้างของคอลัมน์นี้ในอุปกรณ์ขนาดเล็กเช่นโทรศัพท์"
1480
+
1481
+ #: includes/column-settings.php:492
1482
+ msgid "Custom Small Device Width"
1483
+ msgstr "ความกว้างของอุปกรณ์ขนาดเล็กที่กำหนดเอง"
1484
+
1485
+ #: includes/column-settings.php:504 includes/module-settings.php:115 includes/row-settings.php:627
1486
+ msgid "CSS Selectors"
1487
+ msgstr "CSS Selectors"
1488
+
1489
+ #: includes/column-settings.php:508 includes/loop-settings.php:28 includes/module-settings.php:119 includes/row-settings.php:631
1490
+ msgid "ID"
1491
+ msgstr "ID"
1492
+
1493
+ #: includes/column-settings.php:509
1494
+ msgid "A unique ID that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
1495
+ msgstr "ID เฉพาะตัวที่จะนำไปใช้ใน HTML ของคอลัมน์นี้ ต้องเริ่มต้นด้วยตัวอักษรและมีเพียง - , _ , ตัวอักษร หรือตัวเลข ไม่เว้นช่องว่าง"
1496
+
1497
+ #: includes/column-settings.php:516
1498
+ msgid "CSS Class"
1499
+ msgstr "CSS Class"
1500
+
1501
+ #: includes/column-settings.php:517
1502
+ msgid "A class that will be applied to this column's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
1503
+ msgstr "Class ที่จะนำไปใช้กับ HTML ของคอลัมน์นี้ ต้องเริ่มต้นด้วยตัวอักษรและมีเพียง - , _ , ตัวอักษรหรือตัวเลข แยกหลาย Class ด้วยช่องว่าง"
1504
+
1505
+ #: includes/field-form.php:28
1506
+ #, php-format
1507
+ msgctxt "%s stands for form field label."
1508
+ msgid "Edit %s"
1509
+ msgstr "แก้ไข %s"
1510
+
1511
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
1512
+ msgid "Select Icon"
1513
+ msgstr "เลือกไอคอน"
1514
+
1515
+ #: includes/field-icon.php:5 includes/field-photo.php:13
1516
+ msgid "Replace"
1517
+ msgstr "แทนที่"
1518
+
1519
+ #: includes/field-icon.php:7 includes/ui-js-config.php:65 includes/ui-js-templates.php:15 includes/ui-js-templates.php:32 includes/ui-js-templates.php:56
1520
+ msgid "Remove"
1521
+ msgstr "ลบ"
1522
+
1523
+ #: includes/field-link.php:3
1524
+ msgid "Select"
1525
+ msgstr "เลือก"
1526
+
1527
+ #: includes/field-link.php:5
1528
+ msgid "Enter a post title to search."
1529
+ msgstr "ป้อนชื่อโพสต์ที่จะค้นหา"
1530
+
1531
+ #: includes/field-link.php:6 includes/field-suggest.php:7
1532
+ msgid "Start typing..."
1533
+ msgstr "เริ่มพิมพ์ ..."
1534
+
1535
+ #: includes/field-link.php:7 includes/icon-selector.php:28 includes/settings.php:71 includes/template-selector.php:92 includes/ui-js-config.php:22 includes/ui-js-templates.php:72
1536
+ msgid "Cancel"
1537
+ msgstr "ยกเลิก"
1538
+
1539
+ #: includes/field-multiple-photos.php:20
1540
+ #, php-format
1541
+ msgid "1 Photo Selected"
1542
+ msgid_plural "%d Photos Selected"
1543
+ msgstr[0] "%d ภาพที่เลือก"
1544
+
1545
+ #: includes/field-multiple-photos.php:22
1546
+ msgid "Create Gallery"
1547
+ msgstr "สร้างแกลลอรี่"
1548
+
1549
+ #: includes/field-multiple-photos.php:23
1550
+ msgid "Edit Gallery"
1551
+ msgstr "แก้ไขแกลลอรี่"
1552
+
1553
+ #: includes/field-multiple-photos.php:24
1554
+ msgid "Add Photos"
1555
+ msgstr "เพิ่มภาพถ่าย"
1556
+
1557
+ #: includes/field-photo.php:3 includes/ui-js-config.php:71
1558
+ msgid "Select Photo"
1559
+ msgstr "เลือกรูปภาพ"
1560
+
1561
+ #: includes/field-video.php:3 includes/ui-js-config.php:73
1562
+ msgid "Select Video"
1563
+ msgstr "เลือกวิดีโอ"
1564
+
1565
+ #: includes/field-video.php:17
1566
+ msgid "Replace Video"
1567
+ msgstr "แทนที่วิดีโอ"
1568
+
1569
+ #: includes/global-settings.php:7 includes/node-template-settings.php:7 includes/template-settings.php:7 includes/user-template-settings.php:7 modules/accordion/accordion.php:110 modules/button/button.php:59 modules/callout/callout.php:210 modules/contact-form/contact-form.php:58
1570
+ #: modules/content-slider/content-slider.php:191 modules/content-slider/content-slider.php:315 modules/cta/cta.php:68 modules/gallery/gallery.php:220 modules/heading/heading.php:26 modules/html/html.php:26 modules/icon-group/icon-group.php:128 modules/icon/icon.php:27 modules/map/map.php:26
1571
+ #: modules/menu/menu.php:82 modules/photo/photo.php:384 modules/pricing-table/pricing-table.php:87 modules/rich-text/rich-text.php:26 modules/separator/separator.php:27 modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:264 modules/social-buttons/social-buttons.php:64
1572
+ #: modules/subscribe-form/subscribe-form.php:87 modules/tabs/tabs.php:77 modules/testimonials/testimonials.php:30 modules/testimonials/testimonials.php:200 modules/video/video.php:76 modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
1573
+ msgid "General"
1574
+ msgstr "ทั่วไป"
1575
+
1576
+ #: includes/global-settings.php:8
1577
+ msgid "Note: These settings apply to all posts and pages."
1578
+ msgstr "หมายเหตุ: การตั้งค่าเหล่านี้ใช้กับทุกโพสต์และทุกหน้า"
1579
+
1580
+ #: includes/global-settings.php:11
1581
+ msgid "Default Page Heading"
1582
+ msgstr "หน้าหัวเรื่องเริ่มต้น"
1583
+
1584
+ #: includes/global-settings.php:15
1585
+ msgctxt "General settings form field label. Intended meaning: \"Show page heading?\""
1586
+ msgid "Show"
1587
+ msgstr "แสดง"
1588
+
1589
+ #: includes/global-settings.php:26
1590
+ msgid "Choosing no will hide the default theme heading for the \"Page\" post type. You will also be required to enter some basic CSS for this to work if you choose no."
1591
+ msgstr "หาเลือกไม่ จะซ่อนหัวรูปแบบเริ่มต้นสำหรับ \"หน้า\" ประเภทโพสต์ นอกจากนี้คุณยังจะต้องใส่ CSS พื้นฐานบางอย่างสำหรับการทำงานถ้าคุณเลือกไม่"
1592
+
1593
+ #: includes/global-settings.php:30
1594
+ msgid "CSS Selector"
1595
+ msgstr "CSS Selector"
1596
+
1597
+ #: includes/global-settings.php:32
1598
+ msgid "Enter a CSS selector for the default page heading to hide it."
1599
+ msgstr "ใส่ CSS selector สำหรับหน้าหัวข้อเริ่มต้นที่เพื่อซ่อนมัน"
1600
+
1601
+ #: includes/global-settings.php:37
1602
+ msgid "Rows"
1603
+ msgstr "แถว"
1604
+
1605
+ #: includes/global-settings.php:57
1606
+ msgid "Max Width"
1607
+ msgstr "ความกว้างสูงสุด"
1608
+
1609
+ #: includes/global-settings.php:62
1610
+ msgid "All rows will default to this width. You can override this and make a row full width in the settings for each row."
1611
+ msgstr "แถวทั้งหมดจะเริ่มต้นกับความกว้างนี้ คุณสามารถแทนที่นี้และทำให้แถวเต็มความกว้างในการตั้งค่าสำหรับแต่ละแถว"
1612
+
1613
+ #: includes/global-settings.php:66
1614
+ msgid "Default Row Width"
1615
+ msgstr "ขนาดความกว้างแถวเริ่มต้น"
1616
+
1617
+ #: includes/global-settings.php:70 includes/global-settings.php:84 includes/row-settings.php:20 includes/row-settings.php:38 modules/button/button.php:201 modules/callout/callout.php:596
1618
+ msgid "Full Width"
1619
+ msgstr "ความกว้างแบบเต็ม"
1620
+
1621
+ #: includes/global-settings.php:80
1622
+ msgid "Default Row Content Width"
1623
+ msgstr "ขนาดความกว้างแถวเนื้อหาเริ่มต้น"
1624
+
1625
+ #: includes/global-settings.php:107
1626
+ msgctxt "General settings form field label. Intended meaning: \"Responsive layout enabled?\""
1627
+ msgid "Enabled"
1628
+ msgstr "เปิดใช้งาน"
1629
+
1630
+ #: includes/global-settings.php:121
1631
+ msgctxt "General settings form field label. Intended meaning: \"Enable auto spacing for responsive layouts?\""
1632
+ msgid "Enable Auto Spacing"
1633
+ msgstr "เปิดการใช้งานระยะห่างอัตโนมัติ"
1634
+
1635
+ #: includes/global-settings.php:127
1636
+ msgid "When auto spacing is enabled, the builder will automatically adjust the margins and padding in your layout once the small device breakpoint is reached. Most users will want to leave this enabled."
1637
+ msgstr "เมื่อระยะห่างอัตโนมัติถูกเปิดใช้งาน ตัวสร้างจะปรับขนาดขอบและระยะห่างในเลย์เอ้าท์ของคุณเมื่อจุดเบรกพอยต์อุปกรณ์ขนาดเล็กที่จะมาถึง ผู้ใช้ส่วนใหญ่จะต้องการที่จะเปิดใช้งานนี้ทิ้งไว้"
1638
+
1639
+ #: includes/global-settings.php:131
1640
+ msgid "Medium Device Breakpoint"
1641
+ msgstr "จุดเบรกพอยต์อุปกรณ์ขนาดกลาง"
1642
+
1643
+ #: includes/global-settings.php:136
1644
+ msgid "The browser width at which the layout will adjust for medium devices such as tablets."
1645
+ msgstr "ความกว้างของเบราว์เซอร์ที่จะปรับเลย์เอ้าท์เป็นสำหรับอุปกรณ์ขนาดกลางเช่นแท็บเล็ต"
1646
+
1647
+ #: includes/global-settings.php:140
1648
+ msgid "Small Device Breakpoint"
1649
+ msgstr "จุดเบรกพอยต์อุปกรณ์ขนาดเล็ก"
1650
+
1651
+ #: includes/global-settings.php:145
1652
+ msgid "The browser width at which the layout will adjust for small devices such as phones."
1653
+ msgstr "ความกว้างของเบราว์เซอร์ที่จะปรับเลย์เอ้าท์เป็นสำหรับอุปกรณ์ขนาดเล็กเช่นโทรศัพท์"
1654
+
1655
+ #: includes/icon-selector.php:5
1656
+ msgctxt "Select option for showing all icon libraries."
1657
+ msgid "All Libraries"
1658
+ msgstr "Libraries ทั้งหมด"
1659
+
1660
+ #: includes/loop-settings.php:20
1661
+ msgid "Post Type"
1662
+ msgstr "ประเภทโลโก้"
1663
+
1664
+ #: includes/loop-settings.php:26
1665
+ msgid "Order By"
1666
+ msgstr "เรียงตาม:"
1667
+
1668
+ #: includes/loop-settings.php:29 modules/post-carousel/post-carousel.php:328 modules/post-grid/post-grid.php:158 modules/post-slider/post-slider.php:508 modules/woocommerce/woocommerce.php:189
1669
+ msgid "Date"
1670
+ msgstr "วันที่"
1671
+
1672
+ #: includes/loop-settings.php:30
1673
+ msgid "Date Last Modified"
1674
+ msgstr "วันที่แก้ไขล่าสุด"
1675
+
1676
+ #: includes/loop-settings.php:31 modules/pricing-table/pricing-table.php:90 modules/pricing-table/pricing-table.php:94
1677
+ msgid "Title"
1678
+ msgstr "ชื่อเรื่อง"
1679
+
1680
+ #: includes/loop-settings.php:32 modules/post-carousel/post-carousel.php:319 modules/post-grid/post-grid.php:149 modules/post-slider/post-slider.php:499
1681
+ msgid "Author"
1682
+ msgstr "ผู้เขียน"
1683
+
1684
+ #: includes/loop-settings.php:33
1685
+ msgid "Comment Count"
1686
+ msgstr "จำนวนความคิดเห็น"
1687
+
1688
+ #: includes/loop-settings.php:34
1689
+ msgid "Menu Order"
1690
+ msgstr "การเรียงเมนู"
1691
+
1692
+ #: includes/loop-settings.php:35
1693
+ msgid "Random"
1694
+ msgstr "สุ่ม"
1695
+
1696
+ #: includes/loop-settings.php:42
1697
+ msgid "Order"
1698
+ msgstr "เรียง"
1699
+
1700
+ #: includes/loop-settings.php:44 modules/woocommerce/woocommerce.php:199
1701
+ msgid "Descending"
1702
+ msgstr "มากไปหาน้อย"
1703
+
1704
+ #: includes/loop-settings.php:45 modules/woocommerce/woocommerce.php:198
1705
+ msgid "Ascending"
1706
+ msgstr "จากน้อยไปมาก"
1707
+
1708
+ #: includes/loop-settings.php:52
1709
+ msgctxt "How many posts to skip."
1710
+ msgid "Offset"
1711
+ msgstr "ชดเชย"
1712
+
1713
+ #: includes/loop-settings.php:55
1714
+ msgid "Skip this many posts that match the specified criteria."
1715
+ msgstr "ข้ามโพสต์จำนวนมากนี้ ที่ตรงกับเกณฑ์ที่กำหนดไว้"
1716
+
1717
+ #: includes/loop-settings.php:62
1718
+ msgid "Filter"
1719
+ msgstr "ตัวกรอง"
1720
+
1721
+ #: includes/loop-settings.php:73
1722
+ #, php-format
1723
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
1724
+ msgstr "ป้อนรายการที่คั่นด้วยเครื่องหมายจุลภาค %s เฉพาะที่มี %s เท่านั้นจะถูกแสดงให้เห็น"
1725
+
1726
+ #: includes/loop-settings.php:86
1727
+ #, php-format
1728
+ msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
1729
+ msgstr "ป้อนรายการที่คั่นด้วยเครื่องหมายจุลภาค %s เฉพาะโพสต์ที่มี %s เหล่านี้เท่านั้นจะถูกแสดงให้เห็น"
1730
+
1731
+ #: includes/loop-settings.php:100
1732
+ msgid "Authors"
1733
+ msgstr "ผู้เขียน"
1734
+
1735
+ #: includes/loop-settings.php:101
1736
+ msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
1737
+ msgstr "ป้อนจุลภาคคั่นรายการชื่อผู้เขียน เฉพาะโพสต์ที่มีผู้เขียนเหล่านี้เท่านั้นจะถูกแสดงให้เห็น"
1738
+
1739
+ #: includes/module-settings.php:75
1740
+ msgid "Choose whether to show or hide this module at different device sizes."
1741
+ msgstr "เลือกว่าจะแสดงหรือซ่อนโมดูลนี้บนอุปกรณ์ที่มีขนาดแตกต่างกัน"
1742
+
1743
+ #: includes/module-settings.php:83
1744
+ msgid "Animation"
1745
+ msgstr "ภาพเคลื่อนไหว"
1746
+
1747
+ #: includes/module-settings.php:89
1748
+ msgctxt "Animation style."
1749
+ msgid "None"
1750
+ msgstr "ไม่มี"
1751
+
1752
+ #: includes/module-settings.php:90
1753
+ msgctxt "Animation style."
1754
+ msgid "Fade In"
1755
+ msgstr "จางเข้า"
1756
+
1757
+ #: includes/module-settings.php:91
1758
+ msgctxt "Animation style."
1759
+ msgid "Slide Left"
1760
+ msgstr "เลื่อนซ้าย"
1761
+
1762
+ #: includes/module-settings.php:92
1763
+ msgctxt "Animation style."
1764
+ msgid "Slide Right"
1765
+ msgstr "ด้านขวากึ่งกลาง"
1766
+
1767
+ #: includes/module-settings.php:93
1768
+ msgctxt "Animation style."
1769
+ msgid "Slide Up"
1770
+ msgstr "เลื่อนขึ้น"
1771
+
1772
+ #: includes/module-settings.php:94
1773
+ msgctxt "Animation style."
1774
+ msgid "Slide Down"
1775
+ msgstr "เลื่อนลง"
1776
+
1777
+ #: includes/module-settings.php:102 modules/content-slider/content-slider.php:230 modules/post-carousel/post-carousel.php:145 modules/post-slider/post-slider.php:363 modules/testimonials/testimonials.php:91
1778
+ msgid "Delay"
1779
+ msgstr "หน่วง"
1780
+
1781
+ #: includes/module-settings.php:106 includes/row-settings.php:290 includes/row-settings.php:321 modules/content-slider/content-slider.php:234 modules/content-slider/content-slider.php:251 modules/post-carousel/post-carousel.php:148 modules/post-carousel/post-carousel.php:164
1782
+ #: modules/post-slider/post-slider.php:366 modules/post-slider/post-slider.php:391 modules/slideshow/slideshow.php:393 modules/slideshow/slideshow.php:418 modules/slideshow/slideshow.php:589 modules/testimonials/testimonials.php:95 modules/testimonials/testimonials.php:112
1783
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1784
+ msgid "seconds"
1785
+ msgstr "วินาที"
1786
+
1787
+ #: includes/module-settings.php:107
1788
+ msgid "The amount of time in seconds before this animation starts."
1789
+ msgstr "ระยะเวลาเป็นวินาที ก่อนที่นิเมชั่นนี้จะเริ่มต้น"
1790
+
1791
+ #: includes/module-settings.php:120
1792
+ msgid "A unique ID that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
1793
+ msgstr "ID เฉพาะตัวที่จะนำไปใช้กับโมดูล HTML นี้ ต้องเริ่มต้นด้วยตัวอักษรและมี - , _ , ตัวอักษรหรือตัวเลข ไม่เว้นช่องว่าง"
1794
+
1795
+ #: includes/module-settings.php:127 includes/row-settings.php:639
1796
+ msgid "Class"
1797
+ msgstr "Class"
1798
+
1799
+ #: includes/module-settings.php:128
1800
+ msgid "A class that will be applied to this module's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
1801
+ msgstr "Class ที่จะนำไปใช้กับโมดูล HTML นี้ ต้องเริ่มต้นด้วยตัวอักษรและมีเพียง - , _ , ตัวอักษรหรือตัวเลข แยกหลาย Class ด้วยช่องว่าง"
1802
+
1803
+ #: includes/node-template-settings.php:4
1804
+ #, php-format
1805
+ msgctxt "%s stands for the type of node template being saved."
1806
+ msgid "Save %s Template"
1807
+ msgstr "บันทึก เทมเพลท %s"
1808
+
1809
+ #: includes/node-template-settings.php:14 includes/template-settings.php:14 includes/user-template-settings.php:15
1810
+ msgctxt "Template name."
1811
+ msgid "Name"
1812
+ msgstr "ชื่อ"
1813
+
1814
+ #: includes/node-template-settings.php:18
1815
+ msgctxt "Whether this is a global template or not."
1816
+ msgid "Global"
1817
+ msgstr "ส่วนกลาง"
1818
+
1819
+ #: includes/node-template-settings.php:19
1820
+ msgid "Global templates can be added to multiple pages and edited in one place."
1821
+ msgstr "เทมเพลทส่วนกลางสามารถเพิ่มลงในหลายๆหน้าและแก้ไขได้ในที่เดียว"
1822
+
1823
+ #: includes/row-settings.php:6 includes/ui-js-config.php:67 includes/ui-js-templates.php:12
1824
+ msgid "Row Settings"
1825
+ msgstr "การตั้งค่าแถว"
1826
+
1827
+ #: includes/row-settings.php:16 modules/button/button.php:197 modules/content-slider/content-slider.php:484
1828
+ msgid "Width"
1829
+ msgstr "ความกว้าง"
1830
+
1831
+ #: includes/row-settings.php:27
1832
+ msgid "Full width rows span the width of the page from edge to edge. Fixed rows are no wider than the Row Max Width set in the Global Settings."
1833
+ msgstr "แถวแบบเต็มความกว้างจะเป็นแบบช่วงความกว้างของหน้าจากขอบถึงขอบ แถวแบบคงที่จะไม่กว้างกว่าความกว้างแถวสูงสุดที่ตั้งอยู่ในการตั้งค่าส่วนกลาง"
1834
+
1835
+ #: includes/row-settings.php:34
1836
+ msgid "Content Width"
1837
+ msgstr "ความกว้างของเนื้อหา"
1838
+
1839
+ #: includes/row-settings.php:40
1840
+ msgid "Full width content spans the width of the page from edge to edge. Fixed content is no wider than the Row Max Width set in the Global Settings."
1841
+ msgstr "เนื้อหาแบบเต็มความกว้างจะเป็นแบบช่วงความกว้างของหน้าจากขอบถึงขอบ เนื้อหาแบบคงที่จะไม่กว้างกว่าความกว้างแถวสูงสุดที่ตั้งอยู่ในการตั้งค่าส่วนกลาง"
1842
+
1843
+ #: includes/row-settings.php:48 modules/button/button.php:120 modules/cta/cta.php:188 modules/heading/heading.php:72 modules/icon-group/icon-group.php:47 modules/icon/icon.php:78 modules/post-carousel/post-carousel.php:392 modules/post-grid/post-grid.php:297 modules/post-slider/post-slider.php:680
1844
+ msgid "Colors"
1845
+ msgstr "สี"
1846
+
1847
+ #: includes/row-settings.php:52 modules/button/button.php:139 modules/callout/callout.php:534 modules/content-slider/content-slider.php:529 modules/content-slider/content-slider.php:651 modules/content-slider/content-slider.php:764 modules/cta/cta.php:192 modules/cta/cta.php:289
1848
+ #: modules/heading/heading.php:77 modules/post-carousel/post-carousel.php:396 modules/post-grid/post-grid.php:301 modules/post-slider/post-slider.php:684 modules/subscribe-form/subscribe-form.php:207
1849
+ msgid "Text Color"
1850
+ msgstr "สีของข้อความ"
1851
+
1852
+ #: includes/row-settings.php:95
1853
+ msgctxt "Background type."
1854
+ msgid "Video"
1855
+ msgstr "วิดีโอ"
1856
+
1857
+ #: includes/row-settings.php:97
1858
+ msgctxt "Background type."
1859
+ msgid "Slideshow"
1860
+ msgstr "สไลด์โชว์"
1861
+
1862
+ #: includes/row-settings.php:101
1863
+ msgctxt "Background type."
1864
+ msgid "Parallax"
1865
+ msgstr "พารัลแลกซ์"
1866
+
1867
+ #: includes/row-settings.php:227
1868
+ msgid "Background Video"
1869
+ msgstr "วีดีโอพื้นหลัง"
1870
+
1871
+ #: includes/row-settings.php:231 modules/content-slider/content-slider.php:337 modules/video/video.php:19 modules/video/video.php:100
1872
+ msgid "Video"
1873
+ msgstr "วิดีโอ"
1874
+
1875
+ #: includes/row-settings.php:232
1876
+ msgid "An HTML5 video to use as the background of this row. Supported types are MP4, WebM and Ogg."
1877
+ msgstr "วิดีโอ HTML5 ที่จะใช้เป็นพื้นหลังของแถวนี้ ชนิดที่สนับสนุน ได้แก่ MP4, WebM และ Ogg"
1878
+
1879
+ #: includes/row-settings.php:239
1880
+ msgid "Fallback Photo"
1881
+ msgstr "สำรองภาพถ่าย"
1882
+
1883
+ #: includes/row-settings.php:240
1884
+ msgid "A photo that will be displayed if the video fails to load."
1885
+ msgstr "ภาพที่จะแสดงถ้าวิดีโอไม่สามารถโหลดได้"
1886
+
1887
+ #: includes/row-settings.php:248
1888
+ msgid "Background Slideshow"
1889
+ msgstr "สไลด์โชว์พื้นหลัง"
1890
+
1891
+ #: includes/row-settings.php:252 modules/gallery/gallery.php:241 modules/slideshow/slideshow.php:271
1892
+ msgid "Source"
1893
+ msgstr "แหล่งที่มา"
1894
+
1895
+ #: includes/row-settings.php:255 modules/gallery/gallery.php:244 modules/photo/photo.php:394 modules/slideshow/slideshow.php:274 modules/video/video.php:86
1896
+ msgid "Media Library"
1897
+ msgstr "คลังมีเดีย"
1898
+
1899
+ #: includes/row-settings.php:258 modules/gallery/gallery.php:247 modules/slideshow/slideshow.php:277
1900
+ msgid "Pull images from the WordPress media library or a gallery on your SmugMug site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be accessed by using the get a link function in your SmugMug gallery."
1901
+ msgstr "ดึงภาพจากคลังสื่อ WordPress หรือแกลเลอรี่ในเว็บไซต์ SmugMug ของคุณ โดยการใส่ URL ฟีด RSS จาก SmugMug. URL ฟีด RSS สามารถเข้าถึงได้โดยใช้ลิงค์ฟังก์ชั่นได้รับในแกลเลอรี่ SmugMug ของคุณ"
1902
+
1903
+ #: includes/row-settings.php:273 modules/gallery/gallery.php:259 modules/slideshow/slideshow.php:289
1904
+ msgid "Photos"
1905
+ msgstr "รูปภาพ"
1906
+
1907
+ #: includes/row-settings.php:280 modules/gallery/gallery.php:263 modules/slideshow/slideshow.php:293
1908
+ msgid "Feed URL"
1909
+ msgstr "URL ของฟีด"
1910
+
1911
+ #: includes/row-settings.php:287 includes/row-settings.php:352 modules/slideshow/slideshow.php:390
1912
+ msgid "Speed"
1913
+ msgstr "ความเร็ว"
1914
+
1915
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:238 modules/post-slider/post-slider.php:370 modules/slideshow/slideshow.php:397 modules/testimonials/testimonials.php:99
1916
+ msgid "Transition"
1917
+ msgstr "การเปลี่ยน"
1918
+
1919
+ #: includes/row-settings.php:300
1920
+ msgctxt "Slideshow transition type."
1921
+ msgid "None"
1922
+ msgstr "ไม่มี"
1923
+
1924
+ #: includes/row-settings.php:301 modules/content-slider/content-slider.php:242 modules/post-carousel/post-carousel.php:241 modules/post-grid/post-grid.php:247 modules/post-slider/post-slider.php:373 modules/slideshow/slideshow.php:401 modules/testimonials/testimonials.php:103
1925
+ msgid "Fade"
1926
+ msgstr "จาง"
1927
+
1928
+ #: includes/row-settings.php:302 modules/slideshow/slideshow.php:402
1929
+ msgid "Ken Burns"
1930
+ msgstr "เคนเบิร์น"
1931
+
1932
+ #: includes/row-settings.php:303 modules/slideshow/slideshow.php:403
1933
+ msgid "Slide Horizontal"
1934
+ msgstr "เลื่อนแนวนอน"
1935
+
1936
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:404
1937
+ msgid "Slide Vertical"
1938
+ msgstr "เลื่อนแนวตั้ง"
1939
+
1940
+ #: includes/row-settings.php:305 modules/slideshow/slideshow.php:405
1941
+ msgid "Blinds"
1942
+ msgstr "เลื่อนแบบม่าน"
1943
+
1944
+ #: includes/row-settings.php:306 modules/slideshow/slideshow.php:406
1945
+ msgid "Bars"
1946
+ msgstr "บาร์"
1947
+
1948
+ #: includes/row-settings.php:307 modules/slideshow/slideshow.php:407
1949
+ msgid "Random Bars"
1950
+ msgstr "บาร์สุ่ม"
1951
+
1952
+ #: includes/row-settings.php:308 modules/slideshow/slideshow.php:408
1953
+ msgid "Boxes"
1954
+ msgstr "กล่อง"
1955
+
1956
+ #: includes/row-settings.php:309 modules/slideshow/slideshow.php:409
1957
+ msgid "Random Boxes"
1958
+ msgstr "กล่องสุ่ม"
1959
+
1960
+ #: includes/row-settings.php:310 modules/slideshow/slideshow.php:410
1961
+ msgid "Boxes Grow"
1962
+ msgstr "กล่องขยาย"
1963
+
1964
+ #: includes/row-settings.php:318 modules/content-slider/content-slider.php:247 modules/post-carousel/post-carousel.php:161 modules/post-slider/post-slider.php:388 modules/slideshow/slideshow.php:415 modules/testimonials/testimonials.php:108
1965
+ msgid "Transition Speed"
1966
+ msgstr "ความเร็วการเปลี่ยน"
1967
+
1968
+ #: includes/row-settings.php:328 modules/slideshow/slideshow.php:422
1969
+ msgid "Randomize Photos"
1970
+ msgstr "สุ่มภาพถ่าย"
1971
+
1972
+ #: includes/row-settings.php:341
1973
+ msgid "Background Parallax"
1974
+ msgstr "พารัลแลกซ์พื้นหลัง"
1975
+
1976
+ #: includes/row-settings.php:355
1977
+ msgid "Fast"
1978
+ msgstr "เร็ว"
1979
+
1980
+ #: includes/row-settings.php:356
1981
+ msgctxt "Speed."
1982
+ msgid "Medium"
1983
+ msgstr "ปานกลาง"
1984
+
1985
+ #: includes/row-settings.php:357
1986
+ msgid "Slow"
1987
+ msgstr "ช้า"
1988
+
1989
+ #: includes/row-settings.php:619
1990
+ msgid "Choose whether to show or hide this row at different device sizes."
1991
+ msgstr "เลือกว่าจะแสดงหรือซ่อนคอลัมน์นี้บนอุปกรณ์ที่มีขนาดแตกต่างกัน"
1992
+
1993
+ #: includes/row-settings.php:632
1994
+ msgid "A unique ID that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. No spaces."
1995
+ msgstr "ID เฉพาะตัวที่จะนำไปใช้ HTML ของคอลัมน์นี้ ต้องเริ่มต้นด้วยตัวอักษรและมีเพียง - , _ , ตัวอักษร, หรือตัวเลข ไม่มีเว้นช่องว่าง"
1996
+
1997
+ #: includes/row-settings.php:640
1998
+ msgid "A class that will be applied to this row's HTML. Must start with a letter and only contain dashes, underscores, letters or numbers. Separate multiple classes with spaces."
1999
+ msgstr "Class ที่จะนำไปใช้กับแถวของ HTM​​L นี้ ต้องเริ่มต้นด้วยตัวอักษรและมีเพียง - , _ , ตัวอักษรหรือตัวเลข แยกหลาย Class ด้วยช่องว่าง"
2000
+
2001
+ #: includes/service-settings.php:32
2002
+ msgid "Service"
2003
+ msgstr "การบริการ"
2004
+
2005
+ #: includes/settings.php:67
2006
+ msgid "Save"
2007
+ msgstr "บันทึก"
2008
+
2009
+ #: includes/settings.php:69
2010
+ msgid "Save As..."
2011
+ msgstr "บันทึกเป็น..."
2012
+
2013
+ #: includes/template-selector.php:4
2014
+ msgid "Layout Templates"
2015
+ msgstr "เลย์เอ้าท์เทมเพลท"
2016
+
2017
+ #: includes/template-selector.php:17
2018
+ msgid "Your Templates"
2019
+ msgstr "เทมเพลทของคุณ"
2020
+
2021
+ #: includes/template-selector.php:53
2022
+ msgid "You haven't saved any templates yet! To do so, create a layout and save it as a template under <strong>Tools &rarr; Save Template</strong>."
2023
+ msgstr "คุณยังไม่ได้บันทึกเทมเพลทใดๆเลย! ถ้าต้องการทำเช่นนั้น ให้สร้างเลย์เอ้าท์และบันทึกเป็นเทมเพลทภายใต้ <strong>เครื่องมือและบันทึกเทมเพลด</strong>"
2024
+
2025
+ #: includes/template-selector.php:58
2026
+ msgctxt "Template name."
2027
+ msgid "Blank"
2028
+ msgstr "ว่างเปล่า"
2029
+
2030
+ #: includes/template-settings.php:18
2031
+ msgid "Image Filename"
2032
+ msgstr "ชื่อไฟล์ภาพ"
2033
+
2034
+ #: includes/template-settings.php:19
2035
+ msgid "The filename of the image such as \"thumb.jpg\" that resides in the \"img/templates/\" directory."
2036
+ msgstr "ชื่อไฟล์ของภาพเช่น \"thumb.jpg\" ที่อยู่ในแฟ้ม \"img/templates/\""
2037
+
2038
+ #: includes/ui-js-config.php:21
2039
+ msgid "What would you like to do?"
2040
+ msgstr "คุณอยากจะทำอะไร?"
2041
+
2042
+ #: includes/ui-js-config.php:23
2043
+ msgid "Change Template"
2044
+ msgstr "เปลี่ยนเทมเพลท"
2045
+
2046
+ #: includes/ui-js-config.php:24
2047
+ msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
2048
+ msgstr "คำเตือน! การเปลี่ยนเทมเพลทจะเปลี่ยนเลย์เอ้าท์ของคุณที่มีอยู่ด้วย คุณต้องการจะทำจริงๆหรอ?"
2049
+
2050
+ #: includes/ui-js-config.php:25 includes/ui-js-templates.php:29
2051
+ msgid "Column"
2052
+ msgstr "คอลัมน์"
2053
+
2054
+ #: includes/ui-js-config.php:26
2055
+ msgid "Please select either a background layout or content layout before submitting."
2056
+ msgstr "กรุณาเลือกเลย์เอ้าท์พื้นหลังหรือเลย์เอ้าท์เนื้อหาก่อนที่จะส่ง"
2057
+
2058
+ #: includes/ui-js-config.php:27
2059
+ msgid "Remove Account"
2060
+ msgstr "ลบบัญชีผู้ใช้"
2061
+
2062
+ #: includes/ui-js-config.php:28
2063
+ msgid "Are you sure you want to remove this account? Other modules that are connected to it will be affected."
2064
+ msgstr "คุณแน่ใจว่าคุณต้องการที่จะลบบัญชีนี้? โมดูลอื่น ๆ ที่เชื่อมต่อกับบัญชีนี้จะได้รับผลกระทบ"
2065
+
2066
+ #: includes/ui-js-config.php:29
2067
+ msgid "Do you really want to delete this item?"
2068
+ msgstr "คุณต้องการที่จะลบรายการนี้จริงๆหรอ?"
2069
+
2070
+ #: includes/ui-js-config.php:30
2071
+ msgid "Do you really want to delete this module? All content data will be permanently deleted."
2072
+ msgstr "คุณต้องการที่จะลบโมดูลนี้จริงๆหรอ? ข้อมูลเนื้อหาทั้งหมดจะถูกลบออกอย่างถาวร"
2073
+
2074
+ #: includes/ui-js-config.php:31
2075
+ msgid "Do you really want to delete this row? All content data will be permanently deleted."
2076
+ msgstr "คุณต้องการที่จะลบแถวนี้จริงๆหรอ? ข้อมูลเนื้อหาทั้งหมดจะถูกลบออกอย่างถาวร"
2077
+
2078
+ #: includes/ui-js-config.php:33
2079
+ msgid "WARNING! You are about to delete a global template that may be linked to other pages. Do you really want to delete this template and unlink it?"
2080
+ msgstr "คำเตือน! คุณกำลังจะลบเทมเพลทส่วนกลางที่อาจจะเชื่อมโยงไปยังหน้าอื่น คุณต้องการที่จะลบแม่แบบนี้และยกเลิกการเชื่อมโยงจริงๆหรอ?"
2081
+
2082
+ #: includes/ui-js-config.php:34
2083
+ msgid "Discard Changes"
2084
+ msgstr "ยกเลิกการเปลี่ยนแปลง"
2085
+
2086
+ #: includes/ui-js-config.php:35
2087
+ msgid "Do you really want to discard these changes? All of your changes that are not published will be lost."
2088
+ msgstr "คุณต้องการที่จะยกเลิกการเปลี่ยนแปลงเหล่านี้จริงๆหรอ? การเปลี่ยนแปลงทั้งหมดของคุณที่ไม่ได้รับการตีพิมพ์จะหายไป"
2089
+
2090
+ #: includes/ui-js-config.php:37
2091
+ msgid "Save Draft"
2092
+ msgstr "บันทึแบบกร่าง"
2093
+
2094
+ #: includes/ui-js-config.php:38 includes/ui-js-templates.php:14 includes/ui-js-templates.php:54
2095
+ msgid "Duplicate"
2096
+ msgstr "ทำซ้ำ"
2097
+
2098
+ #: includes/ui-js-config.php:39
2099
+ msgid "Duplicate This Page"
2100
+ msgstr "ซ้ำหน้านี้"
2101
+
2102
+ #: includes/ui-js-config.php:40
2103
+ msgid "Duplicate This Template"
2104
+ msgstr "ซ้ำเทมเพลทนี้"
2105
+
2106
+ #: includes/ui-js-config.php:41
2107
+ msgid "Edit Global Settings"
2108
+ msgstr "แก้ไขการตั้งค่าส่วนกลาง"
2109
+
2110
+ #: includes/ui-js-config.php:42
2111
+ msgid "Drop a row layout or module to get started!"
2112
+ msgstr "วางเลย์เอ้าท์ของแถวหรือโมดูลเพื่อเริ่มต้น!"
2113
+
2114
+ #: includes/ui-js-config.php:43
2115
+ msgid "Beaver Builder caught the following JavaScript error. If Beaver Builder is not functioning as expected the cause is most likely this error. Please help us by disabling all plugins and testing Beaver Builder while reactivating each to determine if the issue is related to a third party plugin."
2116
+ msgstr "Beaver Builder จับข้อผิดพลาด JavaScript ต่อไปนี้ หาก Beaver Builder ไม่ทำงานตามที่คาด สาเหตุน่าจะเกิดข้อผิดพลาดนี้ กรุณาช่วยเราโดยการปิดการใช้งานปลั๊กอินทั้งหมดและการทดสอบ Beaver Builder โดยที่กำลังเปิดใช้งานปลั๊กอินทีละอย่าง เพื่อที่จะตรวจสอบว่าปัญหาที่เกี่ยวข้องอาจจะเกิดจากปลั๊กอินของบุคคลที่สาม"
2117
+
2118
+ #: includes/ui-js-config.php:44
2119
+ msgid "Full Size"
2120
+ msgstr "ขนาดเต็ม"
2121
+
2122
+ #: includes/ui-js-config.php:45
2123
+ msgid "Get Help"
2124
+ msgstr "ขอความช่วยเหลือ"
2125
+
2126
+ #: includes/ui-js-config.php:46
2127
+ msgid "\"{message}\" on line {line} of {file}."
2128
+ msgstr "“{message}” ในบรรทัด {line} ของ {file}"
2129
+
2130
+ #: includes/ui-js-config.php:47
2131
+ msgid "Insert"
2132
+ msgstr "แทรก"
2133
+
2134
+ #: includes/ui-js-config.php:48
2135
+ msgid "Large"
2136
+ msgstr "ขนาดใหญ่"
2137
+
2138
+ #: includes/ui-js-config.php:49
2139
+ msgid "Manage Templates"
2140
+ msgstr "จัดการเทมเพลท"
2141
+
2142
+ #: includes/ui-js-config.php:50
2143
+ msgid "Medium"
2144
+ msgstr "ปานกลาง"
2145
+
2146
+ #: includes/ui-js-config.php:51
2147
+ msgid "Module"
2148
+ msgstr "โมดูล"
2149
+
2150
+ #: includes/ui-js-config.php:52
2151
+ msgid "Module Template Saved!"
2152
+ msgstr "เทมเพลทโมดูลถูกบันทึกเรียบร้อย!"
2153
+
2154
+ #: includes/ui-js-config.php:53 includes/ui-js-templates.php:10 includes/ui-js-templates.php:50
2155
+ msgid "Move"
2156
+ msgstr "เคลื่อนย้าย"
2157
+
2158
+ #: includes/ui-js-config.php:54
2159
+ msgid "New Column"
2160
+ msgstr "คอลัมน์ใหม่"
2161
+
2162
+ #: includes/ui-js-config.php:55
2163
+ msgid "New Row"
2164
+ msgstr "แถวใหม่"
2165
+
2166
+ #: includes/ui-js-config.php:56
2167
+ msgid "No results found."
2168
+ msgstr "ไม่พบผลการค้นหา"
2169
+
2170
+ #: includes/ui-js-config.php:57 includes/ui-panel-node-templates.php:11
2171
+ msgid "No saved rows found."
2172
+ msgstr "ไม่พบแถวที่บันทึก"
2173
+
2174
+ #: includes/ui-js-config.php:58 includes/ui-panel-node-templates.php:42
2175
+ msgid "No saved modules found."
2176
+ msgstr "ไม่พบโมดูลบันทึก"
2177
+
2178
+ #: includes/ui-js-config.php:59 includes/ui-js-templates.php:80
2179
+ msgid "OK"
2180
+ msgstr "ตกลง"
2181
+
2182
+ #: includes/ui-js-config.php:60 modules/photo/photo.php:470
2183
+ msgid "Photo Page"
2184
+ msgstr "หน้ารูปภาพ"
2185
+
2186
+ #: includes/ui-js-config.php:61
2187
+ msgid "Photo Selected"
2188
+ msgstr "ภาพที่เลือก"
2189
+
2190
+ #: includes/ui-js-config.php:62
2191
+ msgid "Photos Selected"
2192
+ msgstr "ภาพที่เลือก"
2193
+
2194
+ #: includes/ui-js-config.php:63 modules/subscribe-form/includes/frontend.php:15
2195
+ msgid "Please Wait..."
2196
+ msgstr "กรุณารอสักครู่..."
2197
+
2198
+ #: includes/ui-js-config.php:64
2199
+ msgid "Publish Changes"
2200
+ msgstr "เผยแพร่การเปลี่ยนแปลง"
2201
+
2202
+ #: includes/ui-js-config.php:66 includes/ui-js-templates.php:5
2203
+ msgid "Row"
2204
+ msgstr "แถวทั้งหมดจะเริ่มต้นกับความกว้างนี้ คุณสามารถแทนที่นี้และทำให้แถวเต็มความกว้างในการตั้งค่าสำหรับแต่ละแถว"
2205
+
2206
+ #: includes/ui-js-config.php:68
2207
+ msgid "Row Template Saved!"
2208
+ msgstr "เทมเพลทแถวถูกบันทึกเรียบร้อย!"
2209
+
2210
+ #: includes/ui-js-config.php:69
2211
+ msgid "Save Core Template"
2212
+ msgstr "บันทึกเทมเพลทหลัก"
2213
+
2214
+ #: includes/ui-js-config.php:70 includes/user-template-settings.php:4
2215
+ msgid "Save Template"
2216
+ msgstr "บันทึกเทมเพลท"
2217
+
2218
+ #: includes/ui-js-config.php:72
2219
+ msgid "Select Photos"
2220
+ msgstr "เลือกรูปภาพ"
2221
+
2222
+ #: includes/ui-js-config.php:74
2223
+ msgid "Please select an account before saving."
2224
+ msgstr "กรุณาเลือกบัญชีก่อนที่จะบันทึก"
2225
+
2226
+ #: includes/ui-js-config.php:75
2227
+ msgid "Please connect an account before saving."
2228
+ msgstr "โปรดเชื่อมต่อบัญชีก่อนที่จะบันทึก"
2229
+
2230
+ #: includes/ui-js-config.php:76
2231
+ msgid "Please select a list before saving."
2232
+ msgstr "กรุณาเลือกรายการก่อนที่จะบันทึก"
2233
+
2234
+ #: includes/ui-js-config.php:77
2235
+ msgid "Take a Tour"
2236
+ msgstr "พาทัวร์"
2237
+
2238
+ #: includes/ui-js-config.php:78
2239
+ msgid "Append New Layout"
2240
+ msgstr "เพิ่มเลย์เอ้าท์ใหม่"
2241
+
2242
+ #: includes/ui-js-config.php:79
2243
+ msgid "Replace Existing Layout"
2244
+ msgstr "เปลี่ยนเลย์เอ้าท์ที่มีอยู่"
2245
+
2246
+ #: includes/ui-js-config.php:80
2247
+ msgid "Template Saved!"
2248
+ msgstr "เทมเพลทถูกบันทึกเรียบร้อย!"
2249
+
2250
+ #: includes/ui-js-config.php:81 modules/post-slider/post-slider.php:464
2251
+ msgid "Thumbnail"
2252
+ msgstr "รูปขนาดย่อ"
2253
+
2254
+ #: includes/ui-js-config.php:82
2255
+ msgid "Next"
2256
+ msgstr "ถัดไป"
2257
+
2258
+ #: includes/ui-js-config.php:83
2259
+ msgid "Get Started"
2260
+ msgstr "เริ่มต้นได้เลย"
2261
+
2262
+ #: includes/ui-js-config.php:84
2263
+ msgid "Choose a Template"
2264
+ msgstr "เลือกเทมเพลท"
2265
+
2266
+ #: includes/ui-js-config.php:85
2267
+ msgid "Get started by choosing a layout template to customize, or build a page from scratch by selecting the blank layout template."
2268
+ msgstr "เริ่มต้นโดยการเลือกเลย์เอ้าท์เทมเพลทที่ต้องการปรับแต่ง หรือสร้างหน้าใหม่โดยการเลือกเลย์เอ้าท์เทมเพลทแบบว่างปล่าว"
2269
+
2270
+ #: includes/ui-js-config.php:86
2271
+ msgid "Add Rows"
2272
+ msgstr "เพิ่มแถว"
2273
+
2274
+ #: includes/ui-js-config.php:87
2275
+ msgid "Add multi-column rows, adjust spacing, add backgrounds and more by dragging and dropping row layouts onto the page."
2276
+ msgstr "เพิ่มแถวหลายคอลัมน์, ปรับระยะห่าง, เพิ่มพื้นหลัง และอื่น ๆ โดยการลากและวางเลย์เอ้าท์แถวบนหน้าเว็บ"
2277
+
2278
+ #: includes/ui-js-config.php:89
2279
+ msgid "Add new content by dragging and dropping modules or widgets into your row layouts or to create a new row layout."
2280
+ msgstr "เพิ่มเนื้อหาใหม่โดยลากและวางโมดูลหรือ Widget เข้าไปในเลย์เอ้าท์แถวของคุณ หรือ เพื่อสร้างรูปแบบแถวใหม่"
2281
+
2282
+ #: includes/ui-js-config.php:90
2283
+ msgid "Edit Content"
2284
+ msgstr "แก้ไขเนื้อหา"
2285
+
2286
+ #: includes/ui-js-config.php:91
2287
+ msgid "Move your mouse over rows, columns or modules to edit and interact with them."
2288
+ msgstr "เลื่อนเมาส์ไปที่แถว, คอลัมน์ หรือโมดูลที่จะแก้ไขและโต้ตอบกับพวกเขา"
2289
+
2290
+ #: includes/ui-js-config.php:92
2291
+ msgid "Use the action buttons to perform actions such as moving, editing, duplicating or deleting rows, columns and modules."
2292
+ msgstr "ใช้ปุ่มการกระทำเพื่อดำเนินการเช่นการย้าย, การแก้ไข, ทำซ้ำ, หรือลบแถว, คอลัมน์ และโมดูล"
2293
+
2294
+ #: includes/ui-js-config.php:93
2295
+ msgid "Add More Content"
2296
+ msgstr "เพิ่มเนื้อหาเพิ่มเติม"
2297
+
2298
+ #: includes/ui-js-config.php:94
2299
+ msgid "Use the Add Content button to open the content panel and add new row layouts, modules or widgets."
2300
+ msgstr "ใช้ปุ่มเพิ่มเนื้อหาเพื่อเปิดแผงเนื้อหาและเพิ่มเลย์เอ้าท์แถว, โมดูล, หรือ Widgets ใหม่"
2301
+
2302
+ #: includes/ui-js-config.php:95
2303
+ msgid "Change Templates"
2304
+ msgstr "เปลี่ยนเทมเพลท"
2305
+
2306
+ #: includes/ui-js-config.php:96
2307
+ msgid "Use the Templates button to pick a new template or append one to your layout. Appending will insert a new template at the end of your existing page content."
2308
+ msgstr "ใช้ปุ่มเทมเพลทเพื่อที่จะเลือกเทมเพลทใหม่หรือโยงไปยังเลย์เอ้าท์ของคุณ การโยงจะแทรกเทมเพลทใหม่ในตอนท้ายของเนื้อหาของหน้าเว็บที่มีอยู่"
2309
+
2310
+ #: includes/ui-js-config.php:97
2311
+ msgid "Helpful Tools"
2312
+ msgstr "เครื่องมือที่มีประโยชน์"
2313
+
2314
+ #: includes/ui-js-config.php:98
2315
+ msgid "The Tools button lets you duplicate a page, save a template or edit the global settings."
2316
+ msgstr "ปุ่มเครื่องมือจะช่วยให้คุณสามารถทำซ้ำหน้า, บันทึกเทมเพลท, หรือแก้ไขการตั้งค่าส่วนกลาง"
2317
+
2318
+ #: includes/ui-js-config.php:99
2319
+ msgid "Publish Your Changes"
2320
+ msgstr "เผยแพร่การเปลี่ยนแปลง"
2321
+
2322
+ #: includes/ui-js-config.php:100
2323
+ msgid "Once you're finished, click the Done button to publish your changes, save a draft or revert back to the last published state."
2324
+ msgstr "เมื่อคุณทำเสร็จแล้วให้คลิกที่ปุ่มเสร็จสิ้น เพื่อเผยแพร่การเปลี่ยนแปลงของคุณ, บันทึกร่าง หรือกลับไปใช้อันที่เผยแพร่ล่าสุด"
2325
+
2326
+ #: includes/ui-js-config.php:101
2327
+ msgid "Let's Get Building!"
2328
+ msgstr "เริ่มต้นสร้างได้เลย!"
2329
+
2330
+ #: includes/ui-js-config.php:102
2331
+ msgid "Now that you know the basics, you're ready to start building! If at any time you need help, click the help icon in the upper right corner to access the help menu. Happy building!"
2332
+ msgstr "ตอนนี้คุณพอรู้พื้นฐานแล้ง คุณพร้อมที่จะเริ่มต้นสร้างได้เลย! ถ้าเมื่อใดก็ตามที่คุณต้องการความช่วยเหลือให้คลิกที่ไอคอนความช่วยเหลือในมุมขวาบน เพื่อเข้าสู่เมนูช่วยเหลือ ขอให้สนุกกับการสร้าง!"
2333
+
2334
+ #: includes/ui-js-config.php:103
2335
+ msgid "The settings you are currently editing will not be saved if you navigate away from this page."
2336
+ msgstr "การตั้งค่าที่คุณกำลังแก้ไขอยู่จะไม่ถูกบันทึกถ้าคุณออกจากหน้านี้"
2337
+
2338
+ #: includes/ui-js-config.php:104
2339
+ msgid "View the Knowledge Base"
2340
+ msgstr "ดูฐานข้อมูลความรู้"
2341
+
2342
+ #: includes/ui-js-config.php:105
2343
+ msgid "Visit the Forums"
2344
+ msgstr "เยี่ยมชมฟอรั่ม"
2345
+
2346
+ #: includes/ui-js-config.php:106
2347
+ msgid "Watch the Video"
2348
+ msgstr "ดูวิดีโอ"
2349
+
2350
+ #: includes/ui-js-templates.php:5 includes/ui-js-templates.php:29 includes/ui-js-templates.php:45
2351
+ msgid "Global"
2352
+ msgstr "ส่วนกลาง"
2353
+
2354
+ #: includes/ui-js-templates.php:7 includes/ui-js-templates.php:47
2355
+ msgid "Locked"
2356
+ msgstr "ถูกล็อค"
2357
+
2358
+ #: includes/ui-js-templates.php:52
2359
+ msgid "Settings"
2360
+ msgstr "การตั้งค่า"
2361
+
2362
+ #: includes/ui-js-templates.php:87
2363
+ msgid "Welcome! It looks like this might be your first time using the builder. Would you like to take a tour?"
2364
+ msgstr "ยินดีต้อนรับ! ลักษณะเช่นนี้อาจจะเป็นครั้งแรกของคุณที่ใช้ตัวสร้าง คุณต้องการที่จะให้พาทัวร์หรือไม่?"
2365
+
2366
+ #: includes/ui-js-templates.php:88
2367
+ msgid "No Thanks"
2368
+ msgstr "ไม่ละ ขอบคุณ"
2369
+
2370
+ #: includes/ui-js-templates.php:89
2371
+ msgid "Yes Please!"
2372
+ msgstr "ใช่เลย!"
2373
+
2374
+ #: includes/ui-js-templates.php:96
2375
+ msgid "Getting Started Video"
2376
+ msgstr "วีดีโอเริ่มต้นใช้งาน"
2377
+
2378
+ #: includes/ui-panel-node-templates.php:6
2379
+ msgid "Saved Rows"
2380
+ msgstr "แถวที่บันทึกไว้"
2381
+
2382
+ #: includes/ui-panel-node-templates.php:37
2383
+ msgid "Saved Modules"
2384
+ msgstr "โมดูลที่บันทึกไว้"
2385
+
2386
+ #: includes/ui-panel.php:11
2387
+ msgid "Row Layouts"
2388
+ msgstr "เลย์เอ้าท์แถว"
2389
+
2390
+ #: includes/ui-panel.php:15
2391
+ msgid "1 Column"
2392
+ msgstr "1 คอลัมน์"
2393
+
2394
+ #: includes/ui-panel.php:16
2395
+ msgid "2 Columns"
2396
+ msgstr "2 คอลัมน์"
2397
+
2398
+ #: includes/ui-panel.php:17
2399
+ msgid "3 Columns"
2400
+ msgstr "3 คอลัมน์"
2401
+
2402
+ #: includes/ui-panel.php:18
2403
+ msgid "4 Columns"
2404
+ msgstr "2 คอลัมน์"
2405
+
2406
+ #: includes/ui-panel.php:19
2407
+ msgid "5 Columns"
2408
+ msgstr "2 คอลัมน์"
2409
+
2410
+ #: includes/ui-panel.php:20
2411
+ msgid "6 Columns"
2412
+ msgstr "2 คอลัมน์"
2413
+
2414
+ #: includes/ui-panel.php:21
2415
+ msgid "Left Sidebar"
2416
+ msgstr "Sidebar ข้างซ้าย"
2417
+
2418
+ #: includes/ui-panel.php:22
2419
+ msgid "Right Sidebar"
2420
+ msgstr "Sidebar ข้างขวา"
2421
+
2422
+ #: includes/ui-panel.php:23
2423
+ msgid "Left &amp; Right Sidebar"
2424
+ msgstr "Sidebar ซ้าย และ ขวา"
2425
+
2426
+ #: includes/updater/classes/class-fl-updater.php:132
2427
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
2428
+ msgstr "<strong>ไม่พบการอัพเดต</strong>"
2429
+
2430
+ #: includes/updater/classes/class-fl-updater.php:134
2431
+ msgid "Please subscribe to enable automatic updates for this plugin."
2432
+ msgstr "กรุณาสมัครสมาชิกเพื่อเปิดใช้งานการปรับปรุงอัตโนมัติสำหรับปลั๊กอินนี้"
2433
+
2434
+ #: includes/updater/classes/class-fl-updater.php:136 includes/updater/includes/form.php:6
2435
+ msgid "Subscribe Now"
2436
+ msgstr "สมัครสมาชิกตอนนี้"
2437
+
2438
+ #: includes/updater/includes/form.php:5
2439
+ msgid "UPDATES UNAVAILABLE! Please subscribe or enter your license key below to enable automatic updates."
2440
+ msgstr "ไม่พบการอัพเดต! กรุณาสมัครสมาชิกหรือป้อนคีย์ใบอนุญาตของคุณด้านล่างเพื่อเปิดใช้งานการปรับปรุงอัตโนมัติ"
2441
+
2442
+ #: includes/updater/includes/form.php:11
2443
+ msgid "Updates &amp; Support Subscription"
2444
+ msgstr "การปรับปรุงและการสมัครรับการสนับสนุน"
2445
+
2446
+ #: includes/updater/includes/form.php:14
2447
+ msgid "Active!"
2448
+ msgstr "เปิดใช้งานแล้ว!"
2449
+
2450
+ #: includes/updater/includes/form.php:16
2451
+ msgid "Not Active!"
2452
+ msgstr "ปิดใช้งาน!"
2453
+
2454
+ #: includes/updater/includes/form.php:22
2455
+ msgid "Email address saved!"
2456
+ msgstr "ที่อยู่อีเมล์ถูกบันทึกแล้ว!"
2457
+
2458
+ #: includes/updater/includes/form.php:27
2459
+ #, php-format
2460
+ msgid "Enter your <a%s>license key</a> to enable remote updates and support."
2461
+ msgstr "ใส่ <a%s> License Key </a> ของคุณ เพื่อเปิดใช้การปรับปรุงข้อมูลระยะไกลและการสนับสนุน"
2462
+
2463
+ #: includes/updater/includes/form.php:39
2464
+ msgid "Save Subscription Settings"
2465
+ msgstr "บันทึกการตั้งค่าสมัครสมาชิค"
2466
+
2467
+ #: includes/user-template-settings.php:8
2468
+ msgid "Save the current layout as a template that can be reused under <strong>Templates &rarr; Your Templates</strong>."
2469
+ msgstr "<strong>บันทึกเลย์เอ้าท์ปัจจุบันเป็นเทมเพลทที่สามารถนำกลับมาใช้ภายใต้ <strong> เทมเพลทและเทมเพลทของคุณ </strong>"
2470
+
2471
+ #: modules/accordion/accordion.php:14 modules/menu/menu.php:95
2472
+ msgid "Accordion"
2473
+ msgstr "แบบพับ"
2474
+
2475
+ #: modules/accordion/accordion.php:15
2476
+ msgid "Display a collapsible accordion of items."
2477
+ msgstr "แสดงแบบพับที่พับได้ของรายการสินค้า"
2478
+
2479
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
2480
+ msgid "Items"
2481
+ msgstr "รายการสินค้า"
2482
+
2483
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
2484
+ msgid "Item"
2485
+ msgstr "รายการสินค้า"
2486
+
2487
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
2488
+ msgid "Border Color"
2489
+ msgstr "สีเส้นขอบ"
2490
+
2491
+ #: modules/accordion/accordion.php:62
2492
+ msgid "Label Size"
2493
+ msgstr "ขนาดป้าย"
2494
+
2495
+ #: modules/accordion/accordion.php:65
2496
+ msgctxt "Label size."
2497
+ msgid "Small"
2498
+ msgstr "ขนาดเล็ก"
2499
+
2500
+ #: modules/accordion/accordion.php:66
2501
+ msgctxt "Label size."
2502
+ msgid "Medium"
2503
+ msgstr "ขนาดปานกลาง"
2504
+
2505
+ #: modules/accordion/accordion.php:67
2506
+ msgctxt "Label size."
2507
+ msgid "Large"
2508
+ msgstr "ขนาดใหญ่"
2509
+
2510
+ #: modules/accordion/accordion.php:75
2511
+ msgid "Item Spacing"
2512
+ msgstr "ระยะห่างสินค้า"
2513
+
2514
+ #: modules/accordion/accordion.php:86
2515
+ msgid "Collapse Inactive"
2516
+ msgstr "ยุบอันที่ไม่ได้ใช้งาน"
2517
+
2518
+ #: modules/accordion/accordion.php:92
2519
+ msgid "Choosing yes will keep only one item open at a time. Choosing no will allow multiple items to be open at the same time."
2520
+ msgstr "หากเลือกใช่จะเปิดเพียงหนึ่งรายการสินค้าต่อครั้ง ไม่มีการเลือกที่จะช่วยให้เปิดหลายรายการสินค้าในเวลาเดียวกัน"
2521
+
2522
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
2523
+ msgid "Add Item"
2524
+ msgstr "เพิ่มรายการ"
2525
+
2526
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
2527
+ msgid "Label"
2528
+ msgstr "ป้าย"
2529
+
2530
+ #: modules/accordion/accordion.php:122 modules/post-carousel/post-carousel.php:359 modules/post-carousel/post-carousel.php:363 modules/post-carousel/post-carousel.php:435 modules/post-grid/post-grid.php:198 modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:330
2531
+ #: modules/post-slider/post-slider.php:548 modules/post-slider/post-slider.php:552 modules/post-slider/post-slider.php:759 modules/tabs/tabs.php:89
2532
+ msgid "Content"
2533
+ msgstr "เนื้อหา"
2534
+
2535
+ #: modules/button/button.php:14 modules/callout/callout.php:480 modules/content-slider/content-slider.php:602 modules/cta/cta.php:215 modules/pricing-table/pricing-table.php:129 modules/subscribe-form/subscribe-form.php:161
2536
+ msgid "Button"
2537
+ msgstr "ปุ่ม"
2538
+
2539
+ #: modules/button/button.php:15
2540
+ msgid "A simple call to action button."
2541
+ msgstr "ปุ่มกระตุ้นให้ดำเนินการแบบง่าย"
2542
+
2543
+ #: modules/button/button.php:67 modules/cta/cta.php:223
2544
+ msgid "Click Here"
2545
+ msgstr "คลิกที่นี่"
2546
+
2547
+ #: modules/button/button.php:75 modules/callout/callout.php:318 modules/callout/callout.php:366 modules/callout/callout.php:370 modules/cta/cta.php:231 modules/icon-group/icon-group.php:34 modules/icon-group/icon-group.php:135 modules/icon/icon.php:14 modules/icon/icon.php:34
2548
+ msgid "Icon"
2549
+ msgstr "ไอคอน"
2550
+
2551
+ #: modules/button/button.php:80 modules/cta/cta.php:236 modules/subscribe-form/subscribe-form.php:178
2552
+ msgid "Icon Position"
2553
+ msgstr "ตำแหน่งไอคอน"
2554
+
2555
+ #: modules/button/button.php:83 modules/callout/callout.php:508 modules/content-slider/content-slider.php:629 modules/cta/cta.php:239 modules/subscribe-form/subscribe-form.php:181
2556
+ msgid "Before Text"
2557
+ msgstr "ก่อนข้อความ"
2558
+
2559
+ #: modules/button/button.php:84 modules/callout/callout.php:509 modules/content-slider/content-slider.php:630 modules/cta/cta.php:240 modules/subscribe-form/subscribe-form.php:182
2560
+ msgid "After Text"
2561
+ msgstr "หลังข้อความ"
2562
+
2563
+ #: modules/button/button.php:90 modules/button/button.php:94 modules/callout/callout.php:446 modules/callout/callout.php:450 modules/content-slider/content-slider.php:574 modules/content-slider/content-slider.php:578 modules/content-slider/content-slider.php:601 modules/cta/cta.php:250
2564
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47 modules/icon-group/icon-group.php:139 modules/icon/icon.php:43 modules/slideshow/slideshow.php:351
2565
+ msgid "Link"
2566
+ msgstr "ลิงค์"
2567
+
2568
+ #: modules/button/button.php:95
2569
+ msgid "http://www.example.com"
2570
+ msgstr "http://www.example.com"
2571
+
2572
+ #: modules/button/button.php:102 modules/callout/callout.php:458 modules/content-slider/content-slider.php:583 modules/cta/cta.php:257 modules/heading/heading.php:54 modules/icon/icon.php:50 modules/photo/photo.php:494
2573
+ msgid "Link Target"
2574
+ msgstr "ลิงค์เป้าหมาย"
2575
+
2576
+ #: modules/button/button.php:105 modules/callout/callout.php:461 modules/content-slider/content-slider.php:586 modules/cta/cta.php:260 modules/heading/heading.php:57 modules/icon/icon.php:53 modules/photo/photo.php:497
2577
+ msgid "Same Window"
2578
+ msgstr "หน้าต่างเดียวกัน"
2579
+
2580
+ #: modules/button/button.php:106 modules/callout/callout.php:462 modules/content-slider/content-slider.php:587 modules/cta/cta.php:261 modules/heading/heading.php:58 modules/icon/icon.php:54 modules/photo/photo.php:498
2581
+ msgid "New Window"
2582
+ msgstr "หน้าต่างใหม่"
2583
+
2584
+ #: modules/button/button.php:130 modules/callout/callout.php:410 modules/callout/callout.php:525 modules/content-slider/content-slider.php:646 modules/cta/cta.php:280 modules/icon-group/icon-group.php:69 modules/icon/icon.php:100 modules/subscribe-form/subscribe-form.php:198
2585
+ msgid "Background Hover Color"
2586
+ msgstr "สีของลิงค์เมื่อเอาเมาส์ไปวาง"
2587
+
2588
+ #: modules/button/button.php:145 modules/callout/callout.php:540 modules/content-slider/content-slider.php:657 modules/cta/cta.php:295 modules/subscribe-form/subscribe-form.php:213
2589
+ msgid "Text Hover Color"
2590
+ msgstr "สีเมื่อเอาเมาส์ไปวาง"
2591
+
2592
+ #: modules/button/button.php:162 modules/callout/callout.php:557 modules/content-slider/content-slider.php:670 modules/cta/cta.php:312 modules/subscribe-form/subscribe-form.php:230
2593
+ msgid "Flat"
2594
+ msgstr "เรียบ"
2595
+
2596
+ #: modules/button/button.php:163 modules/callout/callout.php:418 modules/callout/callout.php:558 modules/content-slider/content-slider.php:671 modules/cta/cta.php:313 modules/icon-group/icon-group.php:77 modules/icon/icon.php:108 modules/subscribe-form/subscribe-form.php:231
2597
+ msgid "Gradient"
2598
+ msgstr "ไล่ระดับสี"
2599
+
2600
+ #: modules/button/button.php:164 modules/callout/callout.php:559 modules/content-slider/content-slider.php:672 modules/cta/cta.php:314 modules/subscribe-form/subscribe-form.php:232
2601
+ msgid "Transparent"
2602
+ msgstr "โปร่งใส"
2603
+
2604
+ #: modules/button/button.php:174 modules/callout/callout.php:569 modules/content-slider/content-slider.php:682 modules/cta/cta.php:324 modules/pricing-table/pricing-table.php:67 modules/subscribe-form/subscribe-form.php:242
2605
+ msgid "Border Size"
2606
+ msgstr "ขนาดของขอบ"
2607
+
2608
+ #: modules/button/button.php:183 modules/callout/callout.php:578 modules/content-slider/content-slider.php:691 modules/cta/cta.php:204 modules/cta/cta.php:333 modules/subscribe-form/subscribe-form.php:251
2609
+ msgid "Background Opacity"
2610
+ msgstr "ความโปร่งแสงของพื้นหลัง"
2611
+
2612
+ #: modules/button/button.php:193 modules/callout/callout.php:245 modules/cta/cta.php:105 modules/heading/heading.php:82 modules/icon-group/icon-group.php:87 modules/icon/icon.php:118 modules/subscribe-form/subscribe-form.php:95
2613
+ msgid "Structure"
2614
+ msgstr "โครงสร้าง"
2615
+
2616
+ #: modules/button/button.php:200 modules/callout/callout.php:595
2617
+ msgctxt "Width."
2618
+ msgid "Auto"
2619
+ msgstr "อัตโนมัติ"
2620
+
2621
+ #: modules/button/button.php:216
2622
+ msgid "Custom Width"
2623
+ msgstr "ความกว้างที่กำหนดเอง"
2624
+
2625
+ #: modules/button/button.php:224 modules/cta/cta.php:123 modules/heading/heading.php:86 modules/heading/heading.php:141 modules/icon-group/icon-group.php:107 modules/icon/icon.php:130 modules/photo/photo.php:430 modules/social-buttons/social-buttons.php:97
2626
+ msgid "Alignment"
2627
+ msgstr "การจัดตำแหน่ง"
2628
+
2629
+ #: modules/button/button.php:234 modules/callout/callout.php:601 modules/content-slider/content-slider.php:705 modules/cta/cta.php:347 modules/heading/heading.php:114 modules/heading/heading.php:171 modules/subscribe-form/subscribe-form.php:265
2630
+ msgid "Font Size"
2631
+ msgstr "ขนาดตัวอักษร"
2632
+
2633
+ #: modules/button/button.php:250 modules/callout/callout.php:617 modules/cta/cta.php:363 modules/subscribe-form/subscribe-form.php:281
2634
+ msgid "Round Corners"
2635
+ msgstr "มุมกลม"
2636
+
2637
+ #: modules/callout/callout.php:14
2638
+ msgid "Callout"
2639
+ msgstr "คำบรรยายภาพ"
2640
+
2641
+ #: modules/callout/callout.php:15
2642
+ msgid "A heading and snippet of text with an optional link, icon and image."
2643
+ msgstr "หัวข้อและตัวอย่างของข้อความที่มีตัวเลือกลิงค์, ไอคอน, และภาพ"
2644
+
2645
+ #: modules/callout/callout.php:217 modules/content-slider/content-slider.php:414 modules/content-slider/content-slider.php:429 modules/cta/cta.php:75 modules/heading/heading.php:14 modules/heading/heading.php:33 modules/post-slider/post-slider.php:582 modules/testimonials/testimonials.php:56
2646
+ #: modules/testimonials/testimonials.php:61
2647
+ msgid "Heading"
2648
+ msgstr "ส่วนหัว"
2649
+
2650
+ #: modules/callout/callout.php:249
2651
+ msgid "Overall Alignment"
2652
+ msgstr "จัดโดยรวม"
2653
+
2654
+ #: modules/callout/callout.php:256
2655
+ msgid "The alignment that will apply to all elements within the callout."
2656
+ msgstr "การจัดตำแหน่งที่จะนำไปใช้กับองค์ประกอบทั้งหมดที่อยู่ในคำบรรยายภาพ"
2657
+
2658
+ #: modules/callout/callout.php:264 modules/cta/cta.php:148
2659
+ msgid "Heading Structure"
2660
+ msgstr "โครงสร้างส่วนหัว"
2661
+
2662
+ #: modules/callout/callout.php:268 modules/content-slider/content-slider.php:433 modules/cta/cta.php:152 modules/post-slider/post-slider.php:586
2663
+ msgid "Heading Tag"
2664
+ msgstr "แท็กส่วนหัว"
2665
+
2666
+ #: modules/callout/callout.php:281 modules/content-slider/content-slider.php:446 modules/content-slider/content-slider.php:460 modules/cta/cta.php:165 modules/post-slider/post-slider.php:599 modules/post-slider/post-slider.php:613 modules/testimonials/testimonials.php:69
2667
+ msgid "Heading Size"
2668
+ msgstr "ขนาดส่วนหัว"
2669
+
2670
+ #: modules/callout/callout.php:295 modules/cta/cta.php:179
2671
+ msgid "Heading Custom Size"
2672
+ msgstr "ขนาดส่วนหัวกำหนดเอง"
2673
+
2674
+ #: modules/callout/callout.php:313
2675
+ msgid "Image Type"
2676
+ msgstr "ประเภทภาพ"
2677
+
2678
+ #: modules/callout/callout.php:316
2679
+ msgctxt "Image type."
2680
+ msgid "None"
2681
+ msgstr "ไม่มี"
2682
+
2683
+ #: modules/callout/callout.php:341 modules/photo/photo.php:417 modules/post-slider/post-slider.php:482 modules/slideshow/slideshow.php:320
2684
+ msgid "Crop"
2685
+ msgstr "การครอบ"
2686
+
2687
+ #: modules/callout/callout.php:344 modules/photo/photo.php:420
2688
+ msgctxt "Photo Crop."
2689
+ msgid "None"
2690
+ msgstr "ไม่มี"
2691
+
2692
+ #: modules/callout/callout.php:345 modules/photo/photo.php:421 modules/post-slider/post-slider.php:485
2693
+ msgid "Landscape"
2694
+ msgstr "แนวนอน"
2695
+
2696
+ #: modules/callout/callout.php:346 modules/photo/photo.php:422 modules/post-slider/post-slider.php:486
2697
+ msgid "Panorama"
2698
+ msgstr "พาโนรามา"
2699
+
2700
+ #: modules/callout/callout.php:347 modules/photo/photo.php:423 modules/post-slider/post-slider.php:487
2701
+ msgid "Portrait"
2702
+ msgstr "แนวตั้ง"
2703
+
2704
+ #: modules/callout/callout.php:348 modules/photo/photo.php:424 modules/post-slider/post-slider.php:488
2705
+ msgid "Square"
2706
+ msgstr "สี่เหลี่ยมจัตุรัส"
2707
+
2708
+ #: modules/callout/callout.php:349 modules/photo/photo.php:425 modules/post-slider/post-slider.php:489
2709
+ msgid "Circle"
2710
+ msgstr "วงกลม"
2711
+
2712
+ #: modules/callout/callout.php:357 modules/callout/callout.php:377
2713
+ msgid "Above Heading"
2714
+ msgstr "เหนือส่วนหัว"
2715
+
2716
+ #: modules/callout/callout.php:358 modules/callout/callout.php:378
2717
+ msgid "Below Heading"
2718
+ msgstr "ด้านล่างหัวเรื่อง"
2719
+
2720
+ #: modules/callout/callout.php:359 modules/callout/callout.php:381
2721
+ msgid "Left of Text and Heading"
2722
+ msgstr "ด้านซ้ายของข้อความและหัวเรื่อง"
2723
+
2724
+ #: modules/callout/callout.php:360 modules/callout/callout.php:382
2725
+ msgid "Right of Text and Heading"
2726
+ msgstr "ด้านขวาของข้อความและหัวเรื่อง"
2727
+
2728
+ #: modules/callout/callout.php:379
2729
+ msgid "Left of Heading"
2730
+ msgstr "ด้านซ้ายของหัวเรื่อง"
2731
+
2732
+ #: modules/callout/callout.php:380
2733
+ msgid "Right of Heading"
2734
+ msgstr "ด้านขวาของหัวเรื่อง"
2735
+
2736
+ #: modules/callout/callout.php:388
2737
+ msgid "Icon Colors"
2738
+ msgstr "สีไอคอน"
2739
+
2740
+ #: modules/callout/callout.php:397 modules/icon-group/icon-group.php:56 modules/icon/icon.php:87
2741
+ msgid "Hover Color"
2742
+ msgstr "สีของลิงค์เมื่อเอาเมาส์ไปวาง"
2743
+
2744
+ #: modules/callout/callout.php:428
2745
+ msgid "Icon Structure"
2746
+ msgstr "โครงสร้างไอคอน"
2747
+
2748
+ #: modules/callout/callout.php:432 modules/icon-group/icon-group.php:91 modules/icon/icon.php:122 modules/post-carousel/post-carousel.php:269 modules/post-grid/post-grid.php:139 modules/post-slider/post-slider.php:477
2749
+ msgid "Size"
2750
+ msgstr "ขนาด"
2751
+
2752
+ #: modules/callout/callout.php:443 modules/content-slider/content-slider.php:571
2753
+ msgid "Call To Action"
2754
+ msgstr "กระตุ้นให้ดำเนินการ"
2755
+
2756
+ #: modules/callout/callout.php:451
2757
+ msgid "The link applies to the entire module. If choosing a call to action type below, this link will also be used for the text or button."
2758
+ msgstr "ลิงค์จะถูกนำไปใช้กับโมดูลทั้งหมด ถ้าเลือกประเภทกระตุ้นให้ดำเนินการดังต่อไปนี้ ลิงค์นี้จะถูกนำมาใช้สำหรับข้อความหรือปุ่มด้วย"
2759
+
2760
+ #: modules/callout/callout.php:471 modules/content-slider/content-slider.php:593 modules/cta/cta.php:14
2761
+ msgid "Call to Action"
2762
+ msgstr "กระตุ้นให้ดำเนินการ"
2763
+
2764
+ #: modules/callout/callout.php:478 modules/content-slider/content-slider.php:600
2765
+ msgctxt "Call to action."
2766
+ msgid "None"
2767
+ msgstr "ไม่มี"
2768
+
2769
+ #: modules/callout/callout.php:496 modules/post-carousel/post-carousel.php:382 modules/post-grid/post-grid.php:230 modules/post-slider/post-slider.php:571
2770
+ msgid "Read More"
2771
+ msgstr "อ่านเพิ่มเติม"
2772
+
2773
+ #: modules/callout/callout.php:500 modules/content-slider/content-slider.php:621 modules/subscribe-form/subscribe-form.php:173
2774
+ msgid "Button Icon"
2775
+ msgstr "ไอคอนปุ่ม"
2776
+
2777
+ #: modules/callout/callout.php:505 modules/content-slider/content-slider.php:626
2778
+ msgid "Button Icon Position"
2779
+ msgstr "ตำแหน่งปุ่มไอคอน"
2780
+
2781
+ #: modules/callout/callout.php:515 modules/content-slider/content-slider.php:636 modules/cta/cta.php:270 modules/subscribe-form/subscribe-form.php:188
2782
+ msgid "Button Colors"
2783
+ msgstr "สีปุ่ม"
2784
+
2785
+ #: modules/callout/callout.php:550 modules/content-slider/content-slider.php:663 modules/cta/cta.php:305 modules/subscribe-form/subscribe-form.php:223
2786
+ msgid "Button Style"
2787
+ msgstr "สไตล์ปุ่ม"
2788
+
2789
+ #: modules/callout/callout.php:588 modules/content-slider/content-slider.php:701 modules/cta/cta.php:343 modules/subscribe-form/subscribe-form.php:261
2790
+ msgid "Button Structure"
2791
+ msgstr "โครงสร้างปุ่ม"
2792
+
2793
+ #: modules/callout/callout.php:592
2794
+ msgid "Button Width"
2795
+ msgstr "ความกว้างปุ่ม"
2796
+
2797
+ #: modules/contact-form/contact-form.php:14
2798
+ msgid "Contact Form"
2799
+ msgstr "ฟอร์มการติดต่อ"
2800
+
2801
+ #: modules/contact-form/contact-form.php:15
2802
+ msgid "A very simple contact form."
2803
+ msgstr "ฟอร์มการติดต่ออย่างง่ายมาก"
2804
+
2805
+ #: modules/contact-form/contact-form.php:31
2806
+ msgid "Contact Form Submission"
2807
+ msgstr "ติดต่อส่งแบบฟอร์ม"
2808
+
2809
+ #: modules/contact-form/contact-form.php:41
2810
+ msgid "Message"
2811
+ msgstr "ข้อความ"
2812
+
2813
+ #: modules/contact-form/contact-form.php:65
2814
+ msgid "Send To Email"
2815
+ msgstr "ส่งอีเมล"
2816
+
2817
+ #: modules/contact-form/contact-form.php:67
2818
+ msgid "example@mail.com"
2819
+ msgstr "example@mail.com"
2820
+
2821
+ #: modules/contact-form/contact-form.php:68
2822
+ msgid "The contact form will send to this e-mail"
2823
+ msgstr "แบบฟอร์มการติดต่อจะส่งไปที่อีเมลนี้"
2824
+
2825
+ #: modules/contact-form/contact-form.php:75 modules/subscribe-form/subscribe-form.php:108
2826
+ msgid "Name Field"
2827
+ msgstr "ฟิลด์ชื่อ"
2828
+
2829
+ #: modules/contact-form/contact-form.php:78 modules/contact-form/contact-form.php:87 modules/contact-form/contact-form.php:96 modules/contact-form/contact-form.php:105 modules/post-carousel/post-carousel.php:258 modules/post-carousel/post-carousel.php:322 modules/post-carousel/post-carousel.php:331
2830
+ #: modules/post-carousel/post-carousel.php:366 modules/post-carousel/post-carousel.php:375 modules/post-grid/post-grid.php:119 modules/post-grid/post-grid.php:152 modules/post-grid/post-grid.php:161 modules/post-grid/post-grid.php:191 modules/post-grid/post-grid.php:205 modules/post-grid/post-grid.php:223
2831
+ #: modules/post-slider/post-slider.php:443 modules/post-slider/post-slider.php:502 modules/post-slider/post-slider.php:511 modules/post-slider/post-slider.php:541 modules/post-slider/post-slider.php:555 modules/post-slider/post-slider.php:564 modules/subscribe-form/subscribe-form.php:111
2832
+ msgid "Show"
2833
+ msgstr "แสดง"
2834
+
2835
+ #: modules/contact-form/contact-form.php:79 modules/contact-form/contact-form.php:88 modules/contact-form/contact-form.php:97 modules/contact-form/contact-form.php:106 modules/post-carousel/post-carousel.php:259 modules/post-carousel/post-carousel.php:323 modules/post-carousel/post-carousel.php:332
2836
+ #: modules/post-carousel/post-carousel.php:367 modules/post-carousel/post-carousel.php:376 modules/post-grid/post-grid.php:120 modules/post-grid/post-grid.php:153 modules/post-grid/post-grid.php:162 modules/post-grid/post-grid.php:192 modules/post-grid/post-grid.php:206 modules/post-grid/post-grid.php:224
2837
+ #: modules/post-slider/post-slider.php:444 modules/post-slider/post-slider.php:503 modules/post-slider/post-slider.php:512 modules/post-slider/post-slider.php:542 modules/post-slider/post-slider.php:556 modules/post-slider/post-slider.php:565 modules/subscribe-form/subscribe-form.php:112
2838
+ msgid "Hide"
2839
+ msgstr "ซ่อน"
2840
+
2841
+ #: modules/contact-form/contact-form.php:84
2842
+ msgid "Subject Field"
2843
+ msgstr "ฟิลด์หัวเรื่อง"
2844
+
2845
+ #: modules/contact-form/contact-form.php:93
2846
+ msgid "Email Field"
2847
+ msgstr "ฟิลด์อีเมล์"
2848
+
2849
+ #: modules/contact-form/contact-form.php:102
2850
+ msgid "Phone Field"
2851
+ msgstr "ฟิลด์โทรศัพท์"
2852
+
2853
+ #: modules/contact-form/includes/frontend.php:5
2854
+ msgctxt "Contact form field label."
2855
+ msgid "Name"
2856
+ msgstr "ชื่อ"
2857
+
2858
+ #: modules/contact-form/includes/frontend.php:6 modules/subscribe-form/includes/frontend.php:6
2859
+ msgid "Please enter your name."
2860
+ msgstr "กรุณากรอกชื่อของคุณ."
2861
+
2862
+ #: modules/contact-form/includes/frontend.php:7
2863
+ msgid "Your name"
2864
+ msgstr "ชื่อของคุณ"
2865
+
2866
+ #: modules/contact-form/includes/frontend.php:13 modules/contact-form/includes/frontend.php:15
2867
+ msgid "Subject"
2868
+ msgstr "หัวเรื่อง"
2869
+
2870
+ #: modules/contact-form/includes/frontend.php:14
2871
+ msgid "Please enter a subject."
2872
+ msgstr "กรุณากรอกหัวเรื่อง"
2873
+
2874
+ #: modules/contact-form/includes/frontend.php:22
2875
+ msgid "Please enter a valid email."
2876
+ msgstr "กรุณาป้อนอีเมลที่ถูกต้อง"
2877
+
2878
+ #: modules/contact-form/includes/frontend.php:23
2879
+ msgid "Your email"
2880
+ msgstr "อีเมลของคุณ"
2881
+
2882
+ #: modules/contact-form/includes/frontend.php:29
2883
+ msgid "Phone"
2884
+ msgstr "โทรศัพท์"
2885
+
2886
+ #: modules/contact-form/includes/frontend.php:30
2887
+ msgid "Please enter a valid phone number."
2888
+ msgstr "กรุณากรอกหมายเลขโทรศัพท์ที่ถูกต้อง"
2889
+
2890
+ #: modules/contact-form/includes/frontend.php:31
2891
+ msgid "Your phone"
2892
+ msgstr "โทรศัพท์ของคุณ"
2893
+
2894
+ #: modules/contact-form/includes/frontend.php:36
2895
+ msgid "Your Message"
2896
+ msgstr "ข้อความของคุณ"
2897
+
2898
+ #: modules/contact-form/includes/frontend.php:37
2899
+ msgid "Please enter a message."
2900
+ msgstr "กรุณาใส่ข้อความ"
2901
+
2902
+ #: modules/contact-form/includes/frontend.php:38
2903
+ msgid "Your message"
2904
+ msgstr "ข้อความของคุณ"
2905
+
2906
+ #: modules/contact-form/includes/frontend.php:43
2907
+ msgid "Send"
2908
+ msgstr "ส่ง"
2909
+
2910
+ #: modules/contact-form/includes/frontend.php:44
2911
+ msgid "Message Sent!"
2912
+ msgstr "ข้อความได้ถูกส่งแล้ว!"
2913
+
2914
+ #: modules/contact-form/includes/frontend.php:45
2915
+ msgid "Message failed. Please try again."
2916
+ msgstr "การส่งข้อความล้มเหลว กรุณาลองอีกครั้ง."
2917
+
2918
+ #: modules/content-slider/content-slider.php:14
2919
+ msgid "Content Slider"
2920
+ msgstr "สไลด์เนื้อหา"
2921
+
2922
+ #: modules/content-slider/content-slider.php:15
2923
+ msgid "Displays multiple slides with an optional heading and call to action."
2924
+ msgstr "แสดงหลายสไลด์พร้อมหัวข้อที่มีตัวเลือกและกระตุ้นให้ดำเนินการ"
2925
+
2926
+ #: modules/content-slider/content-slider.php:198 modules/map/map.php:41 modules/post-slider/post-slider.php:345 modules/separator/separator.php:58 modules/slideshow/slideshow.php:302
2927
+ msgid "Height"
2928
+ msgstr "ความสูง"
2929
+
2930
+ #: modules/content-slider/content-slider.php:203
2931
+ msgid "This setting is the minimum height of the content slider. Content will expand the height automatically."
2932
+ msgstr "นี่คือการตั้งค่าความสูงขั้นต่ำของเนื้อหาสไลด์ เนื้อหาจะขยายความสูงโดยอัตโนมัติ"
2933
+
2934
+ #: modules/content-slider/content-slider.php:207 modules/post-carousel/post-carousel.php:136 modules/post-slider/post-slider.php:354 modules/slideshow/slideshow.php:381 modules/testimonials/testimonials.php:82 modules/video/video.php:108
2935
+ msgid "Auto Play"
2936
+ msgstr "เล่นอัตโนมัติ"
2937
+
2938
+ #: modules/content-slider/content-slider.php:221
2939
+ msgid "Show Play/Pause"
2940
+ msgstr "แสดงเล่น / หยุดชั่วคราว"
2941
+
2942
+ #: modules/content-slider/content-slider.php:241 modules/testimonials/testimonials.php:102
2943
+ msgctxt "Transition type."
2944
+ msgid "Slide"
2945
+ msgstr "สไลด์"
2946
+
2947
+ #: modules/content-slider/content-slider.php:255 modules/post-carousel/post-carousel.php:188 modules/post-slider/post-slider.php:415 modules/testimonials/testimonials.php:121
2948
+ msgid "Show Arrows"
2949
+ msgstr "แสดงลูกศร"
2950
+
2951
+ #: modules/content-slider/content-slider.php:264 modules/post-carousel/post-carousel.php:179 modules/post-slider/post-slider.php:406 modules/testimonials/testimonials.php:151
2952
+ msgid "Show Dots"
2953
+ msgstr "แสดงจุด"
2954
+
2955
+ #: modules/content-slider/content-slider.php:278
2956
+ msgid "Max Content Width"
2957
+ msgstr "กว้างเนื้อหาสูงสุด"
2958
+
2959
+ #: modules/content-slider/content-slider.php:283
2960
+ msgid "The max width that the content area will be within your slides."
2961
+ msgstr "ความกว้างสูงสุดที่พื้นที่เนื้อหาจะได้รับภายในสไลด์ของคุณ"
2962
+
2963
+ #: modules/content-slider/content-slider.php:290
2964
+ msgid "Slides"
2965
+ msgstr "สไลด์"
2966
+
2967
+ #: modules/content-slider/content-slider.php:297 modules/post-slider/post-slider.php:374
2968
+ msgid "Slide"
2969
+ msgstr "สไลด์"
2970
+
2971
+ #: modules/content-slider/content-slider.php:312
2972
+ msgid "Slide Settings"
2973
+ msgstr "การตั้งค่าสไลด์"
2974
+
2975
+ #: modules/content-slider/content-slider.php:322
2976
+ msgid "Slide Label"
2977
+ msgstr "ป้ายสไลด์"
2978
+
2979
+ #: modules/content-slider/content-slider.php:323
2980
+ msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
2981
+ msgstr "ฉลากจะระบุสไลด์นี้บนแท็บสไลด์ของการตั้งค่าเนื้อหาสไลด์"
2982
+
2983
+ #: modules/content-slider/content-slider.php:328
2984
+ msgid "Background Layout"
2985
+ msgstr "เลย์เอ้าท์พื้นหลัง"
2986
+
2987
+ #: modules/content-slider/content-slider.php:334
2988
+ msgid "This setting is for the entire background of your slide."
2989
+ msgstr "การตั้งค่านี้สำหรับพื้นหลังทั้งหมดของสไลด์ของคุณ"
2990
+
2991
+ #: modules/content-slider/content-slider.php:369
2992
+ msgid "Background Video Code"
2993
+ msgstr "โค้ดวิดีโอพื้นหลัง"
2994
+
2995
+ #: modules/content-slider/content-slider.php:375
2996
+ msgid "Content Layout"
2997
+ msgstr "เลย์เอ้าท์เนื้อหา"
2998
+
2999
+ #: modules/content-slider/content-slider.php:381
3000
+ msgid "This allows you to add content over or in addition to the background selection above. The location of the content layout can be selected in the style tab."
3001
+ msgstr "นี้จะช่วยให้คุณสามารถเพิ่มเนื้อหามากกว่าหรือนอกเหนือไปจากการเลือกพื้นหลังดังกล่าวข้างต้น สถานที่ตั้งของเลย์เอ้าท์เนื้อหาที่สามารถเลือกได้ในแท็บสไตล์"
3002
+
3003
+ #: modules/content-slider/content-slider.php:384
3004
+ msgid "Text &amp; Photo"
3005
+ msgstr "ข้อความและรูปภาพ"
3006
+
3007
+ #: modules/content-slider/content-slider.php:385
3008
+ msgid "Text &amp; Video"
3009
+ msgstr "ข้อความและวิดีโอ"
3010
+
3011
+ #: modules/content-slider/content-slider.php:386
3012
+ msgctxt "Content type."
3013
+ msgid "None"
3014
+ msgstr "ไม่มี"
3015
+
3016
+ #: modules/content-slider/content-slider.php:409 modules/video/video.php:132
3017
+ msgid "Video Embed Code"
3018
+ msgstr "รหัสฝังวีดีโอ"
3019
+
3020
+ #: modules/content-slider/content-slider.php:469
3021
+ msgid "Text Position"
3022
+ msgstr "ตำแหน่งข้อความ"
3023
+
3024
+ #: modules/content-slider/content-slider.php:475
3025
+ msgid "The position will move the content layout selections left, right or center over the background of the slide."
3026
+ msgstr "ตำแหน่งนี้จะย้ายตัวเลือกเลย์เอ้าท์เนื้อหาไปทางซ้าย, ขวา, หรือตรงกลาง เหนือพื้นหลังของสไลด์"
3027
+
3028
+ #: modules/content-slider/content-slider.php:492
3029
+ msgid "Top Margin"
3030
+ msgstr "ความห่างด้านบน"
3031
+
3032
+ #: modules/content-slider/content-slider.php:500
3033
+ msgid "Bottom Margin"
3034
+ msgstr "ความห่างด้านล่าง"
3035
+
3036
+ #: modules/content-slider/content-slider.php:508
3037
+ msgid "Left Margin"
3038
+ msgstr "ความห่างด้านซ้าย"
3039
+
3040
+ #: modules/content-slider/content-slider.php:516
3041
+ msgid "Right Margin"
3042
+ msgstr "ความห่างด้านขวา"
3043
+
3044
+ #: modules/content-slider/content-slider.php:525
3045
+ msgid "Text Colors"
3046
+ msgstr "สีข้อความ"
3047
+
3048
+ #: modules/content-slider/content-slider.php:535
3049
+ msgid "Text Shadow"
3050
+ msgstr "เงาข้อความ"
3051
+
3052
+ #: modules/content-slider/content-slider.php:544 modules/content-slider/content-slider.php:770 modules/post-carousel/post-carousel.php:411 modules/post-grid/post-grid.php:312 modules/post-slider/post-slider.php:721
3053
+ msgid "Text Background Color"
3054
+ msgstr "สีพื้นหลังข้อความ"
3055
+
3056
+ #: modules/content-slider/content-slider.php:545 modules/post-carousel/post-carousel.php:413 modules/post-grid/post-grid.php:314 modules/post-slider/post-slider.php:722
3057
+ msgid "The color applies to the overlay behind text over the background selections."
3058
+ msgstr "สีนำไปใช้กับการซ้อนทับที่อยู่หลังข้อความเหนือการเลือกพื้นหลัง"
3059
+
3060
+ #: modules/content-slider/content-slider.php:550 modules/post-carousel/post-carousel.php:423 modules/post-grid/post-grid.php:319 modules/post-slider/post-slider.php:728
3061
+ msgid "Text Background Opacity"
3062
+ msgstr "ความโปร่งแสงข้อความพื้นหลัง"
3063
+
3064
+ #: modules/content-slider/content-slider.php:558 modules/post-slider/post-slider.php:745
3065
+ msgid "Text Background Height"
3066
+ msgstr "ความสูงข้อความพื้นหลัง"
3067
+
3068
+ #: modules/content-slider/content-slider.php:560 modules/post-slider/post-slider.php:747
3069
+ msgid "Auto will allow the overlay to fit however long the text content is. 100% will fit the overlay to the top and bottom of the slide."
3070
+ msgstr "ออโต้จะช่วยให้ซ้อนทับเพื่อให้พอดีกับยาวแต่ละเนื้อหา 100% จะพอดีกับการซ้อนทับด้านบนและด้านล่างของสไลด์"
3071
+
3072
+ #: modules/content-slider/content-slider.php:562 modules/post-slider/post-slider.php:749
3073
+ msgctxt "Background height."
3074
+ msgid "Auto"
3075
+ msgstr "อัตโนมัติ"
3076
+
3077
+ #: modules/content-slider/content-slider.php:579
3078
+ msgid "The link applies to the entire slide. If choosing a call to action type below, this link will also be used for the text or button."
3079
+ msgstr "ลิงค์นี้จะถูกนำไปใช้กับสไลด์ทั้งหมด ถ้าเลือกประเภทกระตุ้นให้ดำเนินการดังต่อไปนี้ ลิงค์นี้จะถูกนำมาใช้สำหรับข้อความหรือปุ่มด้วย"
3080
+
3081
+ #: modules/content-slider/content-slider.php:721
3082
+ msgid "Border Radius"
3083
+ msgstr "รัศมีขอบ"
3084
+
3085
+ #: modules/content-slider/content-slider.php:732
3086
+ msgctxt "Module settings form tab. Display on mobile devices."
3087
+ msgid "Mobile"
3088
+ msgstr "มือถือ"
3089
+
3090
+ #: modules/content-slider/content-slider.php:735
3091
+ msgid "Mobile Photo"
3092
+ msgstr "รูปถ่ายบนมือถือ"
3093
+
3094
+ #: modules/content-slider/content-slider.php:741
3095
+ msgid "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
3096
+ msgstr "คุณสามารถเลือกภาพที่แตกต่างกันที่สไลด์จะเปลี่ยนไปบนโทรศัพท์มือถือหรือไม่มีภาพภาพแล้วก็แต่ต้องการ"
3097
+
3098
+ #: modules/content-slider/content-slider.php:743
3099
+ msgid "Use Main Photo"
3100
+ msgstr "ใช้ภาพหลัก"
3101
+
3102
+ #: modules/content-slider/content-slider.php:744
3103
+ msgid "Choose Another Photo"
3104
+ msgstr "เลือกภาพอีก"
3105
+
3106
+ #: modules/content-slider/content-slider.php:745
3107
+ msgid "No Photo"
3108
+ msgstr "ไม่มีรูปภาพ"
3109
+
3110
+ #: modules/content-slider/content-slider.php:760
3111
+ msgid "Mobile Text Colors"
3112
+ msgstr "สีข้อความบนมือถือ"
3113
+
3114
+ #: modules/cta/cta.php:15
3115
+ msgid "Display a heading, subheading and a button."
3116
+ msgstr "แสดงหัวข้อ, หัวข้อย่อย และปุ่ม"
3117
+
3118
+ #: modules/cta/cta.php:76
3119
+ msgid "Ready to find out more?"
3120
+ msgstr "พร้อมที่จะหาข้อมูลเพิ่มเติมหรือไม่?"
3121
+
3122
+ #: modules/cta/cta.php:91
3123
+ msgid "Drop us a line today for a free quote!"
3124
+ msgstr "ติดต่อเราในวันนี้สำหรับใบเสนอราคาฟรี!"
3125
+
3126
+ #: modules/cta/cta.php:109 modules/gallery/gallery.php:227 modules/menu/menu.php:90 modules/post-carousel/post-carousel.php:117 modules/post-carousel/post-carousel.php:206 modules/post-grid/post-grid.php:44 modules/post-slider/post-slider.php:433 modules/subscribe-form/subscribe-form.php:99
3127
+ #: modules/tabs/tabs.php:52 modules/testimonials/testimonials.php:37 modules/woocommerce/woocommerce.php:57
3128
+ msgid "Layout"
3129
+ msgstr "เลย์เอ้าท์"
3130
+
3131
+ #: modules/cta/cta.php:112 modules/subscribe-form/subscribe-form.php:103
3132
+ msgid "Inline"
3133
+ msgstr "อินไลน์"
3134
+
3135
+ #: modules/cta/cta.php:113 modules/subscribe-form/subscribe-form.php:102
3136
+ msgid "Stacked"
3137
+ msgstr "ซ้อนกัน"
3138
+
3139
+ #: modules/cta/cta.php:133 modules/icon-group/icon-group.php:99
3140
+ msgid "Spacing"
3141
+ msgstr "ความห่าง"
3142
+
3143
+ #: modules/cta/cta.php:246
3144
+ msgid "Button Link"
3145
+ msgstr "ปุ่มลิงค์"
3146
+
3147
+ #: modules/gallery/gallery.php:14 modules/post-carousel/post-carousel.php:121 modules/post-grid/post-grid.php:55
3148
+ msgid "Gallery"
3149
+ msgstr "แกลลอรี่"
3150
+
3151
+ #: modules/gallery/gallery.php:15
3152
+ msgid "Display multiple photos in a gallery view."
3153
+ msgstr "แสดงภาพถ่ายหลายภาพในมุมมองแกลเลอรี่"
3154
+
3155
+ #: modules/gallery/gallery.php:230
3156
+ msgid "Collage"
3157
+ msgstr "ภาพปะติดปะต่อ"
3158
+
3159
+ #: modules/gallery/gallery.php:231
3160
+ msgctxt "Gallery layout: thumbnails."
3161
+ msgid "Thumbs"
3162
+ msgstr "ขนาดย่อ"
3163
+
3164
+ #: modules/gallery/gallery.php:267
3165
+ msgid "Photo Size"
3166
+ msgstr "ขนาดรูปภาพ"
3167
+
3168
+ #: modules/gallery/gallery.php:270
3169
+ msgctxt "Photo size."
3170
+ msgid "Small"
3171
+ msgstr "ขนาดเล็ก"
3172
+
3173
+ #: modules/gallery/gallery.php:271
3174
+ msgctxt "Photo size."
3175
+ msgid "Medium"
3176
+ msgstr "ขนาดปานกลาง"
3177
+
3178
+ #: modules/gallery/gallery.php:272
3179
+ msgctxt "Photo size."
3180
+ msgid "Large"
3181
+ msgstr "ขนาดใหญ่"
3182
+
3183
+ #: modules/gallery/gallery.php:277
3184
+ msgid "Photo Spacing"
3185
+ msgstr "ระยะห่างรูปภาพ"
3186
+
3187
+ #: modules/gallery/gallery.php:285
3188
+ msgid "Show Captions"
3189
+ msgstr "แสดงคำบรรยาย"
3190
+
3191
+ #: modules/gallery/gallery.php:288 modules/photo/photo.php:448
3192
+ msgid "Never"
3193
+ msgstr "ไม่เลย"
3194
+
3195
+ #: modules/gallery/gallery.php:289 modules/photo/photo.php:449
3196
+ msgid "On Hover"
3197
+ msgstr "เมื่อเอาเมาส์ไปวาง"
3198
+
3199
+ #: modules/gallery/gallery.php:290 modules/photo/photo.php:450
3200
+ msgid "Below Photo"
3201
+ msgstr "ด้านล่างภาพ"
3202
+
3203
+ #: modules/gallery/gallery.php:292
3204
+ msgid "The caption pulls from whatever text you put in the caption area in the media manager for each image. The caption is also pulled directly from SmugMug if you have captions set in your gallery."
3205
+ msgstr "คำอธิบายดึงจากข้อความที่คุณใส่ในพื้นที่คำอธิบายในการจัดการสื่อสำหรับภาพแต่ละภาพ คำอธิบายนี้ยังดึงโดยตรงจาก SmugMug ถ้าคุณมีคำอธิบายที่ตั้งอยู่ในแกลเลอรี่ของคุณ"
3206
+
3207
+ #: modules/gallery/gallery.php:296 modules/slideshow/slideshow.php:343
3208
+ msgid "Click Action"
3209
+ msgstr "คลิกดำเนินการ"
3210
+
3211
+ #: modules/gallery/gallery.php:299
3212
+ msgctxt "Click action."
3213
+ msgid "None"
3214
+ msgstr "ไม่มี"
3215
+
3216
+ #: modules/gallery/gallery.php:300 modules/photo/photo.php:468
3217
+ msgid "Lightbox"
3218
+ msgstr "Lightbox"
3219
+
3220
+ #: modules/gallery/gallery.php:301
3221
+ msgid "Photo Link"
3222
+ msgstr "ลิงค์รูปภาพ"
3223
+
3224
+ #: modules/heading/heading.php:15
3225
+ msgid "Display a title/page heading."
3226
+ msgstr "แสดงชื่อ / หัวข้อ"
3227
+
3228
+ #: modules/heading/heading.php:101
3229
+ msgid "HTML Tag"
3230
+ msgstr "แท็ก HTML"
3231
+
3232
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
3233
+ msgid "Custom Font Size"
3234
+ msgstr "ขนาดตัวอักษรที่กำหนดเอง"
3235
+
3236
+ #: modules/heading/heading.php:137
3237
+ msgid "Mobile Structure"
3238
+ msgstr "โครงสร้างมือถือ"
3239
+
3240
+ #: modules/heading/heading.php:158
3241
+ msgid "Custom Alignment"
3242
+ msgstr "การจัดตำแหน่งที่กำหนดเอง"
3243
+
3244
+ #: modules/html/html.php:14
3245
+ msgid "HTML"
3246
+ msgstr "HTML"
3247
+
3248
+ #: modules/html/html.php:15
3249
+ msgid "Display raw HTML code."
3250
+ msgstr "แสดงโค้ด HTML แบบ Raw"
3251
+
3252
+ #: modules/icon-group/icon-group.php:14
3253
+ msgid "Icon Group"
3254
+ msgstr "กลุ่มไอคอน"
3255
+
3256
+ #: modules/icon-group/icon-group.php:15
3257
+ msgid "Display a group of linked Font Awesome icons."
3258
+ msgstr "แสดงกลุ่มของไอคอนที่เชื่อมโยงกับ Font Awesome"
3259
+
3260
+ #: modules/icon-group/icon-group.php:125
3261
+ msgid "Add Icon"
3262
+ msgstr "เพิ่มไอคอน"
3263
+
3264
+ #: modules/icon/icon.php:15
3265
+ msgid "Display an icon and optional title."
3266
+ msgstr "แสดงไอคอนและชื่อตัวเลือก"
3267
+
3268
+ #: modules/map/map.php:14
3269
+ msgid "Map"
3270
+ msgstr "แผนที่"
3271
+
3272
+ #: modules/map/map.php:15
3273
+ msgid "Display a Google map."
3274
+ msgstr "แสดงแผนที่ของ Google"
3275
+
3276
+ #: modules/map/map.php:33
3277
+ msgid "Address"
3278
+ msgstr "ที่อยู่"
3279
+
3280
+ #: modules/map/map.php:34
3281
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
3282
+ msgstr "1865 Winchester Blvd #202 Campbell, CA 95008"
3283
+
3284
+ #: modules/menu/menu.php:14 modules/menu/menu.php:24 modules/menu/menu.php:62 modules/menu/menu.php:69
3285
+ msgid "Menu"
3286
+ msgstr "เมนู"
3287
+
3288
+ #: modules/menu/menu.php:15
3289
+ msgid "Renders a WordPress menu."
3290
+ msgstr "แสดงเมนู WordPress"
3291
+
3292
+ #: modules/menu/menu.php:25
3293
+ msgid "Select a WordPress menu that you created in the admin under Appearance > Menus."
3294
+ msgstr "เลือกเมนู WordPress ที่คุณสร้างในผู้ดูแลระบบภายใต้ ลักษณะที่ปรากฏ > เมนู"
3295
+
3296
+ #: modules/menu/menu.php:42
3297
+ msgid "No Menus Found"
3298
+ msgstr "ไม่พบเมนู"
3299
+
3300
+ #: modules/menu/menu.php:93 modules/tabs/tabs.php:55
3301
+ msgid "Horizontal"
3302
+ msgstr "แนวนอน"
3303
+
3304
+ #: modules/menu/menu.php:94 modules/tabs/tabs.php:56
3305
+ msgid "Vertical"
3306
+ msgstr "แนวตั้ง"
3307
+
3308
+ #: modules/menu/menu.php:96 modules/menu/menu.php:134
3309
+ msgid "Expanded"
3310
+ msgstr "ขยาย"
3311
+
3312
+ #: modules/menu/menu.php:112
3313
+ msgid "Submenu Icon"
3314
+ msgstr "ไอคอนเมนูย่อย"
3315
+
3316
+ #: modules/menu/menu.php:115 modules/menu/menu.php:125
3317
+ msgid "Arrows"
3318
+ msgstr "ลูกศร"
3319
+
3320
+ #: modules/menu/menu.php:116 modules/menu/menu.php:126
3321
+ msgid "Plus sign"
3322
+ msgstr "เครื่องหมายบวก"
3323
+
3324
+ #: modules/menu/menu.php:117 modules/menu/menu.php:223
3325
+ msgid "None"
3326
+ msgstr "ไม่มี"
3327
+
3328
+ #: modules/menu/menu.php:122
3329
+ msgid "Submenu Icon click"
3330
+ msgstr "เมนูย่อยคลิกไอคอน"
3331
+
3332
+ #: modules/menu/menu.php:131
3333
+ msgid "Mobile Style"
3334
+ msgstr "สไตล์บนมือถือ"
3335
+
3336
+ #: modules/menu/menu.php:135
3337
+ msgid "Hamburger Icon"
3338
+ msgstr "ไอคอนแฮมเบอร์เกอร์"
3339
+
3340
+ #: modules/menu/menu.php:136
3341
+ msgid "Hamburger Icon + label"
3342
+ msgstr "ไอคอนแฮมเบอร์เกอร์ + ป้าย"
3343
+
3344
+ #: modules/menu/menu.php:137
3345
+ msgid "Menu Button"
3346
+ msgstr "ปุ่มเมนู"
3347
+
3348
+ #: modules/menu/menu.php:153
3349
+ msgid "Menu Alignment"
3350
+ msgstr "เมนูการจัดตำแหน่ง"
3351
+
3352
+ #: modules/menu/menu.php:164
3353
+ msgid "Submenu Drop Shadow"
3354
+ msgstr "เมนูย่อยเงา"
3355
+
3356
+ #: modules/menu/menu.php:206
3357
+ msgid "Link Size"
3358
+ msgstr "ขนาดของลิงค์"
3359
+
3360
+ #: modules/menu/menu.php:220
3361
+ msgid "Link Format"
3362
+ msgstr "รูปแบบของลิงค์"
3363
+
3364
+ #: modules/menu/menu.php:224
3365
+ msgid "Uppercase"
3366
+ msgstr "ตัวพิมพ์ใหญ่"
3367
+
3368
+ #: modules/menu/menu.php:225
3369
+ msgid "Lowercase"
3370
+ msgstr "ตัวพิมพ์เล็ก"
3371
+
3372
+ #: modules/menu/menu.php:226
3373
+ msgid "Capitalize"
3374
+ msgstr "พิมพ์ใหญ่ทั้งหมด"
3375
+
3376
+ #: modules/menu/menu.php:236
3377
+ msgid "Link Weight"
3378
+ msgstr "น้ำหนักของลิงค์"
3379
+
3380
+ #: modules/menu/menu.php:239
3381
+ msgid "Normal"
3382
+ msgstr "ปกติ"
3383
+
3384
+ #: modules/menu/menu.php:240
3385
+ msgid "Bold"
3386
+ msgstr "ตัวหนา"
3387
+
3388
+ #: modules/menu/menu.php:241
3389
+ msgid "Light"
3390
+ msgstr "ตัวบาง"
3391
+
3392
+ #: modules/menu/menu.php:251
3393
+ msgid "Horizontal Spacing"
3394
+ msgstr "ระยะห่างแนวนอน"
3395
+
3396
+ #: modules/menu/menu.php:274
3397
+ msgid "Vertical Spacing"
3398
+ msgstr "ระยะห่างในแนวตั้ง"
3399
+
3400
+ #: modules/menu/menu.php:299
3401
+ msgid "Backgrounds"
3402
+ msgstr "พื้นหลัง"
3403
+
3404
+ #: modules/menu/menu.php:303
3405
+ msgid "Menu Background Color"
3406
+ msgstr "เมนูสีพื้นหลัง"
3407
+
3408
+ #: modules/menu/menu.php:313 modules/menu/menu.php:331
3409
+ msgid "Menu Background Opacity"
3410
+ msgstr "เมนูความโปร่งแสงของพื้นหลัง"
3411
+
3412
+ #: modules/menu/menu.php:321
3413
+ msgid "Submenu Background Color"
3414
+ msgstr "เมนูย่อยสีพื้นหลัง"
3415
+
3416
+ #: modules/menu/menu.php:340
3417
+ msgid "Link Background Hover Color"
3418
+ msgstr "สีของพื้นหลังลิงค์เมื่อเอาเมาส์ไปวาง"
3419
+
3420
+ #: modules/menu/menu.php:351 modules/separator/separator.php:14
3421
+ msgid "Separator"
3422
+ msgstr "ตัวคั่น"
3423
+
3424
+ #: modules/menu/menu.php:355
3425
+ msgid "Show Separators"
3426
+ msgstr "แสดงตัวคั่น"
3427
+
3428
+ #: modules/menu/menu.php:369
3429
+ msgid "Separator Color"
3430
+ msgstr "ตัวคั่นสี"
3431
+
3432
+ #: modules/menu/menu.php:374
3433
+ msgid "Separator Opacity"
3434
+ msgstr "ตัวคั่นความทึบแสง"
3435
+
3436
+ #: modules/photo/photo.php:26
3437
+ msgid "Upload a photo or display one from the media library."
3438
+ msgstr "อัปโหลดรูปภาพหรือเลือกจากคลังสื่อ"
3439
+
3440
+ #: modules/photo/photo.php:391
3441
+ msgid "Photo Source"
3442
+ msgstr "แหล่งที่มาของภาพ"
3443
+
3444
+ #: modules/photo/photo.php:395 modules/photo/photo.php:467
3445
+ msgid "URL"
3446
+ msgstr "URL"
3447
+
3448
+ #: modules/photo/photo.php:412
3449
+ msgid "Photo URL"
3450
+ msgstr "URL รูปภาพ"
3451
+
3452
+ #: modules/photo/photo.php:413
3453
+ msgid "http://www.example.com/my-photo.jpg"
3454
+ msgstr "http://www.example.com/my-photo.jpg"
3455
+
3456
+ #: modules/photo/photo.php:441 modules/photo/photo.php:455
3457
+ msgid "Caption"
3458
+ msgstr "คำอธิบายภาพ"
3459
+
3460
+ #: modules/photo/photo.php:445
3461
+ msgid "Show Caption"
3462
+ msgstr "แสดงคำอธิบาย"
3463
+
3464
+ #: modules/photo/photo.php:464
3465
+ msgid "Link Type"
3466
+ msgstr "ประเภทลิงค์"
3467
+
3468
+ #: modules/photo/photo.php:466
3469
+ msgctxt "Link type."
3470
+ msgid "None"
3471
+ msgstr "ไม่มี"
3472
+
3473
+ #: modules/photo/photo.php:469
3474
+ msgid "Photo File"
3475
+ msgstr "ไฟล์รูปภาพ"
3476
+
3477
+ #: modules/photo/photo.php:480
3478
+ msgid "Link type applies to how the image should be linked on click. You can choose a specific URL, the individual photo or a separate page with the photo."
3479
+ msgstr "ประเภทลิงค์ที่ใช้จะนำไปใช้กับวิธีการที่ภาพควรจะเชื่อมโยงตอนคลิก คุณสามารถเลือก URL เฉพาะสำหรับภาพเดื่ยวหรือแยกหน้ากับภาพ"
3480
+
3481
+ #: modules/photo/photo.php:487 modules/slideshow/slideshow.php:364
3482
+ msgid "Link URL"
3483
+ msgstr "URL ลิงค์"
3484
+
3485
+ #: modules/post-carousel/includes/post-gallery-loop.php:35 modules/post-carousel/includes/post-grid-loop.php:22 modules/post-grid/includes/post-feed.php:14 modules/post-grid/includes/post-grid.php:24 modules/post-slider/includes/post-loop.php:29
3486
+ #, php-format
3487
+ msgctxt "%s stands for author name."
3488
+ msgid "By %s"
3489
+ msgstr "โดย %s"
3490
+
3491
+ #: modules/post-carousel/post-carousel.php:14
3492
+ msgid "Posts Carousel"
3493
+ msgstr "โพสต์แบบหมุน"
3494
+
3495
+ #: modules/post-carousel/post-carousel.php:15
3496
+ msgid "Display a carousel of your WordPress posts."
3497
+ msgstr "แสดงการหมุนโพสของเวิร์ดเพรสของคุณ"
3498
+
3499
+ #: modules/post-carousel/post-carousel.php:110 modules/post-slider/post-slider.php:338
3500
+ msgid "Slider"
3501
+ msgstr "แถบเลื่อน"
3502
+
3503
+ #: modules/post-carousel/post-carousel.php:120 modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:91
3504
+ msgid "Grid"
3505
+ msgstr "ตาราง"
3506
+
3507
+ #: modules/post-carousel/post-carousel.php:152 modules/post-slider/post-slider.php:379 modules/video/video.php:120
3508
+ msgid "Loop"
3509
+ msgstr "วนซ้ำ"
3510
+
3511
+ #: modules/post-carousel/post-carousel.php:168 modules/post-slider/post-slider.php:395
3512
+ msgid "Number of Posts"
3513
+ msgstr "จำนวนโพสต์"
3514
+
3515
+ #: modules/post-carousel/post-carousel.php:175 modules/post-slider/post-slider.php:402
3516
+ msgid "Slider Controls"
3517
+ msgstr "ตัวควบคุมการเลื่อน"
3518
+
3519
+ #: modules/post-carousel/post-carousel.php:209 modules/post-grid/post-grid.php:14
3520
+ msgid "Posts"
3521
+ msgstr "โพสต์"
3522
+
3523
+ #: modules/post-carousel/post-carousel.php:213
3524
+ msgid "Post Max Width"
3525
+ msgstr "ความกว้างของโพสต์สูงสุด"
3526
+
3527
+ #: modules/post-carousel/post-carousel.php:221 modules/post-grid/post-grid.php:103
3528
+ msgid "Post Spacing"
3529
+ msgstr "ระยะห่างของโพสต์"
3530
+
3531
+ #: modules/post-carousel/post-carousel.php:229
3532
+ msgid "Equalize Column Heights"
3533
+ msgstr "ทำให้ความสูงคอลัมน์เท่ากัน"
3534
+
3535
+ #: modules/post-carousel/post-carousel.php:238
3536
+ msgid "Post Hover Transition"
3537
+ msgstr "การเปลี่ยนโพสต์เมื่อเอาเมาส์ไปวาง"
3538
+
3539
+ #: modules/post-carousel/post-carousel.php:242 modules/post-grid/post-grid.php:248
3540
+ msgid "Slide Up"
3541
+ msgstr "เลื่อนขึ้น"
3542
+
3543
+ #: modules/post-carousel/post-carousel.php:243 modules/post-grid/post-grid.php:249
3544
+ msgid "Slide Down"
3545
+ msgstr "เลื่อนลง"
3546
+
3547
+ #: modules/post-carousel/post-carousel.php:244 modules/post-grid/post-grid.php:250
3548
+ msgid "Scale Up"
3549
+ msgstr "ขยายขึ้น"
3550
+
3551
+ #: modules/post-carousel/post-carousel.php:245 modules/post-grid/post-grid.php:251
3552
+ msgid "Scale Down"
3553
+ msgstr "ย่อลง"
3554
+
3555
+ #: modules/post-carousel/post-carousel.php:251 modules/post-grid/post-grid.php:112 modules/post-slider/post-slider.php:456
3556
+ msgid "Featured Image"
3557
+ msgstr "ภาพที่โดดเด่น"
3558
+
3559
+ #: modules/post-carousel/post-carousel.php:279 modules/post-grid/post-grid.php:261
3560
+ msgid "Use Icon for Posts"
3561
+ msgstr "ใช้ไอคอนสำหรับโพสต์"
3562
+
3563
+ #: modules/post-carousel/post-carousel.php:293 modules/post-grid/post-grid.php:275
3564
+ msgid "Post Icon"
3565
+ msgstr "โพสต์ไอคอน"
3566
+
3567
+ #: modules/post-carousel/post-carousel.php:297 modules/post-grid/post-grid.php:279
3568
+ msgid "Post Icon Position"
3569
+ msgstr "ตำแหน่งโพสต์ไอคอน"
3570
+
3571
+ #: modules/post-carousel/post-carousel.php:300 modules/post-grid/post-grid.php:133 modules/post-grid/post-grid.php:282
3572
+ msgid "Above Text"
3573
+ msgstr "เหนือข้อความ"
3574
+
3575
+ #: modules/post-carousel/post-carousel.php:301 modules/post-grid/post-grid.php:283
3576
+ msgid "Below Text"
3577
+ msgstr "ใต้ข้อความ"
3578
+
3579
+ #: modules/post-carousel/post-carousel.php:306 modules/post-grid/post-grid.php:288
3580
+ msgid "Post Icon Size"
3581
+ msgstr "ขนาดโพสต์ไอคอน"
3582
+
3583
+ #: modules/post-carousel/post-carousel.php:315 modules/post-grid/post-grid.php:145 modules/post-slider/post-slider.php:495
3584
+ msgid "Post Info"
3585
+ msgstr "ข้อมูลโพสต์"
3586
+
3587
+ #: modules/post-carousel/post-carousel.php:342 modules/post-grid/post-grid.php:172 modules/post-slider/post-slider.php:522
3588
+ msgid "Date Format"
3589
+ msgstr "รูปแบบวันที่"
3590
+
3591
+ #: modules/post-carousel/post-carousel.php:372 modules/post-grid/post-grid.php:220 modules/post-slider/post-slider.php:561
3592
+ msgid "More Link"
3593
+ msgstr "ลิงค์เพิ่มเติม"
3594
+
3595
+ #: modules/post-carousel/post-carousel.php:381 modules/post-grid/post-grid.php:229 modules/post-slider/post-slider.php:570
3596
+ msgid "More Link Text"
3597
+ msgstr "ข้อความลิงค์เพิ่มเติม ๆ"
3598
+
3599
+ #: modules/post-carousel/post-carousel.php:418 modules/post-grid/post-grid.php:307
3600
+ msgid "Post Icon Color"
3601
+ msgstr "สีโพสต์ไอคอน"
3602
+
3603
+ #: modules/post-grid/includes/frontend.php:41
3604
+ msgid "No posts found."
3605
+ msgstr "ไม่พบโพส"
3606
+
3607
+ #: modules/post-grid/post-grid.php:15
3608
+ msgid "Display a grid of your WordPress posts."
3609
+ msgstr "แสดงตารางจากการโพสเวิร์ดเพรสของคุณ"
3610
+
3611
+ #: modules/post-grid/post-grid.php:51
3612
+ msgid "Layout Style"
3613
+ msgstr "สไตล์เลย์เอ้าท์"
3614
+
3615
+ #: modules/post-grid/post-grid.php:56
3616
+ msgid "Feed"
3617
+ msgstr "ฟีด"
3618
+
3619
+ #: modules/post-grid/post-grid.php:74
3620
+ msgid "Pagination Style"
3621
+ msgstr "สไตล์ตัวเลข"
3622
+
3623
+ #: modules/post-grid/post-grid.php:77
3624
+ msgid "Numbers"
3625
+ msgstr "หมายเลข"
3626
+
3627
+ #: modules/post-grid/post-grid.php:79
3628
+ msgctxt "Pagination style."
3629
+ msgid "None"
3630
+ msgstr "ไม่มี"
3631
+
3632
+ #: modules/post-grid/post-grid.php:84
3633
+ msgid "Posts Per Page"
3634
+ msgstr "จำนวนโพสต์ต่อหน้า"
3635
+
3636
+ #: modules/post-grid/post-grid.php:95
3637
+ msgid "Post Width"
3638
+ msgstr "ความกว้างของโพสต์"
3639
+
3640
+ #: modules/post-grid/post-grid.php:134
3641
+ msgid "Beside Text"
3642
+ msgstr "ด้านข้างข้อความ"
3643
+
3644
+ #: modules/post-grid/post-grid.php:188 modules/post-slider/post-slider.php:538
3645
+ msgid "Comments"
3646
+ msgstr "ข้อคิดเห็น"
3647
+
3648
+ #: modules/post-grid/post-grid.php:211
3649
+ msgid "Content Type"
3650
+ msgstr "ประเภทเนื้อหา"
3651
+
3652
+ #: modules/post-grid/post-grid.php:214
3653
+ msgid "Excerpt"
3654
+ msgstr "ข้อความตัด"
3655
+
3656
+ #: modules/post-grid/post-grid.php:215
3657
+ msgid "Full Text"
3658
+ msgstr "ข้อความเต็ม"
3659
+
3660
+ #: modules/post-grid/post-grid.php:244
3661
+ msgid "Hover Transition"
3662
+ msgstr "การเปลี่ยนเมื่อเอาเมาส์ไปวาง"
3663
+
3664
+ #: modules/post-slider/post-slider.php:14
3665
+ msgid "Posts Slider"
3666
+ msgstr "Posts Slider"
3667
+
3668
+ #: modules/post-slider/post-slider.php:15
3669
+ msgid "Display a slider of your WordPress posts."
3670
+ msgstr "แสดงสไลด์ของโพสต์ WordPress ของคุณ"
3671
+
3672
+ #: modules/post-slider/post-slider.php:350
3673
+ msgid "This setting is the minimum height of the post slider. Content will expand the height automatically."
3674
+ msgstr "นี่คือการตั้งค่าความสูงขั้นต่ำของการเลื่อนการโพสต์ เนื้อหาจะขยายความสูงโดยอัตโนมัติ"
3675
+
3676
+ #: modules/post-slider/post-slider.php:440
3677
+ msgid "Show Featured Image?"
3678
+ msgstr "แสดงภาพเด่น?"
3679
+
3680
+ #: modules/post-slider/post-slider.php:628
3681
+ msgid "The position will move the content layout selections left, right or bottom over the background of the slide."
3682
+ msgstr "ตำแหน่งนี้จะย้ายตัวเลือกเลย์เอ้าท์ของเนื้อหาไปทางซ้าย, ขวา หรือด้านล่าง เหนือพื้นหลังของสไลด์"
3683
+
3684
+ #: modules/post-slider/post-slider.php:647
3685
+ msgid "The position will move the content layout selections left or right or center of the thumbnail of the slide."
3686
+ msgstr "ตำแหน่งนี้จะย้ายตัวเลือกเลย์เอ้าท์ของเนื้อหาไปทางซ้าย, หรือขวา, หรือตรงกลาง ของภาพขนาดย่อของสไลด์"
3687
+
3688
+ #: modules/post-slider/post-slider.php:663
3689
+ msgid "Text Width"
3690
+ msgstr "ความกว้างข้อความ"
3691
+
3692
+ #: modules/post-slider/post-slider.php:671
3693
+ msgid "Text Padding"
3694
+ msgstr "ระยะห่างข้อความ"
3695
+
3696
+ #: modules/post-slider/post-slider.php:736
3697
+ msgid "Text Background Gradient"
3698
+ msgstr "การไล่ระดับสีพื้นหลังข้อความ"
3699
+
3700
+ #: modules/pricing-table/pricing-table.php:14
3701
+ msgid "Pricing Table"
3702
+ msgstr "ตารางราคา"
3703
+
3704
+ #: modules/pricing-table/pricing-table.php:15
3705
+ msgid "A simple pricing table generator."
3706
+ msgstr "เครื่องมือสร้างตารางการราคาแบบเรียบง่าย"
3707
+
3708
+ #: modules/pricing-table/pricing-table.php:26
3709
+ msgid "Pricing Boxes"
3710
+ msgstr "กล่องราคา"
3711
+
3712
+ #: modules/pricing-table/pricing-table.php:33
3713
+ msgid "Pricing Box"
3714
+ msgstr "กล่องราคา"
3715
+
3716
+ #: modules/pricing-table/pricing-table.php:50
3717
+ msgid "Box Spacing"
3718
+ msgstr "ระยะห่างของกล่อง"
3719
+
3720
+ #: modules/pricing-table/pricing-table.php:53 modules/testimonials/testimonials.php:40
3721
+ msgid "Wide"
3722
+ msgstr "กว้าง"
3723
+
3724
+ #: modules/pricing-table/pricing-table.php:54
3725
+ msgid "Tight"
3726
+ msgstr "แคบ"
3727
+
3728
+ #: modules/pricing-table/pricing-table.php:59
3729
+ msgid "Features Min Height"
3730
+ msgstr "คุณสมบัติขั้นต่ำของความสูง"
3731
+
3732
+ #: modules/pricing-table/pricing-table.php:63
3733
+ msgid "Use this to normalize the height of your boxes when they have different numbers of features."
3734
+ msgstr "ใช้คำสั่งเพื่อปรับความสูงของกล่องของคุณเมื่อพวกเขามีคุณสมบัติของตัวเลขที่แตกต่างกัน"
3735
+
3736
+ #: modules/pricing-table/pricing-table.php:70
3737
+ msgctxt "Border size."
3738
+ msgid "Wide"
3739
+ msgstr "กว้าง"
3740
+
3741
+ #: modules/pricing-table/pricing-table.php:71
3742
+ msgctxt "Border size."
3743
+ msgid "Tight"
3744
+ msgstr "แคบ"
3745
+
3746
+ #: modules/pricing-table/pricing-table.php:84
3747
+ msgid "Add Pricing Box"
3748
+ msgstr "เพิ่มกล่องราคา"
3749
+
3750
+ #: modules/pricing-table/pricing-table.php:98
3751
+ msgid "Title Size"
3752
+ msgstr "ขนาดชื่อเรื่อง"
3753
+
3754
+ #: modules/pricing-table/pricing-table.php:107
3755
+ msgid "Price Box"
3756
+ msgstr "กล่องราคา"
3757
+
3758
+ #: modules/pricing-table/pricing-table.php:111 modules/woocommerce/woocommerce.php:190
3759
+ msgid "Price"
3760
+ msgstr "ราคา"
3761
+
3762
+ #: modules/pricing-table/pricing-table.php:115
3763
+ msgid "Duration"
3764
+ msgstr "ระยะเวลา"
3765
+
3766
+ #: modules/pricing-table/pricing-table.php:116
3767
+ msgid "per Year"
3768
+ msgstr "ต่อปี"
3769
+
3770
+ #: modules/pricing-table/pricing-table.php:120
3771
+ msgid "Price Size"
3772
+ msgstr "ราคาขนาด"
3773
+
3774
+ #: modules/pricing-table/pricing-table.php:133 modules/subscribe-form/subscribe-form.php:168
3775
+ msgid "Button Text"
3776
+ msgstr "ข้อความบนปุ่ม"
3777
+
3778
+ #: modules/pricing-table/pricing-table.php:137
3779
+ msgid "Button URL"
3780
+ msgstr "URL ปุ่ม"
3781
+
3782
+ #: modules/pricing-table/pricing-table.php:142
3783
+ msgctxt "Price features displayed in pricing box."
3784
+ msgid "Features"
3785
+ msgstr "คุณลักษณะเด่น"
3786
+
3787
+ #: modules/pricing-table/pricing-table.php:147
3788
+ msgid "One feature per line. HTML is okay."
3789
+ msgstr "หนึ่งคุณลักษณะเด่นต่อบรรทัด. HTML ก็ได้"
3790
+
3791
+ #: modules/pricing-table/pricing-table.php:162
3792
+ msgid "Box Background"
3793
+ msgstr "พื้นหลังของกล่อง"
3794
+
3795
+ #: modules/pricing-table/pricing-table.php:167
3796
+ msgid "Box Foreground"
3797
+ msgstr "เบื้องหน้าของกล่อง"
3798
+
3799
+ #: modules/pricing-table/pricing-table.php:173
3800
+ msgid "Accent Color"
3801
+ msgstr "การเน้นสี"
3802
+
3803
+ #: modules/pricing-table/pricing-table.php:178
3804
+ msgid "Accent Text Color"
3805
+ msgstr "เน้นสีข้อความ"
3806
+
3807
+ #: modules/pricing-table/pricing-table.php:182
3808
+ msgid "Box Top Margin"
3809
+ msgstr "ความห่างด้านบนของกล่อง"
3810
+
3811
+ #: modules/rich-text/rich-text.php:15
3812
+ msgid "A WYSIWYG text editor."
3813
+ msgstr "ตัวแก้ไขข้อความ WYSIWYG"
3814
+
3815
+ #: modules/separator/separator.php:15
3816
+ msgid "A divider line to separate content."
3817
+ msgstr "เส้นแบ่งเพื่อแยกเนื่อหา"
3818
+
3819
+ #: modules/separator/separator.php:85
3820
+ msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
3821
+ msgstr "ประเภทของขอบที่จะใช้ ขอบคู่จะต้องมีความสูงอย่างน้อย 3px เพื่อที่จะแสดงผลได้ถูกต้อง"
3822
+
3823
+ #: modules/sidebar/includes/settings-general.php:5 modules/sidebar/sidebar.php:14
3824
+ msgid "Sidebar"
3825
+ msgstr "Sidebar"
3826
+
3827
+ #: modules/sidebar/sidebar.php:15
3828
+ msgid "Display a WordPress sidebar that has been registered by the current theme."
3829
+ msgstr "แสดง WordPress Sidebar ที่ได้รับการลงทะเบียนโดยชุดรูปแบบปัจจุบัน"
3830
+
3831
+ #: modules/slideshow/slideshow.php:14
3832
+ msgid "Slideshow"
3833
+ msgstr "สไลด์โชว์"
3834
+
3835
+ #: modules/slideshow/slideshow.php:15
3836
+ msgid "Display multiple photos in a slideshow view."
3837
+ msgstr "แสดงภาพถ่ายหลายภาพในมุมมองสไลด์โชว์"
3838
+
3839
+ #: modules/slideshow/slideshow.php:310
3840
+ msgid "Skin Color"
3841
+ msgstr "สีผิว"
3842
+
3843
+ #: modules/slideshow/slideshow.php:313
3844
+ msgctxt "Color."
3845
+ msgid "Light"
3846
+ msgstr "อ่อน"
3847
+
3848
+ #: modules/slideshow/slideshow.php:314
3849
+ msgctxt "Color."
3850
+ msgid "Dark"
3851
+ msgstr "มืด"
3852
+
3853
+ #: modules/slideshow/slideshow.php:316
3854
+ msgid "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and vice versa for dark."
3855
+ msgstr "หาก รูปแบบ/ภาพ โดยรวมของคุณที่มีสีอ่อน แสงจะแสดงปุ่มในโทนสีที่เข้มขึ้นและในทางกลับกันสำหรับที่มืด"
3856
+
3857
+ #: modules/slideshow/slideshow.php:326
3858
+ msgid "Crop set to no will fit the slideshow images to the height you specify and keep the width proportional, whereas crop set to yes will fit the slideshow images to all sides of the content area while cropping the left and right to fit the height you specify."
3859
+ msgstr "การครอบถูกกำหนดให้ไม่พอ​​ดีกับความสูงภาพสไลด์โชว์ที่คุณระบุและคงความกว้างให้อยู่ในสัดส่วน ในขณะที่การครอบถูกกำหนดเป็นใช่ที่จะพอดีกับภาพสไลด์โชว์ในทุกด้านของพื้นที่เนื้อหาในระหว่างที่ครอปทางซ้ายและขวาเพื่อให้พอดีกับความสูงที่คุณระบุ"
3860
+
3861
+ #: modules/slideshow/slideshow.php:330
3862
+ msgid "Disable Right-Click"
3863
+ msgstr "ปิดการใช้งานการคลิกขวา"
3864
+
3865
+ #: modules/slideshow/slideshow.php:350
3866
+ msgctxt "Click action type."
3867
+ msgid "None"
3868
+ msgstr "ไม่มี"
3869
+
3870
+ #: modules/slideshow/slideshow.php:374
3871
+ msgid "Playback"
3872
+ msgstr "เปิดเล่น"
3873
+
3874
+ #: modules/slideshow/slideshow.php:400
3875
+ msgctxt "Slideshow transition."
3876
+ msgid "None"
3877
+ msgstr "ไม่มี"
3878
+
3879
+ #: modules/slideshow/slideshow.php:437
3880
+ msgid "Controls"
3881
+ msgstr "การควบคุม"
3882
+
3883
+ #: modules/slideshow/slideshow.php:444 modules/slideshow/slideshow.php:493
3884
+ msgid "Navigation Arrows"
3885
+ msgstr "ลูกศรนำทาง"
3886
+
3887
+ #: modules/slideshow/slideshow.php:450
3888
+ msgid "Navigational arrows allow the visitor to freely move through the images in your slideshow. These are larger arrows that overlay your slideshow images and are separate from the control bar navigational arrows."
3889
+ msgstr "ลูกศรนำทางจะช่วยให้ผู้เข้าชมมีอิสระในการชมภาพในสไลด์โชว์ของคุณ นี้เป็นลูกศรขนาดใหญ่ที่ซ้อนทับบนสไลด์โชว์ของคุณและแยกออกจากแถบควบคุมลูกศรนำทาง"
3890
+
3891
+ #: modules/slideshow/slideshow.php:455
3892
+ msgid "Control Bar"
3893
+ msgstr "บาร์ควบคุม"
3894
+
3895
+ #: modules/slideshow/slideshow.php:459
3896
+ msgid "Nav Type"
3897
+ msgstr "ประเภท Nav"
3898
+
3899
+ #: modules/slideshow/slideshow.php:462
3900
+ msgctxt "Nav type."
3901
+ msgid "None"
3902
+ msgstr "ไม่มี"
3903
+
3904
+ #: modules/slideshow/slideshow.php:463
3905
+ msgid "Buttons"
3906
+ msgstr "ปุ่ม"
3907
+
3908
+ #: modules/slideshow/slideshow.php:464 modules/slideshow/slideshow.php:594
3909
+ msgid "Thumbs"
3910
+ msgstr "ขนาดย่อ"
3911
+
3912
+ #: modules/slideshow/slideshow.php:479
3913
+ msgid "Nav Position"
3914
+ msgstr "ตำแหน่ง Nav"
3915
+
3916
+ #: modules/slideshow/slideshow.php:489
3917
+ msgid "Control Bar Buttons"
3918
+ msgstr "ปุ่มบาร์ควบคุม"
3919
+
3920
+ #: modules/slideshow/slideshow.php:502
3921
+ msgid "Play Button"
3922
+ msgstr "ปุ่มเล่น"
3923
+
3924
+ #: modules/slideshow/slideshow.php:511
3925
+ msgid "Fullscreen Button"
3926
+ msgstr "ปุ่มเต็มหน้าจอ"
3927
+
3928
+ #: modules/slideshow/slideshow.php:520
3929
+ msgid "Photo Count"
3930
+ msgstr "จำนวนภาพ"
3931
+
3932
+ #: modules/slideshow/slideshow.php:529
3933
+ msgid "Thumbs Button"
3934
+ msgstr "ปุ่มขนาดย่อ"
3935
+
3936
+ #: modules/slideshow/slideshow.php:538
3937
+ msgid "Caption Button"
3938
+ msgstr "ปุ่มคำอธิบาย"
3939
+
3940
+ #: modules/slideshow/slideshow.php:547
3941
+ msgid "Social Button"
3942
+ msgstr "ปุ่มสังคมออนไลน์"
3943
+
3944
+ #: modules/slideshow/slideshow.php:557
3945
+ msgid "Control Bar Overlay"
3946
+ msgstr "บาร์ควบคุมการทับซ้อน"
3947
+
3948
+ #: modules/slideshow/slideshow.php:561
3949
+ msgid "Overlay Enabled"
3950
+ msgstr "เปิดใช้งานการทับซ้อน"
3951
+
3952
+ #: modules/slideshow/slideshow.php:572
3953
+ msgid "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site below the slideshow completely."
3954
+ msgstr "ระบุแถบควบคุมทับซ้อน ถ้าปุ่มแถบควบคุมที่คุณเลือกซ้อนทับกับภาพสไลด์โชว์หรือเว็บไซต์ของคุณ หรือด้านล่างสไลด์โชว์ได้อย่างสมบูรณ์"
3955
+
3956
+ #: modules/slideshow/slideshow.php:576
3957
+ msgid "Overlay Hide"
3958
+ msgstr "ซ่อนทับซ้อน"
3959
+
3960
+ #: modules/slideshow/slideshow.php:582
3961
+ msgid "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear upon mouse over."
3962
+ msgstr "ซ่อนทับซ้อนจะซ่อนแถบควบคุมหลังจากนั้นจะกี่วินาทีตามที่คุณระบุด้านล่าง พวกเขาจะแสดงอีกครั้งเมื่อเมาส์ชี้"
3963
+
3964
+ #: modules/slideshow/slideshow.php:586
3965
+ msgid "Overlay Hide Delay"
3966
+ msgstr "ความล่าช้าการซ่อนการทับซ้อน"
3967
+
3968
+ #: modules/slideshow/slideshow.php:598
3969
+ msgid "Thumbs Size"
3970
+ msgstr "ขนาดรูปขนาดย่อ"
3971
+
3972
+ #: modules/slideshow/slideshow.php:607
3973
+ msgid "Social"
3974
+ msgstr "สังคม"
3975
+
3976
+ #: modules/slideshow/slideshow.php:611
3977
+ msgid "Facebook Button"
3978
+ msgstr "ปุ่ม Facebook"
3979
+
3980
+ #: modules/slideshow/slideshow.php:623
3981
+ msgid "Twitter Button"
3982
+ msgstr "ปุ่ม Twitter"
3983
+
3984
+ #: modules/slideshow/slideshow.php:635
3985
+ msgid "Google Plus Button"
3986
+ msgstr "ปุ่ม Google Plus"
3987
+
3988
+ #: modules/slideshow/slideshow.php:647
3989
+ msgid "Pinterest Button"
3990
+ msgstr "ปุ่ม Pinterest"
3991
+
3992
+ #: modules/social-buttons/social-buttons.php:14
3993
+ msgid "Social Buttons"
3994
+ msgstr "ปุ่มสังคมออนไลน์"
3995
+
3996
+ #: modules/social-buttons/social-buttons.php:15
3997
+ msgid "Displays social buttons."
3998
+ msgstr "แสดงปุ่มสังคมออนไลน์"
3999
+
4000
+ #: modules/social-buttons/social-buttons.php:71
4001
+ msgid "Target URL"
4002
+ msgstr "URL เป้าหมาย"
4003
+
4004
+ #: modules/social-buttons/social-buttons.php:75
4005
+ msgid "Current Page"
4006
+ msgstr "หน้าปัจจุบัน"
4007
+
4008
+ #: modules/social-buttons/social-buttons.php:82
4009
+ msgid "The Target URL field correlates to the page you would like your social icons to interface with. For example, if you show Facebook, the user will \"Like\" whatever you put in this field."
4010
+ msgstr "ฟิลด์ URL เป้าหมายสัมพันธ์กับหน้าเว็บที่คุณต้องการเชื่อมต่อไอคอนทางสังคมของคุณ ตัวอย่างเช่น ถ้าคุณแสดง Facebook, ผู้ใช้จะ \"Like\" สิ่งที่คุณใส่ในฟิลด์นี้"
4011
+
4012
+ #: modules/social-buttons/social-buttons.php:89
4013
+ msgid "Custom URL"
4014
+ msgstr "URL ที่กำหนดเอง"
4015
+
4016
+ #: modules/social-buttons/social-buttons.php:107
4017
+ msgid "Show Facebook"
4018
+ msgstr "แสดง Facebook"
4019
+
4020
+ #: modules/social-buttons/social-buttons.php:116
4021
+ msgid "Show Twitter"
4022
+ msgstr "แสดง Twitter"
4023
+
4024
+ #: modules/social-buttons/social-buttons.php:125
4025
+ msgid "Show Google+"
4026
+ msgstr "แสดง Google+"
4027
+
4028
+ #: modules/subscribe-form/includes/frontend.php:5
4029
+ msgctxt "First and last name."
4030
+ msgid "Name"
4031
+ msgstr "ชื่อ"
4032
+
4033
+ #: modules/subscribe-form/includes/frontend.php:12
4034
+ msgid "Please enter a valid email address."
4035
+ msgstr "กรุณาป้อนอีเมลที่ถูกต้อง"
4036
+
4037
+ #: modules/subscribe-form/includes/frontend.php:41
4038
+ msgid "Something went wrong. Please check your entries and try again."
4039
+ msgstr "บางอย่างผิดปกติ. กรุณาตรวจสอบรายการของคุณแล้วลองอีกครั้ง"
4040
+
4041
+ #: modules/subscribe-form/subscribe-form.php:18
4042
+ msgid "Subscribe Form"
4043
+ msgstr "แบบฟอร์มสมัครสมาชิก"
4044
+
4045
+ #: modules/subscribe-form/subscribe-form.php:19
4046
+ msgid "Adds a simple subscribe form to your layout."
4047
+ msgstr "เพิ่มฟอร์มอย่างง่ายสำหรับสมัครสมาชิกบนเลย์เอ้าท์ของคุณ"
4048
+
4049
+ #: modules/subscribe-form/subscribe-form.php:118
4050
+ msgid "Success"
4051
+ msgstr "สำเร็จ"
4052
+
4053
+ #: modules/subscribe-form/subscribe-form.php:122
4054
+ msgid "Success Action"
4055
+ msgstr "การดำเนินการสำเร็จ"
4056
+
4057
+ #: modules/subscribe-form/subscribe-form.php:124
4058
+ msgid "Show Message"
4059
+ msgstr "แสดงข้อความ"
4060
+
4061
+ #: modules/subscribe-form/subscribe-form.php:125
4062
+ msgid "Redirect"
4063
+ msgstr "เปลี่ยนเส้นทาง"
4064
+
4065
+ #: modules/subscribe-form/subscribe-form.php:144
4066
+ msgid "Thanks for subscribing! Please check your email for further instructions."
4067
+ msgstr "ขอขอบคุณสำหรับการสมัครสมาชิก! กรุณาตรวจสอบอีเมลของคุณสำหรับคำแนะนำเพิ่มเติม"
4068
+
4069
+ #: modules/subscribe-form/subscribe-form.php:151
4070
+ msgid "Success URL"
4071
+ msgstr "URL ที่สำเร็จ"
4072
+
4073
+ #: modules/subscribe-form/subscribe-form.php:169
4074
+ msgid "Subscribe!"
4075
+ msgstr "สมัครสมาชิก!"
4076
+
4077
+ #: modules/tabs/tabs.php:14
4078
+ msgid "Tabs"
4079
+ msgstr "แท็บ"
4080
+
4081
+ #: modules/tabs/tabs.php:15
4082
+ msgid "Display a collection of tabbed content."
4083
+ msgstr "แสดงคอลเลกชันของแท็บเนื้อหา"
4084
+
4085
+ #: modules/testimonials/testimonials.php:14 modules/testimonials/testimonials.php:60 modules/testimonials/testimonials.php:174
4086
+ msgid "Testimonials"
4087
+ msgstr "Testimonial"
4088
+
4089
+ #: modules/testimonials/testimonials.php:15
4090
+ msgid "An animated tesimonials area."
4091
+ msgstr "พื้นที่ Tesimonials เคลื่อนไหว "
4092
+
4093
+ #: modules/testimonials/testimonials.php:41
4094
+ msgid "Compact"
4095
+ msgstr "ชิด"
4096
+
4097
+ #: modules/testimonials/testimonials.php:51
4098
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
4099
+ msgstr "กว้างคือ 1 แถวคอลัมน์ ชิตคือแถวหลายคอลัมน์"
4100
+
4101
+ #: modules/testimonials/testimonials.php:78
4102
+ msgid "Slider Settings"
4103
+ msgstr "การตั้งค่าสไลด์"
4104
+
4105
+ #: modules/testimonials/testimonials.php:135
4106
+ msgid "Arrow Color"
4107
+ msgstr "สีลูกศร"
4108
+
4109
+ #: modules/testimonials/testimonials.php:165
4110
+ msgid "Dot Color"
4111
+ msgstr "สีจุด"
4112
+
4113
+ #: modules/testimonials/testimonials.php:181
4114
+ msgid "Testimonial"
4115
+ msgstr "Testimonial"
4116
+
4117
+ #: modules/testimonials/testimonials.php:197
4118
+ msgid "Add Testimonial"
4119
+ msgstr "เพิ่ม Testimonial"
4120
+
4121
+ #: modules/video/video.php:20
4122
+ msgid "Render a WordPress or embedable video."
4123
+ msgstr "แสดง วิดีโอ WordPress หรือ วีดีโอแบบฝังโค้ตได้"
4124
+
4125
+ #: modules/video/video.php:83
4126
+ msgid "Video Type"
4127
+ msgstr "ประเภทวิดีโอ"
4128
+
4129
+ #: modules/video/video.php:87
4130
+ msgid "Embed"
4131
+ msgstr "ฝัง"
4132
+
4133
+ #: modules/video/video.php:104
4134
+ msgctxt "Video preview/fallback image."
4135
+ msgid "Poster"
4136
+ msgstr "ผู้โพส"
4137
+
4138
+ #: modules/widget/includes/frontend.php:35 modules/widget/includes/settings-general.php:46
4139
+ #, php-format
4140
+ msgctxt "%s stands for widget slug."
4141
+ msgid "%s no longer exists."
4142
+ msgstr "%s ไม่มีอยู่แล้ว"
4143
+
4144
+ #: modules/widget/widget.php:14
4145
+ msgid "Widget"
4146
+ msgstr "Widget"
4147
+
4148
+ #: modules/widget/widget.php:15
4149
+ msgid "Display a WordPress widget."
4150
+ msgstr "แสดง WordPress Widget"
4151
+
4152
+ #: modules/woocommerce/woocommerce.php:16
4153
+ msgid "WooCommerce"
4154
+ msgstr "WooCommerce"
4155
+
4156
+ #: modules/woocommerce/woocommerce.php:17
4157
+ msgid "Display products or categories from your WooCommerce store."
4158
+ msgstr "แสดงผลิตภัณฑ์หรือหมวดหมู่จากร้านค้า WooCommerce ของคุณ"
4159
+
4160
+ #: modules/woocommerce/woocommerce.php:61
4161
+ msgid "Single Product"
4162
+ msgstr "ผลิตภัณฑ์ชิ้นเดียว"
4163
+
4164
+ #: modules/woocommerce/woocommerce.php:62 modules/woocommerce/woocommerce.php:113
4165
+ msgid "Multiple Products"
4166
+ msgstr "ผลิตภัณฑ์มากกว่าหนึ่ง"
4167
+
4168
+ #: modules/woocommerce/woocommerce.php:63
4169
+ msgid "\"Add to Cart\" Button"
4170
+ msgstr "ปุ่ม \"หยิบใส่ตะกร้า\""
4171
+
4172
+ #: modules/woocommerce/woocommerce.php:64
4173
+ msgid "Categories"
4174
+ msgstr "หมวดหมู่"
4175
+
4176
+ #: modules/woocommerce/woocommerce.php:65
4177
+ msgid "Cart"
4178
+ msgstr "รถเข็น"
4179
+
4180
+ #: modules/woocommerce/woocommerce.php:66
4181
+ msgid "Checkout"
4182
+ msgstr "ชำระเงิน"
4183
+
4184
+ #: modules/woocommerce/woocommerce.php:67
4185
+ msgid "Order Tracking"
4186
+ msgstr "ติดตามการสั่งซื้อ"
4187
+
4188
+ #: modules/woocommerce/woocommerce.php:68
4189
+ msgid "My Account"
4190
+ msgstr "บัญชีของฉัน"
4191
+
4192
+ #: modules/woocommerce/woocommerce.php:87
4193
+ msgid "Product ID"
4194
+ msgstr "รหัสผลิตภัณฑ์"
4195
+
4196
+ #: modules/woocommerce/woocommerce.php:90
4197
+ msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute."
4198
+ msgstr "ในขณะที่คุณเพิ่มผลิตภัณฑ์ในพื้นที่ WooCommerce Products แต่ละผลิตภัณฑ์จะได้รับการกำหนดรหัสเฉพาะตัว คุณสามารถค้นหารหัสผลิตภัณฑ์เฉพาะตัวได้โดยการเยี่ยมชมพื้นที่ผลิตภัณฑ์และเลื่อนดูบนผลิตภัณฑ์ รหัสเฉพาะตัวนี้จะเป็นคุณลักษณะที่แรก"
4199
+
4200
+ #: modules/woocommerce/woocommerce.php:94
4201
+ msgid "Parent Category ID"
4202
+ msgstr "รหัสหมวดหมู่หลัก"
4203
+
4204
+ #: modules/woocommerce/woocommerce.php:97
4205
+ msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique ID. This ID can be found by hovering on the category in the categories area under Products and looking in the URL that is displayed in your browser. The ID will be the only number value in the URL."
4206
+ msgstr "เมื่อคุณเพิ่มหมวดหมู่ผลิตภัณฑ์ในพื้นที่ WooCommerce Products แต่ละผลิตภัณฑ์จะได้รับการกำหนดรหัสเฉพาะตัว รหัสนี้สามารถพบได้โดยการวางเมาส์บนหมวดหมู่ในพื้นที่หมวดหมู่ที่ภายใต้สินค้า และมองหาใน URL ที่แสดงบนเบราว์เซอร์ของคุณ รหัสนี้จะเป็นค่าตัวเลขเฉพาะใน URL"
4207
+
4208
+ #: modules/woocommerce/woocommerce.php:101 modules/woocommerce/woocommerce.php:172
4209
+ msgid "Columns"
4210
+ msgstr "คอลัมน์"
4211
+
4212
+ #: modules/woocommerce/woocommerce.php:117
4213
+ msgid "Products Source"
4214
+ msgstr "แหล่งที่มาของผลิตภัณฑ์"
4215
+
4216
+ #: modules/woocommerce/woocommerce.php:120
4217
+ msgid "Products IDs"
4218
+ msgstr "รหัสผลิตภัณฑ์"
4219
+
4220
+ #: modules/woocommerce/woocommerce.php:121
4221
+ msgid "Product Category"
4222
+ msgstr "หมวดหมู่ผลิตภัณฑ์"
4223
+
4224
+ #: modules/woocommerce/woocommerce.php:122
4225
+ msgid "Recent Products"
4226
+ msgstr "ผลิตภัณฑ์ล่าสุด"
4227
+
4228
+ #: modules/woocommerce/woocommerce.php:123
4229
+ msgid "Featured Products"
4230
+ msgstr "ผลิตภัณฑ์เด่น"
4231
+
4232
+ #: modules/woocommerce/woocommerce.php:124
4233
+ msgid "Sale Products"
4234
+ msgstr "ผลิตภัณฑ์ที่ลดราคา"
4235
+
4236
+ #: modules/woocommerce/woocommerce.php:125
4237
+ msgid "Best Selling Products"
4238
+ msgstr "ผลิตภัณฑ์ที่ขายดีที่สุด"
4239
+
4240
+ #: modules/woocommerce/woocommerce.php:126
4241
+ msgid "Top Rated Products"
4242
+ msgstr "ผลิตภัณฑ์ที่ได้คะแนนสูงสุด"
4243
+
4244
+ #: modules/woocommerce/woocommerce.php:154
4245
+ msgid "Product IDs"
4246
+ msgstr "รหัสผลิตภัณฑ์"
4247
+
4248
+ #: modules/woocommerce/woocommerce.php:156
4249
+ msgid "As you add products in the WooCommerce Products area, each will be assigned a unique ID. You can find this unique product ID by visiting the Products area and rolling over the product. The unique ID will be the first attribute and you can add several here separated by a comma."
4250
+ msgstr "ในขณะที่คุณเพิ่มผลิตภัณฑ์ในพื้นที่ WooCommerce Products แต่ละผลิตภัณฑ์จะได้รับการกำหนดรหัสเฉพาะตัว คุณสามารถค้นหารหัสผลิตภัณฑ์เฉพาะตัวนี้ได้โดยการเข้าไปยังพื้นที่ผลิตภัณฑ์และเลื่อนดูบนผลิตภัณฑ์ รหัสเฉพาะตัวนี้จะเป็นคุณลักษณะที่แรกและคุณสามารถเพิ่มมันได้ในที่นี่ด้วยการแยกโดยใส่เครื่องหมายจุลภาค"
4251
+
4252
+ #: modules/woocommerce/woocommerce.php:160
4253
+ msgid "Category Slug"
4254
+ msgstr "หมวดหมู่ Slug"
4255
+
4256
+ #: modules/woocommerce/woocommerce.php:162
4257
+ msgid "As you add product categories in the WooCommerce Products area, each will be assigned a unique slug or you can edit and add your own. These slugs can be found in the Categories area under WooCommerce Products. Several can be added here separated by a comma."
4258
+ msgstr "เมื่อคุณเพิ่มประเภทผลิตภัณฑ์ในพื้นที่ WooCommerce Products แต่ละผลิตภัณฑ์จะได้รับการกำหนด Slug ที่ไม่ซ้ำกัน หรือคุณสามารถแก้ไขและเพิ่มของคุณได้เอง Slug เหล่านี้สามารถพบได้ในพื้นที่หมวดหมู่สินค้า ภายใต้ WooCommerce Products สามารถเพิ่มแยกออกจากกันที่นี่ด้วยการแยกโดยเครื่องหมายจุลภาค"
4259
+
4260
+ #: modules/woocommerce/woocommerce.php:166
4261
+ msgid "Number of Products"
4262
+ msgstr "จำนวนสินค้า"
4263
+
4264
+ #: modules/woocommerce/woocommerce.php:183
4265
+ msgid "Sort By"
4266
+ msgstr "เรียงลำดับตาม"
4267
+
4268
+ #: modules/woocommerce/woocommerce.php:186
4269
+ msgctxt "Sort by."
4270
+ msgid "Default"
4271
+ msgstr "ค่าเริ่มต้น"
4272
+
4273
+ #: modules/woocommerce/woocommerce.php:187
4274
+ msgid "Popularity"
4275
+ msgstr "ความนิยม"
4276
+
4277
+ #: modules/woocommerce/woocommerce.php:188
4278
+ msgid "Rating"
4279
+ msgstr "การให้คะแนน"
4280
+
4281
+ #: modules/woocommerce/woocommerce.php:195
4282
+ msgid "Sort Direction"
4283
+ msgstr "ทิศทางการจัดเรียง"
modules/photo/includes/frontend.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
 
3
- $photo = $module->get_data();
4
- $src = $module->get_src();
5
- $link = $module->get_link();
6
- $alt = $module->get_alt();
7
- $attrs = $module->get_attributes();
8
- $srcset = $module->get_srcset();
9
 
10
  ?>
11
  <div class="fl-photo<?php if ( ! empty( $settings->crop ) ) echo ' fl-photo-crop-' . $settings->crop ; ?> fl-photo-align-<?php echo $settings->align; ?>" itemscope itemtype="http://schema.org/ImageObject">
@@ -13,7 +13,7 @@ $srcset = $module->get_srcset();
13
  <?php if(!empty($link)) : ?>
14
  <a href="<?php echo $link; ?>" target="<?php echo $settings->link_target; ?>" itemprop="url">
15
  <?php endif; ?>
16
- <img class="fl-photo-img" src="<?php echo $src; ?>" alt="<?php echo $alt; ?>" itemprop="image" <?php echo $attrs; ?> <?php echo $srcset; ?> />
17
  <?php if(!empty($link)) : ?>
18
  </a>
19
  <?php endif; ?>
1
  <?php
2
 
3
+ $photo = $module->get_data();
4
+ $classes = $module->get_classes();
5
+ $src = $module->get_src();
6
+ $link = $module->get_link();
7
+ $alt = $module->get_alt();
8
+ $attrs = $module->get_attributes();
9
 
10
  ?>
11
  <div class="fl-photo<?php if ( ! empty( $settings->crop ) ) echo ' fl-photo-crop-' . $settings->crop ; ?> fl-photo-align-<?php echo $settings->align; ?>" itemscope itemtype="http://schema.org/ImageObject">
13
  <?php if(!empty($link)) : ?>
14
  <a href="<?php echo $link; ?>" target="<?php echo $settings->link_target; ?>" itemprop="url">
15
  <?php endif; ?>
16
+ <img class="<?php echo $classes; ?>" src="<?php echo $src; ?>" alt="<?php echo $alt; ?>" itemprop="image" <?php echo $attrs; ?> />
17
  <?php if(!empty($link)) : ?>
18
  </a>
19
  <?php endif; ?>
modules/photo/photo.php CHANGED
@@ -177,6 +177,37 @@ class FLPhotoModule extends FLBuilderModule {
177
  return $this->data;
178
  }
179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  /**
181
  * @method get_src
182
  */
@@ -215,46 +246,6 @@ class FLPhotoModule extends FLBuilderModule {
215
  return $src;
216
  }
217
 
218
- /**
219
- * @method get_srcset
220
- */
221
- public function get_srcset()
222
- {
223
- $attrs = '';
224
- $srcset = array();
225
-
226
- // Cropped photos only have one URL, so we can't use srcset.
227
- // Photo source URL only has one URL, so we can't use srcset.
228
- // If don't have photo data, we can't use srcset.
229
- if ( empty( $this->settings->crop ) && $this->settings->photo_source == 'library' && ! empty( $this->settings->photo ) ) {
230
-
231
- // Get the photo data.
232
- $data = self::get_data();
233
-
234
- // Proceed if we have photo data and sizes.
235
- if ( is_object( $data ) && isset( $data->sizes ) ) {
236
-
237
- // Loop through the sizes and build the $srcset array.
238
- foreach ( $data->sizes as $key => $size ) {
239
-
240
- if ( 'thumbnail' == $key ) {
241
- continue;
242
- }
243
-
244
- $srcset[] = $size->url . ' ' . $size->width . 'w';
245
- }
246
-
247
- // Build the srcset string if we don't have an empty $srcset array.
248
- if ( count( $srcset ) > 0 ) {
249
- $attrs = 'srcset="' . implode( ',', $srcset ) . '"';
250
- $attrs .= ' sizes="(max-width: ' . $data->width . 'px) 100vw, ' . $data->width . 'px"';
251
- }
252
- }
253
- }
254
-
255
- return $attrs;
256
- }
257
-
258
  /**
259
  * @method get_link
260
  */
177
  return $this->data;
178
  }
179
 
180
+ /**
181
+ * @method get_classes
182
+ */
183
+ public function get_classes()
184
+ {
185
+ $classes = array( 'fl-photo-img' );
186
+
187
+ if ( ! empty( $this->settings->photo ) ) {
188
+
189
+ $data = self::get_data();
190
+
191
+ if ( is_object( $data ) ) {
192
+
193
+ $classes[] = 'wp-image-' . $data->id;
194
+
195
+ if ( isset( $data->sizes ) ) {
196
+
197
+ foreach ( $data->sizes as $key => $size ) {
198
+
199
+ if ( $size->url == $this->settings->photo_src ) {
200
+ $classes[] = 'size-' . $key;
201
+ break;
202
+ }
203
+ }
204
+ }
205
+ }
206
+ }
207
+
208
+ return implode( ' ', $classes );
209
+ }
210
+
211
  /**
212
  * @method get_src
213
  */
246
  return $src;
247
  }
248
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
  /**
250
  * @method get_link
251
  */
readme.txt CHANGED
@@ -1,5 +1,5 @@
1
  === Beaver Builder - WordPress Page Builder ===
2
- Contributors: justinbusa, RobbyMcCullough, billyyoung, hinampaksh, diegoliv, webmandesign, eugenealegiojo
3
  Tags: builder, layout builder, page builder, landing page builder, landing pages, website builder, site builder, front-end builder, drag and drop builder, editor, front-end editor, visual composer, page layout
4
  Requires at least: 3.6
5
  Tested up to: 4.4
1
  === Beaver Builder - WordPress Page Builder ===
2
+ Contributors: justinbusa, RobbyMcCullough, billyyoung, hinampaksh, diegoliv, webmandesign, eugenealegiojo, helgatheviking
3
  Tags: builder, layout builder, page builder, landing page builder, landing pages, website builder, site builder, front-end builder, drag and drop builder, editor, front-end editor, visual composer, page layout
4
  Requires at least: 3.6
5
  Tested up to: 4.4