WordPress Page Builder – Beaver Builder - Version 1.4.5

Version Description

Download this release

Release Info

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

Code changes from version 1.4.3 to 1.4.5

Files changed (57) hide show
  1. changelog.txt +28 -1
  2. classes/{FLBuilderAdminPosts.php → class-fl-builder-admin-posts.php} +0 -0
  3. classes/{FLBuilderAdminSettings.php → class-fl-builder-admin-settings.php} +0 -0
  4. classes/{FLBuilderAdmin.php → class-fl-builder-admin.php} +47 -47
  5. classes/{FLBuilderAutoSuggest.php → class-fl-builder-auto-suggest.php} +0 -0
  6. classes/{FLBuilderColor.php → class-fl-builder-color.php} +0 -0
  7. classes/{FLBuilderIcons.php → class-fl-builder-icons.php} +0 -0
  8. classes/{FLBuilderLoop.php → class-fl-builder-loop.php} +0 -0
  9. classes/{FLBuilderModel.php → class-fl-builder-model.php} +571 -552
  10. classes/{FLBuilderModule.php → class-fl-builder-module.php} +7 -4
  11. classes/{FLBuilderPhoto.php → class-fl-builder-photo.php} +8 -8
  12. classes/{FLBuilderUpdate.php → class-fl-builder-update.php} +0 -0
  13. classes/{FLBuilderUtils.php → class-fl-builder-utils.php} +0 -0
  14. classes/{FLBuilder.php → class-fl-builder.php} +352 -330
  15. classes/{FLJSMin.php → class-fl-jsmin.php} +0 -0
  16. css/fl-builder-layout.css +3 -0
  17. css/fl-builder.css +17 -5
  18. css/fl-icon-selector.css +12 -1
  19. fl-builder.php +16 -16
  20. includes/admin-posts.php +2 -2
  21. includes/admin-settings.php +80 -80
  22. includes/column-settings.php +36 -36
  23. includes/field-form.php +3 -3
  24. includes/field-link.php +1 -1
  25. includes/field-multiple-photos.php +6 -11
  26. includes/field-suggest.php +2 -2
  27. includes/global-settings.php +10 -10
  28. includes/icon-selector.php +4 -3
  29. includes/js-config.php +5 -4
  30. includes/module-settings.php +17 -17
  31. includes/row-settings.php +41 -41
  32. includes/ui.php +5 -15
  33. includes/updater-config.php +1 -1
  34. includes/updater/classes/{FLUpdater.php → class-fl-updater.php} +55 -43
  35. includes/updater/includes/form.php +10 -10
  36. includes/updater/updater.php +1 -1
  37. includes/user-template-settings.php +3 -3
  38. js/fl-builder.js +11 -11
  39. js/fl-icon-selector.js +38 -12
  40. lang/fl-builder-it_IT.mo +0 -0
  41. lang/fl-builder-it_IT.po +0 -3506
  42. lang/fl-builder-pt_BR.mo +0 -0
  43. lang/fl-builder-pt_BR.po +0 -2958
  44. lang/fl-builder-sv_SE.mo +0 -0
  45. lang/fl-builder-sv_SE.po +0 -3086
  46. lang/fl-builder-xx_XX.mo +0 -0
  47. lang/fl-builder-xx_XX.pot +0 -3153
  48. languages/readme.md +14 -0
  49. languages/sk_SK.mo +0 -0
  50. languages/sk_SK.po +3558 -0
  51. languages/xx_XX.pot +3381 -0
  52. modules/photo/js/settings.js +7 -7
  53. modules/photo/photo.php +74 -74
  54. modules/video/video.php +15 -15
  55. modules/widget/includes/frontend.php +9 -8
  56. modules/widget/includes/settings-general.php +8 -8
  57. modules/widget/widget.php +37 -0
changelog.txt CHANGED
@@ -1,4 +1,31 @@
1
- <h4>1.4.3</h4>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  <p><strong>Enhancements</strong></p>
3
  <ul>
4
  <li>Added Foundation Icons and WordPress Dashicons to the icon selector.</li>
1
+ <h4>1.4.5 - 01/26/2015</h4>
2
+ <p><strong>Enhancements</strong></p>
3
+ <ul>
4
+ <li>Added a search field to the icon selector.</li>
5
+ </ul>
6
+ <p><strong>Bug Fixes</strong></p>
7
+ <ul>
8
+ <li>Fixed a bug introduced in 1.4.4 that caused PHP warnings when creating new pages.</li>
9
+ </ul>
10
+
11
+ <h4>1.4.4 - 01/26/2015</h4>
12
+ <p><strong>Enhancements</strong></p>
13
+ <ul>
14
+ <li>Major improvements to how translations are handled. A huge thanks to Oliver Juhas of <a href="http://www.webmandesign.eu/" target="_blank">WebMan Design</a> for making that happen. <strong>Please Note:</strong> Older translations are not compatible with this update need to be redone. Please get in touch with us if you're interested in helping with that.</li>
15
+ <li>Widgets in the builder now run the widget update method.</li>
16
+ <li>Content for the tabs module now scrolls into view on smaller devices.</li>
17
+ <li>Added filters for working with custom css classes on rows, columns and modules.</li>
18
+ <li>Updated class filenames to follow WordPress standards.</li>
19
+ </ul>
20
+ <p><strong>Bug Fixes</strong></p>
21
+ <ul>
22
+ <li>Fixed icon hover color.</li>
23
+ <li>Fixed a bug with slideshows showing up in the header on archive pages.</li>
24
+ <li>Fixed a bug causing the heading module color to not work when linked.</li>
25
+ <li>Fixed a bug with overriding modules in a theme when the name of the wp-content directory is changed.</li>
26
+ </ul>
27
+
28
+ <h4>1.4.3 - 01/11/2015</h4>
29
  <p><strong>Enhancements</strong></p>
30
  <ul>
31
  <li>Added Foundation Icons and WordPress Dashicons to the icon selector.</li>
classes/{FLBuilderAdminPosts.php → class-fl-builder-admin-posts.php} RENAMED
File without changes
classes/{FLBuilderAdminSettings.php → class-fl-builder-admin-settings.php} RENAMED
File without changes
classes/{FLBuilderAdmin.php → class-fl-builder-admin.php} RENAMED
@@ -9,24 +9,24 @@ final class FLBuilderAdmin {
9
 
10
  /**
11
  * @method activate
12
- */
13
- static public function activate()
14
  {
15
  global $wp_version;
16
-
17
  // Check for WordPress 3.5 and above.
18
  if(version_compare($wp_version, '3.5', '>=')) {
19
-
20
  // Check for multisite.
21
  if(is_multisite()) {
22
-
23
  // Init multisite support.
24
  self::init_classes();
25
  self::init_multisite();
26
-
27
  // This version has multisite support.
28
  if(class_exists('FLBuilderMultisite')) {
29
-
30
  if(is_network_admin()) {
31
  FLBuilderMultisite::install();
32
  }
@@ -36,7 +36,7 @@ final class FLBuilderAdmin {
36
  }
37
  // This version doesn't have multisite support.
38
  else {
39
- self::show_activate_error(sprintf(__('This version of the <strong>Page Builder</strong> plugin is not compatible with WordPress Multisite. <a href="%s" target="_blank">Please upgrade</a> to the Multisite version of this plugin.', 'fl-builder'), FL_BUILDER_UPGRADE_URL));
40
  }
41
  }
42
  // No multisite, standard install.
@@ -48,7 +48,7 @@ final class FLBuilderAdmin {
48
  else {
49
  self::show_activate_error(__('The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update WordPress before activating the plugin.', 'fl-builder'));
50
  }
51
-
52
  // Success! Trigger the activation notice.
53
  if(FL_BUILDER_LITE !== true) {
54
  update_site_option('_fl_builder_activation_admin_notice', true);
@@ -57,21 +57,21 @@ final class FLBuilderAdmin {
57
 
58
  /**
59
  * @method show_activate_error
60
- */
61
- static public function show_activate_error($message)
62
  {
63
  deactivate_plugins(plugin_basename(FL_BUILDER_DIR . 'fl-builder.php'), false, is_network_admin());
64
-
65
  die($message);
66
  }
67
 
68
  /**
69
  * @method show_activate_notice
70
- */
71
- static public function show_activate_notice()
72
  {
73
  $notice = get_site_option('_fl_builder_activation_admin_notice');
74
-
75
  if($notice) {
76
  add_action('admin_notices', 'FLBuilderAdmin::activate_notice');
77
  add_action('network_admin_notices', 'FLBuilderAdmin::activate_notice');
@@ -81,30 +81,30 @@ final class FLBuilderAdmin {
81
 
82
  /**
83
  * @method activate_notice
84
- */
85
- static public function activate_notice()
86
  {
87
  $href = esc_url(admin_url('/options-general.php?page=fl-builder-settings#license'));
88
-
89
  echo '<div class="updated" style="background: #d3ebc1;">';
90
- echo '<p><strong>' . sprintf(__( 'Page Builder activated! <a href="%s">Click here</a> to enable remote updates.', 'fl-builder'), $href) . '</strong></p>';
91
  echo '</div>';
92
  }
93
 
94
  /**
95
  * @method install
96
- */
97
  static public function install() {}
98
 
99
  /**
100
  * @method uninstall
101
- */
102
- static public function uninstall()
103
  {
104
  FLBuilderModel::uninstall_database();
105
  }
106
-
107
- /**
108
  * @method init
109
  */
110
  static public function init()
@@ -116,20 +116,20 @@ final class FLBuilderAdmin {
116
  self::init_templates();
117
  }
118
 
119
- /**
120
  * @method init_classes
121
  */
122
  static public function init_classes()
123
  {
124
- $templates_class = FL_BUILDER_DIR . 'classes/FLBuilderTemplates.php';
125
- $ms_class = FL_BUILDER_DIR . 'classes/FLBuilderMultisite.php';
126
- $ms_settings_class = FL_BUILDER_DIR . 'classes/FLBuilderMultisiteSettings.php';
127
-
128
  if(file_exists($templates_class)) {
129
  require_once $templates_class;
130
  }
131
  if(is_multisite()) {
132
-
133
  if(file_exists($ms_class)) {
134
  require_once $ms_class;
135
  }
@@ -137,11 +137,11 @@ final class FLBuilderAdmin {
137
  require_once $ms_settings_class;
138
  }
139
  }
140
-
141
- require_once FL_BUILDER_DIR . 'classes/FLBuilderAdminSettings.php';
142
  }
143
 
144
- /**
145
  * @method init_settings
146
  */
147
  static public function init_settings()
@@ -149,13 +149,13 @@ final class FLBuilderAdmin {
149
  FLBuilderAdminSettings::init();
150
  }
151
 
152
- /**
153
  * @method init_multisite
154
  */
155
  static public function init_multisite()
156
  {
157
  if(is_multisite()) {
158
-
159
  if(class_exists('FLBuilderMultisite')) {
160
  FLBuilderMultisite::init();
161
  }
@@ -165,7 +165,7 @@ final class FLBuilderAdmin {
165
  }
166
  }
167
 
168
- /**
169
  * @method init_templates
170
  */
171
  static public function init_templates()
@@ -174,28 +174,28 @@ final class FLBuilderAdmin {
174
  FLBuilderTemplates::init();
175
  }
176
  }
177
-
178
  /**
179
  * @method render_plugin_action_links
180
- */
181
- static public function render_plugin_action_links($actions)
182
  {
183
  if(FL_BUILDER_LITE === true) {
184
- $actions[] = '<a href="' . FL_BUILDER_UPGRADE_URL . '" style="color:#3db634;" target="_blank">' . __('Upgrade', 'fl-builder') . '</a>';
185
  }
186
-
187
  return $actions;
188
  }
189
-
190
  /**
191
  * @method white_label_plugins_page
192
- */
193
- static public function white_label_plugins_page($plugins)
194
  {
195
  $branding = FLBuilderModel::get_branding();
196
-
197
  if($branding != __('Page Builder', 'fl-builder')) {
198
-
199
  if(isset($plugins['fl-builder/fl-builder.php'])) {
200
  $plugins['fl-builder/fl-builder.php']['Name'] = $branding;
201
  $plugins['fl-builder/fl-builder.php']['Title'] = $branding;
@@ -211,7 +211,7 @@ final class FLBuilderAdmin {
211
  $plugins['bb-plugin/fl-builder.php']['PluginURI'] = '';
212
  }
213
  }
214
-
215
  return $plugins;
216
  }
217
  }
9
 
10
  /**
11
  * @method activate
12
+ */
13
+ static public function activate()
14
  {
15
  global $wp_version;
16
+
17
  // Check for WordPress 3.5 and above.
18
  if(version_compare($wp_version, '3.5', '>=')) {
19
+
20
  // Check for multisite.
21
  if(is_multisite()) {
22
+
23
  // Init multisite support.
24
  self::init_classes();
25
  self::init_multisite();
26
+
27
  // This version has multisite support.
28
  if(class_exists('FLBuilderMultisite')) {
29
+
30
  if(is_network_admin()) {
31
  FLBuilderMultisite::install();
32
  }
36
  }
37
  // This version doesn't have multisite support.
38
  else {
39
+ self::show_activate_error( sprintf( __( '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.', 'fl-builder' ), ' href="' . esc_url( FL_BUILDER_UPGRADE_URL ) . '" target="_blank"' ) );
40
  }
41
  }
42
  // No multisite, standard install.
48
  else {
49
  self::show_activate_error(__('The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update WordPress before activating the plugin.', 'fl-builder'));
50
  }
51
+
52
  // Success! Trigger the activation notice.
53
  if(FL_BUILDER_LITE !== true) {
54
  update_site_option('_fl_builder_activation_admin_notice', true);
57
 
58
  /**
59
  * @method show_activate_error
60
+ */
61
+ static public function show_activate_error($message)
62
  {
63
  deactivate_plugins(plugin_basename(FL_BUILDER_DIR . 'fl-builder.php'), false, is_network_admin());
64
+
65
  die($message);
66
  }
67
 
68
  /**
69
  * @method show_activate_notice
70
+ */
71
+ static public function show_activate_notice()
72
  {
73
  $notice = get_site_option('_fl_builder_activation_admin_notice');
74
+
75
  if($notice) {
76
  add_action('admin_notices', 'FLBuilderAdmin::activate_notice');
77
  add_action('network_admin_notices', 'FLBuilderAdmin::activate_notice');
81
 
82
  /**
83
  * @method activate_notice
84
+ */
85
+ static public function activate_notice()
86
  {
87
  $href = esc_url(admin_url('/options-general.php?page=fl-builder-settings#license'));
88
+
89
  echo '<div class="updated" style="background: #d3ebc1;">';
90
+ echo '<p><strong>' . sprintf( __( 'Page Builder activated! <a%s>Click here</a> to enable remote updates.', 'fl-builder' ), ' href="' . esc_url( $href ) . '"' ) . '</strong></p>';
91
  echo '</div>';
92
  }
93
 
94
  /**
95
  * @method install
96
+ */
97
  static public function install() {}
98
 
99
  /**
100
  * @method uninstall
101
+ */
102
+ static public function uninstall()
103
  {
104
  FLBuilderModel::uninstall_database();
105
  }
106
+
107
+ /**
108
  * @method init
109
  */
110
  static public function init()
116
  self::init_templates();
117
  }
118
 
119
+ /**
120
  * @method init_classes
121
  */
122
  static public function init_classes()
123
  {
124
+ $templates_class = FL_BUILDER_DIR . 'classes/class-fl-builder-templates.php';
125
+ $ms_class = FL_BUILDER_DIR . 'classes/class-fl-builder-multisite.php';
126
+ $ms_settings_class = FL_BUILDER_DIR . 'classes/class-fl-builder-multisite-settings.php';
127
+
128
  if(file_exists($templates_class)) {
129
  require_once $templates_class;
130
  }
131
  if(is_multisite()) {
132
+
133
  if(file_exists($ms_class)) {
134
  require_once $ms_class;
135
  }
137
  require_once $ms_settings_class;
138
  }
139
  }
140
+
141
+ require_once FL_BUILDER_DIR . 'classes/class-fl-builder-admin-settings.php';
142
  }
143
 
144
+ /**
145
  * @method init_settings
146
  */
147
  static public function init_settings()
149
  FLBuilderAdminSettings::init();
150
  }
151
 
152
+ /**
153
  * @method init_multisite
154
  */
155
  static public function init_multisite()
156
  {
157
  if(is_multisite()) {
158
+
159
  if(class_exists('FLBuilderMultisite')) {
160
  FLBuilderMultisite::init();
161
  }
165
  }
166
  }
167
 
168
+ /**
169
  * @method init_templates
170
  */
171
  static public function init_templates()
174
  FLBuilderTemplates::init();
175
  }
176
  }
177
+
178
  /**
179
  * @method render_plugin_action_links
180
+ */
181
+ static public function render_plugin_action_links($actions)
182
  {
183
  if(FL_BUILDER_LITE === true) {
184
+ $actions[] = '<a href="' . FL_BUILDER_UPGRADE_URL . '" style="color:#3db634;" target="_blank">' . _x( 'Upgrade', 'Plugin action link label.', 'fl-builder' ) . '</a>';
185
  }
186
+
187
  return $actions;
188
  }
189
+
190
  /**
191
  * @method white_label_plugins_page
192
+ */
193
+ static public function white_label_plugins_page($plugins)
194
  {
195
  $branding = FLBuilderModel::get_branding();
196
+
197
  if($branding != __('Page Builder', 'fl-builder')) {
198
+
199
  if(isset($plugins['fl-builder/fl-builder.php'])) {
200
  $plugins['fl-builder/fl-builder.php']['Name'] = $branding;
201
  $plugins['fl-builder/fl-builder.php']['Title'] = $branding;
211
  $plugins['bb-plugin/fl-builder.php']['PluginURI'] = '';
212
  }
213
  }
214
+
215
  return $plugins;
216
  }
217
  }
classes/{FLBuilderAutoSuggest.php → class-fl-builder-auto-suggest.php} RENAMED
File without changes
classes/{FLBuilderColor.php → class-fl-builder-color.php} RENAMED
File without changes
classes/{FLBuilderIcons.php → class-fl-builder-icons.php} RENAMED
File without changes
classes/{FLBuilderLoop.php → class-fl-builder-loop.php} RENAMED
File without changes
classes/{FLBuilderModel.php → class-fl-builder-model.php} RENAMED
@@ -11,7 +11,7 @@ final class FLBuilderModel {
11
  /**
12
  * @property $row_layouts
13
  * @type array
14
- */
15
  static public $row_layouts = array(
16
  '1-col' => array(100),
17
  '2-cols' => array(50, 50),
@@ -24,19 +24,19 @@ final class FLBuilderModel {
24
  'left-right-sidebar' => array(25, 50, 25)
25
  );
26
 
27
- /**
28
  * @property $settings_forms
29
  * @type array
30
  */
31
  static public $settings_forms = array();
32
 
33
- /**
34
  * @property $modules
35
  * @type array
36
  */
37
  static public $modules = array();
38
-
39
- /**
40
  * The last node id that was generated by the builder.
41
  * This is saved to ensure the next node id is unique.
42
  *
@@ -45,8 +45,8 @@ final class FLBuilderModel {
45
  * @private
46
  */
47
  static private $last_generated_node_id = null;
48
-
49
- /**
50
  * Cached post data from either the $_POST array
51
  * or from the json decoded fl_builder_data post variable.
52
  *
@@ -55,8 +55,8 @@ final class FLBuilderModel {
55
  * @private
56
  */
57
  static private $post_data = null;
58
-
59
- /**
60
  * An array of cached published layout data by post_id.
61
  *
62
  * @property $published_layout_data
@@ -64,8 +64,8 @@ final class FLBuilderModel {
64
  * @private
65
  */
66
  static private $published_layout_data = array();
67
-
68
- /**
69
  * An array of cached draft layout data by post_id.
70
  *
71
  * @property $draft_layout_data
@@ -73,41 +73,41 @@ final class FLBuilderModel {
73
  * @private
74
  */
75
  static private $draft_layout_data = array();
76
-
77
  /**
78
- * All database updates should be made through
79
  * this method for security.
80
  *
81
  * @method update
82
- */
83
  static public function update($method = null, $params = array())
84
  {
85
  $post_data = self::get_post_data();
86
  $method = isset($post_data['method']) ? $post_data['method'] : $method;
87
  $post_id = self::get_post_id();
88
-
89
  // User can't edit this post.
90
  if($post_id && !current_user_can('edit_post', $post_id)) {
91
  return false;
92
  }
93
-
94
- // Method doesn't exist.
95
  else if(!$method) {
96
  return false;
97
  }
98
-
99
  // Method exists.
100
  else if(method_exists('FLBuilderModel', $method)) {
101
-
102
  // Call the method.
103
  $result = call_user_func_array('FLBuilderModel::' . $method, $params);
104
-
105
- // Render new assets.
106
  if(!isset($post_data['render_assets']) || $post_data['render_assets'] == 1) {
107
  FLBuilder::render_css();
108
  FLBuilder::render_js();
109
  }
110
-
111
  // Return the result.
112
  if(defined('DOING_AJAX')) {
113
  echo json_encode($result);
@@ -117,76 +117,76 @@ final class FLBuilderModel {
117
  return $result;
118
  }
119
  }
120
-
121
  return false;
122
  }
123
-
124
  /**
125
  * @method get_edit_url
126
  */
127
  static public function get_edit_url( $post_id = false )
128
  {
129
  global $post;
130
-
131
  if ( false === $post_id ) {
132
  $post_id = $post->ID;
133
  }
134
-
135
  $url = add_query_arg( 'fl_builder', '', get_permalink( $post_id ) );
136
 
137
  if ( class_exists( 'WPMinify' ) ) {
138
  $url = add_query_arg( 'wp-minify-off', '1', $url );
139
  }
140
-
141
  return set_url_scheme( $url );
142
  }
143
-
144
  /**
145
  * @method get_post_data
146
- */
147
  static public function get_post_data()
148
  {
149
  if(!self::$post_data) {
150
-
151
  self::$post_data = array();
152
-
153
  if(isset($_POST['fl_builder_data'])) {
154
-
155
  $data = self::json_decode_settings($_POST['fl_builder_data']);
156
-
157
  foreach($data as $key => $val) {
158
  self::$post_data[$key] = $val;
159
  }
160
  }
161
  else if(isset($_POST)) {
162
-
163
  foreach($_POST as $key => $val) {
164
  self::$post_data[$key] = $val;
165
  }
166
  }
167
  }
168
-
169
  return self::$post_data;
170
  }
171
-
172
  /**
173
  * @method update_post_data
174
- */
175
  static public function update_post_data($key, $value)
176
  {
177
  $post_data = self::get_post_data();
178
  $post_data[$key] = $value;
179
  self::$post_data = $post_data;
180
  }
181
-
182
  /**
183
  * @method get_post_types
184
- */
185
  static public function get_post_types()
186
  {
187
  $key = '_fl_builder_post_types';
188
  $default = array('page', 'fl-builder-template');
189
-
190
  // Get the value.
191
  if(is_network_admin()) {
192
  $value = get_site_option($key);
@@ -198,7 +198,7 @@ final class FLBuilderModel {
198
  else {
199
  $value = get_option($key);
200
  }
201
-
202
  // Return the value.
203
  if(!$value) {
204
  return $default;
@@ -208,24 +208,24 @@ final class FLBuilderModel {
208
  return $value;
209
  }
210
  }
211
-
212
  /**
213
  * @method get_global_posts
214
- */
215
  static public function get_global_posts()
216
  {
217
  return apply_filters('fl_builder_global_posts', array());
218
  }
219
-
220
  /**
221
  * @method get_post_id
222
- */
223
  static public function get_post_id()
224
  {
225
  global $post;
226
-
227
  $post_data = self::get_post_data();
228
-
229
  if(isset($post_data['post_id'])) {
230
  return $post_data['post_id'];
231
  }
@@ -236,41 +236,41 @@ final class FLBuilderModel {
236
  return false;
237
  }
238
  }
239
-
240
  /**
241
  * @method is_ssl
242
  */
243
  static public function is_ssl()
244
- {
245
  return is_ssl() || 0 === stripos( get_option( 'siteurl' ), 'https://' );
246
  }
247
-
248
  /**
249
- * Checks to see if the builder can be enabled for
250
  * the current post in the main query.
251
  *
252
  * @method is_post_editable
253
  */
254
  static public function is_post_editable()
255
- {
256
  global $wp_the_query;
257
-
258
  if ( is_singular() && isset( $wp_the_query->post ) ) {
259
-
260
  $post = $wp_the_query->post;
261
  $post_types = self::get_post_types();
262
  $user_can = current_user_can( 'edit_post', $post->ID );
263
-
264
  if ( in_array( $post->post_type, $post_types ) && $user_can ) {
265
  return true;
266
  }
267
  }
268
-
269
  return false;
270
  }
271
-
272
  /**
273
- * Called by the heartbeat API. Lock the current post
274
  * so only the current user can edit it.
275
  *
276
  * @method lock_post
@@ -278,19 +278,19 @@ final class FLBuilderModel {
278
  static public function lock_post($response, $data)
279
  {
280
  if(isset($data['fl_builder_post_lock'])) {
281
-
282
  require_once ABSPATH . 'wp-admin/includes/post.php';
283
-
284
  wp_set_post_lock($data['fl_builder_post_lock']['post_id']);
285
  }
286
  }
287
-
288
  /**
289
  * Checks to see if the builder layout is enabled
290
  * for the current post.
291
  *
292
  * @method is_builder_enabled
293
- */
294
  static public function is_builder_enabled()
295
  {
296
  if(!is_admin() && post_password_required()) {
@@ -300,30 +300,30 @@ final class FLBuilderModel {
300
  return true;
301
  }
302
  else {
303
-
304
  $post_types = self::get_post_types();
305
  $post = get_post(self::get_post_id());
306
-
307
  if($post && in_array($post->post_type, $post_types)) {
308
  return get_post_meta(self::get_post_id(), '_fl_builder_enabled', true);
309
  }
310
  }
311
-
312
  return false;
313
  }
314
-
315
  /**
316
- * Checks to see if the builder UI is active for
317
  * the current post in the main query.
318
  *
319
  * @method is_builder_active
320
- */
321
  static public function is_builder_active()
322
  {
323
  if ( self::is_post_editable() && ! is_admin() && ! post_password_required() ) {
324
-
325
  $post_data = self::get_post_data();
326
-
327
  if ( isset( $_GET['fl_builder'] ) ) {
328
  return true;
329
  }
@@ -331,116 +331,116 @@ final class FLBuilderModel {
331
  return true;
332
  }
333
  }
334
-
335
  return false;
336
  }
337
-
338
  /**
339
- * Gets the status to use for working with nodes in
340
- * the database. Returns draft if the builder is active,
341
- * otherwise it returns published.
342
  *
343
  * @method get_node_status
344
- */
345
  static public function get_node_status()
346
  {
347
  return self::is_builder_active() ? 'draft' : 'published';
348
  }
349
-
350
  /**
351
  * Enable the builder layout for the current post.
352
  *
353
  * @method enable
354
- */
355
  static public function enable()
356
  {
357
  update_post_meta(self::get_post_id(), '_fl_builder_enabled', true);
358
  }
359
-
360
  /**
361
  * Disable the builder layout for the current post.
362
  *
363
  * @method disable
364
- */
365
  static public function disable()
366
  {
367
  update_post_meta(self::get_post_id(), '_fl_builder_enabled', false);
368
  }
369
-
370
  /**
371
  * Enable the builder editor for the main post in the query.
372
  *
373
  * @method enable_editing
374
- */
375
  static public function enable_editing()
376
  {
377
  global $wp_the_query;
378
-
379
  if ( self::is_post_editable() ) {
380
-
381
- $post = $wp_the_query->post;
382
  $published = self::get_layout_data( 'published' );
383
  $draft = self::get_layout_data( 'draft' );
384
-
385
  // Migrate existing post content to the builder?
386
  if ( empty( $published ) && empty( $draft ) && ! empty( $post->post_content ) ) {
387
-
388
  $row = self::add_row();
389
  $cols = self::get_nodes( 'column' );
390
- $col = array_shift( $cols );
391
  $settings = self::get_module_defaults( 'rich-text' );
392
  $settings->text = wpautop( $post->post_content );
393
-
394
- self::add_module( 'rich-text', $settings, $col->node );
395
  }
396
  // Create a new draft?
397
  else if ( empty( $draft ) ) {
398
  self::update_layout_data( $published, 'draft', $post->ID );
399
  }
400
-
401
  // Delete old draft asset cache.
402
  self::delete_asset_cache();
403
-
404
  // Lock the post.
405
  require_once ABSPATH . 'wp-admin/includes/post.php';
406
  wp_set_post_lock( $post->ID );
407
  }
408
  }
409
-
410
  /**
411
  * @method get_cache_dir
412
- */
413
  static public function get_cache_dir()
414
  {
415
  $wp_info = wp_upload_dir();
416
-
417
  // SSL workaround.
418
  if(self::is_ssl()) {
419
  $wp_info['baseurl'] = str_ireplace('http://', 'https://', $wp_info['baseurl']);
420
  }
421
-
422
  // Build the paths.
423
  $dir_info = array(
424
  'path' => $wp_info['basedir'] . '/fl-builder/',
425
  'url' => $wp_info['baseurl'] . '/fl-builder/'
426
  );
427
-
428
  // Create the cache dir if it doesn't exist.
429
  if(!file_exists($dir_info['path'])) {
430
  mkdir($dir_info['path']);
431
  }
432
-
433
  return $dir_info;
434
  }
435
-
436
  /**
437
  * @method get_asset_version
438
- */
439
  static public function get_asset_version()
440
  {
441
  $post_id = self::get_post_id();
442
  $active = self::is_builder_active();
443
-
444
  if($active) {
445
  return md5(uniqid());
446
  }
@@ -448,43 +448,43 @@ final class FLBuilderModel {
448
  return md5(get_post_modified_time('U', false, $post_id));
449
  }
450
  }
451
-
452
  /**
453
  * @method get_asset_info
454
- */
455
  static public function get_asset_info()
456
  {
457
  $post_data = self::get_post_data();
458
  $post_id = self::get_post_id();
459
  $cache_dir = self::get_cache_dir();
460
-
461
  if(isset($post_data['node_preview'])) {
462
- $suffix = '-layout-preview';
463
  }
464
  else if(self::is_builder_active()) {
465
- $suffix = '-layout-draft';
466
  }
467
  else {
468
  $suffix = '-layout';
469
  }
470
-
471
  $info = array(
472
  'css' => $cache_dir['path'] . $post_id . $suffix . '.css',
473
  'css_url' => $cache_dir['url'] . $post_id . $suffix . '.css',
474
  'js' => $cache_dir['path'] . $post_id . $suffix . '.js',
475
  'js_url' => $cache_dir['url'] . $post_id . $suffix . '.js'
476
  );
477
-
478
  return $info;
479
  }
480
-
481
  /**
482
  * @method delete_asset_cache
483
- */
484
  static public function delete_asset_cache($type = 'all')
485
  {
486
  $info = self::get_asset_info();
487
-
488
  if(($type == 'css' || $type == 'all') && file_exists($info['css'])) {
489
  unlink($info['css']);
490
  }
@@ -492,27 +492,27 @@ final class FLBuilderModel {
492
  unlink($info['js']);
493
  }
494
  }
495
-
496
  /**
497
  * @method delete_all_asset_cache
498
- */
499
  static public function delete_all_asset_cache($post_id = null)
500
  {
501
  $post_id = $post_id == null ? self::get_post_id() : $post_id;
502
  $cache_dir = self::get_cache_dir();
503
-
504
  if($post_id == null) {
505
  array_map('unlink', glob($cache_dir['path'] . '*.css'));
506
  array_map('unlink', glob($cache_dir['path'] . '*.js'));
507
  }
508
- else {
509
  $css = $cache_dir['path'] . $post_id . '-layout.css';
510
  $css_draft = $cache_dir['path'] . $post_id . '-layout-draft.css';
511
  $css_preview = $cache_dir['path'] . $post_id . '-layout-preview.css';
512
  $js = $cache_dir['path'] . $post_id . '-layout.js';
513
  $js_draft = $cache_dir['path'] . $post_id . '-layout-draft.js';
514
  $js_preview = $cache_dir['path'] . $post_id . '-layout-preview.js';
515
-
516
  if(file_exists($css)) {
517
  unlink($css);
518
  }
@@ -533,90 +533,90 @@ final class FLBuilderModel {
533
  }
534
  }
535
  }
536
-
537
  /**
538
  * @method generate_node_id
539
- */
540
  static public function generate_node_id()
541
  {
542
  $node_id = uniqid();
543
-
544
  if($node_id == self::$last_generated_node_id) {
545
  return self::generate_node_id();
546
  }
547
-
548
  self::$last_generated_node_id = $node_id;
549
-
550
  return $node_id;
551
  }
552
-
553
  /**
554
  * @method generate_new_node_ids
555
- */
556
  static public function generate_new_node_ids($data)
557
  {
558
  $map = array();
559
  $nodes = array();
560
-
561
  // Map the new node ids to the old.
562
  foreach($data as $node_id => $node) {
563
  $map[$node_id] = self::generate_node_id();
564
  }
565
-
566
  // Replace the old node ids.
567
  foreach($data as $node_id => $node) {
568
-
569
  $nodes[$map[$node_id]] = $node;
570
  $nodes[$map[$node_id]]->node = $map[$node_id];
571
-
572
  if(!empty($node->parent) && isset($map[$node->parent])) {
573
  $nodes[$map[$node_id]]->parent = $map[$node->parent];
574
  }
575
  }
576
-
577
  return $nodes;
578
  }
579
-
580
  /**
581
  * @method get_node
582
- */
583
  static public function get_node($node_id = null, $status = null)
584
  {
585
  $data = self::get_layout_data($status);
586
  $node = $data[$node_id];
587
-
588
  if(isset($node) && !empty($node->settings)) {
589
  $node->settings = self::get_node_settings($node);
590
  }
591
-
592
  return $node;
593
  }
594
-
595
  /**
596
  * @method get_child_nodes
597
- */
598
  static public function get_child_nodes($parent_id, $status = null)
599
  {
600
  $data = self::get_layout_data($status);
601
  $nodes = array();
602
-
603
  foreach($data as $node_id => $node) {
604
-
605
  if($node->parent == $parent_id) {
606
  $nodes[$node_id] = $node;
607
  }
608
  }
609
-
610
  return $nodes;
611
  }
612
-
613
  /**
614
  * @method get_nodes
615
- */
616
  static public function get_nodes($type = null, $parent_id = null, $status = null)
617
  {
618
  $nodes = array();
619
-
620
  // Get the layout data.
621
  if($parent_id == null) {
622
  $data = self::get_layout_data($status);
@@ -624,45 +624,45 @@ final class FLBuilderModel {
624
  else {
625
  $data = self::get_child_nodes($parent_id, $status);
626
  }
627
-
628
  // Return all nodes?
629
  if($type == null) {
630
  $nodes = $data;
631
  }
632
  // Return nodes of a certain type.
633
  else {
634
-
635
  foreach($data as $node_id => $node) {
636
-
637
  if($node->type == $type) {
638
  $nodes[$node_id] = $node;
639
  }
640
  }
641
-
642
  uasort($nodes, array('FLBuilderModel', 'order_nodes'));
643
  }
644
-
645
  // Merge default settings.
646
  foreach($nodes as $node_id => $node) {
647
-
648
  if(!empty($node->settings)) {
649
  $nodes[$node_id]->settings = self::get_node_settings($nodes[$node_id]);
650
  }
651
  }
652
-
653
  // Return the nodes.
654
  return $nodes;
655
  }
656
-
657
  /**
658
  * @method get_node_settings
659
- */
660
  static public function get_node_settings($node)
661
  {
662
  $post_data = self::get_post_data();
663
-
664
  if(isset($post_data['node_preview']) && isset($post_data['node_id']) && $post_data['node_id'] == $node->node) {
665
-
666
  if(!isset($post_data['node_preview_processed_settings'])) {
667
  $settings = $post_data['node_preview'];
668
  $settings = (object)array_merge((array)$node->settings, (array)$settings);
@@ -677,13 +677,13 @@ final class FLBuilderModel {
677
  $defaults = self::get_node_defaults($node);
678
  $settings = (object)array_merge((array)$defaults, (array)$node->settings);
679
  }
680
-
681
  return $settings;
682
  }
683
-
684
  /**
685
  * @method process_node_settings
686
- */
687
  static public function process_node_settings($node, $new_settings)
688
  {
689
  if($node->type == 'row') {
@@ -695,17 +695,17 @@ final class FLBuilderModel {
695
  if($node->type == 'module') {
696
  $new_settings = self::process_module_settings($node, $new_settings);
697
  }
698
-
699
  return $new_settings;
700
  }
701
-
702
  /**
703
  * @method get_node_defaults
704
- */
705
  static public function get_node_defaults($node)
706
  {
707
  $defaults = array();
708
-
709
  if($node->type == 'row') {
710
  $defaults = self::get_row_defaults();
711
  }
@@ -715,13 +715,13 @@ final class FLBuilderModel {
715
  else if($node->type == 'module') {
716
  $defaults = self::get_module_defaults($node->settings->type);
717
  }
718
-
719
  return $defaults;
720
  }
721
-
722
  /**
723
  * @method order_nodes
724
- */
725
  static public function order_nodes($a, $b)
726
  {
727
  return (int)$a->position - (int)$b->position;
@@ -729,7 +729,7 @@ final class FLBuilderModel {
729
 
730
  /**
731
  * @method count_nodes
732
- */
733
  static public function count_nodes($type = 'row', $parent_id = null)
734
  {
735
  return count(self::get_nodes($type, $parent_id));
@@ -737,70 +737,70 @@ final class FLBuilderModel {
737
 
738
  /**
739
  * @method next_node_position
740
- */
741
  static public function next_node_position($type = 'row', $parent_id = null)
742
  {
743
  $nodes = self::get_nodes($type, $parent_id);
744
  $last = array_pop($nodes);
745
-
746
  return $last ? $last->position + 1 : 0;
747
  }
748
-
749
  /**
750
  * @method delete_node
751
- */
752
  static public function delete_node($node_id = null)
753
  {
754
  // Get the post data.
755
  $post_data = self::get_post_data();
756
-
757
  // Get the layout data.
758
  $data = self::get_layout_data();
759
-
760
  // Get the node id.
761
  if(!$node_id && isset($post_data['node_id'])) {
762
  $node_id = $post_data['node_id'];
763
  }
764
-
765
  // Return if the node doesn't exist.
766
  if(!isset($data[$node_id])) {
767
  return;
768
  }
769
-
770
  // Get the node.
771
- $node = $data[$node_id];
772
-
773
  // Call the delete method if we're deleting a module.
774
  self::call_module_delete($node);
775
-
776
  // Delete the node.
777
  unset($data[$node_id]);
778
-
779
  // Update the layout data.
780
  self::update_layout_data($data);
781
-
782
  // Reorder existing nodes.
783
  self::reorder_nodes($node->type, $node->parent);
784
-
785
  // Delete the node's children.
786
  self::delete_child_nodes($node_id);
787
  }
788
-
789
  /**
790
  * @method delete_child_nodes
791
- */
792
  static public function delete_child_nodes($parent_id = null)
793
  {
794
  $children = self::get_nodes(null, $parent_id);
795
-
796
  foreach($children as $child) {
797
  self::delete_node($child->node);
798
  }
799
  }
800
-
801
  /**
802
  * @method call_module_delete
803
- */
804
  static public function call_module_delete($node)
805
  {
806
  if($node->type == 'module' && isset(self::$modules[$node->settings->type])) {
@@ -810,10 +810,10 @@ final class FLBuilderModel {
810
  $instance->delete();
811
  }
812
  }
813
-
814
  /**
815
  * @method reorder_node
816
- */
817
  static public function reorder_node($node_id = null, $position = 0)
818
  {
819
  $post_data = self::get_post_data();
@@ -823,18 +823,18 @@ final class FLBuilderModel {
823
  $nodes = self::get_nodes($node->type, $node->parent);
824
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
825
  $new_pos = 0;
826
-
827
  // Make sure node positions start at zero.
828
  foreach($nodes as $node) {
829
  $data[$node->node]->position = $new_pos;
830
  $new_pos++;
831
  }
832
-
833
  // Get the node and remove it from the array.
834
  $node = $data[$node_id];
835
  $removed = array_splice($nodes, $node->position, 1);
836
  $new_pos = 0;
837
-
838
  // Reposition it in the array.
839
  array_splice($nodes, $position, 0, $removed);
840
 
@@ -843,54 +843,54 @@ final class FLBuilderModel {
843
  $data[$node->node]->position = $new_pos;
844
  $new_pos++;
845
  }
846
-
847
  // Update the layout data.
848
  self::update_layout_data($data);
849
  }
850
-
851
  /**
852
  * @method reorder_nodes
853
- */
854
  static public function reorder_nodes($type = 'row', $parent_id = null)
855
  {
856
  $data = self::get_layout_data();
857
  $nodes = self::get_nodes($type, $parent_id);
858
  $pos = 0;
859
-
860
  foreach($nodes as $node_id => $node) {
861
  $data[$node_id]->position = $pos;
862
  $pos++;
863
  }
864
-
865
  self::update_layout_data($data);
866
  }
867
-
868
  /**
869
  * @method move_node
870
- */
871
  static public function move_node($node_id = null, $new_parent_id = null, $position = 0)
872
- {
873
  $post_data = self::get_post_data();
874
  $data = self::get_layout_data();
875
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
876
- $new_parent_id = isset($post_data['new_parent']) ? $post_data['new_parent'] : $new_parent_id;
877
  $position = isset($post_data['position']) ? $post_data['position'] : $position;
878
  $new_parent = self::get_node($new_parent_id);
879
  $node = self::get_node($node_id);
880
-
881
  // Set the node's new parent.
882
  $data[$node_id]->parent = $new_parent->node;
883
-
884
  // Update the layout data.
885
  self::update_layout_data($data);
886
-
887
  // Set the node's new order.
888
  self::reorder_node($node_id, $position);
889
  }
890
-
891
  /**
892
  * @method add_row
893
- */
894
  static public function add_row($cols = '1-col', $position = false)
895
  {
896
  $post_data = self::get_post_data();
@@ -899,7 +899,7 @@ final class FLBuilderModel {
899
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
900
  $settings = self::get_row_defaults();
901
  $row_node_id = self::generate_node_id();
902
-
903
  // Add the row.
904
  $data[$row_node_id] = new StdClass();
905
  $data[$row_node_id]->node = $row_node_id;
@@ -907,25 +907,25 @@ final class FLBuilderModel {
907
  $data[$row_node_id]->parent = null;
908
  $data[$row_node_id]->position = self::next_node_position('row');
909
  $data[$row_node_id]->settings = $settings;
910
-
911
  // Update the layout data.
912
  self::update_layout_data($data);
913
-
914
  // Position the row.
915
  if($position !== false) {
916
  self::reorder_node($row_node_id, $position);
917
  }
918
-
919
  // Add a column group.
920
  self::add_col_group($row_node_id, $cols, 0);
921
-
922
  // Return the updated row.
923
  return self::get_node($row_node_id);
924
  }
925
-
926
  /**
927
  * @method copy_row
928
- */
929
  static public function copy_row($node_id = null)
930
  {
931
  $post_data = self::get_post_data();
@@ -935,77 +935,77 @@ final class FLBuilderModel {
935
  $new_row_id = self::generate_node_id();
936
  $col_groups = self::get_child_nodes($node_id);
937
  $new_nodes = array();
938
-
939
  // Add the new row.
940
  $layout_data[$new_row_id] = clone $row;
941
  $layout_data[$new_row_id]->settings = clone $row->settings;
942
- $layout_data[$new_row_id]->node = $new_row_id;
943
-
944
  // Get the new child nodes.
945
  foreach($col_groups as $col_group_id => $col_group) {
946
-
947
  $new_nodes[$col_group_id] = clone $col_group;
948
  $cols = self::get_child_nodes($col_group_id);
949
-
950
  foreach($cols as $col_id => $col) {
951
-
952
  $new_nodes[$col_id] = clone $col;
953
  $new_nodes[$col_id]->settings = clone $col->settings;
954
  $modules = self::get_child_nodes($col_id);
955
-
956
  foreach($modules as $module_id => $module) {
957
  $new_nodes[$module_id] = clone $module;
958
  $new_nodes[$module_id]->settings = clone $module->settings;
959
  }
960
  }
961
  }
962
-
963
  // Generate new child ids.
964
  $new_nodes = self::generate_new_node_ids($new_nodes);
965
-
966
  // Set col group parent ids to the new row id.
967
  foreach($new_nodes as $child_node_id => $child) {
968
  if($child->type == 'column-group') {
969
  $new_nodes[$child_node_id]->parent = $new_row_id;
970
  }
971
  }
972
-
973
  // Merge the child data.
974
  $layout_data = array_merge($layout_data, $new_nodes);
975
-
976
  // Update the layout data.
977
  self::update_layout_data($layout_data);
978
-
979
  // Position the new row.
980
  self::reorder_node($new_row_id, $row->position + 1);
981
  }
982
-
983
- /**
984
  * @method get_row_defaults
985
  */
986
  static public function get_row_defaults()
987
  {
988
  return self::get_settings_form_defaults(self::$settings_forms['row']['tabs']);
989
  }
990
-
991
  /**
992
  * @method process_row_settings
993
  */
994
- static public function process_row_settings($row, $new_settings)
995
  {
996
  // Cache background video data.
997
  if($new_settings->bg_type == 'video') {
998
-
999
  // Video
1000
  $video = FLBuilderPhoto::get_attachment_data($new_settings->bg_video);
1001
-
1002
  if($video) {
1003
-
1004
  $parts = explode('.', $video->filename);
1005
  $video->extension = array_pop($parts);
1006
  $new_settings->bg_video_data = $video;
1007
-
1008
- // Fallback
1009
  if(!empty($new_settings->bg_video_fallback_src)) {
1010
  $new_settings->bg_video_data->fallback = $new_settings->bg_video_fallback_src;
1011
  }
@@ -1014,15 +1014,15 @@ final class FLBuilderModel {
1014
  }
1015
  }
1016
  }
1017
-
1018
  // Cache background slideshow data.
1019
  if($new_settings->bg_type == 'slideshow' && $new_settings->ss_source == 'wordpress') {
1020
-
1021
  // Make sure we have a photo data object.
1022
  if(!isset($row->settings->ss_photo_data)) {
1023
  $row->settings->ss_photo_data = new StdClass();
1024
  }
1025
-
1026
  // Hijack the slideshow module to get WordPress photo data.
1027
  $ss = new FLSlideshowModule();
1028
  $ss->settings = new StdClass();
@@ -1030,40 +1030,40 @@ final class FLBuilderModel {
1030
  $ss->settings->photo_data = $row->settings->ss_photo_data;
1031
  $new_settings->ss_photo_data = $ss->get_wordpress_photos();
1032
  }
1033
-
1034
  return $new_settings;
1035
  }
1036
-
1037
  /**
1038
  * @method get_row_bg_data
1039
  */
1040
- static public function get_row_bg_data($row)
1041
  {
1042
  $data = null;
1043
-
1044
  // Background Video
1045
  if($row->settings->bg_type == 'video' && isset($row->settings->bg_video_data)) {
1046
  $data = $row->settings->bg_video_data;
1047
  }
1048
-
1049
  // Background Slideshow
1050
  else if($row->settings->bg_type == 'slideshow' && isset($row->settings->ss_photo_data)) {
1051
  $data = $row->settings->ss_photo_data;
1052
  }
1053
-
1054
  return $data;
1055
  }
1056
-
1057
  /**
1058
  * @method get_row_slideshow_source
1059
  */
1060
- static public function get_row_slideshow_source($row)
1061
  {
1062
  // Make sure we have a photo data object.
1063
  if(!isset($row->settings->ss_photo_data)) {
1064
  $row->settings->ss_photo_data = new StdClass();
1065
  }
1066
-
1067
  // Hijack the slideshow module to get the source.
1068
  $ss = new FLSlideshowModule();
1069
  $ss->settings = new StdClass();
@@ -1071,11 +1071,11 @@ final class FLBuilderModel {
1071
  $ss->settings->photos = $row->settings->ss_photos;
1072
  $ss->settings->feed_url = $row->settings->ss_feed_url;
1073
  $ss->settings->photo_data = $row->settings->ss_photo_data;
1074
-
1075
  // Return the slideshow source.
1076
  return $ss->get_source();
1077
  }
1078
-
1079
  /**
1080
  * @method add_col_group
1081
  */
@@ -1087,7 +1087,7 @@ final class FLBuilderModel {
1087
  $cols = isset($post_data['cols']) ? $post_data['cols'] : $cols;
1088
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1089
  $group_node_id = self::generate_node_id();
1090
-
1091
  // Add the column group.
1092
  $data[$group_node_id] = new StdClass();
1093
  $data[$group_node_id]->node = $group_node_id;
@@ -1095,10 +1095,10 @@ final class FLBuilderModel {
1095
  $data[$group_node_id]->parent = $node_id;
1096
  $data[$group_node_id]->position = self::next_node_position('column-group', $node_id);
1097
  $data[$group_node_id]->settings = '';
1098
-
1099
  // Add the columns.
1100
  for($i = 0; $i < count(self::$row_layouts[$cols]); $i++) {
1101
-
1102
  $col_node_id = self::generate_node_id();
1103
  $data[$col_node_id] = new StdClass();
1104
  $data[$col_node_id]->node = $col_node_id;
@@ -1108,29 +1108,29 @@ final class FLBuilderModel {
1108
  $data[$col_node_id]->settings = new StdClass();
1109
  $data[$col_node_id]->settings->size = self::$row_layouts[$cols][$i];
1110
  }
1111
-
1112
  // Update the layout data.
1113
  self::update_layout_data($data);
1114
-
1115
  // Position the column group.
1116
  if($position !== false) {
1117
  self::reorder_node($group_node_id, $position);
1118
  }
1119
-
1120
  // Return the column group.
1121
  return self::get_node($group_node_id);
1122
  }
1123
-
1124
  /**
1125
  * @method process_col_settings
1126
  */
1127
  static public function process_col_settings($col, $new_settings)
1128
  {
1129
  $new_settings->size = self::resize_col($col->node, $new_settings->size);
1130
-
1131
  return $new_settings;
1132
  }
1133
-
1134
  /**
1135
  * @method delete_col
1136
  */
@@ -1140,39 +1140,39 @@ final class FLBuilderModel {
1140
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
1141
  $new_width = isset($post_data['new_width']) ? $post_data['new_width'] : $new_width;
1142
  $col = self::get_node($node_id);
1143
-
1144
  // Delete the column.
1145
  self::delete_node($node_id);
1146
-
1147
  // Get the group
1148
  $group = self::get_node($col->parent);
1149
-
1150
  // Get the group children.
1151
  $cols = self::get_nodes('column', $group->node);
1152
-
1153
  // Delete the group if empty.
1154
  if(count($cols) === 0) {
1155
  self::delete_node($group->node);
1156
  }
1157
-
1158
  // Resize the remaining columns.
1159
  else {
1160
-
1161
  // Get the layout data.
1162
  $data = self::get_layout_data();
1163
-
1164
  // Loop through the columns.
1165
  foreach($cols as $col_id => $col) {
1166
-
1167
  // Set the new size.
1168
  $data[$col_id]->settings->size = round($new_width, 2);
1169
- }
1170
-
1171
  // Update the layout data.
1172
  self::update_layout_data($data);
1173
  }
1174
  }
1175
-
1176
  /**
1177
  * @method resize_col
1178
  */
@@ -1188,12 +1188,12 @@ final class FLBuilderModel {
1188
  $num_cols = count($cols);
1189
  $min_width = 10;
1190
  $max_width = 100 - $min_width;
1191
-
1192
  // Don't resize if only one column or width isn't a number.
1193
  if($num_cols == 1 || !is_numeric($new_width)) {
1194
  return $col->settings->size;
1195
  }
1196
-
1197
  // Find the sibling column to absorb this resize.
1198
  if($pos === 0) {
1199
  $sibling = $cols[1];
@@ -1204,123 +1204,123 @@ final class FLBuilderModel {
1204
  else {
1205
  $sibling = $cols[$pos + 1];
1206
  }
1207
-
1208
  // Find other siblings.
1209
  foreach($cols as $c) {
1210
-
1211
  if($col->node == $c->node) {
1212
  continue;
1213
  }
1214
  if($sibling->node == $c->node) {
1215
  continue;
1216
  }
1217
-
1218
  $siblings[] = $c;
1219
  $max_width -= $c->settings->size;
1220
  $siblings_width += $c->settings->size;
1221
  }
1222
-
1223
  // Make sure the new width isn't too small.
1224
  if($new_width < $min_width) {
1225
  $new_width = $min_width;
1226
  }
1227
-
1228
  // Make sure the new width isn't too big.
1229
  if($new_width > $max_width) {
1230
  $new_width = $max_width;
1231
  }
1232
-
1233
  // Save new sibling size.
1234
  $data[$sibling->node]->settings->size = round(100 - $siblings_width - $new_width, 2);
1235
-
1236
  // Save new column size.
1237
  $data[$col->node]->settings->size = $new_width;
1238
-
1239
  // Update the layout data.
1240
  self::update_layout_data($data);
1241
-
1242
  // Return the new size.
1243
  return $new_width;
1244
  }
1245
-
1246
- /**
1247
  * @method get_col_defaults
1248
  */
1249
  static public function get_col_defaults()
1250
  {
1251
  return self::get_settings_form_defaults(self::$settings_forms['col']['tabs']);
1252
  }
1253
-
1254
  /**
1255
  * @method load_modules
1256
- */
1257
  static public function load_modules()
1258
  {
1259
  $path = FL_BUILDER_DIR . 'modules/';
1260
  $dir = dir($path);
1261
  $module_path = '';
1262
-
1263
  while(false !== ($entry = $dir->read())) {
1264
-
1265
  if(!is_dir($path . $entry) || $entry == '.' || $entry == '..') {
1266
  continue;
1267
  }
1268
-
1269
  // Paths to check.
1270
  $module_path = $entry . '/' . $entry . '.php';
1271
  $child_path = get_stylesheet_directory() . '/fl-builder/modules/' . $module_path;
1272
  $theme_path = get_template_directory() . '/fl-builder/modules/' . $module_path;
1273
  $builder_path = FL_BUILDER_DIR . 'modules/' . $module_path;
1274
-
1275
  // Check for the module class in a child theme.
1276
  if(is_child_theme() && file_exists($child_path)) {
1277
  require_once $child_path;
1278
  }
1279
-
1280
  // Check for the module class in a parent theme.
1281
  else if(file_exists($theme_path)) {
1282
  require_once $theme_path;
1283
  }
1284
-
1285
  // Check for the module class in the builder directory.
1286
  else if(file_exists($builder_path)) {
1287
  require_once $builder_path;
1288
  }
1289
  }
1290
  }
1291
-
1292
  /**
1293
  * @method register_module
1294
- */
1295
  static public function register_module($class, $form)
1296
  {
1297
  if(class_exists($class)) {
1298
-
1299
  // Create a new instance of the module.
1300
  $instance = new $class();
1301
-
1302
  // Only register modules that are enabled.
1303
  if($instance->enabled) {
1304
 
1305
  // Save the instance in the modules array.
1306
  self::$modules[$instance->slug] = $instance;
1307
-
1308
  // Add the form to the instance.
1309
  self::$modules[$instance->slug]->form = $form;
1310
- self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['module-advanced'];
1311
  }
1312
  }
1313
  }
1314
-
1315
  /**
1316
  * @method get_enabled_modules
1317
- */
1318
  static public function get_enabled_modules()
1319
  {
1320
  $key = '_fl_builder_enabled_modules';
1321
  $default = array_keys(self::$modules);
1322
  $default[] = 'all';
1323
-
1324
  // Get the value.
1325
  if(is_network_admin()) {
1326
  $value = get_site_option($key);
@@ -1332,7 +1332,7 @@ final class FLBuilderModel {
1332
  else {
1333
  $value = get_option($key);
1334
  }
1335
-
1336
  // Return the value.
1337
  if(!$value || in_array('all', $value)) {
1338
  return $default;
@@ -1341,23 +1341,23 @@ final class FLBuilderModel {
1341
  return $value;
1342
  }
1343
  }
1344
-
1345
  /**
1346
  * @method get_categorized_modules
1347
- */
1348
  static public function get_categorized_modules()
1349
  {
1350
  $enabled_modules = self::get_enabled_modules();
1351
-
1352
  $categories = array(
1353
  'Basic Modules' => array(),
1354
  'Advanced Modules' => array(),
1355
  'Other' => array()
1356
  );
1357
-
1358
  // Build the categories array.
1359
  foreach(self::$modules as $module) {
1360
-
1361
  if(!in_array($module->slug, $enabled_modules)) {
1362
  continue;
1363
  }
@@ -1365,18 +1365,18 @@ final class FLBuilderModel {
1365
  $categories[$module->category] = self::get_wp_widgets();
1366
  }
1367
  else if(isset($module->category)) {
1368
-
1369
  if(!isset($categories[$module->category])) {
1370
  $categories[$module->category] = array();
1371
  }
1372
-
1373
  $categories[$module->category][$module->name] = $module;
1374
  }
1375
  else {
1376
  $categories['Other'][$module->name] = $module;
1377
  }
1378
  }
1379
-
1380
  // Sort the modules.
1381
  foreach($categories as $title => $modules) {
1382
  if(count($categories[$title]) == 0) {
@@ -1386,7 +1386,7 @@ final class FLBuilderModel {
1386
  ksort($categories[$title]);
1387
  }
1388
  }
1389
-
1390
  // Return sorted categories.
1391
  return $categories;
1392
  }
@@ -1396,10 +1396,10 @@ final class FLBuilderModel {
1396
  */
1397
  static public function get_module($node_id)
1398
  {
1399
- $module = self::get_node($node_id);
1400
-
1401
  if(isset(self::$modules[$module->settings->type])) {
1402
-
1403
  $class = get_class(self::$modules[$module->settings->type]);
1404
  $instance = new $class();
1405
  $instance->node = $module->node;
@@ -1408,10 +1408,10 @@ final class FLBuilderModel {
1408
  $instance->settings = $module->settings;
1409
  $instance->type = 'module';
1410
  $instance->form = self::$modules[$module->settings->type]->form;
1411
-
1412
  return $instance;
1413
  }
1414
-
1415
  return false;
1416
  }
1417
 
@@ -1423,11 +1423,11 @@ final class FLBuilderModel {
1423
  $modules = self::get_nodes('module', $col_id);
1424
  $instances = array();
1425
  $i = 0;
1426
-
1427
  foreach($modules as $module) {
1428
-
1429
  if(isset(self::$modules[$module->settings->type])) {
1430
-
1431
  $class = get_class(self::$modules[$module->settings->type]);
1432
  $instances[$i] = new $class();
1433
  $instances[$i]->node = $module->node;
@@ -1439,7 +1439,7 @@ final class FLBuilderModel {
1439
  $i++;
1440
  }
1441
  }
1442
-
1443
  return $instances;
1444
  }
1445
 
@@ -1450,7 +1450,7 @@ final class FLBuilderModel {
1450
  {
1451
  return self::get_modules();
1452
  }
1453
-
1454
  /**
1455
  * @method add_module
1456
  */
@@ -1464,13 +1464,13 @@ final class FLBuilderModel {
1464
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1465
  $module_node_id = self::generate_node_id();
1466
  $settings->type = $type;
1467
-
1468
  // Run module update method.
1469
  $class = get_class(self::$modules[$type]);
1470
  $instance = new $class();
1471
  $instance->settings = $settings;
1472
  $settings = $instance->update($settings);
1473
-
1474
  // Save the module.
1475
  $data[$module_node_id] = new StdClass();
1476
  $data[$module_node_id]->node = $module_node_id;
@@ -1478,19 +1478,19 @@ final class FLBuilderModel {
1478
  $data[$module_node_id]->parent = $parent_id;
1479
  $data[$module_node_id]->position = self::next_node_position('module', $parent_id);
1480
  $data[$module_node_id]->settings = $settings;
1481
-
1482
  // Update the layout data.
1483
  self::update_layout_data($data);
1484
-
1485
  // Position the module.
1486
  if($position !== false) {
1487
  self::reorder_node($module_node_id, $position);
1488
  }
1489
-
1490
  // Send back the inserted module.
1491
  return self::get_module($module_node_id);
1492
  }
1493
-
1494
  /**
1495
  * @method add_default_module
1496
  */
@@ -1503,8 +1503,8 @@ final class FLBuilderModel {
1503
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1504
  $settings = self::get_module_defaults($type);
1505
  $module_node_id = self::generate_node_id();
1506
-
1507
- // Add a new row if we don't have a parent.
1508
  if(!$parent) {
1509
  $row = self::add_row('1-col', $position);
1510
  $col_groups = self::get_nodes('column-group', $row->node);
@@ -1514,7 +1514,7 @@ final class FLBuilderModel {
1514
  $parent_id = $parent->node;
1515
  $position = null;
1516
  }
1517
-
1518
  // Add a new column if the parent is a row.
1519
  else if($parent->type == 'row') {
1520
  $col_group = self::add_col_group($parent->node, '1-col', $position);
@@ -1523,13 +1523,13 @@ final class FLBuilderModel {
1523
  $parent_id = $parent->node;
1524
  $position = null;
1525
  }
1526
-
1527
  // Run module update method.
1528
  $class = get_class(self::$modules[$type]);
1529
  $instance = new $class();
1530
  $instance->settings = $settings;
1531
  $settings = $instance->update($settings);
1532
-
1533
  // Save the module.
1534
  $data = self::get_layout_data();
1535
  $data[$module_node_id] = new StdClass();
@@ -1538,106 +1538,106 @@ final class FLBuilderModel {
1538
  $data[$module_node_id]->parent = $parent_id;
1539
  $data[$module_node_id]->position = self::next_node_position('module', $parent_id);
1540
  $data[$module_node_id]->settings = $settings;
1541
-
1542
  // Update the layout data.
1543
  self::update_layout_data($data);
1544
-
1545
  // Position the module.
1546
  if($position !== false) {
1547
  self::reorder_node($module_node_id, $position);
1548
  }
1549
-
1550
  // Send back the inserted module.
1551
  return self::get_module($module_node_id);
1552
  }
1553
-
1554
  /**
1555
  * @method copy_module
1556
- */
1557
  static public function copy_module($node_id = null)
1558
  {
1559
  $post_data = self::get_post_data();
1560
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
1561
  $module = self::get_module($node_id);
1562
-
1563
  return self::add_module($module->settings->type, $module->settings, $module->parent, $module->position + 1);
1564
  }
1565
-
1566
  /**
1567
  * @method process_module_settings
1568
- */
1569
  static public function process_module_settings($module, $new_settings)
1570
  {
1571
  // Get a new node instance to work with.
1572
  $class = get_class(self::$modules[$module->settings->type]);
1573
  $instance = new $class();
1574
-
1575
  // Run node delete to clear any cache.
1576
  $instance->settings = $module->settings;
1577
  $instance->delete();
1578
-
1579
  // Run node update.
1580
  $instance->settings = $new_settings;
1581
  $new_settings = $instance->update($new_settings);
1582
-
1583
  return $new_settings;
1584
  }
1585
-
1586
  /**
1587
  * @method get_module_defaults
1588
  */
1589
  static public function get_module_defaults($type)
1590
  {
1591
  $defaults = new StdClass();
1592
-
1593
  if(isset(self::$modules[$type]->form)) {
1594
  $defaults = self::get_settings_form_defaults(self::$modules[$type]->form);
1595
  $defaults->type = $type;
1596
  }
1597
-
1598
  return $defaults;
1599
  }
1600
-
1601
  /**
1602
  * @method get_wp_widgets
1603
  */
1604
  static public function get_wp_widgets()
1605
  {
1606
  global $wp_widget_factory;
1607
-
1608
  $widgets = array();
1609
-
1610
  foreach($wp_widget_factory->widgets as $class => $widget) {
1611
  $widget->class = $class;
1612
  $widgets[$widget->name] = $widget;
1613
  }
1614
-
1615
  ksort($widgets);
1616
-
1617
  return $widgets;
1618
  }
1619
-
1620
  /**
1621
  * @method get_wp_sidebars
1622
  */
1623
  static public function get_wp_sidebars()
1624
  {
1625
  global $wp_registered_sidebars;
1626
-
1627
  $sidebars = array();
1628
-
1629
  foreach($wp_registered_sidebars as $sidebar) {
1630
  $sidebars[$sidebar['name']] = $sidebar;
1631
  }
1632
-
1633
  ksort($sidebars);
1634
-
1635
  return $sidebars;
1636
  }
1637
-
1638
  /**
1639
  * @method load_settings
1640
- */
1641
  static public function load_settings()
1642
  {
1643
  require_once FL_BUILDER_DIR . 'includes/global-settings.php';
@@ -1646,22 +1646,22 @@ final class FLBuilderModel {
1646
  require_once FL_BUILDER_DIR . 'includes/module-settings.php';
1647
  require_once FL_BUILDER_DIR . 'includes/user-template-settings.php';
1648
  }
1649
-
1650
  /**
1651
  * @method register_settings_form
1652
- */
1653
  static public function register_settings_form($id, $form)
1654
  {
1655
  self::$settings_forms[$id] = $form;
1656
  }
1657
-
1658
  /**
1659
  * @method get_settings_form_fields
1660
- */
1661
  static public function get_settings_form_fields($form)
1662
  {
1663
  $fields = array();
1664
-
1665
  foreach ( $form as $tab ) {
1666
  if ( isset( $tab['sections'] ) ) {
1667
  foreach ( $tab['sections'] as $section ) {
@@ -1673,27 +1673,27 @@ final class FLBuilderModel {
1673
  }
1674
  }
1675
  }
1676
-
1677
  return $fields;
1678
  }
1679
-
1680
  /**
1681
  * @method get_settings_form_defaults
1682
  */
1683
  static public function get_settings_form_defaults($tabs = array())
1684
  {
1685
  $defaults = new StdClass();
1686
-
1687
  foreach($tabs as $tab) {
1688
  if(isset($tab['sections'])) {
1689
  foreach($tab['sections'] as $section) {
1690
  if(isset($section['fields'])) {
1691
  foreach($section['fields'] as $name => $field) {
1692
-
1693
  $default = isset($field['default']) ? $field['default'] : '';
1694
  $is_multiple = isset($field['multiple']) && $field['multiple'] === true;
1695
  $supports_multiple = $field['type'] != 'editor' && $field['type'] != 'photo';
1696
-
1697
  if($is_multiple && $supports_multiple) {
1698
  $defaults->$name = array($default);
1699
  }
@@ -1705,10 +1705,10 @@ final class FLBuilderModel {
1705
  }
1706
  }
1707
  }
1708
-
1709
  return $defaults;
1710
  }
1711
-
1712
  /**
1713
  * @method save_settings
1714
  */
@@ -1719,17 +1719,17 @@ final class FLBuilderModel {
1719
  $settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
1720
  $node = self::get_node($node_id);
1721
  $new_settings = (object)array_merge((array)$node->settings, (array)$settings);
1722
-
1723
  // Process the settings.
1724
  $new_settings = self::process_node_settings($node, $new_settings);
1725
 
1726
  // Save the settings to the node.
1727
  $data = self::get_layout_data();
1728
  $data[$node_id]->settings = $new_settings;
1729
-
1730
  // Update the layout data.
1731
  self::update_layout_data($data);
1732
-
1733
  // Return the new layout.
1734
  if(defined('DOING_AJAX')) {
1735
  FLBuilder::render_css();
@@ -1737,7 +1737,7 @@ final class FLBuilderModel {
1737
  FLBuilder::render_layout();
1738
  }
1739
  }
1740
-
1741
  /**
1742
  * @method json_decode_settings
1743
  */
@@ -1747,15 +1747,15 @@ final class FLBuilderModel {
1747
  $data = json_decode(stripcslashes($data));
1748
  }
1749
  if(is_object($data) || is_array($data)) {
1750
-
1751
  foreach($data as $key => $val) {
1752
-
1753
  $new_val = null;
1754
-
1755
  if(is_string($val)) {
1756
-
1757
  $decoded = json_decode(stripcslashes($val));
1758
-
1759
  if(is_object($decoded) || is_array($decoded)) {
1760
  $new_val = $decoded;
1761
  }
@@ -1763,9 +1763,9 @@ final class FLBuilderModel {
1763
  else if(is_object($val) || is_array($val)) {
1764
  $new_val = self::json_decode_settings($val);
1765
  }
1766
-
1767
  if($new_val) {
1768
-
1769
  if(is_object($data)) {
1770
  $data->{$key} = $new_val;
1771
  }
@@ -1775,10 +1775,10 @@ final class FLBuilderModel {
1775
  }
1776
  }
1777
  }
1778
-
1779
  return $data;
1780
  }
1781
-
1782
  /**
1783
  * @method default_settings
1784
  */
@@ -1790,15 +1790,15 @@ final class FLBuilderModel {
1790
  }
1791
  }
1792
  }
1793
-
1794
- /**
1795
  * @method get_global_defaults
1796
  */
1797
  static public function get_global_defaults()
1798
  {
1799
  return self::get_settings_form_defaults(self::$settings_forms['global']['tabs']);
1800
  }
1801
-
1802
  /**
1803
  * @method get_global_settings
1804
  */
@@ -1806,14 +1806,14 @@ final class FLBuilderModel {
1806
  {
1807
  $settings = get_option('_fl_builder_settings');
1808
  $defaults = self::get_global_defaults();
1809
-
1810
  if(!$settings) {
1811
  $settings = new StdClass();
1812
  }
1813
-
1814
  return (object)array_merge((array)$defaults, (array)$settings);
1815
  }
1816
-
1817
  /**
1818
  * @method save_global_settings
1819
  */
@@ -1823,126 +1823,126 @@ final class FLBuilderModel {
1823
  $settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
1824
  $old_settings = self::get_global_settings();
1825
  $new_settings = (object)array_merge((array)$old_settings, (array)$settings);
1826
-
1827
  return update_option('_fl_builder_settings', $settings);
1828
  }
1829
 
1830
  /**
1831
  * @method duplicate_post
1832
- */
1833
  static public function duplicate_post()
1834
  {
1835
  global $wpdb;
1836
-
1837
  $post_id = self::get_post_id();
1838
  $post = get_post($post_id);
1839
  $current_user = wp_get_current_user();
1840
-
1841
- // Duplicate the post.
1842
- $data = array(
1843
- 'comment_status' => $post->comment_status,
1844
- 'ping_status' => $post->ping_status,
1845
- 'post_author' => $current_user->ID,
1846
- 'post_content' => $post->post_content,
1847
- 'post_excerpt' => $post->post_excerpt,
1848
- 'post_name' => $post->post_name,
1849
- 'post_parent' => $post->post_parent,
1850
- 'post_password' => $post->post_password,
1851
- 'post_status' => 'draft',
1852
- 'post_title' => __('Copy of ', 'fl-builder') . $post->post_title,
1853
- 'post_type' => $post->post_type,
1854
- 'to_ping' => $post->to_ping,
1855
- 'menu_order' => $post->menu_order
1856
- );
1857
-
1858
  // Get the new post id.
1859
  $new_post_id = wp_insert_post($data);
1860
-
1861
  // Duplicate post meta.
1862
  $post_meta = $wpdb->get_results("SELECT meta_key, meta_value FROM {$wpdb->postmeta} WHERE post_id= {$post_id}");
1863
-
1864
  if(count($post_meta) !== 0) {
1865
-
1866
  $sql = "INSERT INTO {$wpdb->postmeta} (post_id, meta_key, meta_value) ";
1867
-
1868
  foreach($post_meta as $meta_info) {
1869
  $meta_key = $meta_info->meta_key;
1870
  $meta_value = addslashes($meta_info->meta_value);
1871
  $sql_select[] = "SELECT {$new_post_id}, '{$meta_key}', '{$meta_value}'";
1872
  }
1873
-
1874
  $sql .= implode(" UNION ALL ", $sql_select);
1875
  $wpdb->query($sql);
1876
  }
1877
-
1878
  // Duplicate post terms.
1879
  $taxonomies = get_object_taxonomies($post->post_type);
1880
-
1881
  foreach($taxonomies as $taxonomy) {
1882
-
1883
  $post_terms = wp_get_object_terms($post_id, $taxonomy);
1884
-
1885
  for($i = 0; $i < count($post_terms); $i++) {
1886
  wp_set_object_terms($new_post_id, $post_terms[$i]->slug, $taxonomy, true);
1887
  }
1888
  }
1889
-
1890
  // Get the duplicated layout data.
1891
  $data = self::get_layout_data('published', $new_post_id);
1892
-
1893
  // Generate new node ids.
1894
  $data = self::generate_new_node_ids($data);
1895
-
1896
  // Save the duplicated layout data.
1897
  self::update_layout_data($data, 'published', $new_post_id);
1898
-
1899
  // Return the new post id.
1900
  return $new_post_id;
1901
  }
1902
-
1903
  /**
1904
  * @method delete_post
1905
- */
1906
  static public function delete_post($post_id)
1907
  {
1908
  // Delete all published and draft data.
1909
  self::delete_layout_data('published', $post_id);
1910
  self::delete_layout_data('draft', $post_id);
1911
-
1912
  // Delete all css and js.
1913
  self::delete_all_asset_cache($post_id);
1914
  }
1915
-
1916
  /**
1917
  * @method save_revision
1918
- */
1919
  static public function save_revision($post_id)
1920
  {
1921
  $parent_id = wp_is_post_revision($post_id);
1922
-
1923
  if($parent_id) {
1924
-
1925
  $parent = get_post($parent_id);
1926
  $data = self::get_layout_data('published', $parent->ID);
1927
-
1928
  if(!empty($data)) {
1929
  self::update_layout_data($data, 'published', $post_id);
1930
  }
1931
  }
1932
  }
1933
-
1934
  /**
1935
  * @method restore_revision
1936
- */
1937
  static public function restore_revision($post_id, $revision_id)
1938
  {
1939
  $post = get_post($post_id);
1940
  $revision = get_post($revision_id);
1941
-
1942
  if($revision) {
1943
-
1944
  $data = self::get_layout_data('published', $revision->ID);
1945
-
1946
  if(!empty($data)) {
1947
  self::update_layout_data($data, 'published', $post_id);
1948
  self::update_layout_data($data, 'draft', $post_id);
@@ -1951,22 +1951,22 @@ final class FLBuilderModel {
1951
  self::delete_layout_data('published', $post_id);
1952
  self::delete_layout_data('draft', $post_id);
1953
  }
1954
-
1955
  self::delete_all_asset_cache();
1956
  }
1957
  }
1958
-
1959
  /**
1960
  * We use get_metadata here instead of get_post_meta,
1961
- * to ensure revisions are queried accordingly.
1962
  *
1963
  * @method get_layout_data
1964
- */
1965
  static public function get_layout_data($status = null, $post_id = null)
1966
  {
1967
  $post_id = !$post_id ? self::get_post_id() : $post_id;
1968
  $status = !$status ? self::get_node_status() : $status;
1969
-
1970
  // Get published data?
1971
  if($status == 'published') {
1972
  if(isset(self::$published_layout_data[$post_id])) {
@@ -1974,7 +1974,7 @@ final class FLBuilderModel {
1974
  }
1975
  else {
1976
  $data = get_metadata('post', $post_id, '_fl_builder_data', true);
1977
- self::$published_layout_data[$post_id] = $data;
1978
  }
1979
  }
1980
  // Get draft data?
@@ -1984,15 +1984,15 @@ final class FLBuilderModel {
1984
  }
1985
  else {
1986
  $data = get_metadata('post', $post_id, '_fl_builder_draft', true);
1987
- self::$draft_layout_data[$post_id] = $data;
1988
  }
1989
  }
1990
-
1991
  // Make sure we have an array.
1992
  if(empty($data)) {
1993
  $data = array();
1994
  }
1995
-
1996
  // Clone the layout data to ensure the cache remains intact.
1997
  foreach($data as $node_id => $node) {
1998
  $data[$node_id] = clone $node;
@@ -2001,18 +2001,19 @@ final class FLBuilderModel {
2001
  // Return the data.
2002
  return $data;
2003
  }
2004
-
2005
  /**
2006
  * We use update_metadata here instead of update_post_meta,
2007
- * to ensure revisions are updated accordingly.
2008
- *
2009
  * @method update_layout_data
2010
- */
2011
  static public function update_layout_data($data, $status = null, $post_id = null)
2012
  {
2013
  $post_id = !$post_id ? self::get_post_id() : $post_id;
2014
  $status = !$status ? self::get_node_status() : $status;
2015
-
 
2016
  // Update published data?
2017
  if($status == 'published') {
2018
  update_metadata('post', $post_id, '_fl_builder_data', $data);
@@ -2024,75 +2025,93 @@ final class FLBuilderModel {
2024
  self::$draft_layout_data[$post_id] = $data;
2025
  }
2026
  }
2027
-
2028
  /**
2029
  * @method delete_layout_data
2030
- */
2031
  static public function delete_layout_data($status = null, $post_id = null)
2032
  {
2033
  // Make sure we have a status to delete.
2034
  if(!$status) {
2035
  return;
2036
  }
2037
-
2038
  // Get the post id.
2039
  $post_id = !$post_id ? self::get_post_id() : $post_id;
2040
-
2041
  // Get the data to delete.
2042
  $data = self::get_layout_data($status, $post_id);
2043
-
2044
  // Delete the nodes.
2045
  foreach($data as $node) {
2046
  self::call_module_delete($node);
2047
  }
2048
-
2049
  // Update the layout data.
2050
  self::update_layout_data(array(), $status, $post_id);
2051
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2052
 
2053
  /**
2054
  * @method clear_draft_layout
2055
- */
2056
  static public function clear_draft_layout()
2057
  {
2058
  $post_id = self::get_post_id();
2059
  $data = self::get_layout_data('published', $post_id);
2060
-
2061
  // Delete the old draft layout.
2062
  self::delete_layout_data('draft');
2063
-
2064
  // Save the new draft layout.
2065
  self::update_layout_data($data, 'draft', $post_id);
2066
-
2067
- // Clear the asset cache.
2068
  self::delete_all_asset_cache($post_id);
2069
  }
2070
-
2071
  /**
2072
  * @method save_layout
2073
- */
2074
  static public function save_layout()
2075
  {
2076
  $editor_content = FLBuilder::render_editor_content();
2077
  $post_id = self::get_post_id();
2078
  $data = self::get_layout_data('draft', $post_id);
2079
-
2080
  // Delete the old published layout.
2081
  self::delete_layout_data('published', $post_id);
2082
-
2083
  // Save the new published layout.
2084
  self::update_layout_data($data, 'published', $post_id);
2085
-
2086
- // Clear the asset cache.
2087
  self::delete_all_asset_cache($post_id);
2088
-
2089
  // Enable the builder to take over the post content.
2090
  self::enable();
2091
-
2092
  // Get the post status.
2093
  $post_status = get_post_status($post_id);
2094
  $post_status = strstr($post_status, 'draft') ? 'publish' : $post_status;
2095
-
2096
  // Update the post with stripped down content.
2097
  wp_update_post(array(
2098
  'ID' => self::get_post_id(),
@@ -2100,13 +2119,13 @@ final class FLBuilderModel {
2100
  'post_content' => $editor_content
2101
  ));
2102
  }
2103
-
2104
  /**
2105
  * Duplicates a layout for WPML when the copy from original
2106
  * button has been clicked.
2107
- *
2108
  * @method duplicate_wpml_layout
2109
- */
2110
  static public function duplicate_wpml_layout($original_post_id = null, $new_post_id = null)
2111
  {
2112
  $post_data = self::get_post_data();
@@ -2115,12 +2134,12 @@ final class FLBuilderModel {
2115
  $enabled = get_post_meta($original_post_id, '_fl_builder_enabled', true);
2116
  $published = self::get_layout_data('published', $original_post_id);
2117
  $draft = self::get_layout_data('draft', $original_post_id);
2118
-
2119
  $response = array(
2120
  'enabled' => false,
2121
  'has_layout' => false
2122
  );
2123
-
2124
  if(!empty($enabled)) {
2125
  update_post_meta($new_post_id, '_fl_builder_enabled', true);
2126
  $response['enabled'] = true;
@@ -2133,18 +2152,18 @@ final class FLBuilderModel {
2133
  self::update_layout_data($draft, 'draft', $new_post_id);
2134
  $response['has_layout'] = true;
2135
  }
2136
-
2137
  return $response;
2138
  }
2139
-
2140
  /**
2141
  * @method get_enabled_templates
2142
- */
2143
  static public function get_enabled_templates()
2144
  {
2145
  $key = '_fl_builder_enabled_templates';
2146
  $default = 'enabled';
2147
-
2148
  // Get the value.
2149
  if(is_network_admin()) {
2150
  $value = get_site_option($key);
@@ -2156,7 +2175,7 @@ final class FLBuilderModel {
2156
  else {
2157
  $value = get_option($key);
2158
  }
2159
-
2160
  // Return the value.
2161
  if(!$value) {
2162
  return $default;
@@ -2165,14 +2184,14 @@ final class FLBuilderModel {
2165
  return $value;
2166
  }
2167
  }
2168
-
2169
  /**
2170
  * @method save_user_template
2171
- */
2172
  static public function save_user_template()
2173
  {
2174
  $post_data = self::get_post_data();
2175
-
2176
  $post_id = wp_insert_post(array(
2177
  'post_title' => $post_data['template_name'],
2178
  'post_type' => 'fl-builder-template',
@@ -2180,41 +2199,41 @@ final class FLBuilderModel {
2180
  'ping_status' => 'closed',
2181
  'comment_status' => 'closed'
2182
  ));
2183
-
2184
  // Get the layout data to copy.
2185
  $data = self::get_layout_data();
2186
-
2187
  // Generate new node ids.
2188
  $data = self::generate_new_node_ids($data);
2189
-
2190
  // Save the template layout data.
2191
  self::update_layout_data($data, 'published', $post_id);
2192
  }
2193
-
2194
  /**
2195
  * @method get_user_templates
2196
- */
2197
  static public function get_user_templates()
2198
  {
2199
  return get_posts('post_type=fl-builder-template&orderby=title&order=ASC&posts_per_page=-1');
2200
  }
2201
-
2202
  /**
2203
  * @method delete_user_template
2204
- */
2205
  static public function delete_user_template($template_id = null)
2206
  {
2207
  $post_data = self::get_post_data();
2208
  $template_id = isset($post_data['template_id']) ? $post_data['template_id'] : $template_id;
2209
-
2210
  if(isset($template_id)) {
2211
  wp_delete_post($template_id, true);
2212
  }
2213
  }
2214
-
2215
  /**
2216
  * @method apply_user_template
2217
- */
2218
  static public function apply_user_template($template_id = null, $append = false)
2219
  {
2220
  $post_data = self::get_post_data();
@@ -2223,109 +2242,109 @@ final class FLBuilderModel {
2223
  $row_position = self::next_node_position('row');
2224
 
2225
  if(isset($template_id)) {
2226
-
2227
  // Delete existing nodes?
2228
  if(!$append) {
2229
  self::delete_layout_data('draft');
2230
  }
2231
-
2232
  // Insert new nodes if this is not a blank template.
2233
  if($template_id != 'blank') {
2234
-
2235
  // Get the template data.
2236
  $template_data = self::get_layout_data('published', $template_id);
2237
-
2238
  // Get new ids for the template nodes.
2239
  $template_data = self::generate_new_node_ids($template_data);
2240
-
2241
  // Get the existing layout data.
2242
  $layout_data = self::get_layout_data();
2243
-
2244
  // Reposition rows?
2245
  if($append) {
2246
-
2247
  foreach($template_data as $node_id => $node) {
2248
-
2249
  if($node->type == 'row') {
2250
  $template_data[$node_id]->position += $row_position;
2251
- }
2252
  }
2253
  }
2254
-
2255
  // Merge the data.
2256
  $data = array_merge($layout_data, $template_data);
2257
-
2258
  // Update the layout data.
2259
  self::update_layout_data($data);
2260
  }
2261
-
2262
  // Delete old asset cache.
2263
  self::delete_all_asset_cache();
2264
  }
2265
  }
2266
-
2267
  /**
2268
  * @method save_template
2269
- */
2270
  static public function save_template($settings)
2271
  {
2272
  // Get the layout data.
2273
  $data = self::get_layout_data();
2274
-
2275
  // Get the templates array.
2276
  $templates = self::get_templates();
2277
-
2278
  // Get new ids for the nodes.
2279
  $settings->nodes = self::generate_new_node_ids($data);
2280
 
2281
  // Insert the template into the templates array.
2282
  array_splice($templates, $settings->index, 0, array($settings));
2283
-
2284
  // Save the templates array.
2285
  self::save_templates($templates);
2286
  }
2287
-
2288
  /**
2289
  * @method update_template
2290
- */
2291
  static public function update_template($old_index, $settings)
2292
  {
2293
  // Get the templates array.
2294
  $templates = self::get_templates();
2295
-
2296
  // Remove the template from its old position.
2297
  $template = array_splice($templates, $old_index, 1);
2298
-
2299
  // Update the settings
2300
  foreach($settings as $key => $val) {
2301
  $template[0]->$key = $val;
2302
  }
2303
-
2304
- // Add the template to its new position.
2305
  array_splice($templates, $settings->index, 0, $template);
2306
-
2307
  // Save the templates array.
2308
  self::save_templates($templates);
2309
  }
2310
-
2311
  /**
2312
  * @method delete_template
2313
- */
2314
  static public function delete_template($index)
2315
  {
2316
  // Get the templates array.
2317
  $templates = self::get_templates();
2318
-
2319
  // Remove the template.
2320
  array_splice($templates, $index, 1);
2321
-
2322
  // Save the templates array.
2323
  self::save_templates($templates);
2324
  }
2325
-
2326
  /**
2327
  * @method apply_template
2328
- */
2329
  static public function apply_template($index = 0, $append = false)
2330
  {
2331
  $post_data = self::get_post_data();
@@ -2333,90 +2352,90 @@ final class FLBuilderModel {
2333
  $append = isset($post_data['append']) ? $post_data['append'] : $append;
2334
  $template = self::get_template($index);
2335
  $row_position = self::next_node_position('row');
2336
-
2337
  // Delete existing nodes?
2338
  if(!$append) {
2339
  self::delete_layout_data('draft');
2340
  }
2341
-
2342
  // Only move forward if we have template nodes.
2343
  if(isset($template->nodes)) {
2344
-
2345
  // Get new ids for the template nodes.
2346
  $template_data = self::generate_new_node_ids($template->nodes);
2347
-
2348
  // Get the existing layout data.
2349
  $layout_data = self::get_layout_data();
2350
-
2351
  // Reposition rows?
2352
  if($append) {
2353
-
2354
  foreach($template_data as $node_id => $node) {
2355
-
2356
  if($node->type == 'row') {
2357
  $template_data[$node_id]->position += $row_position;
2358
- }
2359
  }
2360
  }
2361
-
2362
  // Merge the data.
2363
  $data = array_merge($layout_data, $template_data);
2364
-
2365
  // Update the layout data.
2366
  self::update_layout_data($data);
2367
  }
2368
-
2369
  // Delete old asset cache.
2370
  self::delete_all_asset_cache();
2371
  }
2372
-
2373
  /**
2374
  * @method get_template
2375
- */
2376
  static public function get_template($index)
2377
  {
2378
  $templates = self::get_templates();
2379
-
2380
  return $templates[$index];
2381
  }
2382
 
2383
  /**
2384
  * @method get_templates
2385
- */
2386
  static public function get_templates()
2387
  {
2388
  $templates = unserialize(file_get_contents(FL_BUILDER_DIR . 'data/templates.dat'));
2389
-
2390
  return is_array($templates) ? $templates : array();
2391
  }
2392
-
2393
  /**
2394
  * @method save_templates
2395
- */
2396
  static public function save_templates($templates = array())
2397
  {
2398
  // Update the indexes for proper positioning.
2399
  $i = 0;
2400
  $updated = array();
2401
-
2402
  foreach($templates as $template) {
2403
  $template->index = $i;
2404
  $updated[$i] = $template;
2405
  $i++;
2406
  }
2407
-
2408
  // Save the templates array.
2409
  file_put_contents(FL_BUILDER_DIR . 'data/templates.dat', serialize($updated));
2410
  }
2411
-
2412
  /**
2413
  * @method get_branding
2414
- */
2415
  static public function get_branding()
2416
  {
2417
  $key = '_fl_builder_branding';
2418
  $default = __('Page Builder', 'fl-builder');
2419
-
2420
  // Get the value.
2421
  if(is_network_admin() || class_exists('FLBuilderMultisiteSettings')) {
2422
  $value = get_site_option($key);
@@ -2424,7 +2443,7 @@ final class FLBuilderModel {
2424
  else {
2425
  $value = get_option($key);
2426
  }
2427
-
2428
  // Return the value.
2429
  if(!$value) {
2430
  return $default;
@@ -2433,15 +2452,15 @@ final class FLBuilderModel {
2433
  return stripcslashes($value);
2434
  }
2435
  }
2436
-
2437
  /**
2438
  * @method get_branding_icon
2439
- */
2440
  static public function get_branding_icon()
2441
  {
2442
  $key = '_fl_builder_branding_icon';
2443
  $default = FL_BUILDER_URL . 'img/beaver.png';
2444
-
2445
  // Get the value.
2446
  if(is_network_admin() || class_exists('FLBuilderMultisiteSettings')) {
2447
  $value = get_site_option($key);
@@ -2449,7 +2468,7 @@ final class FLBuilderModel {
2449
  else {
2450
  $value = get_option($key);
2451
  }
2452
-
2453
  // Return the value.
2454
  if($value === false) {
2455
  return $default;
@@ -2458,15 +2477,15 @@ final class FLBuilderModel {
2458
  return $value;
2459
  }
2460
  }
2461
-
2462
  /**
2463
  * @method get_editing_capability
2464
- */
2465
  static public function get_editing_capability()
2466
  {
2467
  $key = '_fl_builder_editing_capability';
2468
  $default = 'edit_posts';
2469
-
2470
  // Get the value.
2471
  if(is_network_admin()) {
2472
  $value = get_site_option($key);
@@ -2478,7 +2497,7 @@ final class FLBuilderModel {
2478
  else {
2479
  $value = get_option($key);
2480
  }
2481
-
2482
  // Return the value.
2483
  if(!$value) {
2484
  return $default;
@@ -2487,17 +2506,17 @@ final class FLBuilderModel {
2487
  return $value;
2488
  }
2489
  }
2490
-
2491
  /**
2492
- * We don't delete _fl_builder_enabled, _fl_builder_data and _fl_builder_draft
2493
  * so layouts can be recovered should the plugin be installed again.
2494
  *
2495
  * @method uninstall_database
2496
- */
2497
  static public function uninstall_database()
2498
  {
2499
  if(current_user_can('delete_plugins')) {
2500
-
2501
  // Delete builder settings.
2502
  delete_option('_fl_builder_settings');
2503
  delete_option('_fl_builder_enabled_modules');
@@ -2513,13 +2532,13 @@ final class FLBuilderModel {
2513
  foreach($cache_files as $file) {
2514
  unlink($file);
2515
  }
2516
-
2517
  rmdir($cache_dir['path']);
2518
 
2519
  // Deactivate and delete the plugin.
2520
  deactivate_plugins(array('fl-builder/fl-builder.php'), false, is_network_admin());
2521
  delete_plugins(array('fl-builder/fl-builder.php'));
2522
-
2523
  // Redirect to the plugins page.
2524
  wp_redirect(admin_url('plugins.php?deleted=true&plugin_status=all&paged=1&s='));
2525
  }
11
  /**
12
  * @property $row_layouts
13
  * @type array
14
+ */
15
  static public $row_layouts = array(
16
  '1-col' => array(100),
17
  '2-cols' => array(50, 50),
24
  'left-right-sidebar' => array(25, 50, 25)
25
  );
26
 
27
+ /**
28
  * @property $settings_forms
29
  * @type array
30
  */
31
  static public $settings_forms = array();
32
 
33
+ /**
34
  * @property $modules
35
  * @type array
36
  */
37
  static public $modules = array();
38
+
39
+ /**
40
  * The last node id that was generated by the builder.
41
  * This is saved to ensure the next node id is unique.
42
  *
45
  * @private
46
  */
47
  static private $last_generated_node_id = null;
48
+
49
+ /**
50
  * Cached post data from either the $_POST array
51
  * or from the json decoded fl_builder_data post variable.
52
  *
55
  * @private
56
  */
57
  static private $post_data = null;
58
+
59
+ /**
60
  * An array of cached published layout data by post_id.
61
  *
62
  * @property $published_layout_data
64
  * @private
65
  */
66
  static private $published_layout_data = array();
67
+
68
+ /**
69
  * An array of cached draft layout data by post_id.
70
  *
71
  * @property $draft_layout_data
73
  * @private
74
  */
75
  static private $draft_layout_data = array();
76
+
77
  /**
78
+ * All database updates should be made through
79
  * this method for security.
80
  *
81
  * @method update
82
+ */
83
  static public function update($method = null, $params = array())
84
  {
85
  $post_data = self::get_post_data();
86
  $method = isset($post_data['method']) ? $post_data['method'] : $method;
87
  $post_id = self::get_post_id();
88
+
89
  // User can't edit this post.
90
  if($post_id && !current_user_can('edit_post', $post_id)) {
91
  return false;
92
  }
93
+
94
+ // Method doesn't exist.
95
  else if(!$method) {
96
  return false;
97
  }
98
+
99
  // Method exists.
100
  else if(method_exists('FLBuilderModel', $method)) {
101
+
102
  // Call the method.
103
  $result = call_user_func_array('FLBuilderModel::' . $method, $params);
104
+
105
+ // Render new assets.
106
  if(!isset($post_data['render_assets']) || $post_data['render_assets'] == 1) {
107
  FLBuilder::render_css();
108
  FLBuilder::render_js();
109
  }
110
+
111
  // Return the result.
112
  if(defined('DOING_AJAX')) {
113
  echo json_encode($result);
117
  return $result;
118
  }
119
  }
120
+
121
  return false;
122
  }
123
+
124
  /**
125
  * @method get_edit_url
126
  */
127
  static public function get_edit_url( $post_id = false )
128
  {
129
  global $post;
130
+
131
  if ( false === $post_id ) {
132
  $post_id = $post->ID;
133
  }
134
+
135
  $url = add_query_arg( 'fl_builder', '', get_permalink( $post_id ) );
136
 
137
  if ( class_exists( 'WPMinify' ) ) {
138
  $url = add_query_arg( 'wp-minify-off', '1', $url );
139
  }
140
+
141
  return set_url_scheme( $url );
142
  }
143
+
144
  /**
145
  * @method get_post_data
146
+ */
147
  static public function get_post_data()
148
  {
149
  if(!self::$post_data) {
150
+
151
  self::$post_data = array();
152
+
153
  if(isset($_POST['fl_builder_data'])) {
154
+
155
  $data = self::json_decode_settings($_POST['fl_builder_data']);
156
+
157
  foreach($data as $key => $val) {
158
  self::$post_data[$key] = $val;
159
  }
160
  }
161
  else if(isset($_POST)) {
162
+
163
  foreach($_POST as $key => $val) {
164
  self::$post_data[$key] = $val;
165
  }
166
  }
167
  }
168
+
169
  return self::$post_data;
170
  }
171
+
172
  /**
173
  * @method update_post_data
174
+ */
175
  static public function update_post_data($key, $value)
176
  {
177
  $post_data = self::get_post_data();
178
  $post_data[$key] = $value;
179
  self::$post_data = $post_data;
180
  }
181
+
182
  /**
183
  * @method get_post_types
184
+ */
185
  static public function get_post_types()
186
  {
187
  $key = '_fl_builder_post_types';
188
  $default = array('page', 'fl-builder-template');
189
+
190
  // Get the value.
191
  if(is_network_admin()) {
192
  $value = get_site_option($key);
198
  else {
199
  $value = get_option($key);
200
  }
201
+
202
  // Return the value.
203
  if(!$value) {
204
  return $default;
208
  return $value;
209
  }
210
  }
211
+
212
  /**
213
  * @method get_global_posts
214
+ */
215
  static public function get_global_posts()
216
  {
217
  return apply_filters('fl_builder_global_posts', array());
218
  }
219
+
220
  /**
221
  * @method get_post_id
222
+ */
223
  static public function get_post_id()
224
  {
225
  global $post;
226
+
227
  $post_data = self::get_post_data();
228
+
229
  if(isset($post_data['post_id'])) {
230
  return $post_data['post_id'];
231
  }
236
  return false;
237
  }
238
  }
239
+
240
  /**
241
  * @method is_ssl
242
  */
243
  static public function is_ssl()
244
+ {
245
  return is_ssl() || 0 === stripos( get_option( 'siteurl' ), 'https://' );
246
  }
247
+
248
  /**
249
+ * Checks to see if the builder can be enabled for
250
  * the current post in the main query.
251
  *
252
  * @method is_post_editable
253
  */
254
  static public function is_post_editable()
255
+ {
256
  global $wp_the_query;
257
+
258
  if ( is_singular() && isset( $wp_the_query->post ) ) {
259
+
260
  $post = $wp_the_query->post;
261
  $post_types = self::get_post_types();
262
  $user_can = current_user_can( 'edit_post', $post->ID );
263
+
264
  if ( in_array( $post->post_type, $post_types ) && $user_can ) {
265
  return true;
266
  }
267
  }
268
+
269
  return false;
270
  }
271
+
272
  /**
273
+ * Called by the heartbeat API. Lock the current post
274
  * so only the current user can edit it.
275
  *
276
  * @method lock_post
278
  static public function lock_post($response, $data)
279
  {
280
  if(isset($data['fl_builder_post_lock'])) {
281
+
282
  require_once ABSPATH . 'wp-admin/includes/post.php';
283
+
284
  wp_set_post_lock($data['fl_builder_post_lock']['post_id']);
285
  }
286
  }
287
+
288
  /**
289
  * Checks to see if the builder layout is enabled
290
  * for the current post.
291
  *
292
  * @method is_builder_enabled
293
+ */
294
  static public function is_builder_enabled()
295
  {
296
  if(!is_admin() && post_password_required()) {
300
  return true;
301
  }
302
  else {
303
+
304
  $post_types = self::get_post_types();
305
  $post = get_post(self::get_post_id());
306
+
307
  if($post && in_array($post->post_type, $post_types)) {
308
  return get_post_meta(self::get_post_id(), '_fl_builder_enabled', true);
309
  }
310
  }
311
+
312
  return false;
313
  }
314
+
315
  /**
316
+ * Checks to see if the builder UI is active for
317
  * the current post in the main query.
318
  *
319
  * @method is_builder_active
320
+ */
321
  static public function is_builder_active()
322
  {
323
  if ( self::is_post_editable() && ! is_admin() && ! post_password_required() ) {
324
+
325
  $post_data = self::get_post_data();
326
+
327
  if ( isset( $_GET['fl_builder'] ) ) {
328
  return true;
329
  }
331
  return true;
332
  }
333
  }
334
+
335
  return false;
336
  }
337
+
338
  /**
339
+ * Gets the status to use for working with nodes in
340
+ * the database. Returns draft if the builder is active,
341
+ * otherwise it returns published.
342
  *
343
  * @method get_node_status
344
+ */
345
  static public function get_node_status()
346
  {
347
  return self::is_builder_active() ? 'draft' : 'published';
348
  }
349
+
350
  /**
351
  * Enable the builder layout for the current post.
352
  *
353
  * @method enable
354
+ */
355
  static public function enable()
356
  {
357
  update_post_meta(self::get_post_id(), '_fl_builder_enabled', true);
358
  }
359
+
360
  /**
361
  * Disable the builder layout for the current post.
362
  *
363
  * @method disable
364
+ */
365
  static public function disable()
366
  {
367
  update_post_meta(self::get_post_id(), '_fl_builder_enabled', false);
368
  }
369
+
370
  /**
371
  * Enable the builder editor for the main post in the query.
372
  *
373
  * @method enable_editing
374
+ */
375
  static public function enable_editing()
376
  {
377
  global $wp_the_query;
378
+
379
  if ( self::is_post_editable() ) {
380
+
381
+ $post = $wp_the_query->post;
382
  $published = self::get_layout_data( 'published' );
383
  $draft = self::get_layout_data( 'draft' );
384
+
385
  // Migrate existing post content to the builder?
386
  if ( empty( $published ) && empty( $draft ) && ! empty( $post->post_content ) ) {
387
+
388
  $row = self::add_row();
389
  $cols = self::get_nodes( 'column' );
390
+ $col = array_shift( $cols );
391
  $settings = self::get_module_defaults( 'rich-text' );
392
  $settings->text = wpautop( $post->post_content );
393
+
394
+ self::add_module( 'rich-text', $settings, $col->node );
395
  }
396
  // Create a new draft?
397
  else if ( empty( $draft ) ) {
398
  self::update_layout_data( $published, 'draft', $post->ID );
399
  }
400
+
401
  // Delete old draft asset cache.
402
  self::delete_asset_cache();
403
+
404
  // Lock the post.
405
  require_once ABSPATH . 'wp-admin/includes/post.php';
406
  wp_set_post_lock( $post->ID );
407
  }
408
  }
409
+
410
  /**
411
  * @method get_cache_dir
412
+ */
413
  static public function get_cache_dir()
414
  {
415
  $wp_info = wp_upload_dir();
416
+
417
  // SSL workaround.
418
  if(self::is_ssl()) {
419
  $wp_info['baseurl'] = str_ireplace('http://', 'https://', $wp_info['baseurl']);
420
  }
421
+
422
  // Build the paths.
423
  $dir_info = array(
424
  'path' => $wp_info['basedir'] . '/fl-builder/',
425
  'url' => $wp_info['baseurl'] . '/fl-builder/'
426
  );
427
+
428
  // Create the cache dir if it doesn't exist.
429
  if(!file_exists($dir_info['path'])) {
430
  mkdir($dir_info['path']);
431
  }
432
+
433
  return $dir_info;
434
  }
435
+
436
  /**
437
  * @method get_asset_version
438
+ */
439
  static public function get_asset_version()
440
  {
441
  $post_id = self::get_post_id();
442
  $active = self::is_builder_active();
443
+
444
  if($active) {
445
  return md5(uniqid());
446
  }
448
  return md5(get_post_modified_time('U', false, $post_id));
449
  }
450
  }
451
+
452
  /**
453
  * @method get_asset_info
454
+ */
455
  static public function get_asset_info()
456
  {
457
  $post_data = self::get_post_data();
458
  $post_id = self::get_post_id();
459
  $cache_dir = self::get_cache_dir();
460
+
461
  if(isset($post_data['node_preview'])) {
462
+ $suffix = '-layout-preview';
463
  }
464
  else if(self::is_builder_active()) {
465
+ $suffix = '-layout-draft';
466
  }
467
  else {
468
  $suffix = '-layout';
469
  }
470
+
471
  $info = array(
472
  'css' => $cache_dir['path'] . $post_id . $suffix . '.css',
473
  'css_url' => $cache_dir['url'] . $post_id . $suffix . '.css',
474
  'js' => $cache_dir['path'] . $post_id . $suffix . '.js',
475
  'js_url' => $cache_dir['url'] . $post_id . $suffix . '.js'
476
  );
477
+
478
  return $info;
479
  }
480
+
481
  /**
482
  * @method delete_asset_cache
483
+ */
484
  static public function delete_asset_cache($type = 'all')
485
  {
486
  $info = self::get_asset_info();
487
+
488
  if(($type == 'css' || $type == 'all') && file_exists($info['css'])) {
489
  unlink($info['css']);
490
  }
492
  unlink($info['js']);
493
  }
494
  }
495
+
496
  /**
497
  * @method delete_all_asset_cache
498
+ */
499
  static public function delete_all_asset_cache($post_id = null)
500
  {
501
  $post_id = $post_id == null ? self::get_post_id() : $post_id;
502
  $cache_dir = self::get_cache_dir();
503
+
504
  if($post_id == null) {
505
  array_map('unlink', glob($cache_dir['path'] . '*.css'));
506
  array_map('unlink', glob($cache_dir['path'] . '*.js'));
507
  }
508
+ else {
509
  $css = $cache_dir['path'] . $post_id . '-layout.css';
510
  $css_draft = $cache_dir['path'] . $post_id . '-layout-draft.css';
511
  $css_preview = $cache_dir['path'] . $post_id . '-layout-preview.css';
512
  $js = $cache_dir['path'] . $post_id . '-layout.js';
513
  $js_draft = $cache_dir['path'] . $post_id . '-layout-draft.js';
514
  $js_preview = $cache_dir['path'] . $post_id . '-layout-preview.js';
515
+
516
  if(file_exists($css)) {
517
  unlink($css);
518
  }
533
  }
534
  }
535
  }
536
+
537
  /**
538
  * @method generate_node_id
539
+ */
540
  static public function generate_node_id()
541
  {
542
  $node_id = uniqid();
543
+
544
  if($node_id == self::$last_generated_node_id) {
545
  return self::generate_node_id();
546
  }
547
+
548
  self::$last_generated_node_id = $node_id;
549
+
550
  return $node_id;
551
  }
552
+
553
  /**
554
  * @method generate_new_node_ids
555
+ */
556
  static public function generate_new_node_ids($data)
557
  {
558
  $map = array();
559
  $nodes = array();
560
+
561
  // Map the new node ids to the old.
562
  foreach($data as $node_id => $node) {
563
  $map[$node_id] = self::generate_node_id();
564
  }
565
+
566
  // Replace the old node ids.
567
  foreach($data as $node_id => $node) {
568
+
569
  $nodes[$map[$node_id]] = $node;
570
  $nodes[$map[$node_id]]->node = $map[$node_id];
571
+
572
  if(!empty($node->parent) && isset($map[$node->parent])) {
573
  $nodes[$map[$node_id]]->parent = $map[$node->parent];
574
  }
575
  }
576
+
577
  return $nodes;
578
  }
579
+
580
  /**
581
  * @method get_node
582
+ */
583
  static public function get_node($node_id = null, $status = null)
584
  {
585
  $data = self::get_layout_data($status);
586
  $node = $data[$node_id];
587
+
588
  if(isset($node) && !empty($node->settings)) {
589
  $node->settings = self::get_node_settings($node);
590
  }
591
+
592
  return $node;
593
  }
594
+
595
  /**
596
  * @method get_child_nodes
597
+ */
598
  static public function get_child_nodes($parent_id, $status = null)
599
  {
600
  $data = self::get_layout_data($status);
601
  $nodes = array();
602
+
603
  foreach($data as $node_id => $node) {
604
+
605
  if($node->parent == $parent_id) {
606
  $nodes[$node_id] = $node;
607
  }
608
  }
609
+
610
  return $nodes;
611
  }
612
+
613
  /**
614
  * @method get_nodes
615
+ */
616
  static public function get_nodes($type = null, $parent_id = null, $status = null)
617
  {
618
  $nodes = array();
619
+
620
  // Get the layout data.
621
  if($parent_id == null) {
622
  $data = self::get_layout_data($status);
624
  else {
625
  $data = self::get_child_nodes($parent_id, $status);
626
  }
627
+
628
  // Return all nodes?
629
  if($type == null) {
630
  $nodes = $data;
631
  }
632
  // Return nodes of a certain type.
633
  else {
634
+
635
  foreach($data as $node_id => $node) {
636
+
637
  if($node->type == $type) {
638
  $nodes[$node_id] = $node;
639
  }
640
  }
641
+
642
  uasort($nodes, array('FLBuilderModel', 'order_nodes'));
643
  }
644
+
645
  // Merge default settings.
646
  foreach($nodes as $node_id => $node) {
647
+
648
  if(!empty($node->settings)) {
649
  $nodes[$node_id]->settings = self::get_node_settings($nodes[$node_id]);
650
  }
651
  }
652
+
653
  // Return the nodes.
654
  return $nodes;
655
  }
656
+
657
  /**
658
  * @method get_node_settings
659
+ */
660
  static public function get_node_settings($node)
661
  {
662
  $post_data = self::get_post_data();
663
+
664
  if(isset($post_data['node_preview']) && isset($post_data['node_id']) && $post_data['node_id'] == $node->node) {
665
+
666
  if(!isset($post_data['node_preview_processed_settings'])) {
667
  $settings = $post_data['node_preview'];
668
  $settings = (object)array_merge((array)$node->settings, (array)$settings);
677
  $defaults = self::get_node_defaults($node);
678
  $settings = (object)array_merge((array)$defaults, (array)$node->settings);
679
  }
680
+
681
  return $settings;
682
  }
683
+
684
  /**
685
  * @method process_node_settings
686
+ */
687
  static public function process_node_settings($node, $new_settings)
688
  {
689
  if($node->type == 'row') {
695
  if($node->type == 'module') {
696
  $new_settings = self::process_module_settings($node, $new_settings);
697
  }
698
+
699
  return $new_settings;
700
  }
701
+
702
  /**
703
  * @method get_node_defaults
704
+ */
705
  static public function get_node_defaults($node)
706
  {
707
  $defaults = array();
708
+
709
  if($node->type == 'row') {
710
  $defaults = self::get_row_defaults();
711
  }
715
  else if($node->type == 'module') {
716
  $defaults = self::get_module_defaults($node->settings->type);
717
  }
718
+
719
  return $defaults;
720
  }
721
+
722
  /**
723
  * @method order_nodes
724
+ */
725
  static public function order_nodes($a, $b)
726
  {
727
  return (int)$a->position - (int)$b->position;
729
 
730
  /**
731
  * @method count_nodes
732
+ */
733
  static public function count_nodes($type = 'row', $parent_id = null)
734
  {
735
  return count(self::get_nodes($type, $parent_id));
737
 
738
  /**
739
  * @method next_node_position
740
+ */
741
  static public function next_node_position($type = 'row', $parent_id = null)
742
  {
743
  $nodes = self::get_nodes($type, $parent_id);
744
  $last = array_pop($nodes);
745
+
746
  return $last ? $last->position + 1 : 0;
747
  }
748
+
749
  /**
750
  * @method delete_node
751
+ */
752
  static public function delete_node($node_id = null)
753
  {
754
  // Get the post data.
755
  $post_data = self::get_post_data();
756
+
757
  // Get the layout data.
758
  $data = self::get_layout_data();
759
+
760
  // Get the node id.
761
  if(!$node_id && isset($post_data['node_id'])) {
762
  $node_id = $post_data['node_id'];
763
  }
764
+
765
  // Return if the node doesn't exist.
766
  if(!isset($data[$node_id])) {
767
  return;
768
  }
769
+
770
  // Get the node.
771
+ $node = $data[$node_id];
772
+
773
  // Call the delete method if we're deleting a module.
774
  self::call_module_delete($node);
775
+
776
  // Delete the node.
777
  unset($data[$node_id]);
778
+
779
  // Update the layout data.
780
  self::update_layout_data($data);
781
+
782
  // Reorder existing nodes.
783
  self::reorder_nodes($node->type, $node->parent);
784
+
785
  // Delete the node's children.
786
  self::delete_child_nodes($node_id);
787
  }
788
+
789
  /**
790
  * @method delete_child_nodes
791
+ */
792
  static public function delete_child_nodes($parent_id = null)
793
  {
794
  $children = self::get_nodes(null, $parent_id);
795
+
796
  foreach($children as $child) {
797
  self::delete_node($child->node);
798
  }
799
  }
800
+
801
  /**
802
  * @method call_module_delete
803
+ */
804
  static public function call_module_delete($node)
805
  {
806
  if($node->type == 'module' && isset(self::$modules[$node->settings->type])) {
810
  $instance->delete();
811
  }
812
  }
813
+
814
  /**
815
  * @method reorder_node
816
+ */
817
  static public function reorder_node($node_id = null, $position = 0)
818
  {
819
  $post_data = self::get_post_data();
823
  $nodes = self::get_nodes($node->type, $node->parent);
824
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
825
  $new_pos = 0;
826
+
827
  // Make sure node positions start at zero.
828
  foreach($nodes as $node) {
829
  $data[$node->node]->position = $new_pos;
830
  $new_pos++;
831
  }
832
+
833
  // Get the node and remove it from the array.
834
  $node = $data[$node_id];
835
  $removed = array_splice($nodes, $node->position, 1);
836
  $new_pos = 0;
837
+
838
  // Reposition it in the array.
839
  array_splice($nodes, $position, 0, $removed);
840
 
843
  $data[$node->node]->position = $new_pos;
844
  $new_pos++;
845
  }
846
+
847
  // Update the layout data.
848
  self::update_layout_data($data);
849
  }
850
+
851
  /**
852
  * @method reorder_nodes
853
+ */
854
  static public function reorder_nodes($type = 'row', $parent_id = null)
855
  {
856
  $data = self::get_layout_data();
857
  $nodes = self::get_nodes($type, $parent_id);
858
  $pos = 0;
859
+
860
  foreach($nodes as $node_id => $node) {
861
  $data[$node_id]->position = $pos;
862
  $pos++;
863
  }
864
+
865
  self::update_layout_data($data);
866
  }
867
+
868
  /**
869
  * @method move_node
870
+ */
871
  static public function move_node($node_id = null, $new_parent_id = null, $position = 0)
872
+ {
873
  $post_data = self::get_post_data();
874
  $data = self::get_layout_data();
875
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
876
+ $new_parent_id = isset($post_data['new_parent']) ? $post_data['new_parent'] : $new_parent_id;
877
  $position = isset($post_data['position']) ? $post_data['position'] : $position;
878
  $new_parent = self::get_node($new_parent_id);
879
  $node = self::get_node($node_id);
880
+
881
  // Set the node's new parent.
882
  $data[$node_id]->parent = $new_parent->node;
883
+
884
  // Update the layout data.
885
  self::update_layout_data($data);
886
+
887
  // Set the node's new order.
888
  self::reorder_node($node_id, $position);
889
  }
890
+
891
  /**
892
  * @method add_row
893
+ */
894
  static public function add_row($cols = '1-col', $position = false)
895
  {
896
  $post_data = self::get_post_data();
899
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
900
  $settings = self::get_row_defaults();
901
  $row_node_id = self::generate_node_id();
902
+
903
  // Add the row.
904
  $data[$row_node_id] = new StdClass();
905
  $data[$row_node_id]->node = $row_node_id;
907
  $data[$row_node_id]->parent = null;
908
  $data[$row_node_id]->position = self::next_node_position('row');
909
  $data[$row_node_id]->settings = $settings;
910
+
911
  // Update the layout data.
912
  self::update_layout_data($data);
913
+
914
  // Position the row.
915
  if($position !== false) {
916
  self::reorder_node($row_node_id, $position);
917
  }
918
+
919
  // Add a column group.
920
  self::add_col_group($row_node_id, $cols, 0);
921
+
922
  // Return the updated row.
923
  return self::get_node($row_node_id);
924
  }
925
+
926
  /**
927
  * @method copy_row
928
+ */
929
  static public function copy_row($node_id = null)
930
  {
931
  $post_data = self::get_post_data();
935
  $new_row_id = self::generate_node_id();
936
  $col_groups = self::get_child_nodes($node_id);
937
  $new_nodes = array();
938
+
939
  // Add the new row.
940
  $layout_data[$new_row_id] = clone $row;
941
  $layout_data[$new_row_id]->settings = clone $row->settings;
942
+ $layout_data[$new_row_id]->node = $new_row_id;
943
+
944
  // Get the new child nodes.
945
  foreach($col_groups as $col_group_id => $col_group) {
946
+
947
  $new_nodes[$col_group_id] = clone $col_group;
948
  $cols = self::get_child_nodes($col_group_id);
949
+
950
  foreach($cols as $col_id => $col) {
951
+
952
  $new_nodes[$col_id] = clone $col;
953
  $new_nodes[$col_id]->settings = clone $col->settings;
954
  $modules = self::get_child_nodes($col_id);
955
+
956
  foreach($modules as $module_id => $module) {
957
  $new_nodes[$module_id] = clone $module;
958
  $new_nodes[$module_id]->settings = clone $module->settings;
959
  }
960
  }
961
  }
962
+
963
  // Generate new child ids.
964
  $new_nodes = self::generate_new_node_ids($new_nodes);
965
+
966
  // Set col group parent ids to the new row id.
967
  foreach($new_nodes as $child_node_id => $child) {
968
  if($child->type == 'column-group') {
969
  $new_nodes[$child_node_id]->parent = $new_row_id;
970
  }
971
  }
972
+
973
  // Merge the child data.
974
  $layout_data = array_merge($layout_data, $new_nodes);
975
+
976
  // Update the layout data.
977
  self::update_layout_data($layout_data);
978
+
979
  // Position the new row.
980
  self::reorder_node($new_row_id, $row->position + 1);
981
  }
982
+
983
+ /**
984
  * @method get_row_defaults
985
  */
986
  static public function get_row_defaults()
987
  {
988
  return self::get_settings_form_defaults(self::$settings_forms['row']['tabs']);
989
  }
990
+
991
  /**
992
  * @method process_row_settings
993
  */
994
+ static public function process_row_settings($row, $new_settings)
995
  {
996
  // Cache background video data.
997
  if($new_settings->bg_type == 'video') {
998
+
999
  // Video
1000
  $video = FLBuilderPhoto::get_attachment_data($new_settings->bg_video);
1001
+
1002
  if($video) {
1003
+
1004
  $parts = explode('.', $video->filename);
1005
  $video->extension = array_pop($parts);
1006
  $new_settings->bg_video_data = $video;
1007
+
1008
+ // Fallback
1009
  if(!empty($new_settings->bg_video_fallback_src)) {
1010
  $new_settings->bg_video_data->fallback = $new_settings->bg_video_fallback_src;
1011
  }
1014
  }
1015
  }
1016
  }
1017
+
1018
  // Cache background slideshow data.
1019
  if($new_settings->bg_type == 'slideshow' && $new_settings->ss_source == 'wordpress') {
1020
+
1021
  // Make sure we have a photo data object.
1022
  if(!isset($row->settings->ss_photo_data)) {
1023
  $row->settings->ss_photo_data = new StdClass();
1024
  }
1025
+
1026
  // Hijack the slideshow module to get WordPress photo data.
1027
  $ss = new FLSlideshowModule();
1028
  $ss->settings = new StdClass();
1030
  $ss->settings->photo_data = $row->settings->ss_photo_data;
1031
  $new_settings->ss_photo_data = $ss->get_wordpress_photos();
1032
  }
1033
+
1034
  return $new_settings;
1035
  }
1036
+
1037
  /**
1038
  * @method get_row_bg_data
1039
  */
1040
+ static public function get_row_bg_data($row)
1041
  {
1042
  $data = null;
1043
+
1044
  // Background Video
1045
  if($row->settings->bg_type == 'video' && isset($row->settings->bg_video_data)) {
1046
  $data = $row->settings->bg_video_data;
1047
  }
1048
+
1049
  // Background Slideshow
1050
  else if($row->settings->bg_type == 'slideshow' && isset($row->settings->ss_photo_data)) {
1051
  $data = $row->settings->ss_photo_data;
1052
  }
1053
+
1054
  return $data;
1055
  }
1056
+
1057
  /**
1058
  * @method get_row_slideshow_source
1059
  */
1060
+ static public function get_row_slideshow_source($row)
1061
  {
1062
  // Make sure we have a photo data object.
1063
  if(!isset($row->settings->ss_photo_data)) {
1064
  $row->settings->ss_photo_data = new StdClass();
1065
  }
1066
+
1067
  // Hijack the slideshow module to get the source.
1068
  $ss = new FLSlideshowModule();
1069
  $ss->settings = new StdClass();
1071
  $ss->settings->photos = $row->settings->ss_photos;
1072
  $ss->settings->feed_url = $row->settings->ss_feed_url;
1073
  $ss->settings->photo_data = $row->settings->ss_photo_data;
1074
+
1075
  // Return the slideshow source.
1076
  return $ss->get_source();
1077
  }
1078
+
1079
  /**
1080
  * @method add_col_group
1081
  */
1087
  $cols = isset($post_data['cols']) ? $post_data['cols'] : $cols;
1088
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1089
  $group_node_id = self::generate_node_id();
1090
+
1091
  // Add the column group.
1092
  $data[$group_node_id] = new StdClass();
1093
  $data[$group_node_id]->node = $group_node_id;
1095
  $data[$group_node_id]->parent = $node_id;
1096
  $data[$group_node_id]->position = self::next_node_position('column-group', $node_id);
1097
  $data[$group_node_id]->settings = '';
1098
+
1099
  // Add the columns.
1100
  for($i = 0; $i < count(self::$row_layouts[$cols]); $i++) {
1101
+
1102
  $col_node_id = self::generate_node_id();
1103
  $data[$col_node_id] = new StdClass();
1104
  $data[$col_node_id]->node = $col_node_id;
1108
  $data[$col_node_id]->settings = new StdClass();
1109
  $data[$col_node_id]->settings->size = self::$row_layouts[$cols][$i];
1110
  }
1111
+
1112
  // Update the layout data.
1113
  self::update_layout_data($data);
1114
+
1115
  // Position the column group.
1116
  if($position !== false) {
1117
  self::reorder_node($group_node_id, $position);
1118
  }
1119
+
1120
  // Return the column group.
1121
  return self::get_node($group_node_id);
1122
  }
1123
+
1124
  /**
1125
  * @method process_col_settings
1126
  */
1127
  static public function process_col_settings($col, $new_settings)
1128
  {
1129
  $new_settings->size = self::resize_col($col->node, $new_settings->size);
1130
+
1131
  return $new_settings;
1132
  }
1133
+
1134
  /**
1135
  * @method delete_col
1136
  */
1140
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
1141
  $new_width = isset($post_data['new_width']) ? $post_data['new_width'] : $new_width;
1142
  $col = self::get_node($node_id);
1143
+
1144
  // Delete the column.
1145
  self::delete_node($node_id);
1146
+
1147
  // Get the group
1148
  $group = self::get_node($col->parent);
1149
+
1150
  // Get the group children.
1151
  $cols = self::get_nodes('column', $group->node);
1152
+
1153
  // Delete the group if empty.
1154
  if(count($cols) === 0) {
1155
  self::delete_node($group->node);
1156
  }
1157
+
1158
  // Resize the remaining columns.
1159
  else {
1160
+
1161
  // Get the layout data.
1162
  $data = self::get_layout_data();
1163
+
1164
  // Loop through the columns.
1165
  foreach($cols as $col_id => $col) {
1166
+
1167
  // Set the new size.
1168
  $data[$col_id]->settings->size = round($new_width, 2);
1169
+ }
1170
+
1171
  // Update the layout data.
1172
  self::update_layout_data($data);
1173
  }
1174
  }
1175
+
1176
  /**
1177
  * @method resize_col
1178
  */
1188
  $num_cols = count($cols);
1189
  $min_width = 10;
1190
  $max_width = 100 - $min_width;
1191
+
1192
  // Don't resize if only one column or width isn't a number.
1193
  if($num_cols == 1 || !is_numeric($new_width)) {
1194
  return $col->settings->size;
1195
  }
1196
+
1197
  // Find the sibling column to absorb this resize.
1198
  if($pos === 0) {
1199
  $sibling = $cols[1];
1204
  else {
1205
  $sibling = $cols[$pos + 1];
1206
  }
1207
+
1208
  // Find other siblings.
1209
  foreach($cols as $c) {
1210
+
1211
  if($col->node == $c->node) {
1212
  continue;
1213
  }
1214
  if($sibling->node == $c->node) {
1215
  continue;
1216
  }
1217
+
1218
  $siblings[] = $c;
1219
  $max_width -= $c->settings->size;
1220
  $siblings_width += $c->settings->size;
1221
  }
1222
+
1223
  // Make sure the new width isn't too small.
1224
  if($new_width < $min_width) {
1225
  $new_width = $min_width;
1226
  }
1227
+
1228
  // Make sure the new width isn't too big.
1229
  if($new_width > $max_width) {
1230
  $new_width = $max_width;
1231
  }
1232
+
1233
  // Save new sibling size.
1234
  $data[$sibling->node]->settings->size = round(100 - $siblings_width - $new_width, 2);
1235
+
1236
  // Save new column size.
1237
  $data[$col->node]->settings->size = $new_width;
1238
+
1239
  // Update the layout data.
1240
  self::update_layout_data($data);
1241
+
1242
  // Return the new size.
1243
  return $new_width;
1244
  }
1245
+
1246
+ /**
1247
  * @method get_col_defaults
1248
  */
1249
  static public function get_col_defaults()
1250
  {
1251
  return self::get_settings_form_defaults(self::$settings_forms['col']['tabs']);
1252
  }
1253
+
1254
  /**
1255
  * @method load_modules
1256
+ */
1257
  static public function load_modules()
1258
  {
1259
  $path = FL_BUILDER_DIR . 'modules/';
1260
  $dir = dir($path);
1261
  $module_path = '';
1262
+
1263
  while(false !== ($entry = $dir->read())) {
1264
+
1265
  if(!is_dir($path . $entry) || $entry == '.' || $entry == '..') {
1266
  continue;
1267
  }
1268
+
1269
  // Paths to check.
1270
  $module_path = $entry . '/' . $entry . '.php';
1271
  $child_path = get_stylesheet_directory() . '/fl-builder/modules/' . $module_path;
1272
  $theme_path = get_template_directory() . '/fl-builder/modules/' . $module_path;
1273
  $builder_path = FL_BUILDER_DIR . 'modules/' . $module_path;
1274
+
1275
  // Check for the module class in a child theme.
1276
  if(is_child_theme() && file_exists($child_path)) {
1277
  require_once $child_path;
1278
  }
1279
+
1280
  // Check for the module class in a parent theme.
1281
  else if(file_exists($theme_path)) {
1282
  require_once $theme_path;
1283
  }
1284
+
1285
  // Check for the module class in the builder directory.
1286
  else if(file_exists($builder_path)) {
1287
  require_once $builder_path;
1288
  }
1289
  }
1290
  }
1291
+
1292
  /**
1293
  * @method register_module
1294
+ */
1295
  static public function register_module($class, $form)
1296
  {
1297
  if(class_exists($class)) {
1298
+
1299
  // Create a new instance of the module.
1300
  $instance = new $class();
1301
+
1302
  // Only register modules that are enabled.
1303
  if($instance->enabled) {
1304
 
1305
  // Save the instance in the modules array.
1306
  self::$modules[$instance->slug] = $instance;
1307
+
1308
  // Add the form to the instance.
1309
  self::$modules[$instance->slug]->form = $form;
1310
+ self::$modules[$instance->slug]->form['advanced'] = self::$settings_forms['module-advanced'];
1311
  }
1312
  }
1313
  }
1314
+
1315
  /**
1316
  * @method get_enabled_modules
1317
+ */
1318
  static public function get_enabled_modules()
1319
  {
1320
  $key = '_fl_builder_enabled_modules';
1321
  $default = array_keys(self::$modules);
1322
  $default[] = 'all';
1323
+
1324
  // Get the value.
1325
  if(is_network_admin()) {
1326
  $value = get_site_option($key);
1332
  else {
1333
  $value = get_option($key);
1334
  }
1335
+
1336
  // Return the value.
1337
  if(!$value || in_array('all', $value)) {
1338
  return $default;
1341
  return $value;
1342
  }
1343
  }
1344
+
1345
  /**
1346
  * @method get_categorized_modules
1347
+ */
1348
  static public function get_categorized_modules()
1349
  {
1350
  $enabled_modules = self::get_enabled_modules();
1351
+
1352
  $categories = array(
1353
  'Basic Modules' => array(),
1354
  'Advanced Modules' => array(),
1355
  'Other' => array()
1356
  );
1357
+
1358
  // Build the categories array.
1359
  foreach(self::$modules as $module) {
1360
+
1361
  if(!in_array($module->slug, $enabled_modules)) {
1362
  continue;
1363
  }
1365
  $categories[$module->category] = self::get_wp_widgets();
1366
  }
1367
  else if(isset($module->category)) {
1368
+
1369
  if(!isset($categories[$module->category])) {
1370
  $categories[$module->category] = array();
1371
  }
1372
+
1373
  $categories[$module->category][$module->name] = $module;
1374
  }
1375
  else {
1376
  $categories['Other'][$module->name] = $module;
1377
  }
1378
  }
1379
+
1380
  // Sort the modules.
1381
  foreach($categories as $title => $modules) {
1382
  if(count($categories[$title]) == 0) {
1386
  ksort($categories[$title]);
1387
  }
1388
  }
1389
+
1390
  // Return sorted categories.
1391
  return $categories;
1392
  }
1396
  */
1397
  static public function get_module($node_id)
1398
  {
1399
+ $module = self::get_node($node_id);
1400
+
1401
  if(isset(self::$modules[$module->settings->type])) {
1402
+
1403
  $class = get_class(self::$modules[$module->settings->type]);
1404
  $instance = new $class();
1405
  $instance->node = $module->node;
1408
  $instance->settings = $module->settings;
1409
  $instance->type = 'module';
1410
  $instance->form = self::$modules[$module->settings->type]->form;
1411
+
1412
  return $instance;
1413
  }
1414
+
1415
  return false;
1416
  }
1417
 
1423
  $modules = self::get_nodes('module', $col_id);
1424
  $instances = array();
1425
  $i = 0;
1426
+
1427
  foreach($modules as $module) {
1428
+
1429
  if(isset(self::$modules[$module->settings->type])) {
1430
+
1431
  $class = get_class(self::$modules[$module->settings->type]);
1432
  $instances[$i] = new $class();
1433
  $instances[$i]->node = $module->node;
1439
  $i++;
1440
  }
1441
  }
1442
+
1443
  return $instances;
1444
  }
1445
 
1450
  {
1451
  return self::get_modules();
1452
  }
1453
+
1454
  /**
1455
  * @method add_module
1456
  */
1464
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1465
  $module_node_id = self::generate_node_id();
1466
  $settings->type = $type;
1467
+
1468
  // Run module update method.
1469
  $class = get_class(self::$modules[$type]);
1470
  $instance = new $class();
1471
  $instance->settings = $settings;
1472
  $settings = $instance->update($settings);
1473
+
1474
  // Save the module.
1475
  $data[$module_node_id] = new StdClass();
1476
  $data[$module_node_id]->node = $module_node_id;
1478
  $data[$module_node_id]->parent = $parent_id;
1479
  $data[$module_node_id]->position = self::next_node_position('module', $parent_id);
1480
  $data[$module_node_id]->settings = $settings;
1481
+
1482
  // Update the layout data.
1483
  self::update_layout_data($data);
1484
+
1485
  // Position the module.
1486
  if($position !== false) {
1487
  self::reorder_node($module_node_id, $position);
1488
  }
1489
+
1490
  // Send back the inserted module.
1491
  return self::get_module($module_node_id);
1492
  }
1493
+
1494
  /**
1495
  * @method add_default_module
1496
  */
1503
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1504
  $settings = self::get_module_defaults($type);
1505
  $module_node_id = self::generate_node_id();
1506
+
1507
+ // Add a new row if we don't have a parent.
1508
  if(!$parent) {
1509
  $row = self::add_row('1-col', $position);
1510
  $col_groups = self::get_nodes('column-group', $row->node);
1514
  $parent_id = $parent->node;
1515
  $position = null;
1516
  }
1517
+
1518
  // Add a new column if the parent is a row.
1519
  else if($parent->type == 'row') {
1520
  $col_group = self::add_col_group($parent->node, '1-col', $position);
1523
  $parent_id = $parent->node;
1524
  $position = null;
1525
  }
1526
+
1527
  // Run module update method.
1528
  $class = get_class(self::$modules[$type]);
1529
  $instance = new $class();
1530
  $instance->settings = $settings;
1531
  $settings = $instance->update($settings);
1532
+
1533
  // Save the module.
1534
  $data = self::get_layout_data();
1535
  $data[$module_node_id] = new StdClass();
1538
  $data[$module_node_id]->parent = $parent_id;
1539
  $data[$module_node_id]->position = self::next_node_position('module', $parent_id);
1540
  $data[$module_node_id]->settings = $settings;
1541
+
1542
  // Update the layout data.
1543
  self::update_layout_data($data);
1544
+
1545
  // Position the module.
1546
  if($position !== false) {
1547
  self::reorder_node($module_node_id, $position);
1548
  }
1549
+
1550
  // Send back the inserted module.
1551
  return self::get_module($module_node_id);
1552
  }
1553
+
1554
  /**
1555
  * @method copy_module
1556
+ */
1557
  static public function copy_module($node_id = null)
1558
  {
1559
  $post_data = self::get_post_data();
1560
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
1561
  $module = self::get_module($node_id);
1562
+
1563
  return self::add_module($module->settings->type, $module->settings, $module->parent, $module->position + 1);
1564
  }
1565
+
1566
  /**
1567
  * @method process_module_settings
1568
+ */
1569
  static public function process_module_settings($module, $new_settings)
1570
  {
1571
  // Get a new node instance to work with.
1572
  $class = get_class(self::$modules[$module->settings->type]);
1573
  $instance = new $class();
1574
+
1575
  // Run node delete to clear any cache.
1576
  $instance->settings = $module->settings;
1577
  $instance->delete();
1578
+
1579
  // Run node update.
1580
  $instance->settings = $new_settings;
1581
  $new_settings = $instance->update($new_settings);
1582
+
1583
  return $new_settings;
1584
  }
1585
+
1586
  /**
1587
  * @method get_module_defaults
1588
  */
1589
  static public function get_module_defaults($type)
1590
  {
1591
  $defaults = new StdClass();
1592
+
1593
  if(isset(self::$modules[$type]->form)) {
1594
  $defaults = self::get_settings_form_defaults(self::$modules[$type]->form);
1595
  $defaults->type = $type;
1596
  }
1597
+
1598
  return $defaults;
1599
  }
1600
+
1601
  /**
1602
  * @method get_wp_widgets
1603
  */
1604
  static public function get_wp_widgets()
1605
  {
1606
  global $wp_widget_factory;
1607
+
1608
  $widgets = array();
1609
+
1610
  foreach($wp_widget_factory->widgets as $class => $widget) {
1611
  $widget->class = $class;
1612
  $widgets[$widget->name] = $widget;
1613
  }
1614
+
1615
  ksort($widgets);
1616
+
1617
  return $widgets;
1618
  }
1619
+
1620
  /**
1621
  * @method get_wp_sidebars
1622
  */
1623
  static public function get_wp_sidebars()
1624
  {
1625
  global $wp_registered_sidebars;
1626
+
1627
  $sidebars = array();
1628
+
1629
  foreach($wp_registered_sidebars as $sidebar) {
1630
  $sidebars[$sidebar['name']] = $sidebar;
1631
  }
1632
+
1633
  ksort($sidebars);
1634
+
1635
  return $sidebars;
1636
  }
1637
+
1638
  /**
1639
  * @method load_settings
1640
+ */
1641
  static public function load_settings()
1642
  {
1643
  require_once FL_BUILDER_DIR . 'includes/global-settings.php';
1646
  require_once FL_BUILDER_DIR . 'includes/module-settings.php';
1647
  require_once FL_BUILDER_DIR . 'includes/user-template-settings.php';
1648
  }
1649
+
1650
  /**
1651
  * @method register_settings_form
1652
+ */
1653
  static public function register_settings_form($id, $form)
1654
  {
1655
  self::$settings_forms[$id] = $form;
1656
  }
1657
+
1658
  /**
1659
  * @method get_settings_form_fields
1660
+ */
1661
  static public function get_settings_form_fields($form)
1662
  {
1663
  $fields = array();
1664
+
1665
  foreach ( $form as $tab ) {
1666
  if ( isset( $tab['sections'] ) ) {
1667
  foreach ( $tab['sections'] as $section ) {
1673
  }
1674
  }
1675
  }
1676
+
1677
  return $fields;
1678
  }
1679
+
1680
  /**
1681
  * @method get_settings_form_defaults
1682
  */
1683
  static public function get_settings_form_defaults($tabs = array())
1684
  {
1685
  $defaults = new StdClass();
1686
+
1687
  foreach($tabs as $tab) {
1688
  if(isset($tab['sections'])) {
1689
  foreach($tab['sections'] as $section) {
1690
  if(isset($section['fields'])) {
1691
  foreach($section['fields'] as $name => $field) {
1692
+
1693
  $default = isset($field['default']) ? $field['default'] : '';
1694
  $is_multiple = isset($field['multiple']) && $field['multiple'] === true;
1695
  $supports_multiple = $field['type'] != 'editor' && $field['type'] != 'photo';
1696
+
1697
  if($is_multiple && $supports_multiple) {
1698
  $defaults->$name = array($default);
1699
  }
1705
  }
1706
  }
1707
  }
1708
+
1709
  return $defaults;
1710
  }
1711
+
1712
  /**
1713
  * @method save_settings
1714
  */
1719
  $settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
1720
  $node = self::get_node($node_id);
1721
  $new_settings = (object)array_merge((array)$node->settings, (array)$settings);
1722
+
1723
  // Process the settings.
1724
  $new_settings = self::process_node_settings($node, $new_settings);
1725
 
1726
  // Save the settings to the node.
1727
  $data = self::get_layout_data();
1728
  $data[$node_id]->settings = $new_settings;
1729
+
1730
  // Update the layout data.
1731
  self::update_layout_data($data);
1732
+
1733
  // Return the new layout.
1734
  if(defined('DOING_AJAX')) {
1735
  FLBuilder::render_css();
1737
  FLBuilder::render_layout();
1738
  }
1739
  }
1740
+
1741
  /**
1742
  * @method json_decode_settings
1743
  */
1747
  $data = json_decode(stripcslashes($data));
1748
  }
1749
  if(is_object($data) || is_array($data)) {
1750
+
1751
  foreach($data as $key => $val) {
1752
+
1753
  $new_val = null;
1754
+
1755
  if(is_string($val)) {
1756
+
1757
  $decoded = json_decode(stripcslashes($val));
1758
+
1759
  if(is_object($decoded) || is_array($decoded)) {
1760
  $new_val = $decoded;
1761
  }
1763
  else if(is_object($val) || is_array($val)) {
1764
  $new_val = self::json_decode_settings($val);
1765
  }
1766
+
1767
  if($new_val) {
1768
+
1769
  if(is_object($data)) {
1770
  $data->{$key} = $new_val;
1771
  }
1775
  }
1776
  }
1777
  }
1778
+
1779
  return $data;
1780
  }
1781
+
1782
  /**
1783
  * @method default_settings
1784
  */
1790
  }
1791
  }
1792
  }
1793
+
1794
+ /**
1795
  * @method get_global_defaults
1796
  */
1797
  static public function get_global_defaults()
1798
  {
1799
  return self::get_settings_form_defaults(self::$settings_forms['global']['tabs']);
1800
  }
1801
+
1802
  /**
1803
  * @method get_global_settings
1804
  */
1806
  {
1807
  $settings = get_option('_fl_builder_settings');
1808
  $defaults = self::get_global_defaults();
1809
+
1810
  if(!$settings) {
1811
  $settings = new StdClass();
1812
  }
1813
+
1814
  return (object)array_merge((array)$defaults, (array)$settings);
1815
  }
1816
+
1817
  /**
1818
  * @method save_global_settings
1819
  */
1823
  $settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
1824
  $old_settings = self::get_global_settings();
1825
  $new_settings = (object)array_merge((array)$old_settings, (array)$settings);
1826
+
1827
  return update_option('_fl_builder_settings', $settings);
1828
  }
1829
 
1830
  /**
1831
  * @method duplicate_post
1832
+ */
1833
  static public function duplicate_post()
1834
  {
1835
  global $wpdb;
1836
+
1837
  $post_id = self::get_post_id();
1838
  $post = get_post($post_id);
1839
  $current_user = wp_get_current_user();
1840
+
1841
+ // Duplicate the post.
1842
+ $data = array(
1843
+ 'comment_status' => $post->comment_status,
1844
+ 'ping_status' => $post->ping_status,
1845
+ 'post_author' => $current_user->ID,
1846
+ 'post_content' => $post->post_content,
1847
+ 'post_excerpt' => $post->post_excerpt,
1848
+ 'post_name' => $post->post_name,
1849
+ 'post_parent' => $post->post_parent,
1850
+ 'post_password' => $post->post_password,
1851
+ 'post_status' => 'draft',
1852
+ 'post_title' => sprintf( _x( 'Copy of %s', '%s stands for post/page title.', 'fl-builder' ), $post->post_title ),
1853
+ 'post_type' => $post->post_type,
1854
+ 'to_ping' => $post->to_ping,
1855
+ 'menu_order' => $post->menu_order
1856
+ );
1857
+
1858
  // Get the new post id.
1859
  $new_post_id = wp_insert_post($data);
1860
+
1861
  // Duplicate post meta.
1862
  $post_meta = $wpdb->get_results("SELECT meta_key, meta_value FROM {$wpdb->postmeta} WHERE post_id= {$post_id}");
1863
+
1864
  if(count($post_meta) !== 0) {
1865
+
1866
  $sql = "INSERT INTO {$wpdb->postmeta} (post_id, meta_key, meta_value) ";
1867
+
1868
  foreach($post_meta as $meta_info) {
1869
  $meta_key = $meta_info->meta_key;
1870
  $meta_value = addslashes($meta_info->meta_value);
1871
  $sql_select[] = "SELECT {$new_post_id}, '{$meta_key}', '{$meta_value}'";
1872
  }
1873
+
1874
  $sql .= implode(" UNION ALL ", $sql_select);
1875
  $wpdb->query($sql);
1876
  }
1877
+
1878
  // Duplicate post terms.
1879
  $taxonomies = get_object_taxonomies($post->post_type);
1880
+
1881
  foreach($taxonomies as $taxonomy) {
1882
+
1883
  $post_terms = wp_get_object_terms($post_id, $taxonomy);
1884
+
1885
  for($i = 0; $i < count($post_terms); $i++) {
1886
  wp_set_object_terms($new_post_id, $post_terms[$i]->slug, $taxonomy, true);
1887
  }
1888
  }
1889
+
1890
  // Get the duplicated layout data.
1891
  $data = self::get_layout_data('published', $new_post_id);
1892
+
1893
  // Generate new node ids.
1894
  $data = self::generate_new_node_ids($data);
1895
+
1896
  // Save the duplicated layout data.
1897
  self::update_layout_data($data, 'published', $new_post_id);
1898
+
1899
  // Return the new post id.
1900
  return $new_post_id;
1901
  }
1902
+
1903
  /**
1904
  * @method delete_post
1905
+ */
1906
  static public function delete_post($post_id)
1907
  {
1908
  // Delete all published and draft data.
1909
  self::delete_layout_data('published', $post_id);
1910
  self::delete_layout_data('draft', $post_id);
1911
+
1912
  // Delete all css and js.
1913
  self::delete_all_asset_cache($post_id);
1914
  }
1915
+
1916
  /**
1917
  * @method save_revision
1918
+ */
1919
  static public function save_revision($post_id)
1920
  {
1921
  $parent_id = wp_is_post_revision($post_id);
1922
+
1923
  if($parent_id) {
1924
+
1925
  $parent = get_post($parent_id);
1926
  $data = self::get_layout_data('published', $parent->ID);
1927
+
1928
  if(!empty($data)) {
1929
  self::update_layout_data($data, 'published', $post_id);
1930
  }
1931
  }
1932
  }
1933
+
1934
  /**
1935
  * @method restore_revision
1936
+ */
1937
  static public function restore_revision($post_id, $revision_id)
1938
  {
1939
  $post = get_post($post_id);
1940
  $revision = get_post($revision_id);
1941
+
1942
  if($revision) {
1943
+
1944
  $data = self::get_layout_data('published', $revision->ID);
1945
+
1946
  if(!empty($data)) {
1947
  self::update_layout_data($data, 'published', $post_id);
1948
  self::update_layout_data($data, 'draft', $post_id);
1951
  self::delete_layout_data('published', $post_id);
1952
  self::delete_layout_data('draft', $post_id);
1953
  }
1954
+
1955
  self::delete_all_asset_cache();
1956
  }
1957
  }
1958
+
1959
  /**
1960
  * We use get_metadata here instead of get_post_meta,
1961
+ * to ensure revisions are queried accordingly.
1962
  *
1963
  * @method get_layout_data
1964
+ */
1965
  static public function get_layout_data($status = null, $post_id = null)
1966
  {
1967
  $post_id = !$post_id ? self::get_post_id() : $post_id;
1968
  $status = !$status ? self::get_node_status() : $status;
1969
+
1970
  // Get published data?
1971
  if($status == 'published') {
1972
  if(isset(self::$published_layout_data[$post_id])) {
1974
  }
1975
  else {
1976
  $data = get_metadata('post', $post_id, '_fl_builder_data', true);
1977
+ self::$published_layout_data[$post_id] = self::clean_layout_data( $data );
1978
  }
1979
  }
1980
  // Get draft data?
1984
  }
1985
  else {
1986
  $data = get_metadata('post', $post_id, '_fl_builder_draft', true);
1987
+ self::$draft_layout_data[$post_id] = self::clean_layout_data( $data );
1988
  }
1989
  }
1990
+
1991
  // Make sure we have an array.
1992
  if(empty($data)) {
1993
  $data = array();
1994
  }
1995
+
1996
  // Clone the layout data to ensure the cache remains intact.
1997
  foreach($data as $node_id => $node) {
1998
  $data[$node_id] = clone $node;
2001
  // Return the data.
2002
  return $data;
2003
  }
2004
+
2005
  /**
2006
  * We use update_metadata here instead of update_post_meta,
2007
+ * to ensure revisions are updated accordingly.
2008
+ *
2009
  * @method update_layout_data
2010
+ */
2011
  static public function update_layout_data($data, $status = null, $post_id = null)
2012
  {
2013
  $post_id = !$post_id ? self::get_post_id() : $post_id;
2014
  $status = !$status ? self::get_node_status() : $status;
2015
+ $data = self::clean_layout_data( $data );
2016
+
2017
  // Update published data?
2018
  if($status == 'published') {
2019
  update_metadata('post', $post_id, '_fl_builder_data', $data);
2025
  self::$draft_layout_data[$post_id] = $data;
2026
  }
2027
  }
2028
+
2029
  /**
2030
  * @method delete_layout_data
2031
+ */
2032
  static public function delete_layout_data($status = null, $post_id = null)
2033
  {
2034
  // Make sure we have a status to delete.
2035
  if(!$status) {
2036
  return;
2037
  }
2038
+
2039
  // Get the post id.
2040
  $post_id = !$post_id ? self::get_post_id() : $post_id;
2041
+
2042
  // Get the data to delete.
2043
  $data = self::get_layout_data($status, $post_id);
2044
+
2045
  // Delete the nodes.
2046
  foreach($data as $node) {
2047
  self::call_module_delete($node);
2048
  }
2049
+
2050
  // Update the layout data.
2051
  self::update_layout_data(array(), $status, $post_id);
2052
  }
2053
+
2054
+ /**
2055
+ * Ensures the integrity of layout data key/value pairs.
2056
+ *
2057
+ * @method clean_layout_data
2058
+ */
2059
+ static public function clean_layout_data( $data = array() )
2060
+ {
2061
+ $cleaned = array();
2062
+
2063
+ if ( is_array( $data ) ) {
2064
+ foreach ( $data as $node ) {
2065
+ $cleaned[$node->node] = $node;
2066
+ }
2067
+ }
2068
+
2069
+ return $cleaned;
2070
+ }
2071
 
2072
  /**
2073
  * @method clear_draft_layout
2074
+ */
2075
  static public function clear_draft_layout()
2076
  {
2077
  $post_id = self::get_post_id();
2078
  $data = self::get_layout_data('published', $post_id);
2079
+
2080
  // Delete the old draft layout.
2081
  self::delete_layout_data('draft');
2082
+
2083
  // Save the new draft layout.
2084
  self::update_layout_data($data, 'draft', $post_id);
2085
+
2086
+ // Clear the asset cache.
2087
  self::delete_all_asset_cache($post_id);
2088
  }
2089
+
2090
  /**
2091
  * @method save_layout
2092
+ */
2093
  static public function save_layout()
2094
  {
2095
  $editor_content = FLBuilder::render_editor_content();
2096
  $post_id = self::get_post_id();
2097
  $data = self::get_layout_data('draft', $post_id);
2098
+
2099
  // Delete the old published layout.
2100
  self::delete_layout_data('published', $post_id);
2101
+
2102
  // Save the new published layout.
2103
  self::update_layout_data($data, 'published', $post_id);
2104
+
2105
+ // Clear the asset cache.
2106
  self::delete_all_asset_cache($post_id);
2107
+
2108
  // Enable the builder to take over the post content.
2109
  self::enable();
2110
+
2111
  // Get the post status.
2112
  $post_status = get_post_status($post_id);
2113
  $post_status = strstr($post_status, 'draft') ? 'publish' : $post_status;
2114
+
2115
  // Update the post with stripped down content.
2116
  wp_update_post(array(
2117
  'ID' => self::get_post_id(),
2119
  'post_content' => $editor_content
2120
  ));
2121
  }
2122
+
2123
  /**
2124
  * Duplicates a layout for WPML when the copy from original
2125
  * button has been clicked.
2126
+ *
2127
  * @method duplicate_wpml_layout
2128
+ */
2129
  static public function duplicate_wpml_layout($original_post_id = null, $new_post_id = null)
2130
  {
2131
  $post_data = self::get_post_data();
2134
  $enabled = get_post_meta($original_post_id, '_fl_builder_enabled', true);
2135
  $published = self::get_layout_data('published', $original_post_id);
2136
  $draft = self::get_layout_data('draft', $original_post_id);
2137
+
2138
  $response = array(
2139
  'enabled' => false,
2140
  'has_layout' => false
2141
  );
2142
+
2143
  if(!empty($enabled)) {
2144
  update_post_meta($new_post_id, '_fl_builder_enabled', true);
2145
  $response['enabled'] = true;
2152
  self::update_layout_data($draft, 'draft', $new_post_id);
2153
  $response['has_layout'] = true;
2154
  }
2155
+
2156
  return $response;
2157
  }
2158
+
2159
  /**
2160
  * @method get_enabled_templates
2161
+ */
2162
  static public function get_enabled_templates()
2163
  {
2164
  $key = '_fl_builder_enabled_templates';
2165
  $default = 'enabled';
2166
+
2167
  // Get the value.
2168
  if(is_network_admin()) {
2169
  $value = get_site_option($key);
2175
  else {
2176
  $value = get_option($key);
2177
  }
2178
+
2179
  // Return the value.
2180
  if(!$value) {
2181
  return $default;
2184
  return $value;
2185
  }
2186
  }
2187
+
2188
  /**
2189
  * @method save_user_template
2190
+ */
2191
  static public function save_user_template()
2192
  {
2193
  $post_data = self::get_post_data();
2194
+
2195
  $post_id = wp_insert_post(array(
2196
  'post_title' => $post_data['template_name'],
2197
  'post_type' => 'fl-builder-template',
2199
  'ping_status' => 'closed',
2200
  'comment_status' => 'closed'
2201
  ));
2202
+
2203
  // Get the layout data to copy.
2204
  $data = self::get_layout_data();
2205
+
2206
  // Generate new node ids.
2207
  $data = self::generate_new_node_ids($data);
2208
+
2209
  // Save the template layout data.
2210
  self::update_layout_data($data, 'published', $post_id);
2211
  }
2212
+
2213
  /**
2214
  * @method get_user_templates
2215
+ */
2216
  static public function get_user_templates()
2217
  {
2218
  return get_posts('post_type=fl-builder-template&orderby=title&order=ASC&posts_per_page=-1');
2219
  }
2220
+
2221
  /**
2222
  * @method delete_user_template
2223
+ */
2224
  static public function delete_user_template($template_id = null)
2225
  {
2226
  $post_data = self::get_post_data();
2227
  $template_id = isset($post_data['template_id']) ? $post_data['template_id'] : $template_id;
2228
+
2229
  if(isset($template_id)) {
2230
  wp_delete_post($template_id, true);
2231
  }
2232
  }
2233
+
2234
  /**
2235
  * @method apply_user_template
2236
+ */
2237
  static public function apply_user_template($template_id = null, $append = false)
2238
  {
2239
  $post_data = self::get_post_data();
2242
  $row_position = self::next_node_position('row');
2243
 
2244
  if(isset($template_id)) {
2245
+
2246
  // Delete existing nodes?
2247
  if(!$append) {
2248
  self::delete_layout_data('draft');
2249
  }
2250
+
2251
  // Insert new nodes if this is not a blank template.
2252
  if($template_id != 'blank') {
2253
+
2254
  // Get the template data.
2255
  $template_data = self::get_layout_data('published', $template_id);
2256
+
2257
  // Get new ids for the template nodes.
2258
  $template_data = self::generate_new_node_ids($template_data);
2259
+
2260
  // Get the existing layout data.
2261
  $layout_data = self::get_layout_data();
2262
+
2263
  // Reposition rows?
2264
  if($append) {
2265
+
2266
  foreach($template_data as $node_id => $node) {
2267
+
2268
  if($node->type == 'row') {
2269
  $template_data[$node_id]->position += $row_position;
2270
+ }
2271
  }
2272
  }
2273
+
2274
  // Merge the data.
2275
  $data = array_merge($layout_data, $template_data);
2276
+
2277
  // Update the layout data.
2278
  self::update_layout_data($data);
2279
  }
2280
+
2281
  // Delete old asset cache.
2282
  self::delete_all_asset_cache();
2283
  }
2284
  }
2285
+
2286
  /**
2287
  * @method save_template
2288
+ */
2289
  static public function save_template($settings)
2290
  {
2291
  // Get the layout data.
2292
  $data = self::get_layout_data();
2293
+
2294
  // Get the templates array.
2295
  $templates = self::get_templates();
2296
+
2297
  // Get new ids for the nodes.
2298
  $settings->nodes = self::generate_new_node_ids($data);
2299
 
2300
  // Insert the template into the templates array.
2301
  array_splice($templates, $settings->index, 0, array($settings));
2302
+
2303
  // Save the templates array.
2304
  self::save_templates($templates);
2305
  }
2306
+
2307
  /**
2308
  * @method update_template
2309
+ */
2310
  static public function update_template($old_index, $settings)
2311
  {
2312
  // Get the templates array.
2313
  $templates = self::get_templates();
2314
+
2315
  // Remove the template from its old position.
2316
  $template = array_splice($templates, $old_index, 1);
2317
+
2318
  // Update the settings
2319
  foreach($settings as $key => $val) {
2320
  $template[0]->$key = $val;
2321
  }
2322
+
2323
+ // Add the template to its new position.
2324
  array_splice($templates, $settings->index, 0, $template);
2325
+
2326
  // Save the templates array.
2327
  self::save_templates($templates);
2328
  }
2329
+
2330
  /**
2331
  * @method delete_template
2332
+ */
2333
  static public function delete_template($index)
2334
  {
2335
  // Get the templates array.
2336
  $templates = self::get_templates();
2337
+
2338
  // Remove the template.
2339
  array_splice($templates, $index, 1);
2340
+
2341
  // Save the templates array.
2342
  self::save_templates($templates);
2343
  }
2344
+
2345
  /**
2346
  * @method apply_template
2347
+ */
2348
  static public function apply_template($index = 0, $append = false)
2349
  {
2350
  $post_data = self::get_post_data();
2352
  $append = isset($post_data['append']) ? $post_data['append'] : $append;
2353
  $template = self::get_template($index);
2354
  $row_position = self::next_node_position('row');
2355
+
2356
  // Delete existing nodes?
2357
  if(!$append) {
2358
  self::delete_layout_data('draft');
2359
  }
2360
+
2361
  // Only move forward if we have template nodes.
2362
  if(isset($template->nodes)) {
2363
+
2364
  // Get new ids for the template nodes.
2365
  $template_data = self::generate_new_node_ids($template->nodes);
2366
+
2367
  // Get the existing layout data.
2368
  $layout_data = self::get_layout_data();
2369
+
2370
  // Reposition rows?
2371
  if($append) {
2372
+
2373
  foreach($template_data as $node_id => $node) {
2374
+
2375
  if($node->type == 'row') {
2376
  $template_data[$node_id]->position += $row_position;
2377
+ }
2378
  }
2379
  }
2380
+
2381
  // Merge the data.
2382
  $data = array_merge($layout_data, $template_data);
2383
+
2384
  // Update the layout data.
2385
  self::update_layout_data($data);
2386
  }
2387
+
2388
  // Delete old asset cache.
2389
  self::delete_all_asset_cache();
2390
  }
2391
+
2392
  /**
2393
  * @method get_template
2394
+ */
2395
  static public function get_template($index)
2396
  {
2397
  $templates = self::get_templates();
2398
+
2399
  return $templates[$index];
2400
  }
2401
 
2402
  /**
2403
  * @method get_templates
2404
+ */
2405
  static public function get_templates()
2406
  {
2407
  $templates = unserialize(file_get_contents(FL_BUILDER_DIR . 'data/templates.dat'));
2408
+
2409
  return is_array($templates) ? $templates : array();
2410
  }
2411
+
2412
  /**
2413
  * @method save_templates
2414
+ */
2415
  static public function save_templates($templates = array())
2416
  {
2417
  // Update the indexes for proper positioning.
2418
  $i = 0;
2419
  $updated = array();
2420
+
2421
  foreach($templates as $template) {
2422
  $template->index = $i;
2423
  $updated[$i] = $template;
2424
  $i++;
2425
  }
2426
+
2427
  // Save the templates array.
2428
  file_put_contents(FL_BUILDER_DIR . 'data/templates.dat', serialize($updated));
2429
  }
2430
+
2431
  /**
2432
  * @method get_branding
2433
+ */
2434
  static public function get_branding()
2435
  {
2436
  $key = '_fl_builder_branding';
2437
  $default = __('Page Builder', 'fl-builder');
2438
+
2439
  // Get the value.
2440
  if(is_network_admin() || class_exists('FLBuilderMultisiteSettings')) {
2441
  $value = get_site_option($key);
2443
  else {
2444
  $value = get_option($key);
2445
  }
2446
+
2447
  // Return the value.
2448
  if(!$value) {
2449
  return $default;
2452
  return stripcslashes($value);
2453
  }
2454
  }
2455
+
2456
  /**
2457
  * @method get_branding_icon
2458
+ */
2459
  static public function get_branding_icon()
2460
  {
2461
  $key = '_fl_builder_branding_icon';
2462
  $default = FL_BUILDER_URL . 'img/beaver.png';
2463
+
2464
  // Get the value.
2465
  if(is_network_admin() || class_exists('FLBuilderMultisiteSettings')) {
2466
  $value = get_site_option($key);
2468
  else {
2469
  $value = get_option($key);
2470
  }
2471
+
2472
  // Return the value.
2473
  if($value === false) {
2474
  return $default;
2477
  return $value;
2478
  }
2479
  }
2480
+
2481
  /**
2482
  * @method get_editing_capability
2483
+ */
2484
  static public function get_editing_capability()
2485
  {
2486
  $key = '_fl_builder_editing_capability';
2487
  $default = 'edit_posts';
2488
+
2489
  // Get the value.
2490
  if(is_network_admin()) {
2491
  $value = get_site_option($key);
2497
  else {
2498
  $value = get_option($key);
2499
  }
2500
+
2501
  // Return the value.
2502
  if(!$value) {
2503
  return $default;
2506
  return $value;
2507
  }
2508
  }
2509
+
2510
  /**
2511
+ * We don't delete _fl_builder_enabled, _fl_builder_data and _fl_builder_draft
2512
  * so layouts can be recovered should the plugin be installed again.
2513
  *
2514
  * @method uninstall_database
2515
+ */
2516
  static public function uninstall_database()
2517
  {
2518
  if(current_user_can('delete_plugins')) {
2519
+
2520
  // Delete builder settings.
2521
  delete_option('_fl_builder_settings');
2522
  delete_option('_fl_builder_enabled_modules');
2532
  foreach($cache_files as $file) {
2533
  unlink($file);
2534
  }
2535
+
2536
  rmdir($cache_dir['path']);
2537
 
2538
  // Deactivate and delete the plugin.
2539
  deactivate_plugins(array('fl-builder/fl-builder.php'), false, is_network_admin());
2540
  delete_plugins(array('fl-builder/fl-builder.php'));
2541
+
2542
  // Redirect to the plugins page.
2543
  wp_redirect(admin_url('plugins.php?deleted=true&plugin_status=all&paged=1&s='));
2544
  }
classes/{FLBuilderModule.php → class-fl-builder-module.php} RENAMED
@@ -144,11 +144,14 @@ class FLBuilderModule {
144
  $this->enabled = isset($params['enabled']) ? $params['enabled'] : true;
145
  $this->editor_export = isset($params['editor_export']) ? $params['editor_export'] : true;
146
 
147
- if(stristr($dir_path, 'wp-content/themes')) {
148
- $parts = explode('/wp-content', str_ireplace($_SERVER['DOCUMENT_ROOT'], '', $dir_path));
149
- $folder = array_shift($parts);
150
- $this->url = str_ireplace($_SERVER['DOCUMENT_ROOT'] . $folder, site_url(), $dir_path) . '/';
 
 
151
  $this->dir = $dir_path . '/';
 
152
  }
153
  else {
154
  $this->url = isset($params['url']) ? $params['url'] : FL_BUILDER_URL . 'modules/' . $this->slug . '/';
144
  $this->enabled = isset($params['enabled']) ? $params['enabled'] : true;
145
  $this->editor_export = isset($params['editor_export']) ? $params['editor_export'] : true;
146
 
147
+ if(is_child_theme() && stristr($dir_path, get_stylesheet_directory())) {
148
+ $this->url = str_replace(get_stylesheet_directory(), get_stylesheet_directory_uri(), $dir_path) . '/';
149
+ $this->dir = $dir_path . '/';
150
+ }
151
+ else if(stristr($dir_path, get_template_directory())) {
152
+ $this->url = str_replace(get_template_directory(), get_template_directory_uri(), $dir_path) . '/';
153
  $this->dir = $dir_path . '/';
154
+ error_log($this->url);
155
  }
156
  else {
157
  $this->url = isset($params['url']) ? $params['url'] : FL_BUILDER_URL . 'modules/' . $this->slug . '/';
classes/{FLBuilderPhoto.php → class-fl-builder-photo.php} RENAMED
@@ -71,19 +71,19 @@ final class FLBuilderPhoto {
71
  */
72
  static public function get_src_options($selected, $photo)
73
  {
74
- $titles = array(
75
- 'full' => __('Full Size', 'fl-builder'),
76
- 'large' => __('Large', 'fl-builder'),
77
- 'medium' => __('Medium', 'fl-builder'),
78
- 'thumbnail' => __('Thumbnail', 'fl-builder')
79
- );
80
 
81
  foreach($photo->sizes as $key => $val) {
82
-
83
  if(!isset($titles[$key])) {
84
  $titles[$key] = ucwords(str_replace(array('_', '-'), ' ', $key));
85
  }
86
-
87
  echo '<option value="' . $val->url . '" ' . selected($selected, $val->url) . '>' . $titles[$key] . ' - ' . $val->width . ' x ' . $val->height . '</option>';
88
  }
89
  }
71
  */
72
  static public function get_src_options($selected, $photo)
73
  {
74
+ $titles = array(
75
+ 'full' => _x( 'Full Size', 'Image size.', 'fl-builder' ),
76
+ 'large' => _x( 'Large', 'Image size.', 'fl-builder' ),
77
+ 'medium' => _x( 'Medium', 'Image size.', 'fl-builder' ),
78
+ 'thumbnail' => _x( 'Thumbnail', 'Image size.', 'fl-builder' )
79
+ );
80
 
81
  foreach($photo->sizes as $key => $val) {
82
+
83
  if(!isset($titles[$key])) {
84
  $titles[$key] = ucwords(str_replace(array('_', '-'), ' ', $key));
85
  }
86
+
87
  echo '<option value="' . $val->url . '" ' . selected($selected, $val->url) . '>' . $titles[$key] . ' - ' . $val->width . ' x ' . $val->height . '</option>';
88
  }
89
  }
classes/{FLBuilderUpdate.php → class-fl-builder-update.php} RENAMED
File without changes
classes/{FLBuilderUtils.php → class-fl-builder-utils.php} RENAMED
File without changes
classes/{FLBuilder.php → class-fl-builder.php} RENAMED
@@ -8,28 +8,50 @@
8
  final class FLBuilder {
9
 
10
  /**
11
- * @method load_plugin_textdomain
12
- */
13
- static public function load_plugin_textdomain()
14
- {
15
- load_plugin_textdomain('fl-builder', false, basename(FL_BUILDER_DIR) . '/lang/');
16
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  /**
19
- * Custom ajax handeling since wp_ajax only works in the
20
  * admin and we need everything to work on the frontend.
21
  *
22
  * @method ajax
23
- */
24
  static public function ajax()
25
  {
26
  // Only run for logged in users.
27
  if(is_user_logged_in()) {
28
-
29
  // Get builder post data.
30
  $post_data = FLBuilderModel::get_post_data();
31
-
32
- // Get the action.
33
  if(!empty($_REQUEST['fl_action'])) {
34
  $action = $_REQUEST['fl_action'];
35
  }
@@ -49,21 +71,21 @@ final class FLBuilder {
49
 
50
  /**
51
  * @method init
52
- */
53
  static public function init()
54
- {
55
  // Enable editing if the builder is active.
56
  if(FLBuilderModel::is_builder_active()) {
57
-
58
  // Remove 3rd party editor buttons.
59
  remove_all_actions('media_buttons', 999999);
60
  remove_all_actions('media_buttons_context', 999999);
61
-
62
  // Get the post.
63
  require_once ABSPATH . 'wp-admin/includes/post.php';
64
  $post_id = FLBuilderModel::get_post_id();
65
-
66
- // Check to see if the post is locked.
67
  if(wp_check_post_lock($post_id) !== false) {
68
  header('Location: ' . admin_url('/post.php?post=' . $post_id . '&action=edit'));
69
  }
@@ -75,23 +97,23 @@ final class FLBuilder {
75
 
76
  /**
77
  * @method register_module
78
- */
79
  static public function register_module($class, $form)
80
  {
81
  FLBuilderModel::register_module($class, $form);
82
  }
83
-
84
  /**
85
  * @method register_settings_form
86
- */
87
  static public function register_settings_form($id, $form)
88
  {
89
  FLBuilderModel::register_settings_form($id, $form);
90
  }
91
-
92
  /**
93
  * @method no_cache_headers
94
- */
95
  static public function no_cache_headers()
96
  {
97
  if(isset($_GET['fl_builder'])) {
@@ -102,58 +124,58 @@ final class FLBuilder {
102
  header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
103
  }
104
  }
105
-
106
  /**
107
  * @method default_editor
108
- */
109
  static public function default_editor($type)
110
  {
111
  return FLBuilderModel::is_builder_active() ? 'tinymce' : $type;
112
  }
113
-
114
  /**
115
  * @method add_editor_css
116
- */
117
  static public function add_editor_css($mce_css)
118
  {
119
  if(FLBuilderModel::is_builder_active()) {
120
-
121
  if(!empty($mce_css)) {
122
  $mce_css .= ',';
123
  }
124
-
125
  $mce_css .= FL_BUILDER_URL . 'css/editor.css';
126
  }
127
-
128
  return $mce_css;
129
  }
130
-
131
  /**
132
  * @method editor_buttons_2
133
- */
134
  static public function editor_buttons_2($buttons)
135
  {
136
  if(FLBuilderModel::is_builder_active()) {
137
-
138
  array_shift($buttons);
139
  array_unshift($buttons, 'fontsizeselect');
140
  array_unshift($buttons, 'formatselect');
141
-
142
  if(($key = array_search('wp_help', $buttons)) !== false) {
143
- unset($buttons[$key]);
144
  }
145
  }
146
-
147
  return $buttons;
148
  }
149
-
150
  /**
151
  * @method editor_external_plugins
152
- */
153
  static public function editor_external_plugins($plugins)
154
  {
155
  if(FLBuilderModel::is_builder_active()) {
156
-
157
  $allowed = array(
158
  'anchor',
159
  'code',
@@ -168,46 +190,46 @@ final class FLBuilder {
168
  'advlist',
169
  'wptadv',
170
  );
171
-
172
  foreach($plugins as $key => $val) {
173
  if(!in_array($key, $allowed)) {
174
  unset($plugins[$key]);
175
  }
176
  }
177
  }
178
-
179
  return $plugins;
180
  }
181
-
182
  /**
183
  * @method include_jquery
184
- */
185
  static public function include_jquery()
186
  {
187
  if(FLBuilderModel::is_builder_enabled()) {
188
  include FL_BUILDER_DIR . 'includes/jquery.php';
189
  }
190
  }
191
-
192
  /**
193
  * @method layout_styles_scripts
194
- */
195
  static public function layout_styles_scripts()
196
  {
197
  global $wp_query;
198
  global $post;
199
-
200
  $ver = FL_BUILDER_VERSION;
201
  $css_url = FL_BUILDER_URL . 'css/';
202
  $js_url = FL_BUILDER_URL . 'js/';
203
-
204
  // Register additional CSS
205
  wp_register_style('font-awesome', $css_url . 'font-awesome.min.css', array(), $ver);
206
  wp_register_style('foundation-icons', $css_url . 'foundation-icons.css', array(), $ver);
207
  wp_register_style('fl-slideshow', $css_url . 'fl-slideshow.css', array(), $ver);
208
  wp_register_style('jquery-bxslider', $css_url . 'jquery.bxslider.css', array(), $ver);
209
  wp_register_style('jquery-magnificpopup', $css_url . 'jquery.magnificpopup.css', array(), $ver);
210
-
211
  // Register additional JS
212
  wp_register_script('fl-slideshow', $js_url . 'fl-slideshow.js', array('yui3'), $ver, true);
213
  wp_register_script('fl-gallery-grid', $js_url . 'fl-gallery-grid.js', array('jquery'), $ver, true);
@@ -219,50 +241,50 @@ final class FLBuilder {
219
  wp_register_script('jquery-mosaicflow', $js_url . 'jquery.mosaicflow.min.js', array('jquery'), $ver, true);
220
  wp_register_script('jquery-waypoints', $js_url . 'jquery.waypoints.min.js', array('jquery'), $ver, true);
221
  wp_register_script('jquery-wookmark', $js_url . 'jquery.wookmark.min.js', array('jquery'), $ver, true);
222
-
223
  // YUI 3 (Needed for the slideshow)
224
  if(FLBuilderModel::is_ssl()) {
225
  wp_register_script('yui3', 'https://yui-s.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
226
  }
227
  else {
228
- wp_register_script('yui3', 'http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
229
  }
230
-
231
  // Enqueue assets for posts in the main query.
232
  if ( isset( $wp_query->posts ) ) {
233
  foreach ( $wp_query->posts as $post ) {
234
  self::enqueue_layout_styles_scripts( $post->ID );
235
  }
236
  }
237
-
238
  // Enqueue assets for posts via the fl_builder_global_posts filter.
239
  $post_ids = FLBuilderModel::get_global_posts();
240
-
241
  if(count($post_ids) > 0) {
242
-
243
  $posts = get_posts(array('post__in' => $post_ids, 'post_type' => 'any'));
244
 
245
- foreach($posts as $post) {
246
  self::enqueue_layout_styles_scripts($post->ID);
247
  }
248
  }
249
-
250
  // Reset the main query.
251
  wp_reset_query();
252
  }
253
-
254
  /**
255
  * @method enqueue_layout_styles_scripts
256
- */
257
  static public function enqueue_layout_styles_scripts($post_id)
258
  {
259
  if(FLBuilderModel::is_builder_enabled()) {
260
-
261
  $rows = FLBuilderModel::get_nodes('row');
262
  $modules = FLBuilderModel::get_all_modules();
263
  $asset_info = FLBuilderModel::get_asset_info();
264
  $asset_ver = FLBuilderModel::get_asset_version();
265
-
266
  // Enqueue required row CSS and JS
267
  foreach($rows as $row) {
268
  if($row->settings->bg_type == 'slideshow') {
@@ -271,13 +293,13 @@ final class FLBuilder {
271
  wp_enqueue_style('fl-slideshow');
272
  }
273
  }
274
-
275
  // Enqueue required module CSS and JS
276
  foreach($modules as $module) {
277
-
278
  $module->enqueue_icon_styles();
279
  $module->enqueue_scripts();
280
-
281
  foreach($module->css as $handle => $props) {
282
  wp_enqueue_style($handle, $props[0], $props[1], $props[2], $props[3]);
283
  }
@@ -288,37 +310,37 @@ final class FLBuilder {
288
  wp_enqueue_script('jquery-waypoints');
289
  }
290
  }
291
-
292
  // Enqueue main CSS
293
  if(!file_exists($asset_info['css'])) {
294
  FLBuilder::render_css();
295
  }
296
-
297
  wp_enqueue_style('fl-builder-layout-' . $post_id, $asset_info['css_url'], array(), $asset_ver);
298
-
299
  // Enqueue main JS
300
  if(!file_exists($asset_info['js'])) {
301
  FLBuilder::render_js();
302
  }
303
-
304
  wp_enqueue_script('fl-builder-layout-' . $post_id, $asset_info['js_url'], array(), $asset_ver, true);
305
  }
306
  }
307
-
308
  /**
309
  * @method styles_scripts
310
- */
311
  static public function styles_scripts()
312
  {
313
  if(FLBuilderModel::is_builder_active()) {
314
-
315
  $ver = FL_BUILDER_VERSION;
316
  $css_url = FL_BUILDER_URL . 'css/';
317
  $js_url = FL_BUILDER_URL . 'js/';
318
-
319
  /* We have a custom version of sortable that fixes a bug. */
320
  wp_deregister_script('jquery-ui-sortable');
321
-
322
  /* Frontend builder styles */
323
  wp_enqueue_style('dashicons');
324
  wp_enqueue_style('font-awesome');
@@ -330,12 +352,12 @@ final class FLBuilder {
330
  wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
331
  wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
332
  wp_enqueue_style('fl-builder', $css_url . 'fl-builder.css', array(), $ver);
333
-
334
  /* RTL Support */
335
  if(is_rtl()) {
336
  wp_enqueue_style('fl-builder-rtl', $css_url . 'fl-builder-rtl.css', array(), $ver);
337
  }
338
-
339
  /* Frontend builder scripts */
340
  wp_enqueue_media();
341
  wp_enqueue_script('heartbeat');
@@ -360,17 +382,17 @@ final class FLBuilder {
360
  wp_enqueue_script('fl-stylesheet', $js_url . 'fl-stylesheet.js', array(), $ver, true);
361
  wp_enqueue_script('fl-builder', $js_url . 'fl-builder.js', array(), $ver, true);
362
  wp_enqueue_script('fl-builder-preview', $js_url . 'fl-builder-preview.js', array(), $ver, true);
363
-
364
  /* Core template settings */
365
  if(file_exists(FL_BUILDER_DIR . 'js/fl-template-settings.js')) {
366
  wp_enqueue_script('fl-template-settings', FL_BUILDER_URL . 'js/fl-template-settings.js', array(), $ver, true);
367
  }
368
-
369
  /* Additional module styles and scripts */
370
  foreach(FLBuilderModel::$modules as $module) {
371
-
372
  $module->enqueue_scripts();
373
-
374
  foreach($module->css as $handle => $props) {
375
  wp_enqueue_style($handle, $props[0], $props[1], $props[2], $props[3]);
376
  }
@@ -380,7 +402,7 @@ final class FLBuilder {
380
  }
381
  }
382
  }
383
-
384
  /**
385
  * @method body_class
386
  */
@@ -392,56 +414,56 @@ final class FLBuilder {
392
  if(FLBuilderModel::is_builder_active() && !current_user_can(FLBuilderModel::get_editing_capability())) {
393
  $classes[] = 'fl-builder-simple';
394
  }
395
-
396
  return $classes;
397
  }
398
-
399
  /**
400
  * @method admin_bar_menu
401
  */
402
  static public function admin_bar_menu($wp_admin_bar)
403
  {
404
  global $wp_the_query;
405
-
406
  if ( FLBuilderModel::is_post_editable() ) {
407
-
408
  $wp_admin_bar->add_node( array(
409
  'id' => 'fl-builder-frontend-edit-link',
410
- 'title' => '<style> #wp-admin-bar-fl-builder-frontend-edit-link .ab-icon:before { content: "\f116" !important; top: 2px; margin-right: 3px; } </style><span class="ab-icon"></span>' . __( FLBuilderModel::get_branding(), 'fl-builder' ),
411
  'href' => FLBuilderModel::get_edit_url( $wp_the_query->post->ID )
412
  ));
413
  }
414
  }
415
-
416
  /**
417
  * @method render_ui
418
  */
419
  static public function render_ui()
420
  {
421
  global $wp_the_query;
422
-
423
  if ( FLBuilderModel::is_builder_active() ) {
424
-
425
  $post_id = $wp_the_query->post->ID;
426
  $categories = FLBuilderModel::get_categorized_modules();
427
  $enabled_templates = FLBuilderModel::get_enabled_templates();
428
-
429
  include FL_BUILDER_DIR . 'includes/ui.php';
430
  include FL_BUILDER_DIR . 'includes/js-config.php';
431
  }
432
  }
433
-
434
  /**
435
- * Renders a preview of the layout to be
436
- * passed back to the builder via AJAX.
437
  *
438
  * @method render_preview
439
  */
440
  static public function render_preview($return = false)
441
- {
442
  self::render_css();
443
  self::render_js();
444
-
445
  if($return) {
446
  return self::render_layout(true);
447
  }
@@ -449,10 +471,10 @@ final class FLBuilder {
449
  self::render_layout();
450
  }
451
  }
452
-
453
  /**
454
  * Renders the layout to be passed back to
455
- * the builder via AJAX for an update.
456
  *
457
  * @method render_layout
458
  */
@@ -460,7 +482,7 @@ final class FLBuilder {
460
  {
461
  global $wp_scripts;
462
  global $wp_styles;
463
-
464
  // Deregister scripts and styles so we can capture those
465
  // registered by content functions such as shortcodes.
466
  if(isset($wp_scripts)) {
@@ -469,25 +491,25 @@ final class FLBuilder {
469
  if(isset($wp_styles)) {
470
  $wp_styles->queue = array();
471
  }
472
-
473
  // Enqueue jQuery again so it's not added by any
474
  // third party shortcodes or plugins.
475
  wp_enqueue_script('jquery');
476
-
477
  // Render the layout.
478
  ob_start();
479
  self::render_rows();
480
  $html = ob_get_clean();
481
-
482
  // Process shortcodes.
483
  ob_start();
484
  echo do_shortcode($html);
485
  $html = ob_get_clean();
486
-
487
- // Print scripts and styles registered by content
488
  // functions such as shortcodes.
489
  ob_start();
490
-
491
  if(isset($wp_scripts)) {
492
  $wp_scripts->done[] = 'jquery';
493
  wp_print_scripts($wp_scripts->queue);
@@ -495,20 +517,20 @@ final class FLBuilder {
495
  if(isset($wp_styles)) {
496
  wp_print_styles($wp_styles->queue);
497
  }
498
-
499
  $html = ob_get_clean() . $html;
500
-
501
- // Get the asset info.
502
  $asset_info = FLBuilderModel::get_asset_info();
503
  $asset_ver = FLBuilderModel::get_asset_version();
504
-
505
  // Build the response.
506
  $response = array(
507
  'html' => $html,
508
  'css' => $asset_info['css_url'] . '?ver=' . $asset_ver,
509
  'js' => $asset_info['js_url'] . '?ver=' . $asset_ver
510
  );
511
-
512
  // Return or echo the response.
513
  if($return) {
514
  return $response;
@@ -518,41 +540,41 @@ final class FLBuilder {
518
  die();
519
  }
520
  }
521
-
522
  /**
523
  * @method render_content
524
  */
525
  static public function render_content($content)
526
  {
527
  global $post;
528
-
529
  $post_id = FLBuilderModel::get_post_id();
530
  $enabled = FLBuilderModel::is_builder_enabled();
531
  $ajax = defined('DOING_AJAX');
532
  $global_posts = FLBuilderModel::get_global_posts();
533
  $is_global = in_array($post->ID, $global_posts);
534
  $in_loop = in_the_loop();
535
-
536
  if($enabled && !$ajax && ($is_global || $in_loop)) {
537
-
538
  // Remove the builder's render_content filter in case apply_filters
539
  // is called again by a widget, module or shortcode.
540
  remove_filter('the_content', 'FLBuilder::render_content');
541
-
542
  // Render the content.
543
  ob_start();
544
  echo '<div class="fl-builder-content fl-builder-content-' . $post_id . '">';
545
  self::render_rows();
546
  echo '</div>';
547
  $content = do_shortcode(ob_get_clean());
548
-
549
  // Reapply the builder's render_content filter.
550
  add_filter('the_content', 'FLBuilder::render_content');
551
  }
552
-
553
  return $content;
554
  }
555
-
556
  /**
557
  * @method render_editor_content
558
  */
@@ -564,52 +586,52 @@ final class FLBuilder {
564
 
565
  // Render the modules.
566
  foreach($rows as $row) {
567
-
568
  $groups = FLBuilderModel::get_nodes('column-group', $row->node);
569
-
570
  foreach($groups as $group) {
571
-
572
  $cols = FLBuilderModel::get_nodes('column', $group->node);
573
-
574
  foreach($cols as $col) {
575
-
576
  $modules = FLBuilderModel::get_modules($col->node);
577
-
578
  foreach($modules as $module) {
579
-
580
  if($module->editor_export) {
581
-
582
- // Don't crop photos to ensure media library photos are rendered.
583
  if($module->settings->type == 'photo') {
584
  $module->settings->crop = false;
585
  }
586
-
587
  FLBuilder::render_module_html($module->settings->type, $module->settings, $module);
588
  }
589
  }
590
  }
591
  }
592
  }
593
-
594
  // Get the content.
595
  $content = ob_get_clean();
596
-
597
  // Remove unnecessary tags.
598
  $content = preg_replace('/<\/?div[^>]*\>/i', '', $content);
599
  $content = preg_replace('/<\/?span[^>]*\>/i', '', $content);
600
  $content = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $content);
601
  $content = preg_replace('/<i [^>]*><\\/i[^>]*>/', '', $content);
602
  $content = preg_replace('/ class=".*?"/', '', $content);
603
-
604
  // Remove empty lines.
605
  $content = preg_replace('/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/', "\n", $content);
606
-
607
  return $content;
608
  }
609
-
610
  /**
611
  * @method render_settings
612
- */
613
  static public function render_settings($form = array(), $settings, $return = false)
614
  {
615
  $defaults = array(
@@ -618,13 +640,13 @@ final class FLBuilder {
618
  'title' => '',
619
  'tabs' => array()
620
  );
621
-
622
  $form = array_merge($defaults, $form);
623
-
624
  ob_start();
625
  include FL_BUILDER_DIR . 'includes/settings.php';
626
  $html = ob_get_clean();
627
-
628
  if(defined('DOING_AJAX') && !$return) {
629
  echo $html;
630
  die();
@@ -633,10 +655,10 @@ final class FLBuilder {
633
  return $html;
634
  }
635
  }
636
-
637
  /**
638
  * @method render_settings_field
639
- */
640
  static public function render_settings_field($name, $field, $settings)
641
  {
642
  $i = null;
@@ -644,15 +666,15 @@ final class FLBuilder {
644
  $supports_multiple = $field['type'] != 'editor' && $field['type'] != 'photo';
645
  $value = isset($settings->$name) ? $settings->$name : '';
646
  $preview = isset($field['preview']) ? json_encode($field['preview']) : json_encode(array('type' => 'refresh'));
647
-
648
  if($is_multiple && $supports_multiple) {
649
-
650
  $values = $value;
651
  $arr_name = $name;
652
  $name .= '[]';
653
-
654
  echo '<tbody class="fl-field fl-builder-field-multiples" data-type="form" data-preview=\'' . $preview . '\'>';
655
-
656
  for($i = 0; $i < count($values); $i++) {
657
  $value = $values[$i];
658
  echo '<tr class="fl-builder-field-multiple" data-field="'. $arr_name .'">';
@@ -664,17 +686,17 @@ final class FLBuilder {
664
  echo '</td>';
665
  echo '</tr>';
666
  }
667
-
668
  echo '<tr>';
669
-
670
  if(empty($field['label'])) {
671
  echo '<td colspan="2">';
672
  }
673
  else {
674
  echo '<td>&nbsp;</td><td>';
675
  }
676
-
677
- echo '<a href="javascript:void(0);" onclick="return false;" class="fl-builder-field-add fl-builder-button" data-field="'. $arr_name .'">'. __('Add', 'fl-builder') .' '. $field['label'] .'</a>';
678
  echo '</td>';
679
  echo '</tr>';
680
  echo '</tbody>';
@@ -685,17 +707,17 @@ final class FLBuilder {
685
  echo '</tr>';
686
  }
687
  }
688
-
689
  /**
690
  * @method render_settings_form
691
- */
692
  static public function render_settings_form($type = null, $settings = null)
693
  {
694
  $post_data = FLBuilderModel::get_post_data();
695
  $type = isset($post_data['type']) ? $post_data['type'] : $type;
696
  $settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
697
  $form = FLBuilderModel::$settings_forms[$type];
698
-
699
  if(isset($settings) && !empty($settings)) {
700
  $defaults = FLBuilderModel::get_settings_form_defaults($form['tabs']);
701
  $settings = (object)array_merge((array)$defaults, (array)$settings);
@@ -703,28 +725,28 @@ final class FLBuilder {
703
  else {
704
  $settings = FLBuilderModel::get_settings_form_defaults($form['tabs']);
705
  }
706
-
707
  self::render_settings(array(
708
  'title' => $form['title'],
709
  'tabs' => $form['tabs']
710
  ), $settings);
711
  }
712
-
713
  /**
714
  * @method render_global_settings
715
- */
716
  static public function render_global_settings()
717
  {
718
  $settings = FLBuilderModel::get_global_settings();
719
  $form = FLBuilderModel::$settings_forms['global'];
720
-
721
  self::render_settings(array(
722
  'class' => 'fl-builder-global-settings',
723
  'title' => $form['title'],
724
  'tabs' => $form['tabs']
725
  ), $settings);
726
  }
727
-
728
  /**
729
  * @method register_templates_post_type
730
  */
@@ -733,24 +755,24 @@ final class FLBuilder {
733
  if(FL_BUILDER_LITE === true) {
734
  return;
735
  }
736
-
737
  register_post_type('fl-builder-template', array(
738
  'public' => false,
739
  'labels' => array(
740
- 'name' => _x( 'Layout Templates', 'post type general name', 'fl-builder' ),
741
- 'singular_name' => _x( 'Layout Template', 'post type singular name', 'fl-builder' ),
742
- 'menu_name' => _x( 'Layout Templates', 'admin menu', 'fl-builder' ),
743
- 'name_admin_bar' => _x( 'Layout Template', 'add new on admin bar', 'fl-builder' ),
744
- 'add_new' => _x( 'Add New', 'book', 'fl-builder' ),
745
- 'add_new_item' => __( 'Add New Layout Template', 'fl-builder' ),
746
- 'new_item' => __( 'New Layout Template', 'fl-builder' ),
747
- 'edit_item' => __( 'Edit Layout Template', 'fl-builder' ),
748
- 'view_item' => __( 'View Layout Template', 'fl-builder' ),
749
- 'all_items' => __( 'All Layout Templates', 'fl-builder' ),
750
- 'search_items' => __( 'Search Layout Templates', 'fl-builder' ),
751
- 'parent_item_colon' => __( 'Parent Layout Templates:', 'fl-builder' ),
752
- 'not_found' => __( 'No layout templates found.', 'fl-builder' ),
753
- 'not_found_in_trash' => __( 'No layout templates found in Trash.', 'fl-builder' )
754
  ),
755
  'supports' => array(
756
  'title'
@@ -758,27 +780,27 @@ final class FLBuilder {
758
  'publicly_queryable' => true
759
  ));
760
  }
761
-
762
  /**
763
  * @method render_template_selector
764
  */
765
  static public function render_template_selector()
766
  {
767
  if(file_exists(FL_BUILDER_DIR . 'includes/template-selector.php')) {
768
-
769
  $enabled_templates = FLBuilderModel::get_enabled_templates();
770
  $user_templates = FLBuilderModel::get_user_templates();
771
  $templates = FLBuilderModel::get_templates();
772
  $num_rows = FLBuilderModel::count_nodes('row');
773
-
774
  include FL_BUILDER_DIR . 'includes/template-selector.php';
775
-
776
  if(defined('DOING_AJAX')) {
777
  die();
778
  }
779
  }
780
  }
781
-
782
  /**
783
  * @method render_user_template_settings
784
  */
@@ -786,7 +808,7 @@ final class FLBuilder {
786
  {
787
  $defaults = FLBuilderModel::get_settings_form_defaults(FLBuilderModel::$settings_forms['user_template']['tabs']);
788
  $form = FLBuilderModel::$settings_forms['user_template'];
789
-
790
  FLBuilder::render_settings(array(
791
  'class' => 'fl-builder-user-template-settings',
792
  'title' => $form['title'],
@@ -796,126 +818,126 @@ final class FLBuilder {
796
 
797
  /**
798
  * @method render_template
799
- */
800
- static public function render_template($template)
801
  {
802
  global $post;
803
-
804
  if($post && $post->post_type == 'fl-builder-template') {
805
-
806
  $page = locate_template(array('page.php'));
807
-
808
  if(!empty($page)) {
809
  return $page;
810
  }
811
  }
812
-
813
  return $template;
814
  }
815
-
816
  /**
817
  * @method render_icon_selector
818
- */
819
  static public function render_icon_selector()
820
  {
821
  $icon_sets = FLBuilderIcons::get_sets();
822
-
823
  include FL_BUILDER_DIR . 'includes/icon-selector.php';
824
-
825
  if(defined('DOING_AJAX')) {
826
  die();
827
  }
828
  }
829
-
830
  /**
831
  * @method render_rows
832
  */
833
  static public function render_rows()
834
  {
835
  $rows = FLBuilderModel::get_nodes('row');
836
-
837
  foreach($rows as $row) {
838
  self::render_row($row);
839
  }
840
  }
841
-
842
  /**
843
  * @method render_row
844
- */
845
  static public function render_row($row)
846
  {
847
  $groups = FLBuilderModel::get_nodes('column-group', $row->node);
848
-
849
  include FL_BUILDER_DIR . 'includes/row.php';
850
  }
851
-
852
  /**
853
  * @method render_new_row
854
- */
855
  static public function render_new_row($cols = '1-col', $position = false)
856
  {
857
  $post_data = FLBuilderModel::get_post_data();
858
  $cols = isset($post_data['cols']) ? $post_data['cols'] : $cols;
859
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
860
  $row = FLBuilderModel::add_row($cols, $position);
861
-
862
  self::render_row($row);
863
-
864
  if(defined('DOING_AJAX')) {
865
  die();
866
  }
867
  }
868
-
869
  /**
870
  * @method render_row_class
871
- */
872
  static public function render_row_class($row)
873
  {
874
  echo 'fl-row';
875
  echo ' fl-row-' . $row->settings->width . '-width';
876
  echo ' fl-row-bg-' . $row->settings->bg_type;
877
  echo ' fl-node-' . $row->node;
878
-
879
  if(!empty($row->settings->class)) {
880
- echo ' ' . $row->settings->class;
881
  }
882
  if(!empty($row->settings->responsive_display)) {
883
  echo ' fl-visible-' . $row->settings->responsive_display;
884
  }
885
  }
886
-
887
  /**
888
  * @method render_row_content_class
889
- */
890
  static public function render_row_content_class($row)
891
  {
892
  echo 'fl-row-content';
893
  echo ' fl-row-' . $row->settings->content_width . '-width';
894
  echo ' fl-node-content';
895
  }
896
-
897
  /**
898
  * @method render_row_data_attrs
899
- */
900
  static public function render_row_data_attrs($row)
901
  {
902
  echo ' data-node="' . $row->node . '"';
903
-
904
  if($row->settings->bg_type == 'parallax' && !empty($row->settings->bg_parallax_image_src)) {
905
  echo ' data-parallax-speed="' . $row->settings->bg_parallax_speed . '"';
906
  echo ' data-parallax-image="' . $row->settings->bg_parallax_image_src . '"';
907
  }
908
  }
909
-
910
  /**
911
  * @method render_row_bg
912
- */
913
  static public function render_row_bg($row)
914
  {
915
  if($row->settings->bg_type == 'video') {
916
-
917
  $vid_data = FLBuilderModel::get_row_bg_data($row);
918
-
919
  if($vid_data) {
920
  include FL_BUILDER_DIR . 'includes/row-video.php';
921
  }
@@ -924,10 +946,10 @@ final class FLBuilder {
924
  echo '<div class="fl-bg-slideshow"></div>';
925
  }
926
  }
927
-
928
  /**
929
  * @method render_row_settings
930
- */
931
  static public function render_row_settings($node_id = null)
932
  {
933
  $post_data = FLBuilderModel::get_post_data();
@@ -943,20 +965,20 @@ final class FLBuilder {
943
  'tabs' => $form['tabs']
944
  ), $settings);
945
  }
946
-
947
  /**
948
  * @method render_column_group
949
- */
950
  static public function render_column_group($group)
951
  {
952
  $cols = FLBuilderModel::get_nodes('column', $group->node);
953
-
954
  include FL_BUILDER_DIR . 'includes/column-group.php';
955
  }
956
-
957
  /**
958
  * @method render_new_column_group
959
- */
960
  static public function render_new_column_group($node_id = null, $cols = '1-col', $position = false)
961
  {
962
  $post_data = FLBuilderModel::get_post_data();
@@ -964,17 +986,17 @@ final class FLBuilder {
964
  $cols = isset($post_data['cols']) ? $post_data['cols'] : $cols;
965
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
966
  $group = FLBuilderModel::add_col_group($node_id, $cols, $position);
967
-
968
  self::render_column_group($group);
969
-
970
  if(defined('DOING_AJAX')) {
971
  die();
972
  }
973
  }
974
-
975
  /**
976
  * @method render_column_settings
977
- */
978
  static public function render_column_settings($node_id = null)
979
  {
980
  $post_data = FLBuilderModel::get_post_data();
@@ -990,24 +1012,24 @@ final class FLBuilder {
990
  'tabs' => $form['tabs']
991
  ), $settings);
992
  }
993
-
994
  /**
995
  * @method render_column_class
996
- */
997
  static public function render_column_class($col)
998
  {
999
  echo 'fl-col';
1000
-
1001
  if($col->settings->size <= 50) {
1002
  echo ' fl-col-small';
1003
  }
1004
  if(!empty($col->settings->class)) {
1005
- echo ' ' . $col->settings->class;
1006
  }
1007
  if(!empty($col->settings->responsive_display)) {
1008
  echo ' fl-visible-' . $col->settings->responsive_display;
1009
  }
1010
-
1011
  echo ' fl-node-' . $col->node;
1012
  }
1013
 
@@ -1017,16 +1039,16 @@ final class FLBuilder {
1017
  static public function render_modules($parent_id)
1018
  {
1019
  $modules = FLBuilderModel::get_modules($parent_id);
1020
-
1021
  foreach($modules as $module) {
1022
  $settings = $module->settings;
1023
  include FL_BUILDER_DIR . 'includes/module.php';
1024
  }
1025
  }
1026
-
1027
  /**
1028
  * @method render_new_module_settings
1029
- */
1030
  static public function render_new_module_settings($parent_id = null, $type = null, $position = false)
1031
  {
1032
  $post_data = FLBuilderModel::get_post_data();
@@ -1034,21 +1056,21 @@ final class FLBuilder {
1034
  $type = isset($post_data['type']) ? $post_data['type'] : $type;
1035
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1036
  $module = FLBuilderModel::add_default_module($parent_id, $type, $position);
1037
-
1038
  // Force the global parent id.
1039
  FLBuilderModel::update_post_data('parent_id', $module->parent);
1040
-
1041
  // Get the settings html.
1042
  ob_start();
1043
  self::render_module_settings($module->node, $module->type, $module->parent, true);
1044
  $settings = ob_get_clean();
1045
-
1046
  // Build the response.
1047
  $response = array(
1048
  'layout' => self::render_preview(true),
1049
  'settings' => $settings
1050
  );
1051
-
1052
  // Echo or return the response.
1053
  if(defined('DOING_AJAX')) {
1054
  echo json_encode($response);
@@ -1058,17 +1080,17 @@ final class FLBuilder {
1058
  return $response;
1059
  }
1060
  }
1061
-
1062
  /**
1063
  * @method render_module_settings
1064
- */
1065
  static public function render_module_settings($node_id = null, $type = null, $parent_id = null, $return = false)
1066
  {
1067
  $post_data = FLBuilderModel::get_post_data();
1068
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
1069
  $type = isset($post_data['type']) ? $post_data['type'] : $type;
1070
  $parent_id = isset($post_data['parent_id']) ? $post_data['parent_id'] : $parent_id;
1071
-
1072
  if($node_id) {
1073
  $module = FLBuilderModel::get_module($node_id);
1074
  $settings = $module->settings;
@@ -1077,22 +1099,22 @@ final class FLBuilder {
1077
  $module = FLBuilderModel::$modules[$type];
1078
  $settings = FLBuilderModel::get_module_defaults($type);
1079
  }
1080
-
1081
  if(file_exists($module->dir .'css/settings.css')) {
1082
  echo '<link class="fl-builder-settings-css" rel="stylesheet" href="'. $module->url .'css/settings.css" />';
1083
  }
1084
  if(file_exists($module->dir .'js/settings.js')) {
1085
  echo '<script class="fl-builder-settings-js" src="'. $module->url .'js/settings.js"></script>';
1086
  }
1087
-
1088
  echo self::render_settings(array(
1089
  'class' => 'fl-builder-module-settings fl-builder-'. $type .'-settings',
1090
  'attrs' => 'data-node="'. $node_id .'" data-parent="'. $parent_id .'" data-type="'. $type .'"',
1091
- 'title' => $module->name . __(' Settings', 'fl-builder'),
1092
  'tabs' => $module->form
1093
  ), $settings, $return);
1094
  }
1095
-
1096
  /**
1097
  * @method render_module_html
1098
  */
@@ -1102,29 +1124,29 @@ final class FLBuilder {
1102
  $defaults = FLBuilderModel::get_module_defaults($type);
1103
  $settings = FLBuilderUtils::array_to_object($settings);
1104
  $settings = (object)array_merge((array)$defaults, (array)$settings);
1105
-
1106
  // Module
1107
  $class = get_class(FLBuilderModel::$modules[$type]);
1108
- $module = new $class();
1109
  $module->settings = $settings;
1110
-
1111
  // Shorthand reference to the module's id.
1112
  $id = $module->node;
1113
-
1114
  include $module->dir .'includes/frontend.php';
1115
  }
1116
-
1117
  /**
1118
  * @method render_module_class
1119
- */
1120
  static public function render_module_class($module)
1121
  {
1122
  echo 'fl-module';
1123
  echo ' fl-module-' . $module->settings->type;
1124
  echo ' fl-node-' . $module->node;
1125
-
1126
  if(!empty($module->settings->class)) {
1127
- echo ' ' . $module->settings->class;
1128
  }
1129
  if(!empty($module->settings->responsive_display)) {
1130
  echo ' fl-visible-' . $module->settings->responsive_display;
@@ -1133,22 +1155,22 @@ final class FLBuilder {
1133
  echo ' fl-animation fl-' . $module->settings->animation;
1134
  }
1135
  }
1136
-
1137
  /**
1138
  * @method render_module_data_attrs
1139
- */
1140
  static public function render_module_data_attrs($module)
1141
  {
1142
  echo ' data-node="' . $module->node . '" ';
1143
  echo ' data-animation-delay="' . $module->settings->animation_delay . '" ';
1144
-
1145
  if(FLBuilderModel::is_builder_active()) {
1146
  echo ' data-parent="' . $module->parent . '" ';
1147
  echo ' data-type="' . $module->settings->type . '" ';
1148
  echo ' data-name="' . $module->name . '" ';
1149
  }
1150
  }
1151
-
1152
  /**
1153
  * @method render_module_css
1154
  */
@@ -1159,18 +1181,18 @@ final class FLBuilder {
1159
  $defaults = FLBuilderModel::get_module_defaults($type);
1160
  $settings = FLBuilderUtils::array_to_object($settings);
1161
  $settings = (object)array_merge((array)$defaults, (array)$settings);
1162
-
1163
  // Module
1164
  $class = get_class(FLBuilderModel::$modules[$type]);
1165
- $module = new $class();
1166
  $module->settings = $settings;
1167
-
1168
  include $module->dir .'includes/frontend.css.php';
1169
  }
1170
-
1171
  /**
1172
  * @method render_css
1173
- */
1174
  static public function render_css()
1175
  {
1176
  // Delete the old file.
@@ -1185,10 +1207,10 @@ final class FLBuilder {
1185
  $post_id = FLBuilderModel::get_post_id();
1186
  $post = get_post($post_id);
1187
  $compiled = array();
1188
-
1189
  // Global css
1190
  $css = file_get_contents(FL_BUILDER_DIR . '/css/fl-builder-layout.css');
1191
-
1192
  // Responsive css
1193
  if($global_settings->responsive_enabled) {
1194
  $css .= '@media (max-width: '. $global_settings->medium_breakpoint .'px) { ';
@@ -1198,74 +1220,74 @@ final class FLBuilder {
1198
  $css .= file_get_contents(FL_BUILDER_DIR . '/css/fl-builder-layout-responsive.css');
1199
  $css .= ' }';
1200
  }
1201
-
1202
  // Global row margins
1203
  $css .= '.fl-row-content-wrap { margin: '. $global_settings->row_margins .'px; }';
1204
-
1205
  // Global row padding
1206
  $css .= '.fl-row-content-wrap { padding: '. $global_settings->row_padding .'px; }';
1207
-
1208
  // Global row width
1209
  $css .= '.fl-row-fixed-width { max-width: '. $global_settings->row_width .'px; }';
1210
-
1211
  // Global row content width
1212
  $css .= '.fl-row-content-wrap.fl-row-fixed-width .fl-row-content { max-width: '. $global_settings->row_width .'px; }';
1213
-
1214
  // Row instances
1215
  foreach($rows as $row) {
1216
-
1217
  // Instance row css
1218
  ob_start();
1219
  include FL_BUILDER_DIR . 'includes/row-css.php';
1220
  $css .= ob_get_clean();
1221
-
1222
  // Instance row margins
1223
  $css .= self::render_row_margins($row);
1224
-
1225
  // Instance row padding
1226
  $css .= self::render_row_padding($row);
1227
-
1228
  // Instance row bg positions
1229
  $css .= self::render_row_bg_positions($row);
1230
  $css .= self::render_responsive_row_bg_positions($row);
1231
  }
1232
-
1233
  // Column instances
1234
  foreach($cols as $col) {
1235
-
1236
  // Instance column css
1237
  ob_start();
1238
  include FL_BUILDER_DIR . 'includes/column-css.php';
1239
  $css .= ob_get_clean();
1240
-
1241
  // Instance column margins
1242
  $css .= self::render_column_margins($col);
1243
-
1244
  // Instance column padding
1245
  $css .= self::render_column_padding($col);
1246
  }
1247
-
1248
  // Global module margins
1249
  $css .= '.fl-module-content { margin: '. $global_settings->module_margins .'px; }';
1250
-
1251
  // Modules
1252
  foreach($modules as $module) {
1253
-
1254
  // Global module css
1255
  $file = $module->dir . 'css/frontend.css';
1256
  $file_responsive = $module->dir . 'css/frontend.responsive.css';
1257
-
1258
  // Only include global module css that hasn't been included yet.
1259
  if(!in_array($module->settings->type, $compiled)) {
1260
-
1261
  // Add to the compiled array so we don't include it again.
1262
  $compiled[] = $module->settings->type;
1263
-
1264
  // Get the standard module css.
1265
  if(file_exists($file)) {
1266
  $css .= file_get_contents($file);
1267
  }
1268
-
1269
  // Get the responsive module css.
1270
  if($global_settings->responsive_enabled && file_exists($file_responsive)) {
1271
  $css .= '@media (max-width: '. $global_settings->responsive_breakpoint .'px) { ';
@@ -1273,28 +1295,28 @@ final class FLBuilder {
1273
  $css .= ' }';
1274
  }
1275
  }
1276
-
1277
  // Instance module css
1278
  $file = $module->dir . 'includes/frontend.css.php';
1279
  $settings = $module->settings;
1280
  $id = $module->node;
1281
-
1282
  if(file_exists($file)) {
1283
  ob_start();
1284
  include $file;
1285
  $css .= ob_get_clean();
1286
  }
1287
-
1288
  // Instance module margins
1289
  $css .= self::render_module_margins($module);
1290
  $css .= self::render_responsive_module_margins($module);
1291
  }
1292
-
1293
  // Default page heading
1294
  if($post && !$global_settings->show_default_heading && ($post->post_type == 'page' || $post->post_type == 'fl-builder-template')) {
1295
  $css .= $global_settings->default_heading_selector . ' { display:none; }';
1296
  }
1297
-
1298
  // Save the css
1299
  if(!empty($css)) {
1300
  $css = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css);
@@ -1302,16 +1324,16 @@ final class FLBuilder {
1302
  file_put_contents($asset_info['css'], $css);
1303
  }
1304
  }
1305
-
1306
  /**
1307
  * @method render_row_margins
1308
- */
1309
  static public function render_row_margins($row)
1310
  {
1311
  $settings = $row->settings;
1312
  $margins = '';
1313
  $css = '';
1314
-
1315
  if($settings->margin_top != '') {
1316
  $margins .= 'margin-top:' . $settings->margin_top . 'px;';
1317
  }
@@ -1327,19 +1349,19 @@ final class FLBuilder {
1327
  if($margins != '') {
1328
  $css .= '.fl-node-' . $row->node . ' .fl-row-content-wrap {' . $margins . '}';
1329
  }
1330
-
1331
  return $css;
1332
  }
1333
-
1334
  /**
1335
  * @method render_row_padding
1336
- */
1337
  static public function render_row_padding($row)
1338
  {
1339
  $settings = $row->settings;
1340
  $padding = '';
1341
  $css = '';
1342
-
1343
  if($settings->padding_top != '') {
1344
  $padding .= 'padding-top:' . $settings->padding_top . 'px;';
1345
  }
@@ -1355,19 +1377,19 @@ final class FLBuilder {
1355
  if($padding != '') {
1356
  $css = '.fl-node-' . $row->node . ' .fl-row-content-wrap {' . $padding . '}';
1357
  }
1358
-
1359
  return $css;
1360
  }
1361
-
1362
  /**
1363
  * @method render_row_bg_positions
1364
- */
1365
  static public function render_row_bg_positions($row)
1366
  {
1367
  $settings = $row->settings;
1368
  $positions = '';
1369
  $css = '';
1370
-
1371
  if($settings->margin_top != '' || $settings->border_top != '') {
1372
  $positions .= 'top:' . ($settings->margin_top + $settings->border_top) . 'px;';
1373
  }
@@ -1384,20 +1406,20 @@ final class FLBuilder {
1384
  $css .= '.fl-node-' . $row->node . ' .fl-bg-video {' . $positions . '}';
1385
  $css .= '.fl-node-' . $row->node . ' .fl-bg-slideshow {' . $positions . '}';
1386
  }
1387
-
1388
  return $css;
1389
  }
1390
-
1391
  /**
1392
  * @method render_responsive_row_bg_positions
1393
- */
1394
  static public function render_responsive_row_bg_positions($row)
1395
  {
1396
  $global_settings = FLBuilderModel::get_global_settings();
1397
  $settings = $row->settings;
1398
  $positions = '';
1399
  $css = '';
1400
-
1401
  if($settings->border_top != '') {
1402
  $positions .= 'top:' . $settings->border_top . 'px;';
1403
  }
@@ -1410,19 +1432,19 @@ final class FLBuilder {
1410
  $css .= '.fl-node-' . $row->node . ' .fl-bg-slideshow {' . $positions . '}';
1411
  $css .= ' }';
1412
  }
1413
-
1414
  return $css;
1415
  }
1416
-
1417
  /**
1418
  * @method render_column_margins
1419
- */
1420
  static public function render_column_margins($col)
1421
  {
1422
  $settings = $col->settings;
1423
  $margins = '';
1424
  $css = '';
1425
-
1426
  if($settings->margin_top != '') {
1427
  $margins .= 'margin-top:' . $settings->margin_top . 'px;';
1428
  }
@@ -1438,19 +1460,19 @@ final class FLBuilder {
1438
  if($margins != '') {
1439
  $css .= '.fl-node-' . $col->node . ' .fl-col-content {' . $margins . '}';
1440
  }
1441
-
1442
  return $css;
1443
  }
1444
-
1445
  /**
1446
  * @method render_column_padding
1447
- */
1448
  static public function render_column_padding($col)
1449
  {
1450
  $settings = $col->settings;
1451
  $padding = '';
1452
  $css = '';
1453
-
1454
  if($settings->padding_top != '') {
1455
  $padding .= 'padding-top:' . $settings->padding_top . 'px;';
1456
  }
@@ -1466,19 +1488,19 @@ final class FLBuilder {
1466
  if($padding != '') {
1467
  $css = '.fl-node-' . $col->node . ' .fl-col-content {' . $padding . '}';
1468
  }
1469
-
1470
  return $css;
1471
  }
1472
-
1473
  /**
1474
  * @method render_module_margins
1475
- */
1476
  static public function render_module_margins($module)
1477
  {
1478
  $settings = $module->settings;
1479
  $margins = '';
1480
  $css = '';
1481
-
1482
  if($settings->margin_top != '') {
1483
  $margins .= 'margin-top:' . $settings->margin_top . 'px;';
1484
  }
@@ -1494,13 +1516,13 @@ final class FLBuilder {
1494
  if($margins != '') {
1495
  $css = '.fl-node-' . $module->node . ' .fl-module-content {' . $margins . '}';
1496
  }
1497
-
1498
  return $css;
1499
  }
1500
-
1501
  /**
1502
  * @method render_responsive_module_margins
1503
- */
1504
  static public function render_responsive_module_margins($module)
1505
  {
1506
  $global_settings = FLBuilderModel::get_global_settings();
@@ -1508,7 +1530,7 @@ final class FLBuilder {
1508
  $settings = $module->settings;
1509
  $margins = '';
1510
  $css = '';
1511
-
1512
  if($settings->margin_top != '' && ($settings->margin_top > $default || $settings->margin_top < 0)) {
1513
  $margins .= 'margin-top:' . $default . 'px;';
1514
  }
@@ -1526,13 +1548,13 @@ final class FLBuilder {
1526
  $css .= '.fl-node-' . $module->node . ' .fl-module-content {' . $margins . '}';
1527
  $css .= ' }';
1528
  }
1529
-
1530
  return $css;
1531
  }
1532
-
1533
  /**
1534
  * @method render_js
1535
- */
1536
  static public function render_js()
1537
  {
1538
  // Delete the old file.
@@ -1545,71 +1567,71 @@ final class FLBuilder {
1545
  $asset_info = FLBuilderModel::get_asset_info();
1546
  $compiled = array();
1547
  $js = '';
1548
-
1549
  // Main JS
1550
  $js .= file_get_contents(FL_BUILDER_DIR . 'js/fl-builder-layout.js');
1551
-
1552
  // Instance Row JS
1553
  foreach($rows as $row) {
1554
-
1555
  $settings = $row->settings;
1556
  $id = $row->node;
1557
-
1558
  ob_start();
1559
  include FL_BUILDER_DIR . 'includes/row-js.php';
1560
  $js .= ob_get_clean();
1561
  }
1562
-
1563
  // Modules
1564
  foreach($modules as $module) {
1565
-
1566
  // Global module JS
1567
  $file = $module->dir . 'js/frontend.js';
1568
-
1569
  if(file_exists($file) && !in_array($module->settings->type, $compiled)) {
1570
  $js .= "\n" . file_get_contents($file);
1571
  $compiled[] = $module->settings->type;
1572
  }
1573
-
1574
  // Instance module JS
1575
  $file = $module->dir . 'includes/frontend.js.php';
1576
  $settings = $module->settings;
1577
  $id = $module->node;
1578
-
1579
  if(file_exists($file)) {
1580
  ob_start();
1581
  include $file;
1582
  $js .= ob_get_clean();
1583
  }
1584
  }
1585
-
1586
  // Add the AJAX url global.
1587
  $js .= "var wpAjaxUrl = '" . admin_url('admin-ajax.php') . "';";
1588
-
1589
  // Add the builder url global.
1590
  $js .= "var flBuilderUrl = '" . FL_BUILDER_URL . "';";
1591
-
1592
  // Call the FLBuilder._renderLayoutComplete method if we're currently editing.
1593
  if(stristr($asset_info['js'], '-draft.js') || stristr($asset_info['js'], '-preview.js')) {
1594
  $js .= "; if(typeof FLBuilder !== 'undefined' && typeof FLBuilder._renderLayoutComplete !== 'undefined') FLBuilder._renderLayoutComplete();";
1595
  }
1596
-
1597
  // Include FLJSMin
1598
  if(!class_exists('FLJSMin')) {
1599
- include FL_BUILDER_DIR . 'classes/FLJSMin.php';
1600
  }
1601
-
1602
  // Save the js
1603
  if(!empty($js)) {
1604
  file_put_contents($asset_info['js'], FLJSMin::minify($js));
1605
  }
1606
  }
1607
-
1608
  /**
1609
  * @method log
1610
- */
1611
  static public function log($data)
1612
- {
1613
  ob_start();
1614
  print_r($data);
1615
  error_log(ob_get_clean());
8
  final class FLBuilder {
9
 
10
  /**
11
+ * Localization
12
+ *
13
+ * Load the translation file for current language. Checks the default WordPress
14
+ * languages folder first and then the languages folder inside the plugin.
15
+ *
16
+ * @method load_plugin_textdomain
17
+ */
18
+ static public function load_plugin_textdomain()
19
+ {
20
+ //Traditional WordPress plugin locale filter
21
+ $locale = apply_filters( 'plugin_locale', get_locale(), 'fl-builder' );
22
+
23
+ //Setup paths to current locale file
24
+ $mofile_local = trailingslashit( FL_BUILDER_DIR ) . 'languages/' . $locale . '.mo';
25
+ $mofile_global = trailingslashit( WP_LANG_DIR ) . 'plugins/beaver-builder/' . $locale . '.mo';
26
+
27
+ if ( file_exists( $mofile_local ) ) {
28
+ //Look in local /wp-content/plugins/beaver-builder/languages/ folder
29
+ return load_textdomain( 'fl-builder', $mofile_local );
30
+ }
31
+ else if ( file_exists( $mofile_global ) ) {
32
+ //Look in global /wp-content/languages/plugins/beaver-builder/ folder
33
+ return load_textdomain( 'fl-builder', $mofile_global );
34
+ }
35
+
36
+ //Nothing found
37
+ return false;
38
+ }
39
 
40
  /**
41
+ * Custom ajax handeling since wp_ajax only works in the
42
  * admin and we need everything to work on the frontend.
43
  *
44
  * @method ajax
45
+ */
46
  static public function ajax()
47
  {
48
  // Only run for logged in users.
49
  if(is_user_logged_in()) {
50
+
51
  // Get builder post data.
52
  $post_data = FLBuilderModel::get_post_data();
53
+
54
+ // Get the action.
55
  if(!empty($_REQUEST['fl_action'])) {
56
  $action = $_REQUEST['fl_action'];
57
  }
71
 
72
  /**
73
  * @method init
74
+ */
75
  static public function init()
76
+ {
77
  // Enable editing if the builder is active.
78
  if(FLBuilderModel::is_builder_active()) {
79
+
80
  // Remove 3rd party editor buttons.
81
  remove_all_actions('media_buttons', 999999);
82
  remove_all_actions('media_buttons_context', 999999);
83
+
84
  // Get the post.
85
  require_once ABSPATH . 'wp-admin/includes/post.php';
86
  $post_id = FLBuilderModel::get_post_id();
87
+
88
+ // Check to see if the post is locked.
89
  if(wp_check_post_lock($post_id) !== false) {
90
  header('Location: ' . admin_url('/post.php?post=' . $post_id . '&action=edit'));
91
  }
97
 
98
  /**
99
  * @method register_module
100
+ */
101
  static public function register_module($class, $form)
102
  {
103
  FLBuilderModel::register_module($class, $form);
104
  }
105
+
106
  /**
107
  * @method register_settings_form
108
+ */
109
  static public function register_settings_form($id, $form)
110
  {
111
  FLBuilderModel::register_settings_form($id, $form);
112
  }
113
+
114
  /**
115
  * @method no_cache_headers
116
+ */
117
  static public function no_cache_headers()
118
  {
119
  if(isset($_GET['fl_builder'])) {
124
  header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
125
  }
126
  }
127
+
128
  /**
129
  * @method default_editor
130
+ */
131
  static public function default_editor($type)
132
  {
133
  return FLBuilderModel::is_builder_active() ? 'tinymce' : $type;
134
  }
135
+
136
  /**
137
  * @method add_editor_css
138
+ */
139
  static public function add_editor_css($mce_css)
140
  {
141
  if(FLBuilderModel::is_builder_active()) {
142
+
143
  if(!empty($mce_css)) {
144
  $mce_css .= ',';
145
  }
146
+
147
  $mce_css .= FL_BUILDER_URL . 'css/editor.css';
148
  }
149
+
150
  return $mce_css;
151
  }
152
+
153
  /**
154
  * @method editor_buttons_2
155
+ */
156
  static public function editor_buttons_2($buttons)
157
  {
158
  if(FLBuilderModel::is_builder_active()) {
159
+
160
  array_shift($buttons);
161
  array_unshift($buttons, 'fontsizeselect');
162
  array_unshift($buttons, 'formatselect');
163
+
164
  if(($key = array_search('wp_help', $buttons)) !== false) {
165
+ unset($buttons[$key]);
166
  }
167
  }
168
+
169
  return $buttons;
170
  }
171
+
172
  /**
173
  * @method editor_external_plugins
174
+ */
175
  static public function editor_external_plugins($plugins)
176
  {
177
  if(FLBuilderModel::is_builder_active()) {
178
+
179
  $allowed = array(
180
  'anchor',
181
  'code',
190
  'advlist',
191
  'wptadv',
192
  );
193
+
194
  foreach($plugins as $key => $val) {
195
  if(!in_array($key, $allowed)) {
196
  unset($plugins[$key]);
197
  }
198
  }
199
  }
200
+
201
  return $plugins;
202
  }
203
+
204
  /**
205
  * @method include_jquery
206
+ */
207
  static public function include_jquery()
208
  {
209
  if(FLBuilderModel::is_builder_enabled()) {
210
  include FL_BUILDER_DIR . 'includes/jquery.php';
211
  }
212
  }
213
+
214
  /**
215
  * @method layout_styles_scripts
216
+ */
217
  static public function layout_styles_scripts()
218
  {
219
  global $wp_query;
220
  global $post;
221
+
222
  $ver = FL_BUILDER_VERSION;
223
  $css_url = FL_BUILDER_URL . 'css/';
224
  $js_url = FL_BUILDER_URL . 'js/';
225
+
226
  // Register additional CSS
227
  wp_register_style('font-awesome', $css_url . 'font-awesome.min.css', array(), $ver);
228
  wp_register_style('foundation-icons', $css_url . 'foundation-icons.css', array(), $ver);
229
  wp_register_style('fl-slideshow', $css_url . 'fl-slideshow.css', array(), $ver);
230
  wp_register_style('jquery-bxslider', $css_url . 'jquery.bxslider.css', array(), $ver);
231
  wp_register_style('jquery-magnificpopup', $css_url . 'jquery.magnificpopup.css', array(), $ver);
232
+
233
  // Register additional JS
234
  wp_register_script('fl-slideshow', $js_url . 'fl-slideshow.js', array('yui3'), $ver, true);
235
  wp_register_script('fl-gallery-grid', $js_url . 'fl-gallery-grid.js', array('jquery'), $ver, true);
241
  wp_register_script('jquery-mosaicflow', $js_url . 'jquery.mosaicflow.min.js', array('jquery'), $ver, true);
242
  wp_register_script('jquery-waypoints', $js_url . 'jquery.waypoints.min.js', array('jquery'), $ver, true);
243
  wp_register_script('jquery-wookmark', $js_url . 'jquery.wookmark.min.js', array('jquery'), $ver, true);
244
+
245
  // YUI 3 (Needed for the slideshow)
246
  if(FLBuilderModel::is_ssl()) {
247
  wp_register_script('yui3', 'https://yui-s.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
248
  }
249
  else {
250
+ wp_register_script('yui3', 'http://yui.yahooapis.com/3.5.1/build/yui/yui-min.js', array(), '3.5.1', false);
251
  }
252
+
253
  // Enqueue assets for posts in the main query.
254
  if ( isset( $wp_query->posts ) ) {
255
  foreach ( $wp_query->posts as $post ) {
256
  self::enqueue_layout_styles_scripts( $post->ID );
257
  }
258
  }
259
+
260
  // Enqueue assets for posts via the fl_builder_global_posts filter.
261
  $post_ids = FLBuilderModel::get_global_posts();
262
+
263
  if(count($post_ids) > 0) {
264
+
265
  $posts = get_posts(array('post__in' => $post_ids, 'post_type' => 'any'));
266
 
267
+ foreach($posts as $post) {
268
  self::enqueue_layout_styles_scripts($post->ID);
269
  }
270
  }
271
+
272
  // Reset the main query.
273
  wp_reset_query();
274
  }
275
+
276
  /**
277
  * @method enqueue_layout_styles_scripts
278
+ */
279
  static public function enqueue_layout_styles_scripts($post_id)
280
  {
281
  if(FLBuilderModel::is_builder_enabled()) {
282
+
283
  $rows = FLBuilderModel::get_nodes('row');
284
  $modules = FLBuilderModel::get_all_modules();
285
  $asset_info = FLBuilderModel::get_asset_info();
286
  $asset_ver = FLBuilderModel::get_asset_version();
287
+
288
  // Enqueue required row CSS and JS
289
  foreach($rows as $row) {
290
  if($row->settings->bg_type == 'slideshow') {
293
  wp_enqueue_style('fl-slideshow');
294
  }
295
  }
296
+
297
  // Enqueue required module CSS and JS
298
  foreach($modules as $module) {
299
+
300
  $module->enqueue_icon_styles();
301
  $module->enqueue_scripts();
302
+
303
  foreach($module->css as $handle => $props) {
304
  wp_enqueue_style($handle, $props[0], $props[1], $props[2], $props[3]);
305
  }
310
  wp_enqueue_script('jquery-waypoints');
311
  }
312
  }
313
+
314
  // Enqueue main CSS
315
  if(!file_exists($asset_info['css'])) {
316
  FLBuilder::render_css();
317
  }
318
+
319
  wp_enqueue_style('fl-builder-layout-' . $post_id, $asset_info['css_url'], array(), $asset_ver);
320
+
321
  // Enqueue main JS
322
  if(!file_exists($asset_info['js'])) {
323
  FLBuilder::render_js();
324
  }
325
+
326
  wp_enqueue_script('fl-builder-layout-' . $post_id, $asset_info['js_url'], array(), $asset_ver, true);
327
  }
328
  }
329
+
330
  /**
331
  * @method styles_scripts
332
+ */
333
  static public function styles_scripts()
334
  {
335
  if(FLBuilderModel::is_builder_active()) {
336
+
337
  $ver = FL_BUILDER_VERSION;
338
  $css_url = FL_BUILDER_URL . 'css/';
339
  $js_url = FL_BUILDER_URL . 'js/';
340
+
341
  /* We have a custom version of sortable that fixes a bug. */
342
  wp_deregister_script('jquery-ui-sortable');
343
+
344
  /* Frontend builder styles */
345
  wp_enqueue_style('dashicons');
346
  wp_enqueue_style('font-awesome');
352
  wp_enqueue_style('fl-lightbox', $css_url . 'fl-lightbox.css', array(), $ver);
353
  wp_enqueue_style('fl-icon-selector', $css_url . 'fl-icon-selector.css', array(), $ver);
354
  wp_enqueue_style('fl-builder', $css_url . 'fl-builder.css', array(), $ver);
355
+
356
  /* RTL Support */
357
  if(is_rtl()) {
358
  wp_enqueue_style('fl-builder-rtl', $css_url . 'fl-builder-rtl.css', array(), $ver);
359
  }
360
+
361
  /* Frontend builder scripts */
362
  wp_enqueue_media();
363
  wp_enqueue_script('heartbeat');
382
  wp_enqueue_script('fl-stylesheet', $js_url . 'fl-stylesheet.js', array(), $ver, true);
383
  wp_enqueue_script('fl-builder', $js_url . 'fl-builder.js', array(), $ver, true);
384
  wp_enqueue_script('fl-builder-preview', $js_url . 'fl-builder-preview.js', array(), $ver, true);
385
+
386
  /* Core template settings */
387
  if(file_exists(FL_BUILDER_DIR . 'js/fl-template-settings.js')) {
388
  wp_enqueue_script('fl-template-settings', FL_BUILDER_URL . 'js/fl-template-settings.js', array(), $ver, true);
389
  }
390
+
391
  /* Additional module styles and scripts */
392
  foreach(FLBuilderModel::$modules as $module) {
393
+
394
  $module->enqueue_scripts();
395
+
396
  foreach($module->css as $handle => $props) {
397
  wp_enqueue_style($handle, $props[0], $props[1], $props[2], $props[3]);
398
  }
402
  }
403
  }
404
  }
405
+
406
  /**
407
  * @method body_class
408
  */
414
  if(FLBuilderModel::is_builder_active() && !current_user_can(FLBuilderModel::get_editing_capability())) {
415
  $classes[] = 'fl-builder-simple';
416
  }
417
+
418
  return $classes;
419
  }
420
+
421
  /**
422
  * @method admin_bar_menu
423
  */
424
  static public function admin_bar_menu($wp_admin_bar)
425
  {
426
  global $wp_the_query;
427
+
428
  if ( FLBuilderModel::is_post_editable() ) {
429
+
430
  $wp_admin_bar->add_node( array(
431
  'id' => 'fl-builder-frontend-edit-link',
432
+ 'title' => '<style> #wp-admin-bar-fl-builder-frontend-edit-link .ab-icon:before { content: "\f116" !important; top: 2px; margin-right: 3px; } </style><span class="ab-icon"></span>' . FLBuilderModel::get_branding(),
433
  'href' => FLBuilderModel::get_edit_url( $wp_the_query->post->ID )
434
  ));
435
  }
436
  }
437
+
438
  /**
439
  * @method render_ui
440
  */
441
  static public function render_ui()
442
  {
443
  global $wp_the_query;
444
+
445
  if ( FLBuilderModel::is_builder_active() ) {
446
+
447
  $post_id = $wp_the_query->post->ID;
448
  $categories = FLBuilderModel::get_categorized_modules();
449
  $enabled_templates = FLBuilderModel::get_enabled_templates();
450
+
451
  include FL_BUILDER_DIR . 'includes/ui.php';
452
  include FL_BUILDER_DIR . 'includes/js-config.php';
453
  }
454
  }
455
+
456
  /**
457
+ * Renders a preview of the layout to be
458
+ * passed back to the builder via AJAX.
459
  *
460
  * @method render_preview
461
  */
462
  static public function render_preview($return = false)
463
+ {
464
  self::render_css();
465
  self::render_js();
466
+
467
  if($return) {
468
  return self::render_layout(true);
469
  }
471
  self::render_layout();
472
  }
473
  }
474
+
475
  /**
476
  * Renders the layout to be passed back to
477
+ * the builder via AJAX for an update.
478
  *
479
  * @method render_layout
480
  */
482
  {
483
  global $wp_scripts;
484
  global $wp_styles;
485
+
486
  // Deregister scripts and styles so we can capture those
487
  // registered by content functions such as shortcodes.
488
  if(isset($wp_scripts)) {
491
  if(isset($wp_styles)) {
492
  $wp_styles->queue = array();
493
  }
494
+
495
  // Enqueue jQuery again so it's not added by any
496
  // third party shortcodes or plugins.
497
  wp_enqueue_script('jquery');
498
+
499
  // Render the layout.
500
  ob_start();
501
  self::render_rows();
502
  $html = ob_get_clean();
503
+
504
  // Process shortcodes.
505
  ob_start();
506
  echo do_shortcode($html);
507
  $html = ob_get_clean();
508
+
509
+ // Print scripts and styles registered by content
510
  // functions such as shortcodes.
511
  ob_start();
512
+
513
  if(isset($wp_scripts)) {
514
  $wp_scripts->done[] = 'jquery';
515
  wp_print_scripts($wp_scripts->queue);
517
  if(isset($wp_styles)) {
518
  wp_print_styles($wp_styles->queue);
519
  }
520
+
521
  $html = ob_get_clean() . $html;
522
+
523
+ // Get the asset info.
524
  $asset_info = FLBuilderModel::get_asset_info();
525
  $asset_ver = FLBuilderModel::get_asset_version();
526
+
527
  // Build the response.
528
  $response = array(
529
  'html' => $html,
530
  'css' => $asset_info['css_url'] . '?ver=' . $asset_ver,
531
  'js' => $asset_info['js_url'] . '?ver=' . $asset_ver
532
  );
533
+
534
  // Return or echo the response.
535
  if($return) {
536
  return $response;
540
  die();
541
  }
542
  }
543
+
544
  /**
545
  * @method render_content
546
  */
547
  static public function render_content($content)
548
  {
549
  global $post;
550
+
551
  $post_id = FLBuilderModel::get_post_id();
552
  $enabled = FLBuilderModel::is_builder_enabled();
553
  $ajax = defined('DOING_AJAX');
554
  $global_posts = FLBuilderModel::get_global_posts();
555
  $is_global = in_array($post->ID, $global_posts);
556
  $in_loop = in_the_loop();
557
+
558
  if($enabled && !$ajax && ($is_global || $in_loop)) {
559
+
560
  // Remove the builder's render_content filter in case apply_filters
561
  // is called again by a widget, module or shortcode.
562
  remove_filter('the_content', 'FLBuilder::render_content');
563
+
564
  // Render the content.
565
  ob_start();
566
  echo '<div class="fl-builder-content fl-builder-content-' . $post_id . '">';
567
  self::render_rows();
568
  echo '</div>';
569
  $content = do_shortcode(ob_get_clean());
570
+
571
  // Reapply the builder's render_content filter.
572
  add_filter('the_content', 'FLBuilder::render_content');
573
  }
574
+
575
  return $content;
576
  }
577
+
578
  /**
579
  * @method render_editor_content
580
  */
586
 
587
  // Render the modules.
588
  foreach($rows as $row) {
589
+
590
  $groups = FLBuilderModel::get_nodes('column-group', $row->node);
591
+
592
  foreach($groups as $group) {
593
+
594
  $cols = FLBuilderModel::get_nodes('column', $group->node);
595
+
596
  foreach($cols as $col) {
597
+
598
  $modules = FLBuilderModel::get_modules($col->node);
599
+
600
  foreach($modules as $module) {
601
+
602
  if($module->editor_export) {
603
+
604
+ // Don't crop photos to ensure media library photos are rendered.
605
  if($module->settings->type == 'photo') {
606
  $module->settings->crop = false;
607
  }
608
+
609
  FLBuilder::render_module_html($module->settings->type, $module->settings, $module);
610
  }
611
  }
612
  }
613
  }
614
  }
615
+
616
  // Get the content.
617
  $content = ob_get_clean();
618
+
619
  // Remove unnecessary tags.
620
  $content = preg_replace('/<\/?div[^>]*\>/i', '', $content);
621
  $content = preg_replace('/<\/?span[^>]*\>/i', '', $content);
622
  $content = preg_replace('#<script(.*?)>(.*?)</script>#is', '', $content);
623
  $content = preg_replace('/<i [^>]*><\\/i[^>]*>/', '', $content);
624
  $content = preg_replace('/ class=".*?"/', '', $content);
625
+
626
  // Remove empty lines.
627
  $content = preg_replace('/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/', "\n", $content);
628
+
629
  return $content;
630
  }
631
+
632
  /**
633
  * @method render_settings
634
+ */
635
  static public function render_settings($form = array(), $settings, $return = false)
636
  {
637
  $defaults = array(
640
  'title' => '',
641
  'tabs' => array()
642
  );
643
+
644
  $form = array_merge($defaults, $form);
645
+
646
  ob_start();
647
  include FL_BUILDER_DIR . 'includes/settings.php';
648
  $html = ob_get_clean();
649
+
650
  if(defined('DOING_AJAX') && !$return) {
651
  echo $html;
652
  die();
655
  return $html;
656
  }
657
  }
658
+
659
  /**
660
  * @method render_settings_field
661
+ */
662
  static public function render_settings_field($name, $field, $settings)
663
  {
664
  $i = null;
666
  $supports_multiple = $field['type'] != 'editor' && $field['type'] != 'photo';
667
  $value = isset($settings->$name) ? $settings->$name : '';
668
  $preview = isset($field['preview']) ? json_encode($field['preview']) : json_encode(array('type' => 'refresh'));
669
+
670
  if($is_multiple && $supports_multiple) {
671
+
672
  $values = $value;
673
  $arr_name = $name;
674
  $name .= '[]';
675
+
676
  echo '<tbody class="fl-field fl-builder-field-multiples" data-type="form" data-preview=\'' . $preview . '\'>';
677
+
678
  for($i = 0; $i < count($values); $i++) {
679
  $value = $values[$i];
680
  echo '<tr class="fl-builder-field-multiple" data-field="'. $arr_name .'">';
686
  echo '</td>';
687
  echo '</tr>';
688
  }
689
+
690
  echo '<tr>';
691
+
692
  if(empty($field['label'])) {
693
  echo '<td colspan="2">';
694
  }
695
  else {
696
  echo '<td>&nbsp;</td><td>';
697
  }
698
+
699
+ echo '<a href="javascript:void(0);" onclick="return false;" class="fl-builder-field-add fl-builder-button" data-field="'. $arr_name .'">'. sprintf( _x( 'Add %s', 'Field name to add.', 'fl-builder' ), $field['label'] ) .'</a>';
700
  echo '</td>';
701
  echo '</tr>';
702
  echo '</tbody>';
707
  echo '</tr>';
708
  }
709
  }
710
+
711
  /**
712
  * @method render_settings_form
713
+ */
714
  static public function render_settings_form($type = null, $settings = null)
715
  {
716
  $post_data = FLBuilderModel::get_post_data();
717
  $type = isset($post_data['type']) ? $post_data['type'] : $type;
718
  $settings = isset($post_data['settings']) ? $post_data['settings'] : $settings;
719
  $form = FLBuilderModel::$settings_forms[$type];
720
+
721
  if(isset($settings) && !empty($settings)) {
722
  $defaults = FLBuilderModel::get_settings_form_defaults($form['tabs']);
723
  $settings = (object)array_merge((array)$defaults, (array)$settings);
725
  else {
726
  $settings = FLBuilderModel::get_settings_form_defaults($form['tabs']);
727
  }
728
+
729
  self::render_settings(array(
730
  'title' => $form['title'],
731
  'tabs' => $form['tabs']
732
  ), $settings);
733
  }
734
+
735
  /**
736
  * @method render_global_settings
737
+ */
738
  static public function render_global_settings()
739
  {
740
  $settings = FLBuilderModel::get_global_settings();
741
  $form = FLBuilderModel::$settings_forms['global'];
742
+
743
  self::render_settings(array(
744
  'class' => 'fl-builder-global-settings',
745
  'title' => $form['title'],
746
  'tabs' => $form['tabs']
747
  ), $settings);
748
  }
749
+
750
  /**
751
  * @method register_templates_post_type
752
  */
755
  if(FL_BUILDER_LITE === true) {
756
  return;
757
  }
758
+
759
  register_post_type('fl-builder-template', array(
760
  'public' => false,
761
  'labels' => array(
762
+ 'name' => _x( 'Layout Templates', 'Custom post type label.', 'fl-builder' ),
763
+ 'singular_name' => _x( 'Layout Template', 'Custom post type label.', 'fl-builder' ),
764
+ 'menu_name' => _x( 'Layout Templates', 'Custom post type label.', 'fl-builder' ),
765
+ 'name_admin_bar' => _x( 'Layout Template', 'Custom post type label.', 'fl-builder' ),
766
+ 'add_new' => _x( 'Add New', 'Custom post type label.', 'fl-builder' ),
767
+ 'add_new_item' => _x( 'Add New Layout Template', 'Custom post type label.', 'fl-builder' ),
768
+ 'new_item' => _x( 'New Layout Template', 'Custom post type label.', 'fl-builder' ),
769
+ 'edit_item' => _x( 'Edit Layout Template', 'Custom post type label.', 'fl-builder' ),
770
+ 'view_item' => _x( 'View Layout Template', 'Custom post type label.', 'fl-builder' ),
771
+ 'all_items' => _x( 'All Layout Templates', 'Custom post type label.', 'fl-builder' ),
772
+ 'search_items' => _x( 'Search Layout Templates', 'Custom post type label.', 'fl-builder' ),
773
+ 'parent_item_colon' => _x( 'Parent Layout Templates:', 'Custom post type label.', 'fl-builder' ),
774
+ 'not_found' => _x( 'No layout templates found.', 'Custom post type label.', 'fl-builder' ),
775
+ 'not_found_in_trash' => _x( 'No layout templates found in Trash.', 'Custom post type label.', 'fl-builder' )
776
  ),
777
  'supports' => array(
778
  'title'
780
  'publicly_queryable' => true
781
  ));
782
  }
783
+
784
  /**
785
  * @method render_template_selector
786
  */
787
  static public function render_template_selector()
788
  {
789
  if(file_exists(FL_BUILDER_DIR . 'includes/template-selector.php')) {
790
+
791
  $enabled_templates = FLBuilderModel::get_enabled_templates();
792
  $user_templates = FLBuilderModel::get_user_templates();
793
  $templates = FLBuilderModel::get_templates();
794
  $num_rows = FLBuilderModel::count_nodes('row');
795
+
796
  include FL_BUILDER_DIR . 'includes/template-selector.php';
797
+
798
  if(defined('DOING_AJAX')) {
799
  die();
800
  }
801
  }
802
  }
803
+
804
  /**
805
  * @method render_user_template_settings
806
  */
808
  {
809
  $defaults = FLBuilderModel::get_settings_form_defaults(FLBuilderModel::$settings_forms['user_template']['tabs']);
810
  $form = FLBuilderModel::$settings_forms['user_template'];
811
+
812
  FLBuilder::render_settings(array(
813
  'class' => 'fl-builder-user-template-settings',
814
  'title' => $form['title'],
818
 
819
  /**
820
  * @method render_template
821
+ */
822
+ static public function render_template($template)
823
  {
824
  global $post;
825
+
826
  if($post && $post->post_type == 'fl-builder-template') {
827
+
828
  $page = locate_template(array('page.php'));
829
+
830
  if(!empty($page)) {
831
  return $page;
832
  }
833
  }
834
+
835
  return $template;
836
  }
837
+
838
  /**
839
  * @method render_icon_selector
840
+ */
841
  static public function render_icon_selector()
842
  {
843
  $icon_sets = FLBuilderIcons::get_sets();
844
+
845
  include FL_BUILDER_DIR . 'includes/icon-selector.php';
846
+
847
  if(defined('DOING_AJAX')) {
848
  die();
849
  }
850
  }
851
+
852
  /**
853
  * @method render_rows
854
  */
855
  static public function render_rows()
856
  {
857
  $rows = FLBuilderModel::get_nodes('row');
858
+
859
  foreach($rows as $row) {
860
  self::render_row($row);
861
  }
862
  }
863
+
864
  /**
865
  * @method render_row
866
+ */
867
  static public function render_row($row)
868
  {
869
  $groups = FLBuilderModel::get_nodes('column-group', $row->node);
870
+
871
  include FL_BUILDER_DIR . 'includes/row.php';
872
  }
873
+
874
  /**
875
  * @method render_new_row
876
+ */
877
  static public function render_new_row($cols = '1-col', $position = false)
878
  {
879
  $post_data = FLBuilderModel::get_post_data();
880
  $cols = isset($post_data['cols']) ? $post_data['cols'] : $cols;
881
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
882
  $row = FLBuilderModel::add_row($cols, $position);
883
+
884
  self::render_row($row);
885
+
886
  if(defined('DOING_AJAX')) {
887
  die();
888
  }
889
  }
890
+
891
  /**
892
  * @method render_row_class
893
+ */
894
  static public function render_row_class($row)
895
  {
896
  echo 'fl-row';
897
  echo ' fl-row-' . $row->settings->width . '-width';
898
  echo ' fl-row-bg-' . $row->settings->bg_type;
899
  echo ' fl-node-' . $row->node;
900
+
901
  if(!empty($row->settings->class)) {
902
+ echo apply_filters( 'fl_builder_row_custom_class', ' ' . $row->settings->class, $row );
903
  }
904
  if(!empty($row->settings->responsive_display)) {
905
  echo ' fl-visible-' . $row->settings->responsive_display;
906
  }
907
  }
908
+
909
  /**
910
  * @method render_row_content_class
911
+ */
912
  static public function render_row_content_class($row)
913
  {
914
  echo 'fl-row-content';
915
  echo ' fl-row-' . $row->settings->content_width . '-width';
916
  echo ' fl-node-content';
917
  }
918
+
919
  /**
920
  * @method render_row_data_attrs
921
+ */
922
  static public function render_row_data_attrs($row)
923
  {
924
  echo ' data-node="' . $row->node . '"';
925
+
926
  if($row->settings->bg_type == 'parallax' && !empty($row->settings->bg_parallax_image_src)) {
927
  echo ' data-parallax-speed="' . $row->settings->bg_parallax_speed . '"';
928
  echo ' data-parallax-image="' . $row->settings->bg_parallax_image_src . '"';
929
  }
930
  }
931
+
932
  /**
933
  * @method render_row_bg
934
+ */
935
  static public function render_row_bg($row)
936
  {
937
  if($row->settings->bg_type == 'video') {
938
+
939
  $vid_data = FLBuilderModel::get_row_bg_data($row);
940
+
941
  if($vid_data) {
942
  include FL_BUILDER_DIR . 'includes/row-video.php';
943
  }
946
  echo '<div class="fl-bg-slideshow"></div>';
947
  }
948
  }
949
+
950
  /**
951
  * @method render_row_settings
952
+ */
953
  static public function render_row_settings($node_id = null)
954
  {
955
  $post_data = FLBuilderModel::get_post_data();
965
  'tabs' => $form['tabs']
966
  ), $settings);
967
  }
968
+
969
  /**
970
  * @method render_column_group
971
+ */
972
  static public function render_column_group($group)
973
  {
974
  $cols = FLBuilderModel::get_nodes('column', $group->node);
975
+
976
  include FL_BUILDER_DIR . 'includes/column-group.php';
977
  }
978
+
979
  /**
980
  * @method render_new_column_group
981
+ */
982
  static public function render_new_column_group($node_id = null, $cols = '1-col', $position = false)
983
  {
984
  $post_data = FLBuilderModel::get_post_data();
986
  $cols = isset($post_data['cols']) ? $post_data['cols'] : $cols;
987
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
988
  $group = FLBuilderModel::add_col_group($node_id, $cols, $position);
989
+
990
  self::render_column_group($group);
991
+
992
  if(defined('DOING_AJAX')) {
993
  die();
994
  }
995
  }
996
+
997
  /**
998
  * @method render_column_settings
999
+ */
1000
  static public function render_column_settings($node_id = null)
1001
  {
1002
  $post_data = FLBuilderModel::get_post_data();
1012
  'tabs' => $form['tabs']
1013
  ), $settings);
1014
  }
1015
+
1016
  /**
1017
  * @method render_column_class
1018
+ */
1019
  static public function render_column_class($col)
1020
  {
1021
  echo 'fl-col';
1022
+
1023
  if($col->settings->size <= 50) {
1024
  echo ' fl-col-small';
1025
  }
1026
  if(!empty($col->settings->class)) {
1027
+ echo apply_filters( 'fl_builder_column_custom_class', ' ' . $col->settings->class, $col );
1028
  }
1029
  if(!empty($col->settings->responsive_display)) {
1030
  echo ' fl-visible-' . $col->settings->responsive_display;
1031
  }
1032
+
1033
  echo ' fl-node-' . $col->node;
1034
  }
1035
 
1039
  static public function render_modules($parent_id)
1040
  {
1041
  $modules = FLBuilderModel::get_modules($parent_id);
1042
+
1043
  foreach($modules as $module) {
1044
  $settings = $module->settings;
1045
  include FL_BUILDER_DIR . 'includes/module.php';
1046
  }
1047
  }
1048
+
1049
  /**
1050
  * @method render_new_module_settings
1051
+ */
1052
  static public function render_new_module_settings($parent_id = null, $type = null, $position = false)
1053
  {
1054
  $post_data = FLBuilderModel::get_post_data();
1056
  $type = isset($post_data['type']) ? $post_data['type'] : $type;
1057
  $position = isset($post_data['position']) ? (int)$post_data['position'] : $position;
1058
  $module = FLBuilderModel::add_default_module($parent_id, $type, $position);
1059
+
1060
  // Force the global parent id.
1061
  FLBuilderModel::update_post_data('parent_id', $module->parent);
1062
+
1063
  // Get the settings html.
1064
  ob_start();
1065
  self::render_module_settings($module->node, $module->type, $module->parent, true);
1066
  $settings = ob_get_clean();
1067
+
1068
  // Build the response.
1069
  $response = array(
1070
  'layout' => self::render_preview(true),
1071
  'settings' => $settings
1072
  );
1073
+
1074
  // Echo or return the response.
1075
  if(defined('DOING_AJAX')) {
1076
  echo json_encode($response);
1080
  return $response;
1081
  }
1082
  }
1083
+
1084
  /**
1085
  * @method render_module_settings
1086
+ */
1087
  static public function render_module_settings($node_id = null, $type = null, $parent_id = null, $return = false)
1088
  {
1089
  $post_data = FLBuilderModel::get_post_data();
1090
  $node_id = isset($post_data['node_id']) ? $post_data['node_id'] : $node_id;
1091
  $type = isset($post_data['type']) ? $post_data['type'] : $type;
1092
  $parent_id = isset($post_data['parent_id']) ? $post_data['parent_id'] : $parent_id;
1093
+
1094
  if($node_id) {
1095
  $module = FLBuilderModel::get_module($node_id);
1096
  $settings = $module->settings;
1099
  $module = FLBuilderModel::$modules[$type];
1100
  $settings = FLBuilderModel::get_module_defaults($type);
1101
  }
1102
+
1103
  if(file_exists($module->dir .'css/settings.css')) {
1104
  echo '<link class="fl-builder-settings-css" rel="stylesheet" href="'. $module->url .'css/settings.css" />';
1105
  }
1106
  if(file_exists($module->dir .'js/settings.js')) {
1107
  echo '<script class="fl-builder-settings-js" src="'. $module->url .'js/settings.js"></script>';
1108
  }
1109
+
1110
  echo self::render_settings(array(
1111
  'class' => 'fl-builder-module-settings fl-builder-'. $type .'-settings',
1112
  'attrs' => 'data-node="'. $node_id .'" data-parent="'. $parent_id .'" data-type="'. $type .'"',
1113
+ 'title' => sprintf( _x( '%s Settings', '%s stands for module name.', 'fl-builder' ), $module->name ),
1114
  'tabs' => $module->form
1115
  ), $settings, $return);
1116
  }
1117
+
1118
  /**
1119
  * @method render_module_html
1120
  */
1124
  $defaults = FLBuilderModel::get_module_defaults($type);
1125
  $settings = FLBuilderUtils::array_to_object($settings);
1126
  $settings = (object)array_merge((array)$defaults, (array)$settings);
1127
+
1128
  // Module
1129
  $class = get_class(FLBuilderModel::$modules[$type]);
1130
+ $module = new $class();
1131
  $module->settings = $settings;
1132
+
1133
  // Shorthand reference to the module's id.
1134
  $id = $module->node;
1135
+
1136
  include $module->dir .'includes/frontend.php';
1137
  }
1138
+
1139
  /**
1140
  * @method render_module_class
1141
+ */
1142
  static public function render_module_class($module)
1143
  {
1144
  echo 'fl-module';
1145
  echo ' fl-module-' . $module->settings->type;
1146
  echo ' fl-node-' . $module->node;
1147
+
1148
  if(!empty($module->settings->class)) {
1149
+ echo apply_filters( 'fl_builder_module_custom_class', ' ' . $module->settings->class, $module );
1150
  }
1151
  if(!empty($module->settings->responsive_display)) {
1152
  echo ' fl-visible-' . $module->settings->responsive_display;
1155
  echo ' fl-animation fl-' . $module->settings->animation;
1156
  }
1157
  }
1158
+
1159
  /**
1160
  * @method render_module_data_attrs
1161
+ */
1162
  static public function render_module_data_attrs($module)
1163
  {
1164
  echo ' data-node="' . $module->node . '" ';
1165
  echo ' data-animation-delay="' . $module->settings->animation_delay . '" ';
1166
+
1167
  if(FLBuilderModel::is_builder_active()) {
1168
  echo ' data-parent="' . $module->parent . '" ';
1169
  echo ' data-type="' . $module->settings->type . '" ';
1170
  echo ' data-name="' . $module->name . '" ';
1171
  }
1172
  }
1173
+
1174
  /**
1175
  * @method render_module_css
1176
  */
1181
  $defaults = FLBuilderModel::get_module_defaults($type);
1182
  $settings = FLBuilderUtils::array_to_object($settings);
1183
  $settings = (object)array_merge((array)$defaults, (array)$settings);
1184
+
1185
  // Module
1186
  $class = get_class(FLBuilderModel::$modules[$type]);
1187
+ $module = new $class();
1188
  $module->settings = $settings;
1189
+
1190
  include $module->dir .'includes/frontend.css.php';
1191
  }
1192
+
1193
  /**
1194
  * @method render_css
1195
+ */
1196
  static public function render_css()
1197
  {
1198
  // Delete the old file.
1207
  $post_id = FLBuilderModel::get_post_id();
1208
  $post = get_post($post_id);
1209
  $compiled = array();
1210
+
1211
  // Global css
1212
  $css = file_get_contents(FL_BUILDER_DIR . '/css/fl-builder-layout.css');
1213
+
1214
  // Responsive css
1215
  if($global_settings->responsive_enabled) {
1216
  $css .= '@media (max-width: '. $global_settings->medium_breakpoint .'px) { ';
1220
  $css .= file_get_contents(FL_BUILDER_DIR . '/css/fl-builder-layout-responsive.css');
1221
  $css .= ' }';
1222
  }
1223
+
1224
  // Global row margins
1225
  $css .= '.fl-row-content-wrap { margin: '. $global_settings->row_margins .'px; }';
1226
+
1227
  // Global row padding
1228
  $css .= '.fl-row-content-wrap { padding: '. $global_settings->row_padding .'px; }';
1229
+
1230
  // Global row width
1231
  $css .= '.fl-row-fixed-width { max-width: '. $global_settings->row_width .'px; }';
1232
+
1233
  // Global row content width
1234
  $css .= '.fl-row-content-wrap.fl-row-fixed-width .fl-row-content { max-width: '. $global_settings->row_width .'px; }';
1235
+
1236
  // Row instances
1237
  foreach($rows as $row) {
1238
+
1239
  // Instance row css
1240
  ob_start();
1241
  include FL_BUILDER_DIR . 'includes/row-css.php';
1242
  $css .= ob_get_clean();
1243
+
1244
  // Instance row margins
1245
  $css .= self::render_row_margins($row);
1246
+
1247
  // Instance row padding
1248
  $css .= self::render_row_padding($row);
1249
+
1250
  // Instance row bg positions
1251
  $css .= self::render_row_bg_positions($row);
1252
  $css .= self::render_responsive_row_bg_positions($row);
1253
  }
1254
+
1255
  // Column instances
1256
  foreach($cols as $col) {
1257
+
1258
  // Instance column css
1259
  ob_start();
1260
  include FL_BUILDER_DIR . 'includes/column-css.php';
1261
  $css .= ob_get_clean();
1262
+
1263
  // Instance column margins
1264
  $css .= self::render_column_margins($col);
1265
+
1266
  // Instance column padding
1267
  $css .= self::render_column_padding($col);
1268
  }
1269
+
1270
  // Global module margins
1271
  $css .= '.fl-module-content { margin: '. $global_settings->module_margins .'px; }';
1272
+
1273
  // Modules
1274
  foreach($modules as $module) {
1275
+
1276
  // Global module css
1277
  $file = $module->dir . 'css/frontend.css';
1278
  $file_responsive = $module->dir . 'css/frontend.responsive.css';
1279
+
1280
  // Only include global module css that hasn't been included yet.
1281
  if(!in_array($module->settings->type, $compiled)) {
1282
+
1283
  // Add to the compiled array so we don't include it again.
1284
  $compiled[] = $module->settings->type;
1285
+
1286
  // Get the standard module css.
1287
  if(file_exists($file)) {
1288
  $css .= file_get_contents($file);
1289
  }
1290
+
1291
  // Get the responsive module css.
1292
  if($global_settings->responsive_enabled && file_exists($file_responsive)) {
1293
  $css .= '@media (max-width: '. $global_settings->responsive_breakpoint .'px) { ';
1295
  $css .= ' }';
1296
  }
1297
  }
1298
+
1299
  // Instance module css
1300
  $file = $module->dir . 'includes/frontend.css.php';
1301
  $settings = $module->settings;
1302
  $id = $module->node;
1303
+
1304
  if(file_exists($file)) {
1305
  ob_start();
1306
  include $file;
1307
  $css .= ob_get_clean();
1308
  }
1309
+
1310
  // Instance module margins
1311
  $css .= self::render_module_margins($module);
1312
  $css .= self::render_responsive_module_margins($module);
1313
  }
1314
+
1315
  // Default page heading
1316
  if($post && !$global_settings->show_default_heading && ($post->post_type == 'page' || $post->post_type == 'fl-builder-template')) {
1317
  $css .= $global_settings->default_heading_selector . ' { display:none; }';
1318
  }
1319
+
1320
  // Save the css
1321
  if(!empty($css)) {
1322
  $css = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css);
1324
  file_put_contents($asset_info['css'], $css);
1325
  }
1326
  }
1327
+
1328
  /**
1329
  * @method render_row_margins
1330
+ */
1331
  static public function render_row_margins($row)
1332
  {
1333
  $settings = $row->settings;
1334
  $margins = '';
1335
  $css = '';
1336
+
1337
  if($settings->margin_top != '') {
1338
  $margins .= 'margin-top:' . $settings->margin_top . 'px;';
1339
  }
1349
  if($margins != '') {
1350
  $css .= '.fl-node-' . $row->node . ' .fl-row-content-wrap {' . $margins . '}';
1351
  }
1352
+
1353
  return $css;
1354
  }
1355
+
1356
  /**
1357
  * @method render_row_padding
1358
+ */
1359
  static public function render_row_padding($row)
1360
  {
1361
  $settings = $row->settings;
1362
  $padding = '';
1363
  $css = '';
1364
+
1365
  if($settings->padding_top != '') {
1366
  $padding .= 'padding-top:' . $settings->padding_top . 'px;';
1367
  }
1377
  if($padding != '') {
1378
  $css = '.fl-node-' . $row->node . ' .fl-row-content-wrap {' . $padding . '}';
1379
  }
1380
+
1381
  return $css;
1382
  }
1383
+
1384
  /**
1385
  * @method render_row_bg_positions
1386
+ */
1387
  static public function render_row_bg_positions($row)
1388
  {
1389
  $settings = $row->settings;
1390
  $positions = '';
1391
  $css = '';
1392
+
1393
  if($settings->margin_top != '' || $settings->border_top != '') {
1394
  $positions .= 'top:' . ($settings->margin_top + $settings->border_top) . 'px;';
1395
  }
1406
  $css .= '.fl-node-' . $row->node . ' .fl-bg-video {' . $positions . '}';
1407
  $css .= '.fl-node-' . $row->node . ' .fl-bg-slideshow {' . $positions . '}';
1408
  }
1409
+
1410
  return $css;
1411
  }
1412
+
1413
  /**
1414
  * @method render_responsive_row_bg_positions
1415
+ */
1416
  static public function render_responsive_row_bg_positions($row)
1417
  {
1418
  $global_settings = FLBuilderModel::get_global_settings();
1419
  $settings = $row->settings;
1420
  $positions = '';
1421
  $css = '';
1422
+
1423
  if($settings->border_top != '') {
1424
  $positions .= 'top:' . $settings->border_top . 'px;';
1425
  }
1432
  $css .= '.fl-node-' . $row->node . ' .fl-bg-slideshow {' . $positions . '}';
1433
  $css .= ' }';
1434
  }
1435
+
1436
  return $css;
1437
  }
1438
+
1439
  /**
1440
  * @method render_column_margins
1441
+ */
1442
  static public function render_column_margins($col)
1443
  {
1444
  $settings = $col->settings;
1445
  $margins = '';
1446
  $css = '';
1447
+
1448
  if($settings->margin_top != '') {
1449
  $margins .= 'margin-top:' . $settings->margin_top . 'px;';
1450
  }
1460
  if($margins != '') {
1461
  $css .= '.fl-node-' . $col->node . ' .fl-col-content {' . $margins . '}';
1462
  }
1463
+
1464
  return $css;
1465
  }
1466
+
1467
  /**
1468
  * @method render_column_padding
1469
+ */
1470
  static public function render_column_padding($col)
1471
  {
1472
  $settings = $col->settings;
1473
  $padding = '';
1474
  $css = '';
1475
+
1476
  if($settings->padding_top != '') {
1477
  $padding .= 'padding-top:' . $settings->padding_top . 'px;';
1478
  }
1488
  if($padding != '') {
1489
  $css = '.fl-node-' . $col->node . ' .fl-col-content {' . $padding . '}';
1490
  }
1491
+
1492
  return $css;
1493
  }
1494
+
1495
  /**
1496
  * @method render_module_margins
1497
+ */
1498
  static public function render_module_margins($module)
1499
  {
1500
  $settings = $module->settings;
1501
  $margins = '';
1502
  $css = '';
1503
+
1504
  if($settings->margin_top != '') {
1505
  $margins .= 'margin-top:' . $settings->margin_top . 'px;';
1506
  }
1516
  if($margins != '') {
1517
  $css = '.fl-node-' . $module->node . ' .fl-module-content {' . $margins . '}';
1518
  }
1519
+
1520
  return $css;
1521
  }
1522
+
1523
  /**
1524
  * @method render_responsive_module_margins
1525
+ */
1526
  static public function render_responsive_module_margins($module)
1527
  {
1528
  $global_settings = FLBuilderModel::get_global_settings();
1530
  $settings = $module->settings;
1531
  $margins = '';
1532
  $css = '';
1533
+
1534
  if($settings->margin_top != '' && ($settings->margin_top > $default || $settings->margin_top < 0)) {
1535
  $margins .= 'margin-top:' . $default . 'px;';
1536
  }
1548
  $css .= '.fl-node-' . $module->node . ' .fl-module-content {' . $margins . '}';
1549
  $css .= ' }';
1550
  }
1551
+
1552
  return $css;
1553
  }
1554
+
1555
  /**
1556
  * @method render_js
1557
+ */
1558
  static public function render_js()
1559
  {
1560
  // Delete the old file.
1567
  $asset_info = FLBuilderModel::get_asset_info();
1568
  $compiled = array();
1569
  $js = '';
1570
+
1571
  // Main JS
1572
  $js .= file_get_contents(FL_BUILDER_DIR . 'js/fl-builder-layout.js');
1573
+
1574
  // Instance Row JS
1575
  foreach($rows as $row) {
1576
+
1577
  $settings = $row->settings;
1578
  $id = $row->node;
1579
+
1580
  ob_start();
1581
  include FL_BUILDER_DIR . 'includes/row-js.php';
1582
  $js .= ob_get_clean();
1583
  }
1584
+
1585
  // Modules
1586
  foreach($modules as $module) {
1587
+
1588
  // Global module JS
1589
  $file = $module->dir . 'js/frontend.js';
1590
+
1591
  if(file_exists($file) && !in_array($module->settings->type, $compiled)) {
1592
  $js .= "\n" . file_get_contents($file);
1593
  $compiled[] = $module->settings->type;
1594
  }
1595
+
1596
  // Instance module JS
1597
  $file = $module->dir . 'includes/frontend.js.php';
1598
  $settings = $module->settings;
1599
  $id = $module->node;
1600
+
1601
  if(file_exists($file)) {
1602
  ob_start();
1603
  include $file;
1604
  $js .= ob_get_clean();
1605
  }
1606
  }
1607
+
1608
  // Add the AJAX url global.
1609
  $js .= "var wpAjaxUrl = '" . admin_url('admin-ajax.php') . "';";
1610
+
1611
  // Add the builder url global.
1612
  $js .= "var flBuilderUrl = '" . FL_BUILDER_URL . "';";
1613
+
1614
  // Call the FLBuilder._renderLayoutComplete method if we're currently editing.
1615
  if(stristr($asset_info['js'], '-draft.js') || stristr($asset_info['js'], '-preview.js')) {
1616
  $js .= "; if(typeof FLBuilder !== 'undefined' && typeof FLBuilder._renderLayoutComplete !== 'undefined') FLBuilder._renderLayoutComplete();";
1617
  }
1618
+
1619
  // Include FLJSMin
1620
  if(!class_exists('FLJSMin')) {
1621
+ include FL_BUILDER_DIR . 'classes/class-fl-jsmin.php';
1622
  }
1623
+
1624
  // Save the js
1625
  if(!empty($js)) {
1626
  file_put_contents($asset_info['js'], FLJSMin::minify($js));
1627
  }
1628
  }
1629
+
1630
  /**
1631
  * @method log
1632
+ */
1633
  static public function log($data)
1634
+ {
1635
  ob_start();
1636
  print_r($data);
1637
  error_log(ob_get_clean());
classes/{FLJSMin.php → class-fl-jsmin.php} RENAMED
File without changes
css/fl-builder-layout.css CHANGED
@@ -215,6 +215,9 @@
215
  .fl-icon i {
216
  float: left;
217
  }
 
 
 
218
  .fl-icon-text {
219
  display: table-cell;
220
  text-align: left;
215
  .fl-icon i {
216
  float: left;
217
  }
218
+ .fl-icon i:before {
219
+ border: none !important;
220
+ }
221
  .fl-icon-text {
222
  display: table-cell;
223
  text-align: left;
css/fl-builder.css CHANGED
@@ -172,6 +172,23 @@ html.fl-builder-edit {
172
  display: none;
173
  }
174
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
  /* Builder Panel
176
  ------------------------------------------------------ */
177
 
@@ -288,11 +305,6 @@ html.fl-builder-edit {
288
  cursor: move;
289
  }
290
 
291
- /* Upgrade block */
292
- .fl-builder-block-upgrade {
293
- font-weight: bold !important;
294
- }
295
-
296
  /* Drag and Drop
297
  ------------------------------------------------------ */
298
 
172
  display: none;
173
  }
174
 
175
+ /* Upgrade button */
176
+ .fl-builder-upgrade-button {
177
+ background: #f7951e;
178
+ border-color: #de7c04;
179
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);
180
+ box-shadow: inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);
181
+ color: #fff !important;
182
+ text-decoration: none;
183
+ }
184
+ .fl-builder-upgrade-button:hover {
185
+ background: #de861b;
186
+ border-color: #c46e04;
187
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);
188
+ box-shadow: inset 0 1px 0 rgba(255,177,82,.5),0 1px 0 rgba(0,0,0,.15);
189
+ color: #fff !important;
190
+ }
191
+
192
  /* Builder Panel
193
  ------------------------------------------------------ */
194
 
305
  cursor: move;
306
  }
307
 
 
 
 
 
 
308
  /* Drag and Drop
309
  ------------------------------------------------------ */
310
 
css/fl-icon-selector.css CHANGED
@@ -2,10 +2,21 @@
2
  height: 100%;
3
  }
4
  .fl-icons-filter {
5
- position: absolute;
 
 
6
  right: 10px;
7
  top: 10px;
8
  }
 
 
 
 
 
 
 
 
 
9
  .fl-icons-list {
10
  bottom: 52px;
11
  left: 0;
2
  height: 100%;
3
  }
4
  .fl-icons-filter {
5
+ height: auto !important;
6
+ margin: 0 !important;
7
+ position: absolute !important;
8
  right: 10px;
9
  top: 10px;
10
  }
11
+ .fl-icons-filter select {
12
+ vertical-align: middle;
13
+ width: 160px;
14
+ }
15
+ .fl-icons-filter input {
16
+ line-height: 18px;
17
+ vertical-align: middle;
18
+ width: 160px;
19
+ }
20
  .fl-icons-list {
21
  bottom: 52px;
22
  left: 0;
fl-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: http://www.wpbeaverbuilder.com
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
- * Version: 1.4.3
7
  * Author: The Beaver Builder Team
8
  * Author URI: http://www.wpbeaverbuilder.com
9
  * Copyright: (c) 2014 Beaver Builder
@@ -11,29 +11,29 @@
11
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
  * Text Domain: fl-builder
13
  */
14
- define('FL_BUILDER_VERSION', '1.4.3');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
18
- define('FL_BUILDER_SUPPORT_URL', 'http://www.wpbeaverbuilder.com/support');
19
- define('FL_BUILDER_UPGRADE_URL', 'http://www.wpbeaverbuilder.com/pricing/?upgrade');
20
  define('FL_BUILDER_DEMO_URL', 'http://demos.wpbeaverbuilder.com');
21
  define('FL_BUILDER_OLD_DEMO_URL', 'http://demos.fastlinemedia.com');
22
  define('FL_BUILDER_DEMO_CACHE_URL', 'http://demos.wpbeaverbuilder.com/wp-content/uploads/fl-builder/');
23
 
24
  /* Classes */
25
- require_once 'classes/FLBuilder.php';
26
- require_once 'classes/FLBuilderAdmin.php';
27
- require_once 'classes/FLBuilderAdminPosts.php';
28
- require_once 'classes/FLBuilderAutoSuggest.php';
29
- require_once 'classes/FLBuilderColor.php';
30
- require_once 'classes/FLBuilderIcons.php';
31
- require_once 'classes/FLBuilderLoop.php';
32
- require_once 'classes/FLBuilderModel.php';
33
- require_once 'classes/FLBuilderModule.php';
34
- require_once 'classes/FLBuilderPhoto.php';
35
- require_once 'classes/FLBuilderUpdate.php';
36
- require_once 'classes/FLBuilderUtils.php';
37
 
38
  /* Includes */
39
  require_once 'includes/compatibility.php';
3
  * Plugin Name: Beaver Builder Plugin (Lite Version)
4
  * Plugin URI: http://www.wpbeaverbuilder.com
5
  * Description: A drag and drop frontend WordPress page builder plugin that works with almost any theme!
6
+ * Version: 1.4.5
7
  * Author: The Beaver Builder Team
8
  * Author URI: http://www.wpbeaverbuilder.com
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.4.5');
15
  define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
16
  define('FL_BUILDER_URL', plugins_url('/', __FILE__));
17
  define('FL_BUILDER_LITE', true);
18
+ define('FL_BUILDER_SUPPORT_URL', 'https://www.wpbeaverbuilder.com/support');
19
+ define('FL_BUILDER_UPGRADE_URL', 'https://www.wpbeaverbuilder.com/pricing/?upgrade');
20
  define('FL_BUILDER_DEMO_URL', 'http://demos.wpbeaverbuilder.com');
21
  define('FL_BUILDER_OLD_DEMO_URL', 'http://demos.fastlinemedia.com');
22
  define('FL_BUILDER_DEMO_CACHE_URL', 'http://demos.wpbeaverbuilder.com/wp-content/uploads/fl-builder/');
23
 
24
  /* Classes */
25
+ require_once 'classes/class-fl-builder.php';
26
+ require_once 'classes/class-fl-builder-admin.php';
27
+ require_once 'classes/class-fl-builder-admin-posts.php';
28
+ require_once 'classes/class-fl-builder-auto-suggest.php';
29
+ require_once 'classes/class-fl-builder-color.php';
30
+ require_once 'classes/class-fl-builder-icons.php';
31
+ require_once 'classes/class-fl-builder-loop.php';
32
+ require_once 'classes/class-fl-builder-model.php';
33
+ require_once 'classes/class-fl-builder-module.php';
34
+ require_once 'classes/class-fl-builder-photo.php';
35
+ require_once 'classes/class-fl-builder-update.php';
36
+ require_once 'classes/class-fl-builder-utils.php';
37
 
38
  /* Includes */
39
  require_once 'includes/compatibility.php';
includes/admin-posts.php CHANGED
@@ -4,8 +4,8 @@
4
  <a href="javascript:void(0);" onclick="return false;" class="fl-enable-builder<?php if($enabled) echo ' fl-active'; ?>"><?php echo FLBuilderModel::get_branding(); ?></a>
5
  </div>
6
  <div class="fl-builder-admin-ui">
7
- <h3><?php echo FLBuilderModel::get_branding() . ' ' . __('is currently active for this page.', 'fl-builder'); ?></h3>
8
- <a href="<?php echo FLBuilderModel::get_edit_url(); ?>" class="fl-launch-builder button button-primary button-large"><?php echo __('Launch', 'fl-builder'). ' ' . FLBuilderModel::get_branding(); ?></a>
9
  </div>
10
  <div class="fl-builder-loading"></div>
11
  </div>
4
  <a href="javascript:void(0);" onclick="return false;" class="fl-enable-builder<?php if($enabled) echo ' fl-active'; ?>"><?php echo FLBuilderModel::get_branding(); ?></a>
5
  </div>
6
  <div class="fl-builder-admin-ui">
7
+ <h3><?php printf( _x( '%s is currently active for this page.', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding() ); ?></h3>
8
+ <a href="<?php echo FLBuilderModel::get_edit_url(); ?>" class="fl-launch-builder button button-primary button-large"><?php printf( _x( 'Launch %s', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding() ); ?></a>
9
  </div>
10
  <div class="fl-builder-loading"></div>
11
  </div>
includes/admin-settings.php CHANGED
@@ -1,47 +1,47 @@
1
  <div class="wrap<?php if(!class_exists('FLBuilderMultisiteSettings')) echo ' fl-settings-single-install'; ?>">
2
-
3
  <h2 class="fl-settings-heading">
4
  <?php if(FLBuilderModel::get_branding_icon() != '') : ?>
5
  <img src="<?php echo FLBuilderModel::get_branding_icon(); ?>" />
6
  <?php endif; ?>
7
- <span><?php echo FLBuilderModel::get_branding() . ' ' . __('Settings', 'fl-builder'); ?></span>
8
  </h2>
9
-
10
  <?php if(!empty($_POST) && !isset($_POST['email'])) : ?>
11
  <div class="updated">
12
  <p><?php _e('Settings updated!', 'fl-builder'); ?></p>
13
  </div>
14
  <?php endif; ?>
15
-
16
  <div class="fl-settings-nav">
17
  <ul>
18
  <?php if(!class_exists('FLBuilderMultisiteSettings') && FL_BUILDER_LITE !== true) : ?>
19
  <li><a href="#license"><?php _e('License', 'fl-builder'); ?></a></li>
20
  <?php endif; ?>
21
-
22
  <?php if(FL_BUILDER_LITE === true) : ?>
23
  <li><a href="#upgrade"><?php _e('Upgrade', 'fl-builder'); ?></a></li>
24
  <?php endif; ?>
25
-
26
  <li><a href="#modules"><?php _e('Modules', 'fl-builder'); ?></a></li>
27
-
28
  <?php if(FL_BUILDER_LITE !== true) : ?>
29
  <li><a href="#templates"><?php _e('Templates', 'fl-builder'); ?></a></li>
30
  <?php endif; ?>
31
-
32
  <li><a href="#post-types"><?php _e('Post Types', 'fl-builder'); ?></a></li>
33
  <li><a href="#editing"><?php _e('Editing', 'fl-builder'); ?></a></li>
34
-
35
  <?php if(!class_exists('FLBuilderMultisiteSettings') && file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
36
  <li><a href="#branding"><?php _e('Branding', 'fl-builder'); ?></a></li>
37
  <?php endif; ?>
38
-
39
  <?php if(!class_exists('FLBuilderMultisiteSettings')) : ?>
40
  <li><a href="#uninstall"><?php _e('Uninstall', 'fl-builder'); ?></a></li>
41
  <?php endif; ?>
42
  </ul>
43
  </div>
44
-
45
  <div class="fl-settings-content">
46
 
47
  <?php if(!class_exists('FLBuilderMultisiteSettings') && FL_BUILDER_LITE !== true) : ?>
@@ -55,24 +55,24 @@
55
  <?php if(FL_BUILDER_LITE === true) : ?>
56
  <!-- UPGRADE -->
57
  <div id="fl-upgrade-form" class="fl-settings-form">
58
-
59
  <h3 class="fl-settings-form-header"><?php _e('Upgrade', 'fl-builder'); ?></h3>
60
-
61
  <p><?php _e('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!', 'fl-builder'); ?></p>
62
-
63
  <input type="button" class="button button-primary" value="<?php _e('Upgrade Now', 'fl-builder'); ?>" onclick="window.location.href='<?php echo FL_BUILDER_UPGRADE_URL; ?>';" style="margin-right: 10px;">
64
-
65
  <input type="button" class="button button-primary" value="<?php _e('Learn More', 'fl-builder'); ?>" onclick="window.location.href='http://www.wpbeaverbuilder.com/';">
66
-
67
  </div>
68
  <!-- UPGRADE -->
69
  <?php endif; ?>
70
-
71
  <!-- MODULES -->
72
  <div id="fl-modules-form" class="fl-settings-form">
73
-
74
  <h3 class="fl-settings-form-header"><?php _e('Enabled Modules', 'fl-builder'); ?></h3>
75
-
76
  <form id="modules-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#modules'); ?>" method="post">
77
 
78
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
@@ -81,26 +81,26 @@
81
  <?php _e('Override network settings?', 'fl-builder'); ?>
82
  </label>
83
  <?php endif; ?>
84
-
85
  <div class="fl-settings-form-content">
86
-
87
  <p><?php _e('Check or uncheck modules below to enable or disable them.', 'fl-builder'); ?></p>
88
- <?php
89
-
90
  $enabled_modules = FLBuilderModel::get_enabled_modules();
91
  $checked = in_array('all', $enabled_modules) ? 'checked' : '';
92
-
93
  ?>
94
  <label>
95
  <input class="fl-module-all-cb" type="checkbox" name="fl-modules[]" value="all" <?php echo $checked; ?> />
96
- <?php _e('All', 'fl-builder'); ?>
97
  </label>
98
- <?php
99
-
100
- foreach(FLBuilderModel::$modules as $module) :
101
-
102
  $checked = in_array($module->slug, $enabled_modules) ? 'checked' : '';
103
-
104
  ?>
105
  <p>
106
  <label>
@@ -111,7 +111,7 @@
111
  <?php endforeach; ?>
112
  </div>
113
  <p class="submit">
114
- <input type="submit" name="update" class="button-primary" value="Save Module Settings" />
115
  <?php wp_nonce_field('modules', 'fl-modules-nonce'); ?>
116
  </p>
117
  </form>
@@ -121,77 +121,77 @@
121
  <?php if(FL_BUILDER_LITE !== true) : ?>
122
  <!-- TEMPLATES -->
123
  <div id="fl-templates-form" class="fl-settings-form">
124
-
125
  <h3 class="fl-settings-form-header"><?php _e('Template Settings', 'fl-builder'); ?></h3>
126
-
127
  <form id="templates-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#templates'); ?>" method="post">
128
-
129
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
130
  <label>
131
  <input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_enabled_templates')) echo 'checked="checked"'; ?> />
132
  <?php _e('Override network settings?', 'fl-builder'); ?>
133
  </label>
134
  <?php endif; ?>
135
-
136
  <div class="fl-settings-form-content">
137
-
138
  <p><?php _e('Enable or disable templates using the options below.', 'fl-builder'); ?></p>
139
  <?php
140
-
141
  $enabled_templates = FLBuilderModel::get_enabled_templates();
142
-
143
  ?>
144
- <select name="fl-template-settings">
145
- <option value="enabled" <?php selected($enabled_templates, 'enabled'); ?>><?php _e('Enable All Templates'); ?></option>
146
- <option value="core" <?php selected($enabled_templates, 'core'); ?>><?php _e('Enable Core Templates Only'); ?></option>
147
- <option value="user" <?php selected($enabled_templates, 'user'); ?>><?php _e('Enable User Templates Only'); ?></option>
148
- <option value="disabled" <?php selected($enabled_templates, 'disabled'); ?>><?php _e('Disable All Templates'); ?></option>
149
- </select>
150
- </div>
151
  <p class="submit">
152
- <input type="submit" name="update" class="button-primary" value="Save Template Settings" />
153
  <?php wp_nonce_field('templates', 'fl-templates-nonce'); ?>
154
  </p>
155
  </form>
156
  </div>
157
  <!-- TEMPLATES -->
158
  <?php endif; ?>
159
-
160
  <!-- POST TYPES -->
161
  <div id="fl-post-types-form" class="fl-settings-form">
162
-
163
  <h3 class="fl-settings-form-header"><?php _e('Post Types', 'fl-builder'); ?></h3>
164
-
165
  <form id="post-types-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#post-types'); ?>" method="post">
166
-
167
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
168
  <label>
169
  <input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_post_types')) echo 'checked="checked"'; ?> />
170
  <?php _e('Override network settings?', 'fl-builder'); ?>
171
  </label>
172
  <?php endif; ?>
173
-
174
  <div class="fl-settings-form-content">
175
-
176
  <p><?php _e('Select the post types you would like the builder to work with.', 'fl-builder'); ?></p>
177
  <p><?php _e('NOTE: Not all custom post types may be supported.', 'fl-builder'); ?></p>
178
-
179
  <?php
180
-
181
  $saved_post_types = FLBuilderModel::get_post_types();
182
  $post_types = get_post_types(array('public' => true), 'objects');
183
-
184
  foreach($post_types as $post_type) :
185
-
186
  $checked = in_array($post_type->name, $saved_post_types) ? 'checked' : '';
187
-
188
  if($post_type->name == 'attachment') {
189
  continue;
190
  }
191
  if($post_type->name == 'fl-builder-template') {
192
  continue;
193
  }
194
-
195
  ?>
196
  <p>
197
  <label>
@@ -202,61 +202,61 @@
202
  <?php endforeach; ?>
203
  </div>
204
  <p class="submit">
205
- <input type="submit" name="update" class="button-primary" value="Save Post Types" />
206
  <?php wp_nonce_field('post-types', 'fl-post-types-nonce'); ?>
207
  </p>
208
  </form>
209
  </div>
210
  <!-- POST TYPES -->
211
-
212
  <!-- EDITING -->
213
  <div id="fl-editing-form" class="fl-settings-form">
214
-
215
  <h3 class="fl-settings-form-header"><?php _e('Editing Settings', 'fl-builder'); ?></h3>
216
-
217
  <form id="editing-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#editing'); ?>" method="post">
218
-
219
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
220
  <label>
221
  <input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_editing_capability')) echo 'checked="checked"'; ?> />
222
  <?php _e('Override network settings?', 'fl-builder'); ?>
223
  </label>
224
  <?php endif; ?>
225
-
226
  <div class="fl-settings-form-content">
227
-
228
- <p><?php echo sprintf(__('Set the <a href="%s" target="_blank">capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules.', 'fl-builder'), 'http://codex.wordpress.org/Roles_and_Capabilities#Capability_vs._Role_Table'); ?></p>
229
-
230
  <input type="text" name="fl-editing-capability" value="<?php echo esc_html(FLBuilderModel::get_editing_capability()); ?>" class="regular-text" />
231
-
232
  </div>
233
  <p class="submit">
234
- <input type="submit" name="update" class="button-primary" value="Save Editing Settings" />
235
  <?php wp_nonce_field('editing', 'fl-editing-nonce'); ?>
236
  </p>
237
  </form>
238
  </div>
239
  <!-- EDITING -->
240
-
241
  <?php if(file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
242
  <!-- BRANDING -->
243
  <?php include FL_BUILDER_DIR . 'includes/admin-branding.php'; ?>
244
  <!-- BRANDING -->
245
  <?php endif; ?>
246
-
247
  <!-- UNINSTALL -->
248
  <div id="fl-uninstall-form" class="fl-settings-form">
249
-
250
  <h3 class="fl-settings-form-header"><?php _e('Uninstall', 'fl-builder'); ?></h3>
251
 
252
  <p><?php _e('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.', 'fl-builder'); ?></p>
253
-
254
- <p><strong><?php _e('NOTE:'); ?></strong> <?php _e('The builder does not delete the post meta _fl_builder_data, _fl_builder_draft and _fl_builder_enabled in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values.', 'fl-builder'); ?></p>
255
-
256
  <?php if(is_multisite()) : ?>
257
- <p><strong style="color:#ff0000;"><?php _e('NOTE:'); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?></p>
258
  <?php endif; ?>
259
-
260
  <form id="uninstall-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings'); ?>" method="post">
261
  <p>
262
  <input type="submit" name="uninstall-submit" class="button button-primary" value="<?php _e('Uninstall', 'fl-builder'); ?>">
@@ -265,13 +265,13 @@
265
  </form>
266
  </div>
267
  <!-- UNINSTALL -->
268
-
269
  </div>
270
- </div>
271
  <script type="text/javascript">
272
 
273
  jQuery(function(){
274
-
275
  FLBuilderAdminSettings.strings = {
276
  uninstall: '<?php _e('Please type "uninstall" in the box below to confirm that you really want to uninstall the page builder and all of its data.', 'fl-builder'); ?>'
277
  };
1
  <div class="wrap<?php if(!class_exists('FLBuilderMultisiteSettings')) echo ' fl-settings-single-install'; ?>">
2
+
3
  <h2 class="fl-settings-heading">
4
  <?php if(FLBuilderModel::get_branding_icon() != '') : ?>
5
  <img src="<?php echo FLBuilderModel::get_branding_icon(); ?>" />
6
  <?php endif; ?>
7
+ <span><?php printf( _x( '%s Settings', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding() ); ?></span>
8
  </h2>
9
+
10
  <?php if(!empty($_POST) && !isset($_POST['email'])) : ?>
11
  <div class="updated">
12
  <p><?php _e('Settings updated!', 'fl-builder'); ?></p>
13
  </div>
14
  <?php endif; ?>
15
+
16
  <div class="fl-settings-nav">
17
  <ul>
18
  <?php if(!class_exists('FLBuilderMultisiteSettings') && FL_BUILDER_LITE !== true) : ?>
19
  <li><a href="#license"><?php _e('License', 'fl-builder'); ?></a></li>
20
  <?php endif; ?>
21
+
22
  <?php if(FL_BUILDER_LITE === true) : ?>
23
  <li><a href="#upgrade"><?php _e('Upgrade', 'fl-builder'); ?></a></li>
24
  <?php endif; ?>
25
+
26
  <li><a href="#modules"><?php _e('Modules', 'fl-builder'); ?></a></li>
27
+
28
  <?php if(FL_BUILDER_LITE !== true) : ?>
29
  <li><a href="#templates"><?php _e('Templates', 'fl-builder'); ?></a></li>
30
  <?php endif; ?>
31
+
32
  <li><a href="#post-types"><?php _e('Post Types', 'fl-builder'); ?></a></li>
33
  <li><a href="#editing"><?php _e('Editing', 'fl-builder'); ?></a></li>
34
+
35
  <?php if(!class_exists('FLBuilderMultisiteSettings') && file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
36
  <li><a href="#branding"><?php _e('Branding', 'fl-builder'); ?></a></li>
37
  <?php endif; ?>
38
+
39
  <?php if(!class_exists('FLBuilderMultisiteSettings')) : ?>
40
  <li><a href="#uninstall"><?php _e('Uninstall', 'fl-builder'); ?></a></li>
41
  <?php endif; ?>
42
  </ul>
43
  </div>
44
+
45
  <div class="fl-settings-content">
46
 
47
  <?php if(!class_exists('FLBuilderMultisiteSettings') && FL_BUILDER_LITE !== true) : ?>
55
  <?php if(FL_BUILDER_LITE === true) : ?>
56
  <!-- UPGRADE -->
57
  <div id="fl-upgrade-form" class="fl-settings-form">
58
+
59
  <h3 class="fl-settings-form-header"><?php _e('Upgrade', 'fl-builder'); ?></h3>
60
+
61
  <p><?php _e('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!', 'fl-builder'); ?></p>
62
+
63
  <input type="button" class="button button-primary" value="<?php _e('Upgrade Now', 'fl-builder'); ?>" onclick="window.location.href='<?php echo FL_BUILDER_UPGRADE_URL; ?>';" style="margin-right: 10px;">
64
+
65
  <input type="button" class="button button-primary" value="<?php _e('Learn More', 'fl-builder'); ?>" onclick="window.location.href='http://www.wpbeaverbuilder.com/';">
66
+
67
  </div>
68
  <!-- UPGRADE -->
69
  <?php endif; ?>
70
+
71
  <!-- MODULES -->
72
  <div id="fl-modules-form" class="fl-settings-form">
73
+
74
  <h3 class="fl-settings-form-header"><?php _e('Enabled Modules', 'fl-builder'); ?></h3>
75
+
76
  <form id="modules-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#modules'); ?>" method="post">
77
 
78
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
81
  <?php _e('Override network settings?', 'fl-builder'); ?>
82
  </label>
83
  <?php endif; ?>
84
+
85
  <div class="fl-settings-form-content">
86
+
87
  <p><?php _e('Check or uncheck modules below to enable or disable them.', 'fl-builder'); ?></p>
88
+ <?php
89
+
90
  $enabled_modules = FLBuilderModel::get_enabled_modules();
91
  $checked = in_array('all', $enabled_modules) ? 'checked' : '';
92
+
93
  ?>
94
  <label>
95
  <input class="fl-module-all-cb" type="checkbox" name="fl-modules[]" value="all" <?php echo $checked; ?> />
96
+ <?php _ex( 'All', 'Plugin setup page: Modules.', 'fl-builder' ); ?>
97
  </label>
98
+ <?php
99
+
100
+ foreach(FLBuilderModel::$modules as $module) :
101
+
102
  $checked = in_array($module->slug, $enabled_modules) ? 'checked' : '';
103
+
104
  ?>
105
  <p>
106
  <label>
111
  <?php endforeach; ?>
112
  </div>
113
  <p class="submit">
114
+ <input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Module Settings', 'fl-builder' ); ?>" />
115
  <?php wp_nonce_field('modules', 'fl-modules-nonce'); ?>
116
  </p>
117
  </form>
121
  <?php if(FL_BUILDER_LITE !== true) : ?>
122
  <!-- TEMPLATES -->
123
  <div id="fl-templates-form" class="fl-settings-form">
124
+
125
  <h3 class="fl-settings-form-header"><?php _e('Template Settings', 'fl-builder'); ?></h3>
126
+
127
  <form id="templates-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#templates'); ?>" method="post">
128
+
129
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
130
  <label>
131
  <input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_enabled_templates')) echo 'checked="checked"'; ?> />
132
  <?php _e('Override network settings?', 'fl-builder'); ?>
133
  </label>
134
  <?php endif; ?>
135
+
136
  <div class="fl-settings-form-content">
137
+
138
  <p><?php _e('Enable or disable templates using the options below.', 'fl-builder'); ?></p>
139
  <?php
140
+
141
  $enabled_templates = FLBuilderModel::get_enabled_templates();
142
+
143
  ?>
144
+ <select name="fl-template-settings">
145
+ <option value="enabled" <?php selected( $enabled_templates, 'enabled' ); ?>><?php _e( 'Enable All Templates', 'fl-builder' ); ?></option>
146
+ <option value="core" <?php selected( $enabled_templates, 'core' ); ?>><?php _e( 'Enable Core Templates Only', 'fl-builder' ); ?></option>
147
+ <option value="user" <?php selected( $enabled_templates, 'user' ); ?>><?php _e( 'Enable User Templates Only', 'fl-builder' ); ?></option>
148
+ <option value="disabled" <?php selected( $enabled_templates, 'disabled' ); ?>><?php _e( 'Disable All Templates', 'fl-builder' ); ?></option>
149
+ </select>
150
+ </div>
151
  <p class="submit">
152
+ <input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Template Settings', 'fl-builder' ); ?>" />
153
  <?php wp_nonce_field('templates', 'fl-templates-nonce'); ?>
154
  </p>
155
  </form>
156
  </div>
157
  <!-- TEMPLATES -->
158
  <?php endif; ?>
159
+
160
  <!-- POST TYPES -->
161
  <div id="fl-post-types-form" class="fl-settings-form">
162
+
163
  <h3 class="fl-settings-form-header"><?php _e('Post Types', 'fl-builder'); ?></h3>
164
+
165
  <form id="post-types-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#post-types'); ?>" method="post">
166
+
167
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
168
  <label>
169
  <input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_post_types')) echo 'checked="checked"'; ?> />
170
  <?php _e('Override network settings?', 'fl-builder'); ?>
171
  </label>
172
  <?php endif; ?>
173
+
174
  <div class="fl-settings-form-content">
175
+
176
  <p><?php _e('Select the post types you would like the builder to work with.', 'fl-builder'); ?></p>
177
  <p><?php _e('NOTE: Not all custom post types may be supported.', 'fl-builder'); ?></p>
178
+
179
  <?php
180
+
181
  $saved_post_types = FLBuilderModel::get_post_types();
182
  $post_types = get_post_types(array('public' => true), 'objects');
183
+
184
  foreach($post_types as $post_type) :
185
+
186
  $checked = in_array($post_type->name, $saved_post_types) ? 'checked' : '';
187
+
188
  if($post_type->name == 'attachment') {
189
  continue;
190
  }
191
  if($post_type->name == 'fl-builder-template') {
192
  continue;
193
  }
194
+
195
  ?>
196
  <p>
197
  <label>
202
  <?php endforeach; ?>
203
  </div>
204
  <p class="submit">
205
+ <input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Post Types', 'fl-builder' ); ?>" />
206
  <?php wp_nonce_field('post-types', 'fl-post-types-nonce'); ?>
207
  </p>
208
  </form>
209
  </div>
210
  <!-- POST TYPES -->
211
+
212
  <!-- EDITING -->
213
  <div id="fl-editing-form" class="fl-settings-form">
214
+
215
  <h3 class="fl-settings-form-header"><?php _e('Editing Settings', 'fl-builder'); ?></h3>
216
+
217
  <form id="editing-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings#editing'); ?>" method="post">
218
+
219
  <?php if(class_exists('FLBuilderMultisiteSettings')) : ?>
220
  <label>
221
  <input class="fl-override-ms-cb" type="checkbox" name="fl-override-ms" value="1" <?php if(get_option('_fl_builder_editing_capability')) echo 'checked="checked"'; ?> />
222
  <?php _e('Override network settings?', 'fl-builder'); ?>
223
  </label>
224
  <?php endif; ?>
225
+
226
  <div class="fl-settings-form-content">
227
+
228
+ <p><?php printf( __( 'Set the <a%s>capability</a> required for users to access advanced builder editing such as adding, deleting or moving modules.', 'fl-builder' ), ' href="http://codex.wordpress.org/Roles_and_Capabilities#Capability_vs._Role_Table" target="_blank"' ); ?></p>
229
+
230
  <input type="text" name="fl-editing-capability" value="<?php echo esc_html(FLBuilderModel::get_editing_capability()); ?>" class="regular-text" />
231
+
232
  </div>
233
  <p class="submit">
234
+ <input type="submit" name="update" class="button-primary" value="<?php esc_attr_e( 'Save Editing Settings', 'fl-builder' ); ?>" />
235
  <?php wp_nonce_field('editing', 'fl-editing-nonce'); ?>
236
  </p>
237
  </form>
238
  </div>
239
  <!-- EDITING -->
240
+
241
  <?php if(file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
242
  <!-- BRANDING -->
243
  <?php include FL_BUILDER_DIR . 'includes/admin-branding.php'; ?>
244
  <!-- BRANDING -->
245
  <?php endif; ?>
246
+
247
  <!-- UNINSTALL -->
248
  <div id="fl-uninstall-form" class="fl-settings-form">
249
+
250
  <h3 class="fl-settings-form-header"><?php _e('Uninstall', 'fl-builder'); ?></h3>
251
 
252
  <p><?php _e('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.', 'fl-builder'); ?></p>
253
+
254
+ <p><strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e( '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.', 'fl-builder' ); ?></p>
255
+
256
  <?php if(is_multisite()) : ?>
257
+ <p><strong style="color:#ff0000;"><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?></p>
258
  <?php endif; ?>
259
+
260
  <form id="uninstall-form" action="<?php echo admin_url('/options-general.php?page=fl-builder-settings'); ?>" method="post">
261
  <p>
262
  <input type="submit" name="uninstall-submit" class="button button-primary" value="<?php _e('Uninstall', 'fl-builder'); ?>">
265
  </form>
266
  </div>
267
  <!-- UNINSTALL -->
268
+
269
  </div>
270
+ </div>
271
  <script type="text/javascript">
272
 
273
  jQuery(function(){
274
+
275
  FLBuilderAdminSettings.strings = {
276
  uninstall: '<?php _e('Please type "uninstall" in the box below to confirm that you really want to uninstall the page builder and all of its data.', 'fl-builder'); ?>'
277
  };
includes/column-settings.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
-
3
  FLBuilder::register_settings_form('col', array(
4
  'title' => __('Column Settings', 'fl-builder'),
5
  'tabs' => array(
@@ -13,7 +13,7 @@ FLBuilder::register_settings_form('col', array(
13
  'type' => 'text',
14
  'label' => __('Column Width', 'fl-builder'),
15
  'default' => '',
16
- 'description' => __('%', 'fl-builder'),
17
  'maxlength' => '5',
18
  'size' => '6',
19
  'preview' => array(
@@ -57,7 +57,7 @@ FLBuilder::register_settings_form('col', array(
57
  'type' => 'none'
58
  )
59
  )
60
- )
61
  ),
62
  'border' => array(
63
  'title' => __('Border', 'fl-builder'),
@@ -68,11 +68,11 @@ FLBuilder::register_settings_form('col', array(
68
  'default' => '',
69
  'help' => __('The type of border to use. Double borders must have a width of at least 3px to render properly.', 'fl-builder'),
70
  'options' => array(
71
- '' => __('None', 'fl-builder'),
72
- 'solid' => __('Solid', 'fl-builder'),
73
- 'dashed' => __('Dashed', 'fl-builder'),
74
- 'dotted' => __('Dotted', 'fl-builder'),
75
- 'double' => __('Double', 'fl-builder')
76
  ),
77
  'toggle' => array(
78
  '' => array(
@@ -118,7 +118,7 @@ FLBuilder::register_settings_form('col', array(
118
  'type' => 'text',
119
  'label' => __('Top Width', 'fl-builder'),
120
  'default' => '1',
121
- 'description' => __('px', 'fl-builder'),
122
  'maxlength' => '3',
123
  'size' => '5',
124
  'placeholder' => '0',
@@ -130,7 +130,7 @@ FLBuilder::register_settings_form('col', array(
130
  'type' => 'text',
131
  'label' => __('Bottom Width', 'fl-builder'),
132
  'default' => '1',
133
- 'description' => __('px', 'fl-builder'),
134
  'maxlength' => '3',
135
  'size' => '5',
136
  'placeholder' => '0',
@@ -142,7 +142,7 @@ FLBuilder::register_settings_form('col', array(
142
  'type' => 'text',
143
  'label' => __('Left Width', 'fl-builder'),
144
  'default' => '1',
145
- 'description' => __('px', 'fl-builder'),
146
  'maxlength' => '3',
147
  'size' => '5',
148
  'placeholder' => '0',
@@ -154,7 +154,7 @@ FLBuilder::register_settings_form('col', array(
154
  'type' => 'text',
155
  'label' => __('Right Width', 'fl-builder'),
156
  'default' => '1',
157
- 'description' => __('px', 'fl-builder'),
158
  'maxlength' => '3',
159
  'size' => '5',
160
  'placeholder' => '0',
@@ -175,7 +175,7 @@ FLBuilder::register_settings_form('col', array(
175
  'class' => array(
176
  'type' => 'text',
177
  'label' => __('CSS Class', 'fl-builder'),
178
- 'help' => __('A custom CSS class that will be applied to this column. Spaces only, no dots.'),
179
  'preview' => array(
180
  'type' => 'none'
181
  )
@@ -183,7 +183,7 @@ FLBuilder::register_settings_form('col', array(
183
  )
184
  ),
185
  'responsive' => array(
186
- 'title' => __('Responsive', 'fl-builder'),
187
  'fields' => array(
188
  'responsive_display' => array(
189
  'type' => 'select',
@@ -196,7 +196,7 @@ FLBuilder::register_settings_form('col', array(
196
  'medium-mobile' => __('Medium &amp; Small Devices Only', 'fl-builder'),
197
  'mobile' => __('Small Devices Only', 'fl-builder'),
198
  ),
199
- 'help' => __('Choose whether to show or hide this column at different device sizes.'),
200
  'preview' => array(
201
  'type' => 'none'
202
  )
@@ -204,7 +204,7 @@ FLBuilder::register_settings_form('col', array(
204
  'medium_size' => array(
205
  'type' => 'select',
206
  'label' => __('Medium Device Width', 'fl-builder'),
207
- 'help' => __('The width of this column on medium devices such as tablets.'),
208
  'options' => array(
209
  'default' => __('Default', 'fl-builder'),
210
  'custom' => __('Custom', 'fl-builder'),
@@ -222,7 +222,7 @@ FLBuilder::register_settings_form('col', array(
222
  'type' => 'text',
223
  'label' => __('Custom Medium Device Width', 'fl-builder'),
224
  'default' => '100',
225
- 'description' => __('%', 'fl-builder'),
226
  'maxlength' => '5',
227
  'size' => '6',
228
  'preview' => array(
@@ -232,7 +232,7 @@ FLBuilder::register_settings_form('col', array(
232
  'responsive_size' => array(
233
  'type' => 'select',
234
  'label' => __('Small Device Width', 'fl-builder'),
235
- 'help' => __('The width of this column on small devices such as phones.'),
236
  'options' => array(
237
  'default' => __('Default', 'fl-builder'),
238
  'custom' => __('Custom', 'fl-builder'),
@@ -248,9 +248,9 @@ FLBuilder::register_settings_form('col', array(
248
  ),
249
  'custom_responsive_size' => array(
250
  'type' => 'text',
251
- 'label' => 'Custom Small Device Width',
252
  'default' => '100',
253
- 'description' => __('%', 'fl-builder'),
254
  'maxlength' => '5',
255
  'size' => '6',
256
  'preview' => array(
@@ -264,9 +264,9 @@ FLBuilder::register_settings_form('col', array(
264
  'fields' => array(
265
  'margin_top' => array(
266
  'type' => 'text',
267
- 'label' => __('Top', 'fl-builder'),
268
  'default' => '',
269
- 'description' => __('px', 'fl-builder'),
270
  'maxlength' => '4',
271
  'size' => '5',
272
  'placeholder' => '0',
@@ -276,9 +276,9 @@ FLBuilder::register_settings_form('col', array(
276
  ),
277
  'margin_bottom' => array(
278
  'type' => 'text',
279
- 'label' => __('Bottom', 'fl-builder'),
280
  'default' => '',
281
- 'description' => __('px', 'fl-builder'),
282
  'maxlength' => '4',
283
  'size' => '5',
284
  'placeholder' => '0',
@@ -288,9 +288,9 @@ FLBuilder::register_settings_form('col', array(
288
  ),
289
  'margin_left' => array(
290
  'type' => 'text',
291
- 'label' => __('Left', 'fl-builder'),
292
  'default' => '',
293
- 'description' => __('px', 'fl-builder'),
294
  'maxlength' => '4',
295
  'size' => '5',
296
  'placeholder' => '0',
@@ -300,9 +300,9 @@ FLBuilder::register_settings_form('col', array(
300
  ),
301
  'margin_right' => array(
302
  'type' => 'text',
303
- 'label' => __('Right', 'fl-builder'),
304
  'default' => '',
305
- 'description' => __('px', 'fl-builder'),
306
  'maxlength' => '4',
307
  'size' => '5',
308
  'placeholder' => '0',
@@ -317,9 +317,9 @@ FLBuilder::register_settings_form('col', array(
317
  'fields' => array(
318
  'padding_top' => array(
319
  'type' => 'text',
320
- 'label' => __('Top', 'fl-builder'),
321
  'default' => '',
322
- 'description' => __('px', 'fl-builder'),
323
  'maxlength' => '4',
324
  'size' => '5',
325
  'placeholder' => '0',
@@ -329,9 +329,9 @@ FLBuilder::register_settings_form('col', array(
329
  ),
330
  'padding_bottom' => array(
331
  'type' => 'text',
332
- 'label' => __('Bottom', 'fl-builder'),
333
  'default' => '',
334
- 'description' => __('px', 'fl-builder'),
335
  'maxlength' => '4',
336
  'size' => '5',
337
  'placeholder' => '0',
@@ -341,9 +341,9 @@ FLBuilder::register_settings_form('col', array(
341
  ),
342
  'padding_left' => array(
343
  'type' => 'text',
344
- 'label' => __('Left', 'fl-builder'),
345
  'default' => '',
346
- 'description' => __('px', 'fl-builder'),
347
  'maxlength' => '4',
348
  'size' => '5',
349
  'placeholder' => '0',
@@ -353,9 +353,9 @@ FLBuilder::register_settings_form('col', array(
353
  ),
354
  'padding_right' => array(
355
  'type' => 'text',
356
- 'label' => __('Right', 'fl-builder'),
357
  'default' => '',
358
- 'description' => __('px', 'fl-builder'),
359
  'maxlength' => '4',
360
  'size' => '5',
361
  'placeholder' => '0',
1
  <?php
2
+
3
  FLBuilder::register_settings_form('col', array(
4
  'title' => __('Column Settings', 'fl-builder'),
5
  'tabs' => array(
13
  'type' => 'text',
14
  'label' => __('Column Width', 'fl-builder'),
15
  'default' => '',
16
+ 'description' => '%',
17
  'maxlength' => '5',
18
  'size' => '6',
19
  'preview' => array(
57
  'type' => 'none'
58
  )
59
  )
60
+ )
61
  ),
62
  'border' => array(
63
  'title' => __('Border', 'fl-builder'),
68
  'default' => '',
69
  'help' => __('The type of border to use. Double borders must have a width of at least 3px to render properly.', 'fl-builder'),
70
  'options' => array(
71
+ '' => _x( 'None', 'Border type.', 'fl-builder' ),
72
+ 'solid' => _x( 'Solid', 'Border type.', 'fl-builder' ),
73
+ 'dashed' => _x( 'Dashed', 'Border type.', 'fl-builder' ),
74
+ 'dotted' => _x( 'Dotted', 'Border type.', 'fl-builder' ),
75
+ 'double' => _x( 'Double', 'Border type.', 'fl-builder' )
76
  ),
77
  'toggle' => array(
78
  '' => array(
118
  'type' => 'text',
119
  'label' => __('Top Width', 'fl-builder'),
120
  'default' => '1',
121
+ 'description' => 'px',
122
  'maxlength' => '3',
123
  'size' => '5',
124
  'placeholder' => '0',
130
  'type' => 'text',
131
  'label' => __('Bottom Width', 'fl-builder'),
132
  'default' => '1',
133
+ 'description' => 'px',
134
  'maxlength' => '3',
135
  'size' => '5',
136
  'placeholder' => '0',
142
  'type' => 'text',
143
  'label' => __('Left Width', 'fl-builder'),
144
  'default' => '1',
145
+ 'description' => 'px',
146
  'maxlength' => '3',
147
  'size' => '5',
148
  'placeholder' => '0',
154
  'type' => 'text',
155
  'label' => __('Right Width', 'fl-builder'),
156
  'default' => '1',
157
+ 'description' => 'px',
158
  'maxlength' => '3',
159
  'size' => '5',
160
  'placeholder' => '0',
175
  'class' => array(
176
  'type' => 'text',
177
  'label' => __('CSS Class', 'fl-builder'),
178
+ 'help' => __( 'A custom CSS class that will be applied to this column. Spaces only, no dots.', 'fl-builder' ),
179
  'preview' => array(
180
  'type' => 'none'
181
  )
183
  )
184
  ),
185
  'responsive' => array(
186
+ 'title' => __('Responsive Layout', 'fl-builder'),
187
  'fields' => array(
188
  'responsive_display' => array(
189
  'type' => 'select',
196
  'medium-mobile' => __('Medium &amp; Small Devices Only', 'fl-builder'),
197
  'mobile' => __('Small Devices Only', 'fl-builder'),
198
  ),
199
+ 'help' => __( 'Choose whether to show or hide this column at different device sizes.', 'fl-builder' ),
200
  'preview' => array(
201
  'type' => 'none'
202
  )
204
  'medium_size' => array(
205
  'type' => 'select',
206
  'label' => __('Medium Device Width', 'fl-builder'),
207
+ 'help' => __( 'The width of this column on medium devices such as tablets.', 'fl-builder' ),
208
  'options' => array(
209
  'default' => __('Default', 'fl-builder'),
210
  'custom' => __('Custom', 'fl-builder'),
222
  'type' => 'text',
223
  'label' => __('Custom Medium Device Width', 'fl-builder'),
224
  'default' => '100',
225
+ 'description' => '%',
226
  'maxlength' => '5',
227
  'size' => '6',
228
  'preview' => array(
232
  'responsive_size' => array(
233
  'type' => 'select',
234
  'label' => __('Small Device Width', 'fl-builder'),
235
+ 'help' => __( 'The width of this column on small devices such as phones.', 'fl-builder' ),
236
  'options' => array(
237
  'default' => __('Default', 'fl-builder'),
238
  'custom' => __('Custom', 'fl-builder'),
248
  ),
249
  'custom_responsive_size' => array(
250
  'type' => 'text',
251
+ 'label' => __( 'Custom Small Device Width', 'fl-builder' ),
252
  'default' => '100',
253
+ 'description' => '%',
254
  'maxlength' => '5',
255
  'size' => '6',
256
  'preview' => array(
264
  'fields' => array(
265
  'margin_top' => array(
266
  'type' => 'text',
267
+ 'label' => __( 'Top', 'fl-builder' ),
268
  'default' => '',
269
+ 'description' => 'px',
270
  'maxlength' => '4',
271
  'size' => '5',
272
  'placeholder' => '0',
276
  ),
277
  'margin_bottom' => array(
278
  'type' => 'text',
279
+ 'label' => __( 'Bottom', 'fl-builder' ),
280
  'default' => '',
281
+ 'description' => 'px',
282
  'maxlength' => '4',
283
  'size' => '5',
284
  'placeholder' => '0',
288
  ),
289
  'margin_left' => array(
290
  'type' => 'text',
291
+ 'label' => __( 'Left', 'fl-builder' ),
292
  'default' => '',
293
+ 'description' => 'px',
294
  'maxlength' => '4',
295
  'size' => '5',
296
  'placeholder' => '0',
300
  ),
301
  'margin_right' => array(
302
  'type' => 'text',
303
+ 'label' => __( 'Right', 'fl-builder' ),
304
  'default' => '',
305
+ 'description' => 'px',
306
  'maxlength' => '4',
307
  'size' => '5',
308
  'placeholder' => '0',
317
  'fields' => array(
318
  'padding_top' => array(
319
  'type' => 'text',
320
+ 'label' => __( 'Top', 'fl-builder' ),
321
  'default' => '',
322
+ 'description' => 'px',
323
  'maxlength' => '4',
324
  'size' => '5',
325
  'placeholder' => '0',
329
  ),
330
  'padding_bottom' => array(
331
  'type' => 'text',
332
+ 'label' => __( 'Bottom', 'fl-builder' ),
333
  'default' => '',
334
+ 'description' => 'px',
335
  'maxlength' => '4',
336
  'size' => '5',
337
  'placeholder' => '0',
341
  ),
342
  'padding_left' => array(
343
  'type' => 'text',
344
+ 'label' => __( 'Left', 'fl-builder' ),
345
  'default' => '',
346
+ 'description' => 'px',
347
  'maxlength' => '4',
348
  'size' => '5',
349
  'placeholder' => '0',
353
  ),
354
  'padding_right' => array(
355
  'type' => 'text',
356
+ 'label' => __( 'Right', 'fl-builder' ),
357
  'default' => '',
358
+ 'description' => 'px',
359
  'maxlength' => '4',
360
  'size' => '5',
361
  'placeholder' => '0',
includes/field-form.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="fl-form-field fl-builder-custom-field"<?php if(isset($field['preview_text'])) echo ' data-preview-text="'. $field['preview_text'] .'"'; ?>>
2
  <div class="fl-form-field-preview-text">
3
- <?php
4
 
5
  if(isset($field['preview_text']) && is_object($value)) {
6
 
@@ -11,9 +11,9 @@
11
  echo FLBuilderUtils::snippetwop(strip_tags(str_replace('&#39;', "'", $value->$field['preview_text'])), 35);
12
  }
13
  }
14
-
15
  ?>
16
  </div>
17
- <a class="fl-form-field-edit" href="javascript:void(0);" onclick="return false;" data-type="<?php echo $field['form']; ?>"><?php _e('Edit', 'fl-builder'); echo ' ' . $field['label']; ?></a>
18
  <input name="<?php echo $name; ?>" type="hidden" value='<?php echo str_replace("'", '&#39;', json_encode($value)); ?>' />
19
  </div>
1
  <div class="fl-form-field fl-builder-custom-field"<?php if(isset($field['preview_text'])) echo ' data-preview-text="'. $field['preview_text'] .'"'; ?>>
2
  <div class="fl-form-field-preview-text">
3
+ <?php
4
 
5
  if(isset($field['preview_text']) && is_object($value)) {
6
 
11
  echo FLBuilderUtils::snippetwop(strip_tags(str_replace('&#39;', "'", $value->$field['preview_text'])), 35);
12
  }
13
  }
14
+
15
  ?>
16
  </div>
17
+ <a class="fl-form-field-edit" href="javascript:void(0);" onclick="return false;" data-type="<?php echo $field['form']; ?>"><?php printf( _x( 'Edit %s', '%s stands for form field label.', 'fl-builder' ), $field['label'] ); ?></a>
18
  <input name="<?php echo $name; ?>" type="hidden" value='<?php echo str_replace("'", '&#39;', json_encode($value)); ?>' />
19
  </div>
includes/field-link.php CHANGED
@@ -3,7 +3,7 @@
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>
6
- <input type="text" name="<?php echo $name; ?>-search" class="text text-full fl-link-field-search-input" placeholder="<?php _e('Start typing...', 'fl-builder'); ?>" />
7
  <span class="fl-link-field-search-cancel fl-builder-button fl-builder-button-small" href="javascript:void(0);" onclick="return false;"><?php _e('Cancel', 'fl-builder'); ?></span>
8
  </div>
9
  </div>
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>
6
+ <input type="text" name="<?php echo $name; ?>-search" class="text text-full fl-link-field-search-input" placeholder="<?php esc_attr_e( 'Start typing...', 'fl-builder' ); ?>" />
7
  <span class="fl-link-field-search-cancel fl-builder-button fl-builder-button-small" href="javascript:void(0);" onclick="return false;"><?php _e('Cancel', 'fl-builder'); ?></span>
8
  </div>
9
  </div>
includes/field-multiple-photos.php CHANGED
@@ -1,18 +1,13 @@
1
  <div class="fl-multiple-photos-field fl-builder-custom-field<?php if(empty($value)) echo ' fl-multiple-photos-empty'; if(isset($field['class'])) echo ' ' . $field['class']; ?>">
2
  <div class="fl-multiple-photos-count">
3
  <?php
4
-
5
  $count = is_array($value) ? count($value) : false;
6
-
7
- if($count) {
8
- if($count == 1) {
9
- echo $count . __(' Photo Selected', 'fl-builder');
10
- }
11
- else {
12
- echo $count . __(' Photos Selected', 'fl-builder');
13
- }
14
- }
15
-
16
  ?>
17
  </div>
18
  <a class="fl-multiple-photos-select" href="javascript:void(0);" onclick="return false;"><?php _e('Create Gallery', 'fl-builder'); ?></a>
1
  <div class="fl-multiple-photos-field fl-builder-custom-field<?php if(empty($value)) echo ' fl-multiple-photos-empty'; if(isset($field['class'])) echo ' ' . $field['class']; ?>">
2
  <div class="fl-multiple-photos-count">
3
  <?php
4
+
5
  $count = is_array($value) ? count($value) : false;
6
+
7
+ if ( $count ) {
8
+ printf( _n( '1 Photo Selected', '%d Photos Selected', $count, 'fl-builder' ), $count );
9
+ }
10
+
 
 
 
 
 
11
  ?>
12
  </div>
13
  <a class="fl-multiple-photos-select" href="javascript:void(0);" onclick="return false;"><?php _e('Create Gallery', 'fl-builder'); ?></a>
includes/field-suggest.php CHANGED
@@ -1,7 +1,7 @@
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 $field['placeholder']; else echo _e('Start typing...', 'fl-builder'); ?>" />
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' ); ?>" />
includes/global-settings.php CHANGED
@@ -1,7 +1,7 @@
1
- <?php
2
 
3
  FLBuilder::register_settings_form('global', array(
4
- 'title' => FLBuilderModel::get_branding() . ' ' . __('Settings', 'fl-builder'),
5
  'tabs' => array(
6
  'general' => array(
7
  'title' => __('General', 'fl-builder'),
@@ -12,7 +12,7 @@ FLBuilder::register_settings_form('global', array(
12
  'fields' => array(
13
  'show_default_heading' => array(
14
  'type' => 'select',
15
- 'label' => __('Show', 'fl-builder'),
16
  'default' => '0',
17
  'options' => array(
18
  '0' => __('No', 'fl-builder'),
@@ -42,7 +42,7 @@ FLBuilder::register_settings_form('global', array(
42
  'default' => '0',
43
  'maxlength' => '3',
44
  'size' => '5',
45
- 'description' => __('px', 'fl-builder')
46
  ),
47
  'row_padding' => array(
48
  'type' => 'text',
@@ -50,7 +50,7 @@ FLBuilder::register_settings_form('global', array(
50
  'default' => '20',
51
  'maxlength' => '3',
52
  'size' => '5',
53
- 'description' => __('px', 'fl-builder')
54
  ),
55
  'row_width' => array(
56
  'type' => 'text',
@@ -58,7 +58,7 @@ FLBuilder::register_settings_form('global', array(
58
  'default' => '1100',
59
  'maxlength' => '4',
60
  'size' => '5',
61
- 'description' => __('px', 'fl-builder'),
62
  'help' => __('All rows will default to this width. You can override this and make a row full width in the settings for each row.', 'fl-builder')
63
  )
64
  )
@@ -72,7 +72,7 @@ FLBuilder::register_settings_form('global', array(
72
  'default' => '20',
73
  'maxlength' => '3',
74
  'size' => '5',
75
- 'description' => __('px', 'fl-builder')
76
  )
77
  )
78
  ),
@@ -81,7 +81,7 @@ FLBuilder::register_settings_form('global', array(
81
  'fields' => array(
82
  'responsive_enabled' => array(
83
  'type' => 'select',
84
- 'label' => __('Enabled', 'fl-builder'),
85
  'default' => '1',
86
  'options' => array(
87
  '0' => __('No', 'fl-builder'),
@@ -99,7 +99,7 @@ FLBuilder::register_settings_form('global', array(
99
  'default' => '992',
100
  'maxlength' => '4',
101
  'size' => '5',
102
- 'description' => __('px', 'fl-builder'),
103
  'help' => __('The browser width at which the layout will adjust for medium devices such as tablets.', 'fl-builder')
104
  ),
105
  'responsive_breakpoint' => array(
@@ -108,7 +108,7 @@ FLBuilder::register_settings_form('global', array(
108
  'default' => '768',
109
  'maxlength' => '4',
110
  'size' => '5',
111
- 'description' => __('px', 'fl-builder'),
112
  'help' => __('The browser width at which the layout will adjust for small devices such as phones.', 'fl-builder')
113
  )
114
  )
1
+ <?php
2
 
3
  FLBuilder::register_settings_form('global', array(
4
+ 'title' => sprintf( _x( '%s Settings', '%s stands for custom branded "Page Builder" name.', 'fl-builder' ), FLBuilderModel::get_branding() ),
5
  'tabs' => array(
6
  'general' => array(
7
  'title' => __('General', 'fl-builder'),
12
  'fields' => array(
13
  'show_default_heading' => array(
14
  'type' => 'select',
15
+ 'label' => _x( 'Show', 'General settings form field label. Intended meaning: "Show page heading?"', 'fl-builder' ),
16
  'default' => '0',
17
  'options' => array(
18
  '0' => __('No', 'fl-builder'),
42
  'default' => '0',
43
  'maxlength' => '3',
44
  'size' => '5',
45
+ 'description' => 'px'
46
  ),
47
  'row_padding' => array(
48
  'type' => 'text',
50
  'default' => '20',
51
  'maxlength' => '3',
52
  'size' => '5',
53
+ 'description' => 'px'
54
  ),
55
  'row_width' => array(
56
  'type' => 'text',
58
  'default' => '1100',
59
  'maxlength' => '4',
60
  'size' => '5',
61
+ 'description' => 'px',
62
  'help' => __('All rows will default to this width. You can override this and make a row full width in the settings for each row.', 'fl-builder')
63
  )
64
  )
72
  'default' => '20',
73
  'maxlength' => '3',
74
  'size' => '5',
75
+ 'description' => 'px'
76
  )
77
  )
78
  ),
81
  'fields' => array(
82
  'responsive_enabled' => array(
83
  'type' => 'select',
84
+ 'label' => _x( 'Enabled', 'General settings form field label. Intended meaning: "Responsive layout enabled?"', 'fl-builder' ),
85
  'default' => '1',
86
  'options' => array(
87
  '0' => __('No', 'fl-builder'),
99
  'default' => '992',
100
  'maxlength' => '4',
101
  'size' => '5',
102
+ 'description' => 'px',
103
  'help' => __('The browser width at which the layout will adjust for medium devices such as tablets.', 'fl-builder')
104
  ),
105
  'responsive_breakpoint' => array(
108
  'default' => '768',
109
  'maxlength' => '4',
110
  'size' => '5',
111
+ 'description' => 'px',
112
  'help' => __('The browser width at which the layout will adjust for small devices such as phones.', 'fl-builder')
113
  )
114
  )
includes/icon-selector.php CHANGED
@@ -1,12 +1,13 @@
1
  <div class="fl-lightbox-header">
2
  <h1><?php _e( 'Select Icon', 'fl-builder' ); ?></h1>
3
- <div class="fl-icons-filter">
4
- <?php _e( 'Filter: ', 'fl-builder' ); ?>
5
- <select>
6
  <?php foreach ( $icon_sets as $set_key => $set_data ) : ?>
7
  <option value="<?php echo $set_key; ?>"><?php echo $set_data['name']; ?></option>
8
  <?php endforeach; ?>
9
  </select>
 
10
  </div>
11
  </div>
12
  <div class="fl-icons-list">
1
  <div class="fl-lightbox-header">
2
  <h1><?php _e( 'Select Icon', 'fl-builder' ); ?></h1>
3
+ <div class="fl-icons-filter fl-builder-settings-fields">
4
+ <select class="fl-icons-filter-select">
5
+ <option value="all"><?php _ex( 'All Libraries', 'Select option for showing all icon libraries.', 'fl-builder' ); ?></option>
6
  <?php foreach ( $icon_sets as $set_key => $set_data ) : ?>
7
  <option value="<?php echo $set_key; ?>"><?php echo $set_data['name']; ?></option>
8
  <?php endforeach; ?>
9
  </select>
10
+ <input type="text" class="fl-icons-filter-text" placeholder="Search..." />
11
  </div>
12
  </div>
13
  <div class="fl-icons-list">
includes/js-config.php CHANGED
@@ -1,6 +1,6 @@
1
  <script>
2
 
3
- var FLBuilderConfig = {
4
  ajaxUrl: '<?php echo get_permalink( $post_id ); ?>',
5
  enabledTemplates: '<?php echo $enabled_templates; ?>',
6
  homeUrl: '<?php echo home_url(); ?>',
@@ -27,7 +27,7 @@ var FLBuilderStrings = {
27
  discard: '<?php _e('Discard Draft', 'fl-builder'); ?>',
28
  discardMessage: '<?php _e('Do you really want to discard this draft? All of your changes that are not published will be lost.', 'fl-builder'); ?>',
29
  draft: '<?php _e('Save Draft', 'fl-builder'); ?>',
30
- duplicate: '<?php _e('Duplicate', 'fl-builder'); ?>',
31
  duplicatePage: '<?php _e('Duplicate This Page', 'fl-builder'); ?>',
32
  duplicateTemplate: '<?php _e('Duplicate This Template', 'fl-builder'); ?>',
33
  editGlobalSettings: '<?php _e('Edit Global Settings', 'fl-builder'); ?>',
@@ -42,7 +42,8 @@ var FLBuilderStrings = {
42
  newColumn: '<?php _e('New Column', 'fl-builder') ?>',
43
  newRow: '<?php _e('New Row', 'fl-builder') ?>',
44
  noResultsFound: '<?php _e('No results found.', 'fl-builder') ?>',
45
- ok: '<?php _e('Ok', 'fl-builder'); ?>',
 
46
  photoSelected: '<?php _e('Photo Selected', 'fl-builder'); ?>',
47
  photosSelected: '<?php _e('Photos Selected', 'fl-builder'); ?>',
48
  publish: '<?php _e('Publish Changes', 'fl-builder'); ?>',
@@ -54,7 +55,7 @@ var FLBuilderStrings = {
54
  selectPhoto: '<?php _e('Select Photo', 'fl-builder'); ?>',
55
  selectPhotos: '<?php _e('Select Photos', 'fl-builder'); ?>',
56
  selectVideo: '<?php _e('Select Video', 'fl-builder'); ?>',
57
- settings: '<?php _e('Settings', 'fl-builder') ?>',
58
  templateAppend: '<?php _e('Append New Layout', 'fl-builder'); ?>',
59
  templateReplace: '<?php _e('Replace Existing Layout', 'fl-builder'); ?>',
60
  templateSaved: '<?php _e('Template Saved!', 'fl-builder'); ?>',
1
  <script>
2
 
3
+ var FLBuilderConfig = {
4
  ajaxUrl: '<?php echo get_permalink( $post_id ); ?>',
5
  enabledTemplates: '<?php echo $enabled_templates; ?>',
6
  homeUrl: '<?php echo home_url(); ?>',
27
  discard: '<?php _e('Discard Draft', 'fl-builder'); ?>',
28
  discardMessage: '<?php _e('Do you really want to discard this draft? All of your changes that are not published will be lost.', 'fl-builder'); ?>',
29
  draft: '<?php _e('Save Draft', 'fl-builder'); ?>',
30
+ duplicate: '<?php _ex( 'Duplicate', 'Duplicate page/post action label.', 'fl-builder' ); ?>',
31
  duplicatePage: '<?php _e('Duplicate This Page', 'fl-builder'); ?>',
32
  duplicateTemplate: '<?php _e('Duplicate This Template', 'fl-builder'); ?>',
33
  editGlobalSettings: '<?php _e('Edit Global Settings', 'fl-builder'); ?>',
42
  newColumn: '<?php _e('New Column', 'fl-builder') ?>',
43
  newRow: '<?php _e('New Row', 'fl-builder') ?>',
44
  noResultsFound: '<?php _e('No results found.', 'fl-builder') ?>',
45
+ ok: '<?php _e( 'OK', 'fl-builder' ); ?>',
46
+ photoPage: '<?php _e('Photo Page', 'fl-builder'); ?>',
47
  photoSelected: '<?php _e('Photo Selected', 'fl-builder'); ?>',
48
  photosSelected: '<?php _e('Photos Selected', 'fl-builder'); ?>',
49
  publish: '<?php _e('Publish Changes', 'fl-builder'); ?>',
55
  selectPhoto: '<?php _e('Select Photo', 'fl-builder'); ?>',
56
  selectPhotos: '<?php _e('Select Photos', 'fl-builder'); ?>',
57
  selectVideo: '<?php _e('Select Video', 'fl-builder'); ?>',
58
+ settings: '<?php _ex( '%s Settings', '%s stands for module name.', 'fl-builder' ); ?>',
59
  templateAppend: '<?php _e('Append New Layout', 'fl-builder'); ?>',
60
  templateReplace: '<?php _e('Replace Existing Layout', 'fl-builder'); ?>',
61
  templateSaved: '<?php _e('Template Saved!', 'fl-builder'); ?>',
includes/module-settings.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
 
3
  $global_settings = FLBuilderModel::get_global_settings();
4
-
5
  FLBuilder::register_settings_form('module-advanced', array(
6
  'title' => __('Advanced', 'fl-builder'),
7
  'sections' => array(
@@ -11,7 +11,7 @@ FLBuilder::register_settings_form('module-advanced', array(
11
  'class' => array(
12
  'type' => 'text',
13
  'label' => __('CSS Class', 'fl-builder'),
14
- 'help' => __('A custom CSS class that will be applied to this module. Spaces only, no dots.'),
15
  'preview' => array(
16
  'type' => 'none'
17
  )
@@ -39,9 +39,9 @@ FLBuilder::register_settings_form('module-advanced', array(
39
  'fields' => array(
40
  'margin_top' => array(
41
  'type' => 'text',
42
- 'label' => __('Top', 'fl-builder'),
43
  'default' => '',
44
- 'description' => __('px', 'fl-builder'),
45
  'maxlength' => '4',
46
  'size' => '5',
47
  'placeholder' => $global_settings->module_margins,
@@ -51,9 +51,9 @@ FLBuilder::register_settings_form('module-advanced', array(
51
  ),
52
  'margin_bottom' => array(
53
  'type' => 'text',
54
- 'label' => __('Bottom', 'fl-builder'),
55
  'default' => '',
56
- 'description' => __('px', 'fl-builder'),
57
  'maxlength' => '4',
58
  'size' => '5',
59
  'placeholder' => $global_settings->module_margins,
@@ -63,9 +63,9 @@ FLBuilder::register_settings_form('module-advanced', array(
63
  ),
64
  'margin_left' => array(
65
  'type' => 'text',
66
- 'label' => __('Left', 'fl-builder'),
67
  'default' => '',
68
- 'description' => __('px', 'fl-builder'),
69
  'maxlength' => '4',
70
  'size' => '5',
71
  'placeholder' => $global_settings->module_margins,
@@ -75,9 +75,9 @@ FLBuilder::register_settings_form('module-advanced', array(
75
  ),
76
  'margin_right' => array(
77
  'type' => 'text',
78
- 'label' => __('Right', 'fl-builder'),
79
  'default' => '',
80
- 'description' => __('px', 'fl-builder'),
81
  'maxlength' => '4',
82
  'size' => '5',
83
  'placeholder' => $global_settings->module_margins,
@@ -94,12 +94,12 @@ FLBuilder::register_settings_form('module-advanced', array(
94
  'type' => 'select',
95
  'label' => __('Style', 'fl-builder'),
96
  'options' => array(
97
- '' => __('None', 'fl-builder'),
98
- 'fade-in' => __('Fade In', 'fl-builder'),
99
- 'slide-left' => __('Slide Left', 'fl-builder'),
100
- 'slide-right' => __('Slide Right', 'fl-builder'),
101
- 'slide-up' => __('Slide Up', 'fl-builder'),
102
- 'slide-down' => __('Slide Down', 'fl-builder'),
103
  ),
104
  'preview' => array(
105
  'type' => 'none'
@@ -111,7 +111,7 @@ FLBuilder::register_settings_form('module-advanced', array(
111
  'default' => '0.0',
112
  'maxlength' => '4',
113
  'size' => '5',
114
- 'description' => 'seconds',
115
  'help' => __('The amount of time in seconds before this animation starts.', 'fl-builder'),
116
  'preview' => array(
117
  'type' => 'none'
1
  <?php
2
 
3
  $global_settings = FLBuilderModel::get_global_settings();
4
+
5
  FLBuilder::register_settings_form('module-advanced', array(
6
  'title' => __('Advanced', 'fl-builder'),
7
  'sections' => array(
11
  'class' => array(
12
  'type' => 'text',
13
  'label' => __('CSS Class', 'fl-builder'),
14
+ 'help' => __( 'A custom CSS class that will be applied to this module. Spaces only, no dots.', 'fl-builder' ),
15
  'preview' => array(
16
  'type' => 'none'
17
  )
39
  'fields' => array(
40
  'margin_top' => array(
41
  'type' => 'text',
42
+ 'label' => __( 'Top', 'fl-builder' ),
43
  'default' => '',
44
+ 'description' => 'px',
45
  'maxlength' => '4',
46
  'size' => '5',
47
  'placeholder' => $global_settings->module_margins,
51
  ),
52
  'margin_bottom' => array(
53
  'type' => 'text',
54
+ 'label' => __( 'Bottom', 'fl-builder' ),
55
  'default' => '',
56
+ 'description' => 'px',
57
  'maxlength' => '4',
58
  'size' => '5',
59
  'placeholder' => $global_settings->module_margins,
63
  ),
64
  'margin_left' => array(
65
  'type' => 'text',
66
+ 'label' => __( 'Left', 'fl-builder' ),
67
  'default' => '',
68
+ 'description' => 'px',
69
  'maxlength' => '4',
70
  'size' => '5',
71
  'placeholder' => $global_settings->module_margins,
75
  ),
76
  'margin_right' => array(
77
  'type' => 'text',
78
+ 'label' => __( 'Right', 'fl-builder' ),
79
  'default' => '',
80
+ 'description' => 'px',
81
  'maxlength' => '4',
82
  'size' => '5',
83
  'placeholder' => $global_settings->module_margins,
94
  'type' => 'select',
95
  'label' => __('Style', 'fl-builder'),
96
  'options' => array(
97
+ '' => _x( 'None', 'Animation style.', 'fl-builder' ),
98
+ 'fade-in' => _x( 'Fade In', 'Animation style.', 'fl-builder' ),
99
+ 'slide-left' => _x( 'Slide Left', 'Animation style.', 'fl-builder' ),
100
+ 'slide-right' => _x( 'Slide Right', 'Animation style.', 'fl-builder' ),
101
+ 'slide-up' => _x( 'Slide Up', 'Animation style.', 'fl-builder' ),
102
+ 'slide-down' => _x( 'Slide Down', 'Animation style.', 'fl-builder' ),
103
  ),
104
  'preview' => array(
105
  'type' => 'none'
111
  'default' => '0.0',
112
  'maxlength' => '4',
113
  'size' => '5',
114
+ 'description' => _x( 'seconds', 'Value unit for form field of time in seconds. Such as: "5 seconds"', 'fl-builder' ),
115
  'help' => __('The amount of time in seconds before this animation starts.', 'fl-builder'),
116
  'preview' => array(
117
  'type' => 'none'
includes/row-settings.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php
2
 
3
  $global_settings = FLBuilderModel::get_global_settings();
4
 
@@ -65,16 +65,16 @@ FLBuilder::register_settings_form('row', array(
65
  'label' => __('Type', 'fl-builder'),
66
  'default' => 'none',
67
  'options' => array(
68
- 'none' => __('None', 'fl-builder'),
69
- 'color' => __('Color', 'fl-builder'),
70
- 'photo' => __('Photo', 'fl-builder'),
71
- 'video' => __('Video', 'fl-builder'),
72
  'slideshow' => array(
73
- 'label' => __('Slideshow', 'fl-builder'),
74
  'premium' => true
75
  ),
76
  'parallax' => array(
77
- 'label' => __('Parallax', 'fl-builder'),
78
  'premium' => true
79
  )
80
  ),
@@ -123,7 +123,7 @@ FLBuilder::register_settings_form('row', array(
123
  'type' => 'none'
124
  )
125
  )
126
- )
127
  ),
128
  'bg_photo' => array(
129
  'title' => __('Background Photo', 'fl-builder'),
@@ -140,10 +140,10 @@ FLBuilder::register_settings_form('row', array(
140
  'label' => __('Repeat', 'fl-builder'),
141
  'default' => 'none',
142
  'options' => array(
143
- 'no-repeat' => __('None', 'fl-builder'),
144
- 'repeat' => __('Tile', 'fl-builder'),
145
- 'repeat-x' => __('Horizontal', 'fl-builder'),
146
- 'repeat-y' => __('Vertical', 'fl-builder')
147
  ),
148
  'help' => __('Repeat applies to how the image should display in the row background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the row horizontally and vertically. You can also specify the image to only repeat horizontally or vertically.', 'fl-builder'),
149
  'preview' => array(
@@ -162,7 +162,7 @@ FLBuilder::register_settings_form('row', array(
162
  'right center' => __('Right Center', 'fl-builder'),
163
  'right bottom' => __('Right Bottom', 'fl-builder'),
164
  'center top' => __('Center Top', 'fl-builder'),
165
- 'center center' => __('Center Center', 'fl-builder'),
166
  'center bottom' => __('Center Bottom', 'fl-builder')
167
  ),
168
  'help' => __('Position will tell the image where it should sit in the row background.', 'fl-builder'),
@@ -175,8 +175,8 @@ FLBuilder::register_settings_form('row', array(
175
  'label' => __('Attachment', 'fl-builder'),
176
  'default' => 'scroll',
177
  'options' => array(
178
- 'scroll' => __('Scroll', 'fl-builder'),
179
- 'fixed' => __('Fixed', 'fl-builder')
180
  ),
181
  'help' => __('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 row background if fill is selected in the scale setting.', 'fl-builder'),
182
  'preview' => array(
@@ -188,9 +188,9 @@ FLBuilder::register_settings_form('row', array(
188
  'label' => __('Scale', 'fl-builder'),
189
  'default' => 'cover',
190
  'options' => array(
191
- '' => __('None', 'fl-builder'),
192
- 'contain' => __('Fit', 'fl-builder'),
193
- 'cover' => __('Fill', 'fl-builder')
194
  ),
195
  'help' => __('Scale applies to how the image should display in the row background. You can select either fill or fit to the row background.', 'fl-builder'),
196
  'preview' => array(
@@ -229,7 +229,7 @@ FLBuilder::register_settings_form('row', array(
229
  'default' => 'wordpress',
230
  'options' => array(
231
  'wordpress' => __('Media Library', 'fl-builder'),
232
- 'smugmug' => __('SmugMug', 'fl-builder')
233
  ),
234
  'help' => __('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.', 'fl-builder'),
235
  'toggle' => array(
@@ -263,7 +263,7 @@ FLBuilder::register_settings_form('row', array(
263
  'label' => __('Speed', 'fl-builder'),
264
  'default' => '3',
265
  'size' => '5',
266
- 'description' => __('seconds', 'fl-builder'),
267
  'preview' => array(
268
  'type' => 'none'
269
  )
@@ -273,7 +273,7 @@ FLBuilder::register_settings_form('row', array(
273
  'label' => __('Transition', 'fl-builder'),
274
  'default' => 'fade',
275
  'options' => array(
276
- 'none' => __('None', 'fl-builder'),
277
  'fade' => __('Fade', 'fl-builder'),
278
  'kenBurns' => __('Ken Burns', 'fl-builder'),
279
  'slideHorizontal' => __('Slide Horizontal', 'fl-builder'),
@@ -294,7 +294,7 @@ FLBuilder::register_settings_form('row', array(
294
  'label' => __('Transition Speed', 'fl-builder'),
295
  'default' => '1',
296
  'size' => '5',
297
- 'description' => __('seconds', 'fl-builder'),
298
  'preview' => array(
299
  'type' => 'none'
300
  )
@@ -329,7 +329,7 @@ FLBuilder::register_settings_form('row', array(
329
  'default' => 'fast',
330
  'options' => array(
331
  '2' => __('Fast', 'fl-builder'),
332
- '5' => __('Medium', 'fl-builder'),
333
  '8' => __('Slow', 'fl-builder')
334
  ),
335
  'preview' => array(
@@ -347,11 +347,11 @@ FLBuilder::register_settings_form('row', array(
347
  'default' => '',
348
  'help' => __('The type of border to use. Double borders must have a width of at least 3px to render properly.', 'fl-builder'),
349
  'options' => array(
350
- '' => __('None', 'fl-builder'),
351
- 'solid' => __('Solid', 'fl-builder'),
352
- 'dashed' => __('Dashed', 'fl-builder'),
353
- 'dotted' => __('Dotted', 'fl-builder'),
354
- 'double' => __('Double', 'fl-builder')
355
  ),
356
  'toggle' => array(
357
  '' => array(
@@ -397,7 +397,7 @@ FLBuilder::register_settings_form('row', array(
397
  'type' => 'text',
398
  'label' => __('Top Width', 'fl-builder'),
399
  'default' => '1',
400
- 'description' => __('px', 'fl-builder'),
401
  'maxlength' => '3',
402
  'size' => '5',
403
  'placeholder' => '0',
@@ -409,7 +409,7 @@ FLBuilder::register_settings_form('row', array(
409
  'type' => 'text',
410
  'label' => __('Bottom Width', 'fl-builder'),
411
  'default' => '1',
412
- 'description' => __('px', 'fl-builder'),
413
  'maxlength' => '3',
414
  'size' => '5',
415
  'placeholder' => '0',
@@ -421,7 +421,7 @@ FLBuilder::register_settings_form('row', array(
421
  'type' => 'text',
422
  'label' => __('Left Width', 'fl-builder'),
423
  'default' => '0',
424
- 'description' => __('px', 'fl-builder'),
425
  'maxlength' => '3',
426
  'size' => '5',
427
  'placeholder' => '0',
@@ -433,7 +433,7 @@ FLBuilder::register_settings_form('row', array(
433
  'type' => 'text',
434
  'label' => __('Right Width', 'fl-builder'),
435
  'default' => '0',
436
- 'description' => __('px', 'fl-builder'),
437
  'maxlength' => '3',
438
  'size' => '5',
439
  'placeholder' => '0',
@@ -470,7 +470,7 @@ FLBuilder::register_settings_form('row', array(
470
  'medium-mobile' => __('Medium &amp; Small Devices Only', 'fl-builder'),
471
  'mobile' => __('Small Devices Only', 'fl-builder'),
472
  ),
473
- 'help' => __('Choose whether to show or hide this row at different device sizes.'),
474
  'preview' => array(
475
  'type' => 'none'
476
  )
@@ -484,7 +484,7 @@ FLBuilder::register_settings_form('row', array(
484
  'type' => 'text',
485
  'label' => __('Top', 'fl-builder'),
486
  'default' => '',
487
- 'description' => __('px', 'fl-builder'),
488
  'maxlength' => '4',
489
  'size' => '5',
490
  'placeholder' => $global_settings->row_margins,
@@ -496,7 +496,7 @@ FLBuilder::register_settings_form('row', array(
496
  'type' => 'text',
497
  'label' => __('Bottom', 'fl-builder'),
498
  'default' => '',
499
- 'description' => __('px', 'fl-builder'),
500
  'maxlength' => '4',
501
  'size' => '5',
502
  'placeholder' => $global_settings->row_margins,
@@ -508,7 +508,7 @@ FLBuilder::register_settings_form('row', array(
508
  'type' => 'text',
509
  'label' => __('Left', 'fl-builder'),
510
  'default' => '',
511
- 'description' => __('px', 'fl-builder'),
512
  'maxlength' => '4',
513
  'size' => '5',
514
  'placeholder' => $global_settings->row_margins,
@@ -520,7 +520,7 @@ FLBuilder::register_settings_form('row', array(
520
  'type' => 'text',
521
  'label' => __('Right', 'fl-builder'),
522
  'default' => '',
523
- 'description' => __('px', 'fl-builder'),
524
  'maxlength' => '4',
525
  'size' => '5',
526
  'placeholder' => $global_settings->row_margins,
@@ -537,7 +537,7 @@ FLBuilder::register_settings_form('row', array(
537
  'type' => 'text',
538
  'label' => __('Top', 'fl-builder'),
539
  'default' => '',
540
- 'description' => __('px', 'fl-builder'),
541
  'maxlength' => '4',
542
  'size' => '5',
543
  'placeholder' => $global_settings->row_padding,
@@ -549,7 +549,7 @@ FLBuilder::register_settings_form('row', array(
549
  'type' => 'text',
550
  'label' => __('Bottom', 'fl-builder'),
551
  'default' => '',
552
- 'description' => __('px', 'fl-builder'),
553
  'maxlength' => '4',
554
  'size' => '5',
555
  'placeholder' => $global_settings->row_padding,
@@ -561,7 +561,7 @@ FLBuilder::register_settings_form('row', array(
561
  'type' => 'text',
562
  'label' => __('Left', 'fl-builder'),
563
  'default' => '',
564
- 'description' => __('px', 'fl-builder'),
565
  'maxlength' => '4',
566
  'size' => '5',
567
  'placeholder' => $global_settings->row_padding,
@@ -573,7 +573,7 @@ FLBuilder::register_settings_form('row', array(
573
  'type' => 'text',
574
  'label' => __('Right', 'fl-builder'),
575
  'default' => '',
576
- 'description' => __('px', 'fl-builder'),
577
  'maxlength' => '4',
578
  'size' => '5',
579
  'placeholder' => $global_settings->row_padding,
1
+ <?php
2
 
3
  $global_settings = FLBuilderModel::get_global_settings();
4
 
65
  'label' => __('Type', 'fl-builder'),
66
  'default' => 'none',
67
  'options' => array(
68
+ 'none' => _x( 'None', 'Background type.', 'fl-builder' ),
69
+ 'color' => _x( 'Color', 'Background type.', 'fl-builder' ),
70
+ 'photo' => _x( 'Photo', 'Background type.', 'fl-builder' ),
71
+ 'video' => _x( 'Video', 'Background type.', 'fl-builder' ),
72
  'slideshow' => array(
73
+ 'label' => _x( 'Slideshow', 'Background type.', 'fl-builder' ),
74
  'premium' => true
75
  ),
76
  'parallax' => array(
77
+ 'label' => _x( 'Parallax', 'Background type.', 'fl-builder' ),
78
  'premium' => true
79
  )
80
  ),
123
  'type' => 'none'
124
  )
125
  )
126
+ )
127
  ),
128
  'bg_photo' => array(
129
  'title' => __('Background Photo', 'fl-builder'),
140
  'label' => __('Repeat', 'fl-builder'),
141
  'default' => 'none',
142
  'options' => array(
143
+ 'no-repeat' => _x( 'None', 'Background repeat.', 'fl-builder' ),
144
+ 'repeat' => _x( 'Tile', 'Background repeat.', 'fl-builder' ),
145
+ 'repeat-x' => _x( 'Horizontal', 'Background repeat.', 'fl-builder' ),
146
+ 'repeat-y' => _x( 'Vertical', 'Background repeat.', 'fl-builder' )
147
  ),
148
  'help' => __('Repeat applies to how the image should display in the row background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the row horizontally and vertically. You can also specify the image to only repeat horizontally or vertically.', 'fl-builder'),
149
  'preview' => array(
162
  'right center' => __('Right Center', 'fl-builder'),
163
  'right bottom' => __('Right Bottom', 'fl-builder'),
164
  'center top' => __('Center Top', 'fl-builder'),
165
+ 'center center' => __( 'Center', 'fl-builder' ),
166
  'center bottom' => __('Center Bottom', 'fl-builder')
167
  ),
168
  'help' => __('Position will tell the image where it should sit in the row background.', 'fl-builder'),
175
  'label' => __('Attachment', 'fl-builder'),
176
  'default' => 'scroll',
177
  'options' => array(
178
+ 'scroll' => __( 'Scroll', 'fl-builder' ),
179
+ 'fixed' => __( 'Fixed', 'fl-builder' )
180
  ),
181
  'help' => __('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 row background if fill is selected in the scale setting.', 'fl-builder'),
182
  'preview' => array(
188
  'label' => __('Scale', 'fl-builder'),
189
  'default' => 'cover',
190
  'options' => array(
191
+ '' => _x( 'None', 'Background scale.', 'fl-builder' ),
192
+ 'contain' => __( 'Fit', 'fl-builder'),
193
+ 'cover' => __( 'Fill', 'fl-builder')
194
  ),
195
  'help' => __('Scale applies to how the image should display in the row background. You can select either fill or fit to the row background.', 'fl-builder'),
196
  'preview' => array(
229
  'default' => 'wordpress',
230
  'options' => array(
231
  'wordpress' => __('Media Library', 'fl-builder'),
232
+ 'smugmug' => 'SmugMug'
233
  ),
234
  'help' => __('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.', 'fl-builder'),
235
  'toggle' => array(
263
  'label' => __('Speed', 'fl-builder'),
264
  'default' => '3',
265
  'size' => '5',
266
+ 'description' => _x( 'seconds', 'Value unit for form field of time in seconds. Such as: "5 seconds"', 'fl-builder' ),
267
  'preview' => array(
268
  'type' => 'none'
269
  )
273
  'label' => __('Transition', 'fl-builder'),
274
  'default' => 'fade',
275
  'options' => array(
276
+ 'none' => _x( 'None', 'Slideshow transition type.', 'fl-builder' ),
277
  'fade' => __('Fade', 'fl-builder'),
278
  'kenBurns' => __('Ken Burns', 'fl-builder'),
279
  'slideHorizontal' => __('Slide Horizontal', 'fl-builder'),
294
  'label' => __('Transition Speed', 'fl-builder'),
295
  'default' => '1',
296
  'size' => '5',
297
+ 'description' => _x( 'seconds', 'Value unit for form field of time in seconds. Such as: "5 seconds"', 'fl-builder' ),
298
  'preview' => array(
299
  'type' => 'none'
300
  )
329
  'default' => 'fast',
330
  'options' => array(
331
  '2' => __('Fast', 'fl-builder'),
332
+ '5' => _x( 'Medium', 'Speed.', 'fl-builder' ),
333
  '8' => __('Slow', 'fl-builder')
334
  ),
335
  'preview' => array(
347
  'default' => '',
348
  'help' => __('The type of border to use. Double borders must have a width of at least 3px to render properly.', 'fl-builder'),
349
  'options' => array(
350
+ '' => _x( 'None', 'Border type.', 'fl-builder' ),
351
+ 'solid' => _x( 'Solid', 'Border type.', 'fl-builder' ),
352
+ 'dashed' => _x( 'Dashed', 'Border type.', 'fl-builder' ),
353
+ 'dotted' => _x( 'Dotted', 'Border type.', 'fl-builder' ),
354
+ 'double' => _x( 'Double', 'Border type.', 'fl-builder' )
355
  ),
356
  'toggle' => array(
357
  '' => array(
397
  'type' => 'text',
398
  'label' => __('Top Width', 'fl-builder'),
399
  'default' => '1',
400
+ 'description' => 'px',
401
  'maxlength' => '3',
402
  'size' => '5',
403
  'placeholder' => '0',
409
  'type' => 'text',
410
  'label' => __('Bottom Width', 'fl-builder'),
411
  'default' => '1',
412
+ 'description' => 'px',
413
  'maxlength' => '3',
414
  'size' => '5',
415
  'placeholder' => '0',
421
  'type' => 'text',
422
  'label' => __('Left Width', 'fl-builder'),
423
  'default' => '0',
424
+ 'description' => 'px',
425
  'maxlength' => '3',
426
  'size' => '5',
427
  'placeholder' => '0',
433
  'type' => 'text',
434
  'label' => __('Right Width', 'fl-builder'),
435
  'default' => '0',
436
+ 'description' => 'px',
437
  'maxlength' => '3',
438
  'size' => '5',
439
  'placeholder' => '0',
470
  'medium-mobile' => __('Medium &amp; Small Devices Only', 'fl-builder'),
471
  'mobile' => __('Small Devices Only', 'fl-builder'),
472
  ),
473
+ 'help' => __( 'Choose whether to show or hide this row at different device sizes.', 'fl-builder' ),
474
  'preview' => array(
475
  'type' => 'none'
476
  )
484
  'type' => 'text',
485
  'label' => __('Top', 'fl-builder'),
486
  'default' => '',
487
+ 'description' => 'px',
488
  'maxlength' => '4',
489
  'size' => '5',
490
  'placeholder' => $global_settings->row_margins,
496
  'type' => 'text',
497
  'label' => __('Bottom', 'fl-builder'),
498
  'default' => '',
499
+ 'description' => 'px',
500
  'maxlength' => '4',
501
  'size' => '5',
502
  'placeholder' => $global_settings->row_margins,
508
  'type' => 'text',
509
  'label' => __('Left', 'fl-builder'),
510
  'default' => '',
511
+ 'description' => 'px',
512
  'maxlength' => '4',
513
  'size' => '5',
514
  'placeholder' => $global_settings->row_margins,
520
  'type' => 'text',
521
  'label' => __('Right', 'fl-builder'),
522
  'default' => '',
523
+ 'description' => 'px',
524
  'maxlength' => '4',
525
  'size' => '5',
526
  'placeholder' => $global_settings->row_margins,
537
  'type' => 'text',
538
  'label' => __('Top', 'fl-builder'),
539
  'default' => '',
540
+ 'description' => 'px',
541
  'maxlength' => '4',
542
  'size' => '5',
543
  'placeholder' => $global_settings->row_padding,
549
  'type' => 'text',
550
  'label' => __('Bottom', 'fl-builder'),
551
  'default' => '',
552
+ 'description' => 'px',
553
  'maxlength' => '4',
554
  'size' => '5',
555
  'placeholder' => $global_settings->row_padding,
561
  'type' => 'text',
562
  'label' => __('Left', 'fl-builder'),
563
  'default' => '',
564
+ 'description' => 'px',
565
  'maxlength' => '4',
566
  'size' => '5',
567
  'placeholder' => $global_settings->row_padding,
573
  'type' => 'text',
574
  'label' => __('Right', 'fl-builder'),
575
  'default' => '',
576
+ 'description' => 'px',
577
  'maxlength' => '4',
578
  'size' => '5',
579
  'placeholder' => $global_settings->row_padding,
includes/ui.php CHANGED
@@ -33,6 +33,11 @@
33
  </span>
34
  <?php endif; ?>
35
  <div class="fl-builder-bar-actions">
 
 
 
 
 
36
  <span class="fl-builder-done-button fl-builder-button fl-builder-button-primary"><?php _e('Done', 'fl-builder'); ?></span>
37
  <span class="fl-builder-tools-button fl-builder-button"><?php _e('Tools', 'fl-builder'); ?></span>
38
  <?php if(FL_BUILDER_LITE !== true && $enabled_templates != 'disabled') : ?>
@@ -92,21 +97,6 @@
92
  <?php endif; ?>
93
  </div>
94
  <?php endforeach; ?>
95
- <?php if(stristr(home_url(), 'demo.wpbeaverbuilder.com')) : ?>
96
- <div class="fl-builder-blocks-section">
97
- <span class="fl-builder-blocks-section-title fl-builder-block-upgrade">
98
- <?php _e('Buy Now!', 'fl-builder'); ?>
99
- <i class="fa fa-external-link-square"></i>
100
- </span>
101
- </div>
102
- <?php elseif(FL_BUILDER_LITE === true) : ?>
103
- <div class="fl-builder-blocks-section">
104
- <span class="fl-builder-blocks-section-title fl-builder-block-upgrade">
105
- <?php _e('Upgrade Today!', 'fl-builder'); ?>
106
- <i class="fa fa-external-link-square"></i>
107
- </span>
108
- </div>
109
- <?php endif; ?>
110
  </div>
111
  </div>
112
  </div>
33
  </span>
34
  <?php endif; ?>
35
  <div class="fl-builder-bar-actions">
36
+ <?php if(stristr(home_url(), 'demo.wpbeaverbuilder.com')) : ?>
37
+ <span class="fl-builder-upgrade-button fl-builder-button"><?php _e('Buy Now!', 'fl-builder'); ?></span>
38
+ <?php elseif(FL_BUILDER_LITE === true) : ?>
39
+ <span class="fl-builder-upgrade-button fl-builder-button"><?php _e('Upgrade!', 'fl-builder'); ?></span>
40
+ <?php endif; ?>
41
  <span class="fl-builder-done-button fl-builder-button fl-builder-button-primary"><?php _e('Done', 'fl-builder'); ?></span>
42
  <span class="fl-builder-tools-button fl-builder-button"><?php _e('Tools', 'fl-builder'); ?></span>
43
  <?php if(FL_BUILDER_LITE !== true && $enabled_templates != 'disabled') : ?>
97
  <?php endif; ?>
98
  </div>
99
  <?php endforeach; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  </div>
101
  </div>
102
  </div>
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.4.3',
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.4.5',
7
  'slug' => 'bb-plugin',
8
  'type' => 'plugin'
9
  ));
includes/updater/classes/{FLUpdater.php → class-fl-updater.php} RENAMED
@@ -6,11 +6,18 @@
6
  final class FLUpdater {
7
 
8
  /**
9
- * @property $_api_url
10
  * @static
11
  * @private
12
  */
13
- static private $_api_url = 'http://www.wpbeaverbuilder.com/';
 
 
 
 
 
 
 
14
 
15
  /**
16
  * @property $_products
@@ -31,7 +38,7 @@ final class FLUpdater {
31
  public function __construct( $settings = array() )
32
  {
33
  $this->settings = $settings;
34
-
35
  if ( 'plugin' == $settings['type'] ) {
36
  add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'update_check' ) );
37
  add_filter( 'plugins_api', array( $this, 'plugin_info' ), 10, 3 );
@@ -50,8 +57,8 @@ final class FLUpdater {
50
  if(empty($transient->checked)) {
51
  return $transient;
52
  }
53
-
54
- $response = FLUpdater::api_request(array(
55
  'fl-api-method' => 'update_check',
56
  'email' => FLUpdater::get_subscription_email(),
57
  'domain' => network_home_url(),
@@ -59,24 +66,24 @@ final class FLUpdater {
59
  'slug' => $this->settings['slug'],
60
  'version' => $this->settings['version']
61
  ));
62
-
63
  if(isset($response) && $response !== false && is_object($response) && !isset($response->errors)) {
64
-
65
  if($this->settings['type'] == 'plugin') {
66
-
67
  $plugin = self::get_plugin_file($this->settings['slug']);
68
  $new_ver = $response->new_version;
69
  $curr_ver = $this->settings['version'];
70
-
71
  if(version_compare($new_ver, $curr_ver, '>')) {
72
  $transient->response[$plugin] = $response;
73
  }
74
  }
75
  else if($this->settings['type'] == 'theme') {
76
-
77
  $new_ver = $response->new_version;
78
  $curr_ver = $this->settings['version'];
79
-
80
  if(version_compare($new_ver, $curr_ver, '>')) {
81
  $transient->response[$this->settings['slug']] = array(
82
  'new_version' => $response->new_version,
@@ -97,7 +104,7 @@ final class FLUpdater {
97
  {
98
  if ( empty( $response->package ) ) {
99
  echo '<p style="padding:10px 20px; margin-top: 10px; background: #d54e21; color: #fff;">';
100
- echo __('<strong>UPDATE UNAVAILABLE!</strong>');
101
  echo '&nbsp;&nbsp;&nbsp;';
102
  echo __('Please subscribe to enable automatic updates for this plugin.', 'fl-builder');
103
  echo ' <a href="' . $plugin_data['PluginURI'] . '" target="_blank" style="color: #fff; text-decoration: underline;">';
@@ -115,8 +122,8 @@ final class FLUpdater {
115
  if(!isset($args->slug) || $args->slug != $this->settings['slug']) {
116
  return $false;
117
  }
118
-
119
- $response = FLUpdater::api_request(array(
120
  'fl-api-method' => 'plugin_info',
121
  'email' => FLUpdater::get_subscription_email(),
122
  'domain' => network_home_url(),
@@ -124,16 +131,16 @@ final class FLUpdater {
124
  'slug' => $this->settings['slug'],
125
  'version' => $this->settings['version']
126
  ));
127
-
128
  if(isset($response) && is_object($response) && $response !== false) {
129
  $response->name = $this->settings['name'];
130
  $response->sections = (array)$response->sections;
131
  return $response;
132
  }
133
-
134
  return $false;
135
  }
136
-
137
  /**
138
  * @method init
139
  * @static
@@ -141,14 +148,14 @@ final class FLUpdater {
141
  static public function init()
142
  {
143
  include FL_UPDATER_DIR . 'includes/config.php';
144
-
145
  foreach($config as $path) {
146
  if(file_exists($path)) {
147
  require_once $path;
148
  }
149
  }
150
  }
151
-
152
  /**
153
  * @method add_product
154
  * @static
@@ -156,7 +163,7 @@ final class FLUpdater {
156
  static public function add_product($args = array())
157
  {
158
  if(is_array($args) && isset($args['slug'])) {
159
-
160
  if($args['type'] == 'plugin') {
161
  if(file_exists(WP_CONTENT_DIR . '/plugins/' . $args['slug'])) {
162
  self::$_products[$args['name']] = $args;
@@ -171,22 +178,22 @@ final class FLUpdater {
171
  }
172
  }
173
  }
174
-
175
  /**
176
  * @method render_form
177
  * @static
178
  */
179
- static public function render_form()
180
  {
181
  // Activate a subscription?
182
  if(isset($_POST['fl-updater-nonce'])) {
183
  if(wp_verify_nonce($_POST['fl-updater-nonce'], 'updater-nonce')) {
184
- self::save_subscription_email($_POST['email']);
185
  }
186
  }
187
-
188
  $status = self::get_subscription_status();
189
-
190
  // Include the form ui.
191
  include FL_UPDATER_DIR . 'includes/form.php';
192
  }
@@ -198,7 +205,7 @@ final class FLUpdater {
198
  static public function get_subscription_email()
199
  {
200
  $value = get_site_option('fl_themes_subscription_email');
201
-
202
  return $value ? $value : '';
203
  }
204
 
@@ -217,18 +224,18 @@ final class FLUpdater {
217
  */
218
  static public function get_subscription_status()
219
  {
220
- $status = self::api_request(array(
221
  'fl-api-method' => 'subscription_status',
222
  'email' => FLUpdater::get_subscription_email()
223
  ));
224
-
225
  if(isset($status->active) && $status->active) {
226
  return $status;
227
  }
228
-
229
  return false;
230
  }
231
-
232
  /**
233
  * @method get_plugin_file
234
  * @static
@@ -242,24 +249,29 @@ final class FLUpdater {
242
  else {
243
  $file = $slug . '/' . $slug . '.php';
244
  }
245
-
246
  return $file;
247
  }
248
-
249
  /**
250
  * @method api_request
251
  * @static
252
  * @private
253
  */
254
- static private function api_request($args = array())
255
  {
256
- $params = array();
257
-
258
- foreach($args as $key => $val) {
259
- $params[] = $key . '=' . urlencode($val);
260
- }
261
 
262
- return self::remote_get(self::$_api_url . '?' . implode('&', $params));
 
 
 
 
 
 
 
263
  }
264
 
265
  /**
@@ -277,13 +289,13 @@ final class FLUpdater {
277
  if(wp_remote_retrieve_response_code($request) != 200) {
278
  return false;
279
  }
280
-
281
  $response = json_decode(wp_remote_retrieve_body($request));
282
-
283
  if(isset($response->error)) {
284
- return false;
285
  }
286
-
287
  return $response;
288
  }
289
  }
6
  final class FLUpdater {
7
 
8
  /**
9
+ * @property $_store_api_url
10
  * @static
11
  * @private
12
  */
13
+ static private $_store_api_url = 'http://www.wpbeaverbuilder.com/';
14
+
15
+ /**
16
+ * @property $_updates_api_url
17
+ * @static
18
+ * @private
19
+ */
20
+ static private $_updates_api_url = 'http://updates.wpbeaverbuilder.com/';
21
 
22
  /**
23
  * @property $_products
38
  public function __construct( $settings = array() )
39
  {
40
  $this->settings = $settings;
41
+
42
  if ( 'plugin' == $settings['type'] ) {
43
  add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'update_check' ) );
44
  add_filter( 'plugins_api', array( $this, 'plugin_info' ), 10, 3 );
57
  if(empty($transient->checked)) {
58
  return $transient;
59
  }
60
+
61
+ $response = FLUpdater::api_request(self::$_updates_api_url, array(
62
  'fl-api-method' => 'update_check',
63
  'email' => FLUpdater::get_subscription_email(),
64
  'domain' => network_home_url(),
66
  'slug' => $this->settings['slug'],
67
  'version' => $this->settings['version']
68
  ));
69
+
70
  if(isset($response) && $response !== false && is_object($response) && !isset($response->errors)) {
71
+
72
  if($this->settings['type'] == 'plugin') {
73
+
74
  $plugin = self::get_plugin_file($this->settings['slug']);
75
  $new_ver = $response->new_version;
76
  $curr_ver = $this->settings['version'];
77
+
78
  if(version_compare($new_ver, $curr_ver, '>')) {
79
  $transient->response[$plugin] = $response;
80
  }
81
  }
82
  else if($this->settings['type'] == 'theme') {
83
+
84
  $new_ver = $response->new_version;
85
  $curr_ver = $this->settings['version'];
86
+
87
  if(version_compare($new_ver, $curr_ver, '>')) {
88
  $transient->response[$this->settings['slug']] = array(
89
  'new_version' => $response->new_version,
104
  {
105
  if ( empty( $response->package ) ) {
106
  echo '<p style="padding:10px 20px; margin-top: 10px; background: #d54e21; color: #fff;">';
107
+ echo __( '<strong>UPDATE UNAVAILABLE!</strong>', 'fl-builder' );
108
  echo '&nbsp;&nbsp;&nbsp;';
109
  echo __('Please subscribe to enable automatic updates for this plugin.', 'fl-builder');
110
  echo ' <a href="' . $plugin_data['PluginURI'] . '" target="_blank" style="color: #fff; text-decoration: underline;">';
122
  if(!isset($args->slug) || $args->slug != $this->settings['slug']) {
123
  return $false;
124
  }
125
+
126
+ $response = FLUpdater::api_request(self::$_updates_api_url, array(
127
  'fl-api-method' => 'plugin_info',
128
  'email' => FLUpdater::get_subscription_email(),
129
  'domain' => network_home_url(),
131
  'slug' => $this->settings['slug'],
132
  'version' => $this->settings['version']
133
  ));
134
+
135
  if(isset($response) && is_object($response) && $response !== false) {
136
  $response->name = $this->settings['name'];
137
  $response->sections = (array)$response->sections;
138
  return $response;
139
  }
140
+
141
  return $false;
142
  }
143
+
144
  /**
145
  * @method init
146
  * @static
148
  static public function init()
149
  {
150
  include FL_UPDATER_DIR . 'includes/config.php';
151
+
152
  foreach($config as $path) {
153
  if(file_exists($path)) {
154
  require_once $path;
155
  }
156
  }
157
  }
158
+
159
  /**
160
  * @method add_product
161
  * @static
163
  static public function add_product($args = array())
164
  {
165
  if(is_array($args) && isset($args['slug'])) {
166
+
167
  if($args['type'] == 'plugin') {
168
  if(file_exists(WP_CONTENT_DIR . '/plugins/' . $args['slug'])) {
169
  self::$_products[$args['name']] = $args;
178
  }
179
  }
180
  }
181
+
182
  /**
183
  * @method render_form
184
  * @static
185
  */
186
+ static public function render_form()
187
  {
188
  // Activate a subscription?
189
  if(isset($_POST['fl-updater-nonce'])) {
190
  if(wp_verify_nonce($_POST['fl-updater-nonce'], 'updater-nonce')) {
191
+ self::save_subscription_email($_POST['email']);
192
  }
193
  }
194
+
195
  $status = self::get_subscription_status();
196
+
197
  // Include the form ui.
198
  include FL_UPDATER_DIR . 'includes/form.php';
199
  }
205
  static public function get_subscription_email()
206
  {
207
  $value = get_site_option('fl_themes_subscription_email');
208
+
209
  return $value ? $value : '';
210
  }
211
 
224
  */
225
  static public function get_subscription_status()
226
  {
227
+ $status = self::api_request(self::$_store_api_url, array(
228
  'fl-api-method' => 'subscription_status',
229
  'email' => FLUpdater::get_subscription_email()
230
  ));
231
+
232
  if(isset($status->active) && $status->active) {
233
  return $status;
234
  }
235
+
236
  return false;
237
  }
238
+
239
  /**
240
  * @method get_plugin_file
241
  * @static
249
  else {
250
  $file = $slug . '/' . $slug . '.php';
251
  }
252
+
253
  return $file;
254
  }
255
+
256
  /**
257
  * @method api_request
258
  * @static
259
  * @private
260
  */
261
+ static private function api_request($api_url = false, $args = array())
262
  {
263
+ if($api_url) {
264
+
265
+ $params = array();
 
 
266
 
267
+ foreach($args as $key => $val) {
268
+ $params[] = $key . '=' . urlencode($val);
269
+ }
270
+
271
+ return self::remote_get($api_url . '?' . implode('&', $params));
272
+ }
273
+
274
+ return false;
275
  }
276
 
277
  /**
289
  if(wp_remote_retrieve_response_code($request) != 200) {
290
  return false;
291
  }
292
+
293
  $response = json_decode(wp_remote_retrieve_body($request));
294
+
295
  if(isset($response->error)) {
296
+ return false;
297
  }
298
+
299
  return $response;
300
  }
301
  }
includes/updater/includes/form.php CHANGED
@@ -1,42 +1,42 @@
1
  <div class="wrap">
2
-
3
  <?php if(!$status) : ?>
4
  <p style="padding:10px 20px; background: #d54e21; color: #fff;">
5
  <?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates.', 'fl-builder'); ?>
6
  &nbsp;<a style="color: #fff;" href="http://www.wpbeaverbuilder.com/" target="_blank"><?php _e('Subscribe Now', 'fl-builder'); ?> &raquo;</a>
7
  </p>
8
  <?php endif; ?>
9
-
10
  <h3 class="fl-settings-form-header">
11
  <?php _e('Updates &amp; Support Subscription', 'fl-builder'); ?>
12
- <span> &mdash; </span>
13
  <?php if($status) : ?>
14
  <i style="color:#3cb341;"><?php _e('Active!', 'fl-builder'); ?></i>
15
  <?php else : ?>
16
  <i style="color:#ae5842;"><?php _e('Not Active!', 'fl-builder'); ?></i>
17
  <?php endif; ?>
18
  </h3>
19
-
20
  <?php if(isset($_POST['fl-updater-nonce'])) : ?>
21
  <div class="updated">
22
  <p><?php _e('Email address saved!', 'fl-builder'); ?></p>
23
  </div>
24
  <?php endif; ?>
25
-
26
  <p>
27
- <?php echo sprintf(__('Enter your <a href="%s" target="_blank">licence key</a> to enable remote updates and support.', 'fl-builder'), 'http://www.wpbeaverbuilder.com/my-account/') ?>
28
  </p>
29
  <?php if(is_multisite()) : ?>
30
  <p>
31
- <strong><?php _e('NOTE:'); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?>
32
  </p>
33
  <?php endif; ?>
34
  <form action="" method="post">
35
-
36
  <input type="password" name="email" value="<?php echo self::get_subscription_email(); ?>" class="regular-text" />
37
-
38
  <p class="submit">
39
- <input type="submit" name="submit" class="button button-primary" value="<?php _e('Save Subscription Settings', 'fl-builder'); ?>">
40
  <?php wp_nonce_field('updater-nonce', 'fl-updater-nonce'); ?>
41
  </p>
42
  </form>
1
  <div class="wrap">
2
+
3
  <?php if(!$status) : ?>
4
  <p style="padding:10px 20px; background: #d54e21; color: #fff;">
5
  <?php _e('UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to enable automatic updates.', 'fl-builder'); ?>
6
  &nbsp;<a style="color: #fff;" href="http://www.wpbeaverbuilder.com/" target="_blank"><?php _e('Subscribe Now', 'fl-builder'); ?> &raquo;</a>
7
  </p>
8
  <?php endif; ?>
9
+
10
  <h3 class="fl-settings-form-header">
11
  <?php _e('Updates &amp; Support Subscription', 'fl-builder'); ?>
12
+ <span> &mdash; </span>
13
  <?php if($status) : ?>
14
  <i style="color:#3cb341;"><?php _e('Active!', 'fl-builder'); ?></i>
15
  <?php else : ?>
16
  <i style="color:#ae5842;"><?php _e('Not Active!', 'fl-builder'); ?></i>
17
  <?php endif; ?>
18
  </h3>
19
+
20
  <?php if(isset($_POST['fl-updater-nonce'])) : ?>
21
  <div class="updated">
22
  <p><?php _e('Email address saved!', 'fl-builder'); ?></p>
23
  </div>
24
  <?php endif; ?>
25
+
26
  <p>
27
+ <?php echo sprintf( __( 'Enter your <a%s>licence key</a> to enable remote updates and support.', 'fl-builder' ), ' href="http://www.wpbeaverbuilder.com/my-account/" target="_blank"' ) ?>
28
  </p>
29
  <?php if(is_multisite()) : ?>
30
  <p>
31
+ <strong><?php _e( 'NOTE:', 'fl-builder' ); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?>
32
  </p>
33
  <?php endif; ?>
34
  <form action="" method="post">
35
+
36
  <input type="password" name="email" value="<?php echo self::get_subscription_email(); ?>" class="regular-text" />
37
+
38
  <p class="submit">
39
+ <input type="submit" name="submit" class="button button-primary" value="<?php esc_attr_e( 'Save Subscription Settings', 'fl-builder' ); ?>">
40
  <?php wp_nonce_field('updater-nonce', 'fl-updater-nonce'); ?>
41
  </p>
42
  </form>
includes/updater/updater.php CHANGED
@@ -7,7 +7,7 @@ if(!class_exists('FLUpdater') && FL_BUILDER_LITE !== true) {
7
  define('FL_UPDATER_DIR', trailingslashit(dirname(__FILE__)));
8
 
9
  /* Classes */
10
- require_once FL_UPDATER_DIR . 'classes/FLUpdater.php';
11
 
12
  /* Actions */
13
  add_action('fl_themes_license_form', 'FLUpdater::render_form');
7
  define('FL_UPDATER_DIR', trailingslashit(dirname(__FILE__)));
8
 
9
  /* Classes */
10
+ require_once FL_UPDATER_DIR . 'classes/class-fl-updater.php';
11
 
12
  /* Actions */
13
  add_action('fl_themes_license_form', 'FLUpdater::render_form');
includes/user-template-settings.php CHANGED
@@ -1,18 +1,18 @@
1
- <?php
2
 
3
  FLBuilder::register_settings_form('user_template', array(
4
  'title' => __('Save Template', 'fl-builder'),
5
  'tabs' => array(
6
  'general' => array(
7
  'title' => __('General', 'fl-builder'),
8
- 'description' => __('Save the current layout as a template that can be reused under Templates > Your Templates.', 'fl-builder'),
9
  'sections' => array(
10
  'general' => array(
11
  'title' => '',
12
  'fields' => array(
13
  'name' => array(
14
  'type' => 'text',
15
- 'label' => __('Name', 'fl-builder')
16
  )
17
  )
18
  )
1
+ <?php
2
 
3
  FLBuilder::register_settings_form('user_template', array(
4
  'title' => __('Save Template', 'fl-builder'),
5
  'tabs' => array(
6
  'general' => array(
7
  'title' => __('General', 'fl-builder'),
8
+ 'description' => __('Save the current layout as a template that can be reused under <strong>Templates &rarr; Your Templates</strong>.', 'fl-builder'),
9
  'sections' => array(
10
  'general' => array(
11
  'title' => '',
12
  'fields' => array(
13
  'name' => array(
14
  'type' => 'text',
15
+ 'label' => _x( 'Name', 'Template name.', 'fl-builder' )
16
  )
17
  )
18
  )
js/fl-builder.js CHANGED
@@ -333,11 +333,11 @@ var FLBuilder;
333
  $('.fl-builder-done-button').on('click', FLBuilder._doneClicked);
334
  $('.fl-builder-add-content-button').on('click', FLBuilder._showPanel);
335
  $('.fl-builder-templates-button').on('click', FLBuilder._changeTemplateClicked);
 
336
 
337
  /* Panel */
338
  $('.fl-builder-panel-actions .fl-builder-panel-close').on('click', FLBuilder._closePanel);
339
  $('.fl-builder-blocks-section-title').on('click', FLBuilder._blockSectionTitleClicked);
340
- $('.fl-builder-block-upgrade').on('click', FLBuilder._blockUpgradeClicked);
341
 
342
  /* Drag and Drop */
343
  $('body').delegate('.fl-builder-block', 'mousedown', FLBuilder._blockDragInit);
@@ -618,6 +618,15 @@ var FLBuilder;
618
  });
619
  },
620
 
 
 
 
 
 
 
 
 
 
621
  /**
622
  * @method _blockSectionTitleClicked
623
  * @private
@@ -638,15 +647,6 @@ var FLBuilder;
638
  FLBuilder._initScrollbars();
639
  },
640
 
641
- /**
642
- * @method _blockUpgradeClicked
643
- * @private
644
- */
645
- _blockUpgradeClicked: function()
646
- {
647
- window.open(FLBuilderConfig.upgradeUrl);
648
- },
649
-
650
  /* Save Actions
651
  ----------------------------------------------------------*/
652
 
@@ -2074,7 +2074,7 @@ var FLBuilder;
2074
  }
2075
 
2076
  module.addClass('fl-block-overlay-active');
2077
- module.append('<div class="fl-module-overlay fl-block-overlay"><div class="fl-block-overlay-header"><div class="fl-block-overlay-actions"><div class="fl-block-overlay-title">'+ moduleName +'</div><i class="fl-block-move fa fa-arrows fl-tip" title="' + FLBuilderStrings.move + '"></i><i class="fl-block-settings fa fa-wrench fl-tip" title="' + moduleName + ' ' + FLBuilderStrings.settings + '"></i><i class="fl-block-copy fa fa-copy fl-tip" title="' + FLBuilderStrings.duplicate + '"></i><i class="fl-block-columns fa fa-columns fl-tip" title="' + FLBuilderStrings.columnSettings + '"></i><i class="fl-block-remove fa fa-times fl-tip" title="' + FLBuilderStrings.remove + '"></i></div><div class="fl-clear"></div></div></div>');
2078
  FLBuilder._initTipTips();
2079
  }
2080
 
333
  $('.fl-builder-done-button').on('click', FLBuilder._doneClicked);
334
  $('.fl-builder-add-content-button').on('click', FLBuilder._showPanel);
335
  $('.fl-builder-templates-button').on('click', FLBuilder._changeTemplateClicked);
336
+ $('.fl-builder-upgrade-button').on('click', FLBuilder._upgradeClicked);
337
 
338
  /* Panel */
339
  $('.fl-builder-panel-actions .fl-builder-panel-close').on('click', FLBuilder._closePanel);
340
  $('.fl-builder-blocks-section-title').on('click', FLBuilder._blockSectionTitleClicked);
 
341
 
342
  /* Drag and Drop */
343
  $('body').delegate('.fl-builder-block', 'mousedown', FLBuilder._blockDragInit);
618
  });
619
  },
620
 
621
+ /**
622
+ * @method _upgradeClicked
623
+ * @private
624
+ */
625
+ _upgradeClicked: function()
626
+ {
627
+ window.open(FLBuilderConfig.upgradeUrl);
628
+ },
629
+
630
  /**
631
  * @method _blockSectionTitleClicked
632
  * @private
647
  FLBuilder._initScrollbars();
648
  },
649
 
 
 
 
 
 
 
 
 
 
650
  /* Save Actions
651
  ----------------------------------------------------------*/
652
 
2074
  }
2075
 
2076
  module.addClass('fl-block-overlay-active');
2077
+ module.append('<div class="fl-module-overlay fl-block-overlay"><div class="fl-block-overlay-header"><div class="fl-block-overlay-actions"><div class="fl-block-overlay-title">'+ moduleName +'</div><i class="fl-block-move fa fa-arrows fl-tip" title="' + FLBuilderStrings.move + '"></i><i class="fl-block-settings fa fa-wrench fl-tip" title="' + FLBuilderStrings.settings.replace( '%s', moduleName ) + '"></i><i class="fl-block-copy fa fa-copy fl-tip" title="' + FLBuilderStrings.duplicate + '"></i><i class="fl-block-columns fa fa-columns fl-tip" title="' + FLBuilderStrings.columnSettings + '"></i><i class="fl-block-remove fa fa-times fl-tip" title="' + FLBuilderStrings.remove + '"></i></div><div class="fl-clear"></div></div></div>');
2078
  FLBuilder._initTipTips();
2079
  }
2080
 
js/fl-icon-selector.js CHANGED
@@ -4,9 +4,10 @@ var FLIconSelector;
4
 
5
  FLIconSelector = {
6
 
7
- _content: null,
8
- _lightbox: null,
9
- _rendered: false,
 
10
 
11
  open: function(callback)
12
  {
@@ -26,8 +27,8 @@ var FLIconSelector;
26
  FLIconSelector._lightbox.open();
27
  }
28
 
29
- FLIconSelector._lightbox.on('select', function(event, icon){
30
- FLIconSelector._lightbox.off('select');
31
  FLIconSelector._lightbox.close();
32
  callback(icon);
33
  });
@@ -46,29 +47,54 @@ var FLIconSelector;
46
  {
47
  FLIconSelector._content = html;
48
  FLIconSelector._lightbox.setContent(html);
49
- $('.fl-icons-filter select').on('change', FLIconSelector._filter);
 
50
  $('.fl-icons-list i').on('click', FLIconSelector._select);
51
  $('.fl-icon-selector-cancel').on('click', $.proxy(FLIconSelector._lightbox.close, FLIconSelector._lightbox));
52
  },
53
 
54
  _filter: function()
55
  {
56
- var val = $(this).val();
 
57
 
58
- if(val == 'all') {
59
- $('.fl-icons-section').show();
 
60
  }
61
  else {
62
- $('.fl-icons-section').hide();
63
- $('.fl-' + val).show();
 
 
 
 
 
 
 
 
 
 
64
  }
65
  },
66
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  _select: function()
68
  {
69
  var icon = $(this).attr('class');
70
 
71
- FLIconSelector._lightbox.trigger('select', icon);
72
  }
73
  };
74
 
4
 
5
  FLIconSelector = {
6
 
7
+ _content : null,
8
+ _lightbox : null,
9
+ _rendered : false,
10
+ _filterText : '',
11
 
12
  open: function(callback)
13
  {
27
  FLIconSelector._lightbox.open();
28
  }
29
 
30
+ FLIconSelector._lightbox.on('icon-selected', function(event, icon){
31
+ FLIconSelector._lightbox.off('icon-selected');
32
  FLIconSelector._lightbox.close();
33
  callback(icon);
34
  });
47
  {
48
  FLIconSelector._content = html;
49
  FLIconSelector._lightbox.setContent(html);
50
+ $('.fl-icons-filter-select').on('change', FLIconSelector._filter);
51
+ $('.fl-icons-filter-text').on('keyup', FLIconSelector._filter);
52
  $('.fl-icons-list i').on('click', FLIconSelector._select);
53
  $('.fl-icon-selector-cancel').on('click', $.proxy(FLIconSelector._lightbox.close, FLIconSelector._lightbox));
54
  },
55
 
56
  _filter: function()
57
  {
58
+ var section = $( '.fl-icons-filter-select' ).val(),
59
+ text = $( '.fl-icons-filter-text' ).val();
60
 
61
+ // Filter sections.
62
+ if ( 'all' == section ) {
63
+ $( '.fl-icons-section' ).show();
64
  }
65
  else {
66
+ $( '.fl-icons-section' ).hide();
67
+ $( '.fl-' + section ).show();
68
+ }
69
+
70
+ // Filter icons.
71
+ FLIconSelector._filterText = text;
72
+
73
+ if ( '' != text ) {
74
+ $( '.fl-icons-list i' ).each( FLIconSelector._filterIcon );
75
+ }
76
+ else {
77
+ $( '.fl-icons-list i' ).show();
78
  }
79
  },
80
 
81
+ _filterIcon: function()
82
+ {
83
+ var icon = $( this );
84
+
85
+ if ( -1 == icon.attr( 'class' ).indexOf( FLIconSelector._filterText ) ) {
86
+ icon.hide();
87
+ }
88
+ else {
89
+ icon.show();
90
+ }
91
+ },
92
+
93
  _select: function()
94
  {
95
  var icon = $(this).attr('class');
96
 
97
+ FLIconSelector._lightbox.trigger('icon-selected', icon);
98
  }
99
  };
100
 
lang/fl-builder-it_IT.mo DELETED
Binary file
lang/fl-builder-it_IT.po DELETED
@@ -1,3506 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: FastLine Page Builder (Pro Version) v1.2.3\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2014-05-07 14:49-0800\n"
6
- "PO-Revision-Date: 2014-07-14 16:31:24+0000\n"
7
- "Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: Poedit 1.5.7\n"
14
- "X-Poedit-Language: \n"
15
- "X-Poedit-Country: \n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_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"
18
- "X-Poedit-Basepath: .\n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: /classes\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: modules/accordion/accordion.php:14
24
- #@ fl-builder
25
- msgid "Accordion"
26
- msgstr "Fisarmonica"
27
-
28
- #: modules/accordion/accordion.php:15
29
- #@ fl-builder
30
- msgid "Display a collapsible accordion of items."
31
- msgstr "Mostra una fisarmonica di voci collassabile "
32
-
33
- #: modules/accordion/accordion.php:28
34
- #@ fl-builder
35
- msgid "Items"
36
- msgstr "Voci"
37
-
38
- #: modules/accordion/accordion.php:35
39
- #@ fl-builder
40
- msgid "Item"
41
- msgstr "Voce"
42
-
43
- #: includes/column-settings.php:7
44
- #: includes/module-settings.php:74
45
- #: includes/row-settings.php:9
46
- #: modules/accordion/accordion.php:45
47
- #: modules/button/button.php:66
48
- #: modules/callout/callout.php:230
49
- #: modules/content-slider/content-slider.php:418
50
- #: modules/cta/cta.php:88
51
- #: modules/heading/heading.php:59
52
- #: modules/icon/icon.php:72
53
- #: modules/icon-group/icon-group.php:46
54
- #: modules/separator/separator.php:55
55
- #@ fl-builder
56
- msgid "Style"
57
- msgstr "Stile"
58
-
59
- #: modules/accordion/accordion.php:52
60
- #@ fl-builder
61
- msgid "Border Color"
62
- msgstr "Colore Bordi"
63
-
64
- #: modules/accordion/accordion.php:57
65
- #@ fl-builder
66
- msgid "Label Size"
67
- msgstr "Dimensioni Label"
68
-
69
- #: modules/accordion/accordion.php:60
70
- #: modules/gallery/gallery.php:259
71
- #@ fl-builder
72
- msgid "Small"
73
- msgstr "Piccola"
74
-
75
- #: classes/FLBuilderPhoto.php:77
76
- #: includes/js-config.php:36
77
- #: includes/row-settings.php:269
78
- #: modules/accordion/accordion.php:61
79
- #: modules/gallery/gallery.php:260
80
- #@ fl-builder
81
- msgid "Medium"
82
- msgstr "Media"
83
-
84
- #: classes/FLBuilderPhoto.php:76
85
- #: includes/js-config.php:34
86
- #: modules/accordion/accordion.php:62
87
- #: modules/gallery/gallery.php:261
88
- #@ fl-builder
89
- msgid "Large"
90
- msgstr "Grande"
91
-
92
- #: modules/accordion/accordion.php:67
93
- #@ fl-builder
94
- msgid "Item Spacing"
95
- msgstr "Spazio Voci"
96
-
97
- #: modules/accordion/accordion.php:83
98
- #@ fl-builder
99
- msgid "Add Item"
100
- msgstr "Aggiungi Voce"
101
-
102
- #: includes/global-settings.php:7
103
- #: includes/user-template-settings.php:7
104
- #: modules/accordion/accordion.php:86
105
- #: modules/button/button.php:28
106
- #: modules/callout/callout.php:206
107
- #: modules/contact-form/contact-form.php:57
108
- #: modules/content-slider/content-slider.php:183
109
- #: modules/content-slider/content-slider.php:307
110
- #: modules/cta/cta.php:64
111
- #: modules/gallery/gallery.php:209
112
- #: modules/heading/heading.php:26
113
- #: modules/html/html.php:26
114
- #: modules/icon/icon.php:29
115
- #: modules/icon-group/icon-group.php:124
116
- #: modules/map/map.php:26
117
- #: modules/photo/photo.php:313
118
- #: modules/rich-text/rich-text.php:26
119
- #: modules/separator/separator.php:27
120
- #: modules/sidebar/sidebar.php:27
121
- #: modules/slideshow/slideshow.php:256
122
- #: modules/social-buttons/social-buttons.php:62
123
- #: modules/testimonials/testimonials.php:30
124
- #: modules/testimonials/testimonials.php:191
125
- #: modules/video/video.php:75
126
- #: modules/widget/widget.php:27
127
- #: modules/woocommerce/woocommerce.php:50
128
- #@ fl-builder
129
- msgid "General"
130
- msgstr "Generale"
131
-
132
- #: modules/accordion/accordion.php:93
133
- #@ fl-builder
134
- msgid "Label"
135
- msgstr "Label"
136
-
137
- #: modules/accordion/accordion.php:98
138
- #@ fl-builder
139
- msgid "Content"
140
- msgstr "Contenuto"
141
-
142
- #: modules/button/button.php:14
143
- #: modules/callout/callout.php:453
144
- #: modules/content-slider/content-slider.php:595
145
- #: modules/cta/cta.php:195
146
- #@ fl-builder
147
- msgid "Button"
148
- msgstr "Bottone"
149
-
150
- #: modules/button/button.php:15
151
- #@ fl-builder
152
- msgid "A simple call to action button."
153
- msgstr "Un semplice bottone \"Call to Action\""
154
-
155
- #: includes/column-settings.php:23
156
- #: includes/row-settings.php:42
157
- #: modules/button/button.php:35
158
- #: modules/callout/callout.php:218
159
- #: modules/callout/callout.php:452
160
- #: modules/callout/callout.php:468
161
- #: modules/content-slider/content-slider.php:375
162
- #: modules/content-slider/content-slider.php:610
163
- #: modules/cta/cta.php:76
164
- #: modules/cta/cta.php:202
165
- #@ fl-builder
166
- msgid "Text"
167
- msgstr "Testo"
168
-
169
- #: modules/button/button.php:39
170
- #: modules/callout/callout.php:303
171
- #: modules/callout/callout.php:350
172
- #: modules/callout/callout.php:354
173
- #: modules/icon/icon.php:14
174
- #: modules/icon/icon.php:36
175
- #: modules/icon-group/icon-group.php:36
176
- #: modules/icon-group/icon-group.php:131
177
- #@ fl-builder
178
- msgid "Icon"
179
- msgstr "Icona"
180
-
181
- #: modules/button/button.php:45
182
- #: modules/button/button.php:49
183
- #: modules/callout/callout.php:424
184
- #: modules/callout/callout.php:428
185
- #: modules/content-slider/content-slider.php:566
186
- #: modules/content-slider/content-slider.php:570
187
- #: modules/content-slider/content-slider.php:594
188
- #: modules/cta/cta.php:211
189
- #: modules/heading/heading.php:38
190
- #: modules/heading/heading.php:42
191
- #: modules/icon/icon.php:45
192
- #: modules/icon-group/icon-group.php:135
193
- #: modules/slideshow/slideshow.php:340
194
- #@ fl-builder
195
- msgid "Link"
196
- msgstr "Link"
197
-
198
- #: modules/button/button.php:54
199
- #: modules/callout/callout.php:434
200
- #: modules/content-slider/content-slider.php:576
201
- #: modules/cta/cta.php:216
202
- #: modules/heading/heading.php:47
203
- #: modules/icon/icon.php:50
204
- #: modules/photo/photo.php:416
205
- #@ fl-builder
206
- msgid "Link Target"
207
- msgstr "Link Target"
208
-
209
- #: modules/button/button.php:57
210
- #: modules/callout/callout.php:437
211
- #: modules/content-slider/content-slider.php:579
212
- #: modules/cta/cta.php:219
213
- #: modules/heading/heading.php:50
214
- #: modules/icon/icon.php:53
215
- #: modules/photo/photo.php:419
216
- #@ fl-builder
217
- msgid "Same Window"
218
- msgstr "Finestra Corrente"
219
-
220
- #: modules/button/button.php:58
221
- #: modules/callout/callout.php:438
222
- #: modules/content-slider/content-slider.php:580
223
- #: modules/cta/cta.php:220
224
- #: modules/heading/heading.php:51
225
- #: modules/icon/icon.php:54
226
- #: modules/photo/photo.php:420
227
- #@ fl-builder
228
- msgid "New Window"
229
- msgstr "Nuova Finestra"
230
-
231
- #: modules/button/button.php:69
232
- #: modules/cta/cta.php:168
233
- #: modules/heading/heading.php:62
234
- #: modules/icon/icon.php:75
235
- #: modules/icon-group/icon-group.php:49
236
- #@ fl-builder
237
- #@ default
238
- msgid "Colors"
239
- msgstr "Colori"
240
-
241
- #: includes/column-settings.php:33
242
- #: includes/row-settings.php:93
243
- #: modules/button/button.php:73
244
- #: modules/callout/callout.php:386
245
- #: modules/callout/callout.php:477
246
- #: modules/content-slider/content-slider.php:356
247
- #: modules/content-slider/content-slider.php:619
248
- #: modules/cta/cta.php:178
249
- #: modules/cta/cta.php:230
250
- #: modules/icon/icon.php:89
251
- #: modules/icon-group/icon-group.php:63
252
- #@ fl-builder
253
- msgid "Background Color"
254
- msgstr "Colore di sfondo"
255
-
256
- #: modules/button/button.php:79
257
- #: modules/callout/callout.php:391
258
- #: modules/callout/callout.php:483
259
- #: modules/content-slider/content-slider.php:625
260
- #: modules/cta/cta.php:236
261
- #: modules/icon/icon.php:94
262
- #: modules/icon-group/icon-group.php:68
263
- #@ fl-builder
264
- msgid "Background Hover Color"
265
- msgstr "Colore di sfondo al passaggio"
266
-
267
- #: modules/button/button.php:85
268
- #: modules/callout/callout.php:489
269
- #: modules/content-slider/content-slider.php:521
270
- #: modules/content-slider/content-slider.php:630
271
- #: modules/content-slider/content-slider.php:714
272
- #: modules/cta/cta.php:172
273
- #: modules/cta/cta.php:242
274
- #: modules/heading/heading.php:67
275
- #@ fl-builder
276
- msgid "Text Color"
277
- msgstr "Colore del testo"
278
-
279
- #: modules/button/button.php:91
280
- #: modules/callout/callout.php:495
281
- #: modules/content-slider/content-slider.php:636
282
- #: modules/cta/cta.php:248
283
- #@ fl-builder
284
- msgid "Text Hover Color"
285
- msgstr "Colore del testo al passaggio"
286
-
287
- #: modules/button/button.php:97
288
- #: modules/callout/callout.php:396
289
- #: modules/callout/callout.php:501
290
- #: modules/content-slider/content-slider.php:641
291
- #: modules/cta/cta.php:254
292
- #: modules/icon/icon.php:99
293
- #: modules/icon-group/icon-group.php:73
294
- #@ fl-builder
295
- msgid "Gradient"
296
- msgstr "Gradiente"
297
-
298
- #: includes/global-settings.php:18
299
- #: includes/global-settings.php:87
300
- #: includes/row-settings.php:250
301
- #: modules/button/button.php:100
302
- #: modules/callout/callout.php:399
303
- #: modules/callout/callout.php:504
304
- #: modules/content-slider/content-slider.php:202
305
- #: modules/content-slider/content-slider.php:216
306
- #: modules/content-slider/content-slider.php:250
307
- #: modules/content-slider/content-slider.php:259
308
- #: modules/content-slider/content-slider.php:530
309
- #: modules/content-slider/content-slider.php:644
310
- #: modules/cta/cta.php:257
311
- #: modules/icon/icon.php:102
312
- #: modules/icon-group/icon-group.php:76
313
- #: modules/slideshow/slideshow.php:315
314
- #: modules/slideshow/slideshow.php:325
315
- #: modules/slideshow/slideshow.php:368
316
- #: modules/slideshow/slideshow.php:409
317
- #: modules/slideshow/slideshow.php:428
318
- #: modules/slideshow/slideshow.php:477
319
- #: modules/slideshow/slideshow.php:486
320
- #: modules/slideshow/slideshow.php:495
321
- #: modules/slideshow/slideshow.php:504
322
- #: modules/slideshow/slideshow.php:513
323
- #: modules/slideshow/slideshow.php:522
324
- #: modules/slideshow/slideshow.php:531
325
- #: modules/slideshow/slideshow.php:545
326
- #: modules/slideshow/slideshow.php:560
327
- #: modules/slideshow/slideshow.php:595
328
- #: modules/slideshow/slideshow.php:604
329
- #: modules/slideshow/slideshow.php:613
330
- #: modules/slideshow/slideshow.php:622
331
- #: modules/social-buttons/social-buttons.php:103
332
- #: modules/social-buttons/social-buttons.php:112
333
- #: modules/social-buttons/social-buttons.php:121
334
- #: modules/testimonials/testimonials.php:81
335
- #: modules/testimonials/testimonials.php:120
336
- #: modules/testimonials/testimonials.php:145
337
- #: modules/video/video.php:110
338
- #: modules/video/video.php:119
339
- #@ fl-builder
340
- msgid "No"
341
- msgstr "No"
342
-
343
- #: includes/global-settings.php:19
344
- #: includes/global-settings.php:88
345
- #: includes/row-settings.php:251
346
- #: modules/button/button.php:101
347
- #: modules/callout/callout.php:400
348
- #: modules/callout/callout.php:505
349
- #: modules/content-slider/content-slider.php:203
350
- #: modules/content-slider/content-slider.php:217
351
- #: modules/content-slider/content-slider.php:251
352
- #: modules/content-slider/content-slider.php:260
353
- #: modules/content-slider/content-slider.php:531
354
- #: modules/content-slider/content-slider.php:645
355
- #: modules/cta/cta.php:258
356
- #: modules/icon/icon.php:103
357
- #: modules/icon-group/icon-group.php:77
358
- #: modules/slideshow/slideshow.php:316
359
- #: modules/slideshow/slideshow.php:326
360
- #: modules/slideshow/slideshow.php:369
361
- #: modules/slideshow/slideshow.php:410
362
- #: modules/slideshow/slideshow.php:429
363
- #: modules/slideshow/slideshow.php:478
364
- #: modules/slideshow/slideshow.php:487
365
- #: modules/slideshow/slideshow.php:496
366
- #: modules/slideshow/slideshow.php:505
367
- #: modules/slideshow/slideshow.php:514
368
- #: modules/slideshow/slideshow.php:523
369
- #: modules/slideshow/slideshow.php:532
370
- #: modules/slideshow/slideshow.php:546
371
- #: modules/slideshow/slideshow.php:561
372
- #: modules/slideshow/slideshow.php:596
373
- #: modules/slideshow/slideshow.php:605
374
- #: modules/slideshow/slideshow.php:614
375
- #: modules/slideshow/slideshow.php:623
376
- #: modules/social-buttons/social-buttons.php:102
377
- #: modules/social-buttons/social-buttons.php:111
378
- #: modules/social-buttons/social-buttons.php:120
379
- #: modules/testimonials/testimonials.php:82
380
- #: modules/testimonials/testimonials.php:121
381
- #: modules/testimonials/testimonials.php:146
382
- #: modules/video/video.php:111
383
- #: modules/video/video.php:120
384
- #@ fl-builder
385
- msgid "Yes"
386
- msgstr "Sì"
387
-
388
- #: modules/button/button.php:107
389
- #: modules/callout/callout.php:233
390
- #: modules/cta/cta.php:91
391
- #: modules/heading/heading.php:72
392
- #: modules/icon/icon.php:109
393
- #: modules/icon-group/icon-group.php:83
394
- #@ fl-builder
395
- #@ default
396
- msgid "Structure"
397
- msgstr "Struttura"
398
-
399
- #: includes/row-settings.php:16
400
- #: modules/button/button.php:111
401
- #: modules/content-slider/content-slider.php:476
402
- #@ fl-builder
403
- msgid "Width"
404
- msgstr "Larghezza"
405
-
406
- #: modules/button/button.php:114
407
- #: modules/callout/callout.php:518
408
- #: modules/content-slider/content-slider.php:554
409
- #@ fl-builder
410
- msgid "Auto"
411
- msgstr "Auto"
412
-
413
- #: includes/row-settings.php:20
414
- #: includes/row-settings.php:35
415
- #: modules/button/button.php:115
416
- #: modules/callout/callout.php:519
417
- #@ fl-builder
418
- msgid "Full Width"
419
- msgstr "Larghezza Piena"
420
-
421
- #: modules/button/button.php:138
422
- #: modules/cta/cta.php:109
423
- #: modules/heading/heading.php:76
424
- #: modules/heading/heading.php:126
425
- #: modules/icon/icon.php:121
426
- #: modules/icon-group/icon-group.php:103
427
- #: modules/photo/photo.php:358
428
- #: modules/social-buttons/social-buttons.php:89
429
- #@ fl-builder
430
- msgid "Alignment"
431
- msgstr "Allineamento"
432
-
433
- #: modules/button/button.php:141
434
- #: modules/callout/callout.php:240
435
- #: modules/content-slider/content-slider.php:470
436
- #: modules/cta/cta.php:113
437
- #: modules/heading/heading.php:80
438
- #: modules/heading/heading.php:144
439
- #: modules/icon/icon.php:124
440
- #: modules/icon-group/icon-group.php:106
441
- #: modules/photo/photo.php:362
442
- #: modules/social-buttons/social-buttons.php:92
443
- #@ fl-builder
444
- msgid "Center"
445
- msgstr "Centro"
446
-
447
- #: includes/column-settings.php:182
448
- #: includes/column-settings.php:223
449
- #: includes/module-settings.php:51
450
- #: includes/row-settings.php:407
451
- #: includes/row-settings.php:448
452
- #: modules/button/button.php:142
453
- #: modules/callout/callout.php:241
454
- #: modules/content-slider/content-slider.php:469
455
- #: modules/cta/cta.php:112
456
- #: modules/heading/heading.php:79
457
- #: modules/heading/heading.php:143
458
- #: modules/icon/icon.php:125
459
- #: modules/icon-group/icon-group.php:107
460
- #: modules/photo/photo.php:361
461
- #: modules/social-buttons/social-buttons.php:93
462
- #@ fl-builder
463
- msgid "Left"
464
- msgstr "Sinistra"
465
-
466
- #: includes/column-settings.php:191
467
- #: includes/column-settings.php:232
468
- #: includes/module-settings.php:60
469
- #: includes/row-settings.php:416
470
- #: includes/row-settings.php:457
471
- #: modules/button/button.php:143
472
- #: modules/callout/callout.php:242
473
- #: modules/content-slider/content-slider.php:471
474
- #: modules/cta/cta.php:114
475
- #: modules/heading/heading.php:81
476
- #: modules/heading/heading.php:145
477
- #: modules/icon/icon.php:126
478
- #: modules/icon-group/icon-group.php:108
479
- #: modules/photo/photo.php:363
480
- #: modules/social-buttons/social-buttons.php:94
481
- #@ fl-builder
482
- msgid "Right"
483
- msgstr "Destra"
484
-
485
- #: modules/button/button.php:148
486
- #: modules/callout/callout.php:524
487
- #: modules/content-slider/content-slider.php:655
488
- #: modules/cta/cta.php:268
489
- #: modules/heading/heading.php:99
490
- #: modules/heading/heading.php:150
491
- #@ fl-builder
492
- msgid "Font Size"
493
- msgstr "Dimensione del carattere"
494
-
495
- #: includes/column-settings.php:100
496
- #: includes/column-settings.php:109
497
- #: includes/column-settings.php:118
498
- #: includes/column-settings.php:127
499
- #: includes/column-settings.php:166
500
- #: includes/column-settings.php:175
501
- #: includes/column-settings.php:184
502
- #: includes/column-settings.php:193
503
- #: includes/column-settings.php:207
504
- #: includes/column-settings.php:216
505
- #: includes/column-settings.php:225
506
- #: includes/column-settings.php:234
507
- #: includes/global-settings.php:45
508
- #: includes/global-settings.php:53
509
- #: includes/global-settings.php:61
510
- #: includes/global-settings.php:75
511
- #: includes/global-settings.php:102
512
- #: includes/module-settings.php:35
513
- #: includes/module-settings.php:44
514
- #: includes/module-settings.php:53
515
- #: includes/module-settings.php:62
516
- #: includes/row-settings.php:325
517
- #: includes/row-settings.php:334
518
- #: includes/row-settings.php:343
519
- #: includes/row-settings.php:352
520
- #: includes/row-settings.php:391
521
- #: includes/row-settings.php:400
522
- #: includes/row-settings.php:409
523
- #: includes/row-settings.php:418
524
- #: includes/row-settings.php:432
525
- #: includes/row-settings.php:441
526
- #: includes/row-settings.php:450
527
- #: includes/row-settings.php:459
528
- #: modules/button/button.php:134
529
- #: modules/button/button.php:152
530
- #: modules/button/button.php:160
531
- #: modules/button/button.php:168
532
- #: modules/callout/callout.php:284
533
- #: modules/callout/callout.php:414
534
- #: modules/callout/callout.php:528
535
- #: modules/callout/callout.php:536
536
- #: modules/callout/callout.php:544
537
- #: modules/content-slider/content-slider.php:194
538
- #: modules/content-slider/content-slider.php:274
539
- #: modules/content-slider/content-slider.php:456
540
- #: modules/content-slider/content-slider.php:486
541
- #: modules/content-slider/content-slider.php:494
542
- #: modules/content-slider/content-slider.php:502
543
- #: modules/content-slider/content-slider.php:510
544
- #: modules/content-slider/content-slider.php:659
545
- #: modules/content-slider/content-slider.php:667
546
- #: modules/content-slider/content-slider.php:675
547
- #: modules/cta/cta.php:123
548
- #: modules/cta/cta.php:163
549
- #: modules/cta/cta.php:272
550
- #: modules/cta/cta.php:280
551
- #: modules/cta/cta.php:288
552
- #: modules/gallery/gallery.php:270
553
- #: modules/heading/heading.php:117
554
- #: modules/heading/heading.php:168
555
- #: modules/icon/icon.php:117
556
- #: modules/icon-group/icon-group.php:91
557
- #: modules/icon-group/icon-group.php:99
558
- #: modules/slideshow/slideshow.php:298
559
- #: modules/slideshow/slideshow.php:583
560
- #: modules/testimonials/testimonials.php:69
561
- #@ fl-builder
562
- msgid "px"
563
- msgstr "px"
564
-
565
- #: includes/column-settings.php:201
566
- #: includes/global-settings.php:49
567
- #: includes/row-settings.php:426
568
- #: modules/button/button.php:156
569
- #: modules/callout/callout.php:532
570
- #: modules/content-slider/content-slider.php:663
571
- #: modules/cta/cta.php:276
572
- #@ fl-builder
573
- msgid "Padding"
574
- msgstr "Padding"
575
-
576
- #: modules/button/button.php:164
577
- #: modules/callout/callout.php:540
578
- #: modules/cta/cta.php:284
579
- #@ fl-builder
580
- msgid "Round Corners"
581
- msgstr "Angoli Arrotondati"
582
-
583
- #: modules/callout/callout.php:14
584
- #@ fl-builder
585
- msgid "Callout"
586
- msgstr "Didascalia"
587
-
588
- #: modules/callout/callout.php:15
589
- #@ fl-builder
590
- msgid "A heading and snippet of text with an optional link, icon and image."
591
- msgstr "Un titolo e un estratto di testo con un collegamento, icona e immagine facoltativi."
592
-
593
- #: modules/callout/callout.php:213
594
- #: modules/content-slider/content-slider.php:406
595
- #: modules/content-slider/content-slider.php:421
596
- #: modules/cta/cta.php:71
597
- #: modules/heading/heading.php:14
598
- #: modules/heading/heading.php:33
599
- #: modules/testimonials/testimonials.php:56
600
- #: modules/testimonials/testimonials.php:61
601
- #@ fl-builder
602
- msgid "Heading"
603
- msgstr "Titolo"
604
-
605
- #: modules/callout/callout.php:237
606
- #@ fl-builder
607
- msgid "Overall Alignment"
608
- msgstr "Allineamento Globale"
609
-
610
- #: modules/callout/callout.php:244
611
- #@ fl-builder
612
- msgid "The alignment that will apply to all elements within the callout."
613
- msgstr "L'allineamento che si applica a tutti gli elementi all'interno della didascalia."
614
-
615
- #: modules/callout/callout.php:249
616
- #: modules/cta/cta.php:128
617
- #@ default
618
- msgid "Heading Structure"
619
- msgstr "Struttura del titolo"
620
-
621
- #: modules/callout/callout.php:253
622
- #: modules/content-slider/content-slider.php:425
623
- #: modules/cta/cta.php:132
624
- #@ fl-builder
625
- msgid "Heading Tag"
626
- msgstr "Tag del titolo"
627
-
628
- #: modules/callout/callout.php:266
629
- #: modules/content-slider/content-slider.php:438
630
- #: modules/content-slider/content-slider.php:452
631
- #: modules/cta/cta.php:145
632
- #: modules/testimonials/testimonials.php:65
633
- #@ fl-builder
634
- msgid "Heading Size"
635
- msgstr "Dimensione del titolo"
636
-
637
- #: modules/callout/callout.php:269
638
- #: modules/content-slider/content-slider.php:441
639
- #: modules/cta/cta.php:148
640
- #: modules/heading/heading.php:102
641
- #: modules/heading/heading.php:129
642
- #: modules/heading/heading.php:153
643
- #: modules/woocommerce/woocommerce.php:192
644
- #@ fl-builder
645
- msgid "Default"
646
- msgstr "Predefinito"
647
-
648
- #: modules/button/button.php:116
649
- #: modules/callout/callout.php:270
650
- #: modules/content-slider/content-slider.php:442
651
- #: modules/cta/cta.php:149
652
- #: modules/heading/heading.php:103
653
- #: modules/heading/heading.php:130
654
- #: modules/heading/heading.php:154
655
- #: modules/social-buttons/social-buttons.php:72
656
- #@ fl-builder
657
- msgid "Custom"
658
- msgstr "Personalizzato"
659
-
660
- #: modules/callout/callout.php:280
661
- #: modules/cta/cta.php:159
662
- #@ fl-builder
663
- msgid "Heading Custom Size"
664
- msgstr "Dimensione personalizzata del titolo"
665
-
666
- #: modules/callout/callout.php:291
667
- #@ fl-builder
668
- msgid "Image"
669
- msgstr "Immagine"
670
-
671
- #: modules/callout/callout.php:298
672
- #@ fl-builder
673
- msgid "Image Type"
674
- msgstr "Tipo Immagine"
675
-
676
- #: includes/column-settings.php:59
677
- #: includes/module-settings.php:76
678
- #: includes/row-settings.php:59
679
- #: includes/row-settings.php:122
680
- #: includes/row-settings.php:161
681
- #: includes/row-settings.php:225
682
- #: includes/row-settings.php:284
683
- #: modules/callout/callout.php:301
684
- #: modules/callout/callout.php:329
685
- #: modules/callout/callout.php:451
686
- #: modules/content-slider/content-slider.php:331
687
- #: modules/content-slider/content-slider.php:378
688
- #: modules/content-slider/content-slider.php:593
689
- #: modules/gallery/gallery.php:288
690
- #: modules/photo/photo.php:349
691
- #: modules/photo/photo.php:394
692
- #: modules/slideshow/slideshow.php:339
693
- #: modules/slideshow/slideshow.php:384
694
- #: modules/slideshow/slideshow.php:443
695
- #@ fl-builder
696
- msgid "None"
697
- msgstr "Nessuna"
698
-
699
- #: includes/row-settings.php:61
700
- #: includes/row-settings.php:115
701
- #: includes/row-settings.php:261
702
- #: modules/callout/callout.php:302
703
- #: modules/callout/callout.php:318
704
- #: modules/callout/callout.php:322
705
- #: modules/content-slider/content-slider.php:328
706
- #: modules/content-slider/content-slider.php:397
707
- #: modules/content-slider/content-slider.php:705
708
- #: modules/photo/photo.php:25
709
- #: modules/photo/photo.php:337
710
- #@ fl-builder
711
- msgid "Photo"
712
- msgstr "Foto"
713
-
714
- #: modules/callout/callout.php:326
715
- #: modules/photo/photo.php:346
716
- #: modules/slideshow/slideshow.php:312
717
- #@ fl-builder
718
- msgid "Crop"
719
- msgstr "Ritagliata"
720
-
721
- #: modules/callout/callout.php:330
722
- #: modules/photo/photo.php:350
723
- #@ fl-builder
724
- msgid "Landscape"
725
- msgstr "Paesaggio"
726
-
727
- #: modules/callout/callout.php:331
728
- #: modules/photo/photo.php:351
729
- #@ fl-builder
730
- msgid "Panorama"
731
- msgstr "Panorama"
732
-
733
- #: modules/callout/callout.php:332
734
- #: modules/photo/photo.php:352
735
- #@ fl-builder
736
- msgid "Portrait"
737
- msgstr "Ritratto"
738
-
739
- #: modules/callout/callout.php:333
740
- #: modules/photo/photo.php:353
741
- #@ fl-builder
742
- msgid "Square"
743
- msgstr "Quadro"
744
-
745
- #: includes/row-settings.php:131
746
- #: modules/callout/callout.php:338
747
- #: modules/callout/callout.php:358
748
- #: modules/content-slider/content-slider.php:465
749
- #@ fl-builder
750
- msgid "Position"
751
- msgstr "Posizione"
752
-
753
- #: modules/callout/callout.php:341
754
- #: modules/callout/callout.php:361
755
- #@ fl-builder
756
- msgid "Above Heading"
757
- msgstr "SOpra il titolo"
758
-
759
- #: modules/callout/callout.php:342
760
- #: modules/callout/callout.php:362
761
- #@ fl-builder
762
- msgid "Below Heading"
763
- msgstr "Sotto il titolo"
764
-
765
- #: modules/callout/callout.php:343
766
- #: modules/callout/callout.php:365
767
- #@ fl-builder
768
- msgid "Left of Text and Heading"
769
- msgstr "Alla sinistra del testo e del titolo"
770
-
771
- #: modules/callout/callout.php:344
772
- #: modules/callout/callout.php:366
773
- #@ fl-builder
774
- msgid "Right of Text and Heading"
775
- msgstr "Alla destra del testo e del titolo"
776
-
777
- #: modules/callout/callout.php:363
778
- #@ fl-builder
779
- msgid "Left Heading"
780
- msgstr "Alla sinistra del titolo"
781
-
782
- #: modules/callout/callout.php:364
783
- #@ fl-builder
784
- msgid "Right Heading"
785
- msgstr "Alla destra del titolo"
786
-
787
- #: modules/callout/callout.php:372
788
- #@ fl-builder
789
- msgid "Icon Colors"
790
- msgstr "Colori icona"
791
-
792
- #: includes/column-settings.php:27
793
- #: includes/column-settings.php:37
794
- #: includes/column-settings.php:85
795
- #: includes/row-settings.php:46
796
- #: includes/row-settings.php:60
797
- #: includes/row-settings.php:97
798
- #: includes/row-settings.php:310
799
- #: modules/callout/callout.php:376
800
- #: modules/content-slider/content-slider.php:330
801
- #: modules/icon/icon.php:79
802
- #: modules/icon-group/icon-group.php:53
803
- #: modules/separator/separator.php:34
804
- #@ fl-builder
805
- msgid "Color"
806
- msgstr "Colore"
807
-
808
- #: modules/callout/callout.php:381
809
- #: modules/icon/icon.php:84
810
- #: modules/icon-group/icon-group.php:58
811
- #@ fl-builder
812
- msgid "Hover Color"
813
- msgstr "Colore al passaggio"
814
-
815
- #: modules/callout/callout.php:406
816
- #@ fl-builder
817
- msgid "Icon Structure"
818
- msgstr "Struttura Icona"
819
-
820
- #: modules/callout/callout.php:410
821
- #: modules/icon/icon.php:113
822
- #: modules/icon-group/icon-group.php:87
823
- #@ fl-builder
824
- msgid "Size"
825
- msgstr "Dimensione"
826
-
827
- #: modules/callout/callout.php:421
828
- #: modules/content-slider/content-slider.php:563
829
- #@ fl-builder
830
- msgid "Call To Action"
831
- msgstr "Call To Action"
832
-
833
- #: modules/callout/callout.php:430
834
- #@ fl-builder
835
- 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."
836
- msgstr "Il collegamento da applicare per l'intero modulo. Se hai scelto il tipo \"call to action\" in basso, questo collegamento sarà utilizzato anche per il testo o bottone."
837
-
838
- #: modules/callout/callout.php:444
839
- #: modules/content-slider/content-slider.php:586
840
- #: modules/cta/cta.php:14
841
- #@ fl-builder
842
- msgid "Call to Action"
843
- msgstr "Call to Action"
844
-
845
- #: includes/column-settings.php:55
846
- #: includes/row-settings.php:56
847
- #: includes/row-settings.php:280
848
- #: modules/callout/callout.php:448
849
- #: modules/content-slider/content-slider.php:324
850
- #: modules/content-slider/content-slider.php:371
851
- #: modules/content-slider/content-slider.php:590
852
- #: modules/content-slider/content-slider.php:689
853
- #: modules/slideshow/slideshow.php:336
854
- #@ fl-builder
855
- msgid "Type"
856
- msgstr "TIpo"
857
-
858
- #: modules/callout/callout.php:473
859
- #: modules/content-slider/content-slider.php:615
860
- #: modules/cta/cta.php:226
861
- #@ fl-builder
862
- msgid "Button Colors"
863
- msgstr "Colori Bottone"
864
-
865
- #: modules/callout/callout.php:511
866
- #: modules/content-slider/content-slider.php:651
867
- #: modules/cta/cta.php:264
868
- #@ fl-builder
869
- msgid "Button Structure"
870
- msgstr "Struttura Bottone"
871
-
872
- #: modules/callout/callout.php:515
873
- #@ fl-builder
874
- msgid "Button Width"
875
- msgstr "Larghezza Bottone"
876
-
877
- #: modules/contact-form/contact-form.php:14
878
- #@ fl-builder
879
- msgid "Contact Form"
880
- msgstr "Form Contatti"
881
-
882
- #: modules/contact-form/contact-form.php:15
883
- #@ fl-builder
884
- msgid "A very simple contact form."
885
- msgstr "Un semplice form contatti"
886
-
887
- #: modules/contact-form/contact-form.php:36
888
- #@ fl-builder
889
- msgid "Contact Form Submission"
890
- msgstr "Inoltro Form Contatti"
891
-
892
- #: modules/contact-form/contact-form.php:64
893
- #@ fl-builder
894
- msgid "Send To Email"
895
- msgstr "Invia ad una Email"
896
-
897
- #: modules/contact-form/contact-form.php:66
898
- #@ fl-builder
899
- msgid "example@mail.com"
900
- msgstr "esempio@mail.com"
901
-
902
- #: modules/contact-form/contact-form.php:67
903
- #@ fl-builder
904
- msgid "The contact form will send to this e-mail"
905
- msgstr "Il contenuto del form contatti sarà inoltrato a questa email"
906
-
907
- #: includes/user-template-settings.php:15
908
- #: modules/contact-form/includes/frontend.php:4
909
- #@ fl-builder
910
- msgid "Name"
911
- msgstr "Nome"
912
-
913
- #: modules/contact-form/includes/frontend.php:5
914
- #@ fl-builder
915
- msgid "Please enter your name."
916
- msgstr "Prego, inserire il proprio nome."
917
-
918
- #: modules/contact-form/includes/frontend.php:10
919
- #@ fl-builder
920
- msgid "Email"
921
- msgstr "Email"
922
-
923
- #: modules/contact-form/includes/frontend.php:11
924
- #@ fl-builder
925
- msgid "Please enter a valid email."
926
- msgstr "Prego, inserire una Email valida."
927
-
928
- #: modules/contact-form/includes/frontend.php:16
929
- #@ fl-builder
930
- msgid "Your Message"
931
- msgstr "Messaggio"
932
-
933
- #: modules/contact-form/includes/frontend.php:17
934
- #@ fl-builder
935
- msgid "Please enter a message."
936
- msgstr "Prego, inserire il testo del messaggio."
937
-
938
- #: modules/contact-form/includes/frontend.php:23
939
- #@ fl-builder
940
- msgid "Send"
941
- msgstr "Invia"
942
-
943
- #: modules/content-slider/content-slider.php:14
944
- #@ fl-builder
945
- msgid "Content Slider"
946
- msgstr "Content Slider"
947
-
948
- #: modules/content-slider/content-slider.php:15
949
- #@ fl-builder
950
- msgid "Displays multiple slides with an optional heading and call to action."
951
- msgstr "Mostra slide multiple con un titolo ed una \"call to action\" facoltativi."
952
-
953
- #: modules/content-slider/content-slider.php:190
954
- #: modules/map/map.php:38
955
- #: modules/separator/separator.php:47
956
- #: modules/slideshow/slideshow.php:294
957
- #@ fl-builder
958
- msgid "Height"
959
- msgstr "Altezza"
960
-
961
- #: modules/content-slider/content-slider.php:195
962
- #@ fl-builder
963
- msgid "This setting is the minimum height of the content slider. Content will expand the height automatically."
964
- msgstr "Questa impostazione è l'altezza minima della content slider. Il contenuto espanderà atomaticamente l'altezza."
965
-
966
- #: modules/content-slider/content-slider.php:199
967
- #: modules/slideshow/slideshow.php:365
968
- #: modules/testimonials/testimonials.php:78
969
- #: modules/video/video.php:107
970
- #@ fl-builder
971
- msgid "Auto Play"
972
- msgstr "Auto Play"
973
-
974
- #: modules/content-slider/content-slider.php:213
975
- #@ fl-builder
976
- msgid "Show Play/Pause"
977
- msgstr "Mostra Play/Pausa"
978
-
979
- #: includes/module-settings.php:86
980
- #: modules/content-slider/content-slider.php:222
981
- #: modules/testimonials/testimonials.php:87
982
- #@ fl-builder
983
- msgid "Delay"
984
- msgstr "Ritardo"
985
-
986
- #: modules/content-slider/content-slider.php:226
987
- #: modules/content-slider/content-slider.php:243
988
- #: modules/testimonials/testimonials.php:91
989
- #: modules/testimonials/testimonials.php:108
990
- #@ fl-builder
991
- msgid "Seconds"
992
- msgstr "Secondi"
993
-
994
- #: includes/row-settings.php:222
995
- #: modules/content-slider/content-slider.php:230
996
- #: modules/slideshow/slideshow.php:381
997
- #: modules/testimonials/testimonials.php:95
998
- #@ fl-builder
999
- msgid "Transition"
1000
- msgstr "Transizione"
1001
-
1002
- #: includes/row-settings.php:240
1003
- #: modules/content-slider/content-slider.php:239
1004
- #: modules/slideshow/slideshow.php:399
1005
- #: modules/testimonials/testimonials.php:104
1006
- #@ fl-builder
1007
- msgid "Transition Speed"
1008
- msgstr "Velocità Transizione"
1009
-
1010
- #: modules/content-slider/content-slider.php:247
1011
- #: modules/testimonials/testimonials.php:117
1012
- #@ fl-builder
1013
- msgid "Show Arrows"
1014
- msgstr "Mostra Frecce"
1015
-
1016
- #: modules/content-slider/content-slider.php:256
1017
- #: modules/testimonials/testimonials.php:142
1018
- #@ fl-builder
1019
- msgid "Show Dots"
1020
- msgstr "Mostra Pallini"
1021
-
1022
- #: includes/column-settings.php:137
1023
- #: includes/module-settings.php:6
1024
- #: includes/row-settings.php:362
1025
- #: modules/content-slider/content-slider.php:266
1026
- #@ fl-builder
1027
- msgid "Advanced"
1028
- msgstr "Avanzate"
1029
-
1030
- #: modules/content-slider/content-slider.php:270
1031
- #@ fl-builder
1032
- msgid "Max Content Width"
1033
- msgstr "Larghezza Massima Contenuto"
1034
-
1035
- #: modules/content-slider/content-slider.php:275
1036
- #@ fl-builder
1037
- msgid "The max width that the content area will be within your slides."
1038
- msgstr "La larghezza massima che l'area contenuto sarà utilizzabile entro le diapositive."
1039
-
1040
- #: modules/content-slider/content-slider.php:282
1041
- #@ fl-builder
1042
- msgid "Slides"
1043
- msgstr "Diapositive"
1044
-
1045
- #: modules/content-slider/content-slider.php:289
1046
- #@ fl-builder
1047
- msgid "Slide"
1048
- msgstr "Diapositiva"
1049
-
1050
- #: modules/content-slider/content-slider.php:304
1051
- #@ fl-builder
1052
- msgid "Slide Settings"
1053
- msgstr "Impostazioni Diapositive"
1054
-
1055
- #: modules/content-slider/content-slider.php:314
1056
- #@ fl-builder
1057
- msgid "Slide Label"
1058
- msgstr "Label Diapositiva"
1059
-
1060
- #: modules/content-slider/content-slider.php:315
1061
- #@ fl-builder
1062
- msgid "A label to identify this slide on the Slides tab of the Content Slider settings."
1063
- msgstr "Un'etichetta per identificare questa diapositiva nella scheda Diapositive delle impostazioni di Content Slider."
1064
-
1065
- #: modules/content-slider/content-slider.php:320
1066
- #@ fl-builder
1067
- msgid "Background Layout"
1068
- msgstr "Layout di sfondo"
1069
-
1070
- #: modules/content-slider/content-slider.php:326
1071
- #@ fl-builder
1072
- msgid "This setting is for the entire background of your slide."
1073
- msgstr "Questa impostazione è per l'intero sfondo della diapositiva."
1074
-
1075
- #: includes/row-settings.php:62
1076
- #: includes/row-settings.php:174
1077
- #: modules/content-slider/content-slider.php:329
1078
- #: modules/video/video.php:19
1079
- #@ fl-builder
1080
- msgid "Video"
1081
- msgstr "Video"
1082
-
1083
- #: includes/row-settings.php:111
1084
- #: modules/content-slider/content-slider.php:352
1085
- #@ fl-builder
1086
- msgid "Background Photo"
1087
- msgstr "Sfondo Foto"
1088
-
1089
- #: modules/content-slider/content-slider.php:361
1090
- #@ fl-builder
1091
- msgid "Background Video Code"
1092
- msgstr "Codice Sfondo Video"
1093
-
1094
- #: modules/content-slider/content-slider.php:367
1095
- #@ fl-builder
1096
- msgid "Content Layout"
1097
- msgstr "Layout Contenuto"
1098
-
1099
- #: modules/content-slider/content-slider.php:373
1100
- #@ fl-builder
1101
- 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."
1102
- msgstr "Ciò consente di aggiungere contenuti sopra o in aggiunta allo sfondo selezionato sopra. La posizione del layout contenuto può essere selezionata nella scheda \"Stile\"."
1103
-
1104
- #: modules/content-slider/content-slider.php:376
1105
- #@ fl-builder
1106
- msgid "Text &amp; Photo"
1107
- msgstr "Testo &amp; Foto"
1108
-
1109
- #: modules/content-slider/content-slider.php:377
1110
- #@ fl-builder
1111
- msgid "Text &amp; Video"
1112
- msgstr "Testo &amp; Video"
1113
-
1114
- #: modules/content-slider/content-slider.php:401
1115
- #@ fl-builder
1116
- msgid "Video Embed Code"
1117
- msgstr "Codice Embed Video"
1118
-
1119
- #: modules/content-slider/content-slider.php:461
1120
- #@ fl-builder
1121
- msgid "Text Position"
1122
- msgstr "Posizione Testo"
1123
-
1124
- #: modules/content-slider/content-slider.php:467
1125
- #@ fl-builder
1126
- msgid "The position will move the content layout selections left, right or center over the background of the slide."
1127
- msgstr "La posizione sposterà il layout dei contenuti selezionato a sinistra, a destra o al centro sullo sfondo della diapositiva."
1128
-
1129
- #: includes/column-settings.php:16
1130
- #: modules/content-slider/content-slider.php:478
1131
- #: modules/content-slider/content-slider.php:546
1132
- #@ fl-builder
1133
- msgid "%"
1134
- msgstr "%"
1135
-
1136
- #: modules/content-slider/content-slider.php:484
1137
- #@ fl-builder
1138
- msgid "Top Margin"
1139
- msgstr "Margine Superiore"
1140
-
1141
- #: modules/content-slider/content-slider.php:492
1142
- #@ fl-builder
1143
- msgid "Bottom Margin"
1144
- msgstr "Margine Inferiore"
1145
-
1146
- #: modules/content-slider/content-slider.php:500
1147
- #@ fl-builder
1148
- msgid "Left Margin"
1149
- msgstr "MArgine Sinistro"
1150
-
1151
- #: modules/content-slider/content-slider.php:508
1152
- #@ fl-builder
1153
- msgid "Right Margin"
1154
- msgstr "Margine Destro"
1155
-
1156
- #: modules/content-slider/content-slider.php:517
1157
- #@ fl-builder
1158
- msgid "Text Colors"
1159
- msgstr "Colori del testo"
1160
-
1161
- #: modules/content-slider/content-slider.php:527
1162
- #@ fl-builder
1163
- msgid "Text Shadow"
1164
- msgstr "Ombreggiatura Testo"
1165
-
1166
- #: modules/content-slider/content-slider.php:536
1167
- #: modules/content-slider/content-slider.php:720
1168
- #@ fl-builder
1169
- msgid "Text Background Color"
1170
- msgstr "Colore di sfondo del testo"
1171
-
1172
- #: modules/content-slider/content-slider.php:537
1173
- #@ fl-builder
1174
- msgid "The color applies to the overlay behind text over the background selections."
1175
- msgstr "Il colore da applicare alla sovrapposizione, dietro il testo, sopra lo sfondo selezionato."
1176
-
1177
- #: modules/content-slider/content-slider.php:542
1178
- #@ fl-builder
1179
- msgid "Text Background Opacity"
1180
- msgstr "Opacità Sfondo del Testo"
1181
-
1182
- #: modules/content-slider/content-slider.php:550
1183
- #@ fl-builder
1184
- msgid "Text Background Height"
1185
- msgstr "Altezza Sfondo del Testo"
1186
-
1187
- #: modules/content-slider/content-slider.php:552
1188
- #@ fl-builder
1189
- 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."
1190
- msgstr "Auto consentirà la sovrapposizione e l'adattamento alla lunghezza del contenuto del testo. 100% si adatta alla sovrapposizione alla parte superiore e inferiore della diapositiva."
1191
-
1192
- #: modules/content-slider/content-slider.php:572
1193
- #@ fl-builder
1194
- 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."
1195
- msgstr "Il collegamento si applica all'intera diapositiva. Se la scelta di un tipo di chiamata azione in basso, questo collegamento sarà utilizzato anche per il pulsante o testo."
1196
-
1197
- #: modules/content-slider/content-slider.php:671
1198
- #@ fl-builder
1199
- msgid "Border Radius"
1200
- msgstr "Bordi Arrotondati"
1201
-
1202
- #: modules/content-slider/content-slider.php:682
1203
- #@ fl-builder
1204
- msgid "Mobile"
1205
- msgstr "Dispositivo Mobile"
1206
-
1207
- #: modules/content-slider/content-slider.php:685
1208
- #@ fl-builder
1209
- msgid "Mobile Photo"
1210
- msgstr "Foto Dispositivo Mobile"
1211
-
1212
- #: modules/content-slider/content-slider.php:691
1213
- #@ fl-builder
1214
- msgid "You can choose a different photo that the slide will change to on mobile devices or no photo if desired."
1215
- msgstr "È possibile scegliere una foto diversa che la slide cambierà su dispositivi mobili oppure nessuna foto se lo si desidera."
1216
-
1217
- #: modules/content-slider/content-slider.php:693
1218
- #@ fl-builder
1219
- msgid "Use Main Photo"
1220
- msgstr "Usa Foto Principale"
1221
-
1222
- #: modules/content-slider/content-slider.php:694
1223
- #@ fl-builder
1224
- msgid "Choose Another Photo"
1225
- msgstr "Scegli un'altra Foto"
1226
-
1227
- #: modules/content-slider/content-slider.php:695
1228
- #@ fl-builder
1229
- msgid "No Photo"
1230
- msgstr "Nessuna Foto"
1231
-
1232
- #: modules/content-slider/content-slider.php:710
1233
- #@ fl-builder
1234
- msgid "Mobile Text Colors"
1235
- msgstr "Colore Testo Dispositivo Mobile"
1236
-
1237
- #: modules/cta/cta.php:15
1238
- #@ fl-builder
1239
- msgid "Display a heading, subheading and a button."
1240
- msgstr "Visualizzare una intestazione, sottotitolo e un pulsante."
1241
-
1242
- #: modules/cta/cta.php:95
1243
- #: modules/gallery/gallery.php:216
1244
- #: modules/testimonials/testimonials.php:37
1245
- #: modules/woocommerce/woocommerce.php:57
1246
- #@ fl-builder
1247
- msgid "Layout"
1248
- msgstr "Layout"
1249
-
1250
- #: modules/cta/cta.php:98
1251
- #@ fl-builder
1252
- msgid "Inline"
1253
- msgstr "In linea"
1254
-
1255
- #: modules/cta/cta.php:99
1256
- #@ fl-builder
1257
- msgid "Stacked"
1258
- msgstr "Accatastati"
1259
-
1260
- #: modules/cta/cta.php:119
1261
- #: modules/icon-group/icon-group.php:95
1262
- #@ fl-builder
1263
- msgid "Spacing"
1264
- msgstr "Spaziatura"
1265
-
1266
- #: modules/cta/cta.php:184
1267
- #@ fl-builder
1268
- msgid "Background Opacity"
1269
- msgstr "Opacità Sfondo"
1270
-
1271
- #: modules/cta/cta.php:207
1272
- #@ fl-builder
1273
- msgid "Button Link"
1274
- msgstr "Link Bottone"
1275
-
1276
- #: modules/gallery/gallery.php:14
1277
- #@ fl-builder
1278
- msgid "Gallery"
1279
- msgstr "Galleria"
1280
-
1281
- #: modules/gallery/gallery.php:15
1282
- #@ fl-builder
1283
- msgid "Display multiple photos in a gallery view."
1284
- msgstr "Visualizza più foto in una visualizzazione galleria."
1285
-
1286
- #: modules/gallery/gallery.php:219
1287
- #@ fl-builder
1288
- msgid "Collage"
1289
- msgstr "Collage"
1290
-
1291
- #: modules/gallery/gallery.php:220
1292
- #@ fl-builder
1293
- msgid "Grid"
1294
- msgstr "Griglia"
1295
-
1296
- #: includes/row-settings.php:189
1297
- #: modules/gallery/gallery.php:230
1298
- #: modules/slideshow/slideshow.php:263
1299
- #@ fl-builder
1300
- msgid "Source"
1301
- msgstr "Sorgente"
1302
-
1303
- #: includes/row-settings.php:192
1304
- #: modules/gallery/gallery.php:233
1305
- #: modules/photo/photo.php:323
1306
- #: modules/slideshow/slideshow.php:266
1307
- #: modules/video/video.php:85
1308
- #@ fl-builder
1309
- msgid "Media Library"
1310
- msgstr "Libreria Media"
1311
-
1312
- #: includes/row-settings.php:193
1313
- #: modules/gallery/gallery.php:234
1314
- #: modules/slideshow/slideshow.php:267
1315
- #@ fl-builder
1316
- msgid "SmugMug"
1317
- msgstr "SmugMug"
1318
-
1319
- #: includes/row-settings.php:195
1320
- #: modules/gallery/gallery.php:236
1321
- #: modules/slideshow/slideshow.php:269
1322
- #@ fl-builder
1323
- 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."
1324
- msgstr "Estrarre le immagini dalla libreria multimediale di WordPress o una galleria sul tuo sito SmugMug inserendo l'URL del feed RSS da SmugMug. La URL del feed RSS è possibile accedere utilizzando la funzione Get Link nella tua galleria SmugMug."
1325
-
1326
- #: includes/row-settings.php:207
1327
- #: modules/gallery/gallery.php:248
1328
- #: modules/slideshow/slideshow.php:281
1329
- #@ fl-builder
1330
- msgid "Photos"
1331
- msgstr "Foto"
1332
-
1333
- #: includes/row-settings.php:211
1334
- #: modules/gallery/gallery.php:252
1335
- #: modules/slideshow/slideshow.php:285
1336
- #@ fl-builder
1337
- msgid "Feed URL"
1338
- msgstr "Feed URL"
1339
-
1340
- #: modules/gallery/gallery.php:256
1341
- #@ fl-builder
1342
- msgid "Photo Size"
1343
- msgstr "Dimensione Foto"
1344
-
1345
- #: modules/gallery/gallery.php:266
1346
- #@ fl-builder
1347
- msgid "Photo Spacing"
1348
- msgstr "Spazio Foto"
1349
-
1350
- #: modules/gallery/gallery.php:274
1351
- #@ fl-builder
1352
- msgid "Show Captions"
1353
- msgstr "Mostra Didascalia"
1354
-
1355
- #: modules/gallery/gallery.php:277
1356
- #: modules/photo/photo.php:376
1357
- #@ fl-builder
1358
- msgid "Never"
1359
- msgstr "Mai"
1360
-
1361
- #: modules/gallery/gallery.php:278
1362
- #: modules/photo/photo.php:377
1363
- #@ fl-builder
1364
- msgid "On Hover"
1365
- msgstr "Al passaggio del mouse"
1366
-
1367
- #: modules/gallery/gallery.php:279
1368
- #: modules/photo/photo.php:378
1369
- #@ fl-builder
1370
- msgid "Below Photo"
1371
- msgstr "Sotto la Foto"
1372
-
1373
- #: modules/gallery/gallery.php:281
1374
- #@ fl-builder
1375
- 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."
1376
- msgstr "La didascalia estrae da qualsiasi testo si inserisce nella zona di didascalia nel media manager per ogni immagine. La voce è anche tirato direttamente da SmugMug se avete didascalie impostati nella tua galleria."
1377
-
1378
- #: modules/gallery/gallery.php:285
1379
- #: modules/slideshow/slideshow.php:332
1380
- #@ fl-builder
1381
- msgid "Click Action"
1382
- msgstr "Fare clic su Azione"
1383
-
1384
- #: modules/gallery/gallery.php:289
1385
- #@ fl-builder
1386
- msgid "Lightbox"
1387
- msgstr "Lightbox"
1388
-
1389
- #: modules/gallery/gallery.php:290
1390
- #@ fl-builder
1391
- msgid "Photo Link"
1392
- msgstr "Link Foto"
1393
-
1394
- #: modules/heading/heading.php:15
1395
- #@ fl-builder
1396
- msgid "Display a title/page heading."
1397
- msgstr "Visualizza un titolo/pagina intestazione"
1398
-
1399
- #: modules/heading/heading.php:86
1400
- #@ fl-builder
1401
- msgid "Tag"
1402
- msgstr "Tag"
1403
-
1404
- #: modules/heading/heading.php:89
1405
- #@ fl-builder
1406
- msgid "h1"
1407
- msgstr "h1"
1408
-
1409
- #: modules/heading/heading.php:90
1410
- #@ fl-builder
1411
- msgid "h2"
1412
- msgstr "h2"
1413
-
1414
- #: modules/heading/heading.php:91
1415
- #@ fl-builder
1416
- msgid "h3"
1417
- msgstr "h3"
1418
-
1419
- #: modules/heading/heading.php:92
1420
- #@ fl-builder
1421
- msgid "h4"
1422
- msgstr "h4"
1423
-
1424
- #: modules/heading/heading.php:93
1425
- #@ fl-builder
1426
- msgid "h5"
1427
- msgstr "h5"
1428
-
1429
- #: modules/heading/heading.php:94
1430
- #@ fl-builder
1431
- msgid "h6"
1432
- msgstr "h6"
1433
-
1434
- #: modules/heading/heading.php:113
1435
- #: modules/heading/heading.php:164
1436
- #@ fl-builder
1437
- msgid "Custom Font Size"
1438
- msgstr "Personalizza Dimensione Carattere"
1439
-
1440
- #: modules/heading/heading.php:122
1441
- #@ default
1442
- msgid "Mobile Structure"
1443
- msgstr "Struttura Dispositivo Mobile"
1444
-
1445
- #: modules/heading/heading.php:140
1446
- #@ fl-builder
1447
- msgid "Custom Alignment"
1448
- msgstr "Personalizza Allineamento"
1449
-
1450
- #: modules/html/html.php:14
1451
- #@ fl-builder
1452
- msgid "HTML"
1453
- msgstr "HTML"
1454
-
1455
- #: modules/html/html.php:15
1456
- #@ fl-builder
1457
- msgid "Display raw HTML code."
1458
- msgstr "Visualizza codice riga HTML"
1459
-
1460
- #: modules/icon-group/icon-group.php:14
1461
- #@ fl-builder
1462
- msgid "Icon Group"
1463
- msgstr "Icona Gruppo"
1464
-
1465
- #: modules/icon-group/icon-group.php:15
1466
- #@ fl-builder
1467
- msgid "Display a group of linked Font Awesome icons."
1468
- msgstr "Visualizza un gruppo di icone da Font Awesome."
1469
-
1470
- #: modules/icon-group/icon-group.php:29
1471
- #@ fl-builder
1472
- msgid "Icons"
1473
- msgstr "Icone"
1474
-
1475
- #: modules/icon-group/icon-group.php:121
1476
- #@ fl-builder
1477
- msgid "Add Icon"
1478
- msgstr "Aggiungi Icona"
1479
-
1480
- #: modules/icon/icon.php:15
1481
- #@ fl-builder
1482
- msgid "Display a Font Awesome icon and optional title."
1483
- msgstr "Visualizzare un impressionante icona di carattere e il titolo facoltativo."
1484
-
1485
- #: modules/map/map.php:14
1486
- #@ fl-builder
1487
- msgid "Map"
1488
- msgstr "Mappa"
1489
-
1490
- #: modules/map/map.php:15
1491
- #@ fl-builder
1492
- msgid "Display a Google map."
1493
- msgstr "Visualizza una Google Map"
1494
-
1495
- #: modules/map/map.php:33
1496
- #@ fl-builder
1497
- msgid "Address"
1498
- msgstr "Indirizzo"
1499
-
1500
- #: modules/map/map.php:34
1501
- #@ fl-builder
1502
- msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
1503
- msgstr "Roma, 121 Via Garibaldi, RM 00060"
1504
-
1505
- #: includes/row-settings.php:124
1506
- #@ fl-builder
1507
- msgid "Horizontal"
1508
- msgstr "Orizzontale"
1509
-
1510
- #: includes/row-settings.php:125
1511
- #@ fl-builder
1512
- msgid "Vertical"
1513
- msgstr "Verticale"
1514
-
1515
- #: modules/photo/photo.php:26
1516
- #@ fl-builder
1517
- msgid "Upload a photo or display one from the media library."
1518
- msgstr "Carica una foto o visualizzarne una dalla libreria multimediale."
1519
-
1520
- #: modules/photo/photo.php:320
1521
- #@ fl-builder
1522
- msgid "Photo Source"
1523
- msgstr "Sorgente Foto"
1524
-
1525
- #: modules/photo/photo.php:324
1526
- #: modules/photo/photo.php:395
1527
- #@ fl-builder
1528
- msgid "URL"
1529
- msgstr "URL"
1530
-
1531
- #: modules/photo/photo.php:341
1532
- #@ fl-builder
1533
- msgid "Photo URL"
1534
- msgstr "URL Foto"
1535
-
1536
- #: modules/photo/photo.php:373
1537
- #@ fl-builder
1538
- msgid "Show Caption"
1539
- msgstr "Mostra Didascalia"
1540
-
1541
- #: modules/photo/photo.php:383
1542
- #@ fl-builder
1543
- msgid "Caption"
1544
- msgstr "Didascalia"
1545
-
1546
- #: modules/photo/photo.php:392
1547
- #@ fl-builder
1548
- msgid "Link Type"
1549
- msgstr "Tipo Link"
1550
-
1551
- #: modules/photo/photo.php:396
1552
- #@ fl-builder
1553
- msgid "Photo File"
1554
- msgstr "File Foto"
1555
-
1556
- #: modules/photo/photo.php:397
1557
- #@ fl-builder
1558
- msgid "Photo Page"
1559
- msgstr "Foto Pagina "
1560
-
1561
- #: modules/photo/photo.php:407
1562
- #@ fl-builder
1563
- 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."
1564
- msgstr "Tipo di collegamento si applica a come l'immagine dovrebbe essere legata al clic. È possibile scegliere un URL specifico, la singola foto o una pagina separata con la foto."
1565
-
1566
- #: modules/photo/photo.php:411
1567
- #: modules/slideshow/slideshow.php:350
1568
- #@ fl-builder
1569
- msgid "Link URL"
1570
- msgstr "Link URL"
1571
-
1572
- #: modules/woocommerce/woocommerce.php:107
1573
- #: modules/woocommerce/woocommerce.php:178
1574
- #@ fl-builder
1575
- msgid "Columns"
1576
- msgstr "Colonne"
1577
-
1578
- #: modules/woocommerce/woocommerce.php:110
1579
- #: modules/woocommerce/woocommerce.php:181
1580
- #@ fl-builder
1581
- msgid "1"
1582
- msgstr "1"
1583
-
1584
- #: modules/woocommerce/woocommerce.php:111
1585
- #: modules/woocommerce/woocommerce.php:182
1586
- #@ fl-builder
1587
- msgid "2"
1588
- msgstr "2"
1589
-
1590
- #: modules/woocommerce/woocommerce.php:112
1591
- #: modules/woocommerce/woocommerce.php:183
1592
- #@ fl-builder
1593
- msgid "3"
1594
- msgstr "3"
1595
-
1596
- #: modules/woocommerce/woocommerce.php:113
1597
- #: modules/woocommerce/woocommerce.php:184
1598
- #@ fl-builder
1599
- msgid "4"
1600
- msgstr "4"
1601
-
1602
- #: includes/global-settings.php:15
1603
- #@ fl-builder
1604
- msgid "Show"
1605
- msgstr "Mostra"
1606
-
1607
- #: includes/loop-settings.php:28
1608
- #: modules/woocommerce/woocommerce.php:195
1609
- #@ fl-builder
1610
- msgid "Date"
1611
- msgstr "Data"
1612
-
1613
- #: includes/admin-posts.php:3
1614
- #: modules/rich-text/rich-text.php:14
1615
- #@ fl-builder
1616
- msgid "Text Editor"
1617
- msgstr "Testo Editor"
1618
-
1619
- #: modules/rich-text/rich-text.php:15
1620
- #@ fl-builder
1621
- msgid "A WYSIWYG text editor."
1622
- msgstr "Un editor di testo WYSIWYG."
1623
-
1624
- #: modules/separator/separator.php:14
1625
- #@ fl-builder
1626
- msgid "Separator"
1627
- msgstr "Separatore"
1628
-
1629
- #: modules/separator/separator.php:15
1630
- #@ fl-builder
1631
- msgid "A divider line to separate content."
1632
- msgstr "Una linea di divisione per separare il contenuto."
1633
-
1634
- #: includes/column-settings.php:60
1635
- #: includes/row-settings.php:285
1636
- #: modules/separator/separator.php:58
1637
- #@ fl-builder
1638
- msgid "Solid"
1639
- msgstr "Solido"
1640
-
1641
- #: includes/column-settings.php:61
1642
- #: includes/row-settings.php:286
1643
- #: modules/separator/separator.php:59
1644
- #@ fl-builder
1645
- msgid "Dashed"
1646
- msgstr "Tratteggiato"
1647
-
1648
- #: includes/column-settings.php:62
1649
- #: includes/row-settings.php:287
1650
- #: modules/separator/separator.php:60
1651
- #@ fl-builder
1652
- msgid "Dotted"
1653
- msgstr "Puntinato"
1654
-
1655
- #: includes/column-settings.php:63
1656
- #: includes/row-settings.php:288
1657
- #: modules/separator/separator.php:61
1658
- #@ fl-builder
1659
- msgid "Double"
1660
- msgstr "Doppio"
1661
-
1662
- #: modules/sidebar/includes/settings-general.php:5
1663
- #: modules/sidebar/sidebar.php:14
1664
- #@ fl-builder
1665
- msgid "Sidebar"
1666
- msgstr "Sidebar"
1667
-
1668
- #: modules/sidebar/sidebar.php:15
1669
- #@ fl-builder
1670
- msgid "Display a WordPress sidebar that has been registered by the current theme."
1671
- msgstr "Visualizzare una sidebar di WordPress che è stato registrato dal tema corrente."
1672
-
1673
- #: includes/row-settings.php:64
1674
- #: modules/slideshow/slideshow.php:14
1675
- #@ fl-builder
1676
- msgid "Slideshow"
1677
- msgstr "Slideshow"
1678
-
1679
- #: modules/slideshow/slideshow.php:15
1680
- #@ fl-builder
1681
- msgid "Display multiple photos in a slideshow view."
1682
- msgstr "Visualizza più foto in una presentazione."
1683
-
1684
- #: includes/column-settings.php:149
1685
- #: includes/module-settings.php:18
1686
- #: includes/row-settings.php:374
1687
- #: modules/slideshow/slideshow.php:290
1688
- #@ fl-builder
1689
- msgid "Display"
1690
- msgstr "Visualizza"
1691
-
1692
- #: modules/slideshow/slideshow.php:302
1693
- #@ fl-builder
1694
- msgid "Skin Color"
1695
- msgstr "Colore Pelle"
1696
-
1697
- #: modules/slideshow/slideshow.php:305
1698
- #@ fl-builder
1699
- msgid "Light"
1700
- msgstr "Chiara"
1701
-
1702
- #: modules/slideshow/slideshow.php:306
1703
- #@ fl-builder
1704
- msgid "Dark"
1705
- msgstr "Scura"
1706
-
1707
- #: modules/slideshow/slideshow.php:308
1708
- #@ fl-builder
1709
- msgid "If your overall theme/images are lighter in color, light will display buttons in a darker color scheme and vice versa for dark."
1710
- msgstr "Se il tema / immagini complessivamente sono di colore più chiaro, chiaro visualizza i pulsanti in uno schema di colore più scuro e viceversa per scuro."
1711
-
1712
- #: modules/slideshow/slideshow.php:318
1713
- #@ fl-builder
1714
- 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."
1715
- msgstr "Non Impostare Crop se si adatta alle immagini della slideshow all'altezza specificata e mantenere il proporzionale larghezza, considerando il crop impostato su si se si adatta alle immagini della presentazione a tutti i lati dell'area di contenuto, mentre il ritaglio destra e sinistra per adattarsi all'altezza specificata."
1716
-
1717
- #: modules/slideshow/slideshow.php:322
1718
- #@ fl-builder
1719
- msgid "Disable Right-Click"
1720
- msgstr "Disabilita Click Destra"
1721
-
1722
- #: modules/slideshow/slideshow.php:358
1723
- #@ fl-builder
1724
- msgid "Playback"
1725
- msgstr "Riproduzione"
1726
-
1727
- #: includes/row-settings.php:215
1728
- #: includes/row-settings.php:265
1729
- #: modules/slideshow/slideshow.php:374
1730
- #@ fl-builder
1731
- msgid "Speed"
1732
- msgstr "Velocità"
1733
-
1734
- #: includes/row-settings.php:218
1735
- #: includes/row-settings.php:243
1736
- #: modules/slideshow/slideshow.php:377
1737
- #: modules/slideshow/slideshow.php:402
1738
- #: modules/slideshow/slideshow.php:570
1739
- #@ fl-builder
1740
- msgid "seconds"
1741
- msgstr "secondi"
1742
-
1743
- #: includes/row-settings.php:226
1744
- #: modules/slideshow/slideshow.php:385
1745
- #@ fl-builder
1746
- msgid "Fade"
1747
- msgstr "Dissolvenza"
1748
-
1749
- #: includes/row-settings.php:227
1750
- #: modules/slideshow/slideshow.php:386
1751
- #@ fl-builder
1752
- msgid "Ken Burns"
1753
- msgstr "Ken Burns"
1754
-
1755
- #: includes/row-settings.php:228
1756
- #: modules/slideshow/slideshow.php:387
1757
- #@ fl-builder
1758
- msgid "Slide Horizontal"
1759
- msgstr "Slide Orizzontale"
1760
-
1761
- #: includes/row-settings.php:229
1762
- #: modules/slideshow/slideshow.php:388
1763
- #@ fl-builder
1764
- msgid "Slide Vertical"
1765
- msgstr "Slide Verticale"
1766
-
1767
- #: includes/row-settings.php:230
1768
- #: modules/slideshow/slideshow.php:389
1769
- #@ fl-builder
1770
- msgid "Blinds"
1771
- msgstr "Oscurabile"
1772
-
1773
- #: includes/row-settings.php:231
1774
- #: modules/slideshow/slideshow.php:390
1775
- #@ fl-builder
1776
- msgid "Bars"
1777
- msgstr "Barre"
1778
-
1779
- #: includes/row-settings.php:232
1780
- #: modules/slideshow/slideshow.php:391
1781
- #@ fl-builder
1782
- msgid "Random Bars"
1783
- msgstr "Barre Casuali"
1784
-
1785
- #: includes/row-settings.php:233
1786
- #: modules/slideshow/slideshow.php:392
1787
- #@ fl-builder
1788
- msgid "Boxes"
1789
- msgstr "Box"
1790
-
1791
- #: includes/row-settings.php:234
1792
- #: modules/slideshow/slideshow.php:393
1793
- #@ fl-builder
1794
- msgid "Random Boxes"
1795
- msgstr "Box Casuali"
1796
-
1797
- #: includes/row-settings.php:235
1798
- #: modules/slideshow/slideshow.php:394
1799
- #@ fl-builder
1800
- msgid "Boxes Grow"
1801
- msgstr "Riga Box"
1802
-
1803
- #: includes/row-settings.php:247
1804
- #: modules/slideshow/slideshow.php:406
1805
- #@ fl-builder
1806
- msgid "Randomize Photos"
1807
- msgstr "Foto Casuali"
1808
-
1809
- #: modules/slideshow/slideshow.php:418
1810
- #@ fl-builder
1811
- msgid "Controls"
1812
- msgstr "Controlli"
1813
-
1814
- #: modules/slideshow/slideshow.php:425
1815
- #: modules/slideshow/slideshow.php:474
1816
- #@ fl-builder
1817
- msgid "Navigation Arrows"
1818
- msgstr "Navigazione frecce"
1819
-
1820
- #: modules/slideshow/slideshow.php:431
1821
- #@ fl-builder
1822
- 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."
1823
- msgstr "Frecce di navigazione permettono al visitatore di muoversi liberamente attraverso le immagini in slideshow. Queste sono le frecce più grandi che si sovrappongono le immagini della presentazione e che sono separati dalle frecce di navigazione barra di controllo."
1824
-
1825
- #: modules/slideshow/slideshow.php:436
1826
- #@ fl-builder
1827
- msgid "Control Bar"
1828
- msgstr "Barra di controlli"
1829
-
1830
- #: modules/slideshow/slideshow.php:440
1831
- #@ fl-builder
1832
- msgid "Nav Type"
1833
- msgstr "Tipo Navigazione"
1834
-
1835
- #: modules/slideshow/slideshow.php:444
1836
- #@ fl-builder
1837
- msgid "Buttons"
1838
- msgstr "Bottoni"
1839
-
1840
- #: modules/slideshow/slideshow.php:445
1841
- #: modules/slideshow/slideshow.php:575
1842
- #@ fl-builder
1843
- msgid "Thumbs"
1844
- msgstr "Miniature"
1845
-
1846
- #: modules/slideshow/slideshow.php:460
1847
- #@ fl-builder
1848
- msgid "Nav Position"
1849
- msgstr "Posizione Navigazione"
1850
-
1851
- #: includes/column-settings.php:173
1852
- #: includes/column-settings.php:214
1853
- #: includes/module-settings.php:42
1854
- #: includes/row-settings.php:398
1855
- #: includes/row-settings.php:439
1856
- #: modules/slideshow/slideshow.php:463
1857
- #@ fl-builder
1858
- msgid "Bottom"
1859
- msgstr "Basso"
1860
-
1861
- #: includes/column-settings.php:164
1862
- #: includes/column-settings.php:205
1863
- #: includes/module-settings.php:33
1864
- #: includes/row-settings.php:389
1865
- #: includes/row-settings.php:430
1866
- #: modules/slideshow/slideshow.php:464
1867
- #@ fl-builder
1868
- msgid "Top"
1869
- msgstr "Alto"
1870
-
1871
- #: modules/slideshow/slideshow.php:470
1872
- #@ fl-builder
1873
- msgid "Control Bar Buttons"
1874
- msgstr "Controllo Barra Bottoni"
1875
-
1876
- #: modules/slideshow/slideshow.php:483
1877
- #@ fl-builder
1878
- msgid "Play Button"
1879
- msgstr "Bottone Play"
1880
-
1881
- #: modules/slideshow/slideshow.php:492
1882
- #@ fl-builder
1883
- msgid "Fullscreen Button"
1884
- msgstr "Bottone Pieno Schermo"
1885
-
1886
- #: modules/slideshow/slideshow.php:501
1887
- #@ fl-builder
1888
- msgid "Photo Count"
1889
- msgstr "Conteggio Foto"
1890
-
1891
- #: modules/slideshow/slideshow.php:510
1892
- #@ fl-builder
1893
- msgid "Thumbs Button"
1894
- msgstr "Bottone Miniatura"
1895
-
1896
- #: modules/slideshow/slideshow.php:519
1897
- #@ fl-builder
1898
- msgid "Caption Button"
1899
- msgstr "Didascalia Bottone"
1900
-
1901
- #: modules/slideshow/slideshow.php:528
1902
- #@ fl-builder
1903
- msgid "Social Button"
1904
- msgstr "Bottone Social"
1905
-
1906
- #: modules/slideshow/slideshow.php:538
1907
- #@ fl-builder
1908
- msgid "Control Bar Overlay"
1909
- msgstr "Barra di controllo di sovrapposizione"
1910
-
1911
- #: modules/slideshow/slideshow.php:542
1912
- #@ fl-builder
1913
- msgid "Overlay Enabled"
1914
- msgstr "Abilita Barra sovrapposizione"
1915
-
1916
- #: modules/slideshow/slideshow.php:553
1917
- #@ fl-builder
1918
- msgid "Control bar overlay specifies if the control bar buttons you choose overlay your slideshow images or site below the slideshow completely."
1919
- msgstr "Barra di controllo sovrapposizione specifica se i pulsanti della barra di controllo si sovrappongono completamente alle immagini della slideshow o al sito sotto lo slideshow."
1920
-
1921
- #: modules/slideshow/slideshow.php:557
1922
- #@ fl-builder
1923
- msgid "Overlay Hide"
1924
- msgstr "Nascondi sovrapposizione"
1925
-
1926
- #: modules/slideshow/slideshow.php:563
1927
- #@ fl-builder
1928
- msgid "Overlay hide will hide the control bar after however many seconds you specify below. They will reappear upon mouse over."
1929
- msgstr "Nascondere sovrapposizione nasconde la barra di controllo dopo però molti secondi specificato qui di seguito. Essi appariranno al passaggio del mouse."
1930
-
1931
- #: modules/slideshow/slideshow.php:567
1932
- #@ fl-builder
1933
- msgid "Overlay Hide Delay"
1934
- msgstr "Nascondi Ritardo Sovrapposizione "
1935
-
1936
- #: modules/slideshow/slideshow.php:579
1937
- #@ fl-builder
1938
- msgid "Thumbs Size"
1939
- msgstr "Dimensione Miniatura"
1940
-
1941
- #: modules/slideshow/slideshow.php:588
1942
- #@ fl-builder
1943
- msgid "Social"
1944
- msgstr "Social"
1945
-
1946
- #: modules/slideshow/slideshow.php:592
1947
- #@ fl-builder
1948
- msgid "Facebook Button"
1949
- msgstr "Bottone Facebook"
1950
-
1951
- #: modules/slideshow/slideshow.php:601
1952
- #@ fl-builder
1953
- msgid "Twitter Button"
1954
- msgstr "Bottone Twitter"
1955
-
1956
- #: modules/slideshow/slideshow.php:610
1957
- #@ fl-builder
1958
- msgid "Google Plus Button"
1959
- msgstr "Bottone Google Plus"
1960
-
1961
- #: modules/slideshow/slideshow.php:619
1962
- #@ fl-builder
1963
- msgid "Pinterest Button"
1964
- msgstr "Bottone Pinterest"
1965
-
1966
- #: modules/social-buttons/social-buttons.php:14
1967
- #@ fl-builder
1968
- msgid "Social Buttons"
1969
- msgstr "Bottoni Sociali"
1970
-
1971
- #: modules/social-buttons/social-buttons.php:15
1972
- #@ fl-builder
1973
- msgid "Displays social buttons."
1974
- msgstr "Visualizza bottoni sociali"
1975
-
1976
- #: modules/social-buttons/social-buttons.php:69
1977
- #@ fl-builder
1978
- msgid "Target URL"
1979
- msgstr "Destinazione URL "
1980
-
1981
- #: modules/social-buttons/social-buttons.php:73
1982
- #@ fl-builder
1983
- msgid "Current Page"
1984
- msgstr "Pagina Corrente"
1985
-
1986
- #: modules/social-buttons/social-buttons.php:80
1987
- #@ fl-builder
1988
- 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."
1989
- msgstr "Il campo URL di destinazione correlato alla pagina che si desidera con quali icone sociali di desidera interfacciarsi. Ad esempio, se si mostra Facebook, l'utente metterà \"Mi Piace\" in questo campo."
1990
-
1991
- #: modules/social-buttons/social-buttons.php:84
1992
- #@ fl-builder
1993
- msgid "Custom URL"
1994
- msgstr "URL personalizzata"
1995
-
1996
- #: modules/social-buttons/social-buttons.php:99
1997
- #@ fl-builder
1998
- msgid "Show Facebook"
1999
- msgstr "Mostra Facebook"
2000
-
2001
- #: modules/social-buttons/social-buttons.php:108
2002
- #@ fl-builder
2003
- msgid "Show Twitter"
2004
- msgstr "Mostra Twitter"
2005
-
2006
- #: modules/social-buttons/social-buttons.php:117
2007
- #@ fl-builder
2008
- msgid "Show Google+"
2009
- msgstr "Mostra Google+"
2010
-
2011
- #: modules/testimonials/testimonials.php:14
2012
- #: modules/testimonials/testimonials.php:165
2013
- #@ fl-builder
2014
- msgid "Testimonials"
2015
- msgstr "Testimonianze"
2016
-
2017
- #: modules/testimonials/testimonials.php:15
2018
- #@ fl-builder
2019
- msgid "An animated tesimonials area."
2020
- msgstr "Un'area testimonianze animato."
2021
-
2022
- #: modules/testimonials/testimonials.php:40
2023
- #@ fl-builder
2024
- msgid "Wide"
2025
- msgstr "Ampio"
2026
-
2027
- #: modules/testimonials/testimonials.php:41
2028
- #@ fl-builder
2029
- msgid "Compact"
2030
- msgstr "Compatto"
2031
-
2032
- #: modules/testimonials/testimonials.php:51
2033
- #@ fl-builder
2034
- msgid "Wide is for 1 column rows, compact is for multi-column rows."
2035
- msgstr "Ampia è per 1 righe della colonna, compatto è per le righe multi-colonna."
2036
-
2037
- #: modules/testimonials/testimonials.php:74
2038
- #@ fl-builder
2039
- msgid "Slider Settings"
2040
- msgstr "Impostazioni Slider"
2041
-
2042
- #: modules/testimonials/testimonials.php:131
2043
- #@ fl-builder
2044
- msgid "Arrow Color"
2045
- msgstr "Colore Frecce"
2046
-
2047
- #: modules/testimonials/testimonials.php:156
2048
- #@ fl-builder
2049
- msgid "Dot Color"
2050
- msgstr "Colore Puntini"
2051
-
2052
- #: modules/testimonials/testimonials.php:172
2053
- #@ fl-builder
2054
- msgid "Testimonial"
2055
- msgstr "Testimonianza"
2056
-
2057
- #: modules/testimonials/testimonials.php:188
2058
- #@ fl-builder
2059
- msgid "Add Testimonial"
2060
- msgstr "Aggiungi Testimonianza"
2061
-
2062
- #: modules/video/video.php:20
2063
- #@ fl-builder
2064
- msgid "Render a WordPress or embedable video."
2065
- msgstr "Rendering WordPress o un video incorporabile."
2066
-
2067
- #: modules/video/video.php:82
2068
- #@ fl-builder
2069
- msgid "Video Type"
2070
- msgstr "Tipo Video"
2071
-
2072
- #: modules/video/video.php:86
2073
- #@ fl-builder
2074
- msgid "Embed"
2075
- msgstr "Incorporato"
2076
-
2077
- #: modules/widget/includes/frontend.php:21
2078
- #@ default
2079
- msgid " no longer exists."
2080
- msgstr " non esiste più."
2081
-
2082
- #: modules/widget/widget.php:14
2083
- #@ fl-builder
2084
- msgid "Widget"
2085
- msgstr "Widget"
2086
-
2087
- #: modules/widget/widget.php:15
2088
- #@ fl-builder
2089
- msgid "Display a WordPress widget."
2090
- msgstr "Visualizza un widget Wordpress"
2091
-
2092
- #: includes/ui.php:50
2093
- #: modules/widget/widget.php:16
2094
- #@ fl-builder
2095
- msgid "WordPress Widgets"
2096
- msgstr "Widget Wordpress"
2097
-
2098
- #: modules/woocommerce/woocommerce.php:16
2099
- #@ fl-builder
2100
- msgid "WooCommerce"
2101
- msgstr "WooCommerce"
2102
-
2103
- #: modules/woocommerce/woocommerce.php:17
2104
- #@ fl-builder
2105
- msgid "Display products or categories from your WooCommerce store."
2106
- msgstr "Visualizzare i prodotti o categorie dal vostro negozio WooCommerce."
2107
-
2108
- #: modules/woocommerce/woocommerce.php:61
2109
- #@ fl-builder
2110
- msgid "Single Product"
2111
- msgstr "Singolo Prodotto"
2112
-
2113
- #: modules/woocommerce/woocommerce.php:62
2114
- #: modules/woocommerce/woocommerce.php:119
2115
- #@ fl-builder
2116
- msgid "Multiple Products"
2117
- msgstr "Prodotti Multipli"
2118
-
2119
- #: modules/woocommerce/woocommerce.php:63
2120
- #@ fl-builder
2121
- msgid "Add to Cart Button"
2122
- msgstr "Aggiungi Bottone Carello"
2123
-
2124
- #: modules/woocommerce/woocommerce.php:64
2125
- #@ fl-builder
2126
- msgid "Categories"
2127
- msgstr "Categorie"
2128
-
2129
- #: modules/woocommerce/woocommerce.php:65
2130
- #@ fl-builder
2131
- msgid "Cart"
2132
- msgstr "Carrello"
2133
-
2134
- #: modules/woocommerce/woocommerce.php:66
2135
- #@ fl-builder
2136
- msgid "Checkout"
2137
- msgstr "Cassa"
2138
-
2139
- #: modules/woocommerce/woocommerce.php:67
2140
- #@ fl-builder
2141
- msgid "View Order"
2142
- msgstr "Visualizza Ordine"
2143
-
2144
- #: modules/woocommerce/woocommerce.php:68
2145
- #@ fl-builder
2146
- msgid "Pay"
2147
- msgstr "Paga"
2148
-
2149
- #: modules/woocommerce/woocommerce.php:69
2150
- #@ fl-builder
2151
- msgid "Thank You"
2152
- msgstr "Grazie"
2153
-
2154
- #: modules/woocommerce/woocommerce.php:70
2155
- #@ fl-builder
2156
- msgid "Order Tracking"
2157
- msgstr "Tracciamento Ordine"
2158
-
2159
- #: modules/woocommerce/woocommerce.php:71
2160
- #@ fl-builder
2161
- msgid "My Account"
2162
- msgstr "Il Mio Account"
2163
-
2164
- #: modules/woocommerce/woocommerce.php:72
2165
- #@ fl-builder
2166
- msgid "Edit Address"
2167
- msgstr "Modifica Indirizzo"
2168
-
2169
- #: modules/woocommerce/woocommerce.php:73
2170
- #@ fl-builder
2171
- msgid "Change Password"
2172
- msgstr "Cambia Password"
2173
-
2174
- #: modules/woocommerce/woocommerce.php:74
2175
- #@ fl-builder
2176
- msgid "Lost Password"
2177
- msgstr "Password Dimenticata"
2178
-
2179
- #: modules/woocommerce/woocommerce.php:93
2180
- #@ fl-builder
2181
- msgid "Product ID"
2182
- msgstr "ID Prodotto"
2183
-
2184
- #: modules/woocommerce/woocommerce.php:96
2185
- #@ fl-builder
2186
- 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."
2187
- msgstr "Quando si aggiungono i prodotti nella zona WooCommerce, ognuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico per visitare la zona Prodotti del prodotto. L'ID univoco sarà il primo attributo."
2188
-
2189
- #: modules/woocommerce/woocommerce.php:100
2190
- #@ fl-builder
2191
- msgid "Parent Category ID"
2192
- msgstr "ID Categoria Genitore"
2193
-
2194
- #: modules/woocommerce/woocommerce.php:103
2195
- #@ fl-builder
2196
- 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."
2197
- msgstr "Quando si aggiungono categorie di prodotti nel settore prodotti WooCommerce, ognuno verrà assegnato ad un ID univoco. Questo ID può essere trovato nella categoria nella zona di categorie in Prodotti e guardando l'URL visualizzato nel browser. L'ID sarà l'unico valore numerico in URL."
2198
-
2199
- #: modules/woocommerce/woocommerce.php:123
2200
- #@ fl-builder
2201
- msgid "Products Source"
2202
- msgstr "Origine Prodotto"
2203
-
2204
- #: modules/woocommerce/woocommerce.php:126
2205
- #@ fl-builder
2206
- msgid "Products IDs"
2207
- msgstr "ID Prodotti"
2208
-
2209
- #: modules/woocommerce/woocommerce.php:127
2210
- #@ fl-builder
2211
- msgid "Product Category"
2212
- msgstr "Categoria Prodotto"
2213
-
2214
- #: modules/woocommerce/woocommerce.php:128
2215
- #@ fl-builder
2216
- msgid "Recent Products"
2217
- msgstr "Prodotti Recenti"
2218
-
2219
- #: modules/woocommerce/woocommerce.php:129
2220
- #@ fl-builder
2221
- msgid "Featured Products"
2222
- msgstr "Prodotti in Evidenzia"
2223
-
2224
- #: modules/woocommerce/woocommerce.php:130
2225
- #@ fl-builder
2226
- msgid "Sale Products"
2227
- msgstr "Prodotti in Offerta"
2228
-
2229
- #: modules/woocommerce/woocommerce.php:131
2230
- #@ fl-builder
2231
- msgid "Best Selling Products"
2232
- msgstr "Prodotti più Venduti"
2233
-
2234
- #: modules/woocommerce/woocommerce.php:132
2235
- #@ fl-builder
2236
- msgid "Top Rated Products"
2237
- msgstr "Prodotti con Alto Punteggio"
2238
-
2239
- #: modules/woocommerce/woocommerce.php:160
2240
- #@ fl-builder
2241
- msgid "Product IDs"
2242
- msgstr "ID Prodotto"
2243
-
2244
- #: modules/woocommerce/woocommerce.php:162
2245
- #@ fl-builder
2246
- 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."
2247
- msgstr "Quando si aggiungono i prodotti nella zona WooCommerce, ognuno verrà assegnato un ID univoco. Potete trovare questo ID prodotto unico per visitare la zona Prodotti del prodotto. L'ID univoco sarà il primo attributo e si possono aggiungere vari qui separati da una virgola."
2248
-
2249
- #: modules/woocommerce/woocommerce.php:166
2250
- #@ fl-builder
2251
- msgid "Category Slug"
2252
- msgstr "Slug Categoria"
2253
-
2254
- #: modules/woocommerce/woocommerce.php:168
2255
- #@ fl-builder
2256
- 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."
2257
- msgstr "Quando si aggiungono categorie di prodotti nel settore prodotti WooCommerce, ognuno verrà assegnato un slug unico o è possibile modificare e aggiungere il proprio. Questi slug possono essere trovati nella zona categorie sotto i Prodotti WooCommerce. Diversi possono essere aggiunti qui separati da una virgola."
2258
-
2259
- #: modules/woocommerce/woocommerce.php:172
2260
- #@ fl-builder
2261
- msgid "Number of Products"
2262
- msgstr "Numero di Prodotti"
2263
-
2264
- #: modules/woocommerce/woocommerce.php:189
2265
- #@ fl-builder
2266
- msgid "Sort By"
2267
- msgstr "Ordinamento per"
2268
-
2269
- #: modules/woocommerce/woocommerce.php:193
2270
- #@ fl-builder
2271
- msgid "Popularity"
2272
- msgstr "Popolarità"
2273
-
2274
- #: modules/woocommerce/woocommerce.php:194
2275
- #@ fl-builder
2276
- msgid "Rating"
2277
- msgstr "Valutazione"
2278
-
2279
- #: modules/woocommerce/woocommerce.php:196
2280
- #@ fl-builder
2281
- msgid "Price: Low to High"
2282
- msgstr "Prezzo: Dal più Basso al più Alto"
2283
-
2284
- #: modules/woocommerce/woocommerce.php:197
2285
- #@ fl-builder
2286
- msgid "Price: High to Low"
2287
- msgstr "Prezzo: Dal più Alto al più Basso"
2288
-
2289
- #: classes/FLBuilder.php:386
2290
- #: classes/FLBuilderAdmin.php:220
2291
- #: classes/FLBuilderAdmin.php:275
2292
- #: includes/admin-posts.php:4
2293
- #: includes/ui.php:6
2294
- #@ fl-builder
2295
- msgid "Page Builder"
2296
- msgstr "Page Builder"
2297
-
2298
- #: classes/FLBuilder.php:657
2299
- #@ fl-builder
2300
- msgctxt "post type general name"
2301
- msgid "Layout Templates"
2302
- msgstr "Modelli di layout"
2303
-
2304
- #: classes/FLBuilder.php:658
2305
- #@ fl-builder
2306
- msgctxt "post type singular name"
2307
- msgid "Layout Template"
2308
- msgstr "Modello di layout"
2309
-
2310
- #: classes/FLBuilder.php:659
2311
- #@ fl-builder
2312
- msgctxt "admin menu"
2313
- msgid "Layout Templates"
2314
- msgstr "Modelli di layout"
2315
-
2316
- #: classes/FLBuilder.php:660
2317
- #@ fl-builder
2318
- msgctxt "add new on admin bar"
2319
- msgid "Layout Template"
2320
- msgstr "Modello di layout"
2321
-
2322
- #: classes/FLBuilder.php:661
2323
- #@ fl-builder
2324
- msgctxt "book"
2325
- msgid "Add New"
2326
- msgstr "Aggiungi nuovo"
2327
-
2328
- #: classes/FLBuilder.php:662
2329
- #@ fl-builder
2330
- msgid "Add New Layout Template"
2331
- msgstr "Aggiungi nuovo modello di Layout"
2332
-
2333
- #: classes/FLBuilder.php:663
2334
- #@ fl-builder
2335
- msgid "New Layout Template"
2336
- msgstr "Nuovo modello di Layout"
2337
-
2338
- #: classes/FLBuilder.php:664
2339
- #@ fl-builder
2340
- msgid "Edit Layout Template"
2341
- msgstr "Modifica modello di Layout"
2342
-
2343
- #: classes/FLBuilder.php:665
2344
- #@ fl-builder
2345
- msgid "View Layout Template"
2346
- msgstr "Visualizza modello di Layout"
2347
-
2348
- #: classes/FLBuilder.php:666
2349
- #@ fl-builder
2350
- msgid "All Layout Templates"
2351
- msgstr "Tutti i modelli di Layout"
2352
-
2353
- #: classes/FLBuilder.php:667
2354
- #@ fl-builder
2355
- msgid "Search Layout Templates"
2356
- msgstr "Cerca modelli di Layout"
2357
-
2358
- #: classes/FLBuilder.php:668
2359
- #@ fl-builder
2360
- msgid "Parent Layout Templates:"
2361
- msgstr "Modelli di Layout genitore:"
2362
-
2363
- #: classes/FLBuilder.php:669
2364
- #@ fl-builder
2365
- msgid "No layout templates found."
2366
- msgstr "Nessun modello di Layout trovato."
2367
-
2368
- #: classes/FLBuilder.php:670
2369
- #@ fl-builder
2370
- msgid "No layout templates found in Trash."
2371
- msgstr "Nessun modello di Layout trovato nel cestino."
2372
-
2373
- #: classes/FLBuilder.php:954
2374
- #@ fl-builder
2375
- msgid " Settings"
2376
- msgstr " Impostazioni"
2377
-
2378
- #: classes/FLBuilderAdmin.php:39
2379
- #, php-format
2380
- #@ fl-builder
2381
- msgid "This version of the <strong>FastLine Page Builder</strong> plugin is not compatible with WordPress Multisite. <a href=\"%s\" target=\"_blank\">Please upgrade</a> to the Multisite version of this plugin."
2382
- msgstr "Questa versione del plugin <strong>FastLine Page Builder</strong> non è compatibile con WordPress Multisite. <a href=\"%s\" target=\"_blank\">Si prega di aggiornare</a> alla versione Multisito di questo plugin."
2383
-
2384
- #: classes/FLBuilderAdmin.php:50
2385
- #@ fl-builder
2386
- msgid "The <strong>FastLine Page Builder</strong> plugin requires WordPress version 3.5 or greater. Please update WordPress before activating the plugin."
2387
- msgstr "Il plugin <strong>FastLine Page Builder</strong> richiede WordPress versione 3.5 o superiore. Si prega di aggiornare WordPress prima di attivare il plugin."
2388
-
2389
- #: classes/FLBuilderAdmin.php:85
2390
- #, php-format
2391
- #@ fl-builder
2392
- msgid "FastLine Page Builder activated! <a href=\"%s\">Click here</a> to enable remote updates."
2393
- msgstr "FastLine Page Builder attivato! <a href=\"%s\">Clicca qui</a> per attivare gli aggiornamenti remoti."
2394
-
2395
- #: classes/FLBuilderAdmin.php:288
2396
- #@ fl-builder
2397
- msgid "Upgrade"
2398
- msgstr "Aggiorna"
2399
-
2400
- #: classes/FLBuilderModel.php:1511
2401
- #@ fl-builder
2402
- msgid "Copy of "
2403
- msgstr "Copia di "
2404
-
2405
- #: classes/FLBuilderPhoto.php:75
2406
- #: includes/js-config.php:32
2407
- #@ fl-builder
2408
- msgid "Full Size"
2409
- msgstr "Full-Size"
2410
-
2411
- #: classes/FLBuilderPhoto.php:78
2412
- #: includes/js-config.php:58
2413
- #@ fl-builder
2414
- msgid "Thumbnail"
2415
- msgstr "Miniatura"
2416
-
2417
- #: includes/admin-posts.php:7
2418
- #@ fl-builder
2419
- msgid "The Page Builder is currently active for this page."
2420
- msgstr "Page Builder è attivo per questa pagina."
2421
-
2422
- #: includes/admin-posts.php:8
2423
- #@ fl-builder
2424
- msgid "Launch the Page Builder"
2425
- msgstr "Avvia Page Builder"
2426
-
2427
- #: includes/admin-settings.php:4
2428
- #: includes/global-settings.php:4
2429
- #@ fl-builder
2430
- msgid "Page Builder Settings"
2431
- msgstr "Impostazioni di Page Builder"
2432
-
2433
- #: includes/admin-settings.php:8
2434
- #@ fl-builder
2435
- msgid "License"
2436
- msgstr "Licenza"
2437
-
2438
- #: includes/admin-settings.php:9
2439
- #: includes/global-settings.php:67
2440
- #@ fl-builder
2441
- msgid "Modules"
2442
- msgstr "Moduli"
2443
-
2444
- #: includes/admin-settings.php:11
2445
- #: includes/admin-settings.php:95
2446
- #@ fl-builder
2447
- msgid "Post Types"
2448
- msgstr "Tipi di Post"
2449
-
2450
- #: includes/admin-settings.php:12
2451
- #: includes/admin-settings.php:136
2452
- #: includes/admin-settings.php:148
2453
- #@ fl-builder
2454
- msgid "Uninstall"
2455
- msgstr "Disinstalla"
2456
-
2457
- #: includes/admin-settings.php:27
2458
- #@ fl-builder
2459
- msgid "Enabled Modules"
2460
- msgstr "Moduli abilitati"
2461
-
2462
- #: includes/admin-settings.php:28
2463
- #@ fl-builder
2464
- msgid "Check or uncheck modules below to enable or disable them."
2465
- msgstr "Selezionare o deselezionare i moduli sottostanti per abilitarli o disabilitarli."
2466
-
2467
- #: includes/admin-settings.php:96
2468
- #@ fl-builder
2469
- msgid "Select the post types you would like the builder to work with."
2470
- msgstr "Selezionare i tipi di Post su cui vuoi attivare il builder."
2471
-
2472
- #: includes/admin-settings.php:97
2473
- #@ fl-builder
2474
- msgid "NOTE: Not all custom post types may be supported."
2475
- msgstr "NOTA: Non tutti i tipi di Post personalizzati potrebbero essere supportati."
2476
-
2477
- #: includes/admin-settings.php:138
2478
- #@ fl-builder
2479
- msgid "Clicking the button below will uninstall the page builder plugin and delete all of its data, including all database tables and meta 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."
2480
- msgstr "Cliccando sul pulsante qui sotto disinstallerà il plugin page builder ed eliminerà tutti i suoi dati, incluse tutte le tabelle del database e meta ad esso associati. È possibile disinstallare o disattivare il page builder dalla pagina plugin se non desideri eliminare i dati."
2481
-
2482
- #: includes/admin-settings.php:140
2483
- #: includes/admin-settings.php:143
2484
- #@ default
2485
- msgid "NOTE:"
2486
- msgstr "NOTA:"
2487
-
2488
- #: includes/admin-settings.php:140
2489
- #@ fl-builder
2490
- msgid "The builder does not delete the post meta \"_fl_builder_layout_export\" and \"_fl_builder_enabled\" in case you want to reinstall it later. If you do, the builder will rebuild all of its data using those meta values."
2491
- msgstr "Il builder non elimina il post meta \"_fl_builder_layout_export\" e \"_fl_builder_enabled\" nel caso si desideri reinstallarlo successivamente. Se lo fai, il builder ricostruirà tutti i suoi dati utilizzando quei valori meta."
2492
-
2493
- #: includes/admin-settings.php:143
2494
- #@ fl-builder
2495
- msgid "This applies to all sites on the network."
2496
- msgstr "Questo si applica a tutti i siti della rete."
2497
-
2498
- #: includes/admin-settings.php:187
2499
- #@ fl-builder
2500
- msgid "Please type \"uninstall\" in the box below to confirm that you really want to uninstall the page builder and all of its data."
2501
- msgstr "Si prega di digitare \"uninstall\" nella casella qui sotto per confermare che si desidera davvero disinstallare il page builder e tutti i dati relativi."
2502
-
2503
- #: includes/column-settings.php:4
2504
- #: includes/js-config.php:18
2505
- #@ fl-builder
2506
- msgid "Column Settings"
2507
- msgstr "Impostazioni Colonna"
2508
-
2509
- #: includes/column-settings.php:14
2510
- #@ fl-builder
2511
- msgid "Column Width"
2512
- msgstr "Larghezza colonna"
2513
-
2514
- #: includes/column-settings.php:42
2515
- #: includes/column-settings.php:90
2516
- #: includes/row-settings.php:102
2517
- #: includes/row-settings.php:315
2518
- #: modules/separator/separator.php:39
2519
- #@ fl-builder
2520
- msgid "Opacity"
2521
- msgstr "Opacità"
2522
-
2523
- #: includes/column-settings.php:51
2524
- #: includes/row-settings.php:276
2525
- #@ fl-builder
2526
- msgid "Border"
2527
- msgstr "Bordo"
2528
-
2529
- #: includes/column-settings.php:57
2530
- #: includes/row-settings.php:282
2531
- #@ fl-builder
2532
- msgid "The type of border to use. Double borders must have a width of at least 3px to render properly."
2533
- msgstr "Il tipo di bordo da utilizzare. Il bordi doppi devono avere una larghezza di almeno 3px per essere visualizzati correttamente."
2534
-
2535
- #: includes/column-settings.php:98
2536
- #: includes/row-settings.php:323
2537
- #@ fl-builder
2538
- msgid "Top Width"
2539
- msgstr "Larghezza superiore"
2540
-
2541
- #: includes/column-settings.php:107
2542
- #: includes/row-settings.php:332
2543
- #@ fl-builder
2544
- msgid "Bottom Width"
2545
- msgstr "Larghezza inferiore"
2546
-
2547
- #: includes/column-settings.php:116
2548
- #: includes/row-settings.php:341
2549
- #@ fl-builder
2550
- msgid "Left Width"
2551
- msgstr "Larghezza sinistra"
2552
-
2553
- #: includes/column-settings.php:125
2554
- #: includes/row-settings.php:350
2555
- #@ fl-builder
2556
- msgid "Right Width"
2557
- msgstr "Larghezza destra"
2558
-
2559
- #: includes/column-settings.php:144
2560
- #: includes/module-settings.php:13
2561
- #: includes/row-settings.php:369
2562
- #@ fl-builder
2563
- msgid "CSS Class"
2564
- msgstr "Classe CSS"
2565
-
2566
- #: includes/column-settings.php:145
2567
- #@ default
2568
- msgid "A custom CSS class that will be applied to this column. Spaces only, no dots."
2569
- msgstr "La classe CSS personalizzata che verrà applicata a questa colonna. Solo spazi, senza punti."
2570
-
2571
- #: includes/column-settings.php:151
2572
- #: includes/module-settings.php:20
2573
- #: includes/row-settings.php:376
2574
- #@ fl-builder
2575
- msgid "Always"
2576
- msgstr "Sempre"
2577
-
2578
- #: includes/column-settings.php:152
2579
- #: includes/module-settings.php:21
2580
- #: includes/row-settings.php:377
2581
- #@ fl-builder
2582
- msgid "Desktop Only"
2583
- msgstr "Solo Desktop"
2584
-
2585
- #: includes/column-settings.php:153
2586
- #: includes/module-settings.php:22
2587
- #: includes/row-settings.php:378
2588
- #@ fl-builder
2589
- msgid "Mobile Only"
2590
- msgstr "Solo Mobile"
2591
-
2592
- #: includes/column-settings.php:155
2593
- #@ default
2594
- msgid "Choose whether to always show this column, only show it on the desktop view or only show it on the mobile view."
2595
- msgstr "Scegliere se mostrare sempre questa colonna, mostrarla nella vista desktop o mostrarlo solo nella visualizzazione mobile."
2596
-
2597
- #: includes/column-settings.php:160
2598
- #: includes/global-settings.php:41
2599
- #: includes/global-settings.php:71
2600
- #: includes/module-settings.php:29
2601
- #: includes/row-settings.php:385
2602
- #@ fl-builder
2603
- msgid "Margins"
2604
- msgstr "Margini"
2605
-
2606
- #: includes/fields.php:65
2607
- #: includes/js-config.php:51
2608
- #@ fl-builder
2609
- msgid "Select Photo"
2610
- msgstr "Seleziona foto"
2611
-
2612
- #: includes/fields.php:74
2613
- #: includes/fields.php:179
2614
- #: includes/template-selector.php:72
2615
- #@ fl-builder
2616
- msgid "Edit"
2617
- msgstr "Modifica"
2618
-
2619
- #: includes/fields.php:75
2620
- #: includes/fields.php:151
2621
- #@ fl-builder
2622
- msgid "Replace"
2623
- msgstr "Sostituisci"
2624
-
2625
- #: includes/fields.php:92
2626
- #@ fl-builder
2627
- msgid " Photo Selected"
2628
- msgstr " Foto selezionata"
2629
-
2630
- #: includes/fields.php:95
2631
- #@ fl-builder
2632
- msgid " Photos Selected"
2633
- msgstr " Foto selezionate"
2634
-
2635
- #: includes/fields.php:101
2636
- #@ fl-builder
2637
- msgid "Create Gallery"
2638
- msgstr "Crea galleria"
2639
-
2640
- #: includes/fields.php:102
2641
- #@ fl-builder
2642
- msgid "Edit Gallery"
2643
- msgstr "Modifica Galleria"
2644
-
2645
- #: includes/fields.php:103
2646
- #@ fl-builder
2647
- msgid "Add Photos"
2648
- msgstr "Aggiungi foto"
2649
-
2650
- #: includes/fields.php:125
2651
- #: includes/js-config.php:53
2652
- #@ fl-builder
2653
- msgid "Select Video"
2654
- msgstr "Seleziona Video"
2655
-
2656
- #: includes/fields.php:139
2657
- #@ fl-builder
2658
- msgid "Replace Video"
2659
- msgstr "Sostituisci Video"
2660
-
2661
- #: includes/fields.php:148
2662
- #: includes/icon-selector.php:23
2663
- #@ fl-builder
2664
- msgid "Select Icon"
2665
- msgstr "Seleziona icona"
2666
-
2667
- #: includes/fields.php:153
2668
- #: includes/js-config.php:46
2669
- #@ fl-builder
2670
- msgid "Remove"
2671
- msgstr "Rimuovi"
2672
-
2673
- #: includes/global-settings.php:8
2674
- #@ fl-builder
2675
- msgid "These settings apply to all posts and pages where the builder is active."
2676
- msgstr "Queste impostazioni si applicano a tutti i post e le pagine in cui il builder è attivo."
2677
-
2678
- #: includes/global-settings.php:11
2679
- #@ fl-builder
2680
- msgid "Default Page Heading"
2681
- msgstr "Intestazione di pagina di default"
2682
-
2683
- #: includes/global-settings.php:26
2684
- #@ fl-builder
2685
- 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."
2686
- msgstr "Scegliendo no si nasconderà il titolo predefinito del tema per il tipo di post \"Pagina\". Se si sceglie no vi sarà anche richiesto di inserire alcuni CSS base per far funzionare questo."
2687
-
2688
- #: includes/global-settings.php:30
2689
- #@ fl-builder
2690
- msgid "CSS Selector"
2691
- msgstr "Selettore CSS"
2692
-
2693
- #: includes/global-settings.php:32
2694
- #@ fl-builder
2695
- msgid "Enter a CSS selector for the default page heading to hide it."
2696
- msgstr "Inserire un selettore CSS per nascondere l'intestazione della pagina predefinita."
2697
-
2698
- #: includes/global-settings.php:37
2699
- #@ fl-builder
2700
- msgid "Rows"
2701
- msgstr "Righe"
2702
-
2703
- #: includes/global-settings.php:57
2704
- #@ fl-builder
2705
- msgid "Max Width"
2706
- msgstr "Larghezza massima"
2707
-
2708
- #: includes/global-settings.php:62
2709
- #@ fl-builder
2710
- msgid "All rows will default to this width. You can override this and make a row full width in the settings for each row."
2711
- msgstr "Tutte le righe avranno questa larghezza per impostazione predefinita. Puoi rendere una riga a piena larghezza modificando le impostazioni di ciascuna riga."
2712
-
2713
- #: includes/global-settings.php:80
2714
- #@ fl-builder
2715
- msgid "Mobile Layout"
2716
- msgstr "Layout mobile"
2717
-
2718
- #: includes/global-settings.php:84
2719
- #@ fl-builder
2720
- msgid "Enabled"
2721
- msgstr "Abilitato"
2722
-
2723
- #: includes/global-settings.php:98
2724
- #@ fl-builder
2725
- msgid "Breakpoint"
2726
- msgstr "Breakpoint"
2727
-
2728
- #: includes/icon-selector.php:25
2729
- #@ fl-builder
2730
- msgid "Filter: "
2731
- msgstr "Filtro: "
2732
-
2733
- #: includes/icon-selector.php:48
2734
- #: includes/js-config.php:14
2735
- #: includes/settings.php:66
2736
- #: includes/template-selector.php:91
2737
- #@ fl-builder
2738
- msgid "Cancel"
2739
- msgstr "Annulla"
2740
-
2741
- #: includes/js-config.php:13
2742
- #@ fl-builder
2743
- msgid "What would you like to do?"
2744
- msgstr "Che cosa vorresti fare?"
2745
-
2746
- #: includes/js-config.php:15
2747
- #@ fl-builder
2748
- msgid "Change Template"
2749
- msgstr "Cambia modello"
2750
-
2751
- #: includes/js-config.php:16
2752
- #@ fl-builder
2753
- msgid "Warning! Changing the template will replace your existing layout. Do you really want to do this?"
2754
- msgstr "ATTENZIONE! Cambiare il modello sostituirà il layout esistente. Vuoi davvero fare questo?"
2755
-
2756
- #: includes/js-config.php:17
2757
- #@ fl-builder
2758
- msgid "Column"
2759
- msgstr "Colonna"
2760
-
2761
- #: includes/js-config.php:19
2762
- #@ fl-builder
2763
- msgid "Please select either a background layout or content layout before submitting."
2764
- msgstr "Si prega di selezionare un layout di sfondo o un layout contenuto prima di inviare."
2765
-
2766
- #: includes/js-config.php:20
2767
- #@ fl-builder
2768
- msgid "Do you really want to delete this item?"
2769
- msgstr "Vuoi davvero eliminare questo elemento?"
2770
-
2771
- #: includes/js-config.php:21
2772
- #@ fl-builder
2773
- msgid "Do you really want to delete this module? All content data will be permanently deleted."
2774
- msgstr "Vuoi davvero eliminare questo modulo? Tutti i dati contenuti verranno eliminati definitivamente."
2775
-
2776
- #: includes/js-config.php:22
2777
- #@ fl-builder
2778
- msgid "Do you really want to delete this row? All content data will be permanently deleted."
2779
- msgstr "Vuoi davvero eliminare questa riga? Tutti i dati contenuti verranno eliminati definitivamente."
2780
-
2781
- #: includes/js-config.php:23
2782
- #@ fl-builder
2783
- msgid "Do you really want to delete this template?"
2784
- msgstr "Vuoi davvero eliminare questo modello?"
2785
-
2786
- #: includes/js-config.php:24
2787
- #@ fl-builder
2788
- msgid "Discard Draft"
2789
- msgstr "Scarta bozza"
2790
-
2791
- #: includes/js-config.php:25
2792
- #@ fl-builder
2793
- msgid "Do you really want to discard this draft? All of your changes that are not published will be lost."
2794
- msgstr "Vuoi davvero scartare questa bozza? Tutte le modifiche non pubblicate saranno perse."
2795
-
2796
- #: includes/js-config.php:26
2797
- #@ fl-builder
2798
- msgid "Save Draft"
2799
- msgstr "Salva bozza"
2800
-
2801
- #: includes/js-config.php:27
2802
- #@ fl-builder
2803
- msgid "Duplicate"
2804
- msgstr "Duplica"
2805
-
2806
- #: includes/js-config.php:28
2807
- #@ fl-builder
2808
- msgid "Duplicate This Page"
2809
- msgstr "Duplica questa pagina"
2810
-
2811
- #: includes/js-config.php:29
2812
- #@ fl-builder
2813
- msgid "Duplicate This Template"
2814
- msgstr "Duplica questo modello"
2815
-
2816
- #: includes/js-config.php:30
2817
- #@ fl-builder
2818
- msgid "Edit Global Settings"
2819
- msgstr "Modifica impostazioni globali"
2820
-
2821
- #: includes/js-config.php:31
2822
- #@ fl-builder
2823
- msgid "Drop a row layout or module to get started!"
2824
- msgstr "Rilascia un formato di riga o un modulo per iniziare!"
2825
-
2826
- #: includes/js-config.php:33
2827
- #@ fl-builder
2828
- msgid "Insert"
2829
- msgstr "Inserisci"
2830
-
2831
- #: includes/js-config.php:35
2832
- #@ fl-builder
2833
- msgid "Manage Templates"
2834
- msgstr "Gestione modelli"
2835
-
2836
- #: includes/js-config.php:37
2837
- #@ fl-builder
2838
- msgid "Module"
2839
- msgstr "Modulo"
2840
-
2841
- #: includes/js-config.php:38
2842
- #@ fl-builder
2843
- msgid "Move"
2844
- msgstr "Sposta"
2845
-
2846
- #: includes/js-config.php:39
2847
- #@ fl-builder
2848
- msgid "New Column"
2849
- msgstr "Nuova colonna"
2850
-
2851
- #: includes/js-config.php:40
2852
- #@ fl-builder
2853
- msgid "New Row"
2854
- msgstr "Nuova riga"
2855
-
2856
- #: includes/js-config.php:42
2857
- #@ fl-builder
2858
- msgid "Ok"
2859
- msgstr "Ok"
2860
-
2861
- #: includes/js-config.php:43
2862
- #@ fl-builder
2863
- msgid "Photo Selected"
2864
- msgstr "Foto selezionata"
2865
-
2866
- #: includes/js-config.php:44
2867
- #@ fl-builder
2868
- msgid "Photos Selected"
2869
- msgstr "Foto selezionate"
2870
-
2871
- #: includes/js-config.php:45
2872
- #@ fl-builder
2873
- msgid "Publish Changes"
2874
- msgstr "Pubblica le modifiche"
2875
-
2876
- #: includes/js-config.php:47
2877
- #@ fl-builder
2878
- msgid "Row"
2879
- msgstr "Riga"
2880
-
2881
- #: includes/js-config.php:48
2882
- #: includes/row-settings.php:6
2883
- #@ fl-builder
2884
- msgid "Row Settings"
2885
- msgstr "Impostazioni di riga"
2886
-
2887
- #: includes/js-config.php:49
2888
- #@ fl-builder
2889
- msgid "Save Core Template"
2890
- msgstr "Salva il modello Core"
2891
-
2892
- #: includes/js-config.php:50
2893
- #: includes/user-template-settings.php:4
2894
- #@ fl-builder
2895
- msgid "Save Template"
2896
- msgstr "Salva il modello"
2897
-
2898
- #: includes/js-config.php:52
2899
- #@ fl-builder
2900
- msgid "Select Photos"
2901
- msgstr "Seleziona foto"
2902
-
2903
- #: includes/js-config.php:54
2904
- #@ fl-builder
2905
- msgid "Settings"
2906
- msgstr "Impostazioni"
2907
-
2908
- #: includes/js-config.php:55
2909
- #@ fl-builder
2910
- msgid "Append New Layout"
2911
- msgstr "Aggiungi nuovo Layout"
2912
-
2913
- #: includes/js-config.php:56
2914
- #@ fl-builder
2915
- msgid "Replace Existing Layout"
2916
- msgstr "Sostituisci il Layout esistente"
2917
-
2918
- #: includes/js-config.php:57
2919
- #@ fl-builder
2920
- msgid "Template Saved!"
2921
- msgstr "Modello salvato!"
2922
-
2923
- #: includes/js-config.php:59
2924
- #@ fl-builder
2925
- msgid "The settings you are currently editing will not be saved if you navigate away from this page."
2926
- msgstr "Le impostazioni che stai modificando non verranno salvate se abbandoni questa pagina."
2927
-
2928
- #: includes/module-settings.php:14
2929
- #@ default
2930
- msgid "A custom CSS class that will be applied to this module. Spaces only, no dots."
2931
- msgstr "Una classe CSS personalizzata che verrà applicata a questo modulo. Solo spazi, senza punti."
2932
-
2933
- #: includes/module-settings.php:24
2934
- #@ default
2935
- msgid "Choose whether to always show this module, only show it on the desktop view or only show it on the mobile view."
2936
- msgstr "Scegliere se mostrare sempre questo modulo, mostrarlo solo nella vista desktop o mostrarlo solo nella visualizzazione mobile."
2937
-
2938
- #: includes/module-settings.php:70
2939
- #@ fl-builder
2940
- msgid "Animation"
2941
- msgstr "Animazione"
2942
-
2943
- #: includes/module-settings.php:77
2944
- #@ fl-builder
2945
- msgid "Fade In"
2946
- msgstr "Dissolvenza In entrata"
2947
-
2948
- #: includes/module-settings.php:78
2949
- #@ fl-builder
2950
- msgid "Slide Left"
2951
- msgstr "Scorri sinistra"
2952
-
2953
- #: includes/module-settings.php:79
2954
- #@ fl-builder
2955
- msgid "Slide Right"
2956
- msgstr "Scorri destra"
2957
-
2958
- #: includes/module-settings.php:80
2959
- #@ fl-builder
2960
- msgid "Slide Up"
2961
- msgstr "Scorri sù"
2962
-
2963
- #: includes/module-settings.php:81
2964
- #@ fl-builder
2965
- msgid "Slide Down"
2966
- msgstr "Scorri giù"
2967
-
2968
- #: includes/module-settings.php:91
2969
- #@ fl-builder
2970
- msgid "The amount of time in seconds before this animation starts."
2971
- msgstr "Il periodo di tempo in secondi prima dell'inizio di questa animazione."
2972
-
2973
- #: includes/row-settings.php:19
2974
- #: includes/row-settings.php:34
2975
- #: includes/row-settings.php:152
2976
- #@ fl-builder
2977
- msgid "Fixed"
2978
- msgstr "Fisso"
2979
-
2980
- #: includes/row-settings.php:27
2981
- #@ fl-builder
2982
- 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."
2983
- msgstr "Le righe a larghezza piena si estendono per la larghezza della pagina da bordo a bordo. Le righe fisse non sono più ampie rispetto alla massima larghezza di riga configurata nelle impostazioni globali."
2984
-
2985
- #: includes/row-settings.php:31
2986
- #@ fl-builder
2987
- msgid "Content Width"
2988
- msgstr "Larghezza contenuto"
2989
-
2990
- #: includes/row-settings.php:37
2991
- #@ fl-builder
2992
- 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."
2993
- msgstr "Il contenuto a larghezza piena si estende per la larghezza della pagina da bordo a bordo. Il contenuto fisso non è più ampio rispetto alla massima larghezza di riga configurata nelle impostazioni globali."
2994
-
2995
- #: includes/row-settings.php:52
2996
- #@ fl-builder
2997
- msgid "Background"
2998
- msgstr "Sfondo"
2999
-
3000
- #: includes/row-settings.php:68
3001
- #@ fl-builder
3002
- msgid "Parallax"
3003
- msgstr "Parallasse"
3004
-
3005
- #: includes/row-settings.php:119
3006
- #@ fl-builder
3007
- msgid "Repeat"
3008
- msgstr "Ripeti"
3009
-
3010
- #: includes/row-settings.php:123
3011
- #@ fl-builder
3012
- msgid "Tile"
3013
- msgstr "Tassello"
3014
-
3015
- #: includes/row-settings.php:127
3016
- #@ fl-builder
3017
- msgid "Repeat applies to how the image should display in the row background. Choosing none will display the image as uploaded. Tile will repeat the image as many times as needed to fill the row horizontally and vertically. You can also specify the image to only repeat horizontally or vertically."
3018
- msgstr "Ripetizione si applica a come dovrebbe essere visualizzata l'immagine sullo sfondo della riga. Scegliendo nessuna visualizzerà l'immagine così come caricata. Tassello ripeterà l'immagine tante volte quanto è necessario per riempire la riga orizzontalmente e verticalmente. È anche possibile specificare di ripetere l'immagine solo orizzontalmente o verticalmente."
3019
-
3020
- #: includes/row-settings.php:134
3021
- #@ fl-builder
3022
- msgid "Left Top"
3023
- msgstr "Sinistra Alto"
3024
-
3025
- #: includes/row-settings.php:135
3026
- #@ fl-builder
3027
- msgid "Left Center"
3028
- msgstr "Sinistra Centro"
3029
-
3030
- #: includes/row-settings.php:136
3031
- #@ fl-builder
3032
- msgid "Left Bottom"
3033
- msgstr "Sinistra Basso"
3034
-
3035
- #: includes/row-settings.php:137
3036
- #@ fl-builder
3037
- msgid "Right Top"
3038
- msgstr "Destra Alto"
3039
-
3040
- #: includes/row-settings.php:138
3041
- #@ fl-builder
3042
- msgid "Right Center"
3043
- msgstr "Destra Centro"
3044
-
3045
- #: includes/row-settings.php:139
3046
- #@ fl-builder
3047
- msgid "Right Bottom"
3048
- msgstr "Destra Basso"
3049
-
3050
- #: includes/row-settings.php:140
3051
- #@ fl-builder
3052
- msgid "Center Top"
3053
- msgstr "Centro Alto"
3054
-
3055
- #: includes/row-settings.php:141
3056
- #@ fl-builder
3057
- msgid "Center Center"
3058
- msgstr "Centro Centro"
3059
-
3060
- #: includes/row-settings.php:142
3061
- #@ fl-builder
3062
- msgid "Center Bottom"
3063
- msgstr "Centro Basso"
3064
-
3065
- #: includes/row-settings.php:144
3066
- #@ fl-builder
3067
- msgid "Position will tell the image where it should sit in the row background."
3068
- msgstr "Posizione dirà all'immagine dove posizionarsi nello sfondo di riga."
3069
-
3070
- #: includes/row-settings.php:148
3071
- #@ fl-builder
3072
- msgid "Attachment"
3073
- msgstr "Ancoraggio"
3074
-
3075
- #: includes/row-settings.php:151
3076
- #@ fl-builder
3077
- msgid "Scroll"
3078
- msgstr "Scorri"
3079
-
3080
- #: includes/row-settings.php:154
3081
- #@ fl-builder
3082
- 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 row background if fill is selected in the scale setting."
3083
- msgstr "L'ancoraggio specificherà come reagisce l'immagine durante lo scorrimento di una pagina. Quando è selezionato lo scorrimento, l'immagine scorre con lo scorrimento della pagina. Questa è l'impostazione predefinita. Fisso permetterà all'immagine di scorrere all'interno dello sfondo di riga se si è selezionato riempimento nelle impostazioni di scala."
3084
-
3085
- #: includes/row-settings.php:158
3086
- #@ fl-builder
3087
- msgid "Scale"
3088
- msgstr "Scala"
3089
-
3090
- #: includes/row-settings.php:162
3091
- #@ fl-builder
3092
- msgid "Fit"
3093
- msgstr "Adatta"
3094
-
3095
- #: includes/row-settings.php:163
3096
- #@ fl-builder
3097
- msgid "Fill"
3098
- msgstr "Riempimento"
3099
-
3100
- #: includes/row-settings.php:165
3101
- #@ fl-builder
3102
- msgid "Scale applies to how the image should display in the row background. You can select either fill or fit to the row background."
3103
- msgstr "Scala si applica a come si dovrebbe visualizzare l'immagine nello sfondo della riga. È possibile selezionare riempimento o adatta allo sfondo di riga."
3104
-
3105
- #: includes/row-settings.php:170
3106
- #@ fl-builder
3107
- msgid "Background Video"
3108
- msgstr "Video di sfondo"
3109
-
3110
- #: includes/row-settings.php:175
3111
- #@ fl-builder
3112
- msgid "An HTML5 video to use as the background of this row. Supported types are MP4, WebM and Ogg."
3113
- msgstr "Un video HTML5 da usare come sfondo di questa riga. I formati supportati sono MP4, WebM e Ogg."
3114
-
3115
- #: includes/row-settings.php:179
3116
- #@ fl-builder
3117
- msgid "Fallback Photo"
3118
- msgstr "Foto alternativa"
3119
-
3120
- #: includes/row-settings.php:180
3121
- #@ fl-builder
3122
- msgid "A photo that will be displayed if the video fails to load."
3123
- msgstr "Una foto che verrà visualizzata se fallisce il caricamento del video."
3124
-
3125
- #: includes/row-settings.php:185
3126
- #@ fl-builder
3127
- msgid "Background Slideshow"
3128
- msgstr "Sfondo Slideshow"
3129
-
3130
- #: includes/row-settings.php:257
3131
- #@ fl-builder
3132
- msgid "Background Parallax"
3133
- msgstr "Sfondo Parallasse"
3134
-
3135
- #: includes/row-settings.php:268
3136
- #@ fl-builder
3137
- msgid "Fast"
3138
- msgstr "Veloce"
3139
-
3140
- #: includes/row-settings.php:270
3141
- #@ fl-builder
3142
- msgid "Slow"
3143
- msgstr "Lento"
3144
-
3145
- #: includes/row-settings.php:370
3146
- #@ fl-builder
3147
- msgid "Add a custom CSS selector here to apply additional styling to this row."
3148
- msgstr "Aggiungere un selettore CSS personalizzato qui per applicare stili aggiuntivi a questa riga."
3149
-
3150
- #: includes/row-settings.php:380
3151
- #@ default
3152
- msgid "Choose whether to always show this row, only show it on the desktop view or only show it on the mobile view."
3153
- msgstr "Scegliere se mostrare sempre questa riga, mostrarla solo nella vista desktop o mostrarla solo nella visualizzazione mobile."
3154
-
3155
- #: classes/FLBuilder.php:594
3156
- #@ fl-builder
3157
- msgid "Add"
3158
- msgstr "Aggiungi"
3159
-
3160
- #: includes/settings.php:62
3161
- #@ fl-builder
3162
- msgid "Save &amp; Finish"
3163
- msgstr "Salva e finisci"
3164
-
3165
- #: includes/settings.php:64
3166
- #@ fl-builder
3167
- msgid "Save &amp; Preview"
3168
- msgstr "Salva e anteprima"
3169
-
3170
- #: includes/template-selector.php:3
3171
- #@ fl-builder
3172
- msgid "Layout Templates"
3173
- msgstr "Modelli di layout"
3174
-
3175
- #: includes/template-selector.php:8
3176
- #@ fl-builder
3177
- msgid "Home Pages"
3178
- msgstr "Pagine Home"
3179
-
3180
- #: includes/template-selector.php:9
3181
- #@ fl-builder
3182
- msgid "Content Pages"
3183
- msgstr "Pagine di contenuto"
3184
-
3185
- #: includes/template-selector.php:13
3186
- #@ fl-builder
3187
- msgid "Your Templates"
3188
- msgstr "I tuoi modelli"
3189
-
3190
- #: includes/template-selector.php:61
3191
- #@ fl-builder
3192
- msgid "You haven't saved any templates yet! To do so, create a layout and save it as a template under Tools > Save Template."
3193
- msgstr "Non hai ancora salvato nessun modello! Per farlo, crea un layout e salvalo come modello con Strumenti > Salva modello."
3194
-
3195
- #: includes/template-selector.php:66
3196
- #@ fl-builder
3197
- msgid "Blank"
3198
- msgstr "Vuoto"
3199
-
3200
- #: includes/template-selector.php:73
3201
- #@ fl-builder
3202
- msgid "Delete"
3203
- msgstr "Elimina"
3204
-
3205
- #: includes/ui.php:9
3206
- #@ fl-builder
3207
- msgid "Done"
3208
- msgstr "Fatto"
3209
-
3210
- #: includes/ui.php:10
3211
- #@ fl-builder
3212
- msgid "Tools"
3213
- msgstr "Strumenti"
3214
-
3215
- #: includes/admin-settings.php:10
3216
- #: includes/ui.php:12
3217
- #@ fl-builder
3218
- msgid "Templates"
3219
- msgstr "Modelli"
3220
-
3221
- #: includes/ui.php:14
3222
- #@ fl-builder
3223
- msgid "Add Content"
3224
- msgstr "Aggiungi contenuto"
3225
-
3226
- #: includes/ui.php:29
3227
- #@ fl-builder
3228
- msgid "Row Layouts"
3229
- msgstr "Layout di riga"
3230
-
3231
- #: includes/ui.php:33
3232
- #@ fl-builder
3233
- msgid "1 Column"
3234
- msgstr "1 Colonna"
3235
-
3236
- #: includes/ui.php:34
3237
- #@ fl-builder
3238
- msgid "2 Columns"
3239
- msgstr "2 Colonne"
3240
-
3241
- #: includes/ui.php:35
3242
- #@ fl-builder
3243
- msgid "3 Columns"
3244
- msgstr "3 Colonne"
3245
-
3246
- #: includes/ui.php:36
3247
- #@ fl-builder
3248
- msgid "4 Columns"
3249
- msgstr "4 Colonne"
3250
-
3251
- #: includes/ui.php:37
3252
- #@ fl-builder
3253
- msgid "5 Columns"
3254
- msgstr "5 Colonne"
3255
-
3256
- #: includes/ui.php:38
3257
- #@ fl-builder
3258
- msgid "6 Columns"
3259
- msgstr "6 Colonne"
3260
-
3261
- #: includes/ui.php:39
3262
- #@ fl-builder
3263
- msgid "Left Sidebar"
3264
- msgstr "Barra laterale sinistra"
3265
-
3266
- #: includes/ui.php:40
3267
- #@ fl-builder
3268
- msgid "Right Sidebar"
3269
- msgstr "Barra laterale destra"
3270
-
3271
- #: includes/ui.php:41
3272
- #@ fl-builder
3273
- msgid "Left &amp; Right Sidebar"
3274
- msgstr "Barra laterale sinistra e destra"
3275
-
3276
- #: includes/ui.php:68
3277
- #@ fl-builder
3278
- msgid "Purchase the Page Builder"
3279
- msgstr "Acquista Page Builder"
3280
-
3281
- #: includes/updater/includes/form.php:4
3282
- #@ fl-builder
3283
- msgid "FastLine Themes Subscription"
3284
- msgstr "Abbonamento FastLine Themes"
3285
-
3286
- #: includes/updater/includes/form.php:7
3287
- #@ fl-builder
3288
- msgid "Active!"
3289
- msgstr "Attivo!"
3290
-
3291
- #: includes/updater/includes/form.php:9
3292
- #@ fl-builder
3293
- msgid "Not Active!"
3294
- msgstr "Non attivo!"
3295
-
3296
- #: includes/updater/includes/form.php:15
3297
- #@ fl-builder
3298
- msgid "Email address saved!"
3299
- msgstr "Indirizzo email salvato!"
3300
-
3301
- #: includes/updater/includes/form.php:20
3302
- #@ fl-builder
3303
- msgid "Enter the email address you used to signup for <a href=\"http://themes.fastlinemedia.com\" target=\"_blank\">FastLine Themes</a> to enable remote updates."
3304
- msgstr "Inserisci l'indirizzo email utilizzato per l'iscrizione a <a href=\\\"http://themes.fastlinemedia.com\\\" target=\\\"_blank\\\">FastLine Themes</a> per abilitare aggiornamenti remoti."
3305
-
3306
- #: includes/updater/includes/form.php:24
3307
- #@ fl-builder
3308
- msgid "email@yourwebsite.com"
3309
- msgstr "email@tuositoweb.com"
3310
-
3311
- #: includes/updater/includes/form.php:27
3312
- #@ fl-builder
3313
- msgid "Save Subscription Settings"
3314
- msgstr "Salvare le impostazioni di abbonamento"
3315
-
3316
- #: includes/user-template-settings.php:8
3317
- #@ fl-builder
3318
- msgid "Save the current layout as a template that can be reused under Tools > Manage Templates."
3319
- msgstr "Salvare il layout attuale come un modello che può essere riutilizzato in Strumenti > Gestione modelli."
3320
-
3321
- #: modules/accordion/accordion.php:16
3322
- #: modules/button/button.php:16
3323
- #: modules/callout/callout.php:16
3324
- #: modules/contact-form/contact-form.php:16
3325
- #: modules/content-slider/content-slider.php:16
3326
- #: modules/cta/cta.php:16
3327
- #: modules/gallery/gallery.php:16
3328
- #: modules/html/html.php:16
3329
- #: modules/icon/icon.php:16
3330
- #: modules/icon-group/icon-group.php:16
3331
- #: modules/map/map.php:16
3332
- #: modules/sidebar/sidebar.php:16
3333
- #: modules/slideshow/slideshow.php:16
3334
- #: modules/social-buttons/social-buttons.php:16
3335
- #: modules/testimonials/testimonials.php:16
3336
- #: modules/woocommerce/woocommerce.php:18
3337
- #@ fl-builder
3338
- msgid "Advanced Modules"
3339
- msgstr "Moduli avanzati"
3340
-
3341
- #: modules/button/button.php:130
3342
- #@ fl-builder
3343
- msgid "Custom Width"
3344
- msgstr "Larghezza personalizzata"
3345
-
3346
- #: modules/heading/heading.php:16
3347
- #: modules/photo/photo.php:27
3348
- #: modules/rich-text/rich-text.php:16
3349
- #: modules/separator/separator.php:16
3350
- #: modules/video/video.php:21
3351
- #@ fl-builder
3352
- msgid "Basic Modules"
3353
- msgstr "Moduli di base"
3354
-
3355
- #: modules/separator/separator.php:63
3356
- #@ fl-builder
3357
- msgid "The type of border to use. Double borders must have a height of at least 3px to render properly."
3358
- msgstr "Il tipo di bordo da utilizzare. I bordi doppi devono avere un'altezza di almeno 3px per essere visualizzati correttamente."
3359
-
3360
- #: modules/video/video.php:116
3361
- #@ fl-builder
3362
- msgid "Loop"
3363
- msgstr "Ripeti"
3364
-
3365
- #: includes/admin-settings.php:39
3366
- #@ fl-builder
3367
- msgid "All"
3368
- msgstr "Tutti"
3369
-
3370
- #: includes/admin-settings.php:67
3371
- #@ fl-builder
3372
- msgid "Template Settings"
3373
- msgstr "Impostazioni modello"
3374
-
3375
- #: includes/admin-settings.php:68
3376
- #@ fl-builder
3377
- msgid "Enable or disable templates using the options below."
3378
- msgstr "Abilita o disabilita i modelli utilizzando le opzioni qui sotto."
3379
-
3380
- #: includes/admin-settings.php:77
3381
- #@ default
3382
- msgid "Enable All Templates"
3383
- msgstr "Abilita tutti i modelli"
3384
-
3385
- #: includes/admin-settings.php:78
3386
- #@ default
3387
- msgid "Enable Core Templates Only"
3388
- msgstr "Abilita solo i modelli Core"
3389
-
3390
- #: includes/admin-settings.php:79
3391
- #@ default
3392
- msgid "Enable User Templates Only"
3393
- msgstr "Abilita solo i modelli utente"
3394
-
3395
- #: includes/admin-settings.php:80
3396
- #@ default
3397
- msgid "Disable All Templates"
3398
- msgstr "Disabilita tutti i modelli"
3399
-
3400
- #: includes/fields.php:300
3401
- #@ fl-builder
3402
- msgid "Start typing..."
3403
- msgstr "Inizia a digitare..."
3404
-
3405
- #: includes/js-config.php:41
3406
- #@ fl-builder
3407
- msgid "No results found."
3408
- msgstr "Nessun risultato trovato."
3409
-
3410
- #: includes/loop-settings.php:19
3411
- #@ fl-builder
3412
- msgid "Post Type"
3413
- msgstr "Tipo di Post"
3414
-
3415
- #: includes/loop-settings.php:25
3416
- #@ fl-builder
3417
- msgid "Order By"
3418
- msgstr "Ordina per"
3419
-
3420
- #: includes/loop-settings.php:27
3421
- #@ fl-builder
3422
- msgid "ID"
3423
- msgstr "ID"
3424
-
3425
- #: includes/loop-settings.php:29
3426
- #@ fl-builder
3427
- msgid "Date Last Modified"
3428
- msgstr "Data dell'ultima modifica"
3429
-
3430
- #: includes/loop-settings.php:30
3431
- #@ fl-builder
3432
- msgid "Title"
3433
- msgstr "Titolo"
3434
-
3435
- #: includes/loop-settings.php:31
3436
- #@ fl-builder
3437
- msgid "Author"
3438
- msgstr "Autore"
3439
-
3440
- #: includes/loop-settings.php:32
3441
- #@ fl-builder
3442
- msgid "Comment Count"
3443
- msgstr "Numero commenti"
3444
-
3445
- #: includes/loop-settings.php:33
3446
- #@ fl-builder
3447
- msgid "Menu Order"
3448
- msgstr "Ordine del menu"
3449
-
3450
- #: includes/loop-settings.php:34
3451
- #@ fl-builder
3452
- msgid "Random"
3453
- msgstr "Casuale"
3454
-
3455
- #: includes/loop-settings.php:41
3456
- #@ fl-builder
3457
- msgid "Order"
3458
- msgstr "Ordine"
3459
-
3460
- #: includes/loop-settings.php:43
3461
- #@ fl-builder
3462
- msgid "Descending"
3463
- msgstr "Decrescente"
3464
-
3465
- #: includes/loop-settings.php:44
3466
- #@ fl-builder
3467
- msgid "Ascending"
3468
- msgstr "Crescente"
3469
-
3470
- #: includes/loop-settings.php:52
3471
- #@ fl-builder
3472
- msgid "Filter"
3473
- msgstr "Filtro"
3474
-
3475
- #: includes/loop-settings.php:63
3476
- #, php-format
3477
- #@ fl-builder
3478
- msgid "Enter a comma separated list of %s. Only these %s will be shown."
3479
- msgstr "Immetti un elenco di %s delimitato da virgole. Saranno mostrati solo questi %s."
3480
-
3481
- #: includes/loop-settings.php:76
3482
- #, php-format
3483
- #@ fl-builder
3484
- msgid "Enter a comma separated list of %s. Only posts with these %s will be shown."
3485
- msgstr "Immetti un elenco di %s delimitato da virgole. Saranno mostrati solo i post con queste %s."
3486
-
3487
- #: includes/loop-settings.php:90
3488
- #@ fl-builder
3489
- msgid "Authors"
3490
- msgstr "Autori"
3491
-
3492
- #: includes/loop-settings.php:91
3493
- #@ fl-builder
3494
- msgid "Enter a comma separated list of authors usernames. Only posts with these authors will be shown."
3495
- msgstr "Immetti un elenco di nomi di autori delimitato da virgole. Verranno visualizzati solo i post di questi autori."
3496
-
3497
- #: includes/ui.php:4
3498
- #@ fl-builder
3499
- msgid "Page Builder Demo"
3500
- msgstr "Dimostrazione di Page Builder"
3501
-
3502
- #: modules/woocommerce/woocommerce.php:60
3503
- #@ fl-builder
3504
- msgid "Choose…"
3505
- msgstr "Scegli..."
3506
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/fl-builder-pt_BR.mo DELETED
Binary file
lang/fl-builder-pt_BR.po DELETED
@@ -1,2958 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: FastLine Page Builder\n"
4
- "POT-Creation-Date: 2014-06-26 09:53-0800\n"
5
- "PO-Revision-Date: 2014-06-27 16:48-0300\n"
6
- "Last-Translator: Diego de Oliveira <diego@favolla.com.br>\n"
7
- "Language-Team: \n"
8
- "Language: pt_BR\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.7\n"
13
- "X-Poedit-Basepath: .\n"
14
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
- "X-Poedit-SearchPath-1: ..\n"
19
-
20
- #: ../classes/FLBuilder.php:351 ../classes/FLBuilderAdmin.php:220
21
- #: ../classes/FLBuilderAdmin.php:275 ../includes/admin-posts.php:4
22
- #: ../includes/ui.php:3
23
- msgid "Page Builder"
24
- msgstr "Construtor de Páginas"
25
-
26
- #: ../classes/FLBuilder.php:567
27
- msgid "Add New Layout Template"
28
- msgstr "Adicionar Novo Template de Layout"
29
-
30
- #: ../classes/FLBuilder.php:568
31
- msgid "New Layout Template"
32
- msgstr "Novo Template de Layout"
33
-
34
- #: ../classes/FLBuilder.php:569
35
- msgid "Edit Layout Template"
36
- msgstr "Editar Template de Layout"
37
-
38
- #: ../classes/FLBuilder.php:570
39
- msgid "View Layout Template"
40
- msgstr "Ver Template de Layout"
41
-
42
- #: ../classes/FLBuilder.php:571
43
- msgid "All Layout Templates"
44
- msgstr "Todos os Templates de Layout"
45
-
46
- #: ../classes/FLBuilder.php:572
47
- msgid "Search Layout Templates"
48
- msgstr "Pesquisar Templates de Layout:"
49
-
50
- #: ../classes/FLBuilder.php:573
51
- msgid "Parent Layout Templates:"
52
- msgstr "Template de Layout Pai:"
53
-
54
- #: ../classes/FLBuilder.php:574
55
- msgid "No layout templates found."
56
- msgstr "Nenhum template de layout encontrado."
57
-
58
- #: ../classes/FLBuilder.php:575
59
- msgid "No layout templates found in Trash."
60
- msgstr "Nenhum template de layout encontrado na Lixeira."
61
-
62
- #: ../classes/FLBuilder.php:858
63
- msgid " Settings"
64
- msgstr " - Configurações"
65
-
66
- #: ../classes/FLBuilderAdmin.php:39
67
- #, php-format
68
- msgid ""
69
- "This version of the <strong>FastLine Page Builder</strong> plugin is not "
70
- "compatible with WordPress Multisite. <a href=\"%s\" target=\"_blank\">Please "
71
- "upgrade</a> to the Multisite version of this plugin."
72
- msgstr ""
73
- "Esta versão do plugin<strong>FastLine Construtor de Páginas</strong> não é "
74
- "compatível com WordPress Multisite. <a href=\"%s\" target=\"_blank\">Por "
75
- "favor atualize</a> para a versão Multisite deste plugin."
76
-
77
- #: ../classes/FLBuilderAdmin.php:50
78
- msgid ""
79
- "The <strong>FastLine Page Builder</strong> plugin requires WordPress version "
80
- "3.5 or greater. Please update WordPress before activating the plugin."
81
- msgstr ""
82
- "O plugin <strong>FastLine Construtor de Páginas</strong> requer WordPress "
83
- "versão 3.5 ou superior. Por favor atualize o WordPress antes de ativar o "
84
- "plugin."
85
-
86
- #: ../classes/FLBuilderAdmin.php:85
87
- #, php-format
88
- msgid ""
89
- "FastLine Page Builder activated! <a href=\"%s\">Click here</a> to enable "
90
- "remote updates."
91
- msgstr ""
92
- "FastLine Construtor de Páginas ativado! <a href=\"%s\">Clique aqui</a> para "
93
- "habilitar atualizações remotas."
94
-
95
- #: ../classes/FLBuilderAdmin.php:288
96
- msgid "Upgrade"
97
- msgstr "Atualizar"
98
-
99
- #: ../classes/FLBuilderModel.php:1464
100
- msgid "Copy of "
101
- msgstr "Cópia de "
102
-
103
- #: ../classes/FLBuilderPhoto.php:47 ../includes/js-config.php:30
104
- msgid "Full Size"
105
- msgstr "Tamanho Completo"
106
-
107
- #: ../classes/FLBuilderPhoto.php:48 ../includes/js-config.php:32
108
- #: ../modules/accordion/accordion.php:62 ../modules/gallery/gallery.php:261
109
- msgid "Large"
110
- msgstr "Grande"
111
-
112
- #: ../classes/FLBuilderPhoto.php:49 ../includes/js-config.php:34
113
- #: ../includes/row-settings.php:269 ../modules/accordion/accordion.php:61
114
- #: ../modules/gallery/gallery.php:260
115
- msgid "Medium"
116
- msgstr "Médio"
117
-
118
- #: ../classes/FLBuilderPhoto.php:50 ../includes/js-config.php:55
119
- msgid "Thumbnail"
120
- msgstr "Miniatura"
121
-
122
- #: ../classes/FLBuilderTemplates.php:28
123
- msgid "Page Builder Templates"
124
- msgstr "Templates do Construtor de Páginas"
125
-
126
- #: ../includes/admin-edit-template.php:3
127
- msgid "Edit Template"
128
- msgstr "Editar Template"
129
-
130
- #: ../includes/admin-edit-template.php:8 ../includes/admin-templates.php:10
131
- #: ../includes/template-settings.php:14
132
- #: ../includes/user-template-settings.php:15
133
- #: ../modules/contact-form/includes/frontend.php:4
134
- msgid "Name"
135
- msgstr "Nome"
136
-
137
- #: ../includes/admin-edit-template.php:12 ../modules/callout/callout.php:291
138
- #: ../modules/posts/posts.php:60
139
- msgid "Image"
140
- msgstr "Imagem"
141
-
142
- #: ../includes/admin-edit-template.php:16 ../includes/row-settings.php:131
143
- #: ../includes/template-settings.php:23 ../modules/callout/callout.php:338
144
- #: ../modules/callout/callout.php:358
145
- #: ../modules/content-slider/content-slider.php:465
146
- #: ../modules/posts/posts.php:74
147
- msgid "Position"
148
- msgstr "Posição"
149
-
150
- #: ../includes/admin-edit-template.php:20 ../includes/admin-templates.php:12
151
- #: ../includes/template-settings.php:28
152
- msgid "Premium"
153
- msgstr "Premium"
154
-
155
- #: ../includes/admin-edit-template.php:23 ../includes/global-settings.php:18
156
- #: ../includes/global-settings.php:87 ../includes/row-settings.php:250
157
- #: ../includes/template-settings.php:31 ../modules/button/button.php:100
158
- #: ../modules/callout/callout.php:399 ../modules/callout/callout.php:504
159
- #: ../modules/content-slider/content-slider.php:202
160
- #: ../modules/content-slider/content-slider.php:216
161
- #: ../modules/content-slider/content-slider.php:250
162
- #: ../modules/content-slider/content-slider.php:259
163
- #: ../modules/content-slider/content-slider.php:530
164
- #: ../modules/content-slider/content-slider.php:644 ../modules/cta/cta.php:257
165
- #: ../modules/icon-group/icon-group.php:76 ../modules/icon/icon.php:102
166
- #: ../modules/slideshow/slideshow.php:315
167
- #: ../modules/slideshow/slideshow.php:325
168
- #: ../modules/slideshow/slideshow.php:368
169
- #: ../modules/slideshow/slideshow.php:409
170
- #: ../modules/slideshow/slideshow.php:428
171
- #: ../modules/slideshow/slideshow.php:477
172
- #: ../modules/slideshow/slideshow.php:486
173
- #: ../modules/slideshow/slideshow.php:495
174
- #: ../modules/slideshow/slideshow.php:504
175
- #: ../modules/slideshow/slideshow.php:513
176
- #: ../modules/slideshow/slideshow.php:522
177
- #: ../modules/slideshow/slideshow.php:531
178
- #: ../modules/slideshow/slideshow.php:545
179
- #: ../modules/slideshow/slideshow.php:560
180
- #: ../modules/slideshow/slideshow.php:595
181
- #: ../modules/slideshow/slideshow.php:604
182
- #: ../modules/slideshow/slideshow.php:613
183
- #: ../modules/slideshow/slideshow.php:622
184
- #: ../modules/social-buttons/social-buttons.php:103
185
- #: ../modules/social-buttons/social-buttons.php:112
186
- #: ../modules/social-buttons/social-buttons.php:121
187
- #: ../modules/testimonials/testimonials.php:81
188
- #: ../modules/testimonials/testimonials.php:120
189
- #: ../modules/testimonials/testimonials.php:145 ../modules/video/video.php:110
190
- #: ../modules/video/video.php:119
191
- msgid "No"
192
- msgstr "Não"
193
-
194
- #: ../includes/admin-edit-template.php:24 ../includes/global-settings.php:19
195
- #: ../includes/global-settings.php:88 ../includes/row-settings.php:251
196
- #: ../includes/template-settings.php:32 ../modules/button/button.php:101
197
- #: ../modules/callout/callout.php:400 ../modules/callout/callout.php:505
198
- #: ../modules/content-slider/content-slider.php:203
199
- #: ../modules/content-slider/content-slider.php:217
200
- #: ../modules/content-slider/content-slider.php:251
201
- #: ../modules/content-slider/content-slider.php:260
202
- #: ../modules/content-slider/content-slider.php:531
203
- #: ../modules/content-slider/content-slider.php:645 ../modules/cta/cta.php:258
204
- #: ../modules/icon-group/icon-group.php:77 ../modules/icon/icon.php:103
205
- #: ../modules/slideshow/slideshow.php:316
206
- #: ../modules/slideshow/slideshow.php:326
207
- #: ../modules/slideshow/slideshow.php:369
208
- #: ../modules/slideshow/slideshow.php:410
209
- #: ../modules/slideshow/slideshow.php:429
210
- #: ../modules/slideshow/slideshow.php:478
211
- #: ../modules/slideshow/slideshow.php:487
212
- #: ../modules/slideshow/slideshow.php:496
213
- #: ../modules/slideshow/slideshow.php:505
214
- #: ../modules/slideshow/slideshow.php:514
215
- #: ../modules/slideshow/slideshow.php:523
216
- #: ../modules/slideshow/slideshow.php:532
217
- #: ../modules/slideshow/slideshow.php:546
218
- #: ../modules/slideshow/slideshow.php:561
219
- #: ../modules/slideshow/slideshow.php:596
220
- #: ../modules/slideshow/slideshow.php:605
221
- #: ../modules/slideshow/slideshow.php:614
222
- #: ../modules/slideshow/slideshow.php:623
223
- #: ../modules/social-buttons/social-buttons.php:102
224
- #: ../modules/social-buttons/social-buttons.php:111
225
- #: ../modules/social-buttons/social-buttons.php:120
226
- #: ../modules/testimonials/testimonials.php:82
227
- #: ../modules/testimonials/testimonials.php:121
228
- #: ../modules/testimonials/testimonials.php:146 ../modules/video/video.php:111
229
- #: ../modules/video/video.php:120
230
- msgid "Yes"
231
- msgstr "Sim"
232
-
233
- #: ../includes/admin-edit-template.php:29 ../includes/admin-templates.php:11
234
- #: ../includes/template-settings.php:37 ../modules/posts/posts.php:34
235
- msgid "Category"
236
- msgstr "Categoria"
237
-
238
- # In portuguese, we haven't yet a good translation for "landing page". Mostly, this term is kept as it is. Some call it "página de entrada", which is the closest meaning for the term. Others call it "página de conversão" (conversion page) too.
239
- #: ../includes/admin-edit-template.php:32 ../includes/template-settings.php:40
240
- #, fuzzy
241
- msgid "Landing Pages"
242
- msgstr "Página de Entrada"
243
-
244
- #: ../includes/admin-edit-template.php:33 ../includes/template-settings.php:41
245
- msgid "Company Info"
246
- msgstr "Informação da empresa"
247
-
248
- #: ../includes/admin-edit-template.php:40
249
- msgid "Update Template"
250
- msgstr "Atualizar Template"
251
-
252
- #: ../includes/admin-posts.php:3 ../modules/rich-text/rich-text.php:14
253
- msgid "Text Editor"
254
- msgstr "Editor de Texto"
255
-
256
- #: ../includes/admin-posts.php:7
257
- msgid "The Page Builder is currently active for this page."
258
- msgstr "O Construtor de Páginas atualmente está ativo para esta página."
259
-
260
- #: ../includes/admin-posts.php:8
261
- msgid "Launch the Page Builder"
262
- msgstr "Iniciar o Construtor de Páginas"
263
-
264
- #: ../includes/admin-settings.php:4 ../includes/global-settings.php:4
265
- msgid "Page Builder Settings"
266
- msgstr "Configurações do Construtor de Páginas"
267
-
268
- #: ../includes/admin-settings.php:8
269
- msgid "License"
270
- msgstr "Licença"
271
-
272
- #: ../includes/admin-settings.php:9 ../includes/global-settings.php:67
273
- msgid "Modules"
274
- msgstr "Módulos"
275
-
276
- #: ../includes/admin-settings.php:10 ../includes/admin-settings.php:58
277
- msgid "Post Types"
278
- msgstr "Tipos de Post"
279
-
280
- #: ../includes/admin-settings.php:11 ../includes/admin-settings.php:99
281
- #: ../includes/admin-settings.php:111
282
- msgid "Uninstall"
283
- msgstr "Desinstalar"
284
-
285
- #: ../includes/admin-settings.php:26
286
- msgid "Enabled Modules"
287
- msgstr "Módulos Ativos"
288
-
289
- #: ../includes/admin-settings.php:27
290
- msgid "Check or uncheck modules below to enable or disable them."
291
- msgstr "Marque ou desmarque os módulos abaixo para ativá-los ou desativá-los."
292
-
293
- #: ../includes/admin-settings.php:59
294
- msgid "Select the post types you would like the builder to work with."
295
- msgstr ""
296
- "Selecione os tipos de posts nos quais você gostaria que o construtor de "
297
- "páginas funcione."
298
-
299
- #: ../includes/admin-settings.php:60
300
- msgid "NOTE: Not all custom post types may be supported."
301
- msgstr ""
302
- "OBSERVAÇÃO: Nem todos os tipos de posts customizados poderão ser suportados."
303
-
304
- #: ../includes/admin-settings.php:101
305
- msgid ""
306
- "Clicking the button below will uninstall the page builder plugin and delete "
307
- "all of its data, including all database tables and meta associated with it. "
308
- "You can uninstall or deactivate the page builder from the plugins page "
309
- "instead if you do not wish to delete the data."
310
- msgstr ""
311
- "Clicar no botão abaixo irá desinstalar o plugin do construtor de páginas e "
312
- "deletará todos os seus dados, incluindo todas as tabelas do banco de dados e "
313
- "metadados associados a ele. Você também pode desinstalar ou desativar o "
314
- "construtor de páginas através da página de plugins se não quiser deletar os "
315
- "dados."
316
-
317
- #: ../includes/admin-settings.php:103 ../includes/admin-settings.php:106
318
- msgid "NOTE:"
319
- msgstr "OBSERVAÇÃO:"
320
-
321
- #: ../includes/admin-settings.php:103
322
- msgid ""
323
- "The builder does not delete the post meta \"_fl_builder_layout_export\" and "
324
- "\"_fl_builder_enabled\" in case you want to reinstall it later. If you do, "
325
- "the builder will rebuild all of its data using those meta values."
326
- msgstr ""
327
- "O construtor não deleta os metadados de post \"_fl_builder_layout_export\" "
328
- "e \"_fl_builder_enabled\", caso de você queira reinstalá-lo mais tarde. Se "
329
- "esse for o caso, o construtor irá reconstruir todos os seus dados usando os "
330
- "valores destes metadados."
331
-
332
- #: ../includes/admin-settings.php:106
333
- msgid "This applies to all sites on the network."
334
- msgstr "Isso se aplica a todos os sites da rede."
335
-
336
- #: ../includes/admin-settings.php:122
337
- msgid ""
338
- "Please type \"uninstall\" in the box below to confirm that you really want "
339
- "to uninstall the page builder and all of its data."
340
- msgstr ""
341
- "Por favor digite \"desinstalar\" na caixa de texto abaixo para confirmar que "
342
- "você realmente quer desinstalar o construtor de páginas e todos os seus "
343
- "dados."
344
-
345
- #: ../includes/admin-templates.php:3
346
- msgid "Page Builder Template"
347
- msgstr "Template do Construtor de Páginas"
348
-
349
- #: ../includes/admin-templates.php:25 ../includes/fields.php:74
350
- #: ../includes/fields.php:165 ../includes/template-selector.php:60
351
- msgid "Edit"
352
- msgstr "Editar"
353
-
354
- #: ../includes/admin-templates.php:27 ../includes/template-selector.php:61
355
- msgid "Delete"
356
- msgstr "Deletar"
357
-
358
- #: ../includes/column-settings.php:4 ../includes/js-config.php:16
359
- msgid "Column Settings"
360
- msgstr "Configurações da Coluna"
361
-
362
- #: ../includes/column-settings.php:7 ../includes/module-settings.php:74
363
- #: ../includes/row-settings.php:9 ../modules/accordion/accordion.php:45
364
- #: ../modules/button/button.php:66 ../modules/callout/callout.php:230
365
- #: ../modules/content-slider/content-slider.php:418 ../modules/cta/cta.php:88
366
- #: ../modules/heading/heading.php:59 ../modules/icon-group/icon-group.php:46
367
- #: ../modules/icon/icon.php:72 ../modules/separator/separator.php:55
368
- msgid "Style"
369
- msgstr "Estilo"
370
-
371
- #: ../includes/column-settings.php:14
372
- msgid "Column Width"
373
- msgstr "Largura da Coluna"
374
-
375
- #: ../includes/column-settings.php:16
376
- #: ../modules/content-slider/content-slider.php:478
377
- #: ../modules/content-slider/content-slider.php:546
378
- msgid "%"
379
- msgstr "%"
380
-
381
- #: ../includes/column-settings.php:23 ../includes/row-settings.php:42
382
- #: ../modules/button/button.php:35 ../modules/callout/callout.php:218
383
- #: ../modules/callout/callout.php:452 ../modules/callout/callout.php:468
384
- #: ../modules/content-slider/content-slider.php:375
385
- #: ../modules/content-slider/content-slider.php:610 ../modules/cta/cta.php:76
386
- #: ../modules/cta/cta.php:202
387
- msgid "Text"
388
- msgstr "Texto"
389
-
390
- #: ../includes/column-settings.php:27 ../includes/column-settings.php:37
391
- #: ../includes/column-settings.php:85 ../includes/row-settings.php:46
392
- #: ../includes/row-settings.php:60 ../includes/row-settings.php:97
393
- #: ../includes/row-settings.php:310 ../modules/callout/callout.php:376
394
- #: ../modules/content-slider/content-slider.php:330
395
- #: ../modules/icon-group/icon-group.php:53 ../modules/icon/icon.php:79
396
- #: ../modules/separator/separator.php:34
397
- msgid "Color"
398
- msgstr "Cor"
399
-
400
- #: ../includes/column-settings.php:33 ../includes/row-settings.php:93
401
- #: ../modules/button/button.php:73 ../modules/callout/callout.php:386
402
- #: ../modules/callout/callout.php:477
403
- #: ../modules/content-slider/content-slider.php:356
404
- #: ../modules/content-slider/content-slider.php:619 ../modules/cta/cta.php:178
405
- #: ../modules/cta/cta.php:230 ../modules/icon-group/icon-group.php:63
406
- #: ../modules/icon/icon.php:89
407
- msgid "Background Color"
408
- msgstr "Cor de Fundo"
409
-
410
- #: ../includes/column-settings.php:42 ../includes/column-settings.php:90
411
- #: ../includes/row-settings.php:102 ../includes/row-settings.php:315
412
- #: ../modules/separator/separator.php:39
413
- msgid "Opacity"
414
- msgstr "Opacidade"
415
-
416
- #: ../includes/column-settings.php:51 ../includes/row-settings.php:276
417
- msgid "Border"
418
- msgstr "Borda"
419
-
420
- #: ../includes/column-settings.php:55 ../includes/row-settings.php:56
421
- #: ../includes/row-settings.php:280 ../modules/callout/callout.php:448
422
- #: ../modules/content-slider/content-slider.php:324
423
- #: ../modules/content-slider/content-slider.php:371
424
- #: ../modules/content-slider/content-slider.php:590
425
- #: ../modules/content-slider/content-slider.php:689
426
- #: ../modules/slideshow/slideshow.php:336
427
- msgid "Type"
428
- msgstr "Tipo"
429
-
430
- #: ../includes/column-settings.php:57 ../includes/row-settings.php:282
431
- msgid ""
432
- "The type of border to use. Double borders must have a width of at least 3px "
433
- "to render properly."
434
- msgstr ""
435
- "O tipo de borda a ser usado. Bordas duplas devem ter uma largura de no "
436
- "mínimo 3px para renderizarem adequadamente."
437
-
438
- #: ../includes/column-settings.php:59 ../includes/module-settings.php:76
439
- #: ../includes/row-settings.php:59 ../includes/row-settings.php:122
440
- #: ../includes/row-settings.php:161 ../includes/row-settings.php:225
441
- #: ../includes/row-settings.php:284 ../modules/callout/callout.php:301
442
- #: ../modules/callout/callout.php:329 ../modules/callout/callout.php:451
443
- #: ../modules/content-slider/content-slider.php:331
444
- #: ../modules/content-slider/content-slider.php:378
445
- #: ../modules/content-slider/content-slider.php:593
446
- #: ../modules/gallery/gallery.php:288 ../modules/photo/photo.php:349
447
- #: ../modules/photo/photo.php:394 ../modules/posts/posts.php:86
448
- #: ../modules/slideshow/slideshow.php:339
449
- #: ../modules/slideshow/slideshow.php:384
450
- #: ../modules/slideshow/slideshow.php:443
451
- msgid "None"
452
- msgstr "Nenhuma"
453
-
454
- #: ../includes/column-settings.php:60 ../includes/row-settings.php:285
455
- #: ../modules/separator/separator.php:58
456
- msgid "Solid"
457
- msgstr "Sólida"
458
-
459
- #: ../includes/column-settings.php:61 ../includes/row-settings.php:286
460
- #: ../modules/separator/separator.php:59
461
- msgid "Dashed"
462
- msgstr "Tracejada"
463
-
464
- #: ../includes/column-settings.php:62 ../includes/row-settings.php:287
465
- #: ../modules/separator/separator.php:60
466
- msgid "Dotted"
467
- msgstr "Pontilhada"
468
-
469
- #: ../includes/column-settings.php:63 ../includes/row-settings.php:288
470
- #: ../modules/separator/separator.php:61
471
- msgid "Double"
472
- msgstr "Dupla"
473
-
474
- #: ../includes/column-settings.php:98 ../includes/row-settings.php:323
475
- msgid "Top Width"
476
- msgstr "Largura Superior"
477
-
478
- #: ../includes/column-settings.php:100 ../includes/column-settings.php:109
479
- #: ../includes/column-settings.php:118 ../includes/column-settings.php:127
480
- #: ../includes/column-settings.php:166 ../includes/column-settings.php:175
481
- #: ../includes/column-settings.php:184 ../includes/column-settings.php:193
482
- #: ../includes/column-settings.php:207 ../includes/column-settings.php:216
483
- #: ../includes/column-settings.php:225 ../includes/column-settings.php:234
484
- #: ../includes/global-settings.php:45 ../includes/global-settings.php:53
485
- #: ../includes/global-settings.php:61 ../includes/global-settings.php:75
486
- #: ../includes/global-settings.php:102 ../includes/module-settings.php:35
487
- #: ../includes/module-settings.php:44 ../includes/module-settings.php:53
488
- #: ../includes/module-settings.php:62 ../includes/row-settings.php:325
489
- #: ../includes/row-settings.php:334 ../includes/row-settings.php:343
490
- #: ../includes/row-settings.php:352 ../includes/row-settings.php:391
491
- #: ../includes/row-settings.php:400 ../includes/row-settings.php:409
492
- #: ../includes/row-settings.php:418 ../includes/row-settings.php:432
493
- #: ../includes/row-settings.php:441 ../includes/row-settings.php:450
494
- #: ../includes/row-settings.php:459 ../modules/button/button.php:134
495
- #: ../modules/button/button.php:152 ../modules/button/button.php:160
496
- #: ../modules/button/button.php:168 ../modules/callout/callout.php:284
497
- #: ../modules/callout/callout.php:414 ../modules/callout/callout.php:528
498
- #: ../modules/callout/callout.php:536 ../modules/callout/callout.php:544
499
- #: ../modules/content-slider/content-slider.php:194
500
- #: ../modules/content-slider/content-slider.php:274
501
- #: ../modules/content-slider/content-slider.php:456
502
- #: ../modules/content-slider/content-slider.php:486
503
- #: ../modules/content-slider/content-slider.php:494
504
- #: ../modules/content-slider/content-slider.php:502
505
- #: ../modules/content-slider/content-slider.php:510
506
- #: ../modules/content-slider/content-slider.php:659
507
- #: ../modules/content-slider/content-slider.php:667
508
- #: ../modules/content-slider/content-slider.php:675 ../modules/cta/cta.php:123
509
- #: ../modules/cta/cta.php:163 ../modules/cta/cta.php:272
510
- #: ../modules/cta/cta.php:280 ../modules/cta/cta.php:288
511
- #: ../modules/gallery/gallery.php:270 ../modules/heading/heading.php:117
512
- #: ../modules/heading/heading.php:168 ../modules/icon-group/icon-group.php:91
513
- #: ../modules/icon-group/icon-group.php:99 ../modules/icon/icon.php:117
514
- #: ../modules/slideshow/slideshow.php:298
515
- #: ../modules/slideshow/slideshow.php:583
516
- #: ../modules/testimonials/testimonials.php:69
517
- msgid "px"
518
- msgstr "px"
519
-
520
- #: ../includes/column-settings.php:107 ../includes/row-settings.php:332
521
- msgid "Bottom Width"
522
- msgstr "Largura Superior"
523
-
524
- #: ../includes/column-settings.php:116 ../includes/row-settings.php:341
525
- msgid "Left Width"
526
- msgstr "Largura da Esquerda"
527
-
528
- #: ../includes/column-settings.php:125 ../includes/row-settings.php:350
529
- msgid "Right Width"
530
- msgstr "Largura da Direita"
531
-
532
- #: ../includes/column-settings.php:137 ../includes/module-settings.php:6
533
- #: ../includes/row-settings.php:362
534
- #: ../modules/content-slider/content-slider.php:266
535
- msgid "Advanced"
536
- msgstr "Avançado"
537
-
538
- #: ../includes/column-settings.php:144 ../includes/module-settings.php:13
539
- #: ../includes/row-settings.php:369
540
- msgid "CSS Class"
541
- msgstr "Classe CSS"
542
-
543
- #: ../includes/column-settings.php:145
544
- msgid ""
545
- "A custom CSS class that will be applied to this column. Spaces only, no dots."
546
- msgstr ""
547
- "Uma classe CSS personalizada que será aplicada a esta coluna. Use somente "
548
- "espaços, sem pontos."
549
-
550
- #: ../includes/column-settings.php:149 ../includes/module-settings.php:18
551
- #: ../includes/row-settings.php:374 ../modules/slideshow/slideshow.php:290
552
- msgid "Display"
553
- msgstr "Mostrar"
554
-
555
- #: ../includes/column-settings.php:151 ../includes/module-settings.php:20
556
- #: ../includes/row-settings.php:376
557
- msgid "Always"
558
- msgstr "Sempre"
559
-
560
- #: ../includes/column-settings.php:152 ../includes/module-settings.php:21
561
- #: ../includes/row-settings.php:377
562
- msgid "Desktop Only"
563
- msgstr "Somente Desktop"
564
-
565
- #: ../includes/column-settings.php:153 ../includes/module-settings.php:22
566
- #: ../includes/row-settings.php:378
567
- msgid "Mobile Only"
568
- msgstr "Somente Dispositivos Móveis"
569
-
570
- #: ../includes/column-settings.php:155
571
- msgid ""
572
- "Choose whether to always show this column, only show it on the desktop view "
573
- "or only show it on the mobile view."
574
- msgstr ""
575
- "Escolha entre mostrar essa coluna sempre, mostrar apenas quando visualizado "
576
- "em dispositivos desktops ou mostrar apenas quando visualizado em "
577
- "dispositivos móveis."
578
-
579
- #: ../includes/column-settings.php:160 ../includes/global-settings.php:41
580
- #: ../includes/global-settings.php:71 ../includes/module-settings.php:29
581
- #: ../includes/row-settings.php:385
582
- msgid "Margins"
583
- msgstr "Margens"
584
-
585
- #: ../includes/column-settings.php:164 ../includes/column-settings.php:205
586
- #: ../includes/module-settings.php:33 ../includes/row-settings.php:389
587
- #: ../includes/row-settings.php:430 ../modules/slideshow/slideshow.php:464
588
- msgid "Top"
589
- msgstr "Superior"
590
-
591
- #: ../includes/column-settings.php:173 ../includes/column-settings.php:214
592
- #: ../includes/module-settings.php:42 ../includes/row-settings.php:398
593
- #: ../includes/row-settings.php:439 ../modules/slideshow/slideshow.php:463
594
- msgid "Bottom"
595
- msgstr "Inferior"
596
-
597
- #: ../includes/column-settings.php:182 ../includes/column-settings.php:223
598
- #: ../includes/module-settings.php:51 ../includes/row-settings.php:407
599
- #: ../includes/row-settings.php:448 ../modules/button/button.php:142
600
- #: ../modules/callout/callout.php:241
601
- #: ../modules/content-slider/content-slider.php:469 ../modules/cta/cta.php:112
602
- #: ../modules/heading/heading.php:79 ../modules/heading/heading.php:143
603
- #: ../modules/icon-group/icon-group.php:107 ../modules/icon/icon.php:125
604
- #: ../modules/menu/menu.php:49 ../modules/photo/photo.php:361
605
- #: ../modules/social-buttons/social-buttons.php:93
606
- msgid "Left"
607
- msgstr "Esquerda"
608
-
609
- #: ../includes/column-settings.php:191 ../includes/column-settings.php:232
610
- #: ../includes/module-settings.php:60 ../includes/row-settings.php:416
611
- #: ../includes/row-settings.php:457 ../modules/button/button.php:143
612
- #: ../modules/callout/callout.php:242
613
- #: ../modules/content-slider/content-slider.php:471 ../modules/cta/cta.php:114
614
- #: ../modules/heading/heading.php:81 ../modules/heading/heading.php:145
615
- #: ../modules/icon-group/icon-group.php:108 ../modules/icon/icon.php:126
616
- #: ../modules/menu/menu.php:51 ../modules/photo/photo.php:363
617
- #: ../modules/social-buttons/social-buttons.php:94
618
- msgid "Right"
619
- msgstr "Direita"
620
-
621
- #: ../includes/column-settings.php:201 ../includes/global-settings.php:49
622
- #: ../includes/row-settings.php:426 ../modules/button/button.php:156
623
- #: ../modules/callout/callout.php:532
624
- #: ../modules/content-slider/content-slider.php:663 ../modules/cta/cta.php:276
625
- msgid "Padding"
626
- msgstr ""
627
-
628
- #: ../includes/fields.php:65 ../includes/js-config.php:48
629
- msgid "Select Photo"
630
- msgstr "Selecionar Foto"
631
-
632
- #: ../includes/fields.php:75 ../includes/fields.php:137
633
- msgid "Replace"
634
- msgstr "Substituir"
635
-
636
- #: ../includes/fields.php:92
637
- msgid " Photo Selected"
638
- msgstr "Foto Selecionada"
639
-
640
- #: ../includes/fields.php:95
641
- msgid " Photos Selected"
642
- msgstr "Fotos Selecionadas"
643
-
644
- #: ../includes/fields.php:101
645
- msgid "Create Gallery"
646
- msgstr "Criar Galeria"
647
-
648
- #: ../includes/fields.php:102
649
- msgid "Edit Gallery"
650
- msgstr "Editar Galeria"
651
-
652
- #: ../includes/fields.php:103
653
- msgid "Add Photos"
654
- msgstr "Adicionar Fotos"
655
-
656
- #: ../includes/fields.php:111 ../includes/js-config.php:50
657
- msgid "Select Video"
658
- msgstr "Selecionar Vídeo"
659
-
660
- #: ../includes/fields.php:125
661
- msgid "Replace Video"
662
- msgstr "Substituir Vídeo"
663
-
664
- #: ../includes/fields.php:134 ../includes/icon-selector.php:23
665
- msgid "Select Icon"
666
- msgstr "Selecionar Ícone"
667
-
668
- #: ../includes/fields.php:139 ../includes/js-config.php:43
669
- msgid "Remove"
670
- msgstr "Remover"
671
-
672
- #: ../includes/fields.php:273
673
- msgid "All Categories"
674
- msgstr "Todas as Categorias"
675
-
676
- #: ../includes/global-settings.php:7 ../includes/template-settings.php:7
677
- #: ../includes/user-template-settings.php:7
678
- #: ../modules/accordion/accordion.php:86 ../modules/button/button.php:28
679
- #: ../modules/callout/callout.php:206
680
- #: ../modules/contact-form/contact-form.php:57
681
- #: ../modules/content-slider/content-slider.php:183
682
- #: ../modules/content-slider/content-slider.php:307 ../modules/cta/cta.php:64
683
- #: ../modules/gallery/gallery.php:209 ../modules/heading/heading.php:26
684
- #: ../modules/html/html.php:26 ../modules/icon-group/icon-group.php:124
685
- #: ../modules/icon/icon.php:29 ../modules/map/map.php:26
686
- #: ../modules/menu/menu.php:27 ../modules/photo/photo.php:313
687
- #: ../modules/posts/posts.php:27 ../modules/rich-text/rich-text.php:26
688
- #: ../modules/separator/separator.php:27 ../modules/sidebar/sidebar.php:27
689
- #: ../modules/slideshow/slideshow.php:256
690
- #: ../modules/social-buttons/social-buttons.php:62
691
- #: ../modules/testimonials/testimonials.php:30
692
- #: ../modules/testimonials/testimonials.php:191 ../modules/video/video.php:75
693
- #: ../modules/widget/widget.php:27 ../modules/woocommerce/woocommerce.php:50
694
- msgid "General"
695
- msgstr "Geral"
696
-
697
- #: ../includes/global-settings.php:8
698
- msgid ""
699
- "These settings apply to all posts and pages where the builder is active."
700
- msgstr ""
701
- "Essas configurações aplicam-se a todos os posts e páginas onde o construtor "
702
- "está ativo."
703
-
704
- #: ../includes/global-settings.php:11
705
- msgid "Default Page Heading"
706
- msgstr "Título de Página Padrão"
707
-
708
- #: ../includes/global-settings.php:15 ../modules/posts/posts.php:63
709
- #: ../modules/posts/posts.php:103 ../modules/posts/posts.php:122
710
- #: ../modules/posts/posts.php:131
711
- msgid "Show"
712
- msgstr "Mostrar"
713
-
714
- #: ../includes/global-settings.php:26
715
- msgid ""
716
- "Choosing no will hide the default theme heading for the \"Page\" post type. "
717
- "You will also be required to enter some basic CSS for this to work if you "
718
- "choose no."
719
- msgstr ""
720
- "Escolher a opção \"não\" irá esconder o título padrão do tema para o tipo de "
721
- "post \"Página\". Você também deverá inserir um CSS básico para que isto "
722
- "funcione se escolher \"não\"."
723
-
724
- #: ../includes/global-settings.php:30
725
- msgid "CSS Selector"
726
- msgstr "Seletor CSS"
727
-
728
- #: ../includes/global-settings.php:32
729
- msgid "Enter a CSS selector for the default page heading to hide it."
730
- msgstr "Insira um seletor CSS para o título padrão da página para escondê-lo."
731
-
732
- #: ../includes/global-settings.php:37
733
- msgid "Rows"
734
- msgstr "Linhas"
735
-
736
- #: ../includes/global-settings.php:57
737
- msgid "Max Width"
738
- msgstr "Largura Máxima"
739
-
740
- #: ../includes/global-settings.php:62
741
- #, fuzzy
742
- msgid ""
743
- "All rows will default to this width. You can override this and make a row "
744
- "full width in the settings for each row."
745
- msgstr ""
746
- "Todas as linhas por padrão terão esta largura. Você pode substituir este "
747
- "padrão e fazer com que uma linha tenha largura cheia nas configurações de "
748
- "cada linha."
749
-
750
- #: ../includes/global-settings.php:80
751
- msgid "Mobile Layout"
752
- msgstr "Layout Mobile"
753
-
754
- #: ../includes/global-settings.php:84
755
- msgid "Enabled"
756
- msgstr "Ativado"
757
-
758
- #: ../includes/global-settings.php:98
759
- msgid "Breakpoint"
760
- msgstr "Ponto de quebra (breakpoint)"
761
-
762
- #: ../includes/icon-selector.php:25
763
- msgid "Filter: "
764
- msgstr "Filtro: "
765
-
766
- #: ../includes/icon-selector.php:48 ../includes/js-config.php:12
767
- #: ../includes/settings.php:110 ../includes/template-selector.php:76
768
- msgid "Cancel"
769
- msgstr "Cancelar"
770
-
771
- #: ../includes/js-config.php:11
772
- msgid "What would you like to do?"
773
- msgstr "O que você gostaria de fazer?"
774
-
775
- #: ../includes/js-config.php:13
776
- msgid "Change Template"
777
- msgstr "Mudar Template"
778
-
779
- #: ../includes/js-config.php:14
780
- msgid ""
781
- "Warning! Changing the template will replace your existing layout. Do you "
782
- "really want to do this?"
783
- msgstr ""
784
- "Aviso! Mudar o template irá substituir o layout já existente. Você realmente "
785
- "deseja fazer isso?"
786
-
787
- #: ../includes/js-config.php:15
788
- msgid "Column"
789
- msgstr "Coluna"
790
-
791
- #: ../includes/js-config.php:17
792
- msgid ""
793
- "Please select either a background layout or content layout before submitting."
794
- msgstr ""
795
- "Por favor selecione ou um layout de fundo ou um layout de conteúdo antes de "
796
- "enviar."
797
-
798
- #: ../includes/js-config.php:18
799
- msgid "Do you really want to delete this item?"
800
- msgstr "Você realmente deseja remover este item?"
801
-
802
- #: ../includes/js-config.php:19
803
- msgid ""
804
- "Do you really want to delete this module? All content data will be "
805
- "permanently deleted."
806
- msgstr ""
807
- "Você realmente deseja remover este módulo? Todos os dados deste conteúdo "
808
- "serão permanentemente removidos."
809
-
810
- #: ../includes/js-config.php:20
811
- msgid ""
812
- "Do you really want to delete this row? All content data will be permanently "
813
- "deleted."
814
- msgstr ""
815
- "Você realmente deseja remover esta linha? Todos os dados deste conteúdo "
816
- "serão permanentemente removidos."
817
-
818
- #: ../includes/js-config.php:21
819
- msgid "Do you really want to delete this template?"
820
- msgstr "Você realmente deseja remover este template?"
821
-
822
- #: ../includes/js-config.php:22
823
- msgid "Discard Draft"
824
- msgstr "Descartar Rascunho"
825
-
826
- #: ../includes/js-config.php:23
827
- msgid ""
828
- "Do you really want to discard this draft? All of your changes that are not "
829
- "published will be lost."
830
- msgstr ""
831
- "Você realmente deseja descartar este rascunho? Todas as suas alterações que "
832
- "não foram publicadas serão perdidas."
833
-
834
- #: ../includes/js-config.php:24
835
- msgid "Save Draft"
836
- msgstr "Salvar Rascunho"
837
-
838
- #: ../includes/js-config.php:25
839
- msgid "Duplicate"
840
- msgstr "Duplicar"
841
-
842
- #: ../includes/js-config.php:26
843
- msgid "Duplicate This Page"
844
- msgstr "Duplicar Esta Página"
845
-
846
- #: ../includes/js-config.php:27
847
- msgid "Duplicate This Template"
848
- msgstr "Duplicar Este Template"
849
-
850
- #: ../includes/js-config.php:28
851
- msgid "Edit Global Settings"
852
- msgstr "Editar Configurações Globais"
853
-
854
- #: ../includes/js-config.php:29
855
- msgid "Drop a row layout or module to get started!"
856
- msgstr "Arraste e solte um layout de linha ou módulo para começar!"
857
-
858
- #: ../includes/js-config.php:31
859
- msgid "Insert"
860
- msgstr "Inserir"
861
-
862
- #: ../includes/js-config.php:33
863
- msgid "Manage Templates"
864
- msgstr "Gerenciar Templates"
865
-
866
- #: ../includes/js-config.php:35
867
- msgid "Module"
868
- msgstr "Módulo"
869
-
870
- #: ../includes/js-config.php:36
871
- msgid "Move"
872
- msgstr "Mover"
873
-
874
- #: ../includes/js-config.php:37
875
- msgid "New Column"
876
- msgstr "Nova Coluna"
877
-
878
- #: ../includes/js-config.php:38
879
- msgid "New Row"
880
- msgstr "Nova Linha"
881
-
882
- #: ../includes/js-config.php:39
883
- msgid "Ok"
884
- msgstr "Ok"
885
-
886
- #: ../includes/js-config.php:40
887
- msgid "Photo Selected"
888
- msgstr "Foto Selecionada"
889
-
890
- #: ../includes/js-config.php:41
891
- msgid "Photos Selected"
892
- msgstr "Fotos Selecionadas"
893
-
894
- #: ../includes/js-config.php:42
895
- msgid "Publish Changes"
896
- msgstr "Publicar Alterações"
897
-
898
- #: ../includes/js-config.php:44
899
- msgid "Row"
900
- msgstr "Linha"
901
-
902
- #: ../includes/js-config.php:45 ../includes/row-settings.php:6
903
- msgid "Row Settings"
904
- msgstr "Configurações da Linha"
905
-
906
- #: ../includes/js-config.php:46
907
- msgid "Save Core Template"
908
- msgstr "Salvar Template Principal"
909
-
910
- #: ../includes/js-config.php:47 ../includes/user-template-settings.php:4
911
- msgid "Save Template"
912
- msgstr "Salvar Template"
913
-
914
- #: ../includes/js-config.php:49
915
- msgid "Select Photos"
916
- msgstr "Seleciontar Fotos"
917
-
918
- #: ../includes/js-config.php:51
919
- msgid "Settings"
920
- msgstr "Configurações"
921
-
922
- #: ../includes/js-config.php:52
923
- msgid "Append New Layout"
924
- msgstr "Anexar Novo Layout"
925
-
926
- #: ../includes/js-config.php:53
927
- msgid "Replace Existing Layout"
928
- msgstr "Substituir Layout Existente"
929
-
930
- #: ../includes/js-config.php:54
931
- msgid "Template Saved!"
932
- msgstr "Template Salvo!"
933
-
934
- #: ../includes/js-config.php:56
935
- msgid ""
936
- "The settings you are currently editing will not be saved if you navigate "
937
- "away from this page."
938
- msgstr ""
939
- "As configurações que você está editando atualmente não serão salvas se você "
940
- "sair desta página."
941
-
942
- #: ../includes/module-settings.php:14
943
- msgid ""
944
- "A custom CSS class that will be applied to this module. Spaces only, no dots."
945
- msgstr ""
946
- "Uma classe CSS personalizada que será aplicada a este módulo. Use somente "
947
- "espaços, sem pontos."
948
-
949
- #: ../includes/module-settings.php:24
950
- msgid ""
951
- "Choose whether to always show this module, only show it on the desktop view "
952
- "or only show it on the mobile view."
953
- msgstr ""
954
- "Escolha entre mostrar este módulo sempre, mostrar apenas em desktops ou "
955
- "mostrar apenas em dispositivos móveis."
956
-
957
- #: ../includes/module-settings.php:70
958
- msgid "Animation"
959
- msgstr "Animação"
960
-
961
- #: ../includes/module-settings.php:77
962
- msgid "Fade In"
963
- msgstr ""
964
-
965
- #: ../includes/module-settings.php:78
966
- msgid "Slide Left"
967
- msgstr "Deslizar pela Esquerda"
968
-
969
- #: ../includes/module-settings.php:79
970
- msgid "Slide Right"
971
- msgstr "Deslizar pela Direita"
972
-
973
- #: ../includes/module-settings.php:80
974
- msgid "Slide Up"
975
- msgstr "Deslizar por Cima"
976
-
977
- #: ../includes/module-settings.php:81
978
- msgid "Slide Down"
979
- msgstr "Deslizar por Baixo"
980
-
981
- #: ../includes/module-settings.php:86
982
- #: ../modules/content-slider/content-slider.php:222
983
- #: ../modules/testimonials/testimonials.php:87
984
- msgid "Delay"
985
- msgstr "Atraso"
986
-
987
- #: ../includes/module-settings.php:91
988
- msgid "The amount of time in seconds before this animation starts."
989
- msgstr "A quantidade de tempo em segundos antes de iniciar esta animação."
990
-
991
- #: ../includes/row-settings.php:16 ../modules/button/button.php:111
992
- #: ../modules/content-slider/content-slider.php:476
993
- msgid "Width"
994
- msgstr "Largura"
995
-
996
- #: ../includes/row-settings.php:19 ../includes/row-settings.php:34
997
- #: ../includes/row-settings.php:152
998
- msgid "Fixed"
999
- msgstr "Fixa"
1000
-
1001
- #: ../includes/row-settings.php:20 ../includes/row-settings.php:35
1002
- #: ../modules/button/button.php:115 ../modules/callout/callout.php:519
1003
- msgid "Full Width"
1004
- msgstr "Largura Completa"
1005
-
1006
- #: ../includes/row-settings.php:27
1007
- msgid ""
1008
- "Full width rows span the width of the page from edge to edge. Fixed rows are "
1009
- "no wider than the Row Max Width set in the Global Settings."
1010
- msgstr ""
1011
- "Linhas com largura completa abrangem a largura da página de ponta a ponta. "
1012
- "Linhas fixas não são mais largas do que a Largura Máxima de Linha definida "
1013
- "nas Configurações Globais."
1014
-
1015
- #: ../includes/row-settings.php:31
1016
- msgid "Content Width"
1017
- msgstr "Largura do Conteúdo"
1018
-
1019
- #: ../includes/row-settings.php:37
1020
- msgid ""
1021
- "Full width content spans the width of the page from edge to edge. Fixed "
1022
- "content is no wider than the Row Max Width set in the Global Settings."
1023
- msgstr ""
1024
- "Conteúdos com largura completa abrangem a largura da página de ponta a "
1025
- "ponta. Conteúdos fixos não são mais largos do que a Largura Máxima de Linha "
1026
- "definida nas Configurações Globais."
1027
-
1028
- #: ../includes/row-settings.php:52
1029
- msgid "Background"
1030
- msgstr "Fundo"
1031
-
1032
- #: ../includes/row-settings.php:61 ../includes/row-settings.php:115
1033
- #: ../includes/row-settings.php:261 ../modules/callout/callout.php:302
1034
- #: ../modules/callout/callout.php:318 ../modules/callout/callout.php:322
1035
- #: ../modules/content-slider/content-slider.php:328
1036
- #: ../modules/content-slider/content-slider.php:397
1037
- #: ../modules/content-slider/content-slider.php:705
1038
- #: ../modules/photo/photo.php:25 ../modules/photo/photo.php:337
1039
- msgid "Photo"
1040
- msgstr "Imagem"
1041
-
1042
- #: ../includes/row-settings.php:62 ../includes/row-settings.php:174
1043
- #: ../modules/content-slider/content-slider.php:329
1044
- #: ../modules/video/video.php:19
1045
- msgid "Video"
1046
- msgstr "Vídeo"
1047
-
1048
- #: ../includes/row-settings.php:64 ../modules/slideshow/slideshow.php:14
1049
- msgid "Slideshow"
1050
- msgstr "Slideshow"
1051
-
1052
- #: ../includes/row-settings.php:68
1053
- msgid "Parallax"
1054
- msgstr "Parallax"
1055
-
1056
- #: ../includes/row-settings.php:111
1057
- #: ../modules/content-slider/content-slider.php:352
1058
- msgid "Background Photo"
1059
- msgstr "Imagem de Fundo"
1060
-
1061
- #: ../includes/row-settings.php:119
1062
- msgid "Repeat"
1063
- msgstr "Repetir"
1064
-
1065
- #: ../includes/row-settings.php:123
1066
- msgid "Tile"
1067
- msgstr "Ladrilho"
1068
-
1069
- #: ../includes/row-settings.php:124 ../modules/menu/menu.php:40
1070
- msgid "Horizontal"
1071
- msgstr "Horizontal"
1072
-
1073
- #: ../includes/row-settings.php:125 ../modules/menu/menu.php:41
1074
- msgid "Vertical"
1075
- msgstr "Vertical"
1076
-
1077
- #: ../includes/row-settings.php:127
1078
- msgid ""
1079
- "Repeat applies to how the image should display in the row background. "
1080
- "Choosing none will display the image as uploaded. Tile will repeat the image "
1081
- "as many times as needed to fill the row horizontally and vertically. You can "
1082
- "also specify the image to only repeat horizontally or vertically."
1083
- msgstr ""
1084
- "Repetir aplica-se a como a imagem deve ser exibida no fundo da respectiva "
1085
- "linha. Selecionar \"nenhum\" irá exibir a imagem da maneira como foi "
1086
- "enviada. Ladrilho irá repetir a imagem quantas vezes for necessário para "
1087
- "preencher a linha horizontalmente e verticalmente. Você pode também "
1088
- "especificar se a imagem de repetir apenas horizontalmente ou verticalmente."
1089
-
1090
- #: ../includes/row-settings.php:134
1091
- msgid "Left Top"
1092
- msgstr "Esquerda Superior"
1093
-
1094
- #: ../includes/row-settings.php:135
1095
- msgid "Left Center"
1096
- msgstr "Esquerda Central"
1097
-
1098
- #: ../includes/row-settings.php:136
1099
- msgid "Left Bottom"
1100
- msgstr "Esquerda Inferior"
1101
-
1102
- #: ../includes/row-settings.php:137
1103
- msgid "Right Top"
1104
- msgstr "Direita Superior"
1105
-
1106
- #: ../includes/row-settings.php:138
1107
- msgid "Right Center"
1108
- msgstr "Direita Central"
1109
-
1110
- #: ../includes/row-settings.php:139
1111
- msgid "Right Bottom"
1112
- msgstr "Direita Inferior"
1113
-
1114
- #: ../includes/row-settings.php:140
1115
- msgid "Center Top"
1116
- msgstr "Centro Superior"
1117
-
1118
- #: ../includes/row-settings.php:141
1119
- msgid "Center Center"
1120
- msgstr "Centro Centro"
1121
-
1122
- #: ../includes/row-settings.php:142
1123
- msgid "Center Bottom"
1124
- msgstr "Centro Inferior"
1125
-
1126
- #: ../includes/row-settings.php:144
1127
- msgid "Position will tell the image where it should sit in the row background."
1128
- msgstr ""
1129
- "Posição irá dizer à imagem onde ela deve se posicionar no fundo da linha."
1130
-
1131
- #: ../includes/row-settings.php:148
1132
- msgid "Attachment"
1133
- msgstr "Anexo"
1134
-
1135
- #: ../includes/row-settings.php:151
1136
- msgid "Scroll"
1137
- msgstr "Rolagem"
1138
-
1139
- #: ../includes/row-settings.php:154
1140
- msgid ""
1141
- "Attachment will specify how the image reacts when scrolling a page. When "
1142
- "scrolling is selected, the image will scroll with page scrolling. This is "
1143
- "the default setting. Fixed will allow the image to scroll within the row "
1144
- "background if fill is selected in the scale setting."
1145
- msgstr ""
1146
- "Anexo irá especificar como a imagem deverá reagir quando houver uma rolagem "
1147
- "de página. Quando rolagem estiver selecionado, a imagem irá acompanhar o "
1148
- "rolamento da página. Esta é a configuração padrão. Fixo irá permitir que a "
1149
- "imagem role juntamente com o fundo da linha se a opção preencher estiver "
1150
- "selecionada nas configurações de escala."
1151
-
1152
- #: ../includes/row-settings.php:158
1153
- msgid "Scale"
1154
- msgstr "Escala"
1155
-
1156
- #: ../includes/row-settings.php:162
1157
- msgid "Fit"
1158
- msgstr "Ajustar"
1159
-
1160
- #: ../includes/row-settings.php:163
1161
- msgid "Fill"
1162
- msgstr "Preencher"
1163
-
1164
- #: ../includes/row-settings.php:165
1165
- msgid ""
1166
- "Scale applies to how the image should display in the row background. You can "
1167
- "select either fill or fit to the row background."
1168
- msgstr ""
1169
- "Escala se aplica a como a imagem deve ser exibida no fundo da linha. Você "
1170
- "pode selecionar entre ajustar ou preencher o fundo da linha."
1171
-
1172
- #: ../includes/row-settings.php:170
1173
- msgid "Background Video"
1174
- msgstr "Vídeo de Fundo"
1175
-
1176
- #: ../includes/row-settings.php:175
1177
- msgid ""
1178
- "An HTML5 video to use as the background of this row. Supported types are "
1179
- "MP4, WebM and Ogg."
1180
- msgstr ""
1181
- "Um vídeo em HTML5 para usar como fundo desta linha. Os formatos MP4, webM "
1182
- "and Ogg são suportados."
1183
-
1184
- #: ../includes/row-settings.php:179
1185
- msgid "Fallback Photo"
1186
- msgstr "Foto Alternativa"
1187
-
1188
- #: ../includes/row-settings.php:180
1189
- msgid "A photo that will be displayed if the video fails to load."
1190
- msgstr ""
1191
- "Uma foto que irá ser exibida caso haja uma falha de carregamento do vídeo."
1192
-
1193
- #: ../includes/row-settings.php:185
1194
- msgid "Background Slideshow"
1195
- msgstr "Slideshow de Fundo"
1196
-
1197
- #: ../includes/row-settings.php:189 ../modules/gallery/gallery.php:230
1198
- #: ../modules/slideshow/slideshow.php:263
1199
- msgid "Source"
1200
- msgstr "Fonte"
1201
-
1202
- #: ../includes/row-settings.php:192 ../modules/gallery/gallery.php:233
1203
- #: ../modules/photo/photo.php:323 ../modules/slideshow/slideshow.php:266
1204
- #: ../modules/video/video.php:85
1205
- msgid "Media Library"
1206
- msgstr "Biblioteca de Mídia"
1207
-
1208
- #: ../includes/row-settings.php:193 ../modules/gallery/gallery.php:234
1209
- #: ../modules/slideshow/slideshow.php:267
1210
- msgid "SmugMug"
1211
- msgstr ""
1212
-
1213
- #: ../includes/row-settings.php:195 ../modules/gallery/gallery.php:236
1214
- #: ../modules/slideshow/slideshow.php:269
1215
- msgid ""
1216
- "Pull images from the WordPress media library or a gallery on your SmugMug "
1217
- "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
1218
- "accessed by using the get a link function in your SmugMug gallery."
1219
- msgstr ""
1220
- "Puxa imagens da blibioteca de mídia do WordPress ou uma galleria de imagens "
1221
- "em seu site no SmugMug, inserindo a URl do feed RSS do SmugMug. a URL do "
1222
- "feed RSS pode ser acessada usando a função \"obter um link\" na sua galeria "
1223
- "de imagens no SmugMug."
1224
-
1225
- #: ../includes/row-settings.php:207 ../modules/gallery/gallery.php:248
1226
- #: ../modules/slideshow/slideshow.php:281
1227
- msgid "Photos"
1228
- msgstr "Fotos"
1229
-
1230
- #: ../includes/row-settings.php:211 ../modules/gallery/gallery.php:252
1231
- #: ../modules/slideshow/slideshow.php:285
1232
- msgid "Feed URL"
1233
- msgstr "URL do Feed"
1234
-
1235
- #: ../includes/row-settings.php:215 ../includes/row-settings.php:265
1236
- #: ../modules/slideshow/slideshow.php:374
1237
- msgid "Speed"
1238
- msgstr "Velocidade"
1239
-
1240
- #: ../includes/row-settings.php:218 ../includes/row-settings.php:243
1241
- #: ../modules/slideshow/slideshow.php:377
1242
- #: ../modules/slideshow/slideshow.php:402
1243
- #: ../modules/slideshow/slideshow.php:570
1244
- msgid "seconds"
1245
- msgstr "segundos"
1246
-
1247
- #: ../includes/row-settings.php:222
1248
- #: ../modules/content-slider/content-slider.php:230
1249
- #: ../modules/slideshow/slideshow.php:381
1250
- #: ../modules/testimonials/testimonials.php:95
1251
- msgid "Transition"
1252
- msgstr "Transição"
1253
-
1254
- #: ../includes/row-settings.php:226 ../modules/slideshow/slideshow.php:385
1255
- msgid "Fade"
1256
- msgstr ""
1257
-
1258
- #: ../includes/row-settings.php:227 ../modules/slideshow/slideshow.php:386
1259
- msgid "Ken Burns"
1260
- msgstr ""
1261
-
1262
- #: ../includes/row-settings.php:228 ../modules/slideshow/slideshow.php:387
1263
- msgid "Slide Horizontal"
1264
- msgstr "Deslizar (Horizontal)"
1265
-
1266
- #: ../includes/row-settings.php:229 ../modules/slideshow/slideshow.php:388
1267
- msgid "Slide Vertical"
1268
- msgstr "Deslizar (Vertical)"
1269
-
1270
- #: ../includes/row-settings.php:230 ../modules/slideshow/slideshow.php:389
1271
- #, fuzzy
1272
- msgid "Blinds"
1273
- msgstr "Persianas"
1274
-
1275
- #: ../includes/row-settings.php:231 ../modules/slideshow/slideshow.php:390
1276
- msgid "Bars"
1277
- msgstr "Barras"
1278
-
1279
- #: ../includes/row-settings.php:232 ../modules/slideshow/slideshow.php:391
1280
- msgid "Random Bars"
1281
- msgstr "Barras Aleatórias"
1282
-
1283
- #: ../includes/row-settings.php:233 ../modules/slideshow/slideshow.php:392
1284
- msgid "Boxes"
1285
- msgstr "Caixas"
1286
-
1287
- #: ../includes/row-settings.php:234 ../modules/slideshow/slideshow.php:393
1288
- msgid "Random Boxes"
1289
- msgstr "Caixas Aleatórias"
1290
-
1291
- #: ../includes/row-settings.php:235 ../modules/slideshow/slideshow.php:394
1292
- msgid "Boxes Grow"
1293
- msgstr "Caixas (Crescer)"
1294
-
1295
- #: ../includes/row-settings.php:240
1296
- #: ../modules/content-slider/content-slider.php:239
1297
- #: ../modules/slideshow/slideshow.php:399
1298
- #: ../modules/testimonials/testimonials.php:104
1299
- msgid "Transition Speed"
1300
- msgstr "Velocidade da Transição"
1301
-
1302
- #: ../includes/row-settings.php:247 ../modules/slideshow/slideshow.php:406
1303
- msgid "Randomize Photos"
1304
- msgstr "Randomizar Fotos"
1305
-
1306
- #: ../includes/row-settings.php:257
1307
- msgid "Background Parallax"
1308
- msgstr "Parallax de Fundo"
1309
-
1310
- #: ../includes/row-settings.php:268
1311
- msgid "Fast"
1312
- msgstr "Rápido"
1313
-
1314
- #: ../includes/row-settings.php:270
1315
- msgid "Slow"
1316
- msgstr "Devagar"
1317
-
1318
- #: ../includes/row-settings.php:370
1319
- msgid "Add a custom CSS selector here to apply additional styling to this row."
1320
- msgstr ""
1321
- "Adicione um seletor CSS personalizado aqui para aplicar estilos adicionais a "
1322
- "esta esta linha."
1323
-
1324
- #: ../includes/row-settings.php:380
1325
- msgid ""
1326
- "Choose whether to always show this row, only show it on the desktop view or "
1327
- "only show it on the mobile view."
1328
- msgstr ""
1329
- "Escolha entre mostrar essa linha sempre, mostrar apenas em desktops ou "
1330
- "mostrar apenas em dispositivos móveis."
1331
-
1332
- #: ../includes/settings.php:79
1333
- msgid "Add"
1334
- msgstr "Adicionar"
1335
-
1336
- #: ../includes/settings.php:106
1337
- msgid "Save &amp; Finish"
1338
- msgstr "Salvar &amp; Finalizar"
1339
-
1340
- #: ../includes/settings.php:108
1341
- msgid "Save &amp; Preview"
1342
- msgstr "Salvar &amp; Visualizar"
1343
-
1344
- #: ../includes/template-selector.php:3
1345
- msgid "Layout Templates"
1346
- msgstr "Templates de Layout"
1347
-
1348
- #: ../includes/template-selector.php:6
1349
- msgid "Home Pages"
1350
- msgstr "Páginas Iniciais"
1351
-
1352
- #: ../includes/template-selector.php:7
1353
- msgid "Content Pages"
1354
- msgstr "Páginas de Conteúdo"
1355
-
1356
- #: ../includes/template-selector.php:8
1357
- msgid "Your Templates"
1358
- msgstr "Seus Templates"
1359
-
1360
- #: ../includes/template-selector.php:49
1361
- msgid ""
1362
- "You haven't saved any templates yet! To do so, create a layout and save it "
1363
- "as a template under Tools > Save Template."
1364
- msgstr ""
1365
- "Você ainda não salvou nenhum template! Para fazer isso, crie um layout e "
1366
- "salve-o como um template em Ferramentas > Salvar Template."
1367
-
1368
- #: ../includes/template-selector.php:54
1369
- msgid "Blank"
1370
- msgstr "Em Branco"
1371
-
1372
- #: ../includes/template-settings.php:4
1373
- msgid "Template Settings"
1374
- msgstr "Configurações de Template"
1375
-
1376
- #: ../includes/template-settings.php:18
1377
- msgid "Image Filename"
1378
- msgstr "Nome do Arquivo da Imagem"
1379
-
1380
- #: ../includes/template-settings.php:19
1381
- msgid ""
1382
- "The filename of the image such as thumb.jpg that resides in the \"img/"
1383
- "templates/\" directory."
1384
- msgstr ""
1385
- "O nome do arquivo da imagem (como thumb.jpg) que se encontra no diretório "
1386
- "\"img/templates/\"."
1387
-
1388
- #: ../includes/ui.php:5
1389
- msgid "Done"
1390
- msgstr "Concluído"
1391
-
1392
- #: ../includes/ui.php:6
1393
- msgid "Tools"
1394
- msgstr "Ferramentas"
1395
-
1396
- #: ../includes/ui.php:8
1397
- msgid "Templates"
1398
- msgstr ""
1399
-
1400
- #: ../includes/ui.php:10
1401
- msgid "Add Content"
1402
- msgstr "Adicionar Conteúdo"
1403
-
1404
- #: ../includes/ui.php:25
1405
- msgid "Row Layouts"
1406
- msgstr "Layouts de Linha"
1407
-
1408
- #: ../includes/ui.php:29
1409
- msgid "1 Column"
1410
- msgstr "1 Coluna"
1411
-
1412
- #: ../includes/ui.php:30
1413
- msgid "2 Columns"
1414
- msgstr "2 Colunas"
1415
-
1416
- #: ../includes/ui.php:31
1417
- msgid "3 Columns"
1418
- msgstr "3 Colunas"
1419
-
1420
- #: ../includes/ui.php:32
1421
- msgid "4 Columns"
1422
- msgstr "4 Colunas"
1423
-
1424
- #: ../includes/ui.php:33
1425
- msgid "5 Columns"
1426
- msgstr "5 Colunas"
1427
-
1428
- #: ../includes/ui.php:34
1429
- msgid "6 Columns"
1430
- msgstr "6 Colunas"
1431
-
1432
- #: ../includes/ui.php:35
1433
- msgid "Left Sidebar"
1434
- msgstr "Barra Lateral na Esquerda"
1435
-
1436
- #: ../includes/ui.php:36
1437
- msgid "Right Sidebar"
1438
- msgstr "Barra Lateral na Direita"
1439
-
1440
- #: ../includes/ui.php:37
1441
- msgid "Left &amp; Right Sidebar"
1442
- msgstr "Barra Lateral na Esquerda &amp; Direita"
1443
-
1444
- #: ../includes/ui.php:46 ../modules/widget/widget.php:16
1445
- msgid "WordPress Widgets"
1446
- msgstr "Widgets do WordPress"
1447
-
1448
- #: ../includes/ui.php:64
1449
- msgid "Purchase the Page Builder"
1450
- msgstr "Adquira o Construtor de Páginas"
1451
-
1452
- #: ../includes/updater/includes/form.php:4
1453
- msgid "FastLine Themes Subscription"
1454
- msgstr "Assinatura da FastLine Themes"
1455
-
1456
- #: ../includes/updater/includes/form.php:7
1457
- msgid "Active!"
1458
- msgstr "Ativa!"
1459
-
1460
- #: ../includes/updater/includes/form.php:9
1461
- msgid "Not Active!"
1462
- msgstr "Inativa!"
1463
-
1464
- #: ../includes/updater/includes/form.php:15
1465
- msgid "Email address saved!"
1466
- msgstr "Endereço de Email salvo!"
1467
-
1468
- #: ../includes/updater/includes/form.php:20
1469
- msgid ""
1470
- "Enter the email address you used to signup for <a href=\"http://themes."
1471
- "fastlinemedia.com\" target=\"_blank\">FastLine Themes</a> to enable remote "
1472
- "updates."
1473
- msgstr ""
1474
- "Insira o endereço de e-mail que você utilizou para se cadastrar na <a href="
1475
- "\"http://themes.fastlinemedia.com\" target=\"_blank\">FastLine Themes</a> "
1476
- "para habilitar atualizações remotas."
1477
-
1478
- #: ../includes/updater/includes/form.php:24
1479
- msgid "email@yourwebsite.com"
1480
- msgstr "email@seusite.com"
1481
-
1482
- #: ../includes/updater/includes/form.php:27
1483
- msgid "Save Subscription Settings"
1484
- msgstr "Salvar Configurações de Assinatura"
1485
-
1486
- #: ../includes/user-template-settings.php:8
1487
- msgid ""
1488
- "Save the current layout as a template that can be reused under Tools > "
1489
- "Manage Templates."
1490
- msgstr ""
1491
- "Salve o layout atual como um template, que poderá ser reutilizado, em "
1492
- "Ferramentas > Gerenciar Templates."
1493
-
1494
- #: ../modules/accordion/accordion.php:14
1495
- msgid "Accordion"
1496
- msgstr "Sanfona"
1497
-
1498
- #: ../modules/accordion/accordion.php:15
1499
- msgid "Display a collapsible accordion of items."
1500
- msgstr "Exibe uma \"sanfona\" retrátil de itens."
1501
-
1502
- #: ../modules/accordion/accordion.php:16 ../modules/button/button.php:16
1503
- #: ../modules/callout/callout.php:16
1504
- #: ../modules/contact-form/contact-form.php:16
1505
- #: ../modules/content-slider/content-slider.php:16 ../modules/cta/cta.php:16
1506
- #: ../modules/gallery/gallery.php:16 ../modules/html/html.php:16
1507
- #: ../modules/icon-group/icon-group.php:16 ../modules/icon/icon.php:16
1508
- #: ../modules/map/map.php:16 ../modules/menu/menu.php:16
1509
- #: ../modules/posts/posts.php:16 ../modules/sidebar/sidebar.php:16
1510
- #: ../modules/slideshow/slideshow.php:16
1511
- #: ../modules/social-buttons/social-buttons.php:16
1512
- #: ../modules/testimonials/testimonials.php:16
1513
- #: ../modules/woocommerce/woocommerce.php:18
1514
- msgid "Advanced Modules"
1515
- msgstr "Módulos Avançados"
1516
-
1517
- #: ../modules/accordion/accordion.php:28
1518
- msgid "Items"
1519
- msgstr "Itens"
1520
-
1521
- #: ../modules/accordion/accordion.php:35
1522
- msgid "Item"
1523
- msgstr "Item"
1524
-
1525
- #: ../modules/accordion/accordion.php:52
1526
- msgid "Border Color"
1527
- msgstr "Cor da Borda"
1528
-
1529
- #: ../modules/accordion/accordion.php:57
1530
- msgid "Label Size"
1531
- msgstr "Tamanho do Rótulo"
1532
-
1533
- #: ../modules/accordion/accordion.php:60 ../modules/gallery/gallery.php:259
1534
- msgid "Small"
1535
- msgstr "Pequeno"
1536
-
1537
- #: ../modules/accordion/accordion.php:67
1538
- msgid "Item Spacing"
1539
- msgstr "Espaçamento de Item"
1540
-
1541
- #: ../modules/accordion/accordion.php:83
1542
- msgid "Add Item"
1543
- msgstr "Adicionar Item"
1544
-
1545
- #: ../modules/accordion/accordion.php:93
1546
- msgid "Label"
1547
- msgstr "Rótulo"
1548
-
1549
- #: ../modules/accordion/accordion.php:98 ../modules/posts/posts.php:96
1550
- #: ../modules/posts/posts.php:109
1551
- msgid "Content"
1552
- msgstr "Conteúdo"
1553
-
1554
- #: ../modules/button/button.php:14 ../modules/callout/callout.php:453
1555
- #: ../modules/content-slider/content-slider.php:595 ../modules/cta/cta.php:195
1556
- msgid "Button"
1557
- msgstr "Botão"
1558
-
1559
- # the "call to action" term is another one that doesn't have yet a literal translation in portuguese. In this case, the button is a trigger to an action, so I wrote a translation that I think that gives the closer meaning possible.
1560
- #: ../modules/button/button.php:15
1561
- msgid "A simple call to action button."
1562
- msgstr "Um botão de ação simples."
1563
-
1564
- #: ../modules/button/button.php:39 ../modules/callout/callout.php:303
1565
- #: ../modules/callout/callout.php:350 ../modules/callout/callout.php:354
1566
- #: ../modules/icon-group/icon-group.php:36
1567
- #: ../modules/icon-group/icon-group.php:131 ../modules/icon/icon.php:14
1568
- #: ../modules/icon/icon.php:36
1569
- msgid "Icon"
1570
- msgstr "Ícone"
1571
-
1572
- #: ../modules/button/button.php:45 ../modules/button/button.php:49
1573
- #: ../modules/callout/callout.php:424 ../modules/callout/callout.php:428
1574
- #: ../modules/content-slider/content-slider.php:566
1575
- #: ../modules/content-slider/content-slider.php:570
1576
- #: ../modules/content-slider/content-slider.php:594 ../modules/cta/cta.php:211
1577
- #: ../modules/heading/heading.php:38 ../modules/heading/heading.php:42
1578
- #: ../modules/icon-group/icon-group.php:135 ../modules/icon/icon.php:45
1579
- #: ../modules/slideshow/slideshow.php:340
1580
- msgid "Link"
1581
- msgstr ""
1582
-
1583
- #: ../modules/button/button.php:54 ../modules/callout/callout.php:434
1584
- #: ../modules/content-slider/content-slider.php:576 ../modules/cta/cta.php:216
1585
- #: ../modules/heading/heading.php:47 ../modules/icon/icon.php:50
1586
- #: ../modules/photo/photo.php:416
1587
- msgid "Link Target"
1588
- msgstr "Destino do Link"
1589
-
1590
- #: ../modules/button/button.php:57 ../modules/callout/callout.php:437
1591
- #: ../modules/content-slider/content-slider.php:579 ../modules/cta/cta.php:219
1592
- #: ../modules/heading/heading.php:50 ../modules/icon/icon.php:53
1593
- #: ../modules/photo/photo.php:419
1594
- msgid "Same Window"
1595
- msgstr "Mesma Janela"
1596
-
1597
- #: ../modules/button/button.php:58 ../modules/callout/callout.php:438
1598
- #: ../modules/content-slider/content-slider.php:580 ../modules/cta/cta.php:220
1599
- #: ../modules/heading/heading.php:51 ../modules/icon/icon.php:54
1600
- #: ../modules/photo/photo.php:420
1601
- msgid "New Window"
1602
- msgstr "Nova Janela"
1603
-
1604
- #: ../modules/button/button.php:69 ../modules/cta/cta.php:168
1605
- #: ../modules/heading/heading.php:62 ../modules/icon-group/icon-group.php:49
1606
- #: ../modules/icon/icon.php:75
1607
- msgid "Colors"
1608
- msgstr "Cores"
1609
-
1610
- #: ../modules/button/button.php:79 ../modules/callout/callout.php:391
1611
- #: ../modules/callout/callout.php:483
1612
- #: ../modules/content-slider/content-slider.php:625 ../modules/cta/cta.php:236
1613
- #: ../modules/icon-group/icon-group.php:68 ../modules/icon/icon.php:94
1614
- msgid "Background Hover Color"
1615
- msgstr "Cor do Fundo (ponteiro do mouse sobre o elemento)"
1616
-
1617
- #: ../modules/button/button.php:85 ../modules/callout/callout.php:489
1618
- #: ../modules/content-slider/content-slider.php:521
1619
- #: ../modules/content-slider/content-slider.php:630
1620
- #: ../modules/content-slider/content-slider.php:714 ../modules/cta/cta.php:172
1621
- #: ../modules/cta/cta.php:242 ../modules/heading/heading.php:67
1622
- msgid "Text Color"
1623
- msgstr "Cor do Texto"
1624
-
1625
- #: ../modules/button/button.php:91 ../modules/callout/callout.php:495
1626
- #: ../modules/content-slider/content-slider.php:636 ../modules/cta/cta.php:248
1627
- msgid "Text Hover Color"
1628
- msgstr "Cor do Texto (ponteiro do mouse sobre o elemento)"
1629
-
1630
- #: ../modules/button/button.php:97 ../modules/callout/callout.php:396
1631
- #: ../modules/callout/callout.php:501
1632
- #: ../modules/content-slider/content-slider.php:641 ../modules/cta/cta.php:254
1633
- #: ../modules/icon-group/icon-group.php:73 ../modules/icon/icon.php:99
1634
- msgid "Gradient"
1635
- msgstr "Degradê"
1636
-
1637
- #: ../modules/button/button.php:107 ../modules/callout/callout.php:233
1638
- #: ../modules/cta/cta.php:91 ../modules/heading/heading.php:72
1639
- #: ../modules/icon-group/icon-group.php:83 ../modules/icon/icon.php:109
1640
- msgid "Structure"
1641
- msgstr "Estrutura"
1642
-
1643
- #: ../modules/button/button.php:114 ../modules/callout/callout.php:518
1644
- #: ../modules/content-slider/content-slider.php:554
1645
- msgid "Auto"
1646
- msgstr "Automática"
1647
-
1648
- #: ../modules/button/button.php:116 ../modules/callout/callout.php:270
1649
- #: ../modules/content-slider/content-slider.php:442 ../modules/cta/cta.php:149
1650
- #: ../modules/heading/heading.php:103 ../modules/heading/heading.php:130
1651
- #: ../modules/heading/heading.php:154
1652
- #: ../modules/social-buttons/social-buttons.php:72
1653
- msgid "Custom"
1654
- msgstr "Personalizada"
1655
-
1656
- #: ../modules/button/button.php:130
1657
- msgid "Custom Width"
1658
- msgstr "Largura Personalizada"
1659
-
1660
- #: ../modules/button/button.php:138 ../modules/cta/cta.php:109
1661
- #: ../modules/heading/heading.php:76 ../modules/heading/heading.php:126
1662
- #: ../modules/icon-group/icon-group.php:103 ../modules/icon/icon.php:121
1663
- #: ../modules/menu/menu.php:46 ../modules/photo/photo.php:358
1664
- #: ../modules/social-buttons/social-buttons.php:89
1665
- msgid "Alignment"
1666
- msgstr "Alinhamento"
1667
-
1668
- #: ../modules/button/button.php:141 ../modules/callout/callout.php:240
1669
- #: ../modules/content-slider/content-slider.php:470 ../modules/cta/cta.php:113
1670
- #: ../modules/heading/heading.php:80 ../modules/heading/heading.php:144
1671
- #: ../modules/icon-group/icon-group.php:106 ../modules/icon/icon.php:124
1672
- #: ../modules/menu/menu.php:50 ../modules/photo/photo.php:362
1673
- #: ../modules/social-buttons/social-buttons.php:92
1674
- msgid "Center"
1675
- msgstr "Centro"
1676
-
1677
- #: ../modules/button/button.php:148 ../modules/callout/callout.php:524
1678
- #: ../modules/content-slider/content-slider.php:655 ../modules/cta/cta.php:268
1679
- #: ../modules/heading/heading.php:99 ../modules/heading/heading.php:150
1680
- msgid "Font Size"
1681
- msgstr "Tamanho da Fonte"
1682
-
1683
- #: ../modules/button/button.php:164 ../modules/callout/callout.php:540
1684
- #: ../modules/cta/cta.php:284
1685
- msgid "Round Corners"
1686
- msgstr "Cantos Arredondados"
1687
-
1688
- #: ../modules/callout/callout.php:14
1689
- msgid "Callout"
1690
- msgstr "Bloco de Chamada"
1691
-
1692
- #: ../modules/callout/callout.php:15
1693
- msgid "A heading and snippet of text with an optional link, icon and image."
1694
- msgstr "Um título e um fragmento de texto com link, ícone e imagem opcionais."
1695
-
1696
- #: ../modules/callout/callout.php:213
1697
- #: ../modules/content-slider/content-slider.php:406
1698
- #: ../modules/content-slider/content-slider.php:421 ../modules/cta/cta.php:71
1699
- #: ../modules/heading/heading.php:14 ../modules/heading/heading.php:33
1700
- #: ../modules/testimonials/testimonials.php:56
1701
- #: ../modules/testimonials/testimonials.php:61
1702
- msgid "Heading"
1703
- msgstr "Título"
1704
-
1705
- #: ../modules/callout/callout.php:237
1706
- msgid "Overall Alignment"
1707
- msgstr "Alinhamento Global"
1708
-
1709
- #: ../modules/callout/callout.php:244
1710
- msgid "The alignment that will apply to all elements within the callout."
1711
- msgstr ""
1712
- "O alinhamento que será aplicado a todos os elementos dentro do bloco de "
1713
- "Chamada."
1714
-
1715
- #: ../modules/callout/callout.php:249 ../modules/cta/cta.php:128
1716
- msgid "Heading Structure"
1717
- msgstr "Estrutura do Título"
1718
-
1719
- #: ../modules/callout/callout.php:253
1720
- #: ../modules/content-slider/content-slider.php:425 ../modules/cta/cta.php:132
1721
- msgid "Heading Tag"
1722
- msgstr "Tag do Título"
1723
-
1724
- #: ../modules/callout/callout.php:266
1725
- #: ../modules/content-slider/content-slider.php:438
1726
- #: ../modules/content-slider/content-slider.php:452 ../modules/cta/cta.php:145
1727
- #: ../modules/testimonials/testimonials.php:65
1728
- msgid "Heading Size"
1729
- msgstr "Tamanho do Título"
1730
-
1731
- #: ../modules/callout/callout.php:269
1732
- #: ../modules/content-slider/content-slider.php:441 ../modules/cta/cta.php:148
1733
- #: ../modules/heading/heading.php:102 ../modules/heading/heading.php:129
1734
- #: ../modules/heading/heading.php:153
1735
- #: ../modules/woocommerce/woocommerce.php:192
1736
- msgid "Default"
1737
- msgstr "Padrão"
1738
-
1739
- #: ../modules/callout/callout.php:280 ../modules/cta/cta.php:159
1740
- msgid "Heading Custom Size"
1741
- msgstr "Tamanho Personalizado do Título"
1742
-
1743
- #: ../modules/callout/callout.php:298
1744
- msgid "Image Type"
1745
- msgstr "Tipo de Imagem"
1746
-
1747
- #: ../modules/callout/callout.php:326 ../modules/photo/photo.php:346
1748
- #: ../modules/posts/posts.php:83 ../modules/slideshow/slideshow.php:312
1749
- #, fuzzy
1750
- msgid "Crop"
1751
- msgstr "Recorte"
1752
-
1753
- #: ../modules/callout/callout.php:330 ../modules/photo/photo.php:350
1754
- #: ../modules/posts/posts.php:87
1755
- msgid "Landscape"
1756
- msgstr "Paisagem"
1757
-
1758
- #: ../modules/callout/callout.php:331 ../modules/photo/photo.php:351
1759
- #: ../modules/posts/posts.php:88
1760
- msgid "Panorama"
1761
- msgstr ""
1762
-
1763
- #: ../modules/callout/callout.php:332 ../modules/photo/photo.php:352
1764
- #: ../modules/posts/posts.php:89
1765
- msgid "Portrait"
1766
- msgstr "Retrato"
1767
-
1768
- #: ../modules/callout/callout.php:333 ../modules/photo/photo.php:353
1769
- #: ../modules/posts/posts.php:90
1770
- msgid "Square"
1771
- msgstr "Quadrado"
1772
-
1773
- #: ../modules/callout/callout.php:341 ../modules/callout/callout.php:361
1774
- msgid "Above Heading"
1775
- msgstr "Acima do Título"
1776
-
1777
- #: ../modules/callout/callout.php:342 ../modules/callout/callout.php:362
1778
- msgid "Below Heading"
1779
- msgstr "Abaixo do Título"
1780
-
1781
- #: ../modules/callout/callout.php:343 ../modules/callout/callout.php:365
1782
- msgid "Left of Text and Heading"
1783
- msgstr "À Esquerda do Texto e Título"
1784
-
1785
- #: ../modules/callout/callout.php:344 ../modules/callout/callout.php:366
1786
- msgid "Right of Text and Heading"
1787
- msgstr "À Direita do Texto e Título"
1788
-
1789
- #: ../modules/callout/callout.php:363
1790
- msgid "Left Heading"
1791
- msgstr "Título Esquerdo"
1792
-
1793
- #: ../modules/callout/callout.php:364
1794
- msgid "Right Heading"
1795
- msgstr "Título Direito"
1796
-
1797
- #: ../modules/callout/callout.php:372
1798
- msgid "Icon Colors"
1799
- msgstr "Cores do Ícone"
1800
-
1801
- #: ../modules/callout/callout.php:381 ../modules/icon-group/icon-group.php:58
1802
- #: ../modules/icon/icon.php:84
1803
- msgid "Hover Color"
1804
- msgstr "Cor (ponteiro do mouse sobre o elemento)"
1805
-
1806
- #: ../modules/callout/callout.php:406
1807
- msgid "Icon Structure"
1808
- msgstr "Estrutura do Ícone"
1809
-
1810
- #: ../modules/callout/callout.php:410 ../modules/icon-group/icon-group.php:87
1811
- #: ../modules/icon/icon.php:113
1812
- msgid "Size"
1813
- msgstr "Tamanho"
1814
-
1815
- #: ../modules/callout/callout.php:421
1816
- #: ../modules/content-slider/content-slider.php:563
1817
- msgid "Call To Action"
1818
- msgstr "Chamada Para Ação."
1819
-
1820
- #: ../modules/callout/callout.php:430
1821
- msgid ""
1822
- "The link applies to the entire module. If choosing a call to action type "
1823
- "below, this link will also be used for the text or button."
1824
- msgstr ""
1825
- "O link se aplica a este módulo por inteiro. Se você escolher um tipo de "
1826
- "chamada de ação abaixo, o link também será utilizado para o texto ou botão."
1827
-
1828
- #: ../modules/callout/callout.php:444
1829
- #: ../modules/content-slider/content-slider.php:586 ../modules/cta/cta.php:14
1830
- msgid "Call to Action"
1831
- msgstr "Chamada para Ação"
1832
-
1833
- #: ../modules/callout/callout.php:473
1834
- #: ../modules/content-slider/content-slider.php:615 ../modules/cta/cta.php:226
1835
- msgid "Button Colors"
1836
- msgstr "Cores do Botão"
1837
-
1838
- #: ../modules/callout/callout.php:511
1839
- #: ../modules/content-slider/content-slider.php:651 ../modules/cta/cta.php:264
1840
- msgid "Button Structure"
1841
- msgstr "Estrutura do Botão"
1842
-
1843
- #: ../modules/callout/callout.php:515
1844
- msgid "Button Width"
1845
- msgstr "Largura do Botão"
1846
-
1847
- #: ../modules/contact-form/contact-form.php:14
1848
- msgid "Contact Form"
1849
- msgstr "Formulário de Contato"
1850
-
1851
- #: ../modules/contact-form/contact-form.php:15
1852
- msgid "A very simple contact form."
1853
- msgstr "Um formulário de contato bem simples."
1854
-
1855
- #: ../modules/contact-form/contact-form.php:36
1856
- msgid "Contact Form Submission"
1857
- msgstr "Envio do Formulário de Contato"
1858
-
1859
- #: ../modules/contact-form/contact-form.php:64
1860
- msgid "Send To Email"
1861
- msgstr "Enviar Para Email"
1862
-
1863
- #: ../modules/contact-form/contact-form.php:66
1864
- msgid "example@mail.com"
1865
- msgstr "exemplo@mail.com"
1866
-
1867
- #: ../modules/contact-form/contact-form.php:67
1868
- msgid "The contact form will send to this e-mail"
1869
- msgstr "O formulário de contato será enviado para este e-mail"
1870
-
1871
- #: ../modules/contact-form/includes/frontend.php:5
1872
- msgid "Please enter your name."
1873
- msgstr "Por favor insira seu nome."
1874
-
1875
- #: ../modules/contact-form/includes/frontend.php:10
1876
- msgid "Email"
1877
- msgstr ""
1878
-
1879
- #: ../modules/contact-form/includes/frontend.php:11
1880
- msgid "Please enter a valid email."
1881
- msgstr "Por favor insira um email válido."
1882
-
1883
- #: ../modules/contact-form/includes/frontend.php:16
1884
- msgid "Your Message"
1885
- msgstr "Sua Mensagem"
1886
-
1887
- #: ../modules/contact-form/includes/frontend.php:17
1888
- msgid "Please enter a message."
1889
- msgstr "Por favor insira uma mensagem."
1890
-
1891
- #: ../modules/contact-form/includes/frontend.php:23
1892
- msgid "Send"
1893
- msgstr "Enviar"
1894
-
1895
- #: ../modules/content-slider/content-slider.php:14
1896
- msgid "Content Slider"
1897
- msgstr "Slider de Conteúdo"
1898
-
1899
- #: ../modules/content-slider/content-slider.php:15
1900
- msgid "Displays multiple slides with an optional heading and call to action."
1901
- msgstr "Exibe múltiplos slides com título e chamada para ação opcionais."
1902
-
1903
- #: ../modules/content-slider/content-slider.php:190 ../modules/map/map.php:38
1904
- #: ../modules/separator/separator.php:47
1905
- #: ../modules/slideshow/slideshow.php:294
1906
- msgid "Height"
1907
- msgstr "Altura"
1908
-
1909
- #: ../modules/content-slider/content-slider.php:195
1910
- msgid ""
1911
- "This setting is the minimum height of the content slider. Content will "
1912
- "expand the height automatically."
1913
- msgstr ""
1914
- "Esta configuração é a altura mínima para o slider de conteúdo. O conteúdo "
1915
- "irá expandir a altura automaticamente."
1916
-
1917
- #: ../modules/content-slider/content-slider.php:199
1918
- #: ../modules/slideshow/slideshow.php:365
1919
- #: ../modules/testimonials/testimonials.php:78 ../modules/video/video.php:107
1920
- msgid "Auto Play"
1921
- msgstr "Reprodução Automática"
1922
-
1923
- #: ../modules/content-slider/content-slider.php:213
1924
- msgid "Show Play/Pause"
1925
- msgstr "Mostrar Reproduzir/Pausar"
1926
-
1927
- #: ../modules/content-slider/content-slider.php:226
1928
- #: ../modules/content-slider/content-slider.php:243
1929
- #: ../modules/testimonials/testimonials.php:91
1930
- #: ../modules/testimonials/testimonials.php:108
1931
- msgid "Seconds"
1932
- msgstr "Segundos"
1933
-
1934
- #: ../modules/content-slider/content-slider.php:247
1935
- #: ../modules/testimonials/testimonials.php:117
1936
- msgid "Show Arrows"
1937
- msgstr "Mostrar Setas"
1938
-
1939
- #: ../modules/content-slider/content-slider.php:256
1940
- #: ../modules/testimonials/testimonials.php:142
1941
- msgid "Show Dots"
1942
- msgstr "Mostrar Pontos"
1943
-
1944
- #: ../modules/content-slider/content-slider.php:270
1945
- msgid "Max Content Width"
1946
- msgstr "Largura Máxima de Conteúdo"
1947
-
1948
- #: ../modules/content-slider/content-slider.php:275
1949
- msgid "The max width that the content area will be within your slides."
1950
- msgstr "A largura máxima que a área de conteúdo terá em seus slides."
1951
-
1952
- #: ../modules/content-slider/content-slider.php:282
1953
- msgid "Slides"
1954
- msgstr ""
1955
-
1956
- #: ../modules/content-slider/content-slider.php:289
1957
- msgid "Slide"
1958
- msgstr ""
1959
-
1960
- #: ../modules/content-slider/content-slider.php:304
1961
- msgid "Slide Settings"
1962
- msgstr "Configurações de Slide"
1963
-
1964
- #: ../modules/content-slider/content-slider.php:314
1965
- msgid "Slide Label"
1966
- msgstr "Rótulo do Slide"
1967
-
1968
- #: ../modules/content-slider/content-slider.php:315
1969
- msgid ""
1970
- "A label to identify this slide on the Slides tab of the Content Slider "
1971
- "settings."
1972
- msgstr ""
1973
- "Um rótulo para identificar este slide na aba Slides, nas configurações do "
1974
- "Slider de Conteúdo."
1975
-
1976
- #: ../modules/content-slider/content-slider.php:320
1977
- msgid "Background Layout"
1978
- msgstr "Layout do Fundo"
1979
-
1980
- #: ../modules/content-slider/content-slider.php:326
1981
- msgid "This setting is for the entire background of your slide."
1982
- msgstr "Esta configuração aplica-se por completo ao fundo de seu slide."
1983
-
1984
- #: ../modules/content-slider/content-slider.php:361
1985
- msgid "Background Video Code"
1986
- msgstr "Código do Vídeo de Fundo"
1987
-
1988
- #: ../modules/content-slider/content-slider.php:367
1989
- msgid "Content Layout"
1990
- msgstr "Layout de Conteúdo"
1991
-
1992
- #: ../modules/content-slider/content-slider.php:373
1993
- msgid ""
1994
- "This allows you to add content over or in addition to the background "
1995
- "selection above. The location of the content layout can be selected in the "
1996
- "style tab."
1997
- msgstr ""
1998
- "Isto lhe permite adicionar conteúdo sobre ou adicionalmente à seleção de "
1999
- "fundo acima. A localização do layout do conteúdo pode ser selecionada na aba "
2000
- "\"estilo\"."
2001
-
2002
- #: ../modules/content-slider/content-slider.php:376
2003
- msgid "Text &amp; Photo"
2004
- msgstr "Texto &amp; Foto"
2005
-
2006
- #: ../modules/content-slider/content-slider.php:377
2007
- msgid "Text &amp; Video"
2008
- msgstr "Texto &amp; Vídeo"
2009
-
2010
- #: ../modules/content-slider/content-slider.php:401
2011
- msgid "Video Embed Code"
2012
- msgstr "Código de Incorporação de Vídeo"
2013
-
2014
- #: ../modules/content-slider/content-slider.php:461
2015
- msgid "Text Position"
2016
- msgstr "Posição do Texto"
2017
-
2018
- #: ../modules/content-slider/content-slider.php:467
2019
- msgid ""
2020
- "The position will move the content layout selections left, right or center "
2021
- "over the background of the slide."
2022
- msgstr ""
2023
- "A posição irá mover a seleção do layout do conteúdo para esquerda, direita "
2024
- "ou ao centro sobre o fundo do slide."
2025
-
2026
- #: ../modules/content-slider/content-slider.php:484
2027
- msgid "Top Margin"
2028
- msgstr "Espaçamento Superior"
2029
-
2030
- #: ../modules/content-slider/content-slider.php:492
2031
- msgid "Bottom Margin"
2032
- msgstr "Espaçamento Inferior"
2033
-
2034
- #: ../modules/content-slider/content-slider.php:500
2035
- msgid "Left Margin"
2036
- msgstr "Espaçamento à Esquerda"
2037
-
2038
- #: ../modules/content-slider/content-slider.php:508
2039
- msgid "Right Margin"
2040
- msgstr "Espaçamento à Direita"
2041
-
2042
- #: ../modules/content-slider/content-slider.php:517
2043
- msgid "Text Colors"
2044
- msgstr "Cores do Texto"
2045
-
2046
- #: ../modules/content-slider/content-slider.php:527
2047
- msgid "Text Shadow"
2048
- msgstr "Sombra do Texto"
2049
-
2050
- #: ../modules/content-slider/content-slider.php:536
2051
- #: ../modules/content-slider/content-slider.php:720
2052
- msgid "Text Background Color"
2053
- msgstr "Cor de Fundo do Texto"
2054
-
2055
- #: ../modules/content-slider/content-slider.php:537
2056
- msgid ""
2057
- "The color applies to the overlay behind text over the background selections."
2058
- msgstr ""
2059
- "A cor se aplica ao invólucro atrás do texto e acima das seleções de fundo."
2060
-
2061
- #: ../modules/content-slider/content-slider.php:542
2062
- msgid "Text Background Opacity"
2063
- msgstr "Opacidade do Fundo do Texto"
2064
-
2065
- #: ../modules/content-slider/content-slider.php:550
2066
- msgid "Text Background Height"
2067
- msgstr "Altura do Fundo do Texto"
2068
-
2069
- #: ../modules/content-slider/content-slider.php:552
2070
- msgid ""
2071
- "Auto will allow the overlay to fit however long the text content is. 100% "
2072
- "will fit the overlay to the top and bottom of the slide."
2073
- msgstr ""
2074
- "Automática irá permitir que o invólucro se ajuste não importa o quão longo o "
2075
- "conteúdo do texto seja. 100% ira ajustar o invólucro ao topo e à base do "
2076
- "slide."
2077
-
2078
- #: ../modules/content-slider/content-slider.php:572
2079
- msgid ""
2080
- "The link applies to the entire slide. If choosing a call to action type "
2081
- "below, this link will also be used for the text or button."
2082
- msgstr ""
2083
- "O link se aplica ao slide por inteiro. Se escolher um tipo de chamada de "
2084
- "ação abaixo, este link será também utilizado para o texto ou botão."
2085
-
2086
- #: ../modules/content-slider/content-slider.php:671
2087
- msgid "Border Radius"
2088
- msgstr "Raio da Borda"
2089
-
2090
- #: ../modules/content-slider/content-slider.php:682
2091
- msgid "Mobile"
2092
- msgstr ""
2093
-
2094
- #: ../modules/content-slider/content-slider.php:685
2095
- msgid "Mobile Photo"
2096
- msgstr "Foto Mobile"
2097
-
2098
- #: ../modules/content-slider/content-slider.php:691
2099
- msgid ""
2100
- "You can choose a different photo that the slide will change to on mobile "
2101
- "devices or no photo if desired."
2102
- msgstr ""
2103
- "Você pode escolher uma foto diferente para qual o slide irá mudar em "
2104
- "dispositivos móveis ou, se desejar, nenhuma foto."
2105
-
2106
- #: ../modules/content-slider/content-slider.php:693
2107
- msgid "Use Main Photo"
2108
- msgstr "Usar Foto Principal"
2109
-
2110
- #: ../modules/content-slider/content-slider.php:694
2111
- msgid "Choose Another Photo"
2112
- msgstr "Escolher Outra Foto"
2113
-
2114
- #: ../modules/content-slider/content-slider.php:695
2115
- msgid "No Photo"
2116
- msgstr "Nenhuma Foto"
2117
-
2118
- #: ../modules/content-slider/content-slider.php:710
2119
- msgid "Mobile Text Colors"
2120
- msgstr "Cores de Texto em Dispositivos Móveis"
2121
-
2122
- #: ../modules/cta/cta.php:15
2123
- msgid "Display a heading, subheading and a button."
2124
- msgstr "Exibe um título, subtítulo e um botão."
2125
-
2126
- #: ../modules/cta/cta.php:95 ../modules/gallery/gallery.php:216
2127
- #: ../modules/menu/menu.php:37 ../modules/testimonials/testimonials.php:37
2128
- #: ../modules/woocommerce/woocommerce.php:57
2129
- msgid "Layout"
2130
- msgstr ""
2131
-
2132
- #: ../modules/cta/cta.php:98
2133
- msgid "Inline"
2134
- msgstr "Em linha"
2135
-
2136
- #: ../modules/cta/cta.php:99
2137
- msgid "Stacked"
2138
- msgstr "Empilhado"
2139
-
2140
- #: ../modules/cta/cta.php:119 ../modules/icon-group/icon-group.php:95
2141
- msgid "Spacing"
2142
- msgstr "Espaçamento"
2143
-
2144
- #: ../modules/cta/cta.php:184
2145
- msgid "Background Opacity"
2146
- msgstr "Opacidade do Fundo"
2147
-
2148
- #: ../modules/cta/cta.php:207
2149
- msgid "Button Link"
2150
- msgstr "Link do Botão"
2151
-
2152
- #: ../modules/gallery/gallery.php:14
2153
- msgid "Gallery"
2154
- msgstr "Galeria"
2155
-
2156
- #: ../modules/gallery/gallery.php:15
2157
- msgid "Display multiple photos in a gallery view."
2158
- msgstr "Exibe múltiplas fotos em formato de galeria de imagens."
2159
-
2160
- #: ../modules/gallery/gallery.php:219
2161
- msgid "Collage"
2162
- msgstr "Colagem"
2163
-
2164
- #: ../modules/gallery/gallery.php:220
2165
- msgid "Grid"
2166
- msgstr "Grade"
2167
-
2168
- #: ../modules/gallery/gallery.php:256
2169
- msgid "Photo Size"
2170
- msgstr "Tamanho da Foto"
2171
-
2172
- #: ../modules/gallery/gallery.php:266
2173
- msgid "Photo Spacing"
2174
- msgstr "Espaçamento da Foto"
2175
-
2176
- #: ../modules/gallery/gallery.php:274
2177
- msgid "Show Captions"
2178
- msgstr "Mostrar Legendas"
2179
-
2180
- #: ../modules/gallery/gallery.php:277 ../modules/photo/photo.php:376
2181
- msgid "Never"
2182
- msgstr "Nunca"
2183
-
2184
- #: ../modules/gallery/gallery.php:278 ../modules/photo/photo.php:377
2185
- msgid "On Hover"
2186
- msgstr "Ponteiro do mouse sobre o elemento"
2187
-
2188
- #: ../modules/gallery/gallery.php:279 ../modules/photo/photo.php:378
2189
- msgid "Below Photo"
2190
- msgstr "Abaixo da Foto"
2191
-
2192
- #: ../modules/gallery/gallery.php:281
2193
- msgid ""
2194
- "The caption pulls from whatever text you put in the caption area in the "
2195
- "media manager for each image. The caption is also pulled directly from "
2196
- "SmugMug if you have captions set in your gallery."
2197
- msgstr ""
2198
- "A legenda é puxada de qualquer que seja o texto que você inseriu na área de "
2199
- "legenda no gerenciador de mídia para cada imagem. A legenda também é puxada "
2200
- "diretamente do SmugMug se você tiver legendas definidas em sua galeria."
2201
-
2202
- #: ../modules/gallery/gallery.php:285 ../modules/slideshow/slideshow.php:332
2203
- msgid "Click Action"
2204
- msgstr "Ação do Clique"
2205
-
2206
- #: ../modules/gallery/gallery.php:289
2207
- msgid "Lightbox"
2208
- msgstr ""
2209
-
2210
- #: ../modules/gallery/gallery.php:290
2211
- msgid "Photo Link"
2212
- msgstr "Link da Foto"
2213
-
2214
- #: ../modules/heading/heading.php:15
2215
- msgid "Display a title/page heading."
2216
- msgstr "Mostra um título/título de página."
2217
-
2218
- #: ../modules/heading/heading.php:16 ../modules/photo/photo.php:27
2219
- #: ../modules/rich-text/rich-text.php:16 ../modules/separator/separator.php:16
2220
- #: ../modules/video/video.php:21
2221
- msgid "Basic Modules"
2222
- msgstr "Módulos Básicos"
2223
-
2224
- #: ../modules/heading/heading.php:86
2225
- msgid "Tag"
2226
- msgstr ""
2227
-
2228
- #: ../modules/heading/heading.php:89
2229
- msgid "h1"
2230
- msgstr ""
2231
-
2232
- #: ../modules/heading/heading.php:90
2233
- msgid "h2"
2234
- msgstr ""
2235
-
2236
- #: ../modules/heading/heading.php:91
2237
- msgid "h3"
2238
- msgstr ""
2239
-
2240
- #: ../modules/heading/heading.php:92
2241
- msgid "h4"
2242
- msgstr ""
2243
-
2244
- #: ../modules/heading/heading.php:93
2245
- msgid "h5"
2246
- msgstr ""
2247
-
2248
- #: ../modules/heading/heading.php:94
2249
- msgid "h6"
2250
- msgstr ""
2251
-
2252
- #: ../modules/heading/heading.php:113 ../modules/heading/heading.php:164
2253
- msgid "Custom Font Size"
2254
- msgstr "Tamanho Personalizado de Fonte"
2255
-
2256
- #: ../modules/heading/heading.php:122
2257
- msgid "Mobile Structure"
2258
- msgstr "Estrutura Mobile"
2259
-
2260
- #: ../modules/heading/heading.php:140
2261
- msgid "Custom Alignment"
2262
- msgstr "Alinhamento Personalizado"
2263
-
2264
- #: ../modules/html/html.php:14
2265
- msgid "HTML"
2266
- msgstr ""
2267
-
2268
- #: ../modules/html/html.php:15
2269
- msgid "Display raw HTML code."
2270
- msgstr "Exibe código HTML puro."
2271
-
2272
- #: ../modules/icon-group/icon-group.php:14
2273
- msgid "Icon Group"
2274
- msgstr "Grupo de Ícones"
2275
-
2276
- #: ../modules/icon-group/icon-group.php:15
2277
- #, fuzzy
2278
- msgid "Display a group of linked Font Awesome icons."
2279
- msgstr "Exibe um grupo de ícones (Font Awesome) com links."
2280
-
2281
- #: ../modules/icon-group/icon-group.php:29
2282
- msgid "Icons"
2283
- msgstr "Ícones"
2284
-
2285
- #: ../modules/icon-group/icon-group.php:121
2286
- msgid "Add Icon"
2287
- msgstr "Adicionar Ícone"
2288
-
2289
- #: ../modules/icon/icon.php:15
2290
- msgid "Display a Font Awesome icon and optional title."
2291
- msgstr "Exibe um ícone (Font Awesome) e um título opcional"
2292
-
2293
- #: ../modules/map/map.php:14
2294
- msgid "Map"
2295
- msgstr "Mapa"
2296
-
2297
- #: ../modules/map/map.php:15
2298
- msgid "Display a Google map."
2299
- msgstr "Exibe um mapa do Google."
2300
-
2301
- #: ../modules/map/map.php:33
2302
- msgid "Address"
2303
- msgstr "Endereço"
2304
-
2305
- #: ../modules/map/map.php:34
2306
- msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
2307
- msgstr ""
2308
-
2309
- #: ../modules/menu/includes/menu-select.php:5 ../modules/menu/menu.php:14
2310
- msgid "Menu"
2311
- msgstr ""
2312
-
2313
- #: ../modules/menu/menu.php:15
2314
- msgid "Display a WordPress menu."
2315
- msgstr "Exibe um menu do WordPress."
2316
-
2317
- #: ../modules/menu/menu.php:33
2318
- msgid "Formatting"
2319
- msgstr "Formatação"
2320
-
2321
- #: ../modules/photo/photo.php:26
2322
- msgid "Upload a photo or display one from the media library."
2323
- msgstr "Carregar uma foto ou exibir uma da Biblioteca de Mídia."
2324
-
2325
- #: ../modules/photo/photo.php:320
2326
- msgid "Photo Source"
2327
- msgstr "Origem da Foto"
2328
-
2329
- #: ../modules/photo/photo.php:324 ../modules/photo/photo.php:395
2330
- msgid "URL"
2331
- msgstr ""
2332
-
2333
- #: ../modules/photo/photo.php:341
2334
- msgid "Photo URL"
2335
- msgstr "URL da Foto"
2336
-
2337
- #: ../modules/photo/photo.php:373
2338
- msgid "Show Caption"
2339
- msgstr "Mostrar Legenda"
2340
-
2341
- #: ../modules/photo/photo.php:383
2342
- msgid "Caption"
2343
- msgstr "Legenda"
2344
-
2345
- #: ../modules/photo/photo.php:392
2346
- msgid "Link Type"
2347
- msgstr "Tipo de Link"
2348
-
2349
- #: ../modules/photo/photo.php:396
2350
- msgid "Photo File"
2351
- msgstr "Arquivo da Foto"
2352
-
2353
- #: ../modules/photo/photo.php:397
2354
- msgid "Photo Page"
2355
- msgstr "Página da Foto"
2356
-
2357
- #: ../modules/photo/photo.php:407
2358
- msgid ""
2359
- "Link type applies to how the image should be linked on click. You can choose "
2360
- "a specific URL, the individual photo or a separate page with the photo."
2361
- msgstr ""
2362
- "Link aplica-se a como a imagem deve ser comportar ao ser clicada. Você pode "
2363
- "escolher uma URL específica, uma foto individual ou uma página separada com "
2364
- "a foto."
2365
-
2366
- #: ../modules/photo/photo.php:411 ../modules/slideshow/slideshow.php:350
2367
- msgid "Link URL"
2368
- msgstr "URL do Link"
2369
-
2370
- #: ../modules/posts/posts.php:14
2371
- msgid "Posts"
2372
- msgstr "Posts"
2373
-
2374
- #: ../modules/posts/posts.php:15
2375
- msgid "Display your WordPress posts."
2376
- msgstr "Exibe seus posts do WordPress."
2377
-
2378
- #: ../modules/posts/posts.php:38 ../modules/woocommerce/woocommerce.php:107
2379
- #: ../modules/woocommerce/woocommerce.php:178
2380
- msgid "Columns"
2381
- msgstr "Colunas"
2382
-
2383
- #: ../modules/posts/posts.php:41 ../modules/woocommerce/woocommerce.php:110
2384
- #: ../modules/woocommerce/woocommerce.php:181
2385
- msgid "1"
2386
- msgstr ""
2387
-
2388
- #: ../modules/posts/posts.php:42 ../modules/woocommerce/woocommerce.php:111
2389
- #: ../modules/woocommerce/woocommerce.php:182
2390
- msgid "2"
2391
- msgstr ""
2392
-
2393
- #: ../modules/posts/posts.php:43 ../modules/woocommerce/woocommerce.php:112
2394
- #: ../modules/woocommerce/woocommerce.php:183
2395
- msgid "3"
2396
- msgstr ""
2397
-
2398
- #: ../modules/posts/posts.php:44 ../modules/woocommerce/woocommerce.php:113
2399
- #: ../modules/woocommerce/woocommerce.php:184
2400
- msgid "4"
2401
- msgstr ""
2402
-
2403
- #: ../modules/posts/posts.php:49
2404
- msgid "Posts Per Page"
2405
- msgstr "Posts por página"
2406
-
2407
- #: ../modules/posts/posts.php:56
2408
- msgid "Featured Image"
2409
- msgstr "Imagem Destacada"
2410
-
2411
- #: ../modules/posts/posts.php:64 ../modules/posts/posts.php:104
2412
- #: ../modules/posts/posts.php:114 ../modules/posts/posts.php:123
2413
- #: ../modules/posts/posts.php:132
2414
- msgid "Hide"
2415
- msgstr "Esconder"
2416
-
2417
- #: ../modules/posts/posts.php:77
2418
- msgid "Left of Text"
2419
- msgstr "À Esquerda do Texto"
2420
-
2421
- #: ../modules/posts/posts.php:78
2422
- msgid "Above Text"
2423
- msgstr "Acima do Texto"
2424
-
2425
- #: ../modules/posts/posts.php:100
2426
- msgid "Title"
2427
- msgstr "Título"
2428
-
2429
- #: ../modules/posts/posts.php:112
2430
- msgid "Show Excerpt"
2431
- msgstr "Mostrar Resumo"
2432
-
2433
- #: ../modules/posts/posts.php:113
2434
- msgid "Show Full Text"
2435
- msgstr "Mostrar Texto Completo"
2436
-
2437
- #: ../modules/posts/posts.php:119
2438
- msgid "Author"
2439
- msgstr "Autor"
2440
-
2441
- #: ../modules/posts/posts.php:128 ../modules/woocommerce/woocommerce.php:195
2442
- msgid "Date"
2443
- msgstr "Data"
2444
-
2445
- #: ../modules/rich-text/rich-text.php:15
2446
- msgid "A WYSIWYG text editor."
2447
- msgstr "Um editor WYSIWYG."
2448
-
2449
- #: ../modules/separator/separator.php:14
2450
- msgid "Separator"
2451
- msgstr "Separador"
2452
-
2453
- #: ../modules/separator/separator.php:15
2454
- msgid "A divider line to separate content."
2455
- msgstr "Uma linha divisória para separar o conteúdo."
2456
-
2457
- #: ../modules/separator/separator.php:63
2458
- msgid ""
2459
- "The type of border to use. Double borders must have a height of at least 3px "
2460
- "to render properly."
2461
- msgstr ""
2462
- "O tipo de borda a ser usada. Bordas duplas devem ter uma altura de no mínimo "
2463
- "3px para renderizar adequadamente."
2464
-
2465
- #: ../modules/sidebar/includes/settings-general.php:5
2466
- #: ../modules/sidebar/sidebar.php:14
2467
- msgid "Sidebar"
2468
- msgstr "Barra Lateral"
2469
-
2470
- #: ../modules/sidebar/sidebar.php:15
2471
- msgid ""
2472
- "Display a WordPress sidebar that has been registered by the current theme."
2473
- msgstr ""
2474
- "Exibe uma barra lateral do WordPress que foi registrada no seu tema atual."
2475
-
2476
- #: ../modules/slideshow/slideshow.php:15
2477
- msgid "Display multiple photos in a slideshow view."
2478
- msgstr "Exibe múltiplas fotos em um formato de slideshow."
2479
-
2480
- #: ../modules/slideshow/slideshow.php:302
2481
- #, fuzzy
2482
- msgid "Skin Color"
2483
- msgstr "Tema de Cor"
2484
-
2485
- #: ../modules/slideshow/slideshow.php:305
2486
- msgid "Light"
2487
- msgstr "Claro"
2488
-
2489
- #: ../modules/slideshow/slideshow.php:306
2490
- msgid "Dark"
2491
- msgstr "Escuro"
2492
-
2493
- #: ../modules/slideshow/slideshow.php:308
2494
- msgid ""
2495
- "If your overall theme/images are lighter in color, light will display "
2496
- "buttons in a darker color scheme and vice versa for dark."
2497
- msgstr ""
2498
- "Se a maioria do tema/imagens possuem cores mais claras, \"claro\" irá exibir "
2499
- "botões em um esquema de cores mais escuro, e vice versa para \"escuro\"."
2500
-
2501
- #: ../modules/slideshow/slideshow.php:318
2502
- msgid ""
2503
- "Crop set to no will fit the slideshow images to the height you specify and "
2504
- "keep the width proportional, whereas crop set to yes will fit the slideshow "
2505
- "images to all sides of the content area while cropping the left and right to "
2506
- "fit the height you specify."
2507
- msgstr ""
2508
- "Corte definido como \"não\" irá ajustar as imagens do slideshow à altura que "
2509
- "você especificou e manterá a largura proporcional, enquanto o corte definito "
2510
- "como \"sim\" irá ajustar as imagens do slideshow à todos os lados da área de "
2511
- "conteúdo enquanto as corta à direita e à esquerda para se ajustar à altura "
2512
- "que você especificou."
2513
-
2514
- #: ../modules/slideshow/slideshow.php:322
2515
- msgid "Disable Right-Click"
2516
- msgstr "Desabilitar Botão Direito do Mouse"
2517
-
2518
- #: ../modules/slideshow/slideshow.php:358
2519
- msgid "Playback"
2520
- msgstr ""
2521
-
2522
- #: ../modules/slideshow/slideshow.php:418
2523
- msgid "Controls"
2524
- msgstr "Controles"
2525
-
2526
- #: ../modules/slideshow/slideshow.php:425
2527
- #: ../modules/slideshow/slideshow.php:474
2528
- msgid "Navigation Arrows"
2529
- msgstr "Setas de Navegação"
2530
-
2531
- #: ../modules/slideshow/slideshow.php:431
2532
- msgid ""
2533
- "Navigational arrows allow the visitor to freely move through the images in "
2534
- "your slideshow. These are larger arrows that overlay your slideshow images "
2535
- "and are separate from the control bar navigational arrows."
2536
- msgstr ""
2537
- "Setas de navegação permitem ao visitante mover-se livremente entre as "
2538
- "imagens de seu slideshow. Estas são setas maiores que sobrepõem suas imagens "
2539
- "do slideshow e são separadas das setas de navegação da barra de controle."
2540
-
2541
- #: ../modules/slideshow/slideshow.php:436
2542
- msgid "Control Bar"
2543
- msgstr "Barra de Controle"
2544
-
2545
- #: ../modules/slideshow/slideshow.php:440
2546
- msgid "Nav Type"
2547
- msgstr "Tipo de Navegação"
2548
-
2549
- #: ../modules/slideshow/slideshow.php:444
2550
- msgid "Buttons"
2551
- msgstr "Botões"
2552
-
2553
- #: ../modules/slideshow/slideshow.php:445
2554
- #: ../modules/slideshow/slideshow.php:575
2555
- msgid "Thumbs"
2556
- msgstr "Miniaturas"
2557
-
2558
- #: ../modules/slideshow/slideshow.php:460
2559
- msgid "Nav Position"
2560
- msgstr "Posição da Naveção"
2561
-
2562
- #: ../modules/slideshow/slideshow.php:470
2563
- msgid "Control Bar Buttons"
2564
- msgstr "Botões da Barra de Controle"
2565
-
2566
- #: ../modules/slideshow/slideshow.php:483
2567
- msgid "Play Button"
2568
- msgstr "Botão de Reproduzir"
2569
-
2570
- #: ../modules/slideshow/slideshow.php:492
2571
- msgid "Fullscreen Button"
2572
- msgstr "Botão de Tela Cheia"
2573
-
2574
- #: ../modules/slideshow/slideshow.php:501
2575
- msgid "Photo Count"
2576
- msgstr "Contagem de Fotos"
2577
-
2578
- #: ../modules/slideshow/slideshow.php:510
2579
- msgid "Thumbs Button"
2580
- msgstr "Botão de Miniaturas"
2581
-
2582
- #: ../modules/slideshow/slideshow.php:519
2583
- msgid "Caption Button"
2584
- msgstr "Botão de Legenda"
2585
-
2586
- #: ../modules/slideshow/slideshow.php:528
2587
- msgid "Social Button"
2588
- msgstr "Botão Social"
2589
-
2590
- #: ../modules/slideshow/slideshow.php:538
2591
- #, fuzzy
2592
- msgid "Control Bar Overlay"
2593
- msgstr "Sobreposição da Barra de Controle"
2594
-
2595
- #: ../modules/slideshow/slideshow.php:542
2596
- #, fuzzy
2597
- msgid "Overlay Enabled"
2598
- msgstr "Sobreposição Habilitada"
2599
-
2600
- #: ../modules/slideshow/slideshow.php:553
2601
- #, fuzzy
2602
- msgid ""
2603
- "Control bar overlay specifies if the control bar buttons you choose overlay "
2604
- "your slideshow images or site below the slideshow completely."
2605
- msgstr ""
2606
- "Sobreposição da barra de controle especifica se os botões da barra de "
2607
- "controle que você escolheu irão sobrepor suas imagens do slideshow ou "
2608
- "ficarão abaixo do slideshow por completo."
2609
-
2610
- #: ../modules/slideshow/slideshow.php:557
2611
- msgid "Overlay Hide"
2612
- msgstr "Esconder Invólucro"
2613
-
2614
- #: ../modules/slideshow/slideshow.php:563
2615
- #, fuzzy
2616
- msgid ""
2617
- "Overlay hide will hide the control bar after however many seconds you "
2618
- "specify below. They will reappear upon mouse over."
2619
- msgstr ""
2620
- "Esconder invólucro irá esconder a barra de controle após o número de "
2621
- "segundos que você especificar abaixo. Ele irá reaparecer ao passar o mouse "
2622
- "sobre o elemento."
2623
-
2624
- #: ../modules/slideshow/slideshow.php:567
2625
- msgid "Overlay Hide Delay"
2626
- msgstr "Tempo de Atraso para Esconder Invólucro"
2627
-
2628
- #: ../modules/slideshow/slideshow.php:579
2629
- msgid "Thumbs Size"
2630
- msgstr "Tamanho das Miniaturas"
2631
-
2632
- #: ../modules/slideshow/slideshow.php:588
2633
- msgid "Social"
2634
- msgstr ""
2635
-
2636
- #: ../modules/slideshow/slideshow.php:592
2637
- msgid "Facebook Button"
2638
- msgstr "Botão Facebook"
2639
-
2640
- #: ../modules/slideshow/slideshow.php:601
2641
- msgid "Twitter Button"
2642
- msgstr "Botão Twitter"
2643
-
2644
- #: ../modules/slideshow/slideshow.php:610
2645
- msgid "Google Plus Button"
2646
- msgstr "Botão Google Plus"
2647
-
2648
- #: ../modules/slideshow/slideshow.php:619
2649
- msgid "Pinterest Button"
2650
- msgstr "Botão Pinterest"
2651
-
2652
- #: ../modules/social-buttons/social-buttons.php:14
2653
- msgid "Social Buttons"
2654
- msgstr "Botões Sociais"
2655
-
2656
- #: ../modules/social-buttons/social-buttons.php:15
2657
- msgid "Displays social buttons."
2658
- msgstr "Exibe botões de redes sociais."
2659
-
2660
- #: ../modules/social-buttons/social-buttons.php:69
2661
- msgid "Target URL"
2662
- msgstr "URL de destino"
2663
-
2664
- #: ../modules/social-buttons/social-buttons.php:73
2665
- msgid "Current Page"
2666
- msgstr "Página Atual"
2667
-
2668
- #: ../modules/social-buttons/social-buttons.php:80
2669
- msgid ""
2670
- "The Target URL field correlates to the page you would like your social icons "
2671
- "to interface with. For example, if you show Facebook, the user will \"Like\" "
2672
- "whatever you put in this field."
2673
- msgstr ""
2674
- "O campo de URL de Destino correlaciona-se à página a qual você deseja que "
2675
- "seus ícones de redes sociais façam referência. Por exemplo, se você mostrar "
2676
- "o ícone do Facebook, o usuário irá \"Curtir\" qualquer página que você "
2677
- "colocar neste campo."
2678
-
2679
- #: ../modules/social-buttons/social-buttons.php:84
2680
- msgid "Custom URL"
2681
- msgstr "URL Personalizada"
2682
-
2683
- #: ../modules/social-buttons/social-buttons.php:99
2684
- msgid "Show Facebook"
2685
- msgstr "Mostrar Facebook"
2686
-
2687
- #: ../modules/social-buttons/social-buttons.php:108
2688
- msgid "Show Twitter"
2689
- msgstr "Mostrar Twitter"
2690
-
2691
- #: ../modules/social-buttons/social-buttons.php:117
2692
- msgid "Show Google+"
2693
- msgstr "Mostrar Google+"
2694
-
2695
- #: ../modules/testimonials/testimonials.php:14
2696
- #: ../modules/testimonials/testimonials.php:165
2697
- msgid "Testimonials"
2698
- msgstr "Depoimentos"
2699
-
2700
- #: ../modules/testimonials/testimonials.php:15
2701
- msgid "An animated tesimonials area."
2702
- msgstr "Uma área de depoimentos com animação."
2703
-
2704
- #: ../modules/testimonials/testimonials.php:40
2705
- msgid "Wide"
2706
- msgstr "Extenso"
2707
-
2708
- #: ../modules/testimonials/testimonials.php:41
2709
- msgid "Compact"
2710
- msgstr "Compacto"
2711
-
2712
- #: ../modules/testimonials/testimonials.php:51
2713
- msgid "Wide is for 1 column rows, compact is for multi-column rows."
2714
- msgstr ""
2715
- "Extenso é para linhas com somente 1 coluna, compacto é para linhas com "
2716
- "várias colunas."
2717
-
2718
- #: ../modules/testimonials/testimonials.php:74
2719
- msgid "Slider Settings"
2720
- msgstr "Configurações de Slider"
2721
-
2722
- #: ../modules/testimonials/testimonials.php:131
2723
- msgid "Arrow Color"
2724
- msgstr "Cor da Seta"
2725
-
2726
- #: ../modules/testimonials/testimonials.php:156
2727
- msgid "Dot Color"
2728
- msgstr "Cor do Ponto"
2729
-
2730
- #: ../modules/testimonials/testimonials.php:172
2731
- msgid "Testimonial"
2732
- msgstr "Depoimentos"
2733
-
2734
- #: ../modules/testimonials/testimonials.php:188
2735
- msgid "Add Testimonial"
2736
- msgstr "Adicionar Depoimento"
2737
-
2738
- #: ../modules/video/video.php:20
2739
- msgid "Render a WordPress or embedable video."
2740
- msgstr "Renderiza um vídeo do WordPress ou um vídeo incorporado."
2741
-
2742
- #: ../modules/video/video.php:82
2743
- msgid "Video Type"
2744
- msgstr "Tipo de Vídeo"
2745
-
2746
- #: ../modules/video/video.php:86
2747
- #, fuzzy
2748
- msgid "Embed"
2749
- msgstr "Incorporar"
2750
-
2751
- #: ../modules/video/video.php:116
2752
- msgid "Loop"
2753
- msgstr "Repetir"
2754
-
2755
- #: ../modules/widget/includes/frontend.php:20
2756
- msgid " no longer exists."
2757
- msgstr " não existe mais."
2758
-
2759
- #: ../modules/widget/widget.php:14
2760
- msgid "Widget"
2761
- msgstr ""
2762
-
2763
- #: ../modules/widget/widget.php:15
2764
- msgid "Display a WordPress widget."
2765
- msgstr "Exibe um widget do WordPress."
2766
-
2767
- #: ../modules/woocommerce/woocommerce.php:16
2768
- msgid "WooCommerce"
2769
- msgstr ""
2770
-
2771
- #: ../modules/woocommerce/woocommerce.php:17
2772
- msgid "Display products or categories from your WooCommerce store."
2773
- msgstr "Exibe produtos ou categorias de sua loja do WooCommerce."
2774
-
2775
- #: ../modules/woocommerce/woocommerce.php:60
2776
- msgid "Choose…"
2777
- msgstr "Escolher..."
2778
-
2779
- #: ../modules/woocommerce/woocommerce.php:61
2780
- msgid "Single Product"
2781
- msgstr "Único Produto"
2782
-
2783
- #: ../modules/woocommerce/woocommerce.php:62
2784
- #: ../modules/woocommerce/woocommerce.php:119
2785
- msgid "Multiple Products"
2786
- msgstr "Vários Produtos"
2787
-
2788
- #: ../modules/woocommerce/woocommerce.php:63
2789
- msgid "Add to Cart Button"
2790
- msgstr "Botão de Adicionar ao Carrinho"
2791
-
2792
- #: ../modules/woocommerce/woocommerce.php:64
2793
- msgid "Categories"
2794
- msgstr "Categorias"
2795
-
2796
- #: ../modules/woocommerce/woocommerce.php:65
2797
- msgid "Cart"
2798
- msgstr "Carrinho de Compras"
2799
-
2800
- #: ../modules/woocommerce/woocommerce.php:66
2801
- msgid "Checkout"
2802
- msgstr ""
2803
-
2804
- #: ../modules/woocommerce/woocommerce.php:67
2805
- msgid "View Order"
2806
- msgstr "Ver Pedido"
2807
-
2808
- #: ../modules/woocommerce/woocommerce.php:68
2809
- #, fuzzy
2810
- msgid "Pay"
2811
- msgstr "Pagar"
2812
-
2813
- #: ../modules/woocommerce/woocommerce.php:69
2814
- msgid "Thank You"
2815
- msgstr "Obrigado"
2816
-
2817
- #: ../modules/woocommerce/woocommerce.php:70
2818
- msgid "Order Tracking"
2819
- msgstr "Rastreamento de Pedidos"
2820
-
2821
- #: ../modules/woocommerce/woocommerce.php:71
2822
- msgid "My Account"
2823
- msgstr "Minha Conta"
2824
-
2825
- #: ../modules/woocommerce/woocommerce.php:72
2826
- msgid "Edit Address"
2827
- msgstr "Editar Endereço"
2828
-
2829
- #: ../modules/woocommerce/woocommerce.php:73
2830
- msgid "Change Password"
2831
- msgstr "Mudar Senha"
2832
-
2833
- #: ../modules/woocommerce/woocommerce.php:74
2834
- msgid "Lost Password"
2835
- msgstr "Senha Perdida"
2836
-
2837
- #: ../modules/woocommerce/woocommerce.php:93
2838
- msgid "Product ID"
2839
- msgstr "ID do Produto"
2840
-
2841
- #: ../modules/woocommerce/woocommerce.php:96
2842
- #, fuzzy
2843
- msgid ""
2844
- "As you add products in the WooCommerce Products area, each will be assigned "
2845
- "a unique ID. You can find this unique product ID by visiting the Products "
2846
- "area and rolling over the product. The unique ID will be the first attribute."
2847
- msgstr ""
2848
- "Conforme você adiciona produtos na área de Produtos do WooCommerce, cada um "
2849
- "deles receberá um ID único. Você pode encontrar este ID único visitando a "
2850
- "área de Produtos e passando o mouse sobre o produto. O ID único será o "
2851
- "primeiro atributo."
2852
-
2853
- #: ../modules/woocommerce/woocommerce.php:100
2854
- msgid "Parent Category ID"
2855
- msgstr "ID da Categoria Pai"
2856
-
2857
- #: ../modules/woocommerce/woocommerce.php:103
2858
- msgid ""
2859
- "As you add product categories in the WooCommerce Products area, each will be "
2860
- "assigned a unique ID. This ID can be found by hovering on the category in "
2861
- "the categories area under Products and looking in the URL that is displayed "
2862
- "in your browser. The ID will be the only number value in the URL."
2863
- msgstr ""
2864
- "Conforme você adiciona produtos na área de Produtos do WooCommerce, cada um "
2865
- "deles receberá um ID único. Este ID pode ser encontrado passando o mouse "
2866
- "sobre a categoria na área de categorias em Produtos e observando a URL que é "
2867
- "exibida em seu navegador. O ID será o único valor em número na URL."
2868
-
2869
- #: ../modules/woocommerce/woocommerce.php:123
2870
- #, fuzzy
2871
- msgid "Products Source"
2872
- msgstr "Fonte dos Produtos"
2873
-
2874
- #: ../modules/woocommerce/woocommerce.php:126
2875
- msgid "Products IDs"
2876
- msgstr "IDs dos Produtos"
2877
-
2878
- #: ../modules/woocommerce/woocommerce.php:127
2879
- msgid "Product Category"
2880
- msgstr "Categoria de Produto"
2881
-
2882
- #: ../modules/woocommerce/woocommerce.php:128
2883
- msgid "Recent Products"
2884
- msgstr "Produtos Recentes"
2885
-
2886
- #: ../modules/woocommerce/woocommerce.php:129
2887
- msgid "Featured Products"
2888
- msgstr "Produtos em Destaque"
2889
-
2890
- #: ../modules/woocommerce/woocommerce.php:130
2891
- msgid "Sale Products"
2892
- msgstr "Produtos em Promoção"
2893
-
2894
- #: ../modules/woocommerce/woocommerce.php:131
2895
- msgid "Best Selling Products"
2896
- msgstr "Produtos Mais Vendidos"
2897
-
2898
- #: ../modules/woocommerce/woocommerce.php:132
2899
- msgid "Top Rated Products"
2900
- msgstr "Produtos mais Bem Avaliados"
2901
-
2902
- #: ../modules/woocommerce/woocommerce.php:160
2903
- msgid "Product IDs"
2904
- msgstr "IDs de Produto"
2905
-
2906
- #: ../modules/woocommerce/woocommerce.php:162
2907
- msgid ""
2908
- "As you add products in the WooCommerce Products area, each will be assigned "
2909
- "a unique ID. You can find this unique product ID by visiting the Products "
2910
- "area and rolling over the product. The unique ID will be the first attribute "
2911
- "and you can add several here separated by a comma."
2912
- msgstr ""
2913
- "Conforme você adiciona produtos na área de Produtos do WooCommerce, cada um "
2914
- "deles receberá um ID único. Você pode encontrar este ID único visitando a "
2915
- "área de Produtos e passando o mouse sobre o produto. O ID único será o "
2916
- "primeiro atributo, e você pode adicionar vários aqui, separado-os por "
2917
- "vírgulas."
2918
-
2919
- #: ../modules/woocommerce/woocommerce.php:166
2920
- msgid "Category Slug"
2921
- msgstr "Slug de Categoria"
2922
-
2923
- #: ../modules/woocommerce/woocommerce.php:168
2924
- msgid ""
2925
- "As you add product categories in the WooCommerce Products area, each will be "
2926
- "assigned a unique slug or you can edit and add your own. These slugs can be "
2927
- "found in the Categories area under WooCommerce Products. Several can be "
2928
- "added here separated by a comma."
2929
- msgstr ""
2930
- "Conforme você adiciona produtos na área de Produtos do WooCommerce, cada um "
2931
- "deles receberá um slug único ou você pode editar e adicionar um de sua "
2932
- "preferência. Esses slugs podem ser econtrados ná área de Categorias em "
2933
- "Produtos do WooCommerce. Vários podem ser adicionados aqui, separando-os por "
2934
- "vírgulas."
2935
-
2936
- #: ../modules/woocommerce/woocommerce.php:172
2937
- msgid "Number of Products"
2938
- msgstr "Número de Produtos"
2939
-
2940
- #: ../modules/woocommerce/woocommerce.php:189
2941
- msgid "Sort By"
2942
- msgstr "Ordenar Por"
2943
-
2944
- #: ../modules/woocommerce/woocommerce.php:193
2945
- msgid "Popularity"
2946
- msgstr "Popularidade"
2947
-
2948
- #: ../modules/woocommerce/woocommerce.php:194
2949
- msgid "Rating"
2950
- msgstr "Avaliações"
2951
-
2952
- #: ../modules/woocommerce/woocommerce.php:196
2953
- msgid "Price: Low to High"
2954
- msgstr "Preço: Mais Baixo para Mais Alto"
2955
-
2956
- #: ../modules/woocommerce/woocommerce.php:197
2957
- msgid "Price: High to Low"
2958
- msgstr "Preço: Mais Alto para Mais Baixo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/fl-builder-sv_SE.mo DELETED
Binary file
lang/fl-builder-sv_SE.po DELETED
@@ -1,3086 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: FastLine Page Builder\n"
4
- "POT-Creation-Date: 2014-10-22 14:35-0800\n"
5
- "PO-Revision-Date: 2014-10-24 17:45+0100\n"
6
- "Last-Translator: \n"
7
- "Language-Team: \n"
8
- "Language: sv\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.10\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ./\n"
15
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Poedit-SearchPath-0: ..\n"
17
-
18
- #: ../classes/FLBuilder.php:693
19
- msgid "Add"
20
- msgstr "Lägg till"
21
-
22
- #: ../classes/FLBuilder.php:761
23
- msgid "Add New Layout Template"
24
- msgstr "Lägg till ny layoutmall"
25
-
26
- #: ../classes/FLBuilder.php:762
27
- msgid "New Layout Template"
28
- msgstr "Ny layoutmall"
29
-
30
- #: ../classes/FLBuilder.php:763
31
- msgid "Edit Layout Template"
32
- msgstr "Redigera layoutmall"
33
-
34
- #: ../classes/FLBuilder.php:764
35
- msgid "View Layout Template"
36
- msgstr "Visa layoutmallar"
37
-
38
- #: ../classes/FLBuilder.php:765
39
- msgid "All Layout Templates"
40
- msgstr "Alla layoutmallar"
41
-
42
- #: ../classes/FLBuilder.php:766
43
- msgid "Search Layout Templates"
44
- msgstr "Sök layoutmallar"
45
-
46
- #: ../classes/FLBuilder.php:767
47
- msgid "Parent Layout Templates:"
48
- msgstr "Föräldralayoutmall:"
49
-
50
- #: ../classes/FLBuilder.php:768
51
- msgid "No layout templates found."
52
- msgstr "Inga layoutmallar hittades."
53
-
54
- #: ../classes/FLBuilder.php:769
55
- msgid "No layout templates found in Trash."
56
- msgstr "Inga layoutmallar hittades i papperskorgen."
57
-
58
- #: ../classes/FLBuilder.php:1105
59
- msgid " Settings"
60
- msgstr "Inställningar"
61
-
62
- #: ../classes/FLBuilderAdmin.php:48
63
- #, php-format
64
- msgid ""
65
- "This version of the <strong>Page Builder</strong> plugin is not compatible "
66
- "with WordPress Multisite. <a href=\"%s\" target=\"_blank\">Please upgrade</"
67
- "a> to the Multisite version of this plugin."
68
- msgstr ""
69
- "Denna version av <strong>Sidbyggaren</strong> är inte kompatibel med "
70
- "WordPress Multisite. <a href=\"%s\" target=\"_blank\">Var vänlig uppgradera</"
71
- "a> till Multisite-versionen av denna plugin"
72
-
73
- #: ../classes/FLBuilderAdmin.php:59
74
- msgid ""
75
- "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
76
- "greater. Please update WordPress before activating the plugin."
77
- msgstr ""
78
- "<strong>Sidbyggaren</strong> kräver WordPress version 3.5 eller högre. Var "
79
- "vänlig uppdatera WordPress innan du aktiverar denna plugin."
80
-
81
- #: ../classes/FLBuilderAdmin.php:88
82
- #, php-format
83
- msgid ""
84
- "Page Builder activated! <a href=\"%s\">Click here</a> to enable remote "
85
- "updates."
86
- msgstr ""
87
- "Fastline Page Builder activated! <a href=\"%s\">Klicka här</a> för att "
88
- "aktivera automatiska uppdateringar."
89
-
90
- #: ../classes/FLBuilderAdmin.php:258
91
- msgid "Upgrade"
92
- msgstr "Uppgradera"
93
-
94
- #: ../classes/FLBuilderModel.php:1753
95
- msgid "Copy of "
96
- msgstr "Kopia av"
97
-
98
- #: ../classes/FLBuilderModel.php:2291 ../includes/admin-settings.php:4
99
- #: ../includes/ui.php:8 ../includes/ui.php:15
100
- msgid "Page Builder"
101
- msgstr "Sidbyggaren"
102
-
103
- #: ../classes/FLBuilderPhoto.php:75 ../includes/js-config.php:32
104
- msgid "Full Size"
105
- msgstr "Full storlek"
106
-
107
- #: ../classes/FLBuilderPhoto.php:76 ../includes/js-config.php:34
108
- #: ../modules/accordion/accordion.php:67 ../modules/gallery/gallery.php:265
109
- msgid "Large"
110
- msgstr "Stor"
111
-
112
- #: ../classes/FLBuilderPhoto.php:77 ../includes/js-config.php:36
113
- #: ../includes/row-settings.php:332 ../modules/accordion/accordion.php:66
114
- #: ../modules/gallery/gallery.php:264
115
- msgid "Medium"
116
- msgstr "Medium"
117
-
118
- #: ../classes/FLBuilderPhoto.php:78 ../includes/js-config.php:58
119
- msgid "Thumbnail"
120
- msgstr "Tumnagel"
121
-
122
- #: ../classes/FLBuilderTemplates.php:28
123
- msgid "Page Builder Templates"
124
- msgstr "Sidbyggarens Mallar"
125
-
126
- #: ../includes/admin-branding.php:3 ../includes/admin-settings.php:17
127
- msgid "Branding"
128
- msgstr "Varumärkning"
129
-
130
- #: ../includes/admin-branding.php:4
131
- msgid "White label the page builder by entering a custom name below."
132
- msgstr "Ändra namn på Sidbyggaren genom att ge den ett eget namn nedan"
133
-
134
- #: ../includes/admin-branding.php:6 ../includes/admin-settings.php:153
135
- #: ../includes/admin-settings.php:156 ../includes/updater/includes/form.php:24
136
- msgid "NOTE:"
137
- msgstr "NOTERA:"
138
-
139
- #: ../includes/admin-branding.php:6 ../includes/admin-settings.php:156
140
- #: ../includes/updater/includes/form.php:24
141
- msgid "This applies to all sites on the network."
142
- msgstr "Detta gäller för alla sidor på wordpress (multisite)"
143
-
144
- #: ../includes/admin-edit-template.php:3
145
- msgid "Edit Template"
146
- msgstr "Redigera mall"
147
-
148
- #: ../includes/admin-edit-template.php:8 ../includes/admin-templates.php:10
149
- #: ../includes/template-settings.php:14
150
- #: ../includes/user-template-settings.php:15
151
- #: ../modules/contact-form/includes/frontend.php:4
152
- msgid "Name"
153
- msgstr "Namn"
154
-
155
- #: ../includes/admin-edit-template.php:12 ../modules/callout/callout.php:304
156
- #: ../modules/post-grid/post-grid.php:113
157
- msgid "Image"
158
- msgstr "Bild"
159
-
160
- #: ../includes/admin-edit-template.php:16 ../includes/row-settings.php:155
161
- #: ../includes/template-settings.php:23 ../modules/callout/callout.php:351
162
- #: ../modules/callout/callout.php:371
163
- #: ../modules/content-slider/content-slider.php:465
164
- #: ../modules/post-grid/post-grid.php:127
165
- msgid "Position"
166
- msgstr "Position"
167
-
168
- #: ../includes/admin-edit-template.php:20 ../includes/admin-templates.php:12
169
- #: ../includes/template-settings.php:28
170
- msgid "Premium"
171
- msgstr "Premium"
172
-
173
- #: ../includes/admin-edit-template.php:23 ../includes/global-settings.php:18
174
- #: ../includes/global-settings.php:87 ../includes/row-settings.php:307
175
- #: ../includes/template-settings.php:31 ../modules/accordion/accordion.php:90
176
- #: ../modules/button/button.php:137 ../modules/callout/callout.php:418
177
- #: ../modules/callout/callout.php:535
178
- #: ../modules/content-slider/content-slider.php:202
179
- #: ../modules/content-slider/content-slider.php:216
180
- #: ../modules/content-slider/content-slider.php:250
181
- #: ../modules/content-slider/content-slider.php:259
182
- #: ../modules/content-slider/content-slider.php:530
183
- #: ../modules/content-slider/content-slider.php:644 ../modules/cta/cta.php:290
184
- #: ../modules/icon-group/icon-group.php:82 ../modules/icon/icon.php:114
185
- #: ../modules/slideshow/slideshow.php:315
186
- #: ../modules/slideshow/slideshow.php:325
187
- #: ../modules/slideshow/slideshow.php:377
188
- #: ../modules/slideshow/slideshow.php:418
189
- #: ../modules/slideshow/slideshow.php:440
190
- #: ../modules/slideshow/slideshow.php:489
191
- #: ../modules/slideshow/slideshow.php:498
192
- #: ../modules/slideshow/slideshow.php:507
193
- #: ../modules/slideshow/slideshow.php:516
194
- #: ../modules/slideshow/slideshow.php:525
195
- #: ../modules/slideshow/slideshow.php:534
196
- #: ../modules/slideshow/slideshow.php:543
197
- #: ../modules/slideshow/slideshow.php:557
198
- #: ../modules/slideshow/slideshow.php:572
199
- #: ../modules/slideshow/slideshow.php:607
200
- #: ../modules/slideshow/slideshow.php:619
201
- #: ../modules/slideshow/slideshow.php:631
202
- #: ../modules/slideshow/slideshow.php:643
203
- #: ../modules/social-buttons/social-buttons.php:111
204
- #: ../modules/social-buttons/social-buttons.php:120
205
- #: ../modules/social-buttons/social-buttons.php:129
206
- #: ../modules/testimonials/testimonials.php:85
207
- #: ../modules/testimonials/testimonials.php:124
208
- #: ../modules/testimonials/testimonials.php:154 ../modules/video/video.php:111
209
- #: ../modules/video/video.php:123
210
- msgid "No"
211
- msgstr "Nej"
212
-
213
- #: ../includes/admin-edit-template.php:24 ../includes/global-settings.php:19
214
- #: ../includes/global-settings.php:88 ../includes/row-settings.php:308
215
- #: ../includes/template-settings.php:32 ../modules/accordion/accordion.php:89
216
- #: ../modules/button/button.php:138 ../modules/callout/callout.php:419
217
- #: ../modules/callout/callout.php:536
218
- #: ../modules/content-slider/content-slider.php:203
219
- #: ../modules/content-slider/content-slider.php:217
220
- #: ../modules/content-slider/content-slider.php:251
221
- #: ../modules/content-slider/content-slider.php:260
222
- #: ../modules/content-slider/content-slider.php:531
223
- #: ../modules/content-slider/content-slider.php:645 ../modules/cta/cta.php:291
224
- #: ../modules/icon-group/icon-group.php:83 ../modules/icon/icon.php:115
225
- #: ../modules/slideshow/slideshow.php:316
226
- #: ../modules/slideshow/slideshow.php:326
227
- #: ../modules/slideshow/slideshow.php:378
228
- #: ../modules/slideshow/slideshow.php:419
229
- #: ../modules/slideshow/slideshow.php:441
230
- #: ../modules/slideshow/slideshow.php:490
231
- #: ../modules/slideshow/slideshow.php:499
232
- #: ../modules/slideshow/slideshow.php:508
233
- #: ../modules/slideshow/slideshow.php:517
234
- #: ../modules/slideshow/slideshow.php:526
235
- #: ../modules/slideshow/slideshow.php:535
236
- #: ../modules/slideshow/slideshow.php:544
237
- #: ../modules/slideshow/slideshow.php:558
238
- #: ../modules/slideshow/slideshow.php:573
239
- #: ../modules/slideshow/slideshow.php:608
240
- #: ../modules/slideshow/slideshow.php:620
241
- #: ../modules/slideshow/slideshow.php:632
242
- #: ../modules/slideshow/slideshow.php:644
243
- #: ../modules/social-buttons/social-buttons.php:110
244
- #: ../modules/social-buttons/social-buttons.php:119
245
- #: ../modules/social-buttons/social-buttons.php:128
246
- #: ../modules/testimonials/testimonials.php:86
247
- #: ../modules/testimonials/testimonials.php:125
248
- #: ../modules/testimonials/testimonials.php:155 ../modules/video/video.php:112
249
- #: ../modules/video/video.php:124
250
- msgid "Yes"
251
- msgstr "Ja"
252
-
253
- #: ../includes/admin-edit-template.php:29 ../includes/admin-templates.php:11
254
- #: ../includes/template-settings.php:37
255
- msgid "Category"
256
- msgstr "Kategori"
257
-
258
- #: ../includes/admin-edit-template.php:32 ../includes/template-settings.php:40
259
- msgid "Landing Pages"
260
- msgstr "Landningssida"
261
-
262
- #: ../includes/admin-edit-template.php:33 ../includes/template-settings.php:41
263
- msgid "Company Info"
264
- msgstr "Företagsinformation"
265
-
266
- #: ../includes/admin-edit-template.php:40
267
- msgid "Update Template"
268
- msgstr "Uppdatera mall"
269
-
270
- #: ../includes/admin-posts.php:3 ../modules/rich-text/rich-text.php:14
271
- msgid "Text Editor"
272
- msgstr "Textredigerare"
273
-
274
- #: ../includes/admin-posts.php:7
275
- msgid "is currently active for this page."
276
- msgstr "är aktiv för denna sida"
277
-
278
- #: ../includes/admin-posts.php:8
279
- msgid "Launch"
280
- msgstr "Starta"
281
-
282
- #: ../includes/admin-settings.php:7 ../includes/global-settings.php:4
283
- #: ../includes/js-config.php:54
284
- msgid "Settings"
285
- msgstr "Inställningar"
286
-
287
- #: ../includes/admin-settings.php:12
288
- msgid "License"
289
- msgstr "Licens"
290
-
291
- #: ../includes/admin-settings.php:13 ../includes/global-settings.php:67
292
- msgid "Modules"
293
- msgstr "Moduler"
294
-
295
- #: ../includes/admin-settings.php:14 ../includes/ui.php:22
296
- msgid "Templates"
297
- msgstr "Mallar"
298
-
299
- #: ../includes/admin-settings.php:15 ../includes/admin-settings.php:102
300
- msgid "Post Types"
301
- msgstr "Posttyper"
302
-
303
- #: ../includes/admin-settings.php:19 ../includes/admin-settings.php:149
304
- #: ../includes/admin-settings.php:161
305
- msgid "Uninstall"
306
- msgstr "Avinstallera"
307
-
308
- #: ../includes/admin-settings.php:34
309
- msgid "Enabled Modules"
310
- msgstr "Aktiverade moduler"
311
-
312
- #: ../includes/admin-settings.php:35
313
- msgid "Check or uncheck modules below to enable or disable them."
314
- msgstr ""
315
- "Markera eller avmarkera moduler nedan för att aktivera eller inaktivera dem."
316
-
317
- #: ../includes/admin-settings.php:46
318
- msgid "All"
319
- msgstr "Alla"
320
-
321
- #: ../includes/admin-settings.php:74 ../includes/template-settings.php:4
322
- msgid "Template Settings"
323
- msgstr "Mallinställningar"
324
-
325
- #: ../includes/admin-settings.php:75
326
- msgid "Enable or disable templates using the options below."
327
- msgstr "Aktivera eller avaktivera mallar genom valen nedan"
328
-
329
- #: ../includes/admin-settings.php:84
330
- msgid "Enable All Templates"
331
- msgstr "Aktivera alla mallar"
332
-
333
- #: ../includes/admin-settings.php:85
334
- msgid "Enable Core Templates Only"
335
- msgstr "Aktivera Grundmallar enbart"
336
-
337
- #: ../includes/admin-settings.php:86
338
- msgid "Enable User Templates Only"
339
- msgstr "Aktivera användarmallar enbart"
340
-
341
- #: ../includes/admin-settings.php:87
342
- msgid "Disable All Templates"
343
- msgstr "Inaktivera alla mallar"
344
-
345
- #: ../includes/admin-settings.php:103
346
- msgid "Select the post types you would like the builder to work with."
347
- msgstr "Välj de posttyper som du vill att Sidbyggaren ska arbeta med."
348
-
349
- #: ../includes/admin-settings.php:104
350
- msgid "NOTE: Not all custom post types may be supported."
351
- msgstr "OBS: Inte alla anpassade posttyper kan stödjas."
352
-
353
- #: ../includes/admin-settings.php:151
354
- msgid ""
355
- "Clicking the button below will uninstall the page builder plugin and delete "
356
- "all of the data associated with it. You can uninstall or deactivate the page "
357
- "builder from the plugins page instead if you do not wish to delete the data."
358
- msgstr ""
359
- "Genom att klicka på knappen nedan kommer du att avinstallera Sidbyggaren och "
360
- "ta bort alla dess uppgifter, inklusive alla databastabeller och metadata med "
361
- "den. Du kan inaktivera Sidbyggaren från sidan tillägg i stället om du inte "
362
- "vill ta bort data."
363
-
364
- #: ../includes/admin-settings.php:153
365
- msgid ""
366
- "The builder does not delete the post meta _fl_builder_data, "
367
- "_fl_builder_draft and _fl_builder_enabled in case you want to reinstall it "
368
- "later. If you do, the builder will rebuild all of its data using those meta "
369
- "values."
370
- msgstr ""
371
- "Sidbyggaren tar inte bort posten meta \"_fl_builder_layout_export\" och "
372
- "\"_fl_builder_enabled\" om du vill installera om det senare. Om du gör det "
373
- "kommer sidbyggaren bygga all sin data med hjälp av dessa metavärden."
374
-
375
- #: ../includes/admin-settings.php:200
376
- msgid ""
377
- "Please type \"uninstall\" in the box below to confirm that you really want "
378
- "to uninstall the page builder and all of its data."
379
- msgstr ""
380
- "Skriv in \"uninstall\" i boxen nedan för att konfirmera att du verkligen "
381
- "vill avinstallera sidbyggaren och all dess data"
382
-
383
- #: ../includes/admin-templates.php:3
384
- msgid "Page Builder Template"
385
- msgstr "Sidbyggaren-mallar"
386
-
387
- #: ../includes/admin-templates.php:25 ../includes/fields.php:74
388
- #: ../includes/fields.php:176 ../includes/template-selector.php:83
389
- msgid "Edit"
390
- msgstr "Ändra"
391
-
392
- #: ../includes/admin-templates.php:27 ../includes/template-selector.php:84
393
- msgid "Delete"
394
- msgstr "Ta bort"
395
-
396
- #: ../includes/column-settings.php:4 ../includes/js-config.php:18
397
- msgid "Column Settings"
398
- msgstr "Kolumninställningar"
399
-
400
- #: ../includes/column-settings.php:7 ../includes/module-settings.php:92
401
- #: ../includes/row-settings.php:9 ../modules/accordion/accordion.php:45
402
- #: ../modules/button/button.php:97 ../modules/callout/callout.php:240
403
- #: ../modules/content-slider/content-slider.php:418 ../modules/cta/cta.php:98
404
- #: ../modules/heading/heading.php:70 ../modules/icon-group/icon-group.php:46
405
- #: ../modules/icon/icon.php:78 ../modules/separator/separator.php:72
406
- #: ../modules/tabs/tabs.php:45
407
- msgid "Style"
408
- msgstr "Utseende"
409
-
410
- #: ../includes/column-settings.php:14
411
- msgid "Column Width"
412
- msgstr "Kolumnbredd"
413
-
414
- #: ../includes/column-settings.php:16
415
- #: ../modules/content-slider/content-slider.php:478
416
- #: ../modules/content-slider/content-slider.php:546
417
- msgid "%"
418
- msgstr "%"
419
-
420
- #: ../includes/column-settings.php:26 ../includes/row-settings.php:48
421
- #: ../modules/button/button.php:55 ../modules/callout/callout.php:224
422
- #: ../modules/callout/callout.php:477 ../modules/callout/callout.php:493
423
- #: ../modules/content-slider/content-slider.php:375
424
- #: ../modules/content-slider/content-slider.php:610 ../modules/cta/cta.php:81
425
- #: ../modules/cta/cta.php:218
426
- msgid "Text"
427
- msgstr "Text"
428
-
429
- #: ../includes/column-settings.php:30 ../includes/column-settings.php:43
430
- #: ../includes/column-settings.php:100 ../includes/row-settings.php:52
431
- #: ../includes/row-settings.php:69 ../includes/row-settings.php:109
432
- #: ../includes/row-settings.php:379 ../modules/callout/callout.php:389
433
- #: ../modules/content-slider/content-slider.php:330
434
- #: ../modules/icon-group/icon-group.php:53 ../modules/icon/icon.php:85
435
- #: ../modules/separator/separator.php:34
436
- msgid "Color"
437
- msgstr "Färg"
438
-
439
- #: ../includes/column-settings.php:39 ../includes/row-settings.php:105
440
- #: ../modules/button/button.php:104 ../modules/callout/callout.php:402
441
- #: ../modules/callout/callout.php:502
442
- #: ../modules/content-slider/content-slider.php:356
443
- #: ../modules/content-slider/content-slider.php:619 ../modules/cta/cta.php:194
444
- #: ../modules/cta/cta.php:257 ../modules/icon-group/icon-group.php:66
445
- #: ../modules/icon/icon.php:98
446
- msgid "Background Color"
447
- msgstr "Bakgrundsfärg"
448
-
449
- #: ../includes/column-settings.php:51 ../includes/column-settings.php:108
450
- #: ../includes/row-settings.php:117 ../includes/row-settings.php:387
451
- #: ../modules/separator/separator.php:44
452
- msgid "Opacity"
453
- msgstr "Genomskinlighet"
454
-
455
- #: ../includes/column-settings.php:63 ../includes/row-settings.php:342
456
- msgid "Border"
457
- msgstr "Kantlinje"
458
-
459
- #: ../includes/column-settings.php:67 ../includes/row-settings.php:65
460
- #: ../includes/row-settings.php:346 ../modules/callout/callout.php:473
461
- #: ../modules/content-slider/content-slider.php:324
462
- #: ../modules/content-slider/content-slider.php:371
463
- #: ../modules/content-slider/content-slider.php:590
464
- #: ../modules/content-slider/content-slider.php:689
465
- #: ../modules/slideshow/slideshow.php:339
466
- msgid "Type"
467
- msgstr "Typ"
468
-
469
- #: ../includes/column-settings.php:69 ../includes/row-settings.php:348
470
- msgid ""
471
- "The type of border to use. Double borders must have a width of at least 3px "
472
- "to render properly."
473
- msgstr ""
474
- "Den typen av kantlinje som ska användas. Dubbla kantlinjer måste ha en bredd "
475
- "på minst 3px för att visas korrekt."
476
-
477
- #: ../includes/column-settings.php:71 ../includes/module-settings.php:94
478
- #: ../includes/row-settings.php:68 ../includes/row-settings.php:143
479
- #: ../includes/row-settings.php:191 ../includes/row-settings.php:276
480
- #: ../includes/row-settings.php:350 ../modules/callout/callout.php:314
481
- #: ../modules/callout/callout.php:342 ../modules/callout/callout.php:476
482
- #: ../modules/content-slider/content-slider.php:331
483
- #: ../modules/content-slider/content-slider.php:378
484
- #: ../modules/content-slider/content-slider.php:593
485
- #: ../modules/gallery/gallery.php:292 ../modules/photo/photo.php:386
486
- #: ../modules/photo/photo.php:431 ../modules/post-grid/post-grid.php:76
487
- #: ../modules/slideshow/slideshow.php:342
488
- #: ../modules/slideshow/slideshow.php:393
489
- #: ../modules/slideshow/slideshow.php:455
490
- msgid "None"
491
- msgstr "Inget"
492
-
493
- #: ../includes/column-settings.php:72 ../includes/row-settings.php:351
494
- #: ../modules/separator/separator.php:75
495
- msgid "Solid"
496
- msgstr "Hel"
497
-
498
- #: ../includes/column-settings.php:73 ../includes/row-settings.php:352
499
- #: ../modules/separator/separator.php:76
500
- msgid "Dashed"
501
- msgstr "Streckad"
502
-
503
- #: ../includes/column-settings.php:74 ../includes/row-settings.php:353
504
- #: ../modules/separator/separator.php:77
505
- msgid "Dotted"
506
- msgstr "Prickad"
507
-
508
- #: ../includes/column-settings.php:75 ../includes/row-settings.php:354
509
- #: ../modules/separator/separator.php:78
510
- msgid "Double"
511
- msgstr "Dubbla"
512
-
513
- #: ../includes/column-settings.php:119 ../includes/row-settings.php:398
514
- msgid "Top Width"
515
- msgstr "Topp bredd"
516
-
517
- #: ../includes/column-settings.php:121 ../includes/column-settings.php:133
518
- #: ../includes/column-settings.php:145 ../includes/column-settings.php:157
519
- #: ../includes/column-settings.php:205 ../includes/column-settings.php:217
520
- #: ../includes/column-settings.php:229 ../includes/column-settings.php:241
521
- #: ../includes/column-settings.php:258 ../includes/column-settings.php:270
522
- #: ../includes/column-settings.php:282 ../includes/column-settings.php:294
523
- #: ../includes/global-settings.php:45 ../includes/global-settings.php:53
524
- #: ../includes/global-settings.php:61 ../includes/global-settings.php:75
525
- #: ../includes/global-settings.php:102 ../includes/module-settings.php:41
526
- #: ../includes/module-settings.php:53 ../includes/module-settings.php:65
527
- #: ../includes/module-settings.php:77 ../includes/row-settings.php:400
528
- #: ../includes/row-settings.php:412 ../includes/row-settings.php:424
529
- #: ../includes/row-settings.php:436 ../includes/row-settings.php:484
530
- #: ../includes/row-settings.php:496 ../includes/row-settings.php:508
531
- #: ../includes/row-settings.php:520 ../includes/row-settings.php:537
532
- #: ../includes/row-settings.php:549 ../includes/row-settings.php:561
533
- #: ../includes/row-settings.php:573 ../modules/button/button.php:171
534
- #: ../modules/button/button.php:189 ../modules/button/button.php:197
535
- #: ../modules/button/button.php:205 ../modules/callout/callout.php:297
536
- #: ../modules/callout/callout.php:433 ../modules/callout/callout.php:559
537
- #: ../modules/callout/callout.php:567 ../modules/callout/callout.php:575
538
- #: ../modules/content-slider/content-slider.php:194
539
- #: ../modules/content-slider/content-slider.php:274
540
- #: ../modules/content-slider/content-slider.php:456
541
- #: ../modules/content-slider/content-slider.php:486
542
- #: ../modules/content-slider/content-slider.php:494
543
- #: ../modules/content-slider/content-slider.php:502
544
- #: ../modules/content-slider/content-slider.php:510
545
- #: ../modules/content-slider/content-slider.php:659
546
- #: ../modules/content-slider/content-slider.php:667
547
- #: ../modules/content-slider/content-slider.php:675 ../modules/cta/cta.php:133
548
- #: ../modules/cta/cta.php:179 ../modules/cta/cta.php:305
549
- #: ../modules/cta/cta.php:313 ../modules/cta/cta.php:321
550
- #: ../modules/gallery/gallery.php:274 ../modules/heading/heading.php:138
551
- #: ../modules/heading/heading.php:198 ../modules/icon-group/icon-group.php:97
552
- #: ../modules/icon-group/icon-group.php:105 ../modules/icon/icon.php:129
553
- #: ../modules/post-grid/post-grid.php:96
554
- #: ../modules/post-grid/post-grid.php:104
555
- #: ../modules/slideshow/slideshow.php:298
556
- #: ../modules/slideshow/slideshow.php:595
557
- #: ../modules/testimonials/testimonials.php:73
558
- msgid "px"
559
- msgstr "pixlar"
560
-
561
- #: ../includes/column-settings.php:131 ../includes/row-settings.php:410
562
- msgid "Bottom Width"
563
- msgstr "Botten bredd"
564
-
565
- #: ../includes/column-settings.php:143 ../includes/row-settings.php:422
566
- msgid "Left Width"
567
- msgstr "Vänster bredd"
568
-
569
- #: ../includes/column-settings.php:155 ../includes/row-settings.php:434
570
- msgid "Right Width"
571
- msgstr "Höger bredd"
572
-
573
- #: ../includes/column-settings.php:170 ../includes/module-settings.php:6
574
- #: ../includes/row-settings.php:449
575
- #: ../modules/content-slider/content-slider.php:266
576
- msgid "Advanced"
577
- msgstr "Avancerad"
578
-
579
- #: ../includes/column-settings.php:177 ../includes/module-settings.php:13
580
- #: ../includes/row-settings.php:456
581
- msgid "CSS Class"
582
- msgstr "Css-klass"
583
-
584
- #: ../includes/column-settings.php:178
585
- msgid ""
586
- "A custom CSS class that will be applied to this column. Spaces only, no dots."
587
- msgstr ""
588
- "En anpassad CSS-klass som kommer att tillämpas på denna kolumn. Endast "
589
- "mellanslag, inga punkter."
590
-
591
- #: ../includes/column-settings.php:185 ../includes/module-settings.php:21
592
- #: ../includes/row-settings.php:464 ../modules/slideshow/slideshow.php:290
593
- msgid "Display"
594
- msgstr "Visa"
595
-
596
- #: ../includes/column-settings.php:187 ../includes/module-settings.php:23
597
- #: ../includes/row-settings.php:466
598
- msgid "Always"
599
- msgstr "Alltid"
600
-
601
- #: ../includes/column-settings.php:188 ../includes/module-settings.php:24
602
- #: ../includes/row-settings.php:467
603
- msgid "Desktop Only"
604
- msgstr "Endast desktop"
605
-
606
- #: ../includes/column-settings.php:189 ../includes/module-settings.php:25
607
- #: ../includes/row-settings.php:468
608
- msgid "Mobile Only"
609
- msgstr "Endast mobil"
610
-
611
- #: ../includes/column-settings.php:191
612
- msgid ""
613
- "Choose whether to always show this column, only show it on the desktop view "
614
- "or only show it on the mobile view."
615
- msgstr ""
616
- "Välj om denna kolumn alltid ska visas, bara visa den för desktopvy eller "
617
- "bara visa den på i mobilavy."
618
-
619
- #: ../includes/column-settings.php:199 ../includes/global-settings.php:41
620
- #: ../includes/global-settings.php:71 ../includes/module-settings.php:35
621
- #: ../includes/row-settings.php:478
622
- msgid "Margins"
623
- msgstr "Marginaler"
624
-
625
- #: ../includes/column-settings.php:203 ../includes/column-settings.php:256
626
- #: ../includes/module-settings.php:39 ../includes/row-settings.php:482
627
- #: ../includes/row-settings.php:535 ../modules/slideshow/slideshow.php:476
628
- msgid "Top"
629
- msgstr "Toppen"
630
-
631
- #: ../includes/column-settings.php:215 ../includes/column-settings.php:268
632
- #: ../includes/module-settings.php:51 ../includes/row-settings.php:494
633
- #: ../includes/row-settings.php:547 ../modules/slideshow/slideshow.php:475
634
- msgid "Bottom"
635
- msgstr "Botten"
636
-
637
- #: ../includes/column-settings.php:227 ../includes/column-settings.php:280
638
- #: ../includes/module-settings.php:63 ../includes/row-settings.php:506
639
- #: ../includes/row-settings.php:559 ../modules/button/button.php:179
640
- #: ../modules/callout/callout.php:251
641
- #: ../modules/content-slider/content-slider.php:469 ../modules/cta/cta.php:122
642
- #: ../modules/heading/heading.php:95 ../modules/heading/heading.php:167
643
- #: ../modules/icon-group/icon-group.php:113 ../modules/icon/icon.php:137
644
- #: ../modules/photo/photo.php:398
645
- #: ../modules/social-buttons/social-buttons.php:101
646
- msgid "Left"
647
- msgstr "Vänster"
648
-
649
- #: ../includes/column-settings.php:239 ../includes/column-settings.php:292
650
- #: ../includes/module-settings.php:75 ../includes/row-settings.php:518
651
- #: ../includes/row-settings.php:571 ../modules/button/button.php:180
652
- #: ../modules/callout/callout.php:252
653
- #: ../modules/content-slider/content-slider.php:471 ../modules/cta/cta.php:124
654
- #: ../modules/heading/heading.php:97 ../modules/heading/heading.php:169
655
- #: ../modules/icon-group/icon-group.php:114 ../modules/icon/icon.php:138
656
- #: ../modules/photo/photo.php:400
657
- #: ../modules/social-buttons/social-buttons.php:102
658
- msgid "Right"
659
- msgstr "Höger"
660
-
661
- #: ../includes/column-settings.php:252 ../includes/global-settings.php:49
662
- #: ../includes/row-settings.php:531 ../modules/button/button.php:193
663
- #: ../modules/callout/callout.php:563
664
- #: ../modules/content-slider/content-slider.php:663 ../modules/cta/cta.php:309
665
- msgid "Padding"
666
- msgstr "Luft"
667
-
668
- #: ../includes/fields.php:65 ../includes/js-config.php:51
669
- msgid "Select Photo"
670
- msgstr "Välj bild"
671
-
672
- #: ../includes/fields.php:75 ../includes/fields.php:150
673
- msgid "Replace"
674
- msgstr "Ersätt"
675
-
676
- #: ../includes/fields.php:91
677
- msgid " Photo Selected"
678
- msgstr " Bild vald"
679
-
680
- #: ../includes/fields.php:94
681
- msgid " Photos Selected"
682
- msgstr " Bilder valda"
683
-
684
- #: ../includes/fields.php:100
685
- msgid "Create Gallery"
686
- msgstr "Skapa galleri"
687
-
688
- #: ../includes/fields.php:101
689
- msgid "Edit Gallery"
690
- msgstr "Redigera galleri"
691
-
692
- #: ../includes/fields.php:102
693
- msgid "Add Photos"
694
- msgstr "Lägg till bilder"
695
-
696
- #: ../includes/fields.php:124 ../includes/js-config.php:53
697
- msgid "Select Video"
698
- msgstr "Välj video"
699
-
700
- #: ../includes/fields.php:138
701
- msgid "Replace Video"
702
- msgstr "Ersätt video"
703
-
704
- #: ../includes/fields.php:147 ../includes/icon-selector.php:23
705
- msgid "Select Icon"
706
- msgstr "Välj ikon"
707
-
708
- #: ../includes/fields.php:152 ../includes/js-config.php:46
709
- msgid "Remove"
710
- msgstr "Ta bort"
711
-
712
- #: ../includes/fields.php:291
713
- msgid "Start typing..."
714
- msgstr "Börja skriv..."
715
-
716
- #: ../includes/global-settings.php:7 ../includes/template-settings.php:7
717
- #: ../includes/user-template-settings.php:7
718
- #: ../modules/accordion/accordion.php:110 ../modules/button/button.php:48
719
- #: ../modules/callout/callout.php:208
720
- #: ../modules/contact-form/contact-form.php:57
721
- #: ../modules/content-slider/content-slider.php:183
722
- #: ../modules/content-slider/content-slider.php:307 ../modules/cta/cta.php:64
723
- #: ../modules/gallery/gallery.php:213 ../modules/heading/heading.php:26
724
- #: ../modules/html/html.php:26 ../modules/icon-group/icon-group.php:130
725
- #: ../modules/icon/icon.php:29 ../modules/map/map.php:26
726
- #: ../modules/photo/photo.php:350 ../modules/rich-text/rich-text.php:26
727
- #: ../modules/separator/separator.php:27 ../modules/sidebar/sidebar.php:27
728
- #: ../modules/slideshow/slideshow.php:256
729
- #: ../modules/social-buttons/social-buttons.php:64 ../modules/tabs/tabs.php:77
730
- #: ../modules/testimonials/testimonials.php:30
731
- #: ../modules/testimonials/testimonials.php:200 ../modules/video/video.php:76
732
- #: ../modules/widget/widget.php:27 ../modules/woocommerce/woocommerce.php:50
733
- msgid "General"
734
- msgstr "Generella"
735
-
736
- #: ../includes/global-settings.php:8
737
- msgid "Note: These settings apply to all posts and pages."
738
- msgstr "Notera: Dessa inställningar gäller för alla poster och sidor."
739
-
740
- #: ../includes/global-settings.php:11
741
- msgid "Default Page Heading"
742
- msgstr "Standardsidrubrik"
743
-
744
- #: ../includes/global-settings.php:15 ../modules/post-grid/post-grid.php:116
745
- #: ../modules/post-grid/post-grid.php:149
746
- #: ../modules/post-grid/post-grid.php:158
747
- #: ../modules/post-grid/post-grid.php:187
748
- #: ../modules/post-grid/post-grid.php:201
749
- #: ../modules/post-grid/post-grid.php:215
750
- msgid "Show"
751
- msgstr "Visa"
752
-
753
- #: ../includes/global-settings.php:26
754
- msgid ""
755
- "Choosing no will hide the default theme heading for the \"Page\" post type. "
756
- "You will also be required to enter some basic CSS for this to work if you "
757
- "choose no."
758
- msgstr ""
759
- "Väljer du nej kommer rubriken att döljas för \"Page\" posttyp. Du måste "
760
- "skriva egen CSS för att detta ska fungera om du väljer nej."
761
-
762
- #: ../includes/global-settings.php:30
763
- msgid "CSS Selector"
764
- msgstr "CSS-selektor"
765
-
766
- #: ../includes/global-settings.php:32
767
- msgid "Enter a CSS selector for the default page heading to hide it."
768
- msgstr "Skriv in en CSS-selektor för sidrubriken för att dölja den."
769
-
770
- #: ../includes/global-settings.php:37
771
- msgid "Rows"
772
- msgstr "Rader"
773
-
774
- #: ../includes/global-settings.php:57
775
- msgid "Max Width"
776
- msgstr "Maxbredd"
777
-
778
- #: ../includes/global-settings.php:62
779
- msgid ""
780
- "All rows will default to this width. You can override this and make a row "
781
- "full width in the settings for each row."
782
- msgstr ""
783
- "Sätt alla rader som standard till denna bredd. Du kan åsidosätta detta och "
784
- "göra en rad i fullbredd i inställningarna för varje rad."
785
-
786
- #: ../includes/global-settings.php:80
787
- msgid "Mobile Layout"
788
- msgstr "Mobilvy"
789
-
790
- #: ../includes/global-settings.php:84
791
- msgid "Enabled"
792
- msgstr "Aktiverad"
793
-
794
- #: ../includes/global-settings.php:98
795
- msgid "Breakpoint"
796
- msgstr "Brytpunkt"
797
-
798
- #: ../includes/icon-selector.php:25
799
- msgid "Filter: "
800
- msgstr "Filtrera:"
801
-
802
- #: ../includes/icon-selector.php:48 ../includes/js-config.php:14
803
- #: ../includes/settings.php:63 ../includes/template-selector.php:102
804
- msgid "Cancel"
805
- msgstr "Avbryt"
806
-
807
- #: ../includes/js-config.php:13
808
- msgid "What would you like to do?"
809
- msgstr "Vad vill du göra?"
810
-
811
- #: ../includes/js-config.php:15
812
- msgid "Change Template"
813
- msgstr "Ändra mall"
814
-
815
- #: ../includes/js-config.php:16
816
- msgid ""
817
- "Warning! Changing the template will replace your existing layout. Do you "
818
- "really want to do this?"
819
- msgstr ""
820
- "Varning! Ändra mall kommer att ersätta din befintlig layout. Vill du "
821
- "verkligen göra det här?"
822
-
823
- #: ../includes/js-config.php:17
824
- msgid "Column"
825
- msgstr "Kolumn"
826
-
827
- #: ../includes/js-config.php:19
828
- msgid ""
829
- "Please select either a background layout or content layout before submitting."
830
- msgstr ""
831
- "Välj antingen en bakgrundslayout eller innehållslayout innan du skickar."
832
-
833
- #: ../includes/js-config.php:20
834
- msgid "Do you really want to delete this item?"
835
- msgstr "Vill du verkligen ta bort denna?"
836
-
837
- #: ../includes/js-config.php:21
838
- msgid ""
839
- "Do you really want to delete this module? All content data will be "
840
- "permanently deleted."
841
- msgstr ""
842
- "Vill du verkligen ta bort den här modulen? Alla uppgifter innehåll kommer "
843
- "att tas bort permanent."
844
-
845
- #: ../includes/js-config.php:22
846
- msgid ""
847
- "Do you really want to delete this row? All content data will be permanently "
848
- "deleted."
849
- msgstr ""
850
- "Vill du verkligen ta bort den här raden? Alla uppgifter innehåll kommer att "
851
- "tas bort permanent."
852
-
853
- #: ../includes/js-config.php:23
854
- msgid "Do you really want to delete this template?"
855
- msgstr "Vill du verkligen ta bort denna mall?"
856
-
857
- #: ../includes/js-config.php:24
858
- msgid "Discard Draft"
859
- msgstr "Släng utkast"
860
-
861
- #: ../includes/js-config.php:25
862
- msgid ""
863
- "Do you really want to discard this draft? All of your changes that are not "
864
- "published will be lost."
865
- msgstr ""
866
- "Vill du verkligen ta bort detta utkast? Alla ändringar som inte är "
867
- "publicerade kommer att förloras."
868
-
869
- #: ../includes/js-config.php:26
870
- msgid "Save Draft"
871
- msgstr "Spara utkast"
872
-
873
- #: ../includes/js-config.php:27
874
- msgid "Duplicate"
875
- msgstr "Duplicera"
876
-
877
- #: ../includes/js-config.php:28
878
- msgid "Duplicate This Page"
879
- msgstr "Duplicera denna sida"
880
-
881
- #: ../includes/js-config.php:29
882
- msgid "Duplicate This Template"
883
- msgstr "Duplicera denna mall"
884
-
885
- #: ../includes/js-config.php:30
886
- msgid "Edit Global Settings"
887
- msgstr "Ändra globala inställningar"
888
-
889
- #: ../includes/js-config.php:31
890
- msgid "Drop a row layout or module to get started!"
891
- msgstr "Dra och släpp en radlayout eller modul för att börja!"
892
-
893
- #: ../includes/js-config.php:33
894
- msgid "Insert"
895
- msgstr "Infoga"
896
-
897
- #: ../includes/js-config.php:35
898
- msgid "Manage Templates"
899
- msgstr "Hantera mallar"
900
-
901
- #: ../includes/js-config.php:37
902
- msgid "Module"
903
- msgstr "Modul"
904
-
905
- #: ../includes/js-config.php:38
906
- msgid "Move"
907
- msgstr "Flytta"
908
-
909
- #: ../includes/js-config.php:39
910
- msgid "New Column"
911
- msgstr "Ny column"
912
-
913
- #: ../includes/js-config.php:40
914
- msgid "New Row"
915
- msgstr "Ny rad"
916
-
917
- #: ../includes/js-config.php:41
918
- msgid "No results found."
919
- msgstr "Inga resultat hittades."
920
-
921
- #: ../includes/js-config.php:42
922
- msgid "Ok"
923
- msgstr "Ok"
924
-
925
- #: ../includes/js-config.php:43
926
- msgid "Photo Selected"
927
- msgstr "Bild vald"
928
-
929
- #: ../includes/js-config.php:44
930
- msgid "Photos Selected"
931
- msgstr "Bilder valda"
932
-
933
- #: ../includes/js-config.php:45
934
- msgid "Publish Changes"
935
- msgstr "Spara ändringar"
936
-
937
- #: ../includes/js-config.php:47
938
- msgid "Row"
939
- msgstr "Rad"
940
-
941
- #: ../includes/js-config.php:48 ../includes/row-settings.php:6
942
- msgid "Row Settings"
943
- msgstr "Radinställningar"
944
-
945
- #: ../includes/js-config.php:49
946
- msgid "Save Core Template"
947
- msgstr "Spara grundmall"
948
-
949
- #: ../includes/js-config.php:50 ../includes/user-template-settings.php:4
950
- msgid "Save Template"
951
- msgstr "Spara mall"
952
-
953
- #: ../includes/js-config.php:52
954
- msgid "Select Photos"
955
- msgstr "Välj bilder"
956
-
957
- #: ../includes/js-config.php:55
958
- msgid "Append New Layout"
959
- msgstr "Lägg till nya layouten"
960
-
961
- #: ../includes/js-config.php:56
962
- msgid "Replace Existing Layout"
963
- msgstr "Ersätt nuvarande layout"
964
-
965
- #: ../includes/js-config.php:57
966
- msgid "Template Saved!"
967
- msgstr "Mall sparad!"
968
-
969
- #: ../includes/js-config.php:59
970
- msgid ""
971
- "The settings you are currently editing will not be saved if you navigate "
972
- "away from this page."
973
- msgstr ""
974
- "Inställningarna du för närvarande redigerar sparas inte om du lämnar den här "
975
- "sidan."
976
-
977
- #: ../includes/loop-settings.php:19
978
- msgid "Post Type"
979
- msgstr "Posttyp"
980
-
981
- #: ../includes/loop-settings.php:25
982
- msgid "Order By"
983
- msgstr "Sortera efter"
984
-
985
- #: ../includes/loop-settings.php:27
986
- msgid "ID"
987
- msgstr "ID"
988
-
989
- #: ../includes/loop-settings.php:28 ../modules/post-grid/post-grid.php:155
990
- #: ../modules/woocommerce/woocommerce.php:189
991
- msgid "Date"
992
- msgstr "Datum"
993
-
994
- #: ../includes/loop-settings.php:29
995
- msgid "Date Last Modified"
996
- msgstr "Datum för senast ändrad"
997
-
998
- #: ../includes/loop-settings.php:30
999
- msgid "Title"
1000
- msgstr "Titel"
1001
-
1002
- #: ../includes/loop-settings.php:31 ../modules/post-grid/post-grid.php:146
1003
- msgid "Author"
1004
- msgstr "Författare"
1005
-
1006
- #: ../includes/loop-settings.php:32
1007
- msgid "Comment Count"
1008
- msgstr "Antal kommentarer"
1009
-
1010
- #: ../includes/loop-settings.php:33
1011
- msgid "Menu Order"
1012
- msgstr "Menysortering"
1013
-
1014
- #: ../includes/loop-settings.php:34
1015
- msgid "Random"
1016
- msgstr "Slumpa"
1017
-
1018
- #: ../includes/loop-settings.php:41
1019
- msgid "Order"
1020
- msgstr "Ordning"
1021
-
1022
- #: ../includes/loop-settings.php:43
1023
- msgid "Descending"
1024
- msgstr "Fallande"
1025
-
1026
- #: ../includes/loop-settings.php:44
1027
- msgid "Ascending"
1028
- msgstr "Stigande"
1029
-
1030
- #: ../includes/loop-settings.php:52
1031
- msgid "Filter"
1032
- msgstr "Filtrera"
1033
-
1034
- #: ../includes/loop-settings.php:63
1035
- #, php-format
1036
- msgid "Enter a comma separated list of %s. Only these %s will be shown."
1037
- msgstr ""
1038
- "Skriv din lista med %s separerade med kommatecken. Bara dessa %s kommer att "
1039
- "visas"
1040
-
1041
- #: ../includes/loop-settings.php:76
1042
- #, php-format
1043
- msgid ""
1044
- "Enter a comma separated list of %s. Only posts with these %s will be shown."
1045
- msgstr ""
1046
- "Skriv din lista med %s separerade med kommatecken. Bara poster med dessa %s "
1047
- "kommer att visas"
1048
-
1049
- #: ../includes/loop-settings.php:90
1050
- msgid "Authors"
1051
- msgstr "Författare"
1052
-
1053
- #: ../includes/loop-settings.php:91
1054
- msgid ""
1055
- "Enter a comma separated list of authors usernames. Only posts with these "
1056
- "authors will be shown."
1057
- msgstr ""
1058
- "Skriv en lista nedan med författare separerade med kommatecken. Bara poster "
1059
- "med dessa författare kommer att visas."
1060
-
1061
- #: ../includes/module-settings.php:14
1062
- msgid ""
1063
- "A custom CSS class that will be applied to this module. Spaces only, no dots."
1064
- msgstr ""
1065
- "En anpassad CSS-klass som kommer att tillämpas på denna kolumn. Endast "
1066
- "mellanslag, inga punkter."
1067
-
1068
- #: ../includes/module-settings.php:27
1069
- msgid ""
1070
- "Choose whether to always show this module, only show it on the desktop view "
1071
- "or only show it on the mobile view."
1072
- msgstr ""
1073
- "Välj att alltid visa denna modul eller att visa enbart på desktop eller mobil"
1074
-
1075
- #: ../includes/module-settings.php:88
1076
- msgid "Animation"
1077
- msgstr "Animation"
1078
-
1079
- #: ../includes/module-settings.php:95
1080
- msgid "Fade In"
1081
- msgstr "Tona in"
1082
-
1083
- #: ../includes/module-settings.php:96
1084
- msgid "Slide Left"
1085
- msgstr "Slide vänster"
1086
-
1087
- #: ../includes/module-settings.php:97
1088
- msgid "Slide Right"
1089
- msgstr "Slide höger"
1090
-
1091
- #: ../includes/module-settings.php:98
1092
- msgid "Slide Up"
1093
- msgstr "Glid up"
1094
-
1095
- #: ../includes/module-settings.php:99
1096
- msgid "Slide Down"
1097
- msgstr "Glid nedåt"
1098
-
1099
- #: ../includes/module-settings.php:107
1100
- #: ../modules/content-slider/content-slider.php:222
1101
- #: ../modules/testimonials/testimonials.php:91
1102
- msgid "Delay"
1103
- msgstr "Fördröjning"
1104
-
1105
- #: ../includes/module-settings.php:112
1106
- msgid "The amount of time in seconds before this animation starts."
1107
- msgstr "Antal sekunder innan animationen startar"
1108
-
1109
- #: ../includes/row-settings.php:16 ../modules/button/button.php:148
1110
- #: ../modules/content-slider/content-slider.php:476
1111
- msgid "Width"
1112
- msgstr "Bredd"
1113
-
1114
- #: ../includes/row-settings.php:19 ../includes/row-settings.php:37
1115
- #: ../includes/row-settings.php:179
1116
- msgid "Fixed"
1117
- msgstr "Fixerad"
1118
-
1119
- #: ../includes/row-settings.php:20 ../includes/row-settings.php:38
1120
- #: ../modules/button/button.php:152 ../modules/callout/callout.php:550
1121
- msgid "Full Width"
1122
- msgstr "Fullbredd"
1123
-
1124
- #: ../includes/row-settings.php:27
1125
- msgid ""
1126
- "Full width rows span the width of the page from edge to edge. Fixed rows are "
1127
- "no wider than the Row Max Width set in the Global Settings."
1128
- msgstr ""
1129
- "Fullbreddsrader spänner över hela sidans bredd kant till kant. Fullbredd är "
1130
- "inte bredare än maxvärdet angivet i Globala inställningar."
1131
-
1132
- #: ../includes/row-settings.php:34
1133
- msgid "Content Width"
1134
- msgstr "Sidbredd"
1135
-
1136
- #: ../includes/row-settings.php:40
1137
- msgid ""
1138
- "Full width content spans the width of the page from edge to edge. Fixed "
1139
- "content is no wider than the Row Max Width set in the Global Settings."
1140
- msgstr ""
1141
- "Fullbredd spänner över hela sidans bredd kant till kant. Fullbredd är inte "
1142
- "bredare än maxvärdet angivet i Globala inställningar."
1143
-
1144
- #: ../includes/row-settings.php:61
1145
- msgid "Background"
1146
- msgstr "Bakgrund"
1147
-
1148
- #: ../includes/row-settings.php:70 ../includes/row-settings.php:133
1149
- #: ../includes/row-settings.php:321 ../modules/callout/callout.php:315
1150
- #: ../modules/callout/callout.php:331 ../modules/callout/callout.php:335
1151
- #: ../modules/content-slider/content-slider.php:328
1152
- #: ../modules/content-slider/content-slider.php:397
1153
- #: ../modules/content-slider/content-slider.php:705
1154
- #: ../modules/photo/photo.php:25 ../modules/photo/photo.php:374
1155
- msgid "Photo"
1156
- msgstr "Bild"
1157
-
1158
- #: ../includes/row-settings.php:71 ../includes/row-settings.php:207
1159
- #: ../modules/content-slider/content-slider.php:329
1160
- #: ../modules/video/video.php:19
1161
- msgid "Video"
1162
- msgstr "Video"
1163
-
1164
- #: ../includes/row-settings.php:73 ../modules/slideshow/slideshow.php:14
1165
- msgid "Slideshow"
1166
- msgstr "Bildspel"
1167
-
1168
- #: ../includes/row-settings.php:77
1169
- msgid "Parallax"
1170
- msgstr "Parallax"
1171
-
1172
- #: ../includes/row-settings.php:129
1173
- #: ../modules/content-slider/content-slider.php:352
1174
- msgid "Background Photo"
1175
- msgstr "Bakgrundsbild"
1176
-
1177
- #: ../includes/row-settings.php:140
1178
- msgid "Repeat"
1179
- msgstr "Upprepa"
1180
-
1181
- #: ../includes/row-settings.php:144
1182
- msgid "Tile"
1183
- msgstr "Mönstra"
1184
-
1185
- #: ../includes/row-settings.php:145 ../modules/tabs/tabs.php:55
1186
- msgid "Horizontal"
1187
- msgstr "Horisontellt"
1188
-
1189
- #: ../includes/row-settings.php:146 ../modules/tabs/tabs.php:56
1190
- msgid "Vertical"
1191
- msgstr "Vertikalt"
1192
-
1193
- #: ../includes/row-settings.php:148
1194
- msgid ""
1195
- "Repeat applies to how the image should display in the row background. "
1196
- "Choosing none will display the image as uploaded. Tile will repeat the image "
1197
- "as many times as needed to fill the row horizontally and vertically. You can "
1198
- "also specify the image to only repeat horizontally or vertically."
1199
- msgstr ""
1200
- "Repetera avgör om bilden ska upprepas eller inte. Väljer du att inte "
1201
- "repetera kommer bilden att visas som du laddade upp den. Väljer du repetera "
1202
- "kommer bilden upprepas över hela ytan."
1203
-
1204
- #: ../includes/row-settings.php:158
1205
- msgid "Left Top"
1206
- msgstr "Vänster toppen"
1207
-
1208
- #: ../includes/row-settings.php:159
1209
- msgid "Left Center"
1210
- msgstr "Vänster mitten"
1211
-
1212
- #: ../includes/row-settings.php:160
1213
- msgid "Left Bottom"
1214
- msgstr "Vänster botten"
1215
-
1216
- #: ../includes/row-settings.php:161
1217
- msgid "Right Top"
1218
- msgstr "Höger topp"
1219
-
1220
- #: ../includes/row-settings.php:162
1221
- msgid "Right Center"
1222
- msgstr "Höger mitten"
1223
-
1224
- #: ../includes/row-settings.php:163
1225
- msgid "Right Bottom"
1226
- msgstr "Höger botten"
1227
-
1228
- #: ../includes/row-settings.php:164
1229
- msgid "Center Top"
1230
- msgstr "Mitten topp"
1231
-
1232
- #: ../includes/row-settings.php:165
1233
- msgid "Center Center"
1234
- msgstr "Mitten mitten"
1235
-
1236
- #: ../includes/row-settings.php:166
1237
- msgid "Center Bottom"
1238
- msgstr "Mitten botten"
1239
-
1240
- #: ../includes/row-settings.php:168
1241
- msgid "Position will tell the image where it should sit in the row background."
1242
- msgstr "Bildens position i raden."
1243
-
1244
- #: ../includes/row-settings.php:175
1245
- msgid "Attachment"
1246
- msgstr "Attachment"
1247
-
1248
- #: ../includes/row-settings.php:178 ../modules/post-grid/post-grid.php:75
1249
- msgid "Scroll"
1250
- msgstr "Skroll"
1251
-
1252
- #: ../includes/row-settings.php:181
1253
- msgid ""
1254
- "Attachment will specify how the image reacts when scrolling a page. When "
1255
- "scrolling is selected, the image will scroll with page scrolling. This is "
1256
- "the default setting. Fixed will allow the image to scroll within the row "
1257
- "background if fill is selected in the scale setting."
1258
- msgstr ""
1259
- "Attachment påverkar hur bilden reagerar när du skrollar sidan. Om skroll är "
1260
- "vald kommer bilden att skrollas med bakgrunden. Detta är standard. Fixerad "
1261
- "kommer göra att bilden är låst i sin position även om du skrollar."
1262
-
1263
- #: ../includes/row-settings.php:188
1264
- msgid "Scale"
1265
- msgstr "Skala"
1266
-
1267
- #: ../includes/row-settings.php:192
1268
- msgid "Fit"
1269
- msgstr "Passa in"
1270
-
1271
- #: ../includes/row-settings.php:193
1272
- msgid "Fill"
1273
- msgstr "Fyll"
1274
-
1275
- #: ../includes/row-settings.php:195
1276
- msgid ""
1277
- "Scale applies to how the image should display in the row background. You can "
1278
- "select either fill or fit to the row background."
1279
- msgstr ""
1280
- "Hur bilden ska visas i radens bakgrund. Du kan välja antingen fylla eller "
1281
- "passa till radens bakgrund."
1282
-
1283
- #: ../includes/row-settings.php:203
1284
- msgid "Background Video"
1285
- msgstr "Bakgrundsvideo"
1286
-
1287
- #: ../includes/row-settings.php:208
1288
- msgid ""
1289
- "An HTML5 video to use as the background of this row. Supported types are "
1290
- "MP4, WebM and Ogg."
1291
- msgstr ""
1292
- "En HTML5-video som ska användas som bakgrund för denna rad. Typer som stöds "
1293
- "är MP4, WebM och Ogg."
1294
-
1295
- #: ../includes/row-settings.php:215
1296
- msgid "Fallback Photo"
1297
- msgstr "Fallback bild"
1298
-
1299
- #: ../includes/row-settings.php:216
1300
- msgid "A photo that will be displayed if the video fails to load."
1301
- msgstr "En fallback-bild som visas om video inte kan läsas in."
1302
-
1303
- #: ../includes/row-settings.php:224
1304
- msgid "Background Slideshow"
1305
- msgstr "Bakgrundsbildspel"
1306
-
1307
- #: ../includes/row-settings.php:228 ../modules/gallery/gallery.php:234
1308
- #: ../modules/slideshow/slideshow.php:263
1309
- msgid "Source"
1310
- msgstr "Källa"
1311
-
1312
- #: ../includes/row-settings.php:231 ../modules/gallery/gallery.php:237
1313
- #: ../modules/photo/photo.php:360 ../modules/slideshow/slideshow.php:266
1314
- #: ../modules/video/video.php:86
1315
- msgid "Media Library"
1316
- msgstr "Mediabibliotek"
1317
-
1318
- #: ../includes/row-settings.php:232 ../modules/gallery/gallery.php:238
1319
- #: ../modules/slideshow/slideshow.php:267
1320
- msgid "SmugMug"
1321
- msgstr "SmugMug"
1322
-
1323
- #: ../includes/row-settings.php:234 ../modules/gallery/gallery.php:240
1324
- #: ../modules/slideshow/slideshow.php:269
1325
- msgid ""
1326
- "Pull images from the WordPress media library or a gallery on your SmugMug "
1327
- "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
1328
- "accessed by using the get a link function in your SmugMug gallery."
1329
- msgstr ""
1330
- "Dra bilder från Wordpress mediebibliotek eller ett galleri på din SmugMug "
1331
- "plats genom att sätta in RSS-feed URL SmugMug. RSS feed URL kan nås med "
1332
- "hjälp av en länkfunktion i ditt SmugMug galleri."
1333
-
1334
- #: ../includes/row-settings.php:249 ../modules/gallery/gallery.php:252
1335
- #: ../modules/slideshow/slideshow.php:281
1336
- msgid "Photos"
1337
- msgstr "Bilder"
1338
-
1339
- #: ../includes/row-settings.php:256 ../modules/gallery/gallery.php:256
1340
- #: ../modules/slideshow/slideshow.php:285
1341
- msgid "Feed URL"
1342
- msgstr "Feed länk"
1343
-
1344
- #: ../includes/row-settings.php:263 ../includes/row-settings.php:328
1345
- #: ../modules/slideshow/slideshow.php:383
1346
- msgid "Speed"
1347
- msgstr "Hastighet"
1348
-
1349
- #: ../includes/row-settings.php:266 ../includes/row-settings.php:297
1350
- #: ../modules/slideshow/slideshow.php:386
1351
- #: ../modules/slideshow/slideshow.php:411
1352
- #: ../modules/slideshow/slideshow.php:582
1353
- msgid "seconds"
1354
- msgstr "sekunder"
1355
-
1356
- #: ../includes/row-settings.php:273
1357
- #: ../modules/content-slider/content-slider.php:230
1358
- #: ../modules/slideshow/slideshow.php:390
1359
- #: ../modules/testimonials/testimonials.php:99
1360
- msgid "Transition"
1361
- msgstr "Övergång"
1362
-
1363
- #: ../includes/row-settings.php:277 ../modules/slideshow/slideshow.php:394
1364
- msgid "Fade"
1365
- msgstr "Tona"
1366
-
1367
- #: ../includes/row-settings.php:278 ../modules/slideshow/slideshow.php:395
1368
- msgid "Ken Burns"
1369
- msgstr "Ken Burns"
1370
-
1371
- #: ../includes/row-settings.php:279 ../modules/slideshow/slideshow.php:396
1372
- msgid "Slide Horizontal"
1373
- msgstr "Växla horisontellt"
1374
-
1375
- #: ../includes/row-settings.php:280 ../modules/slideshow/slideshow.php:397
1376
- msgid "Slide Vertical"
1377
- msgstr "Växla vertikalt"
1378
-
1379
- #: ../includes/row-settings.php:281 ../modules/slideshow/slideshow.php:398
1380
- msgid "Blinds"
1381
- msgstr "Blinds"
1382
-
1383
- #: ../includes/row-settings.php:282 ../modules/slideshow/slideshow.php:399
1384
- msgid "Bars"
1385
- msgstr "Bars"
1386
-
1387
- #: ../includes/row-settings.php:283 ../modules/slideshow/slideshow.php:400
1388
- msgid "Random Bars"
1389
- msgstr "Slumpa bars"
1390
-
1391
- #: ../includes/row-settings.php:284 ../modules/slideshow/slideshow.php:401
1392
- msgid "Boxes"
1393
- msgstr "Boxar"
1394
-
1395
- #: ../includes/row-settings.php:285 ../modules/slideshow/slideshow.php:402
1396
- msgid "Random Boxes"
1397
- msgstr "Slumpa boxar"
1398
-
1399
- #: ../includes/row-settings.php:286 ../modules/slideshow/slideshow.php:403
1400
- msgid "Boxes Grow"
1401
- msgstr "Låt boxarna växa"
1402
-
1403
- #: ../includes/row-settings.php:294
1404
- #: ../modules/content-slider/content-slider.php:239
1405
- #: ../modules/slideshow/slideshow.php:408
1406
- #: ../modules/testimonials/testimonials.php:108
1407
- msgid "Transition Speed"
1408
- msgstr "Övergångshastighet"
1409
-
1410
- #: ../includes/row-settings.php:304 ../modules/slideshow/slideshow.php:415
1411
- msgid "Randomize Photos"
1412
- msgstr "Slumpa bilder"
1413
-
1414
- #: ../includes/row-settings.php:317
1415
- msgid "Background Parallax"
1416
- msgstr "Bakgrundsparallax"
1417
-
1418
- #: ../includes/row-settings.php:331
1419
- msgid "Fast"
1420
- msgstr "Snabbt"
1421
-
1422
- #: ../includes/row-settings.php:333
1423
- msgid "Slow"
1424
- msgstr "Sakta"
1425
-
1426
- #: ../includes/row-settings.php:457
1427
- msgid "Add a custom CSS selector here to apply additional styling to this row."
1428
- msgstr ""
1429
- "Lägg en egen CSS-klass för att tillämpa ytterligare styling till denna rad."
1430
-
1431
- #: ../includes/row-settings.php:470
1432
- msgid ""
1433
- "Choose whether to always show this row, only show it on the desktop view or "
1434
- "only show it on the mobile view."
1435
- msgstr ""
1436
- "Välj om denna rad alltid ska visas, bara visa den för desktopvy eller bara "
1437
- "visa den på i mobilavy."
1438
-
1439
- #: ../includes/settings.php:62
1440
- msgid "Save"
1441
- msgstr "Spara"
1442
-
1443
- #: ../includes/template-selector.php:3
1444
- msgid "Layout Templates"
1445
- msgstr "layoutmallar"
1446
-
1447
- #: ../includes/template-selector.php:8
1448
- msgid "Home Pages"
1449
- msgstr "Startsidor"
1450
-
1451
- #: ../includes/template-selector.php:9
1452
- msgid "Content Pages"
1453
- msgstr "Innehållssidor"
1454
-
1455
- #: ../includes/template-selector.php:13
1456
- msgid "Your Templates"
1457
- msgstr "Dina mallar"
1458
-
1459
- #: ../includes/template-selector.php:47 ../includes/template-selector.php:77
1460
- msgid "Blank"
1461
- msgstr "Tom"
1462
-
1463
- #: ../includes/template-selector.php:72
1464
- msgid ""
1465
- "You haven't saved any templates yet! To do so, create a layout and save it "
1466
- "as a template under Tools > Save Template."
1467
- msgstr ""
1468
- "Du har inte sparat några mallar ännu! För att göra detta, skapa en layout "
1469
- "och spara den som en mall under Verktyg > Spara mall."
1470
-
1471
- #: ../includes/template-settings.php:18
1472
- msgid "Image Filename"
1473
- msgstr "Bildens Filnamn"
1474
-
1475
- #: ../includes/template-settings.php:19
1476
- msgid ""
1477
- "The filename of the image such as thumb.jpg that resides in the \"img/"
1478
- "templates/\" directory."
1479
- msgstr ""
1480
- "Filnamnet för bilden som t.ex thumb.jpg och som finns i \"img/templates/\" "
1481
- "mappen"
1482
-
1483
- #: ../includes/ui.php:6
1484
- msgid "Page Builder Demo"
1485
- msgstr "Sidbyggarendemo"
1486
-
1487
- #: ../includes/ui.php:19
1488
- msgid "Done"
1489
- msgstr "Klar"
1490
-
1491
- #: ../includes/ui.php:20
1492
- msgid "Tools"
1493
- msgstr "Verktyg"
1494
-
1495
- #: ../includes/ui.php:24
1496
- msgid "Add Content"
1497
- msgstr "Lägg till innehåll"
1498
-
1499
- #: ../includes/ui.php:39
1500
- msgid "Row Layouts"
1501
- msgstr "Radlayout"
1502
-
1503
- #: ../includes/ui.php:43
1504
- msgid "1 Column"
1505
- msgstr "1 kolumn"
1506
-
1507
- #: ../includes/ui.php:44
1508
- msgid "2 Columns"
1509
- msgstr "2 kolumner"
1510
-
1511
- #: ../includes/ui.php:45
1512
- msgid "3 Columns"
1513
- msgstr "3 kolumner"
1514
-
1515
- #: ../includes/ui.php:46
1516
- msgid "4 Columns"
1517
- msgstr "4 kolumner"
1518
-
1519
- #: ../includes/ui.php:47
1520
- msgid "5 Columns"
1521
- msgstr "5 kolumner"
1522
-
1523
- #: ../includes/ui.php:48
1524
- msgid "6 Columns"
1525
- msgstr "6 kolumner"
1526
-
1527
- #: ../includes/ui.php:49
1528
- msgid "Left Sidebar"
1529
- msgstr "Vänster sidofält (sidebar)"
1530
-
1531
- #: ../includes/ui.php:50
1532
- msgid "Right Sidebar"
1533
- msgstr "Höger sidofält (sidebar)"
1534
-
1535
- #: ../includes/ui.php:51
1536
- msgid "Left &amp; Right Sidebar"
1537
- msgstr "Vänster &amp; Höger sidofält (sidebar)"
1538
-
1539
- #: ../includes/ui.php:60 ../modules/widget/widget.php:16
1540
- msgid "WordPress Widgets"
1541
- msgstr "Wordpresswidgets"
1542
-
1543
- #: ../includes/ui.php:78
1544
- msgid "Buy Now!"
1545
- msgstr "Köp nu!"
1546
-
1547
- #: ../includes/updater/includes/form.php:4
1548
- msgid "Support &amp; Updates Subscription"
1549
- msgstr "Support &amp; Uppdateringar"
1550
-
1551
- #: ../includes/updater/includes/form.php:7
1552
- msgid "Active!"
1553
- msgstr "Aktiv!"
1554
-
1555
- #: ../includes/updater/includes/form.php:9
1556
- msgid "Not Active!"
1557
- msgstr "Inte aktiv!"
1558
-
1559
- #: ../includes/updater/includes/form.php:15
1560
- msgid "Email address saved!"
1561
- msgstr "E-post sparad!"
1562
-
1563
- #: ../includes/updater/includes/form.php:20
1564
- msgid ""
1565
- "Enter the email address you used to signup to receive support and enable "
1566
- "remote updates."
1567
- msgstr ""
1568
- "Skriv in din e-postadress du använde för att registrera dig på <a href="
1569
- "\"http://themes.fastlinemedia.com\" target=\"_blank\">FastLine Themes</a> "
1570
- "för att aktivera uppdateringar."
1571
-
1572
- #: ../includes/updater/includes/form.php:29
1573
- msgid "email@yourwebsite.com"
1574
- msgstr "email@dinhemsida.com"
1575
-
1576
- #: ../includes/updater/includes/form.php:32
1577
- msgid "Save Subscription Settings"
1578
- msgstr "Spara prenumerationssinställningar"
1579
-
1580
- #: ../includes/user-template-settings.php:8
1581
- msgid ""
1582
- "Save the current layout as a template that can be reused under Templates > "
1583
- "Your Templates."
1584
- msgstr ""
1585
- "Spara den aktuella layouten som en mall som kan återanvändas under Verktyg > "
1586
- "Hantera mallar."
1587
-
1588
- #: ../modules/accordion/accordion.php:14
1589
- msgid "Accordion"
1590
- msgstr "Dragspel"
1591
-
1592
- #: ../modules/accordion/accordion.php:15
1593
- msgid "Display a collapsible accordion of items."
1594
- msgstr "Visa ett hopfällbart dragspel av artiklar."
1595
-
1596
- #: ../modules/accordion/accordion.php:16 ../modules/button/button.php:16
1597
- #: ../modules/callout/callout.php:16
1598
- #: ../modules/contact-form/contact-form.php:16
1599
- #: ../modules/content-slider/content-slider.php:16 ../modules/cta/cta.php:16
1600
- #: ../modules/gallery/gallery.php:16 ../modules/html/html.php:16
1601
- #: ../modules/icon-group/icon-group.php:16 ../modules/icon/icon.php:16
1602
- #: ../modules/map/map.php:16 ../modules/post-grid/post-grid.php:16
1603
- #: ../modules/sidebar/sidebar.php:16 ../modules/slideshow/slideshow.php:16
1604
- #: ../modules/social-buttons/social-buttons.php:16 ../modules/tabs/tabs.php:16
1605
- #: ../modules/testimonials/testimonials.php:16
1606
- #: ../modules/woocommerce/woocommerce.php:18
1607
- msgid "Advanced Modules"
1608
- msgstr "Avancerade moduler"
1609
-
1610
- #: ../modules/accordion/accordion.php:28 ../modules/tabs/tabs.php:28
1611
- msgid "Items"
1612
- msgstr "Artiklar"
1613
-
1614
- #: ../modules/accordion/accordion.php:35 ../modules/tabs/tabs.php:35
1615
- msgid "Item"
1616
- msgstr "Artikel"
1617
-
1618
- #: ../modules/accordion/accordion.php:52 ../modules/tabs/tabs.php:61
1619
- msgid "Border Color"
1620
- msgstr "Färg på kantlinje"
1621
-
1622
- #: ../modules/accordion/accordion.php:62
1623
- msgid "Label Size"
1624
- msgstr "Etikettstorlek"
1625
-
1626
- #: ../modules/accordion/accordion.php:65 ../modules/gallery/gallery.php:263
1627
- msgid "Small"
1628
- msgstr "Liten"
1629
-
1630
- #: ../modules/accordion/accordion.php:75
1631
- msgid "Item Spacing"
1632
- msgstr "Mellanrum"
1633
-
1634
- #: ../modules/accordion/accordion.php:86
1635
- msgid "Collapse Inactive"
1636
- msgstr "Kollapsa inaktiva"
1637
-
1638
- #: ../modules/accordion/accordion.php:92
1639
- msgid ""
1640
- "Choosing yes will keep only one item open at a time. Choosing no will allow "
1641
- "multiple items to be open at the same time."
1642
- msgstr ""
1643
- "Väljer du ja kommer endast ett alternativ att vara öppet. Väljer du nej kan "
1644
- "flera vara öppna samtidigt."
1645
-
1646
- #: ../modules/accordion/accordion.php:107 ../modules/tabs/tabs.php:74
1647
- msgid "Add Item"
1648
- msgstr "Lägg till artikel"
1649
-
1650
- #: ../modules/accordion/accordion.php:117 ../modules/tabs/tabs.php:84
1651
- msgid "Label"
1652
- msgstr "Etikett"
1653
-
1654
- #: ../modules/accordion/accordion.php:122
1655
- #: ../modules/post-grid/post-grid.php:194
1656
- #: ../modules/post-grid/post-grid.php:198
1657
- #: ../modules/post-grid/post-grid.php:224 ../modules/tabs/tabs.php:89
1658
- msgid "Content"
1659
- msgstr "Innehåll"
1660
-
1661
- #: ../modules/button/button.php:14 ../modules/callout/callout.php:478
1662
- #: ../modules/content-slider/content-slider.php:595 ../modules/cta/cta.php:211
1663
- msgid "Button"
1664
- msgstr "Knapp"
1665
-
1666
- #: ../modules/button/button.php:15
1667
- msgid "A simple call to action button."
1668
- msgstr "En enkel uppmaning"
1669
-
1670
- #: ../modules/button/button.php:56 ../modules/cta/cta.php:219
1671
- msgid "Click Here"
1672
- msgstr "Klicka här"
1673
-
1674
- #: ../modules/button/button.php:64 ../modules/callout/callout.php:316
1675
- #: ../modules/callout/callout.php:363 ../modules/callout/callout.php:367
1676
- #: ../modules/icon-group/icon-group.php:36
1677
- #: ../modules/icon-group/icon-group.php:137 ../modules/icon/icon.php:14
1678
- #: ../modules/icon/icon.php:36
1679
- msgid "Icon"
1680
- msgstr "Ikon"
1681
-
1682
- #: ../modules/button/button.php:70 ../modules/button/button.php:74
1683
- #: ../modules/callout/callout.php:443 ../modules/callout/callout.php:447
1684
- #: ../modules/content-slider/content-slider.php:566
1685
- #: ../modules/content-slider/content-slider.php:570
1686
- #: ../modules/content-slider/content-slider.php:594 ../modules/cta/cta.php:232
1687
- #: ../modules/heading/heading.php:43 ../modules/heading/heading.php:47
1688
- #: ../modules/icon-group/icon-group.php:141 ../modules/icon/icon.php:45
1689
- #: ../modules/slideshow/slideshow.php:343
1690
- msgid "Link"
1691
- msgstr "Länk"
1692
-
1693
- #: ../modules/button/button.php:82 ../modules/callout/callout.php:456
1694
- #: ../modules/content-slider/content-slider.php:576 ../modules/cta/cta.php:240
1695
- #: ../modules/heading/heading.php:55 ../modules/icon/icon.php:53
1696
- #: ../modules/photo/photo.php:459
1697
- msgid "Link Target"
1698
- msgstr "Målsida"
1699
-
1700
- #: ../modules/button/button.php:85 ../modules/callout/callout.php:459
1701
- #: ../modules/content-slider/content-slider.php:579 ../modules/cta/cta.php:243
1702
- #: ../modules/heading/heading.php:58 ../modules/icon/icon.php:56
1703
- #: ../modules/photo/photo.php:462
1704
- msgid "Same Window"
1705
- msgstr "Samma fönster"
1706
-
1707
- #: ../modules/button/button.php:86 ../modules/callout/callout.php:460
1708
- #: ../modules/content-slider/content-slider.php:580 ../modules/cta/cta.php:244
1709
- #: ../modules/heading/heading.php:59 ../modules/icon/icon.php:57
1710
- #: ../modules/photo/photo.php:463
1711
- msgid "New Window"
1712
- msgstr "Nytt fönster"
1713
-
1714
- #: ../modules/button/button.php:100 ../modules/cta/cta.php:184
1715
- #: ../modules/heading/heading.php:73 ../modules/icon-group/icon-group.php:49
1716
- #: ../modules/icon/icon.php:81
1717
- msgid "Colors"
1718
- msgstr "Färger"
1719
-
1720
- #: ../modules/button/button.php:110 ../modules/callout/callout.php:407
1721
- #: ../modules/callout/callout.php:508
1722
- #: ../modules/content-slider/content-slider.php:625 ../modules/cta/cta.php:263
1723
- #: ../modules/icon-group/icon-group.php:71 ../modules/icon/icon.php:103
1724
- msgid "Background Hover Color"
1725
- msgstr "Bakgrundsfärg vid muspekare över"
1726
-
1727
- #: ../modules/button/button.php:119 ../modules/callout/callout.php:517
1728
- #: ../modules/content-slider/content-slider.php:521
1729
- #: ../modules/content-slider/content-slider.php:630
1730
- #: ../modules/content-slider/content-slider.php:714 ../modules/cta/cta.php:188
1731
- #: ../modules/cta/cta.php:272 ../modules/heading/heading.php:78
1732
- msgid "Text Color"
1733
- msgstr "Textfärg"
1734
-
1735
- #: ../modules/button/button.php:125 ../modules/callout/callout.php:523
1736
- #: ../modules/content-slider/content-slider.php:636 ../modules/cta/cta.php:278
1737
- msgid "Text Hover Color"
1738
- msgstr "Textfärg vid muspekare över"
1739
-
1740
- #: ../modules/button/button.php:134 ../modules/callout/callout.php:415
1741
- #: ../modules/callout/callout.php:532
1742
- #: ../modules/content-slider/content-slider.php:641 ../modules/cta/cta.php:287
1743
- #: ../modules/icon-group/icon-group.php:79 ../modules/icon/icon.php:111
1744
- msgid "Gradient"
1745
- msgstr "Övertoning"
1746
-
1747
- #: ../modules/button/button.php:144 ../modules/callout/callout.php:243
1748
- #: ../modules/cta/cta.php:101 ../modules/heading/heading.php:88
1749
- #: ../modules/icon-group/icon-group.php:89 ../modules/icon/icon.php:121
1750
- msgid "Structure"
1751
- msgstr "Struktur"
1752
-
1753
- #: ../modules/button/button.php:151 ../modules/callout/callout.php:549
1754
- #: ../modules/content-slider/content-slider.php:554
1755
- msgid "Auto"
1756
- msgstr "Automatisk"
1757
-
1758
- #: ../modules/button/button.php:153 ../modules/callout/callout.php:283
1759
- #: ../modules/content-slider/content-slider.php:442 ../modules/cta/cta.php:165
1760
- #: ../modules/heading/heading.php:124 ../modules/heading/heading.php:151
1761
- #: ../modules/heading/heading.php:181
1762
- #: ../modules/social-buttons/social-buttons.php:74
1763
- msgid "Custom"
1764
- msgstr "Anpassad"
1765
-
1766
- #: ../modules/button/button.php:167
1767
- msgid "Custom Width"
1768
- msgstr "Anpassad bredd"
1769
-
1770
- #: ../modules/button/button.php:175 ../modules/cta/cta.php:119
1771
- #: ../modules/heading/heading.php:92 ../modules/heading/heading.php:147
1772
- #: ../modules/icon-group/icon-group.php:109 ../modules/icon/icon.php:133
1773
- #: ../modules/photo/photo.php:395
1774
- #: ../modules/social-buttons/social-buttons.php:97
1775
- msgid "Alignment"
1776
- msgstr "Justering"
1777
-
1778
- #: ../modules/button/button.php:178 ../modules/callout/callout.php:250
1779
- #: ../modules/content-slider/content-slider.php:470 ../modules/cta/cta.php:123
1780
- #: ../modules/heading/heading.php:96 ../modules/heading/heading.php:168
1781
- #: ../modules/icon-group/icon-group.php:112 ../modules/icon/icon.php:136
1782
- #: ../modules/photo/photo.php:399
1783
- #: ../modules/social-buttons/social-buttons.php:100
1784
- msgid "Center"
1785
- msgstr "Mitten"
1786
-
1787
- #: ../modules/button/button.php:185 ../modules/callout/callout.php:555
1788
- #: ../modules/content-slider/content-slider.php:655 ../modules/cta/cta.php:301
1789
- #: ../modules/heading/heading.php:120 ../modules/heading/heading.php:177
1790
- msgid "Font Size"
1791
- msgstr "Tyspnittsstorlek"
1792
-
1793
- #: ../modules/button/button.php:201 ../modules/callout/callout.php:571
1794
- #: ../modules/cta/cta.php:317
1795
- msgid "Round Corners"
1796
- msgstr "Runda hörn"
1797
-
1798
- #: ../modules/callout/callout.php:14
1799
- msgid "Callout"
1800
- msgstr "Callout"
1801
-
1802
- #: ../modules/callout/callout.php:15
1803
- msgid "A heading and snippet of text with an optional link, icon and image."
1804
- msgstr "En rubrik och en kort text med en valfri länk, ikon eller bild."
1805
-
1806
- #: ../modules/callout/callout.php:215
1807
- #: ../modules/content-slider/content-slider.php:406
1808
- #: ../modules/content-slider/content-slider.php:421 ../modules/cta/cta.php:71
1809
- #: ../modules/heading/heading.php:14 ../modules/heading/heading.php:33
1810
- #: ../modules/testimonials/testimonials.php:56
1811
- #: ../modules/testimonials/testimonials.php:61
1812
- msgid "Heading"
1813
- msgstr "Rubrik"
1814
-
1815
- #: ../modules/callout/callout.php:247
1816
- msgid "Overall Alignment"
1817
- msgstr "Justering"
1818
-
1819
- #: ../modules/callout/callout.php:254
1820
- msgid "The alignment that will apply to all elements within the callout."
1821
- msgstr "Justering för element inuti Callout"
1822
-
1823
- #: ../modules/callout/callout.php:262 ../modules/cta/cta.php:144
1824
- msgid "Heading Structure"
1825
- msgstr "Rubrikstruktur"
1826
-
1827
- #: ../modules/callout/callout.php:266
1828
- #: ../modules/content-slider/content-slider.php:425 ../modules/cta/cta.php:148
1829
- msgid "Heading Tag"
1830
- msgstr "Huvudrubrik"
1831
-
1832
- #: ../modules/callout/callout.php:279
1833
- #: ../modules/content-slider/content-slider.php:438
1834
- #: ../modules/content-slider/content-slider.php:452 ../modules/cta/cta.php:161
1835
- #: ../modules/testimonials/testimonials.php:69
1836
- msgid "Heading Size"
1837
- msgstr "Rubrikstorlek"
1838
-
1839
- #: ../modules/callout/callout.php:282
1840
- #: ../modules/content-slider/content-slider.php:441 ../modules/cta/cta.php:164
1841
- #: ../modules/heading/heading.php:123 ../modules/heading/heading.php:150
1842
- #: ../modules/heading/heading.php:180
1843
- #: ../modules/woocommerce/woocommerce.php:186
1844
- msgid "Default"
1845
- msgstr "Standard"
1846
-
1847
- #: ../modules/callout/callout.php:293 ../modules/cta/cta.php:175
1848
- msgid "Heading Custom Size"
1849
- msgstr "Anpassad storlek på rubrik"
1850
-
1851
- #: ../modules/callout/callout.php:311
1852
- msgid "Image Type"
1853
- msgstr "Bildtyp"
1854
-
1855
- #: ../modules/callout/callout.php:339 ../modules/photo/photo.php:383
1856
- #: ../modules/slideshow/slideshow.php:312
1857
- msgid "Crop"
1858
- msgstr "Beskär"
1859
-
1860
- #: ../modules/callout/callout.php:343 ../modules/photo/photo.php:387
1861
- msgid "Landscape"
1862
- msgstr "Landskap"
1863
-
1864
- #: ../modules/callout/callout.php:344 ../modules/photo/photo.php:388
1865
- msgid "Panorama"
1866
- msgstr "Panorama"
1867
-
1868
- #: ../modules/callout/callout.php:345 ../modules/photo/photo.php:389
1869
- msgid "Portrait"
1870
- msgstr "Porträtt"
1871
-
1872
- #: ../modules/callout/callout.php:346 ../modules/photo/photo.php:390
1873
- msgid "Square"
1874
- msgstr "Fyrkant"
1875
-
1876
- #: ../modules/callout/callout.php:354 ../modules/callout/callout.php:374
1877
- msgid "Above Heading"
1878
- msgstr "Över rubriken"
1879
-
1880
- #: ../modules/callout/callout.php:355 ../modules/callout/callout.php:375
1881
- msgid "Below Heading"
1882
- msgstr "Under rubriken"
1883
-
1884
- #: ../modules/callout/callout.php:356 ../modules/callout/callout.php:378
1885
- msgid "Left of Text and Heading"
1886
- msgstr "Till vänster om texten och rubriken"
1887
-
1888
- #: ../modules/callout/callout.php:357 ../modules/callout/callout.php:379
1889
- msgid "Right of Text and Heading"
1890
- msgstr "Till höger om texten och rubriken"
1891
-
1892
- #: ../modules/callout/callout.php:376
1893
- msgid "Left Heading"
1894
- msgstr "Rubrik höger"
1895
-
1896
- #: ../modules/callout/callout.php:377
1897
- msgid "Right Heading"
1898
- msgstr "Rubrik vänster"
1899
-
1900
- #: ../modules/callout/callout.php:385
1901
- msgid "Icon Colors"
1902
- msgstr "Ikonfärger"
1903
-
1904
- #: ../modules/callout/callout.php:394 ../modules/icon-group/icon-group.php:58
1905
- #: ../modules/icon/icon.php:90
1906
- msgid "Hover Color"
1907
- msgstr "Färg vid muspekare över"
1908
-
1909
- #: ../modules/callout/callout.php:425
1910
- msgid "Icon Structure"
1911
- msgstr "Ikonstruktur"
1912
-
1913
- #: ../modules/callout/callout.php:429 ../modules/icon-group/icon-group.php:93
1914
- #: ../modules/icon/icon.php:125 ../modules/post-grid/post-grid.php:136
1915
- msgid "Size"
1916
- msgstr "Storlek"
1917
-
1918
- #: ../modules/callout/callout.php:440
1919
- #: ../modules/content-slider/content-slider.php:563
1920
- msgid "Call To Action"
1921
- msgstr "Uppmaning"
1922
-
1923
- #: ../modules/callout/callout.php:449
1924
- msgid ""
1925
- "The link applies to the entire module. If choosing a call to action type "
1926
- "below, this link will also be used for the text or button."
1927
- msgstr ""
1928
- "Länken gäller för hela modulen. Om du väljer en \"uppmaning till handling\"-"
1929
- "typ nedan kommer den här länken också användas för knappen och texten."
1930
-
1931
- #: ../modules/callout/callout.php:469
1932
- #: ../modules/content-slider/content-slider.php:586 ../modules/cta/cta.php:14
1933
- msgid "Call to Action"
1934
- msgstr "Uppmaning"
1935
-
1936
- #: ../modules/callout/callout.php:498
1937
- #: ../modules/content-slider/content-slider.php:615 ../modules/cta/cta.php:253
1938
- msgid "Button Colors"
1939
- msgstr "Knappfärger"
1940
-
1941
- #: ../modules/callout/callout.php:542
1942
- #: ../modules/content-slider/content-slider.php:651 ../modules/cta/cta.php:297
1943
- msgid "Button Structure"
1944
- msgstr "Knappstruktur"
1945
-
1946
- #: ../modules/callout/callout.php:546
1947
- msgid "Button Width"
1948
- msgstr "Knappens bredd"
1949
-
1950
- #: ../modules/contact-form/contact-form.php:14
1951
- msgid "Contact Form"
1952
- msgstr "Kontakformulär"
1953
-
1954
- #: ../modules/contact-form/contact-form.php:15
1955
- msgid "A very simple contact form."
1956
- msgstr "Ett enkelt kontaktformulär"
1957
-
1958
- #: ../modules/contact-form/contact-form.php:36
1959
- msgid "Contact Form Submission"
1960
- msgstr "Lämna in kontaktformulär"
1961
-
1962
- #: ../modules/contact-form/contact-form.php:64
1963
- msgid "Send To Email"
1964
- msgstr "Skicka till e-post"
1965
-
1966
- #: ../modules/contact-form/contact-form.php:66
1967
- msgid "example@mail.com"
1968
- msgstr "exempel@e-post.com"
1969
-
1970
- #: ../modules/contact-form/contact-form.php:67
1971
- msgid "The contact form will send to this e-mail"
1972
- msgstr "Kontaktformuläret skickar till denna e-post"
1973
-
1974
- #: ../modules/contact-form/includes/frontend.php:5
1975
- msgid "Please enter your name."
1976
- msgstr "Var vänlig fyll i ditt namn"
1977
-
1978
- #: ../modules/contact-form/includes/frontend.php:10
1979
- msgid "Email"
1980
- msgstr "E-post"
1981
-
1982
- #: ../modules/contact-form/includes/frontend.php:11
1983
- msgid "Please enter a valid email."
1984
- msgstr "Ange en korrekt e-postadress"
1985
-
1986
- #: ../modules/contact-form/includes/frontend.php:16
1987
- msgid "Your Message"
1988
- msgstr "Ditt meddelande"
1989
-
1990
- #: ../modules/contact-form/includes/frontend.php:17
1991
- msgid "Please enter a message."
1992
- msgstr "Lämna ett meddelande"
1993
-
1994
- #: ../modules/contact-form/includes/frontend.php:23
1995
- msgid "Send"
1996
- msgstr "Skicka"
1997
-
1998
- #: ../modules/content-slider/content-slider.php:14
1999
- msgid "Content Slider"
2000
- msgstr "Bildväxlare"
2001
-
2002
- #: ../modules/content-slider/content-slider.php:15
2003
- msgid "Displays multiple slides with an optional heading and call to action."
2004
- msgstr "Visa flera bilder med valfri rubrik och uppmaning"
2005
-
2006
- #: ../modules/content-slider/content-slider.php:190 ../modules/map/map.php:41
2007
- #: ../modules/separator/separator.php:58
2008
- #: ../modules/slideshow/slideshow.php:294
2009
- msgid "Height"
2010
- msgstr "Höjd"
2011
-
2012
- #: ../modules/content-slider/content-slider.php:195
2013
- msgid ""
2014
- "This setting is the minimum height of the content slider. Content will "
2015
- "expand the height automatically."
2016
- msgstr ""
2017
- "Ställ in minsta höjd på bildspelet. Innehållet kommer att anpassa sig efter "
2018
- "höjden automatiskt."
2019
-
2020
- #: ../modules/content-slider/content-slider.php:199
2021
- #: ../modules/slideshow/slideshow.php:374
2022
- #: ../modules/testimonials/testimonials.php:82 ../modules/video/video.php:108
2023
- msgid "Auto Play"
2024
- msgstr "Spela upp automatiskt"
2025
-
2026
- #: ../modules/content-slider/content-slider.php:213
2027
- msgid "Show Play/Pause"
2028
- msgstr "Visa spela/pausa"
2029
-
2030
- #: ../modules/content-slider/content-slider.php:226
2031
- #: ../modules/content-slider/content-slider.php:243
2032
- #: ../modules/testimonials/testimonials.php:95
2033
- #: ../modules/testimonials/testimonials.php:112
2034
- msgid "Seconds"
2035
- msgstr "Sekunder"
2036
-
2037
- #: ../modules/content-slider/content-slider.php:247
2038
- #: ../modules/testimonials/testimonials.php:121
2039
- msgid "Show Arrows"
2040
- msgstr "Visa pilar"
2041
-
2042
- #: ../modules/content-slider/content-slider.php:256
2043
- #: ../modules/testimonials/testimonials.php:151
2044
- msgid "Show Dots"
2045
- msgstr "Visa prickar"
2046
-
2047
- #: ../modules/content-slider/content-slider.php:270
2048
- msgid "Max Content Width"
2049
- msgstr "Maxbredd på innehåll"
2050
-
2051
- #: ../modules/content-slider/content-slider.php:275
2052
- msgid "The max width that the content area will be within your slides."
2053
- msgstr "Max bredd som innehållsområdet kommer att vara inom dina slides."
2054
-
2055
- #: ../modules/content-slider/content-slider.php:282
2056
- msgid "Slides"
2057
- msgstr "Bildspelsbilder"
2058
-
2059
- #: ../modules/content-slider/content-slider.php:289
2060
- msgid "Slide"
2061
- msgstr "Bildspel"
2062
-
2063
- #: ../modules/content-slider/content-slider.php:304
2064
- msgid "Slide Settings"
2065
- msgstr "Bildspelsinställningar"
2066
-
2067
- #: ../modules/content-slider/content-slider.php:314
2068
- msgid "Slide Label"
2069
- msgstr "Slide etikett"
2070
-
2071
- #: ../modules/content-slider/content-slider.php:315
2072
- msgid ""
2073
- "A label to identify this slide on the Slides tab of the Content Slider "
2074
- "settings."
2075
- msgstr ""
2076
- "En kort beskrivning för att identifiera denna bild på fliken Bilder i "
2077
- "Content Slider inställningarna."
2078
-
2079
- #: ../modules/content-slider/content-slider.php:320
2080
- msgid "Background Layout"
2081
- msgstr "Bakgrundslayout"
2082
-
2083
- #: ../modules/content-slider/content-slider.php:326
2084
- msgid "This setting is for the entire background of your slide."
2085
- msgstr "Denna inställnign gäller för hela bakgrunden av ditt bildspel."
2086
-
2087
- #: ../modules/content-slider/content-slider.php:361
2088
- msgid "Background Video Code"
2089
- msgstr "Bakgrundsvideo-kod"
2090
-
2091
- #: ../modules/content-slider/content-slider.php:367
2092
- msgid "Content Layout"
2093
- msgstr "Innehållslayout"
2094
-
2095
- #: ../modules/content-slider/content-slider.php:373
2096
- msgid ""
2097
- "This allows you to add content over or in addition to the background "
2098
- "selection above. The location of the content layout can be selected in the "
2099
- "style tab."
2100
- msgstr ""
2101
- "Detta tillåter dig att lägga till innehåll över eller addera innehåll till "
2102
- "bakgrunden i markeringen övan. Positionen av innehållslayouten kan du välja "
2103
- "i utseendefliken"
2104
-
2105
- #: ../modules/content-slider/content-slider.php:376
2106
- msgid "Text &amp; Photo"
2107
- msgstr "Text &amp; bild"
2108
-
2109
- #: ../modules/content-slider/content-slider.php:377
2110
- msgid "Text &amp; Video"
2111
- msgstr "Text &amp; Video"
2112
-
2113
- #: ../modules/content-slider/content-slider.php:401
2114
- msgid "Video Embed Code"
2115
- msgstr "Videoinbäddningskod"
2116
-
2117
- #: ../modules/content-slider/content-slider.php:461
2118
- msgid "Text Position"
2119
- msgstr "Textposition"
2120
-
2121
- #: ../modules/content-slider/content-slider.php:467
2122
- msgid ""
2123
- "The position will move the content layout selections left, right or center "
2124
- "over the background of the slide."
2125
- msgstr ""
2126
- "Positionsinställningen kommer flytta innehållslayouten till vänster, höger "
2127
- "eller mitten över bakgrunden av bildspelsbilden."
2128
-
2129
- #: ../modules/content-slider/content-slider.php:484
2130
- msgid "Top Margin"
2131
- msgstr "Topmarginal"
2132
-
2133
- #: ../modules/content-slider/content-slider.php:492
2134
- msgid "Bottom Margin"
2135
- msgstr "Bottenmarginal"
2136
-
2137
- #: ../modules/content-slider/content-slider.php:500
2138
- msgid "Left Margin"
2139
- msgstr "Vänstermarginal"
2140
-
2141
- #: ../modules/content-slider/content-slider.php:508
2142
- msgid "Right Margin"
2143
- msgstr "Högermarginal"
2144
-
2145
- #: ../modules/content-slider/content-slider.php:517
2146
- msgid "Text Colors"
2147
- msgstr "Textfärg"
2148
-
2149
- #: ../modules/content-slider/content-slider.php:527
2150
- msgid "Text Shadow"
2151
- msgstr "Textskugga"
2152
-
2153
- #: ../modules/content-slider/content-slider.php:536
2154
- #: ../modules/content-slider/content-slider.php:720
2155
- msgid "Text Background Color"
2156
- msgstr "Bakgrundsfärg för text"
2157
-
2158
- #: ../modules/content-slider/content-slider.php:537
2159
- msgid ""
2160
- "The color applies to the overlay behind text over the background selections."
2161
- msgstr "Färgen läggs till på textbakgrunden som lägger sig över bildspelet"
2162
-
2163
- #: ../modules/content-slider/content-slider.php:542
2164
- msgid "Text Background Opacity"
2165
- msgstr "Textbakgrundens genomskinlighet"
2166
-
2167
- #: ../modules/content-slider/content-slider.php:550
2168
- msgid "Text Background Height"
2169
- msgstr "Textbakgrundens höjd"
2170
-
2171
- #: ../modules/content-slider/content-slider.php:552
2172
- msgid ""
2173
- "Auto will allow the overlay to fit however long the text content is. 100% "
2174
- "will fit the overlay to the top and bottom of the slide."
2175
- msgstr ""
2176
- "Automatisk kommer att anpassa textbakgrunden till hela bildspelets höjd."
2177
-
2178
- #: ../modules/content-slider/content-slider.php:572
2179
- msgid ""
2180
- "The link applies to the entire slide. If choosing a call to action type "
2181
- "below, this link will also be used for the text or button."
2182
- msgstr ""
2183
- "Länken gäller för hela bildspelet. Om du väljer en uppmaning nedan kommer "
2184
- "denna länk även att användas för texten eller knappen."
2185
-
2186
- #: ../modules/content-slider/content-slider.php:671
2187
- msgid "Border Radius"
2188
- msgstr "Runda hörn"
2189
-
2190
- #: ../modules/content-slider/content-slider.php:682
2191
- msgid "Mobile"
2192
- msgstr "Mobil"
2193
-
2194
- #: ../modules/content-slider/content-slider.php:685
2195
- msgid "Mobile Photo"
2196
- msgstr "Mobilbild"
2197
-
2198
- #: ../modules/content-slider/content-slider.php:691
2199
- msgid ""
2200
- "You can choose a different photo that the slide will change to on mobile "
2201
- "devices or no photo if desired."
2202
- msgstr ""
2203
- "Du kan välja att visa en annan eller ingen bild i bildspelet för mobilvy."
2204
-
2205
- #: ../modules/content-slider/content-slider.php:693
2206
- msgid "Use Main Photo"
2207
- msgstr "Använd huvudbild"
2208
-
2209
- #: ../modules/content-slider/content-slider.php:694
2210
- msgid "Choose Another Photo"
2211
- msgstr "Välj en annan bild"
2212
-
2213
- #: ../modules/content-slider/content-slider.php:695
2214
- msgid "No Photo"
2215
- msgstr "Ingen bild"
2216
-
2217
- #: ../modules/content-slider/content-slider.php:710
2218
- msgid "Mobile Text Colors"
2219
- msgstr "Mobiltextfärger"
2220
-
2221
- #: ../modules/cta/cta.php:15
2222
- msgid "Display a heading, subheading and a button."
2223
- msgstr "Visa en rubrik, underrubrik och en knapp"
2224
-
2225
- #: ../modules/cta/cta.php:72
2226
- msgid "Ready to find out more?"
2227
- msgstr "Redo att lära dig mer?"
2228
-
2229
- #: ../modules/cta/cta.php:87
2230
- msgid "Drop us a line today for a free quote!"
2231
- msgstr "Lämna ett meddelande idag för en gratis offert!"
2232
-
2233
- #: ../modules/cta/cta.php:105 ../modules/gallery/gallery.php:220
2234
- #: ../modules/post-grid/post-grid.php:44 ../modules/tabs/tabs.php:52
2235
- #: ../modules/testimonials/testimonials.php:37
2236
- #: ../modules/woocommerce/woocommerce.php:57
2237
- msgid "Layout"
2238
- msgstr "Mall"
2239
-
2240
- #: ../modules/cta/cta.php:108
2241
- msgid "Inline"
2242
- msgstr "irad"
2243
-
2244
- #: ../modules/cta/cta.php:109
2245
- msgid "Stacked"
2246
- msgstr "Staplade"
2247
-
2248
- #: ../modules/cta/cta.php:129 ../modules/icon-group/icon-group.php:101
2249
- msgid "Spacing"
2250
- msgstr "Avstånd"
2251
-
2252
- #: ../modules/cta/cta.php:200
2253
- msgid "Background Opacity"
2254
- msgstr "Genomskinlighet på bakgrund"
2255
-
2256
- #: ../modules/cta/cta.php:228
2257
- msgid "Button Link"
2258
- msgstr "Knapplänk"
2259
-
2260
- #: ../modules/gallery/gallery.php:14 ../modules/post-grid/post-grid.php:55
2261
- msgid "Gallery"
2262
- msgstr "Galleri"
2263
-
2264
- #: ../modules/gallery/gallery.php:15
2265
- msgid "Display multiple photos in a gallery view."
2266
- msgstr "Visa flera bilder i ett galleri."
2267
-
2268
- #: ../modules/gallery/gallery.php:223
2269
- msgid "Collage"
2270
- msgstr "Kollage"
2271
-
2272
- #: ../modules/gallery/gallery.php:224 ../modules/slideshow/slideshow.php:457
2273
- #: ../modules/slideshow/slideshow.php:587
2274
- msgid "Thumbs"
2275
- msgstr "Tumnaglar"
2276
-
2277
- #: ../modules/gallery/gallery.php:260
2278
- msgid "Photo Size"
2279
- msgstr "Bildstorlek"
2280
-
2281
- #: ../modules/gallery/gallery.php:270
2282
- msgid "Photo Spacing"
2283
- msgstr "Bildmellanrum"
2284
-
2285
- #: ../modules/gallery/gallery.php:278
2286
- msgid "Show Captions"
2287
- msgstr "Visa bildtext"
2288
-
2289
- #: ../modules/gallery/gallery.php:281 ../modules/photo/photo.php:413
2290
- msgid "Never"
2291
- msgstr "Aldrig"
2292
-
2293
- #: ../modules/gallery/gallery.php:282 ../modules/photo/photo.php:414
2294
- msgid "On Hover"
2295
- msgstr "Vid musen över"
2296
-
2297
- #: ../modules/gallery/gallery.php:283 ../modules/photo/photo.php:415
2298
- msgid "Below Photo"
2299
- msgstr "Under bilden"
2300
-
2301
- #: ../modules/gallery/gallery.php:285
2302
- msgid ""
2303
- "The caption pulls from whatever text you put in the caption area in the "
2304
- "media manager for each image. The caption is also pulled directly from "
2305
- "SmugMug if you have captions set in your gallery."
2306
- msgstr ""
2307
- "Bildtexten tas från den bildtext du har angivit i mediabiblioteket. "
2308
- "Bildtexten tas också direkt från SmugMug om du har bildtexter där."
2309
-
2310
- #: ../modules/gallery/gallery.php:289 ../modules/slideshow/slideshow.php:335
2311
- msgid "Click Action"
2312
- msgstr "När du klickar"
2313
-
2314
- #: ../modules/gallery/gallery.php:293
2315
- msgid "Lightbox"
2316
- msgstr "Lightbox (popupfönster)"
2317
-
2318
- #: ../modules/gallery/gallery.php:294
2319
- msgid "Photo Link"
2320
- msgstr "Bildlänk"
2321
-
2322
- #: ../modules/heading/heading.php:15
2323
- msgid "Display a title/page heading."
2324
- msgstr "Visa titel/sidrubrik"
2325
-
2326
- #: ../modules/heading/heading.php:16 ../modules/photo/photo.php:27
2327
- #: ../modules/rich-text/rich-text.php:16 ../modules/separator/separator.php:16
2328
- #: ../modules/video/video.php:21
2329
- msgid "Basic Modules"
2330
- msgstr "Basmoduler"
2331
-
2332
- #: ../modules/heading/heading.php:107
2333
- msgid "Tag"
2334
- msgstr "Tag"
2335
-
2336
- #: ../modules/heading/heading.php:110
2337
- msgid "h1"
2338
- msgstr "h1"
2339
-
2340
- #: ../modules/heading/heading.php:111
2341
- msgid "h2"
2342
- msgstr "h2"
2343
-
2344
- #: ../modules/heading/heading.php:112
2345
- msgid "h3"
2346
- msgstr "h3"
2347
-
2348
- #: ../modules/heading/heading.php:113
2349
- msgid "h4"
2350
- msgstr "h4"
2351
-
2352
- #: ../modules/heading/heading.php:114
2353
- msgid "h5"
2354
- msgstr "h5"
2355
-
2356
- #: ../modules/heading/heading.php:115
2357
- msgid "h6"
2358
- msgstr "h6"
2359
-
2360
- #: ../modules/heading/heading.php:134 ../modules/heading/heading.php:194
2361
- msgid "Custom Font Size"
2362
- msgstr "Egen typsnittstorlek"
2363
-
2364
- #: ../modules/heading/heading.php:143
2365
- msgid "Mobile Structure"
2366
- msgstr "Mobilstruktur"
2367
-
2368
- #: ../modules/heading/heading.php:164
2369
- msgid "Custom Alignment"
2370
- msgstr "Egen placering"
2371
-
2372
- #: ../modules/html/html.php:14
2373
- msgid "HTML"
2374
- msgstr "HTML"
2375
-
2376
- #: ../modules/html/html.php:15
2377
- msgid "Display raw HTML code."
2378
- msgstr "Visa vanlig html-kod"
2379
-
2380
- #: ../modules/icon-group/icon-group.php:14
2381
- msgid "Icon Group"
2382
- msgstr "Ikongrupp"
2383
-
2384
- #: ../modules/icon-group/icon-group.php:15
2385
- msgid "Display a group of linked Font Awesome icons."
2386
- msgstr "Visa en grupp av länkade ikoner"
2387
-
2388
- #: ../modules/icon-group/icon-group.php:29
2389
- msgid "Icons"
2390
- msgstr "Ikoner"
2391
-
2392
- #: ../modules/icon-group/icon-group.php:127
2393
- msgid "Add Icon"
2394
- msgstr "Lägg till ikon"
2395
-
2396
- #: ../modules/icon/icon.php:15
2397
- msgid "Display a Font Awesome icon and optional title."
2398
- msgstr "Visa en ikon och en valfri titel."
2399
-
2400
- #: ../modules/map/map.php:14
2401
- msgid "Map"
2402
- msgstr "Karta"
2403
-
2404
- #: ../modules/map/map.php:15
2405
- msgid "Display a Google map."
2406
- msgstr "Visa en google-karta"
2407
-
2408
- #: ../modules/map/map.php:33
2409
- msgid "Address"
2410
- msgstr "Adress"
2411
-
2412
- #: ../modules/map/map.php:34
2413
- msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
2414
- msgstr "Östergatan 4 56732 Vaggeryd"
2415
-
2416
- #: ../modules/photo/photo.php:26
2417
- msgid "Upload a photo or display one from the media library."
2418
- msgstr "Ladda upp en bild eller visa en från mediebiblioteket."
2419
-
2420
- #: ../modules/photo/photo.php:357
2421
- msgid "Photo Source"
2422
- msgstr "Bildkälla"
2423
-
2424
- #: ../modules/photo/photo.php:361 ../modules/photo/photo.php:432
2425
- msgid "URL"
2426
- msgstr "Länk"
2427
-
2428
- #: ../modules/photo/photo.php:378
2429
- msgid "Photo URL"
2430
- msgstr "Bildlänk"
2431
-
2432
- #: ../modules/photo/photo.php:410
2433
- msgid "Show Caption"
2434
- msgstr "Visa bildtext"
2435
-
2436
- #: ../modules/photo/photo.php:420
2437
- msgid "Caption"
2438
- msgstr "Bildtext"
2439
-
2440
- #: ../modules/photo/photo.php:429
2441
- msgid "Link Type"
2442
- msgstr "Länktyp"
2443
-
2444
- #: ../modules/photo/photo.php:433
2445
- msgid "Photo File"
2446
- msgstr "Bildfilen"
2447
-
2448
- #: ../modules/photo/photo.php:434
2449
- msgid "Photo Page"
2450
- msgstr "Bildsida"
2451
-
2452
- #: ../modules/photo/photo.php:444
2453
- msgid ""
2454
- "Link type applies to how the image should be linked on click. You can choose "
2455
- "a specific URL, the individual photo or a separate page with the photo."
2456
- msgstr ""
2457
- "Länktyp bestämmer vad som händer vid klick på bilden. Välj en specifik url, "
2458
- "länk till bilden eller en egen sida med bilden."
2459
-
2460
- #: ../modules/photo/photo.php:451 ../modules/slideshow/slideshow.php:356
2461
- msgid "Link URL"
2462
- msgstr "Länkurl"
2463
-
2464
- #: ../modules/post-grid/includes/frontend.php:41
2465
- msgid "No posts found."
2466
- msgstr "Inga inlägg hittades"
2467
-
2468
- #: ../modules/post-grid/includes/post-feed.php:11
2469
- #: ../modules/post-grid/includes/post-grid.php:21
2470
- msgid "By "
2471
- msgstr "Av "
2472
-
2473
- #: ../modules/post-grid/includes/post-feed.php:49
2474
- #: ../modules/post-grid/includes/post-grid.php:42
2475
- msgid "Read More"
2476
- msgstr "Läs mer"
2477
-
2478
- #: ../modules/post-grid/post-grid.php:14
2479
- msgid "Posts"
2480
- msgstr "Inlägg"
2481
-
2482
- #: ../modules/post-grid/post-grid.php:15
2483
- msgid "Display a grid of your WordPress posts."
2484
- msgstr "Presentera dina WordPress-inlägg i ett rutnät"
2485
-
2486
- #: ../modules/post-grid/post-grid.php:51
2487
- msgid "Layout Style"
2488
- msgstr "Mallstil"
2489
-
2490
- #: ../modules/post-grid/post-grid.php:54 ../modules/post-grid/post-grid.php:88
2491
- msgid "Grid"
2492
- msgstr "Rutnät"
2493
-
2494
- #: ../modules/post-grid/post-grid.php:56
2495
- msgid "Feed"
2496
- msgstr "Flöde"
2497
-
2498
- #: ../modules/post-grid/post-grid.php:71
2499
- msgid "Pagination Style"
2500
- msgstr "Pagineringsstil"
2501
-
2502
- #: ../modules/post-grid/post-grid.php:74
2503
- msgid "Numbers"
2504
- msgstr "Nummer"
2505
-
2506
- #: ../modules/post-grid/post-grid.php:81
2507
- msgid "Posts Per Page"
2508
- msgstr "Inlägg per sida"
2509
-
2510
- #: ../modules/post-grid/post-grid.php:92
2511
- msgid "Post Width"
2512
- msgstr "Inläggets bredd"
2513
-
2514
- #: ../modules/post-grid/post-grid.php:100
2515
- msgid "Post Spacing"
2516
- msgstr "Mellanrum mellan inlägg"
2517
-
2518
- #: ../modules/post-grid/post-grid.php:109
2519
- msgid "Featured Image"
2520
- msgstr "Utvald bild"
2521
-
2522
- #: ../modules/post-grid/post-grid.php:117
2523
- #: ../modules/post-grid/post-grid.php:150
2524
- #: ../modules/post-grid/post-grid.php:159
2525
- #: ../modules/post-grid/post-grid.php:188
2526
- #: ../modules/post-grid/post-grid.php:202
2527
- #: ../modules/post-grid/post-grid.php:216
2528
- msgid "Hide"
2529
- msgstr "Göm"
2530
-
2531
- #: ../modules/post-grid/post-grid.php:130
2532
- msgid "Above Text"
2533
- msgstr "Över texten"
2534
-
2535
- #: ../modules/post-grid/post-grid.php:131
2536
- msgid "Beside Text"
2537
- msgstr "Bredvid texten"
2538
-
2539
- #: ../modules/post-grid/post-grid.php:142
2540
- msgid "Post Info"
2541
- msgstr "Inläggsinformation"
2542
-
2543
- #: ../modules/post-grid/post-grid.php:169
2544
- msgid "Date Format"
2545
- msgstr "Datumformat"
2546
-
2547
- #: ../modules/post-grid/post-grid.php:184
2548
- msgid "Comments"
2549
- msgstr "Kommentarer"
2550
-
2551
- #: ../modules/post-grid/post-grid.php:212
2552
- msgid "More Link"
2553
- msgstr "Merlänk"
2554
-
2555
- #: ../modules/rich-text/rich-text.php:15
2556
- msgid "A WYSIWYG text editor."
2557
- msgstr "En WYSIWYG textredigerare."
2558
-
2559
- #: ../modules/separator/separator.php:14
2560
- msgid "Separator"
2561
- msgstr "Separerare"
2562
-
2563
- #: ../modules/separator/separator.php:15
2564
- msgid "A divider line to separate content."
2565
- msgstr "Avgränsare för att separera innehåll."
2566
-
2567
- #: ../modules/separator/separator.php:85
2568
- msgid ""
2569
- "The type of border to use. Double borders must have a height of at least 3px "
2570
- "to render properly."
2571
- msgstr ""
2572
- "Den typen av kantlinje som ska användas. Dubbla kantlinjer måste ha en höjd "
2573
- "av åtminstone 3px för att visas korrekt."
2574
-
2575
- #: ../modules/sidebar/includes/settings-general.php:5
2576
- #: ../modules/sidebar/sidebar.php:14
2577
- msgid "Sidebar"
2578
- msgstr "Sidofält (Sidebar)"
2579
-
2580
- #: ../modules/sidebar/sidebar.php:15
2581
- msgid ""
2582
- "Display a WordPress sidebar that has been registered by the current theme."
2583
- msgstr "Visa en worpress-sidebar som har registrerats i nuvarande tema."
2584
-
2585
- #: ../modules/slideshow/slideshow.php:15
2586
- msgid "Display multiple photos in a slideshow view."
2587
- msgstr "Visa flera bilder i bildspelsvy"
2588
-
2589
- #: ../modules/slideshow/slideshow.php:302
2590
- msgid "Skin Color"
2591
- msgstr "Färgschema"
2592
-
2593
- #: ../modules/slideshow/slideshow.php:305
2594
- msgid "Light"
2595
- msgstr "Ljusare"
2596
-
2597
- #: ../modules/slideshow/slideshow.php:306
2598
- msgid "Dark"
2599
- msgstr "Mörkare"
2600
-
2601
- #: ../modules/slideshow/slideshow.php:308
2602
- msgid ""
2603
- "If your overall theme/images are lighter in color, light will display "
2604
- "buttons in a darker color scheme and vice versa for dark."
2605
- msgstr ""
2606
- "Om din bilder är ljusare i färgen. Ljusare kommer att visa knapparna i "
2607
- "mörkare färgtema och vice versa om du väljer mörkare."
2608
-
2609
- #: ../modules/slideshow/slideshow.php:318
2610
- msgid ""
2611
- "Crop set to no will fit the slideshow images to the height you specify and "
2612
- "keep the width proportional, whereas crop set to yes will fit the slideshow "
2613
- "images to all sides of the content area while cropping the left and right to "
2614
- "fit the height you specify."
2615
- msgstr ""
2616
- "Beskärning angiven till nej kommer att anpassa bilderna till den höjd du har "
2617
- "angivit men behålla proportionerna medans beskära kommer att anpassa bilden "
2618
- "till hela bildspelets höjd/bredd."
2619
-
2620
- #: ../modules/slideshow/slideshow.php:322
2621
- msgid "Disable Right-Click"
2622
- msgstr "Stäng av högerklick"
2623
-
2624
- #: ../modules/slideshow/slideshow.php:367
2625
- msgid "Playback"
2626
- msgstr "Uppspelning"
2627
-
2628
- #: ../modules/slideshow/slideshow.php:430
2629
- msgid "Controls"
2630
- msgstr "Kontroller"
2631
-
2632
- #: ../modules/slideshow/slideshow.php:437
2633
- #: ../modules/slideshow/slideshow.php:486
2634
- msgid "Navigation Arrows"
2635
- msgstr "Navigeringspilar"
2636
-
2637
- #: ../modules/slideshow/slideshow.php:443
2638
- msgid ""
2639
- "Navigational arrows allow the visitor to freely move through the images in "
2640
- "your slideshow. These are larger arrows that overlay your slideshow images "
2641
- "and are separate from the control bar navigational arrows."
2642
- msgstr ""
2643
- "Navigationspilarna tillåter besökaren att fritt flytta mellan bilderna i "
2644
- "bildspelet. Dessa är större pilar som lägger sig över dina bildspelsbilder "
2645
- "och är skilda från navigationspilarna i kontrollbaren."
2646
-
2647
- #: ../modules/slideshow/slideshow.php:448
2648
- msgid "Control Bar"
2649
- msgstr "Kontrollbaren"
2650
-
2651
- #: ../modules/slideshow/slideshow.php:452
2652
- msgid "Nav Type"
2653
- msgstr "Navigeringstyp"
2654
-
2655
- #: ../modules/slideshow/slideshow.php:456
2656
- msgid "Buttons"
2657
- msgstr "Knappar"
2658
-
2659
- #: ../modules/slideshow/slideshow.php:472
2660
- msgid "Nav Position"
2661
- msgstr "Menyposition"
2662
-
2663
- #: ../modules/slideshow/slideshow.php:482
2664
- msgid "Control Bar Buttons"
2665
- msgstr "Kontrollbarknappar"
2666
-
2667
- #: ../modules/slideshow/slideshow.php:495
2668
- msgid "Play Button"
2669
- msgstr "Spela-knapp"
2670
-
2671
- #: ../modules/slideshow/slideshow.php:504
2672
- msgid "Fullscreen Button"
2673
- msgstr "Fullskärmsknapp"
2674
-
2675
- #: ../modules/slideshow/slideshow.php:513
2676
- msgid "Photo Count"
2677
- msgstr "Bildräkning"
2678
-
2679
- #: ../modules/slideshow/slideshow.php:522
2680
- msgid "Thumbs Button"
2681
- msgstr "Tumnagelknapp"
2682
-
2683
- #: ../modules/slideshow/slideshow.php:531
2684
- msgid "Caption Button"
2685
- msgstr "Bildtextknapp"
2686
-
2687
- #: ../modules/slideshow/slideshow.php:540
2688
- msgid "Social Button"
2689
- msgstr "Sociala knappar"
2690
-
2691
- #: ../modules/slideshow/slideshow.php:550
2692
- msgid "Control Bar Overlay"
2693
- msgstr "Kontrollbar overlay"
2694
-
2695
- #: ../modules/slideshow/slideshow.php:554
2696
- msgid "Overlay Enabled"
2697
- msgstr "Overlay på"
2698
-
2699
- #: ../modules/slideshow/slideshow.php:565
2700
- msgid ""
2701
- "Control bar overlay specifies if the control bar buttons you choose overlay "
2702
- "your slideshow images or site below the slideshow completely."
2703
- msgstr ""
2704
- "Om Kontrollpanelens overlay ska synas över bildspelet eller om det ska synas "
2705
- "nedanför bildspelet."
2706
-
2707
- #: ../modules/slideshow/slideshow.php:569
2708
- msgid "Overlay Hide"
2709
- msgstr "Dölj overlay"
2710
-
2711
- #: ../modules/slideshow/slideshow.php:575
2712
- msgid ""
2713
- "Overlay hide will hide the control bar after however many seconds you "
2714
- "specify below. They will reappear upon mouse over."
2715
- msgstr ""
2716
- "Overlay döljs efter de antal sekunder du anger. Overlay kommer att dyka upp "
2717
- "igen när du för muspekaren över."
2718
-
2719
- #: ../modules/slideshow/slideshow.php:579
2720
- msgid "Overlay Hide Delay"
2721
- msgstr "Overlay fördröjning"
2722
-
2723
- #: ../modules/slideshow/slideshow.php:591
2724
- msgid "Thumbs Size"
2725
- msgstr "Tumnagelstorlek"
2726
-
2727
- #: ../modules/slideshow/slideshow.php:600
2728
- msgid "Social"
2729
- msgstr "Sociala nätverk"
2730
-
2731
- #: ../modules/slideshow/slideshow.php:604
2732
- msgid "Facebook Button"
2733
- msgstr "Facebookknapp"
2734
-
2735
- #: ../modules/slideshow/slideshow.php:616
2736
- msgid "Twitter Button"
2737
- msgstr "Twitterknapp"
2738
-
2739
- #: ../modules/slideshow/slideshow.php:628
2740
- msgid "Google Plus Button"
2741
- msgstr "Googleplusknapp"
2742
-
2743
- #: ../modules/slideshow/slideshow.php:640
2744
- msgid "Pinterest Button"
2745
- msgstr "Pinterestknapp"
2746
-
2747
- #: ../modules/social-buttons/social-buttons.php:14
2748
- msgid "Social Buttons"
2749
- msgstr "Sociala ikoner"
2750
-
2751
- #: ../modules/social-buttons/social-buttons.php:15
2752
- msgid "Displays social buttons."
2753
- msgstr "Visa sociala ikoner"
2754
-
2755
- #: ../modules/social-buttons/social-buttons.php:71
2756
- msgid "Target URL"
2757
- msgstr "Målsida"
2758
-
2759
- #: ../modules/social-buttons/social-buttons.php:75
2760
- msgid "Current Page"
2761
- msgstr "Nuvarande sida"
2762
-
2763
- #: ../modules/social-buttons/social-buttons.php:82
2764
- msgid ""
2765
- "The Target URL field correlates to the page you would like your social icons "
2766
- "to interface with. For example, if you show Facebook, the user will \"Like\" "
2767
- "whatever you put in this field."
2768
- msgstr ""
2769
- "Målsidan för URL-fältet är till den sida du vill att dina sociala ikoner ska "
2770
- "peka. Till exempel, om du visar Facebook, kommer användaren \"gilla\" den "
2771
- "länken du fyller fältet med."
2772
-
2773
- #: ../modules/social-buttons/social-buttons.php:89
2774
- msgid "Custom URL"
2775
- msgstr "Anpassa länk"
2776
-
2777
- #: ../modules/social-buttons/social-buttons.php:107
2778
- msgid "Show Facebook"
2779
- msgstr "Visa Facebook"
2780
-
2781
- #: ../modules/social-buttons/social-buttons.php:116
2782
- msgid "Show Twitter"
2783
- msgstr "Visa Twitter"
2784
-
2785
- #: ../modules/social-buttons/social-buttons.php:125
2786
- msgid "Show Google+"
2787
- msgstr "Visa Googleplus"
2788
-
2789
- #: ../modules/tabs/tabs.php:14
2790
- msgid "Tabs"
2791
- msgstr "Flikar"
2792
-
2793
- #: ../modules/tabs/tabs.php:15
2794
- msgid "Display a collection of tabbed content."
2795
- msgstr "Visa innehåll uppdelat på flikar"
2796
-
2797
- #: ../modules/testimonials/testimonials.php:14
2798
- #: ../modules/testimonials/testimonials.php:174
2799
- msgid "Testimonials"
2800
- msgstr "Kundcitat"
2801
-
2802
- #: ../modules/testimonials/testimonials.php:15
2803
- msgid "An animated tesimonials area."
2804
- msgstr "Animerade kundcitat"
2805
-
2806
- #: ../modules/testimonials/testimonials.php:40
2807
- msgid "Wide"
2808
- msgstr "Bred"
2809
-
2810
- #: ../modules/testimonials/testimonials.php:41
2811
- msgid "Compact"
2812
- msgstr "Kompakt"
2813
-
2814
- #: ../modules/testimonials/testimonials.php:51
2815
- msgid "Wide is for 1 column rows, compact is for multi-column rows."
2816
- msgstr "Bred är för 1 kolumnreader, kompakt är för multikolumnrader."
2817
-
2818
- #: ../modules/testimonials/testimonials.php:78
2819
- msgid "Slider Settings"
2820
- msgstr "Bildspelsinställningar"
2821
-
2822
- #: ../modules/testimonials/testimonials.php:135
2823
- msgid "Arrow Color"
2824
- msgstr "Pilfärg"
2825
-
2826
- #: ../modules/testimonials/testimonials.php:165
2827
- msgid "Dot Color"
2828
- msgstr "Prickfärg"
2829
-
2830
- #: ../modules/testimonials/testimonials.php:181
2831
- msgid "Testimonial"
2832
- msgstr "Kundcitat"
2833
-
2834
- #: ../modules/testimonials/testimonials.php:197
2835
- msgid "Add Testimonial"
2836
- msgstr "Lägg till Kundcitat"
2837
-
2838
- #: ../modules/video/video.php:20
2839
- msgid "Render a WordPress or embedable video."
2840
- msgstr "Visa en wordpress- eller inbäddad video"
2841
-
2842
- #: ../modules/video/video.php:83
2843
- msgid "Video Type"
2844
- msgstr "Videotyp"
2845
-
2846
- #: ../modules/video/video.php:87
2847
- msgid "Embed"
2848
- msgstr "Inbäddning"
2849
-
2850
- #: ../modules/video/video.php:120
2851
- msgid "Loop"
2852
- msgstr "Loop"
2853
-
2854
- #: ../modules/widget/includes/frontend.php:31
2855
- #: ../modules/widget/includes/settings-general.php:40
2856
- msgid " no longer exists."
2857
- msgstr "finns ej längre."
2858
-
2859
- #: ../modules/widget/widget.php:14
2860
- msgid "Widget"
2861
- msgstr "Widget"
2862
-
2863
- #: ../modules/widget/widget.php:15
2864
- msgid "Display a WordPress widget."
2865
- msgstr "Visa en Wordpresswidget"
2866
-
2867
- #: ../modules/woocommerce/woocommerce.php:16
2868
- msgid "WooCommerce"
2869
- msgstr "WoocCommerce"
2870
-
2871
- #: ../modules/woocommerce/woocommerce.php:17
2872
- msgid "Display products or categories from your WooCommerce store."
2873
- msgstr "Visa produkter eller produktkategorier från din e-butik (WooCommerce)"
2874
-
2875
- #: ../modules/woocommerce/woocommerce.php:60
2876
- msgid "Choose..."
2877
- msgstr "Välj..."
2878
-
2879
- #: ../modules/woocommerce/woocommerce.php:61
2880
- msgid "Single Product"
2881
- msgstr "Enstaka produkt"
2882
-
2883
- #: ../modules/woocommerce/woocommerce.php:62
2884
- #: ../modules/woocommerce/woocommerce.php:113
2885
- msgid "Multiple Products"
2886
- msgstr "Flera produkter"
2887
-
2888
- #: ../modules/woocommerce/woocommerce.php:63
2889
- msgid "Add to Cart Button"
2890
- msgstr "Lägg till köpknapp"
2891
-
2892
- #: ../modules/woocommerce/woocommerce.php:64
2893
- msgid "Categories"
2894
- msgstr "Kategorier"
2895
-
2896
- #: ../modules/woocommerce/woocommerce.php:65
2897
- msgid "Cart"
2898
- msgstr "Kundvagn"
2899
-
2900
- #: ../modules/woocommerce/woocommerce.php:66
2901
- msgid "Checkout"
2902
- msgstr "Checka ut"
2903
-
2904
- #: ../modules/woocommerce/woocommerce.php:67
2905
- msgid "Order Tracking"
2906
- msgstr "Ordertracking"
2907
-
2908
- #: ../modules/woocommerce/woocommerce.php:68
2909
- msgid "My Account"
2910
- msgstr "Mitt konto"
2911
-
2912
- #: ../modules/woocommerce/woocommerce.php:87
2913
- msgid "Product ID"
2914
- msgstr "Produkt-ID"
2915
-
2916
- #: ../modules/woocommerce/woocommerce.php:90
2917
- msgid ""
2918
- "As you add products in the WooCommerce Products area, each will be assigned "
2919
- "a unique ID. You can find this unique product ID by visiting the Products "
2920
- "area and rolling over the product. The unique ID will be the first attribute."
2921
- msgstr ""
2922
- "När du lägger till Woocommerce produkter kommer dessa att tilldelas ett "
2923
- "unikt ID. Du kan hitta detta produktID genom att klicka in på Produkter och "
2924
- "föra muspekaren över produkten. Det unika ID:t är det första attributet."
2925
-
2926
- #: ../modules/woocommerce/woocommerce.php:94
2927
- msgid "Parent Category ID"
2928
- msgstr "Föräldrakategorins ID"
2929
-
2930
- #: ../modules/woocommerce/woocommerce.php:97
2931
- msgid ""
2932
- "As you add product categories in the WooCommerce Products area, each will be "
2933
- "assigned a unique ID. This ID can be found by hovering on the category in "
2934
- "the categories area under Products and looking in the URL that is displayed "
2935
- "in your browser. The ID will be the only number value in the URL."
2936
- msgstr ""
2937
- "När du lägger till produktkategorier kommer dessa att tilldelas ett unikt "
2938
- "ID. Du kan hitta detta ID genom att klicka in på produktkategorier och valt "
2939
- "produktkategori, kolla sedan i adressfältet. ID är det nummer som visas i "
2940
- "adressfältet."
2941
-
2942
- #: ../modules/woocommerce/woocommerce.php:101
2943
- #: ../modules/woocommerce/woocommerce.php:172
2944
- msgid "Columns"
2945
- msgstr "Kolumner"
2946
-
2947
- #: ../modules/woocommerce/woocommerce.php:104
2948
- #: ../modules/woocommerce/woocommerce.php:175
2949
- msgid "1"
2950
- msgstr "1"
2951
-
2952
- #: ../modules/woocommerce/woocommerce.php:105
2953
- #: ../modules/woocommerce/woocommerce.php:176
2954
- msgid "2"
2955
- msgstr "2"
2956
-
2957
- #: ../modules/woocommerce/woocommerce.php:106
2958
- #: ../modules/woocommerce/woocommerce.php:177
2959
- msgid "3"
2960
- msgstr "3"
2961
-
2962
- #: ../modules/woocommerce/woocommerce.php:107
2963
- #: ../modules/woocommerce/woocommerce.php:178
2964
- msgid "4"
2965
- msgstr "4"
2966
-
2967
- #: ../modules/woocommerce/woocommerce.php:117
2968
- msgid "Products Source"
2969
- msgstr "Produktkälla"
2970
-
2971
- #: ../modules/woocommerce/woocommerce.php:120
2972
- msgid "Products IDs"
2973
- msgstr "Produkters ID"
2974
-
2975
- #: ../modules/woocommerce/woocommerce.php:121
2976
- msgid "Product Category"
2977
- msgstr "Produktkategori"
2978
-
2979
- #: ../modules/woocommerce/woocommerce.php:122
2980
- msgid "Recent Products"
2981
- msgstr "Senaste produkter"
2982
-
2983
- #: ../modules/woocommerce/woocommerce.php:123
2984
- msgid "Featured Products"
2985
- msgstr "Utvalda produkter"
2986
-
2987
- #: ../modules/woocommerce/woocommerce.php:124
2988
- msgid "Sale Products"
2989
- msgstr "Reaprodukter"
2990
-
2991
- #: ../modules/woocommerce/woocommerce.php:125
2992
- msgid "Best Selling Products"
2993
- msgstr "Bäst säljande produkter"
2994
-
2995
- #: ../modules/woocommerce/woocommerce.php:126
2996
- msgid "Top Rated Products"
2997
- msgstr "Mest omtyckta produkter"
2998
-
2999
- #: ../modules/woocommerce/woocommerce.php:154
3000
- msgid "Product IDs"
3001
- msgstr "Produkt ID"
3002
-
3003
- #: ../modules/woocommerce/woocommerce.php:156
3004
- msgid ""
3005
- "As you add products in the WooCommerce Products area, each will be assigned "
3006
- "a unique ID. You can find this unique product ID by visiting the Products "
3007
- "area and rolling over the product. The unique ID will be the first attribute "
3008
- "and you can add several here separated by a comma."
3009
- msgstr ""
3010
- "När du lägger till Woocommerce produkter kommer dessa att tilldelas ett "
3011
- "unikt ID. Du kan hitta detta produktID genom att klicka in på Produkter och "
3012
- "föra muspekaren över produkten. Det unika ID:t är det första attributet och "
3013
- "du kan lägga till fler med kommatecken mellan."
3014
-
3015
- #: ../modules/woocommerce/woocommerce.php:160
3016
- msgid "Category Slug"
3017
- msgstr "Kategorislug"
3018
-
3019
- #: ../modules/woocommerce/woocommerce.php:162
3020
- msgid ""
3021
- "As you add product categories in the WooCommerce Products area, each will be "
3022
- "assigned a unique slug or you can edit and add your own. These slugs can be "
3023
- "found in the Categories area under WooCommerce Products. Several can be "
3024
- "added here separated by a comma."
3025
- msgstr ""
3026
- "När du lägger till produktkategorier i WooCommerce under produkter kommer "
3027
- "dessa att tilldelas en unik slug eller skapa en egen. Du kan hitta dessa "
3028
- "genom att klicka in på produktkategorier i WooCommerce. Du kan lägga till "
3029
- "flera här genoma att separera med kommatecken."
3030
-
3031
- #: ../modules/woocommerce/woocommerce.php:166
3032
- msgid "Number of Products"
3033
- msgstr "Antal produkter"
3034
-
3035
- #: ../modules/woocommerce/woocommerce.php:183
3036
- msgid "Sort By"
3037
- msgstr "Sortera efter"
3038
-
3039
- #: ../modules/woocommerce/woocommerce.php:187
3040
- msgid "Popularity"
3041
- msgstr "Popularitet"
3042
-
3043
- #: ../modules/woocommerce/woocommerce.php:188
3044
- msgid "Rating"
3045
- msgstr "Betyg"
3046
-
3047
- #: ../modules/woocommerce/woocommerce.php:190
3048
- msgid "Price: Low to High"
3049
- msgstr "Pris: Billigt till dyrt"
3050
-
3051
- #: ../modules/woocommerce/woocommerce.php:191
3052
- msgid "Price: High to Low"
3053
- msgstr "Pris: Dyrt till billigt"
3054
-
3055
- #~ msgid "Pay"
3056
- #~ msgstr "Betala"
3057
-
3058
- #~ msgid "Thank You"
3059
- #~ msgstr "Tack!"
3060
-
3061
- #~ msgid "Edit Address"
3062
- #~ msgstr "Ändra adress"
3063
-
3064
- #~ msgid "Change Password"
3065
- #~ msgstr "Byt lösenord"
3066
-
3067
- #~ msgid "Lost Password"
3068
- #~ msgstr "Glömt lösenordet"
3069
-
3070
- #~ msgid "All Categories"
3071
- #~ msgstr "Alla kategorier"
3072
-
3073
- #~ msgid "Purchase the Page Builder"
3074
- #~ msgstr "Köp Sidbyggaren"
3075
-
3076
- #~ msgid "Save &amp; Finish"
3077
- #~ msgstr "Spara &amp; Avsluta"
3078
-
3079
- #~ msgid "Save &amp; Preview"
3080
- #~ msgstr "Spara &amp; Förhandsgranska"
3081
-
3082
- #~ msgid "Launch the Page Builder"
3083
- #~ msgstr "Starta sidbyggaren"
3084
-
3085
- #~ msgid "FastLine Themes Subscription"
3086
- #~ msgstr "FastLine Themes prenumeration"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/fl-builder-xx_XX.mo DELETED
Binary file
lang/fl-builder-xx_XX.pot DELETED
@@ -1,3153 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: FastLine Page Builder\n"
4
- "POT-Creation-Date: 2014-11-14 09:08-0800\n"
5
- "PO-Revision-Date: 2014-11-14 09:10-0800\n"
6
- "Last-Translator: Alessandro Curci <hantarex@gmail.com>\n"
7
- "Language-Team: \n"
8
- "Language: en_US\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6.7\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ./\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../classes/FLBuilder.php:674
18
- msgid "Add"
19
- msgstr ""
20
-
21
- #: ../classes/FLBuilder.php:742
22
- msgid "Add New Layout Template"
23
- msgstr ""
24
-
25
- #: ../classes/FLBuilder.php:743
26
- msgid "New Layout Template"
27
- msgstr ""
28
-
29
- #: ../classes/FLBuilder.php:744
30
- msgid "Edit Layout Template"
31
- msgstr ""
32
-
33
- #: ../classes/FLBuilder.php:745
34
- msgid "View Layout Template"
35
- msgstr ""
36
-
37
- #: ../classes/FLBuilder.php:746
38
- msgid "All Layout Templates"
39
- msgstr ""
40
-
41
- #: ../classes/FLBuilder.php:747
42
- msgid "Search Layout Templates"
43
- msgstr ""
44
-
45
- #: ../classes/FLBuilder.php:748
46
- msgid "Parent Layout Templates:"
47
- msgstr ""
48
-
49
- #: ../classes/FLBuilder.php:749
50
- msgid "No layout templates found."
51
- msgstr ""
52
-
53
- #: ../classes/FLBuilder.php:750
54
- msgid "No layout templates found in Trash."
55
- msgstr ""
56
-
57
- #: ../classes/FLBuilder.php:1086
58
- msgid " Settings"
59
- msgstr ""
60
-
61
- #: ../classes/FLBuilderAdmin.php:39
62
- #, php-format
63
- msgid ""
64
- "This version of the <strong>Page Builder</strong> plugin is not compatible "
65
- "with WordPress Multisite. <a href=\"%s\" target=\"_blank\">Please upgrade</"
66
- "a> to the Multisite version of this plugin."
67
- msgstr ""
68
-
69
- #: ../classes/FLBuilderAdmin.php:49
70
- msgid ""
71
- "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
72
- "greater. Please update WordPress before activating the plugin."
73
- msgstr ""
74
-
75
- #: ../classes/FLBuilderAdmin.php:90
76
- #, php-format
77
- msgid ""
78
- "Page Builder activated! <a href=\"%s\">Click here</a> to enable remote "
79
- "updates."
80
- msgstr ""
81
-
82
- #: ../classes/FLBuilderAdmin.php:181 ../includes/admin-settings.php:23
83
- #: ../includes/admin-settings.php:59
84
- msgid "Upgrade"
85
- msgstr ""
86
-
87
- #: ../classes/FLBuilderAdmin.php:194 ../classes/FLBuilderModel.php:2402
88
- msgid "Page Builder"
89
- msgstr ""
90
-
91
- #: ../classes/FLBuilderModel.php:1842
92
- msgid "Copy of "
93
- msgstr ""
94
-
95
- #: ../classes/FLBuilderPhoto.php:75 ../includes/js-config.php:33
96
- msgid "Full Size"
97
- msgstr ""
98
-
99
- #: ../classes/FLBuilderPhoto.php:76 ../includes/js-config.php:35
100
- #: ../modules/accordion/accordion.php:67 ../modules/gallery/gallery.php:265
101
- msgid "Large"
102
- msgstr ""
103
-
104
- #: ../classes/FLBuilderPhoto.php:77 ../includes/js-config.php:37
105
- #: ../includes/row-settings.php:332 ../modules/accordion/accordion.php:66
106
- #: ../modules/gallery/gallery.php:264
107
- msgid "Medium"
108
- msgstr ""
109
-
110
- #: ../classes/FLBuilderPhoto.php:78 ../includes/js-config.php:59
111
- msgid "Thumbnail"
112
- msgstr ""
113
-
114
- #: ../classes/FLBuilderTemplates.php:28
115
- msgid "Page Builder Templates"
116
- msgstr ""
117
-
118
- #: ../includes/admin-branding.php:3 ../includes/admin-settings.php:36
119
- #: ../includes/multisite-settings.php:22
120
- msgid "Branding"
121
- msgstr ""
122
-
123
- #: ../includes/admin-branding.php:11
124
- msgid "White label the page builder by entering a custom name below."
125
- msgstr ""
126
-
127
- #: ../includes/admin-branding.php:14
128
- msgid ""
129
- "Additionally, you may also add a custom icon by entering the URL of an image "
130
- "below.<br />Leave the field blank if you do not wish to use an icon."
131
- msgstr ""
132
-
133
- #: ../includes/admin-edit-template.php:3
134
- msgid "Edit Template"
135
- msgstr ""
136
-
137
- #: ../includes/admin-edit-template.php:8 ../includes/admin-templates.php:10
138
- #: ../includes/template-settings.php:14
139
- #: ../includes/user-template-settings.php:15
140
- #: ../modules/contact-form/includes/frontend.php:4
141
- msgid "Name"
142
- msgstr ""
143
-
144
- #: ../includes/admin-edit-template.php:12 ../modules/callout/callout.php:304
145
- #: ../modules/post-grid/post-grid.php:113
146
- msgid "Image"
147
- msgstr ""
148
-
149
- #: ../includes/admin-edit-template.php:16 ../includes/row-settings.php:155
150
- #: ../includes/template-settings.php:23 ../modules/callout/callout.php:352
151
- #: ../modules/callout/callout.php:372
152
- #: ../modules/content-slider/content-slider.php:465
153
- #: ../modules/post-grid/post-grid.php:127
154
- msgid "Position"
155
- msgstr ""
156
-
157
- #: ../includes/admin-edit-template.php:20 ../includes/admin-templates.php:12
158
- #: ../includes/template-settings.php:28
159
- msgid "Premium"
160
- msgstr ""
161
-
162
- #: ../includes/admin-edit-template.php:23 ../includes/global-settings.php:18
163
- #: ../includes/global-settings.php:87 ../includes/row-settings.php:307
164
- #: ../includes/template-settings.php:31 ../modules/accordion/accordion.php:90
165
- #: ../modules/button/button.php:137 ../modules/callout/callout.php:419
166
- #: ../modules/callout/callout.php:535
167
- #: ../modules/content-slider/content-slider.php:202
168
- #: ../modules/content-slider/content-slider.php:216
169
- #: ../modules/content-slider/content-slider.php:250
170
- #: ../modules/content-slider/content-slider.php:259
171
- #: ../modules/content-slider/content-slider.php:530
172
- #: ../modules/content-slider/content-slider.php:643 ../modules/cta/cta.php:289
173
- #: ../modules/icon-group/icon-group.php:82 ../modules/icon/icon.php:113
174
- #: ../modules/slideshow/slideshow.php:315
175
- #: ../modules/slideshow/slideshow.php:325
176
- #: ../modules/slideshow/slideshow.php:376
177
- #: ../modules/slideshow/slideshow.php:417
178
- #: ../modules/slideshow/slideshow.php:439
179
- #: ../modules/slideshow/slideshow.php:488
180
- #: ../modules/slideshow/slideshow.php:497
181
- #: ../modules/slideshow/slideshow.php:506
182
- #: ../modules/slideshow/slideshow.php:515
183
- #: ../modules/slideshow/slideshow.php:524
184
- #: ../modules/slideshow/slideshow.php:533
185
- #: ../modules/slideshow/slideshow.php:542
186
- #: ../modules/slideshow/slideshow.php:556
187
- #: ../modules/slideshow/slideshow.php:571
188
- #: ../modules/slideshow/slideshow.php:606
189
- #: ../modules/slideshow/slideshow.php:618
190
- #: ../modules/slideshow/slideshow.php:630
191
- #: ../modules/slideshow/slideshow.php:642
192
- #: ../modules/social-buttons/social-buttons.php:111
193
- #: ../modules/social-buttons/social-buttons.php:120
194
- #: ../modules/social-buttons/social-buttons.php:129
195
- #: ../modules/testimonials/testimonials.php:85
196
- #: ../modules/testimonials/testimonials.php:124
197
- #: ../modules/testimonials/testimonials.php:154 ../modules/video/video.php:111
198
- #: ../modules/video/video.php:123
199
- msgid "No"
200
- msgstr ""
201
-
202
- #: ../includes/admin-edit-template.php:24 ../includes/global-settings.php:19
203
- #: ../includes/global-settings.php:88 ../includes/row-settings.php:308
204
- #: ../includes/template-settings.php:32 ../modules/accordion/accordion.php:89
205
- #: ../modules/button/button.php:138 ../modules/callout/callout.php:420
206
- #: ../modules/callout/callout.php:536
207
- #: ../modules/content-slider/content-slider.php:203
208
- #: ../modules/content-slider/content-slider.php:217
209
- #: ../modules/content-slider/content-slider.php:251
210
- #: ../modules/content-slider/content-slider.php:260
211
- #: ../modules/content-slider/content-slider.php:531
212
- #: ../modules/content-slider/content-slider.php:644 ../modules/cta/cta.php:290
213
- #: ../modules/icon-group/icon-group.php:83 ../modules/icon/icon.php:114
214
- #: ../modules/slideshow/slideshow.php:316
215
- #: ../modules/slideshow/slideshow.php:326
216
- #: ../modules/slideshow/slideshow.php:377
217
- #: ../modules/slideshow/slideshow.php:418
218
- #: ../modules/slideshow/slideshow.php:440
219
- #: ../modules/slideshow/slideshow.php:489
220
- #: ../modules/slideshow/slideshow.php:498
221
- #: ../modules/slideshow/slideshow.php:507
222
- #: ../modules/slideshow/slideshow.php:516
223
- #: ../modules/slideshow/slideshow.php:525
224
- #: ../modules/slideshow/slideshow.php:534
225
- #: ../modules/slideshow/slideshow.php:543
226
- #: ../modules/slideshow/slideshow.php:557
227
- #: ../modules/slideshow/slideshow.php:572
228
- #: ../modules/slideshow/slideshow.php:607
229
- #: ../modules/slideshow/slideshow.php:619
230
- #: ../modules/slideshow/slideshow.php:631
231
- #: ../modules/slideshow/slideshow.php:643
232
- #: ../modules/social-buttons/social-buttons.php:110
233
- #: ../modules/social-buttons/social-buttons.php:119
234
- #: ../modules/social-buttons/social-buttons.php:128
235
- #: ../modules/testimonials/testimonials.php:86
236
- #: ../modules/testimonials/testimonials.php:125
237
- #: ../modules/testimonials/testimonials.php:155 ../modules/video/video.php:112
238
- #: ../modules/video/video.php:124
239
- msgid "Yes"
240
- msgstr ""
241
-
242
- #: ../includes/admin-edit-template.php:29 ../includes/admin-templates.php:11
243
- #: ../includes/template-settings.php:37
244
- msgid "Category"
245
- msgstr ""
246
-
247
- #: ../includes/admin-edit-template.php:32 ../includes/template-settings.php:40
248
- msgid "Landing Pages"
249
- msgstr ""
250
-
251
- #: ../includes/admin-edit-template.php:33 ../includes/template-settings.php:41
252
- msgid "Company Info"
253
- msgstr ""
254
-
255
- #: ../includes/admin-edit-template.php:40
256
- msgid "Update Template"
257
- msgstr ""
258
-
259
- #: ../includes/admin-posts.php:3 ../modules/rich-text/rich-text.php:14
260
- msgid "Text Editor"
261
- msgstr ""
262
-
263
- #: ../includes/admin-posts.php:7
264
- msgid "is currently active for this page."
265
- msgstr ""
266
-
267
- #: ../includes/admin-posts.php:8
268
- msgid "Launch"
269
- msgstr ""
270
-
271
- #: ../includes/admin-settings.php:7 ../includes/global-settings.php:4
272
- #: ../includes/js-config.php:55 ../includes/multisite-settings.php:7
273
- msgid "Settings"
274
- msgstr ""
275
-
276
- #: ../includes/admin-settings.php:12 ../includes/multisite-settings.php:12
277
- msgid "Settings updated!"
278
- msgstr ""
279
-
280
- #: ../includes/admin-settings.php:19 ../includes/multisite-settings.php:18
281
- msgid "License"
282
- msgstr ""
283
-
284
- #: ../includes/admin-settings.php:26 ../includes/global-settings.php:67
285
- #: ../includes/multisite-settings.php:19
286
- msgid "Modules"
287
- msgstr ""
288
-
289
- #: ../includes/admin-settings.php:29 ../includes/multisite-settings.php:20
290
- #: ../includes/ui.php:22
291
- msgid "Templates"
292
- msgstr ""
293
-
294
- #: ../includes/admin-settings.php:32 ../includes/admin-settings.php:163
295
- #: ../includes/multisite-settings.php:21
296
- #: ../includes/multisite-settings.php:111
297
- msgid "Post Types"
298
- msgstr ""
299
-
300
- #: ../includes/admin-settings.php:33
301
- msgid "Editing"
302
- msgstr ""
303
-
304
- #: ../includes/admin-settings.php:40 ../includes/admin-settings.php:278
305
- #: ../includes/admin-settings.php:290 ../includes/multisite-settings.php:23
306
- #: ../includes/multisite-settings.php:150
307
- #: ../includes/multisite-settings.php:162
308
- msgid "Uninstall"
309
- msgstr ""
310
-
311
- #: ../includes/admin-settings.php:61
312
- msgid ""
313
- "You are currently running the lite version of the Beaver Builder plugin. "
314
- "Upgrade today for access to premium features such as advanced modules, "
315
- "templates, support and more!"
316
- msgstr ""
317
-
318
- #: ../includes/admin-settings.php:63
319
- msgid "Upgrade Now"
320
- msgstr ""
321
-
322
- #: ../includes/admin-settings.php:65
323
- msgid "Learn More"
324
- msgstr ""
325
-
326
- #: ../includes/admin-settings.php:74 ../includes/multisite-settings.php:38
327
- msgid "Enabled Modules"
328
- msgstr ""
329
-
330
- #: ../includes/admin-settings.php:81 ../includes/admin-settings.php:132
331
- #: ../includes/admin-settings.php:170 ../includes/admin-settings.php:222
332
- msgid "Override network settings?"
333
- msgstr ""
334
-
335
- #: ../includes/admin-settings.php:87 ../includes/multisite-settings.php:44
336
- msgid "Check or uncheck modules below to enable or disable them."
337
- msgstr ""
338
-
339
- #: ../includes/admin-settings.php:96 ../includes/multisite-settings.php:53
340
- msgid "All"
341
- msgstr ""
342
-
343
- #: ../includes/admin-settings.php:125 ../includes/multisite-settings.php:81
344
- #: ../includes/template-settings.php:4
345
- msgid "Template Settings"
346
- msgstr ""
347
-
348
- #: ../includes/admin-settings.php:138 ../includes/multisite-settings.php:87
349
- msgid "Enable or disable templates using the options below."
350
- msgstr ""
351
-
352
- #: ../includes/admin-settings.php:145 ../includes/multisite-settings.php:94
353
- msgid "Enable All Templates"
354
- msgstr ""
355
-
356
- #: ../includes/admin-settings.php:146 ../includes/multisite-settings.php:95
357
- msgid "Enable Core Templates Only"
358
- msgstr ""
359
-
360
- #: ../includes/admin-settings.php:147 ../includes/multisite-settings.php:96
361
- msgid "Enable User Templates Only"
362
- msgstr ""
363
-
364
- #: ../includes/admin-settings.php:148 ../includes/multisite-settings.php:97
365
- msgid "Disable All Templates"
366
- msgstr ""
367
-
368
- #: ../includes/admin-settings.php:176
369
- msgid "Select the post types you would like the builder to work with."
370
- msgstr ""
371
-
372
- #: ../includes/admin-settings.php:177 ../includes/multisite-settings.php:116
373
- msgid "NOTE: Not all custom post types may be supported."
374
- msgstr ""
375
-
376
- #: ../includes/admin-settings.php:215
377
- msgid "Editing Settings"
378
- msgstr ""
379
-
380
- #: ../includes/admin-settings.php:228
381
- msgid ""
382
- "Toggling the settings below will enable or disable parts of the builder for "
383
- "everyone except for administrators."
384
- msgstr ""
385
-
386
- #: ../includes/admin-settings.php:232
387
- msgid "Enable or disable drag &amp; drop of rows or modules."
388
- msgstr ""
389
-
390
- #: ../includes/admin-settings.php:235
391
- msgid "Enable Drag &amp; Drop"
392
- msgstr ""
393
-
394
- #: ../includes/admin-settings.php:236
395
- msgid "Disable Drag &amp; Drop"
396
- msgstr ""
397
-
398
- #: ../includes/admin-settings.php:239
399
- msgid "Enable or disable deleting rows or modules."
400
- msgstr ""
401
-
402
- #: ../includes/admin-settings.php:242
403
- msgid "Enable Deleting"
404
- msgstr ""
405
-
406
- #: ../includes/admin-settings.php:243
407
- msgid "Disable Deleting"
408
- msgstr ""
409
-
410
- #: ../includes/admin-settings.php:246
411
- msgid "Enable or disable adding rows or modules."
412
- msgstr ""
413
-
414
- #: ../includes/admin-settings.php:249
415
- msgid "Enable Adding"
416
- msgstr ""
417
-
418
- #: ../includes/admin-settings.php:250
419
- msgid "Disable Adding"
420
- msgstr ""
421
-
422
- #: ../includes/admin-settings.php:253
423
- msgid "Enable or disable the tools menu."
424
- msgstr ""
425
-
426
- #: ../includes/admin-settings.php:256
427
- msgid "Enable Tools"
428
- msgstr ""
429
-
430
- #: ../includes/admin-settings.php:257
431
- msgid "Disable Tools"
432
- msgstr ""
433
-
434
- #: ../includes/admin-settings.php:280 ../includes/multisite-settings.php:152
435
- msgid ""
436
- "Clicking the button below will uninstall the page builder plugin and delete "
437
- "all of the data associated with it. You can uninstall or deactivate the page "
438
- "builder from the plugins page instead if you do not wish to delete the data."
439
- msgstr ""
440
-
441
- #: ../includes/admin-settings.php:282 ../includes/admin-settings.php:285
442
- #: ../includes/multisite-settings.php:154
443
- #: ../includes/multisite-settings.php:157
444
- #: ../includes/updater/includes/form.php:24
445
- msgid "NOTE:"
446
- msgstr ""
447
-
448
- #: ../includes/admin-settings.php:282 ../includes/multisite-settings.php:154
449
- msgid ""
450
- "The builder does not delete the post meta _fl_builder_data, "
451
- "_fl_builder_draft and _fl_builder_enabled in case you want to reinstall it "
452
- "later. If you do, the builder will rebuild all of its data using those meta "
453
- "values."
454
- msgstr ""
455
-
456
- #: ../includes/admin-settings.php:285 ../includes/multisite-settings.php:157
457
- #: ../includes/updater/includes/form.php:24
458
- msgid "This applies to all sites on the network."
459
- msgstr ""
460
-
461
- #: ../includes/admin-settings.php:304 ../includes/multisite-settings.php:176
462
- msgid ""
463
- "Please type \"uninstall\" in the box below to confirm that you really want "
464
- "to uninstall the page builder and all of its data."
465
- msgstr ""
466
-
467
- #: ../includes/admin-templates.php:3
468
- msgid "Page Builder Template"
469
- msgstr ""
470
-
471
- #: ../includes/admin-templates.php:25 ../includes/field-form.php:17
472
- #: ../includes/field-photo.php:12 ../includes/template-selector.php:83
473
- msgid "Edit"
474
- msgstr ""
475
-
476
- #: ../includes/admin-templates.php:27 ../includes/template-selector.php:84
477
- msgid "Delete"
478
- msgstr ""
479
-
480
- #: ../includes/column-settings.php:4 ../includes/js-config.php:19
481
- msgid "Column Settings"
482
- msgstr ""
483
-
484
- #: ../includes/column-settings.php:7 ../includes/module-settings.php:92
485
- #: ../includes/row-settings.php:9 ../modules/accordion/accordion.php:45
486
- #: ../modules/button/button.php:97 ../modules/callout/callout.php:240
487
- #: ../modules/content-slider/content-slider.php:418 ../modules/cta/cta.php:98
488
- #: ../modules/heading/heading.php:69 ../modules/icon-group/icon-group.php:46
489
- #: ../modules/icon/icon.php:77 ../modules/pricing-table/pricing-table.php:45
490
- #: ../modules/pricing-table/pricing-table.php:157
491
- #: ../modules/separator/separator.php:72 ../modules/tabs/tabs.php:45
492
- msgid "Style"
493
- msgstr ""
494
-
495
- #: ../includes/column-settings.php:14
496
- msgid "Column Width"
497
- msgstr ""
498
-
499
- #: ../includes/column-settings.php:16
500
- #: ../modules/content-slider/content-slider.php:478
501
- #: ../modules/content-slider/content-slider.php:546
502
- msgid "%"
503
- msgstr ""
504
-
505
- #: ../includes/column-settings.php:26 ../includes/row-settings.php:48
506
- #: ../modules/button/button.php:55 ../modules/callout/callout.php:224
507
- #: ../modules/callout/callout.php:477 ../modules/callout/callout.php:493
508
- #: ../modules/content-slider/content-slider.php:375
509
- #: ../modules/content-slider/content-slider.php:609 ../modules/cta/cta.php:81
510
- #: ../modules/cta/cta.php:218
511
- msgid "Text"
512
- msgstr ""
513
-
514
- #: ../includes/column-settings.php:30 ../includes/column-settings.php:43
515
- #: ../includes/column-settings.php:100 ../includes/row-settings.php:52
516
- #: ../includes/row-settings.php:69 ../includes/row-settings.php:109
517
- #: ../includes/row-settings.php:379 ../modules/callout/callout.php:390
518
- #: ../modules/content-slider/content-slider.php:330
519
- #: ../modules/icon-group/icon-group.php:53 ../modules/icon/icon.php:84
520
- #: ../modules/separator/separator.php:34
521
- msgid "Color"
522
- msgstr ""
523
-
524
- #: ../includes/column-settings.php:39 ../includes/row-settings.php:105
525
- #: ../modules/button/button.php:104 ../modules/callout/callout.php:403
526
- #: ../modules/callout/callout.php:502
527
- #: ../modules/content-slider/content-slider.php:356
528
- #: ../modules/content-slider/content-slider.php:618 ../modules/cta/cta.php:194
529
- #: ../modules/cta/cta.php:256 ../modules/icon-group/icon-group.php:66
530
- #: ../modules/icon/icon.php:97
531
- msgid "Background Color"
532
- msgstr ""
533
-
534
- #: ../includes/column-settings.php:51 ../includes/column-settings.php:108
535
- #: ../includes/row-settings.php:117 ../includes/row-settings.php:387
536
- #: ../modules/separator/separator.php:44
537
- msgid "Opacity"
538
- msgstr ""
539
-
540
- #: ../includes/column-settings.php:63 ../includes/row-settings.php:342
541
- msgid "Border"
542
- msgstr ""
543
-
544
- #: ../includes/column-settings.php:67 ../includes/row-settings.php:65
545
- #: ../includes/row-settings.php:346 ../modules/callout/callout.php:473
546
- #: ../modules/content-slider/content-slider.php:324
547
- #: ../modules/content-slider/content-slider.php:371
548
- #: ../modules/content-slider/content-slider.php:589
549
- #: ../modules/content-slider/content-slider.php:688
550
- #: ../modules/slideshow/slideshow.php:339
551
- msgid "Type"
552
- msgstr ""
553
-
554
- #: ../includes/column-settings.php:69 ../includes/row-settings.php:348
555
- msgid ""
556
- "The type of border to use. Double borders must have a width of at least 3px "
557
- "to render properly."
558
- msgstr ""
559
-
560
- #: ../includes/column-settings.php:71 ../includes/module-settings.php:94
561
- #: ../includes/row-settings.php:68 ../includes/row-settings.php:143
562
- #: ../includes/row-settings.php:191 ../includes/row-settings.php:276
563
- #: ../includes/row-settings.php:350 ../modules/callout/callout.php:314
564
- #: ../modules/callout/callout.php:342 ../modules/callout/callout.php:476
565
- #: ../modules/content-slider/content-slider.php:331
566
- #: ../modules/content-slider/content-slider.php:378
567
- #: ../modules/content-slider/content-slider.php:592
568
- #: ../modules/gallery/gallery.php:292 ../modules/photo/photo.php:404
569
- #: ../modules/photo/photo.php:450 ../modules/post-grid/post-grid.php:76
570
- #: ../modules/slideshow/slideshow.php:342
571
- #: ../modules/slideshow/slideshow.php:392
572
- #: ../modules/slideshow/slideshow.php:454
573
- msgid "None"
574
- msgstr ""
575
-
576
- #: ../includes/column-settings.php:72 ../includes/row-settings.php:351
577
- #: ../modules/separator/separator.php:75
578
- msgid "Solid"
579
- msgstr ""
580
-
581
- #: ../includes/column-settings.php:73 ../includes/row-settings.php:352
582
- #: ../modules/separator/separator.php:76
583
- msgid "Dashed"
584
- msgstr ""
585
-
586
- #: ../includes/column-settings.php:74 ../includes/row-settings.php:353
587
- #: ../modules/separator/separator.php:77
588
- msgid "Dotted"
589
- msgstr ""
590
-
591
- #: ../includes/column-settings.php:75 ../includes/row-settings.php:354
592
- #: ../modules/separator/separator.php:78
593
- msgid "Double"
594
- msgstr ""
595
-
596
- #: ../includes/column-settings.php:119 ../includes/row-settings.php:398
597
- msgid "Top Width"
598
- msgstr ""
599
-
600
- #: ../includes/column-settings.php:121 ../includes/column-settings.php:133
601
- #: ../includes/column-settings.php:145 ../includes/column-settings.php:157
602
- #: ../includes/column-settings.php:205 ../includes/column-settings.php:217
603
- #: ../includes/column-settings.php:229 ../includes/column-settings.php:241
604
- #: ../includes/column-settings.php:258 ../includes/column-settings.php:270
605
- #: ../includes/column-settings.php:282 ../includes/column-settings.php:294
606
- #: ../includes/global-settings.php:45 ../includes/global-settings.php:53
607
- #: ../includes/global-settings.php:61 ../includes/global-settings.php:75
608
- #: ../includes/global-settings.php:102 ../includes/module-settings.php:41
609
- #: ../includes/module-settings.php:53 ../includes/module-settings.php:65
610
- #: ../includes/module-settings.php:77 ../includes/row-settings.php:400
611
- #: ../includes/row-settings.php:412 ../includes/row-settings.php:424
612
- #: ../includes/row-settings.php:436 ../includes/row-settings.php:484
613
- #: ../includes/row-settings.php:496 ../includes/row-settings.php:508
614
- #: ../includes/row-settings.php:520 ../includes/row-settings.php:537
615
- #: ../includes/row-settings.php:549 ../includes/row-settings.php:561
616
- #: ../includes/row-settings.php:573 ../modules/button/button.php:171
617
- #: ../modules/button/button.php:189 ../modules/button/button.php:197
618
- #: ../modules/button/button.php:205 ../modules/callout/callout.php:297
619
- #: ../modules/callout/callout.php:434 ../modules/callout/callout.php:559
620
- #: ../modules/callout/callout.php:567 ../modules/callout/callout.php:575
621
- #: ../modules/content-slider/content-slider.php:194
622
- #: ../modules/content-slider/content-slider.php:274
623
- #: ../modules/content-slider/content-slider.php:456
624
- #: ../modules/content-slider/content-slider.php:486
625
- #: ../modules/content-slider/content-slider.php:494
626
- #: ../modules/content-slider/content-slider.php:502
627
- #: ../modules/content-slider/content-slider.php:510
628
- #: ../modules/content-slider/content-slider.php:658
629
- #: ../modules/content-slider/content-slider.php:666
630
- #: ../modules/content-slider/content-slider.php:674 ../modules/cta/cta.php:133
631
- #: ../modules/cta/cta.php:179 ../modules/cta/cta.php:304
632
- #: ../modules/cta/cta.php:312 ../modules/cta/cta.php:320
633
- #: ../modules/gallery/gallery.php:274 ../modules/heading/heading.php:137
634
- #: ../modules/heading/heading.php:197 ../modules/icon-group/icon-group.php:97
635
- #: ../modules/icon-group/icon-group.php:105 ../modules/icon/icon.php:128
636
- #: ../modules/post-grid/post-grid.php:96
637
- #: ../modules/post-grid/post-grid.php:104
638
- #: ../modules/pricing-table/pricing-table.php:64
639
- #: ../modules/pricing-table/pricing-table.php:104
640
- #: ../modules/pricing-table/pricing-table.php:126
641
- #: ../modules/pricing-table/pricing-table.php:188
642
- #: ../modules/slideshow/slideshow.php:298
643
- #: ../modules/slideshow/slideshow.php:594
644
- #: ../modules/testimonials/testimonials.php:73
645
- msgid "px"
646
- msgstr ""
647
-
648
- #: ../includes/column-settings.php:131 ../includes/row-settings.php:410
649
- msgid "Bottom Width"
650
- msgstr ""
651
-
652
- #: ../includes/column-settings.php:143 ../includes/row-settings.php:422
653
- msgid "Left Width"
654
- msgstr ""
655
-
656
- #: ../includes/column-settings.php:155 ../includes/row-settings.php:434
657
- msgid "Right Width"
658
- msgstr ""
659
-
660
- #: ../includes/column-settings.php:170 ../includes/module-settings.php:6
661
- #: ../includes/row-settings.php:449
662
- #: ../modules/content-slider/content-slider.php:266
663
- msgid "Advanced"
664
- msgstr ""
665
-
666
- #: ../includes/column-settings.php:177 ../includes/module-settings.php:13
667
- #: ../includes/row-settings.php:456
668
- msgid "CSS Class"
669
- msgstr ""
670
-
671
- #: ../includes/column-settings.php:178
672
- msgid ""
673
- "A custom CSS class that will be applied to this column. Spaces only, no dots."
674
- msgstr ""
675
-
676
- #: ../includes/column-settings.php:185 ../includes/module-settings.php:21
677
- #: ../includes/row-settings.php:464 ../modules/slideshow/slideshow.php:290
678
- msgid "Display"
679
- msgstr ""
680
-
681
- #: ../includes/column-settings.php:187 ../includes/module-settings.php:23
682
- #: ../includes/row-settings.php:466
683
- msgid "Always"
684
- msgstr ""
685
-
686
- #: ../includes/column-settings.php:188 ../includes/module-settings.php:24
687
- #: ../includes/row-settings.php:467
688
- msgid "Desktop Only"
689
- msgstr ""
690
-
691
- #: ../includes/column-settings.php:189 ../includes/module-settings.php:25
692
- #: ../includes/row-settings.php:468
693
- msgid "Mobile Only"
694
- msgstr ""
695
-
696
- #: ../includes/column-settings.php:191
697
- msgid ""
698
- "Choose whether to always show this column, only show it on the desktop view "
699
- "or only show it on the mobile view."
700
- msgstr ""
701
-
702
- #: ../includes/column-settings.php:199 ../includes/global-settings.php:41
703
- #: ../includes/global-settings.php:71 ../includes/module-settings.php:35
704
- #: ../includes/row-settings.php:478
705
- msgid "Margins"
706
- msgstr ""
707
-
708
- #: ../includes/column-settings.php:203 ../includes/column-settings.php:256
709
- #: ../includes/module-settings.php:39 ../includes/row-settings.php:482
710
- #: ../includes/row-settings.php:535 ../modules/slideshow/slideshow.php:475
711
- msgid "Top"
712
- msgstr ""
713
-
714
- #: ../includes/column-settings.php:215 ../includes/column-settings.php:268
715
- #: ../includes/module-settings.php:51 ../includes/row-settings.php:494
716
- #: ../includes/row-settings.php:547 ../modules/slideshow/slideshow.php:474
717
- msgid "Bottom"
718
- msgstr ""
719
-
720
- #: ../includes/column-settings.php:227 ../includes/column-settings.php:280
721
- #: ../includes/module-settings.php:63 ../includes/row-settings.php:506
722
- #: ../includes/row-settings.php:559 ../modules/button/button.php:179
723
- #: ../modules/callout/callout.php:251
724
- #: ../modules/content-slider/content-slider.php:469 ../modules/cta/cta.php:122
725
- #: ../modules/heading/heading.php:94 ../modules/heading/heading.php:166
726
- #: ../modules/icon-group/icon-group.php:113 ../modules/icon/icon.php:136
727
- #: ../modules/photo/photo.php:417
728
- #: ../modules/social-buttons/social-buttons.php:101
729
- msgid "Left"
730
- msgstr ""
731
-
732
- #: ../includes/column-settings.php:239 ../includes/column-settings.php:292
733
- #: ../includes/module-settings.php:75 ../includes/row-settings.php:518
734
- #: ../includes/row-settings.php:571 ../modules/button/button.php:180
735
- #: ../modules/callout/callout.php:252
736
- #: ../modules/content-slider/content-slider.php:471 ../modules/cta/cta.php:124
737
- #: ../modules/heading/heading.php:96 ../modules/heading/heading.php:168
738
- #: ../modules/icon-group/icon-group.php:114 ../modules/icon/icon.php:137
739
- #: ../modules/photo/photo.php:419
740
- #: ../modules/social-buttons/social-buttons.php:102
741
- msgid "Right"
742
- msgstr ""
743
-
744
- #: ../includes/column-settings.php:252 ../includes/global-settings.php:49
745
- #: ../includes/row-settings.php:531 ../modules/button/button.php:193
746
- #: ../modules/callout/callout.php:563
747
- #: ../modules/content-slider/content-slider.php:662 ../modules/cta/cta.php:308
748
- msgid "Padding"
749
- msgstr ""
750
-
751
- #: ../includes/field-icon.php:2 ../includes/icon-selector.php:23
752
- msgid "Select Icon"
753
- msgstr ""
754
-
755
- #: ../includes/field-icon.php:5 ../includes/field-photo.php:13
756
- msgid "Replace"
757
- msgstr ""
758
-
759
- #: ../includes/field-icon.php:7 ../includes/js-config.php:47
760
- msgid "Remove"
761
- msgstr ""
762
-
763
- #: ../includes/field-link.php:3
764
- msgid "Select"
765
- msgstr ""
766
-
767
- #: ../includes/field-link.php:5
768
- msgid "Enter a post title to search."
769
- msgstr ""
770
-
771
- #: ../includes/field-link.php:6 ../includes/field-suggest.php:7
772
- msgid "Start typing..."
773
- msgstr ""
774
-
775
- #: ../includes/field-link.php:7 ../includes/icon-selector.php:48
776
- #: ../includes/js-config.php:15 ../includes/settings.php:63
777
- #: ../includes/template-selector.php:102
778
- msgid "Cancel"
779
- msgstr ""
780
-
781
- #: ../includes/field-multiple-photos.php:9
782
- msgid " Photo Selected"
783
- msgstr ""
784
-
785
- #: ../includes/field-multiple-photos.php:12
786
- msgid " Photos Selected"
787
- msgstr ""
788
-
789
- #: ../includes/field-multiple-photos.php:18
790
- msgid "Create Gallery"
791
- msgstr ""
792
-
793
- #: ../includes/field-multiple-photos.php:19
794
- msgid "Edit Gallery"
795
- msgstr ""
796
-
797
- #: ../includes/field-multiple-photos.php:20
798
- msgid "Add Photos"
799
- msgstr ""
800
-
801
- #: ../includes/field-photo.php:3 ../includes/js-config.php:52
802
- msgid "Select Photo"
803
- msgstr ""
804
-
805
- #: ../includes/field-video.php:3 ../includes/js-config.php:54
806
- msgid "Select Video"
807
- msgstr ""
808
-
809
- #: ../includes/field-video.php:17
810
- msgid "Replace Video"
811
- msgstr ""
812
-
813
- #: ../includes/global-settings.php:7 ../includes/template-settings.php:7
814
- #: ../includes/user-template-settings.php:7
815
- #: ../modules/accordion/accordion.php:110 ../modules/button/button.php:48
816
- #: ../modules/callout/callout.php:208
817
- #: ../modules/contact-form/contact-form.php:57
818
- #: ../modules/content-slider/content-slider.php:183
819
- #: ../modules/content-slider/content-slider.php:307 ../modules/cta/cta.php:64
820
- #: ../modules/gallery/gallery.php:213 ../modules/heading/heading.php:26
821
- #: ../modules/html/html.php:26 ../modules/icon-group/icon-group.php:130
822
- #: ../modules/icon/icon.php:29 ../modules/map/map.php:26
823
- #: ../modules/photo/photo.php:368
824
- #: ../modules/pricing-table/pricing-table.php:89
825
- #: ../modules/rich-text/rich-text.php:26 ../modules/separator/separator.php:27
826
- #: ../modules/sidebar/sidebar.php:27 ../modules/slideshow/slideshow.php:256
827
- #: ../modules/social-buttons/social-buttons.php:64 ../modules/tabs/tabs.php:77
828
- #: ../modules/testimonials/testimonials.php:30
829
- #: ../modules/testimonials/testimonials.php:200 ../modules/video/video.php:76
830
- #: ../modules/widget/widget.php:27 ../modules/woocommerce/woocommerce.php:50
831
- msgid "General"
832
- msgstr ""
833
-
834
- #: ../includes/global-settings.php:8
835
- msgid "Note: These settings apply to all posts and pages."
836
- msgstr ""
837
-
838
- #: ../includes/global-settings.php:11
839
- msgid "Default Page Heading"
840
- msgstr ""
841
-
842
- #: ../includes/global-settings.php:15 ../modules/post-grid/post-grid.php:116
843
- #: ../modules/post-grid/post-grid.php:149
844
- #: ../modules/post-grid/post-grid.php:158
845
- #: ../modules/post-grid/post-grid.php:187
846
- #: ../modules/post-grid/post-grid.php:201
847
- #: ../modules/post-grid/post-grid.php:215
848
- msgid "Show"
849
- msgstr ""
850
-
851
- #: ../includes/global-settings.php:26
852
- msgid ""
853
- "Choosing no will hide the default theme heading for the \"Page\" post type. "
854
- "You will also be required to enter some basic CSS for this to work if you "
855
- "choose no."
856
- msgstr ""
857
-
858
- #: ../includes/global-settings.php:30
859
- msgid "CSS Selector"
860
- msgstr ""
861
-
862
- #: ../includes/global-settings.php:32
863
- msgid "Enter a CSS selector for the default page heading to hide it."
864
- msgstr ""
865
-
866
- #: ../includes/global-settings.php:37
867
- msgid "Rows"
868
- msgstr ""
869
-
870
- #: ../includes/global-settings.php:57
871
- msgid "Max Width"
872
- msgstr ""
873
-
874
- #: ../includes/global-settings.php:62
875
- msgid ""
876
- "All rows will default to this width. You can override this and make a row "
877
- "full width in the settings for each row."
878
- msgstr ""
879
-
880
- #: ../includes/global-settings.php:80
881
- msgid "Mobile Layout"
882
- msgstr ""
883
-
884
- #: ../includes/global-settings.php:84
885
- msgid "Enabled"
886
- msgstr ""
887
-
888
- #: ../includes/global-settings.php:98
889
- msgid "Breakpoint"
890
- msgstr ""
891
-
892
- #: ../includes/icon-selector.php:25
893
- msgid "Filter: "
894
- msgstr ""
895
-
896
- #: ../includes/js-config.php:14
897
- msgid "What would you like to do?"
898
- msgstr ""
899
-
900
- #: ../includes/js-config.php:16
901
- msgid "Change Template"
902
- msgstr ""
903
-
904
- #: ../includes/js-config.php:17
905
- msgid ""
906
- "Warning! Changing the template will replace your existing layout. Do you "
907
- "really want to do this?"
908
- msgstr ""
909
-
910
- #: ../includes/js-config.php:18
911
- msgid "Column"
912
- msgstr ""
913
-
914
- #: ../includes/js-config.php:20
915
- msgid ""
916
- "Please select either a background layout or content layout before submitting."
917
- msgstr ""
918
-
919
- #: ../includes/js-config.php:21
920
- msgid "Do you really want to delete this item?"
921
- msgstr ""
922
-
923
- #: ../includes/js-config.php:22
924
- msgid ""
925
- "Do you really want to delete this module? All content data will be "
926
- "permanently deleted."
927
- msgstr ""
928
-
929
- #: ../includes/js-config.php:23
930
- msgid ""
931
- "Do you really want to delete this row? All content data will be permanently "
932
- "deleted."
933
- msgstr ""
934
-
935
- #: ../includes/js-config.php:24
936
- msgid "Do you really want to delete this template?"
937
- msgstr ""
938
-
939
- #: ../includes/js-config.php:25
940
- msgid "Discard Draft"
941
- msgstr ""
942
-
943
- #: ../includes/js-config.php:26
944
- msgid ""
945
- "Do you really want to discard this draft? All of your changes that are not "
946
- "published will be lost."
947
- msgstr ""
948
-
949
- #: ../includes/js-config.php:27
950
- msgid "Save Draft"
951
- msgstr ""
952
-
953
- #: ../includes/js-config.php:28
954
- msgid "Duplicate"
955
- msgstr ""
956
-
957
- #: ../includes/js-config.php:29
958
- msgid "Duplicate This Page"
959
- msgstr ""
960
-
961
- #: ../includes/js-config.php:30
962
- msgid "Duplicate This Template"
963
- msgstr ""
964
-
965
- #: ../includes/js-config.php:31
966
- msgid "Edit Global Settings"
967
- msgstr ""
968
-
969
- #: ../includes/js-config.php:32
970
- msgid "Drop a row layout or module to get started!"
971
- msgstr ""
972
-
973
- #: ../includes/js-config.php:34
974
- msgid "Insert"
975
- msgstr ""
976
-
977
- #: ../includes/js-config.php:36
978
- msgid "Manage Templates"
979
- msgstr ""
980
-
981
- #: ../includes/js-config.php:38
982
- msgid "Module"
983
- msgstr ""
984
-
985
- #: ../includes/js-config.php:39
986
- msgid "Move"
987
- msgstr ""
988
-
989
- #: ../includes/js-config.php:40
990
- msgid "New Column"
991
- msgstr ""
992
-
993
- #: ../includes/js-config.php:41
994
- msgid "New Row"
995
- msgstr ""
996
-
997
- #: ../includes/js-config.php:42
998
- msgid "No results found."
999
- msgstr ""
1000
-
1001
- #: ../includes/js-config.php:43
1002
- msgid "Ok"
1003
- msgstr ""
1004
-
1005
- #: ../includes/js-config.php:44
1006
- msgid "Photo Selected"
1007
- msgstr ""
1008
-
1009
- #: ../includes/js-config.php:45
1010
- msgid "Photos Selected"
1011
- msgstr ""
1012
-
1013
- #: ../includes/js-config.php:46
1014
- msgid "Publish Changes"
1015
- msgstr ""
1016
-
1017
- #: ../includes/js-config.php:48
1018
- msgid "Row"
1019
- msgstr ""
1020
-
1021
- #: ../includes/js-config.php:49 ../includes/row-settings.php:6
1022
- msgid "Row Settings"
1023
- msgstr ""
1024
-
1025
- #: ../includes/js-config.php:50
1026
- msgid "Save Core Template"
1027
- msgstr ""
1028
-
1029
- #: ../includes/js-config.php:51 ../includes/user-template-settings.php:4
1030
- msgid "Save Template"
1031
- msgstr ""
1032
-
1033
- #: ../includes/js-config.php:53
1034
- msgid "Select Photos"
1035
- msgstr ""
1036
-
1037
- #: ../includes/js-config.php:56
1038
- msgid "Append New Layout"
1039
- msgstr ""
1040
-
1041
- #: ../includes/js-config.php:57
1042
- msgid "Replace Existing Layout"
1043
- msgstr ""
1044
-
1045
- #: ../includes/js-config.php:58
1046
- msgid "Template Saved!"
1047
- msgstr ""
1048
-
1049
- #: ../includes/js-config.php:60
1050
- msgid ""
1051
- "The settings you are currently editing will not be saved if you navigate "
1052
- "away from this page."
1053
- msgstr ""
1054
-
1055
- #: ../includes/loop-settings.php:19
1056
- msgid "Post Type"
1057
- msgstr ""
1058
-
1059
- #: ../includes/loop-settings.php:25
1060
- msgid "Order By"
1061
- msgstr ""
1062
-
1063
- #: ../includes/loop-settings.php:27
1064
- msgid "ID"
1065
- msgstr ""
1066
-
1067
- #: ../includes/loop-settings.php:28 ../modules/post-grid/post-grid.php:155
1068
- #: ../modules/woocommerce/woocommerce.php:189
1069
- msgid "Date"
1070
- msgstr ""
1071
-
1072
- #: ../includes/loop-settings.php:29
1073
- msgid "Date Last Modified"
1074
- msgstr ""
1075
-
1076
- #: ../includes/loop-settings.php:30
1077
- #: ../modules/pricing-table/pricing-table.php:96
1078
- msgid "Title"
1079
- msgstr ""
1080
-
1081
- #: ../includes/loop-settings.php:31 ../modules/post-grid/post-grid.php:146
1082
- msgid "Author"
1083
- msgstr ""
1084
-
1085
- #: ../includes/loop-settings.php:32
1086
- msgid "Comment Count"
1087
- msgstr ""
1088
-
1089
- #: ../includes/loop-settings.php:33
1090
- msgid "Menu Order"
1091
- msgstr ""
1092
-
1093
- #: ../includes/loop-settings.php:34
1094
- msgid "Random"
1095
- msgstr ""
1096
-
1097
- #: ../includes/loop-settings.php:41
1098
- msgid "Order"
1099
- msgstr ""
1100
-
1101
- #: ../includes/loop-settings.php:43
1102
- msgid "Descending"
1103
- msgstr ""
1104
-
1105
- #: ../includes/loop-settings.php:44
1106
- msgid "Ascending"
1107
- msgstr ""
1108
-
1109
- #: ../includes/loop-settings.php:52
1110
- msgid "Filter"
1111
- msgstr ""
1112
-
1113
- #: ../includes/loop-settings.php:63
1114
- #, php-format
1115
- msgid "Enter a comma separated list of %s. Only these %s will be shown."
1116
- msgstr ""
1117
-
1118
- #: ../includes/loop-settings.php:76
1119
- #, php-format
1120
- msgid ""
1121
- "Enter a comma separated list of %s. Only posts with these %s will be shown."
1122
- msgstr ""
1123
-
1124
- #: ../includes/loop-settings.php:90
1125
- msgid "Authors"
1126
- msgstr ""
1127
-
1128
- #: ../includes/loop-settings.php:91
1129
- msgid ""
1130
- "Enter a comma separated list of authors usernames. Only posts with these "
1131
- "authors will be shown."
1132
- msgstr ""
1133
-
1134
- #: ../includes/module-settings.php:14
1135
- msgid ""
1136
- "A custom CSS class that will be applied to this module. Spaces only, no dots."
1137
- msgstr ""
1138
-
1139
- #: ../includes/module-settings.php:27
1140
- msgid ""
1141
- "Choose whether to always show this module, only show it on the desktop view "
1142
- "or only show it on the mobile view."
1143
- msgstr ""
1144
-
1145
- #: ../includes/module-settings.php:88
1146
- msgid "Animation"
1147
- msgstr ""
1148
-
1149
- #: ../includes/module-settings.php:95
1150
- msgid "Fade In"
1151
- msgstr ""
1152
-
1153
- #: ../includes/module-settings.php:96
1154
- msgid "Slide Left"
1155
- msgstr ""
1156
-
1157
- #: ../includes/module-settings.php:97
1158
- msgid "Slide Right"
1159
- msgstr ""
1160
-
1161
- #: ../includes/module-settings.php:98
1162
- msgid "Slide Up"
1163
- msgstr ""
1164
-
1165
- #: ../includes/module-settings.php:99
1166
- msgid "Slide Down"
1167
- msgstr ""
1168
-
1169
- #: ../includes/module-settings.php:107
1170
- #: ../modules/content-slider/content-slider.php:222
1171
- #: ../modules/testimonials/testimonials.php:91
1172
- msgid "Delay"
1173
- msgstr ""
1174
-
1175
- #: ../includes/module-settings.php:112
1176
- msgid "The amount of time in seconds before this animation starts."
1177
- msgstr ""
1178
-
1179
- #: ../includes/multisite-settings.php:115
1180
- msgid ""
1181
- "Enter a comma separated list of the post types you would like the builder to "
1182
- "work with."
1183
- msgstr ""
1184
-
1185
- #: ../includes/multisite-settings.php:131
1186
- msgid "Example: page, post, product"
1187
- msgstr ""
1188
-
1189
- #: ../includes/row-settings.php:16 ../modules/button/button.php:148
1190
- #: ../modules/content-slider/content-slider.php:476
1191
- msgid "Width"
1192
- msgstr ""
1193
-
1194
- #: ../includes/row-settings.php:19 ../includes/row-settings.php:37
1195
- #: ../includes/row-settings.php:179
1196
- msgid "Fixed"
1197
- msgstr ""
1198
-
1199
- #: ../includes/row-settings.php:20 ../includes/row-settings.php:38
1200
- #: ../modules/button/button.php:152 ../modules/callout/callout.php:550
1201
- msgid "Full Width"
1202
- msgstr ""
1203
-
1204
- #: ../includes/row-settings.php:27
1205
- msgid ""
1206
- "Full width rows span the width of the page from edge to edge. Fixed rows are "
1207
- "no wider than the Row Max Width set in the Global Settings."
1208
- msgstr ""
1209
-
1210
- #: ../includes/row-settings.php:34
1211
- msgid "Content Width"
1212
- msgstr ""
1213
-
1214
- #: ../includes/row-settings.php:40
1215
- msgid ""
1216
- "Full width content spans the width of the page from edge to edge. Fixed "
1217
- "content is no wider than the Row Max Width set in the Global Settings."
1218
- msgstr ""
1219
-
1220
- #: ../includes/row-settings.php:61
1221
- msgid "Background"
1222
- msgstr ""
1223
-
1224
- #: ../includes/row-settings.php:70 ../includes/row-settings.php:133
1225
- #: ../includes/row-settings.php:321 ../modules/callout/callout.php:315
1226
- #: ../modules/callout/callout.php:331 ../modules/callout/callout.php:335
1227
- #: ../modules/content-slider/content-slider.php:328
1228
- #: ../modules/content-slider/content-slider.php:397
1229
- #: ../modules/content-slider/content-slider.php:704
1230
- #: ../modules/photo/photo.php:25 ../modules/photo/photo.php:392
1231
- msgid "Photo"
1232
- msgstr ""
1233
-
1234
- #: ../includes/row-settings.php:71 ../includes/row-settings.php:207
1235
- #: ../modules/content-slider/content-slider.php:329
1236
- #: ../modules/video/video.php:19
1237
- msgid "Video"
1238
- msgstr ""
1239
-
1240
- #: ../includes/row-settings.php:73 ../modules/slideshow/slideshow.php:14
1241
- msgid "Slideshow"
1242
- msgstr ""
1243
-
1244
- #: ../includes/row-settings.php:77
1245
- msgid "Parallax"
1246
- msgstr ""
1247
-
1248
- #: ../includes/row-settings.php:129
1249
- #: ../modules/content-slider/content-slider.php:352
1250
- msgid "Background Photo"
1251
- msgstr ""
1252
-
1253
- #: ../includes/row-settings.php:140
1254
- msgid "Repeat"
1255
- msgstr ""
1256
-
1257
- #: ../includes/row-settings.php:144
1258
- msgid "Tile"
1259
- msgstr ""
1260
-
1261
- #: ../includes/row-settings.php:145 ../modules/tabs/tabs.php:55
1262
- msgid "Horizontal"
1263
- msgstr ""
1264
-
1265
- #: ../includes/row-settings.php:146 ../modules/tabs/tabs.php:56
1266
- msgid "Vertical"
1267
- msgstr ""
1268
-
1269
- #: ../includes/row-settings.php:148
1270
- msgid ""
1271
- "Repeat applies to how the image should display in the row background. "
1272
- "Choosing none will display the image as uploaded. Tile will repeat the image "
1273
- "as many times as needed to fill the row horizontally and vertically. You can "
1274
- "also specify the image to only repeat horizontally or vertically."
1275
- msgstr ""
1276
-
1277
- #: ../includes/row-settings.php:158
1278
- msgid "Left Top"
1279
- msgstr ""
1280
-
1281
- #: ../includes/row-settings.php:159
1282
- msgid "Left Center"
1283
- msgstr ""
1284
-
1285
- #: ../includes/row-settings.php:160
1286
- msgid "Left Bottom"
1287
- msgstr ""
1288
-
1289
- #: ../includes/row-settings.php:161
1290
- msgid "Right Top"
1291
- msgstr ""
1292
-
1293
- #: ../includes/row-settings.php:162
1294
- msgid "Right Center"
1295
- msgstr ""
1296
-
1297
- #: ../includes/row-settings.php:163
1298
- msgid "Right Bottom"
1299
- msgstr ""
1300
-
1301
- #: ../includes/row-settings.php:164
1302
- msgid "Center Top"
1303
- msgstr ""
1304
-
1305
- #: ../includes/row-settings.php:165
1306
- msgid "Center Center"
1307
- msgstr ""
1308
-
1309
- #: ../includes/row-settings.php:166
1310
- msgid "Center Bottom"
1311
- msgstr ""
1312
-
1313
- #: ../includes/row-settings.php:168
1314
- msgid "Position will tell the image where it should sit in the row background."
1315
- msgstr ""
1316
-
1317
- #: ../includes/row-settings.php:175
1318
- msgid "Attachment"
1319
- msgstr ""
1320
-
1321
- #: ../includes/row-settings.php:178 ../modules/post-grid/post-grid.php:75
1322
- msgid "Scroll"
1323
- msgstr ""
1324
-
1325
- #: ../includes/row-settings.php:181
1326
- msgid ""
1327
- "Attachment will specify how the image reacts when scrolling a page. When "
1328
- "scrolling is selected, the image will scroll with page scrolling. This is "
1329
- "the default setting. Fixed will allow the image to scroll within the row "
1330
- "background if fill is selected in the scale setting."
1331
- msgstr ""
1332
-
1333
- #: ../includes/row-settings.php:188
1334
- msgid "Scale"
1335
- msgstr ""
1336
-
1337
- #: ../includes/row-settings.php:192
1338
- msgid "Fit"
1339
- msgstr ""
1340
-
1341
- #: ../includes/row-settings.php:193
1342
- msgid "Fill"
1343
- msgstr ""
1344
-
1345
- #: ../includes/row-settings.php:195
1346
- msgid ""
1347
- "Scale applies to how the image should display in the row background. You can "
1348
- "select either fill or fit to the row background."
1349
- msgstr ""
1350
-
1351
- #: ../includes/row-settings.php:203
1352
- msgid "Background Video"
1353
- msgstr ""
1354
-
1355
- #: ../includes/row-settings.php:208
1356
- msgid ""
1357
- "An HTML5 video to use as the background of this row. Supported types are "
1358
- "MP4, WebM and Ogg."
1359
- msgstr ""
1360
-
1361
- #: ../includes/row-settings.php:215
1362
- msgid "Fallback Photo"
1363
- msgstr ""
1364
-
1365
- #: ../includes/row-settings.php:216
1366
- msgid "A photo that will be displayed if the video fails to load."
1367
- msgstr ""
1368
-
1369
- #: ../includes/row-settings.php:224
1370
- msgid "Background Slideshow"
1371
- msgstr ""
1372
-
1373
- #: ../includes/row-settings.php:228 ../modules/gallery/gallery.php:234
1374
- #: ../modules/slideshow/slideshow.php:263
1375
- msgid "Source"
1376
- msgstr ""
1377
-
1378
- #: ../includes/row-settings.php:231 ../modules/gallery/gallery.php:237
1379
- #: ../modules/photo/photo.php:378 ../modules/slideshow/slideshow.php:266
1380
- #: ../modules/video/video.php:86
1381
- msgid "Media Library"
1382
- msgstr ""
1383
-
1384
- #: ../includes/row-settings.php:232 ../modules/gallery/gallery.php:238
1385
- #: ../modules/slideshow/slideshow.php:267
1386
- msgid "SmugMug"
1387
- msgstr ""
1388
-
1389
- #: ../includes/row-settings.php:234 ../modules/gallery/gallery.php:240
1390
- #: ../modules/slideshow/slideshow.php:269
1391
- msgid ""
1392
- "Pull images from the WordPress media library or a gallery on your SmugMug "
1393
- "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
1394
- "accessed by using the get a link function in your SmugMug gallery."
1395
- msgstr ""
1396
-
1397
- #: ../includes/row-settings.php:249 ../modules/gallery/gallery.php:252
1398
- #: ../modules/slideshow/slideshow.php:281
1399
- msgid "Photos"
1400
- msgstr ""
1401
-
1402
- #: ../includes/row-settings.php:256 ../modules/gallery/gallery.php:256
1403
- #: ../modules/slideshow/slideshow.php:285
1404
- msgid "Feed URL"
1405
- msgstr ""
1406
-
1407
- #: ../includes/row-settings.php:263 ../includes/row-settings.php:328
1408
- #: ../modules/slideshow/slideshow.php:382
1409
- msgid "Speed"
1410
- msgstr ""
1411
-
1412
- #: ../includes/row-settings.php:266 ../includes/row-settings.php:297
1413
- #: ../modules/slideshow/slideshow.php:385
1414
- #: ../modules/slideshow/slideshow.php:410
1415
- #: ../modules/slideshow/slideshow.php:581
1416
- msgid "seconds"
1417
- msgstr ""
1418
-
1419
- #: ../includes/row-settings.php:273
1420
- #: ../modules/content-slider/content-slider.php:230
1421
- #: ../modules/slideshow/slideshow.php:389
1422
- #: ../modules/testimonials/testimonials.php:99
1423
- msgid "Transition"
1424
- msgstr ""
1425
-
1426
- #: ../includes/row-settings.php:277 ../modules/slideshow/slideshow.php:393
1427
- msgid "Fade"
1428
- msgstr ""
1429
-
1430
- #: ../includes/row-settings.php:278 ../modules/slideshow/slideshow.php:394
1431
- msgid "Ken Burns"
1432
- msgstr ""
1433
-
1434
- #: ../includes/row-settings.php:279 ../modules/slideshow/slideshow.php:395
1435
- msgid "Slide Horizontal"
1436
- msgstr ""
1437
-
1438
- #: ../includes/row-settings.php:280 ../modules/slideshow/slideshow.php:396
1439
- msgid "Slide Vertical"
1440
- msgstr ""
1441
-
1442
- #: ../includes/row-settings.php:281 ../modules/slideshow/slideshow.php:397
1443
- msgid "Blinds"
1444
- msgstr ""
1445
-
1446
- #: ../includes/row-settings.php:282 ../modules/slideshow/slideshow.php:398
1447
- msgid "Bars"
1448
- msgstr ""
1449
-
1450
- #: ../includes/row-settings.php:283 ../modules/slideshow/slideshow.php:399
1451
- msgid "Random Bars"
1452
- msgstr ""
1453
-
1454
- #: ../includes/row-settings.php:284 ../modules/slideshow/slideshow.php:400
1455
- msgid "Boxes"
1456
- msgstr ""
1457
-
1458
- #: ../includes/row-settings.php:285 ../modules/slideshow/slideshow.php:401
1459
- msgid "Random Boxes"
1460
- msgstr ""
1461
-
1462
- #: ../includes/row-settings.php:286 ../modules/slideshow/slideshow.php:402
1463
- msgid "Boxes Grow"
1464
- msgstr ""
1465
-
1466
- #: ../includes/row-settings.php:294
1467
- #: ../modules/content-slider/content-slider.php:239
1468
- #: ../modules/slideshow/slideshow.php:407
1469
- #: ../modules/testimonials/testimonials.php:108
1470
- msgid "Transition Speed"
1471
- msgstr ""
1472
-
1473
- #: ../includes/row-settings.php:304 ../modules/slideshow/slideshow.php:414
1474
- msgid "Randomize Photos"
1475
- msgstr ""
1476
-
1477
- #: ../includes/row-settings.php:317
1478
- msgid "Background Parallax"
1479
- msgstr ""
1480
-
1481
- #: ../includes/row-settings.php:331
1482
- msgid "Fast"
1483
- msgstr ""
1484
-
1485
- #: ../includes/row-settings.php:333
1486
- msgid "Slow"
1487
- msgstr ""
1488
-
1489
- #: ../includes/row-settings.php:457
1490
- msgid "Add a custom CSS selector here to apply additional styling to this row."
1491
- msgstr ""
1492
-
1493
- #: ../includes/row-settings.php:470
1494
- msgid ""
1495
- "Choose whether to always show this row, only show it on the desktop view or "
1496
- "only show it on the mobile view."
1497
- msgstr ""
1498
-
1499
- #: ../includes/settings.php:62
1500
- msgid "Save"
1501
- msgstr ""
1502
-
1503
- #: ../includes/template-selector.php:3
1504
- msgid "Layout Templates"
1505
- msgstr ""
1506
-
1507
- #: ../includes/template-selector.php:8
1508
- msgid "Home Pages"
1509
- msgstr ""
1510
-
1511
- #: ../includes/template-selector.php:9
1512
- msgid "Content Pages"
1513
- msgstr ""
1514
-
1515
- #: ../includes/template-selector.php:13
1516
- msgid "Your Templates"
1517
- msgstr ""
1518
-
1519
- #: ../includes/template-selector.php:47 ../includes/template-selector.php:77
1520
- msgid "Blank"
1521
- msgstr ""
1522
-
1523
- #: ../includes/template-selector.php:72
1524
- msgid ""
1525
- "You haven't saved any templates yet! To do so, create a layout and save it "
1526
- "as a template under Tools > Save Template."
1527
- msgstr ""
1528
-
1529
- #: ../includes/template-settings.php:18
1530
- msgid "Image Filename"
1531
- msgstr ""
1532
-
1533
- #: ../includes/template-settings.php:19
1534
- msgid ""
1535
- "The filename of the image such as thumb.jpg that resides in the \"img/"
1536
- "templates/\" directory."
1537
- msgstr ""
1538
-
1539
- #: ../includes/ui.php:6
1540
- msgid "Page Builder Demo"
1541
- msgstr ""
1542
-
1543
- #: ../includes/ui.php:19
1544
- msgid "Done"
1545
- msgstr ""
1546
-
1547
- #: ../includes/ui.php:20
1548
- msgid "Tools"
1549
- msgstr ""
1550
-
1551
- #: ../includes/ui.php:24
1552
- msgid "Add Content"
1553
- msgstr ""
1554
-
1555
- #: ../includes/ui.php:39
1556
- msgid "Row Layouts"
1557
- msgstr ""
1558
-
1559
- #: ../includes/ui.php:43
1560
- msgid "1 Column"
1561
- msgstr ""
1562
-
1563
- #: ../includes/ui.php:44
1564
- msgid "2 Columns"
1565
- msgstr ""
1566
-
1567
- #: ../includes/ui.php:45
1568
- msgid "3 Columns"
1569
- msgstr ""
1570
-
1571
- #: ../includes/ui.php:46
1572
- msgid "4 Columns"
1573
- msgstr ""
1574
-
1575
- #: ../includes/ui.php:47
1576
- msgid "5 Columns"
1577
- msgstr ""
1578
-
1579
- #: ../includes/ui.php:48
1580
- msgid "6 Columns"
1581
- msgstr ""
1582
-
1583
- #: ../includes/ui.php:49
1584
- msgid "Left Sidebar"
1585
- msgstr ""
1586
-
1587
- #: ../includes/ui.php:50
1588
- msgid "Right Sidebar"
1589
- msgstr ""
1590
-
1591
- #: ../includes/ui.php:51
1592
- msgid "Left &amp; Right Sidebar"
1593
- msgstr ""
1594
-
1595
- #: ../includes/ui.php:60 ../modules/widget/widget.php:16
1596
- msgid "WordPress Widgets"
1597
- msgstr ""
1598
-
1599
- #: ../includes/ui.php:78
1600
- msgid "Buy Now!"
1601
- msgstr ""
1602
-
1603
- #: ../includes/ui.php:85
1604
- msgid "Upgrade Today!"
1605
- msgstr ""
1606
-
1607
- #: ../includes/updater/includes/form.php:4
1608
- msgid "Support &amp; Updates Subscription"
1609
- msgstr ""
1610
-
1611
- #: ../includes/updater/includes/form.php:7
1612
- msgid "Active!"
1613
- msgstr ""
1614
-
1615
- #: ../includes/updater/includes/form.php:9
1616
- msgid "Not Active!"
1617
- msgstr ""
1618
-
1619
- #: ../includes/updater/includes/form.php:15
1620
- msgid "Email address saved!"
1621
- msgstr ""
1622
-
1623
- #: ../includes/updater/includes/form.php:20
1624
- msgid ""
1625
- "Enter the email address you used to signup to receive support and enable "
1626
- "remote updates."
1627
- msgstr ""
1628
-
1629
- #: ../includes/updater/includes/form.php:29
1630
- msgid "email@yourwebsite.com"
1631
- msgstr ""
1632
-
1633
- #: ../includes/updater/includes/form.php:32
1634
- msgid "Save Subscription Settings"
1635
- msgstr ""
1636
-
1637
- #: ../includes/user-template-settings.php:8
1638
- msgid ""
1639
- "Save the current layout as a template that can be reused under Templates > "
1640
- "Your Templates."
1641
- msgstr ""
1642
-
1643
- #: ../modules/accordion/accordion.php:14
1644
- msgid "Accordion"
1645
- msgstr ""
1646
-
1647
- #: ../modules/accordion/accordion.php:15
1648
- msgid "Display a collapsible accordion of items."
1649
- msgstr ""
1650
-
1651
- #: ../modules/accordion/accordion.php:16 ../modules/button/button.php:16
1652
- #: ../modules/callout/callout.php:16
1653
- #: ../modules/contact-form/contact-form.php:16
1654
- #: ../modules/content-slider/content-slider.php:16 ../modules/cta/cta.php:16
1655
- #: ../modules/gallery/gallery.php:16 ../modules/html/html.php:16
1656
- #: ../modules/icon-group/icon-group.php:16 ../modules/icon/icon.php:16
1657
- #: ../modules/map/map.php:16 ../modules/post-grid/post-grid.php:16
1658
- #: ../modules/pricing-table/pricing-table.php:16
1659
- #: ../modules/sidebar/sidebar.php:16 ../modules/slideshow/slideshow.php:16
1660
- #: ../modules/social-buttons/social-buttons.php:16 ../modules/tabs/tabs.php:16
1661
- #: ../modules/testimonials/testimonials.php:16
1662
- #: ../modules/woocommerce/woocommerce.php:18
1663
- msgid "Advanced Modules"
1664
- msgstr ""
1665
-
1666
- #: ../modules/accordion/accordion.php:28 ../modules/tabs/tabs.php:28
1667
- msgid "Items"
1668
- msgstr ""
1669
-
1670
- #: ../modules/accordion/accordion.php:35 ../modules/tabs/tabs.php:35
1671
- msgid "Item"
1672
- msgstr ""
1673
-
1674
- #: ../modules/accordion/accordion.php:52 ../modules/tabs/tabs.php:61
1675
- msgid "Border Color"
1676
- msgstr ""
1677
-
1678
- #: ../modules/accordion/accordion.php:62
1679
- msgid "Label Size"
1680
- msgstr ""
1681
-
1682
- #: ../modules/accordion/accordion.php:65 ../modules/gallery/gallery.php:263
1683
- msgid "Small"
1684
- msgstr ""
1685
-
1686
- #: ../modules/accordion/accordion.php:75
1687
- msgid "Item Spacing"
1688
- msgstr ""
1689
-
1690
- #: ../modules/accordion/accordion.php:86
1691
- msgid "Collapse Inactive"
1692
- msgstr ""
1693
-
1694
- #: ../modules/accordion/accordion.php:92
1695
- msgid ""
1696
- "Choosing yes will keep only one item open at a time. Choosing no will allow "
1697
- "multiple items to be open at the same time."
1698
- msgstr ""
1699
-
1700
- #: ../modules/accordion/accordion.php:107 ../modules/tabs/tabs.php:74
1701
- msgid "Add Item"
1702
- msgstr ""
1703
-
1704
- #: ../modules/accordion/accordion.php:117 ../modules/tabs/tabs.php:84
1705
- msgid "Label"
1706
- msgstr ""
1707
-
1708
- #: ../modules/accordion/accordion.php:122
1709
- #: ../modules/post-grid/post-grid.php:194
1710
- #: ../modules/post-grid/post-grid.php:198
1711
- #: ../modules/post-grid/post-grid.php:224 ../modules/tabs/tabs.php:89
1712
- msgid "Content"
1713
- msgstr ""
1714
-
1715
- #: ../modules/button/button.php:14 ../modules/callout/callout.php:478
1716
- #: ../modules/content-slider/content-slider.php:594 ../modules/cta/cta.php:211
1717
- msgid "Button"
1718
- msgstr ""
1719
-
1720
- #: ../modules/button/button.php:15
1721
- msgid "A simple call to action button."
1722
- msgstr ""
1723
-
1724
- #: ../modules/button/button.php:56 ../modules/cta/cta.php:219
1725
- msgid "Click Here"
1726
- msgstr ""
1727
-
1728
- #: ../modules/button/button.php:64 ../modules/callout/callout.php:316
1729
- #: ../modules/callout/callout.php:364 ../modules/callout/callout.php:368
1730
- #: ../modules/icon-group/icon-group.php:36
1731
- #: ../modules/icon-group/icon-group.php:137 ../modules/icon/icon.php:14
1732
- #: ../modules/icon/icon.php:36
1733
- msgid "Icon"
1734
- msgstr ""
1735
-
1736
- #: ../modules/button/button.php:70 ../modules/button/button.php:74
1737
- #: ../modules/callout/callout.php:444 ../modules/callout/callout.php:448
1738
- #: ../modules/content-slider/content-slider.php:566
1739
- #: ../modules/content-slider/content-slider.php:570
1740
- #: ../modules/content-slider/content-slider.php:593 ../modules/cta/cta.php:232
1741
- #: ../modules/heading/heading.php:43 ../modules/heading/heading.php:47
1742
- #: ../modules/icon-group/icon-group.php:141 ../modules/icon/icon.php:45
1743
- #: ../modules/slideshow/slideshow.php:343
1744
- msgid "Link"
1745
- msgstr ""
1746
-
1747
- #: ../modules/button/button.php:82 ../modules/callout/callout.php:456
1748
- #: ../modules/content-slider/content-slider.php:575 ../modules/cta/cta.php:239
1749
- #: ../modules/heading/heading.php:54 ../modules/icon/icon.php:52
1750
- #: ../modules/photo/photo.php:478
1751
- msgid "Link Target"
1752
- msgstr ""
1753
-
1754
- #: ../modules/button/button.php:85 ../modules/callout/callout.php:459
1755
- #: ../modules/content-slider/content-slider.php:578 ../modules/cta/cta.php:242
1756
- #: ../modules/heading/heading.php:57 ../modules/icon/icon.php:55
1757
- #: ../modules/photo/photo.php:481
1758
- msgid "Same Window"
1759
- msgstr ""
1760
-
1761
- #: ../modules/button/button.php:86 ../modules/callout/callout.php:460
1762
- #: ../modules/content-slider/content-slider.php:579 ../modules/cta/cta.php:243
1763
- #: ../modules/heading/heading.php:58 ../modules/icon/icon.php:56
1764
- #: ../modules/photo/photo.php:482
1765
- msgid "New Window"
1766
- msgstr ""
1767
-
1768
- #: ../modules/button/button.php:100 ../modules/cta/cta.php:184
1769
- #: ../modules/heading/heading.php:72 ../modules/icon-group/icon-group.php:49
1770
- #: ../modules/icon/icon.php:80
1771
- msgid "Colors"
1772
- msgstr ""
1773
-
1774
- #: ../modules/button/button.php:110 ../modules/callout/callout.php:408
1775
- #: ../modules/callout/callout.php:508
1776
- #: ../modules/content-slider/content-slider.php:624 ../modules/cta/cta.php:262
1777
- #: ../modules/icon-group/icon-group.php:71 ../modules/icon/icon.php:102
1778
- msgid "Background Hover Color"
1779
- msgstr ""
1780
-
1781
- #: ../modules/button/button.php:119 ../modules/callout/callout.php:517
1782
- #: ../modules/content-slider/content-slider.php:521
1783
- #: ../modules/content-slider/content-slider.php:629
1784
- #: ../modules/content-slider/content-slider.php:713 ../modules/cta/cta.php:188
1785
- #: ../modules/cta/cta.php:271 ../modules/heading/heading.php:77
1786
- msgid "Text Color"
1787
- msgstr ""
1788
-
1789
- #: ../modules/button/button.php:125 ../modules/callout/callout.php:523
1790
- #: ../modules/content-slider/content-slider.php:635 ../modules/cta/cta.php:277
1791
- msgid "Text Hover Color"
1792
- msgstr ""
1793
-
1794
- #: ../modules/button/button.php:134 ../modules/callout/callout.php:416
1795
- #: ../modules/callout/callout.php:532
1796
- #: ../modules/content-slider/content-slider.php:640 ../modules/cta/cta.php:286
1797
- #: ../modules/icon-group/icon-group.php:79 ../modules/icon/icon.php:110
1798
- msgid "Gradient"
1799
- msgstr ""
1800
-
1801
- #: ../modules/button/button.php:144 ../modules/callout/callout.php:243
1802
- #: ../modules/cta/cta.php:101 ../modules/heading/heading.php:87
1803
- #: ../modules/icon-group/icon-group.php:89 ../modules/icon/icon.php:120
1804
- msgid "Structure"
1805
- msgstr ""
1806
-
1807
- #: ../modules/button/button.php:151 ../modules/callout/callout.php:549
1808
- #: ../modules/content-slider/content-slider.php:554
1809
- msgid "Auto"
1810
- msgstr ""
1811
-
1812
- #: ../modules/button/button.php:153 ../modules/callout/callout.php:283
1813
- #: ../modules/content-slider/content-slider.php:442 ../modules/cta/cta.php:165
1814
- #: ../modules/heading/heading.php:123 ../modules/heading/heading.php:150
1815
- #: ../modules/heading/heading.php:180
1816
- #: ../modules/social-buttons/social-buttons.php:74
1817
- msgid "Custom"
1818
- msgstr ""
1819
-
1820
- #: ../modules/button/button.php:167
1821
- msgid "Custom Width"
1822
- msgstr ""
1823
-
1824
- #: ../modules/button/button.php:175 ../modules/cta/cta.php:119
1825
- #: ../modules/heading/heading.php:91 ../modules/heading/heading.php:146
1826
- #: ../modules/icon-group/icon-group.php:109 ../modules/icon/icon.php:132
1827
- #: ../modules/photo/photo.php:414
1828
- #: ../modules/social-buttons/social-buttons.php:97
1829
- msgid "Alignment"
1830
- msgstr ""
1831
-
1832
- #: ../modules/button/button.php:178 ../modules/callout/callout.php:250
1833
- #: ../modules/content-slider/content-slider.php:470 ../modules/cta/cta.php:123
1834
- #: ../modules/heading/heading.php:95 ../modules/heading/heading.php:167
1835
- #: ../modules/icon-group/icon-group.php:112 ../modules/icon/icon.php:135
1836
- #: ../modules/photo/photo.php:418
1837
- #: ../modules/social-buttons/social-buttons.php:100
1838
- msgid "Center"
1839
- msgstr ""
1840
-
1841
- #: ../modules/button/button.php:185 ../modules/callout/callout.php:555
1842
- #: ../modules/content-slider/content-slider.php:654 ../modules/cta/cta.php:300
1843
- #: ../modules/heading/heading.php:119 ../modules/heading/heading.php:176
1844
- msgid "Font Size"
1845
- msgstr ""
1846
-
1847
- #: ../modules/button/button.php:201 ../modules/callout/callout.php:571
1848
- #: ../modules/cta/cta.php:316
1849
- msgid "Round Corners"
1850
- msgstr ""
1851
-
1852
- #: ../modules/callout/callout.php:14
1853
- msgid "Callout"
1854
- msgstr ""
1855
-
1856
- #: ../modules/callout/callout.php:15
1857
- msgid "A heading and snippet of text with an optional link, icon and image."
1858
- msgstr ""
1859
-
1860
- #: ../modules/callout/callout.php:215
1861
- #: ../modules/content-slider/content-slider.php:406
1862
- #: ../modules/content-slider/content-slider.php:421 ../modules/cta/cta.php:71
1863
- #: ../modules/heading/heading.php:14 ../modules/heading/heading.php:33
1864
- #: ../modules/testimonials/testimonials.php:56
1865
- #: ../modules/testimonials/testimonials.php:61
1866
- msgid "Heading"
1867
- msgstr ""
1868
-
1869
- #: ../modules/callout/callout.php:247
1870
- msgid "Overall Alignment"
1871
- msgstr ""
1872
-
1873
- #: ../modules/callout/callout.php:254
1874
- msgid "The alignment that will apply to all elements within the callout."
1875
- msgstr ""
1876
-
1877
- #: ../modules/callout/callout.php:262 ../modules/cta/cta.php:144
1878
- msgid "Heading Structure"
1879
- msgstr ""
1880
-
1881
- #: ../modules/callout/callout.php:266
1882
- #: ../modules/content-slider/content-slider.php:425 ../modules/cta/cta.php:148
1883
- msgid "Heading Tag"
1884
- msgstr ""
1885
-
1886
- #: ../modules/callout/callout.php:279
1887
- #: ../modules/content-slider/content-slider.php:438
1888
- #: ../modules/content-slider/content-slider.php:452 ../modules/cta/cta.php:161
1889
- #: ../modules/testimonials/testimonials.php:69
1890
- msgid "Heading Size"
1891
- msgstr ""
1892
-
1893
- #: ../modules/callout/callout.php:282
1894
- #: ../modules/content-slider/content-slider.php:441 ../modules/cta/cta.php:164
1895
- #: ../modules/heading/heading.php:122 ../modules/heading/heading.php:149
1896
- #: ../modules/heading/heading.php:179
1897
- #: ../modules/woocommerce/woocommerce.php:186
1898
- msgid "Default"
1899
- msgstr ""
1900
-
1901
- #: ../modules/callout/callout.php:293 ../modules/cta/cta.php:175
1902
- msgid "Heading Custom Size"
1903
- msgstr ""
1904
-
1905
- #: ../modules/callout/callout.php:311
1906
- msgid "Image Type"
1907
- msgstr ""
1908
-
1909
- #: ../modules/callout/callout.php:339 ../modules/photo/photo.php:401
1910
- #: ../modules/slideshow/slideshow.php:312
1911
- msgid "Crop"
1912
- msgstr ""
1913
-
1914
- #: ../modules/callout/callout.php:343 ../modules/photo/photo.php:405
1915
- msgid "Landscape"
1916
- msgstr ""
1917
-
1918
- #: ../modules/callout/callout.php:344 ../modules/photo/photo.php:406
1919
- msgid "Panorama"
1920
- msgstr ""
1921
-
1922
- #: ../modules/callout/callout.php:345 ../modules/photo/photo.php:407
1923
- msgid "Portrait"
1924
- msgstr ""
1925
-
1926
- #: ../modules/callout/callout.php:346 ../modules/photo/photo.php:408
1927
- msgid "Square"
1928
- msgstr ""
1929
-
1930
- #: ../modules/callout/callout.php:347 ../modules/photo/photo.php:409
1931
- msgid "Circle"
1932
- msgstr ""
1933
-
1934
- #: ../modules/callout/callout.php:355 ../modules/callout/callout.php:375
1935
- msgid "Above Heading"
1936
- msgstr ""
1937
-
1938
- #: ../modules/callout/callout.php:356 ../modules/callout/callout.php:376
1939
- msgid "Below Heading"
1940
- msgstr ""
1941
-
1942
- #: ../modules/callout/callout.php:357 ../modules/callout/callout.php:379
1943
- msgid "Left of Text and Heading"
1944
- msgstr ""
1945
-
1946
- #: ../modules/callout/callout.php:358 ../modules/callout/callout.php:380
1947
- msgid "Right of Text and Heading"
1948
- msgstr ""
1949
-
1950
- #: ../modules/callout/callout.php:377
1951
- msgid "Left Heading"
1952
- msgstr ""
1953
-
1954
- #: ../modules/callout/callout.php:378
1955
- msgid "Right Heading"
1956
- msgstr ""
1957
-
1958
- #: ../modules/callout/callout.php:386
1959
- msgid "Icon Colors"
1960
- msgstr ""
1961
-
1962
- #: ../modules/callout/callout.php:395 ../modules/icon-group/icon-group.php:58
1963
- #: ../modules/icon/icon.php:89
1964
- msgid "Hover Color"
1965
- msgstr ""
1966
-
1967
- #: ../modules/callout/callout.php:426
1968
- msgid "Icon Structure"
1969
- msgstr ""
1970
-
1971
- #: ../modules/callout/callout.php:430 ../modules/icon-group/icon-group.php:93
1972
- #: ../modules/icon/icon.php:124 ../modules/post-grid/post-grid.php:136
1973
- msgid "Size"
1974
- msgstr ""
1975
-
1976
- #: ../modules/callout/callout.php:441
1977
- #: ../modules/content-slider/content-slider.php:563
1978
- msgid "Call To Action"
1979
- msgstr ""
1980
-
1981
- #: ../modules/callout/callout.php:449
1982
- msgid ""
1983
- "The link applies to the entire module. If choosing a call to action type "
1984
- "below, this link will also be used for the text or button."
1985
- msgstr ""
1986
-
1987
- #: ../modules/callout/callout.php:469
1988
- #: ../modules/content-slider/content-slider.php:585 ../modules/cta/cta.php:14
1989
- msgid "Call to Action"
1990
- msgstr ""
1991
-
1992
- #: ../modules/callout/callout.php:498
1993
- #: ../modules/content-slider/content-slider.php:614 ../modules/cta/cta.php:252
1994
- msgid "Button Colors"
1995
- msgstr ""
1996
-
1997
- #: ../modules/callout/callout.php:542
1998
- #: ../modules/content-slider/content-slider.php:650 ../modules/cta/cta.php:296
1999
- msgid "Button Structure"
2000
- msgstr ""
2001
-
2002
- #: ../modules/callout/callout.php:546
2003
- msgid "Button Width"
2004
- msgstr ""
2005
-
2006
- #: ../modules/contact-form/contact-form.php:14
2007
- msgid "Contact Form"
2008
- msgstr ""
2009
-
2010
- #: ../modules/contact-form/contact-form.php:15
2011
- msgid "A very simple contact form."
2012
- msgstr ""
2013
-
2014
- #: ../modules/contact-form/contact-form.php:36
2015
- msgid "Contact Form Submission"
2016
- msgstr ""
2017
-
2018
- #: ../modules/contact-form/contact-form.php:64
2019
- msgid "Send To Email"
2020
- msgstr ""
2021
-
2022
- #: ../modules/contact-form/contact-form.php:66
2023
- msgid "example@mail.com"
2024
- msgstr ""
2025
-
2026
- #: ../modules/contact-form/contact-form.php:67
2027
- msgid "The contact form will send to this e-mail"
2028
- msgstr ""
2029
-
2030
- #: ../modules/contact-form/includes/frontend.php:5
2031
- msgid "Please enter your name."
2032
- msgstr ""
2033
-
2034
- #: ../modules/contact-form/includes/frontend.php:10
2035
- msgid "Email"
2036
- msgstr ""
2037
-
2038
- #: ../modules/contact-form/includes/frontend.php:11
2039
- msgid "Please enter a valid email."
2040
- msgstr ""
2041
-
2042
- #: ../modules/contact-form/includes/frontend.php:16
2043
- msgid "Your Message"
2044
- msgstr ""
2045
-
2046
- #: ../modules/contact-form/includes/frontend.php:17
2047
- msgid "Please enter a message."
2048
- msgstr ""
2049
-
2050
- #: ../modules/contact-form/includes/frontend.php:23
2051
- msgid "Send"
2052
- msgstr ""
2053
-
2054
- #: ../modules/content-slider/content-slider.php:14
2055
- msgid "Content Slider"
2056
- msgstr ""
2057
-
2058
- #: ../modules/content-slider/content-slider.php:15
2059
- msgid "Displays multiple slides with an optional heading and call to action."
2060
- msgstr ""
2061
-
2062
- #: ../modules/content-slider/content-slider.php:190 ../modules/map/map.php:41
2063
- #: ../modules/separator/separator.php:58
2064
- #: ../modules/slideshow/slideshow.php:294
2065
- msgid "Height"
2066
- msgstr ""
2067
-
2068
- #: ../modules/content-slider/content-slider.php:195
2069
- msgid ""
2070
- "This setting is the minimum height of the content slider. Content will "
2071
- "expand the height automatically."
2072
- msgstr ""
2073
-
2074
- #: ../modules/content-slider/content-slider.php:199
2075
- #: ../modules/slideshow/slideshow.php:373
2076
- #: ../modules/testimonials/testimonials.php:82 ../modules/video/video.php:108
2077
- msgid "Auto Play"
2078
- msgstr ""
2079
-
2080
- #: ../modules/content-slider/content-slider.php:213
2081
- msgid "Show Play/Pause"
2082
- msgstr ""
2083
-
2084
- #: ../modules/content-slider/content-slider.php:226
2085
- #: ../modules/content-slider/content-slider.php:243
2086
- #: ../modules/testimonials/testimonials.php:95
2087
- #: ../modules/testimonials/testimonials.php:112
2088
- msgid "Seconds"
2089
- msgstr ""
2090
-
2091
- #: ../modules/content-slider/content-slider.php:247
2092
- #: ../modules/testimonials/testimonials.php:121
2093
- msgid "Show Arrows"
2094
- msgstr ""
2095
-
2096
- #: ../modules/content-slider/content-slider.php:256
2097
- #: ../modules/testimonials/testimonials.php:151
2098
- msgid "Show Dots"
2099
- msgstr ""
2100
-
2101
- #: ../modules/content-slider/content-slider.php:270
2102
- msgid "Max Content Width"
2103
- msgstr ""
2104
-
2105
- #: ../modules/content-slider/content-slider.php:275
2106
- msgid "The max width that the content area will be within your slides."
2107
- msgstr ""
2108
-
2109
- #: ../modules/content-slider/content-slider.php:282
2110
- msgid "Slides"
2111
- msgstr ""
2112
-
2113
- #: ../modules/content-slider/content-slider.php:289
2114
- msgid "Slide"
2115
- msgstr ""
2116
-
2117
- #: ../modules/content-slider/content-slider.php:304
2118
- msgid "Slide Settings"
2119
- msgstr ""
2120
-
2121
- #: ../modules/content-slider/content-slider.php:314
2122
- msgid "Slide Label"
2123
- msgstr ""
2124
-
2125
- #: ../modules/content-slider/content-slider.php:315
2126
- msgid ""
2127
- "A label to identify this slide on the Slides tab of the Content Slider "
2128
- "settings."
2129
- msgstr ""
2130
-
2131
- #: ../modules/content-slider/content-slider.php:320
2132
- msgid "Background Layout"
2133
- msgstr ""
2134
-
2135
- #: ../modules/content-slider/content-slider.php:326
2136
- msgid "This setting is for the entire background of your slide."
2137
- msgstr ""
2138
-
2139
- #: ../modules/content-slider/content-slider.php:361
2140
- msgid "Background Video Code"
2141
- msgstr ""
2142
-
2143
- #: ../modules/content-slider/content-slider.php:367
2144
- msgid "Content Layout"
2145
- msgstr ""
2146
-
2147
- #: ../modules/content-slider/content-slider.php:373
2148
- msgid ""
2149
- "This allows you to add content over or in addition to the background "
2150
- "selection above. The location of the content layout can be selected in the "
2151
- "style tab."
2152
- msgstr ""
2153
-
2154
- #: ../modules/content-slider/content-slider.php:376
2155
- msgid "Text &amp; Photo"
2156
- msgstr ""
2157
-
2158
- #: ../modules/content-slider/content-slider.php:377
2159
- msgid "Text &amp; Video"
2160
- msgstr ""
2161
-
2162
- #: ../modules/content-slider/content-slider.php:401
2163
- msgid "Video Embed Code"
2164
- msgstr ""
2165
-
2166
- #: ../modules/content-slider/content-slider.php:461
2167
- msgid "Text Position"
2168
- msgstr ""
2169
-
2170
- #: ../modules/content-slider/content-slider.php:467
2171
- msgid ""
2172
- "The position will move the content layout selections left, right or center "
2173
- "over the background of the slide."
2174
- msgstr ""
2175
-
2176
- #: ../modules/content-slider/content-slider.php:484
2177
- msgid "Top Margin"
2178
- msgstr ""
2179
-
2180
- #: ../modules/content-slider/content-slider.php:492
2181
- msgid "Bottom Margin"
2182
- msgstr ""
2183
-
2184
- #: ../modules/content-slider/content-slider.php:500
2185
- msgid "Left Margin"
2186
- msgstr ""
2187
-
2188
- #: ../modules/content-slider/content-slider.php:508
2189
- msgid "Right Margin"
2190
- msgstr ""
2191
-
2192
- #: ../modules/content-slider/content-slider.php:517
2193
- msgid "Text Colors"
2194
- msgstr ""
2195
-
2196
- #: ../modules/content-slider/content-slider.php:527
2197
- msgid "Text Shadow"
2198
- msgstr ""
2199
-
2200
- #: ../modules/content-slider/content-slider.php:536
2201
- #: ../modules/content-slider/content-slider.php:719
2202
- msgid "Text Background Color"
2203
- msgstr ""
2204
-
2205
- #: ../modules/content-slider/content-slider.php:537
2206
- msgid ""
2207
- "The color applies to the overlay behind text over the background selections."
2208
- msgstr ""
2209
-
2210
- #: ../modules/content-slider/content-slider.php:542
2211
- msgid "Text Background Opacity"
2212
- msgstr ""
2213
-
2214
- #: ../modules/content-slider/content-slider.php:550
2215
- msgid "Text Background Height"
2216
- msgstr ""
2217
-
2218
- #: ../modules/content-slider/content-slider.php:552
2219
- msgid ""
2220
- "Auto will allow the overlay to fit however long the text content is. 100% "
2221
- "will fit the overlay to the top and bottom of the slide."
2222
- msgstr ""
2223
-
2224
- #: ../modules/content-slider/content-slider.php:571
2225
- msgid ""
2226
- "The link applies to the entire slide. If choosing a call to action type "
2227
- "below, this link will also be used for the text or button."
2228
- msgstr ""
2229
-
2230
- #: ../modules/content-slider/content-slider.php:670
2231
- msgid "Border Radius"
2232
- msgstr ""
2233
-
2234
- #: ../modules/content-slider/content-slider.php:681
2235
- msgid "Mobile"
2236
- msgstr ""
2237
-
2238
- #: ../modules/content-slider/content-slider.php:684
2239
- msgid "Mobile Photo"
2240
- msgstr ""
2241
-
2242
- #: ../modules/content-slider/content-slider.php:690
2243
- msgid ""
2244
- "You can choose a different photo that the slide will change to on mobile "
2245
- "devices or no photo if desired."
2246
- msgstr ""
2247
-
2248
- #: ../modules/content-slider/content-slider.php:692
2249
- msgid "Use Main Photo"
2250
- msgstr ""
2251
-
2252
- #: ../modules/content-slider/content-slider.php:693
2253
- msgid "Choose Another Photo"
2254
- msgstr ""
2255
-
2256
- #: ../modules/content-slider/content-slider.php:694
2257
- msgid "No Photo"
2258
- msgstr ""
2259
-
2260
- #: ../modules/content-slider/content-slider.php:709
2261
- msgid "Mobile Text Colors"
2262
- msgstr ""
2263
-
2264
- #: ../modules/cta/cta.php:15
2265
- msgid "Display a heading, subheading and a button."
2266
- msgstr ""
2267
-
2268
- #: ../modules/cta/cta.php:72
2269
- msgid "Ready to find out more?"
2270
- msgstr ""
2271
-
2272
- #: ../modules/cta/cta.php:87
2273
- msgid "Drop us a line today for a free quote!"
2274
- msgstr ""
2275
-
2276
- #: ../modules/cta/cta.php:105 ../modules/gallery/gallery.php:220
2277
- #: ../modules/post-grid/post-grid.php:44 ../modules/tabs/tabs.php:52
2278
- #: ../modules/testimonials/testimonials.php:37
2279
- #: ../modules/woocommerce/woocommerce.php:57
2280
- msgid "Layout"
2281
- msgstr ""
2282
-
2283
- #: ../modules/cta/cta.php:108
2284
- msgid "Inline"
2285
- msgstr ""
2286
-
2287
- #: ../modules/cta/cta.php:109
2288
- msgid "Stacked"
2289
- msgstr ""
2290
-
2291
- #: ../modules/cta/cta.php:129 ../modules/icon-group/icon-group.php:101
2292
- msgid "Spacing"
2293
- msgstr ""
2294
-
2295
- #: ../modules/cta/cta.php:200
2296
- msgid "Background Opacity"
2297
- msgstr ""
2298
-
2299
- #: ../modules/cta/cta.php:228
2300
- msgid "Button Link"
2301
- msgstr ""
2302
-
2303
- #: ../modules/gallery/gallery.php:14 ../modules/post-grid/post-grid.php:55
2304
- msgid "Gallery"
2305
- msgstr ""
2306
-
2307
- #: ../modules/gallery/gallery.php:15
2308
- msgid "Display multiple photos in a gallery view."
2309
- msgstr ""
2310
-
2311
- #: ../modules/gallery/gallery.php:223
2312
- msgid "Collage"
2313
- msgstr ""
2314
-
2315
- #: ../modules/gallery/gallery.php:224 ../modules/slideshow/slideshow.php:456
2316
- #: ../modules/slideshow/slideshow.php:586
2317
- msgid "Thumbs"
2318
- msgstr ""
2319
-
2320
- #: ../modules/gallery/gallery.php:260
2321
- msgid "Photo Size"
2322
- msgstr ""
2323
-
2324
- #: ../modules/gallery/gallery.php:270
2325
- msgid "Photo Spacing"
2326
- msgstr ""
2327
-
2328
- #: ../modules/gallery/gallery.php:278
2329
- msgid "Show Captions"
2330
- msgstr ""
2331
-
2332
- #: ../modules/gallery/gallery.php:281 ../modules/photo/photo.php:432
2333
- msgid "Never"
2334
- msgstr ""
2335
-
2336
- #: ../modules/gallery/gallery.php:282 ../modules/photo/photo.php:433
2337
- msgid "On Hover"
2338
- msgstr ""
2339
-
2340
- #: ../modules/gallery/gallery.php:283 ../modules/photo/photo.php:434
2341
- msgid "Below Photo"
2342
- msgstr ""
2343
-
2344
- #: ../modules/gallery/gallery.php:285
2345
- msgid ""
2346
- "The caption pulls from whatever text you put in the caption area in the "
2347
- "media manager for each image. The caption is also pulled directly from "
2348
- "SmugMug if you have captions set in your gallery."
2349
- msgstr ""
2350
-
2351
- #: ../modules/gallery/gallery.php:289 ../modules/slideshow/slideshow.php:335
2352
- msgid "Click Action"
2353
- msgstr ""
2354
-
2355
- #: ../modules/gallery/gallery.php:293 ../modules/photo/photo.php:452
2356
- msgid "Lightbox"
2357
- msgstr ""
2358
-
2359
- #: ../modules/gallery/gallery.php:294
2360
- msgid "Photo Link"
2361
- msgstr ""
2362
-
2363
- #: ../modules/heading/heading.php:15
2364
- msgid "Display a title/page heading."
2365
- msgstr ""
2366
-
2367
- #: ../modules/heading/heading.php:16 ../modules/photo/photo.php:27
2368
- #: ../modules/rich-text/rich-text.php:16 ../modules/separator/separator.php:16
2369
- #: ../modules/video/video.php:21
2370
- msgid "Basic Modules"
2371
- msgstr ""
2372
-
2373
- #: ../modules/heading/heading.php:106
2374
- msgid "Tag"
2375
- msgstr ""
2376
-
2377
- #: ../modules/heading/heading.php:109
2378
- msgid "h1"
2379
- msgstr ""
2380
-
2381
- #: ../modules/heading/heading.php:110
2382
- msgid "h2"
2383
- msgstr ""
2384
-
2385
- #: ../modules/heading/heading.php:111
2386
- msgid "h3"
2387
- msgstr ""
2388
-
2389
- #: ../modules/heading/heading.php:112
2390
- msgid "h4"
2391
- msgstr ""
2392
-
2393
- #: ../modules/heading/heading.php:113
2394
- msgid "h5"
2395
- msgstr ""
2396
-
2397
- #: ../modules/heading/heading.php:114
2398
- msgid "h6"
2399
- msgstr ""
2400
-
2401
- #: ../modules/heading/heading.php:133 ../modules/heading/heading.php:193
2402
- msgid "Custom Font Size"
2403
- msgstr ""
2404
-
2405
- #: ../modules/heading/heading.php:142
2406
- msgid "Mobile Structure"
2407
- msgstr ""
2408
-
2409
- #: ../modules/heading/heading.php:163
2410
- msgid "Custom Alignment"
2411
- msgstr ""
2412
-
2413
- #: ../modules/html/html.php:14
2414
- msgid "HTML"
2415
- msgstr ""
2416
-
2417
- #: ../modules/html/html.php:15
2418
- msgid "Display raw HTML code."
2419
- msgstr ""
2420
-
2421
- #: ../modules/icon-group/icon-group.php:14
2422
- msgid "Icon Group"
2423
- msgstr ""
2424
-
2425
- #: ../modules/icon-group/icon-group.php:15
2426
- msgid "Display a group of linked Font Awesome icons."
2427
- msgstr ""
2428
-
2429
- #: ../modules/icon-group/icon-group.php:29
2430
- msgid "Icons"
2431
- msgstr ""
2432
-
2433
- #: ../modules/icon-group/icon-group.php:127
2434
- msgid "Add Icon"
2435
- msgstr ""
2436
-
2437
- #: ../modules/icon/icon.php:15
2438
- msgid "Display a Font Awesome icon and optional title."
2439
- msgstr ""
2440
-
2441
- #: ../modules/map/map.php:14
2442
- msgid "Map"
2443
- msgstr ""
2444
-
2445
- #: ../modules/map/map.php:15
2446
- msgid "Display a Google map."
2447
- msgstr ""
2448
-
2449
- #: ../modules/map/map.php:33
2450
- msgid "Address"
2451
- msgstr ""
2452
-
2453
- #: ../modules/map/map.php:34
2454
- msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
2455
- msgstr ""
2456
-
2457
- #: ../modules/photo/photo.php:26
2458
- msgid "Upload a photo or display one from the media library."
2459
- msgstr ""
2460
-
2461
- #: ../modules/photo/photo.php:375
2462
- msgid "Photo Source"
2463
- msgstr ""
2464
-
2465
- #: ../modules/photo/photo.php:379 ../modules/photo/photo.php:451
2466
- msgid "URL"
2467
- msgstr ""
2468
-
2469
- #: ../modules/photo/photo.php:396
2470
- msgid "Photo URL"
2471
- msgstr ""
2472
-
2473
- #: ../modules/photo/photo.php:429
2474
- msgid "Show Caption"
2475
- msgstr ""
2476
-
2477
- #: ../modules/photo/photo.php:439
2478
- msgid "Caption"
2479
- msgstr ""
2480
-
2481
- #: ../modules/photo/photo.php:448
2482
- msgid "Link Type"
2483
- msgstr ""
2484
-
2485
- #: ../modules/photo/photo.php:453
2486
- msgid "Photo File"
2487
- msgstr ""
2488
-
2489
- #: ../modules/photo/photo.php:454
2490
- msgid "Photo Page"
2491
- msgstr ""
2492
-
2493
- #: ../modules/photo/photo.php:464
2494
- msgid ""
2495
- "Link type applies to how the image should be linked on click. You can choose "
2496
- "a specific URL, the individual photo or a separate page with the photo."
2497
- msgstr ""
2498
-
2499
- #: ../modules/photo/photo.php:471 ../modules/slideshow/slideshow.php:356
2500
- msgid "Link URL"
2501
- msgstr ""
2502
-
2503
- #: ../modules/post-grid/includes/frontend.php:41
2504
- msgid "No posts found."
2505
- msgstr ""
2506
-
2507
- #: ../modules/post-grid/includes/post-feed.php:11
2508
- #: ../modules/post-grid/includes/post-grid.php:21
2509
- msgid "By "
2510
- msgstr ""
2511
-
2512
- #: ../modules/post-grid/includes/post-feed.php:49
2513
- #: ../modules/post-grid/includes/post-grid.php:42
2514
- msgid "Read More"
2515
- msgstr ""
2516
-
2517
- #: ../modules/post-grid/post-grid.php:14
2518
- msgid "Posts"
2519
- msgstr ""
2520
-
2521
- #: ../modules/post-grid/post-grid.php:15
2522
- msgid "Display a grid of your WordPress posts."
2523
- msgstr ""
2524
-
2525
- #: ../modules/post-grid/post-grid.php:51
2526
- msgid "Layout Style"
2527
- msgstr ""
2528
-
2529
- #: ../modules/post-grid/post-grid.php:54 ../modules/post-grid/post-grid.php:88
2530
- msgid "Grid"
2531
- msgstr ""
2532
-
2533
- #: ../modules/post-grid/post-grid.php:56
2534
- msgid "Feed"
2535
- msgstr ""
2536
-
2537
- #: ../modules/post-grid/post-grid.php:71
2538
- msgid "Pagination Style"
2539
- msgstr ""
2540
-
2541
- #: ../modules/post-grid/post-grid.php:74
2542
- msgid "Numbers"
2543
- msgstr ""
2544
-
2545
- #: ../modules/post-grid/post-grid.php:81
2546
- msgid "Posts Per Page"
2547
- msgstr ""
2548
-
2549
- #: ../modules/post-grid/post-grid.php:92
2550
- msgid "Post Width"
2551
- msgstr ""
2552
-
2553
- #: ../modules/post-grid/post-grid.php:100
2554
- msgid "Post Spacing"
2555
- msgstr ""
2556
-
2557
- #: ../modules/post-grid/post-grid.php:109
2558
- msgid "Featured Image"
2559
- msgstr ""
2560
-
2561
- #: ../modules/post-grid/post-grid.php:117
2562
- #: ../modules/post-grid/post-grid.php:150
2563
- #: ../modules/post-grid/post-grid.php:159
2564
- #: ../modules/post-grid/post-grid.php:188
2565
- #: ../modules/post-grid/post-grid.php:202
2566
- #: ../modules/post-grid/post-grid.php:216
2567
- msgid "Hide"
2568
- msgstr ""
2569
-
2570
- #: ../modules/post-grid/post-grid.php:130
2571
- msgid "Above Text"
2572
- msgstr ""
2573
-
2574
- #: ../modules/post-grid/post-grid.php:131
2575
- msgid "Beside Text"
2576
- msgstr ""
2577
-
2578
- #: ../modules/post-grid/post-grid.php:142
2579
- msgid "Post Info"
2580
- msgstr ""
2581
-
2582
- #: ../modules/post-grid/post-grid.php:169
2583
- msgid "Date Format"
2584
- msgstr ""
2585
-
2586
- #: ../modules/post-grid/post-grid.php:184
2587
- msgid "Comments"
2588
- msgstr ""
2589
-
2590
- #: ../modules/post-grid/post-grid.php:212
2591
- msgid "More Link"
2592
- msgstr ""
2593
-
2594
- #: ../modules/pricing-table/pricing-table.php:14
2595
- msgid "Pricing Table"
2596
- msgstr ""
2597
-
2598
- #: ../modules/pricing-table/pricing-table.php:15
2599
- msgid "A simple pricing table generator."
2600
- msgstr ""
2601
-
2602
- #: ../modules/pricing-table/pricing-table.php:28
2603
- msgid "Pricing Boxes"
2604
- msgstr ""
2605
-
2606
- #: ../modules/pricing-table/pricing-table.php:35
2607
- msgid "Pricing Box"
2608
- msgstr ""
2609
-
2610
- #: ../modules/pricing-table/pricing-table.php:52
2611
- msgid "Box Spacing"
2612
- msgstr ""
2613
-
2614
- #: ../modules/pricing-table/pricing-table.php:55
2615
- #: ../modules/pricing-table/pricing-table.php:72
2616
- #: ../modules/testimonials/testimonials.php:40
2617
- msgid "Wide"
2618
- msgstr ""
2619
-
2620
- #: ../modules/pricing-table/pricing-table.php:56
2621
- #: ../modules/pricing-table/pricing-table.php:73
2622
- msgid "Tight"
2623
- msgstr ""
2624
-
2625
- #: ../modules/pricing-table/pricing-table.php:61
2626
- msgid "Features Min Height"
2627
- msgstr ""
2628
-
2629
- #: ../modules/pricing-table/pricing-table.php:65
2630
- msgid ""
2631
- "Use this to normalize the height of your boxes when they have different "
2632
- "numbers of features."
2633
- msgstr ""
2634
-
2635
- #: ../modules/pricing-table/pricing-table.php:69
2636
- msgid "Border Size"
2637
- msgstr ""
2638
-
2639
- #: ../modules/pricing-table/pricing-table.php:86
2640
- msgid "Add Pricing Column"
2641
- msgstr ""
2642
-
2643
- #: ../modules/pricing-table/pricing-table.php:100
2644
- msgid "Title Size"
2645
- msgstr ""
2646
-
2647
- #: ../modules/pricing-table/pricing-table.php:113
2648
- msgid "Price"
2649
- msgstr ""
2650
-
2651
- #: ../modules/pricing-table/pricing-table.php:117
2652
- msgid "Duration"
2653
- msgstr ""
2654
-
2655
- #: ../modules/pricing-table/pricing-table.php:122
2656
- msgid "Price Size"
2657
- msgstr ""
2658
-
2659
- #: ../modules/pricing-table/pricing-table.php:135
2660
- msgid "Button Text"
2661
- msgstr ""
2662
-
2663
- #: ../modules/pricing-table/pricing-table.php:139
2664
- msgid "Button URL"
2665
- msgstr ""
2666
-
2667
- #: ../modules/pricing-table/pricing-table.php:149
2668
- msgid "One feature per line. HTML is okay!"
2669
- msgstr ""
2670
-
2671
- #: ../modules/pricing-table/pricing-table.php:164
2672
- msgid "Box Background"
2673
- msgstr ""
2674
-
2675
- #: ../modules/pricing-table/pricing-table.php:169
2676
- msgid "Box Foreground"
2677
- msgstr ""
2678
-
2679
- #: ../modules/pricing-table/pricing-table.php:175
2680
- msgid "Accent Color"
2681
- msgstr ""
2682
-
2683
- #: ../modules/pricing-table/pricing-table.php:180
2684
- msgid "Accent Text Color"
2685
- msgstr ""
2686
-
2687
- #: ../modules/pricing-table/pricing-table.php:184
2688
- msgid "Box Top Margin"
2689
- msgstr ""
2690
-
2691
- #: ../modules/rich-text/rich-text.php:15
2692
- msgid "A WYSIWYG text editor."
2693
- msgstr ""
2694
-
2695
- #: ../modules/separator/separator.php:14
2696
- msgid "Separator"
2697
- msgstr ""
2698
-
2699
- #: ../modules/separator/separator.php:15
2700
- msgid "A divider line to separate content."
2701
- msgstr ""
2702
-
2703
- #: ../modules/separator/separator.php:85
2704
- msgid ""
2705
- "The type of border to use. Double borders must have a height of at least 3px "
2706
- "to render properly."
2707
- msgstr ""
2708
-
2709
- #: ../modules/sidebar/includes/settings-general.php:5
2710
- #: ../modules/sidebar/sidebar.php:14
2711
- msgid "Sidebar"
2712
- msgstr ""
2713
-
2714
- #: ../modules/sidebar/sidebar.php:15
2715
- msgid ""
2716
- "Display a WordPress sidebar that has been registered by the current theme."
2717
- msgstr ""
2718
-
2719
- #: ../modules/slideshow/slideshow.php:15
2720
- msgid "Display multiple photos in a slideshow view."
2721
- msgstr ""
2722
-
2723
- #: ../modules/slideshow/slideshow.php:302
2724
- msgid "Skin Color"
2725
- msgstr ""
2726
-
2727
- #: ../modules/slideshow/slideshow.php:305
2728
- msgid "Light"
2729
- msgstr ""
2730
-
2731
- #: ../modules/slideshow/slideshow.php:306
2732
- msgid "Dark"
2733
- msgstr ""
2734
-
2735
- #: ../modules/slideshow/slideshow.php:308
2736
- msgid ""
2737
- "If your overall theme/images are lighter in color, light will display "
2738
- "buttons in a darker color scheme and vice versa for dark."
2739
- msgstr ""
2740
-
2741
- #: ../modules/slideshow/slideshow.php:318
2742
- msgid ""
2743
- "Crop set to no will fit the slideshow images to the height you specify and "
2744
- "keep the width proportional, whereas crop set to yes will fit the slideshow "
2745
- "images to all sides of the content area while cropping the left and right to "
2746
- "fit the height you specify."
2747
- msgstr ""
2748
-
2749
- #: ../modules/slideshow/slideshow.php:322
2750
- msgid "Disable Right-Click"
2751
- msgstr ""
2752
-
2753
- #: ../modules/slideshow/slideshow.php:366
2754
- msgid "Playback"
2755
- msgstr ""
2756
-
2757
- #: ../modules/slideshow/slideshow.php:429
2758
- msgid "Controls"
2759
- msgstr ""
2760
-
2761
- #: ../modules/slideshow/slideshow.php:436
2762
- #: ../modules/slideshow/slideshow.php:485
2763
- msgid "Navigation Arrows"
2764
- msgstr ""
2765
-
2766
- #: ../modules/slideshow/slideshow.php:442
2767
- msgid ""
2768
- "Navigational arrows allow the visitor to freely move through the images in "
2769
- "your slideshow. These are larger arrows that overlay your slideshow images "
2770
- "and are separate from the control bar navigational arrows."
2771
- msgstr ""
2772
-
2773
- #: ../modules/slideshow/slideshow.php:447
2774
- msgid "Control Bar"
2775
- msgstr ""
2776
-
2777
- #: ../modules/slideshow/slideshow.php:451
2778
- msgid "Nav Type"
2779
- msgstr ""
2780
-
2781
- #: ../modules/slideshow/slideshow.php:455
2782
- msgid "Buttons"
2783
- msgstr ""
2784
-
2785
- #: ../modules/slideshow/slideshow.php:471
2786
- msgid "Nav Position"
2787
- msgstr ""
2788
-
2789
- #: ../modules/slideshow/slideshow.php:481
2790
- msgid "Control Bar Buttons"
2791
- msgstr ""
2792
-
2793
- #: ../modules/slideshow/slideshow.php:494
2794
- msgid "Play Button"
2795
- msgstr ""
2796
-
2797
- #: ../modules/slideshow/slideshow.php:503
2798
- msgid "Fullscreen Button"
2799
- msgstr ""
2800
-
2801
- #: ../modules/slideshow/slideshow.php:512
2802
- msgid "Photo Count"
2803
- msgstr ""
2804
-
2805
- #: ../modules/slideshow/slideshow.php:521
2806
- msgid "Thumbs Button"
2807
- msgstr ""
2808
-
2809
- #: ../modules/slideshow/slideshow.php:530
2810
- msgid "Caption Button"
2811
- msgstr ""
2812
-
2813
- #: ../modules/slideshow/slideshow.php:539
2814
- msgid "Social Button"
2815
- msgstr ""
2816
-
2817
- #: ../modules/slideshow/slideshow.php:549
2818
- msgid "Control Bar Overlay"
2819
- msgstr ""
2820
-
2821
- #: ../modules/slideshow/slideshow.php:553
2822
- msgid "Overlay Enabled"
2823
- msgstr ""
2824
-
2825
- #: ../modules/slideshow/slideshow.php:564
2826
- msgid ""
2827
- "Control bar overlay specifies if the control bar buttons you choose overlay "
2828
- "your slideshow images or site below the slideshow completely."
2829
- msgstr ""
2830
-
2831
- #: ../modules/slideshow/slideshow.php:568
2832
- msgid "Overlay Hide"
2833
- msgstr ""
2834
-
2835
- #: ../modules/slideshow/slideshow.php:574
2836
- msgid ""
2837
- "Overlay hide will hide the control bar after however many seconds you "
2838
- "specify below. They will reappear upon mouse over."
2839
- msgstr ""
2840
-
2841
- #: ../modules/slideshow/slideshow.php:578
2842
- msgid "Overlay Hide Delay"
2843
- msgstr ""
2844
-
2845
- #: ../modules/slideshow/slideshow.php:590
2846
- msgid "Thumbs Size"
2847
- msgstr ""
2848
-
2849
- #: ../modules/slideshow/slideshow.php:599
2850
- msgid "Social"
2851
- msgstr ""
2852
-
2853
- #: ../modules/slideshow/slideshow.php:603
2854
- msgid "Facebook Button"
2855
- msgstr ""
2856
-
2857
- #: ../modules/slideshow/slideshow.php:615
2858
- msgid "Twitter Button"
2859
- msgstr ""
2860
-
2861
- #: ../modules/slideshow/slideshow.php:627
2862
- msgid "Google Plus Button"
2863
- msgstr ""
2864
-
2865
- #: ../modules/slideshow/slideshow.php:639
2866
- msgid "Pinterest Button"
2867
- msgstr ""
2868
-
2869
- #: ../modules/social-buttons/social-buttons.php:14
2870
- msgid "Social Buttons"
2871
- msgstr ""
2872
-
2873
- #: ../modules/social-buttons/social-buttons.php:15
2874
- msgid "Displays social buttons."
2875
- msgstr ""
2876
-
2877
- #: ../modules/social-buttons/social-buttons.php:71
2878
- msgid "Target URL"
2879
- msgstr ""
2880
-
2881
- #: ../modules/social-buttons/social-buttons.php:75
2882
- msgid "Current Page"
2883
- msgstr ""
2884
-
2885
- #: ../modules/social-buttons/social-buttons.php:82
2886
- msgid ""
2887
- "The Target URL field correlates to the page you would like your social icons "
2888
- "to interface with. For example, if you show Facebook, the user will \"Like\" "
2889
- "whatever you put in this field."
2890
- msgstr ""
2891
-
2892
- #: ../modules/social-buttons/social-buttons.php:89
2893
- msgid "Custom URL"
2894
- msgstr ""
2895
-
2896
- #: ../modules/social-buttons/social-buttons.php:107
2897
- msgid "Show Facebook"
2898
- msgstr ""
2899
-
2900
- #: ../modules/social-buttons/social-buttons.php:116
2901
- msgid "Show Twitter"
2902
- msgstr ""
2903
-
2904
- #: ../modules/social-buttons/social-buttons.php:125
2905
- msgid "Show Google+"
2906
- msgstr ""
2907
-
2908
- #: ../modules/tabs/tabs.php:14
2909
- msgid "Tabs"
2910
- msgstr ""
2911
-
2912
- #: ../modules/tabs/tabs.php:15
2913
- msgid "Display a collection of tabbed content."
2914
- msgstr ""
2915
-
2916
- #: ../modules/testimonials/testimonials.php:14
2917
- #: ../modules/testimonials/testimonials.php:174
2918
- msgid "Testimonials"
2919
- msgstr ""
2920
-
2921
- #: ../modules/testimonials/testimonials.php:15
2922
- msgid "An animated tesimonials area."
2923
- msgstr ""
2924
-
2925
- #: ../modules/testimonials/testimonials.php:41
2926
- msgid "Compact"
2927
- msgstr ""
2928
-
2929
- #: ../modules/testimonials/testimonials.php:51
2930
- msgid "Wide is for 1 column rows, compact is for multi-column rows."
2931
- msgstr ""
2932
-
2933
- #: ../modules/testimonials/testimonials.php:78
2934
- msgid "Slider Settings"
2935
- msgstr ""
2936
-
2937
- #: ../modules/testimonials/testimonials.php:135
2938
- msgid "Arrow Color"
2939
- msgstr ""
2940
-
2941
- #: ../modules/testimonials/testimonials.php:165
2942
- msgid "Dot Color"
2943
- msgstr ""
2944
-
2945
- #: ../modules/testimonials/testimonials.php:181
2946
- msgid "Testimonial"
2947
- msgstr ""
2948
-
2949
- #: ../modules/testimonials/testimonials.php:197
2950
- msgid "Add Testimonial"
2951
- msgstr ""
2952
-
2953
- #: ../modules/video/video.php:20
2954
- msgid "Render a WordPress or embedable video."
2955
- msgstr ""
2956
-
2957
- #: ../modules/video/video.php:83
2958
- msgid "Video Type"
2959
- msgstr ""
2960
-
2961
- #: ../modules/video/video.php:87
2962
- msgid "Embed"
2963
- msgstr ""
2964
-
2965
- #: ../modules/video/video.php:120
2966
- msgid "Loop"
2967
- msgstr ""
2968
-
2969
- #: ../modules/widget/includes/frontend.php:35
2970
- #: ../modules/widget/includes/settings-general.php:44
2971
- msgid " no longer exists."
2972
- msgstr ""
2973
-
2974
- #: ../modules/widget/widget.php:14
2975
- msgid "Widget"
2976
- msgstr ""
2977
-
2978
- #: ../modules/widget/widget.php:15
2979
- msgid "Display a WordPress widget."
2980
- msgstr ""
2981
-
2982
- #: ../modules/woocommerce/woocommerce.php:16
2983
- msgid "WooCommerce"
2984
- msgstr ""
2985
-
2986
- #: ../modules/woocommerce/woocommerce.php:17
2987
- msgid "Display products or categories from your WooCommerce store."
2988
- msgstr ""
2989
-
2990
- #: ../modules/woocommerce/woocommerce.php:60
2991
- msgid "Choose..."
2992
- msgstr ""
2993
-
2994
- #: ../modules/woocommerce/woocommerce.php:61
2995
- msgid "Single Product"
2996
- msgstr ""
2997
-
2998
- #: ../modules/woocommerce/woocommerce.php:62
2999
- #: ../modules/woocommerce/woocommerce.php:113
3000
- msgid "Multiple Products"
3001
- msgstr ""
3002
-
3003
- #: ../modules/woocommerce/woocommerce.php:63
3004
- msgid "Add to Cart Button"
3005
- msgstr ""
3006
-
3007
- #: ../modules/woocommerce/woocommerce.php:64
3008
- msgid "Categories"
3009
- msgstr ""
3010
-
3011
- #: ../modules/woocommerce/woocommerce.php:65
3012
- msgid "Cart"
3013
- msgstr ""
3014
-
3015
- #: ../modules/woocommerce/woocommerce.php:66
3016
- msgid "Checkout"
3017
- msgstr ""
3018
-
3019
- #: ../modules/woocommerce/woocommerce.php:67
3020
- msgid "Order Tracking"
3021
- msgstr ""
3022
-
3023
- #: ../modules/woocommerce/woocommerce.php:68
3024
- msgid "My Account"
3025
- msgstr ""
3026
-
3027
- #: ../modules/woocommerce/woocommerce.php:87
3028
- msgid "Product ID"
3029
- msgstr ""
3030
-
3031
- #: ../modules/woocommerce/woocommerce.php:90
3032
- msgid ""
3033
- "As you add products in the WooCommerce Products area, each will be assigned "
3034
- "a unique ID. You can find this unique product ID by visiting the Products "
3035
- "area and rolling over the product. The unique ID will be the first attribute."
3036
- msgstr ""
3037
-
3038
- #: ../modules/woocommerce/woocommerce.php:94
3039
- msgid "Parent Category ID"
3040
- msgstr ""
3041
-
3042
- #: ../modules/woocommerce/woocommerce.php:97
3043
- msgid ""
3044
- "As you add product categories in the WooCommerce Products area, each will be "
3045
- "assigned a unique ID. This ID can be found by hovering on the category in "
3046
- "the categories area under Products and looking in the URL that is displayed "
3047
- "in your browser. The ID will be the only number value in the URL."
3048
- msgstr ""
3049
-
3050
- #: ../modules/woocommerce/woocommerce.php:101
3051
- #: ../modules/woocommerce/woocommerce.php:172
3052
- msgid "Columns"
3053
- msgstr ""
3054
-
3055
- #: ../modules/woocommerce/woocommerce.php:104
3056
- #: ../modules/woocommerce/woocommerce.php:175
3057
- msgid "1"
3058
- msgstr ""
3059
-
3060
- #: ../modules/woocommerce/woocommerce.php:105
3061
- #: ../modules/woocommerce/woocommerce.php:176
3062
- msgid "2"
3063
- msgstr ""
3064
-
3065
- #: ../modules/woocommerce/woocommerce.php:106
3066
- #: ../modules/woocommerce/woocommerce.php:177
3067
- msgid "3"
3068
- msgstr ""
3069
-
3070
- #: ../modules/woocommerce/woocommerce.php:107
3071
- #: ../modules/woocommerce/woocommerce.php:178
3072
- msgid "4"
3073
- msgstr ""
3074
-
3075
- #: ../modules/woocommerce/woocommerce.php:117
3076
- msgid "Products Source"
3077
- msgstr ""
3078
-
3079
- #: ../modules/woocommerce/woocommerce.php:120
3080
- msgid "Products IDs"
3081
- msgstr ""
3082
-
3083
- #: ../modules/woocommerce/woocommerce.php:121
3084
- msgid "Product Category"
3085
- msgstr ""
3086
-
3087
- #: ../modules/woocommerce/woocommerce.php:122
3088
- msgid "Recent Products"
3089
- msgstr ""
3090
-
3091
- #: ../modules/woocommerce/woocommerce.php:123
3092
- msgid "Featured Products"
3093
- msgstr ""
3094
-
3095
- #: ../modules/woocommerce/woocommerce.php:124
3096
- msgid "Sale Products"
3097
- msgstr ""
3098
-
3099
- #: ../modules/woocommerce/woocommerce.php:125
3100
- msgid "Best Selling Products"
3101
- msgstr ""
3102
-
3103
- #: ../modules/woocommerce/woocommerce.php:126
3104
- msgid "Top Rated Products"
3105
- msgstr ""
3106
-
3107
- #: ../modules/woocommerce/woocommerce.php:154
3108
- msgid "Product IDs"
3109
- msgstr ""
3110
-
3111
- #: ../modules/woocommerce/woocommerce.php:156
3112
- msgid ""
3113
- "As you add products in the WooCommerce Products area, each will be assigned "
3114
- "a unique ID. You can find this unique product ID by visiting the Products "
3115
- "area and rolling over the product. The unique ID will be the first attribute "
3116
- "and you can add several here separated by a comma."
3117
- msgstr ""
3118
-
3119
- #: ../modules/woocommerce/woocommerce.php:160
3120
- msgid "Category Slug"
3121
- msgstr ""
3122
-
3123
- #: ../modules/woocommerce/woocommerce.php:162
3124
- msgid ""
3125
- "As you add product categories in the WooCommerce Products area, each will be "
3126
- "assigned a unique slug or you can edit and add your own. These slugs can be "
3127
- "found in the Categories area under WooCommerce Products. Several can be "
3128
- "added here separated by a comma."
3129
- msgstr ""
3130
-
3131
- #: ../modules/woocommerce/woocommerce.php:166
3132
- msgid "Number of Products"
3133
- msgstr ""
3134
-
3135
- #: ../modules/woocommerce/woocommerce.php:183
3136
- msgid "Sort By"
3137
- msgstr ""
3138
-
3139
- #: ../modules/woocommerce/woocommerce.php:187
3140
- msgid "Popularity"
3141
- msgstr ""
3142
-
3143
- #: ../modules/woocommerce/woocommerce.php:188
3144
- msgid "Rating"
3145
- msgstr ""
3146
-
3147
- #: ../modules/woocommerce/woocommerce.php:190
3148
- msgid "Price: Low to High"
3149
- msgstr ""
3150
-
3151
- #: ../modules/woocommerce/woocommerce.php:191
3152
- msgid "Price: High to Low"
3153
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/readme.md ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WARNING! Do not place your translation files here.
2
+
3
+ Any translation files placed here will be deleted when you update the plugin.
4
+
5
+ ## Translating the plugin
6
+
7
+ 1. Make a copy of the original `xx_XX.pot` file.
8
+ 2. You need to rename the coppied file now. The naming convention is based on the language code (e.g. "pt" for Portuguese) followed with underscore and the country code (e.g. "BR" for Brazil). So, the Brazilian Portuguese file would be named as `pt_BR.po`.
9
+ 3. Use [Poedit](http://www.poedit.net/) to translate the file and export (save) it as `MO` translation file format.
10
+ 4. Upload translated `pt_BR.mo` file into your WordPress language directory, such as `/wp-content/languages/plugins/beaver-builder/pt_BR.mo`.
11
+
12
+ ## Contributing your translations back to the plugin
13
+
14
+ If you would like to help out translating the plugin, please contact us at [https://www.wpbeaverbuilder.com/].
languages/sk_SK.mo ADDED
Binary file
languages/sk_SK.po ADDED
@@ -0,0 +1,3558 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "POT-Creation-Date: 2015-01-26 09:21-0800\n"
5
+ "PO-Revision-Date: 2015-01-26 18:35+0100\n"
6
+ "Last-Translator: WebMan - Oliver Juhas <webmandesigneu@gmail.com>\n"
7
+ "Language-Team: WebMan Design <webmandesigneu@gmail.com>\n"
8
+ "Language: sk_SK\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/class-fl-builder-admin.php:39
22
+ #, php-format
23
+ msgid ""
24
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
25
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
26
+ "of this plugin."
27
+ msgstr ""
28
+ "Táto verzia modulu <strong>Editora stránok</strong> nie je kompatibilná so "
29
+ "sieťovou inštaláciou WordPress (Multisite). <a%s>Aktualizujte modul</a> na "
30
+ "jeho sieťovú verziu."
31
+
32
+ #: classes/class-fl-builder-admin.php:49
33
+ msgid ""
34
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
35
+ "greater. Please update WordPress before activating the plugin."
36
+ msgstr ""
37
+ "Modul <strong>Editora stránok</strong> vyžaduje WordPress aspoň vo verzii "
38
+ "3.5. Aktualizujte WordPress pred aktiváciou modulu."
39
+
40
+ #: classes/class-fl-builder-admin.php:90
41
+ #, php-format
42
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
43
+ msgstr ""
44
+ "Editor stránok bol aktivovaný! <a%s>Zapnite automatické aktualizácie.</a>"
45
+
46
+ #: classes/class-fl-builder-admin.php:184
47
+ msgctxt "Plugin action link label."
48
+ msgid "Upgrade"
49
+ msgstr "Aktualizovať"
50
+
51
+ #: classes/class-fl-builder-admin.php:197
52
+ #: classes/class-fl-builder-model.php:2435
53
+ msgid "Page Builder"
54
+ msgstr "Editor stránok"
55
+
56
+ #: classes/class-fl-builder-model.php:1852
57
+ #, php-format
58
+ msgctxt "%s stands for post/page title."
59
+ msgid "Copy of %s"
60
+ msgstr "Kópia %s"
61
+
62
+ #: classes/class-fl-builder-photo.php:75
63
+ msgctxt "Image size."
64
+ msgid "Full Size"
65
+ msgstr "Pôvodná veľkosť"
66
+
67
+ #: classes/class-fl-builder-photo.php:76
68
+ msgctxt "Image size."
69
+ msgid "Large"
70
+ msgstr "Veľký"
71
+
72
+ #: classes/class-fl-builder-photo.php:77
73
+ msgctxt "Image size."
74
+ msgid "Medium"
75
+ msgstr "Stredný"
76
+
77
+ #: classes/class-fl-builder-photo.php:78
78
+ msgctxt "Image size."
79
+ msgid "Thumbnail"
80
+ msgstr "Miniatúra"
81
+
82
+ #: classes/class-fl-builder-templates.php:28
83
+ msgid "Page Builder Templates"
84
+ msgstr "Šablóny Editora stránok"
85
+
86
+ #: classes/class-fl-builder.php:699
87
+ #, php-format
88
+ msgctxt "Field name to add."
89
+ msgid "Add %s"
90
+ msgstr "%s &rarr; pridať"
91
+
92
+ #: classes/class-fl-builder.php:762 classes/class-fl-builder.php:764
93
+ msgctxt "Custom post type label."
94
+ msgid "Layout Templates"
95
+ msgstr "Šablóny rozloženia"
96
+
97
+ #: classes/class-fl-builder.php:763 classes/class-fl-builder.php:765
98
+ msgctxt "Custom post type label."
99
+ msgid "Layout Template"
100
+ msgstr "Šablóna rozloženia"
101
+
102
+ #: classes/class-fl-builder.php:766
103
+ msgctxt "Custom post type label."
104
+ msgid "Add New"
105
+ msgstr "Pridať novú"
106
+
107
+ #: classes/class-fl-builder.php:767
108
+ msgctxt "Custom post type label."
109
+ msgid "Add New Layout Template"
110
+ msgstr "Pridať novú šablónu rozloženia"
111
+
112
+ #: classes/class-fl-builder.php:768
113
+ msgctxt "Custom post type label."
114
+ msgid "New Layout Template"
115
+ msgstr "Nová šablóna rozloženia"
116
+
117
+ #: classes/class-fl-builder.php:769
118
+ msgctxt "Custom post type label."
119
+ msgid "Edit Layout Template"
120
+ msgstr "Upraviť šablónu rozloženia"
121
+
122
+ #: classes/class-fl-builder.php:770
123
+ msgctxt "Custom post type label."
124
+ msgid "View Layout Template"
125
+ msgstr "Zobraziť šablónu rozloženia"
126
+
127
+ #: classes/class-fl-builder.php:771
128
+ msgctxt "Custom post type label."
129
+ msgid "All Layout Templates"
130
+ msgstr "Všetky šablóny rozloženia"
131
+
132
+ #: classes/class-fl-builder.php:772
133
+ msgctxt "Custom post type label."
134
+ msgid "Search Layout Templates"
135
+ msgstr "Hľadať šablóny rozloženia"
136
+
137
+ #: classes/class-fl-builder.php:773
138
+ msgctxt "Custom post type label."
139
+ msgid "Parent Layout Templates:"
140
+ msgstr "Nadradené šablóny rozloženia:"
141
+
142
+ #: classes/class-fl-builder.php:774
143
+ msgctxt "Custom post type label."
144
+ msgid "No layout templates found."
145
+ msgstr "Nenašli sa žiadne šablóny rozloženia."
146
+
147
+ #: classes/class-fl-builder.php:775
148
+ msgctxt "Custom post type label."
149
+ msgid "No layout templates found in Trash."
150
+ msgstr "V koši sa nenašli žiadne šablóny rozloženia."
151
+
152
+ #: classes/class-fl-builder.php:1113 includes/js-config.php:58
153
+ #, php-format
154
+ msgctxt "%s stands for module name."
155
+ msgid "%s Settings"
156
+ msgstr "%s &rarr; Nastavenia"
157
+
158
+ #: includes/admin-branding.php:3 includes/admin-settings.php:36
159
+ #: includes/multisite-settings.php:23
160
+ msgid "Branding"
161
+ msgstr "Značka"
162
+
163
+ #: includes/admin-branding.php:11
164
+ msgid "White label the page builder by entering a custom name below."
165
+ msgstr "Zmeňte značku editora stránok zadaním vlastného mena, názvu editora."
166
+
167
+ #: includes/admin-branding.php:14
168
+ msgid ""
169
+ "Additionally, you may also add a custom icon by entering the URL of an image "
170
+ "below. Leave the field blank if you do not wish to use an icon."
171
+ msgstr ""
172
+ "Dodatočne môžete pridať aj vlastnú ikonku zadaním URL adresy obrázku. Ak "
173
+ "ikonku nechcete použiť, ponechajte pole prázdne."
174
+
175
+ #: includes/admin-branding.php:18
176
+ msgid "Save Branding"
177
+ msgstr "Uložiť nastavenie značky"
178
+
179
+ #: includes/admin-edit-template.php:3
180
+ msgid "Edit Template"
181
+ msgstr "Upraviť šablónu"
182
+
183
+ #: includes/admin-edit-template.php:8
184
+ msgctxt "Template edit form field label. Template name."
185
+ msgid "Name"
186
+ msgstr "Názov"
187
+
188
+ #: includes/admin-edit-template.php:12 modules/callout/callout.php:303
189
+ #: modules/post-grid/post-grid.php:113
190
+ msgid "Image"
191
+ msgstr "Obrázok"
192
+
193
+ #: includes/admin-edit-template.php:16 includes/row-settings.php:155
194
+ #: includes/template-settings.php:23 modules/callout/callout.php:351
195
+ #: modules/callout/callout.php:371
196
+ #: modules/content-slider/content-slider.php:466
197
+ #: modules/post-grid/post-grid.php:127
198
+ msgid "Position"
199
+ msgstr "Pozícia"
200
+
201
+ #: includes/admin-edit-template.php:20 includes/template-settings.php:28
202
+ msgctxt "Template edit form field label. Is template premium one?"
203
+ msgid "Premium"
204
+ msgstr "Prémiová"
205
+
206
+ #: includes/admin-edit-template.php:23 includes/admin-templates.php:30
207
+ #: includes/global-settings.php:18 includes/global-settings.php:87
208
+ #: includes/row-settings.php:307 includes/template-settings.php:31
209
+ #: modules/accordion/accordion.php:90 modules/button/button.php:135
210
+ #: modules/callout/callout.php:418 modules/callout/callout.php:539
211
+ #: modules/content-slider/content-slider.php:203
212
+ #: modules/content-slider/content-slider.php:217
213
+ #: modules/content-slider/content-slider.php:251
214
+ #: modules/content-slider/content-slider.php:260
215
+ #: modules/content-slider/content-slider.php:531
216
+ #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
217
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
218
+ #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
219
+ #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
220
+ #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
221
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
222
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
223
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
224
+ #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
225
+ #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
226
+ #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
227
+ #: modules/social-buttons/social-buttons.php:111
228
+ #: modules/social-buttons/social-buttons.php:120
229
+ #: modules/social-buttons/social-buttons.php:129
230
+ #: modules/testimonials/testimonials.php:85
231
+ #: modules/testimonials/testimonials.php:124
232
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
233
+ #: modules/video/video.php:123
234
+ msgid "No"
235
+ msgstr "Nie"
236
+
237
+ #: includes/admin-edit-template.php:24 includes/admin-templates.php:30
238
+ #: includes/global-settings.php:19 includes/global-settings.php:88
239
+ #: includes/row-settings.php:308 includes/template-settings.php:32
240
+ #: modules/accordion/accordion.php:89 modules/button/button.php:136
241
+ #: modules/callout/callout.php:419 modules/callout/callout.php:540
242
+ #: modules/content-slider/content-slider.php:204
243
+ #: modules/content-slider/content-slider.php:218
244
+ #: modules/content-slider/content-slider.php:252
245
+ #: modules/content-slider/content-slider.php:261
246
+ #: modules/content-slider/content-slider.php:532
247
+ #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
248
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
249
+ #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
250
+ #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
251
+ #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
252
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
253
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
254
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
255
+ #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
256
+ #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
257
+ #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
258
+ #: modules/social-buttons/social-buttons.php:110
259
+ #: modules/social-buttons/social-buttons.php:119
260
+ #: modules/social-buttons/social-buttons.php:128
261
+ #: modules/testimonials/testimonials.php:86
262
+ #: modules/testimonials/testimonials.php:125
263
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
264
+ #: modules/video/video.php:124
265
+ msgid "Yes"
266
+ msgstr "Áno"
267
+
268
+ #: includes/admin-edit-template.php:29 includes/template-settings.php:37
269
+ msgid "Category"
270
+ msgstr "Kategória"
271
+
272
+ #: includes/admin-edit-template.php:32 includes/template-settings.php:40
273
+ msgctxt "Templates category label."
274
+ msgid "Landing Pages"
275
+ msgstr "Vstupné stránky"
276
+
277
+ #: includes/admin-edit-template.php:33 includes/template-settings.php:41
278
+ msgctxt "Templates category label."
279
+ msgid "Company Info"
280
+ msgstr "Informačné"
281
+
282
+ #: includes/admin-edit-template.php:40
283
+ msgid "Update Template"
284
+ msgstr "Aktualizovať šablónu"
285
+
286
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
287
+ msgid "Text Editor"
288
+ msgstr "Textový editor"
289
+
290
+ #: includes/admin-posts.php:7
291
+ #, php-format
292
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
293
+ msgid "%s is currently active for this page."
294
+ msgstr "Na tejto stránke sa používa %s."
295
+
296
+ #: includes/admin-posts.php:8
297
+ #, php-format
298
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
299
+ msgid "Launch %s"
300
+ msgstr "Spustiť %s"
301
+
302
+ #: includes/admin-settings.php:7 includes/global-settings.php:4
303
+ #: includes/multisite-settings.php:7
304
+ #, php-format
305
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
306
+ msgid "%s Settings"
307
+ msgstr "Nastavenia pre %s"
308
+
309
+ #: includes/admin-settings.php:12 includes/multisite-settings.php:12
310
+ msgid "Settings updated!"
311
+ msgstr "Nastavenia boli aktualizované!"
312
+
313
+ #: includes/admin-settings.php:19 includes/multisite-settings.php:18
314
+ msgid "License"
315
+ msgstr "Licencia"
316
+
317
+ #: includes/admin-settings.php:23 includes/admin-settings.php:59
318
+ msgid "Upgrade"
319
+ msgstr "Aktualizácia"
320
+
321
+ #: includes/admin-settings.php:26 includes/global-settings.php:67
322
+ #: includes/multisite-settings.php:19
323
+ msgid "Modules"
324
+ msgstr "Moduly"
325
+
326
+ #: includes/admin-settings.php:29 includes/multisite-settings.php:20
327
+ #: includes/ui.php:44
328
+ msgid "Templates"
329
+ msgstr "Šablóny"
330
+
331
+ #: includes/admin-settings.php:32 includes/admin-settings.php:163
332
+ #: includes/multisite-settings.php:21 includes/multisite-settings.php:112
333
+ msgid "Post Types"
334
+ msgstr "Typy obsahu"
335
+
336
+ #: includes/admin-settings.php:33 includes/multisite-settings.php:22
337
+ msgid "Editing"
338
+ msgstr "Editácia"
339
+
340
+ #: includes/admin-settings.php:40 includes/admin-settings.php:250
341
+ #: includes/admin-settings.php:262 includes/multisite-settings.php:24
342
+ #: includes/multisite-settings.php:172 includes/multisite-settings.php:184
343
+ msgid "Uninstall"
344
+ msgstr "Odinštalovať"
345
+
346
+ #: includes/admin-settings.php:61
347
+ msgid ""
348
+ "You are currently running the lite version of the Beaver Builder plugin. "
349
+ "Upgrade today for access to premium features such as advanced modules, "
350
+ "templates, support and more!"
351
+ msgstr ""
352
+ "Používate odľahčenú (Lite) verziu modulu Beaver Builder. Aktualizujte na Pro "
353
+ "verziu pre získanie pokročilých modulov, šablón, technickej podpory a iných "
354
+ "prémiových vylepšení!"
355
+
356
+ #: includes/admin-settings.php:63
357
+ msgid "Upgrade Now"
358
+ msgstr "Aktualizovať"
359
+
360
+ #: includes/admin-settings.php:65
361
+ msgid "Learn More"
362
+ msgstr "Dozvedieť sa viac"
363
+
364
+ #: includes/admin-settings.php:74 includes/multisite-settings.php:39
365
+ msgid "Enabled Modules"
366
+ msgstr "Aktivované moduly"
367
+
368
+ #: includes/admin-settings.php:81 includes/admin-settings.php:132
369
+ #: includes/admin-settings.php:170 includes/admin-settings.php:222
370
+ msgid "Override network settings?"
371
+ msgstr "Ignorovať sieťové nastavenia?"
372
+
373
+ #: includes/admin-settings.php:87 includes/multisite-settings.php:45
374
+ msgid "Check or uncheck modules below to enable or disable them."
375
+ msgstr ""
376
+ "Zaškrtnite alebo odškrtnite doleuvedené moduly pre ich aktiváciu alebo "
377
+ "deaktiváciu."
378
+
379
+ #: includes/admin-settings.php:96 includes/multisite-settings.php:54
380
+ msgctxt "Plugin setup page: Modules."
381
+ msgid "All"
382
+ msgstr "Všetky"
383
+
384
+ #: includes/admin-settings.php:114 includes/multisite-settings.php:72
385
+ msgid "Save Module Settings"
386
+ msgstr "Uložiť nastavenia modulov"
387
+
388
+ #: includes/admin-settings.php:125 includes/multisite-settings.php:82
389
+ #: includes/template-settings.php:4
390
+ msgid "Template Settings"
391
+ msgstr "Nastavenia šablón"
392
+
393
+ #: includes/admin-settings.php:138 includes/multisite-settings.php:88
394
+ msgid "Enable or disable templates using the options below."
395
+ msgstr "Aktivujte alebo deaktivujte šablóny pomocou doleuvedených možností."
396
+
397
+ #: includes/admin-settings.php:145 includes/multisite-settings.php:95
398
+ msgid "Enable All Templates"
399
+ msgstr "Sprístupniť všetky šablóny"
400
+
401
+ #: includes/admin-settings.php:146 includes/multisite-settings.php:96
402
+ msgid "Enable Core Templates Only"
403
+ msgstr "Sprístupniť iba základné šablóny"
404
+
405
+ #: includes/admin-settings.php:147 includes/multisite-settings.php:97
406
+ msgid "Enable User Templates Only"
407
+ msgstr "Sprístupniť iba užívateľské šablóny"
408
+
409
+ #: includes/admin-settings.php:148 includes/multisite-settings.php:98
410
+ msgid "Disable All Templates"
411
+ msgstr "Zakázať všetky šablóny"
412
+
413
+ #: includes/admin-settings.php:152 includes/multisite-settings.php:102
414
+ msgid "Save Template Settings"
415
+ msgstr "Uložiť nastavenia šablón"
416
+
417
+ #: includes/admin-settings.php:176
418
+ msgid "Select the post types you would like the builder to work with."
419
+ msgstr ""
420
+ "Zvoľte typy obsahu (článkov), s ktorými chcete editor stránok používať."
421
+
422
+ #: includes/admin-settings.php:177 includes/multisite-settings.php:117
423
+ msgid "NOTE: Not all custom post types may be supported."
424
+ msgstr "UPOZORNENIE: Nie všetky vlastné typy článkov môžu byť podporované."
425
+
426
+ #: includes/admin-settings.php:205 includes/multisite-settings.php:135
427
+ msgid "Save Post Types"
428
+ msgstr "Uložiť typy obsahu"
429
+
430
+ #: includes/admin-settings.php:215 includes/multisite-settings.php:145
431
+ msgid "Editing Settings"
432
+ msgstr "Nastavenia editácie"
433
+
434
+ #: includes/admin-settings.php:228 includes/multisite-settings.php:150
435
+ #, php-format
436
+ msgid ""
437
+ "Set the <a%s>capability</a> required for users to access advanced builder "
438
+ "editing such as adding, deleting or moving modules."
439
+ msgstr ""
440
+ "Nastavte <a%s>oprávnenia</a> vyžadované k pokročilej editácii stránok, ako "
441
+ "je pridávanie, odstraňovanie alebo presun modulov."
442
+
443
+ #: includes/admin-settings.php:234 includes/multisite-settings.php:156
444
+ msgid "Save Editing Settings"
445
+ msgstr "Uložiť nastavenia editácie"
446
+
447
+ #: includes/admin-settings.php:252 includes/multisite-settings.php:174
448
+ msgid ""
449
+ "Clicking the button below will uninstall the page builder plugin and delete "
450
+ "all of the data associated with it. You can uninstall or deactivate the page "
451
+ "builder from the plugins page instead if you do not wish to delete the data."
452
+ msgstr ""
453
+ "Kliknutím na tlačidlo odinštalujete modul editora stránok a odstránite "
454
+ "všetky dáta s ním asociované. Editor stránok môžete odinštalovať alebo "
455
+ "deaktivovať aj v sekcii modulov, ak si neprajete odstrániť dáta."
456
+
457
+ #: includes/admin-settings.php:254 includes/admin-settings.php:257
458
+ #: includes/multisite-settings.php:176 includes/multisite-settings.php:179
459
+ #: includes/updater/includes/form.php:31
460
+ msgid "NOTE:"
461
+ msgstr "UPOZORNENIE:"
462
+
463
+ #: includes/admin-settings.php:254 includes/multisite-settings.php:176
464
+ msgid ""
465
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
466
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
467
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
468
+ "its data using those meta values."
469
+ msgstr ""
470
+ "Nebudú odstránené <code>_fl_builder_data</code>, <code>_fl_builder_draft</"
471
+ "code> a <code>_fl_builder_enabled</code> meta dáta článov pre prípad, že sa "
472
+ "rozhodnete znovu Editor stránok nainštalovať. V takom prípade sa dáta "
473
+ "použijú na obnovenie rozloženia stránok."
474
+
475
+ #: includes/admin-settings.php:257 includes/multisite-settings.php:179
476
+ #: includes/updater/includes/form.php:31
477
+ msgid "This applies to all sites on the network."
478
+ msgstr "Toto nastavenie sa aplikuje na všetky stránky v sieti."
479
+
480
+ #: includes/admin-settings.php:276 includes/multisite-settings.php:198
481
+ msgid ""
482
+ "Please type \"uninstall\" in the box below to confirm that you really want "
483
+ "to uninstall the page builder and all of its data."
484
+ msgstr ""
485
+ "Zadajte \"uninstall\" pre potvrdenie odinštalovania editora stránok a "
486
+ "odstránenia všetkých jeho dát."
487
+
488
+ #: includes/admin-templates.php:3
489
+ msgid "Page Builder Template"
490
+ msgstr "Šablóna Editora stránok"
491
+
492
+ #: includes/admin-templates.php:10
493
+ msgctxt "Templates list column label."
494
+ msgid "Name"
495
+ msgstr "Názov"
496
+
497
+ #: includes/admin-templates.php:11
498
+ msgctxt "Templates list column label."
499
+ msgid "Category"
500
+ msgstr "Kategória"
501
+
502
+ #: includes/admin-templates.php:12
503
+ msgctxt "Templates list column label. Is template premium one?"
504
+ msgid "Premium"
505
+ msgstr "Prémiová"
506
+
507
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
508
+ #: includes/template-selector.php:83
509
+ msgid "Edit"
510
+ msgstr "Upraviť"
511
+
512
+ #: includes/admin-templates.php:27 includes/template-selector.php:84
513
+ msgid "Delete"
514
+ msgstr "Odstrániť"
515
+
516
+ #: includes/admin-templates.php:40 includes/js-config.php:26
517
+ msgid "Do you really want to delete this template?"
518
+ msgstr "Naozaj chcete túto šablónu vymazať?"
519
+
520
+ #: includes/column-settings.php:4 includes/js-config.php:21
521
+ msgid "Column Settings"
522
+ msgstr "Nastavenia stĺpca"
523
+
524
+ #: includes/column-settings.php:7 includes/module-settings.php:95
525
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
526
+ #: modules/button/button.php:95 modules/callout/callout.php:239
527
+ #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
528
+ #: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
529
+ #: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
530
+ #: modules/pricing-table/pricing-table.php:155
531
+ #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
532
+ msgid "Style"
533
+ msgstr "Štýl"
534
+
535
+ #: includes/column-settings.php:14
536
+ msgid "Column Width"
537
+ msgstr "Šírka stĺpca"
538
+
539
+ #: includes/column-settings.php:26 includes/row-settings.php:48
540
+ #: modules/button/button.php:53 modules/callout/callout.php:223
541
+ #: modules/callout/callout.php:476 modules/callout/callout.php:492
542
+ #: modules/content-slider/content-slider.php:376
543
+ #: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
544
+ #: modules/cta/cta.php:219
545
+ msgid "Text"
546
+ msgstr "Text"
547
+
548
+ #: includes/column-settings.php:30 includes/column-settings.php:43
549
+ #: includes/column-settings.php:100 includes/row-settings.php:52
550
+ #: includes/row-settings.php:109 includes/row-settings.php:379
551
+ #: modules/callout/callout.php:389
552
+ #: modules/content-slider/content-slider.php:331
553
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
554
+ #: modules/separator/separator.php:34
555
+ msgid "Color"
556
+ msgstr "Farba"
557
+
558
+ #: includes/column-settings.php:39 includes/row-settings.php:105
559
+ #: modules/button/button.php:102 modules/callout/callout.php:402
560
+ #: modules/callout/callout.php:506
561
+ #: modules/content-slider/content-slider.php:357
562
+ #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
563
+ #: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
564
+ #: modules/icon/icon.php:95
565
+ msgid "Background Color"
566
+ msgstr "Farba pozadia"
567
+
568
+ #: includes/column-settings.php:51 includes/column-settings.php:108
569
+ #: includes/row-settings.php:117 includes/row-settings.php:387
570
+ #: modules/separator/separator.php:44
571
+ msgid "Opacity"
572
+ msgstr "Nepriehľadnosť"
573
+
574
+ #: includes/column-settings.php:63 includes/row-settings.php:342
575
+ msgid "Border"
576
+ msgstr "Okraj"
577
+
578
+ #: includes/column-settings.php:67 includes/row-settings.php:65
579
+ #: includes/row-settings.php:346 modules/callout/callout.php:472
580
+ #: modules/content-slider/content-slider.php:325
581
+ #: modules/content-slider/content-slider.php:372
582
+ #: modules/content-slider/content-slider.php:590
583
+ #: modules/content-slider/content-slider.php:694
584
+ #: modules/slideshow/slideshow.php:339
585
+ msgid "Type"
586
+ msgstr "Typ"
587
+
588
+ #: includes/column-settings.php:69 includes/row-settings.php:348
589
+ msgid ""
590
+ "The type of border to use. Double borders must have a width of at least 3px "
591
+ "to render properly."
592
+ msgstr ""
593
+ "Typ použitého okraja. Dvojitý okraj musí mať šírku aspoň 3px aby sa zobrazil "
594
+ "správne."
595
+
596
+ #: includes/column-settings.php:71 includes/row-settings.php:350
597
+ msgctxt "Border type."
598
+ msgid "None"
599
+ msgstr "Žiaden"
600
+
601
+ #: includes/column-settings.php:72 includes/row-settings.php:351
602
+ #: modules/separator/separator.php:75
603
+ msgctxt "Border type."
604
+ msgid "Solid"
605
+ msgstr "Plný"
606
+
607
+ #: includes/column-settings.php:73 includes/row-settings.php:352
608
+ #: modules/separator/separator.php:76
609
+ msgctxt "Border type."
610
+ msgid "Dashed"
611
+ msgstr "Prerušovaný"
612
+
613
+ #: includes/column-settings.php:74 includes/row-settings.php:353
614
+ #: modules/separator/separator.php:77
615
+ msgctxt "Border type."
616
+ msgid "Dotted"
617
+ msgstr "Bodkovaný"
618
+
619
+ #: includes/column-settings.php:75 includes/row-settings.php:354
620
+ #: modules/separator/separator.php:78
621
+ msgctxt "Border type."
622
+ msgid "Double"
623
+ msgstr "Dvojitý"
624
+
625
+ #: includes/column-settings.php:119 includes/row-settings.php:398
626
+ msgid "Top Width"
627
+ msgstr "Šírka hore"
628
+
629
+ #: includes/column-settings.php:131 includes/row-settings.php:410
630
+ msgid "Bottom Width"
631
+ msgstr "Šírka dole"
632
+
633
+ #: includes/column-settings.php:143 includes/row-settings.php:422
634
+ msgid "Left Width"
635
+ msgstr "Šírka vľavo"
636
+
637
+ #: includes/column-settings.php:155 includes/row-settings.php:434
638
+ msgid "Right Width"
639
+ msgstr "Šírka vpravo"
640
+
641
+ #: includes/column-settings.php:170 includes/module-settings.php:6
642
+ #: includes/row-settings.php:449 modules/content-slider/content-slider.php:267
643
+ msgid "Advanced"
644
+ msgstr "Pokročilé"
645
+
646
+ #: includes/column-settings.php:177 includes/module-settings.php:13
647
+ #: includes/row-settings.php:456
648
+ msgid "CSS Class"
649
+ msgstr "Trieda CSS"
650
+
651
+ #: includes/column-settings.php:178
652
+ msgid ""
653
+ "A custom CSS class that will be applied to this column. Spaces only, no dots."
654
+ msgstr ""
655
+ "Vlastná trieda CSS aplikovaná na tento stĺpec. Povolené sú iba medzery, "
656
+ "žiadne bodky."
657
+
658
+ #: includes/column-settings.php:186 includes/global-settings.php:80
659
+ msgid "Responsive Layout"
660
+ msgstr "Responzívne rozloženie"
661
+
662
+ #: includes/column-settings.php:190 includes/module-settings.php:21
663
+ #: includes/row-settings.php:464 modules/slideshow/slideshow.php:290
664
+ msgid "Display"
665
+ msgstr "Zobrazenie"
666
+
667
+ #: includes/column-settings.php:192 includes/module-settings.php:23
668
+ #: includes/row-settings.php:466
669
+ msgid "Always"
670
+ msgstr "Vždy"
671
+
672
+ #: includes/column-settings.php:193 includes/module-settings.php:24
673
+ #: includes/row-settings.php:467
674
+ msgid "Large Devices Only"
675
+ msgstr "Iba na veľkých zariadeniach"
676
+
677
+ #: includes/column-settings.php:194 includes/module-settings.php:25
678
+ #: includes/row-settings.php:468
679
+ msgid "Large &amp; Medium Devices Only"
680
+ msgstr "Iba na veľkých a stredných zariadeniach"
681
+
682
+ #: includes/column-settings.php:195 includes/module-settings.php:26
683
+ #: includes/row-settings.php:469
684
+ msgid "Medium Devices Only"
685
+ msgstr "Iba na stredných zariadeniach"
686
+
687
+ #: includes/column-settings.php:196 includes/module-settings.php:27
688
+ #: includes/row-settings.php:470
689
+ msgid "Medium &amp; Small Devices Only"
690
+ msgstr "Iba na stredných a malých zariadeniach"
691
+
692
+ #: includes/column-settings.php:197 includes/module-settings.php:28
693
+ #: includes/row-settings.php:471
694
+ msgid "Small Devices Only"
695
+ msgstr "Iba na malých zariadeniach"
696
+
697
+ #: includes/column-settings.php:199
698
+ msgid "Choose whether to show or hide this column at different device sizes."
699
+ msgstr ""
700
+ "Zvoľte, či sa má tento stĺpec zobraziť na zariadeniach rôznych veľkostí."
701
+
702
+ #: includes/column-settings.php:206
703
+ msgid "Medium Device Width"
704
+ msgstr "Šírka pre stredne veľké zariadenia"
705
+
706
+ #: includes/column-settings.php:207
707
+ msgid "The width of this column on medium devices such as tablets."
708
+ msgstr "Šírka tohto stĺpca na stredne veľkých zariadeniach, ako sú tablety."
709
+
710
+ #: includes/column-settings.php:209 includes/column-settings.php:237
711
+ #: modules/callout/callout.php:281
712
+ #: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
713
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
714
+ #: modules/heading/heading.php:174
715
+ msgid "Default"
716
+ msgstr "Prednastavené"
717
+
718
+ #: includes/column-settings.php:210 includes/column-settings.php:238
719
+ #: modules/button/button.php:151 modules/callout/callout.php:282
720
+ #: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
721
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
722
+ #: modules/heading/heading.php:175
723
+ #: modules/social-buttons/social-buttons.php:74
724
+ msgid "Custom"
725
+ msgstr "Vlastné"
726
+
727
+ #: includes/column-settings.php:223
728
+ msgid "Custom Medium Device Width"
729
+ msgstr "Vlastná šírka na stredne veľkých zariadeniach"
730
+
731
+ #: includes/column-settings.php:234
732
+ msgid "Small Device Width"
733
+ msgstr "Šírka pre malé zariadenia"
734
+
735
+ #: includes/column-settings.php:235
736
+ msgid "The width of this column on small devices such as phones."
737
+ msgstr "Šírka tohto stĺpca na malých zariadeniach, ako sú telefóny."
738
+
739
+ #: includes/column-settings.php:251
740
+ msgid "Custom Small Device Width"
741
+ msgstr "Vlastná šírka na malých zariadeniach"
742
+
743
+ #: includes/column-settings.php:263 includes/global-settings.php:41
744
+ #: includes/global-settings.php:71 includes/module-settings.php:38
745
+ #: includes/row-settings.php:481
746
+ msgid "Margins"
747
+ msgstr "Odsadenie"
748
+
749
+ #: includes/column-settings.php:267 includes/column-settings.php:320
750
+ #: includes/module-settings.php:42 includes/row-settings.php:485
751
+ #: includes/row-settings.php:538 modules/slideshow/slideshow.php:475
752
+ msgid "Top"
753
+ msgstr "Hore"
754
+
755
+ #: includes/column-settings.php:279 includes/column-settings.php:332
756
+ #: includes/module-settings.php:54 includes/row-settings.php:497
757
+ #: includes/row-settings.php:550 modules/slideshow/slideshow.php:474
758
+ msgid "Bottom"
759
+ msgstr "Dole"
760
+
761
+ #: includes/column-settings.php:291 includes/column-settings.php:344
762
+ #: includes/module-settings.php:66 includes/row-settings.php:509
763
+ #: includes/row-settings.php:562 modules/button/button.php:177
764
+ #: modules/callout/callout.php:250
765
+ #: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
766
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
767
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
768
+ #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
769
+ msgid "Left"
770
+ msgstr "Vľavo"
771
+
772
+ #: includes/column-settings.php:303 includes/column-settings.php:356
773
+ #: includes/module-settings.php:78 includes/row-settings.php:521
774
+ #: includes/row-settings.php:574 modules/button/button.php:178
775
+ #: modules/callout/callout.php:251
776
+ #: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
777
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
778
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
779
+ #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
780
+ msgid "Right"
781
+ msgstr "Vpravo"
782
+
783
+ #: includes/column-settings.php:316 includes/global-settings.php:49
784
+ #: includes/row-settings.php:534 modules/button/button.php:191
785
+ #: modules/callout/callout.php:567
786
+ #: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
787
+ msgid "Padding"
788
+ msgstr "Vnútorné odsadenie"
789
+
790
+ #: includes/field-form.php:17
791
+ #, php-format
792
+ msgctxt "%s stands for form field label."
793
+ msgid "Edit %s"
794
+ msgstr "%s &rarr; upraviť"
795
+
796
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
797
+ msgid "Select Icon"
798
+ msgstr "Zvoliť ikonku"
799
+
800
+ #: includes/field-icon.php:5 includes/field-photo.php:13
801
+ msgid "Replace"
802
+ msgstr "Nahradiť"
803
+
804
+ #: includes/field-icon.php:7 includes/js-config.php:50
805
+ msgid "Remove"
806
+ msgstr "Odstrániť"
807
+
808
+ #: includes/field-link.php:3
809
+ msgid "Select"
810
+ msgstr "Zvoliť"
811
+
812
+ #: includes/field-link.php:5
813
+ msgid "Enter a post title to search."
814
+ msgstr "Zadajte názov hľadaného článku."
815
+
816
+ #: includes/field-link.php:6 includes/field-suggest.php:7
817
+ msgid "Start typing..."
818
+ msgstr "Začnite písať..."
819
+
820
+ #: includes/field-link.php:7 includes/icon-selector.php:27
821
+ #: includes/js-config.php:17 includes/settings.php:63
822
+ #: includes/template-selector.php:102 includes/ui.php:11
823
+ msgid "Cancel"
824
+ msgstr "Zrušiť"
825
+
826
+ #: includes/field-multiple-photos.php:8
827
+ #, php-format
828
+ msgid "1 Photo Selected"
829
+ msgid_plural "%d Photos Selected"
830
+ msgstr[0] "Zvolený 1 obrázok"
831
+ msgstr[1] "Zvolené %d obrázky"
832
+ msgstr[2] "Zvolených %d obrázkov"
833
+
834
+ #: includes/field-multiple-photos.php:13
835
+ msgid "Create Gallery"
836
+ msgstr "Vytvoriť galériu"
837
+
838
+ #: includes/field-multiple-photos.php:14
839
+ msgid "Edit Gallery"
840
+ msgstr "Upraviť galériu"
841
+
842
+ #: includes/field-multiple-photos.php:15
843
+ msgid "Add Photos"
844
+ msgstr "Pridať obrázky"
845
+
846
+ #: includes/field-photo.php:3 includes/js-config.php:55
847
+ msgid "Select Photo"
848
+ msgstr "Zvoliť obrázok"
849
+
850
+ #: includes/field-video.php:3 includes/js-config.php:57
851
+ msgid "Select Video"
852
+ msgstr "Zvoliť video"
853
+
854
+ #: includes/field-video.php:17
855
+ msgid "Replace Video"
856
+ msgstr "Nahradiť video"
857
+
858
+ #: includes/global-settings.php:7 includes/template-settings.php:7
859
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
860
+ #: modules/button/button.php:46 modules/callout/callout.php:207
861
+ #: modules/contact-form/contact-form.php:57
862
+ #: modules/content-slider/content-slider.php:184
863
+ #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
864
+ #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
865
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
866
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
867
+ #: modules/pricing-table/pricing-table.php:87
868
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
869
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
870
+ #: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
871
+ #: modules/testimonials/testimonials.php:30
872
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
873
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
874
+ msgid "General"
875
+ msgstr "Všeobecné"
876
+
877
+ #: includes/global-settings.php:8
878
+ msgid "Note: These settings apply to all posts and pages."
879
+ msgstr "Upozornenie: Tieto nastavenia sa aplikujú na všetky články a stránky."
880
+
881
+ #: includes/global-settings.php:11
882
+ msgid "Default Page Heading"
883
+ msgstr "Hlavný nadpis stránky"
884
+
885
+ #: includes/global-settings.php:15
886
+ msgctxt ""
887
+ "General settings form field label. Intended meaning: \"Show page heading?\""
888
+ msgid "Show"
889
+ msgstr "Zobraziť"
890
+
891
+ #: includes/global-settings.php:26
892
+ msgid ""
893
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
894
+ "You will also be required to enter some basic CSS for this to work if you "
895
+ "choose no."
896
+ msgstr ""
897
+ "Ak zvolíte nie, hlavný nadpis danej stránky sa nezobrazí. Budete taktiež "
898
+ "musieť zadať základné CSS štýly, aby toto nastavenie fungovalo."
899
+
900
+ #: includes/global-settings.php:30
901
+ msgid "CSS Selector"
902
+ msgstr "CSS selektor"
903
+
904
+ #: includes/global-settings.php:32
905
+ msgid "Enter a CSS selector for the default page heading to hide it."
906
+ msgstr ""
907
+ "Zadajte CSS selektor pre hlavný nadpis stránky, aby ho bolo možné skryť."
908
+
909
+ #: includes/global-settings.php:37
910
+ msgid "Rows"
911
+ msgstr "Riadky"
912
+
913
+ #: includes/global-settings.php:57
914
+ msgid "Max Width"
915
+ msgstr "Maximálna šírka"
916
+
917
+ #: includes/global-settings.php:62
918
+ msgid ""
919
+ "All rows will default to this width. You can override this and make a row "
920
+ "full width in the settings for each row."
921
+ msgstr ""
922
+ "Všetky riadky budú prednastavené na túto šírku. Toto nastavenie môžete "
923
+ "nahradiť roztiahnutím na celú šírku v nastaveniach daného riadku."
924
+
925
+ #: includes/global-settings.php:84
926
+ msgctxt ""
927
+ "General settings form field label. Intended meaning: \"Responsive layout "
928
+ "enabled?\""
929
+ msgid "Enabled"
930
+ msgstr "Povoliť"
931
+
932
+ #: includes/global-settings.php:98
933
+ msgid "Medium Device Breakpoint"
934
+ msgstr "Zlomový bod pre stredne veľké zariadenia"
935
+
936
+ #: includes/global-settings.php:103
937
+ msgid ""
938
+ "The browser width at which the layout will adjust for medium devices such as "
939
+ "tablets."
940
+ msgstr ""
941
+ "Šírka internetového prehliadača, v ktorej sa rozloženie nastaví do režimu "
942
+ "pre stredne veľké zariadenia, ako sú tablety."
943
+
944
+ #: includes/global-settings.php:107
945
+ msgid "Small Device Breakpoint"
946
+ msgstr "Zlomový bod pre malé zariadenia"
947
+
948
+ #: includes/global-settings.php:112
949
+ msgid ""
950
+ "The browser width at which the layout will adjust for small devices such as "
951
+ "phones."
952
+ msgstr ""
953
+ "Šírka internetového prehliadača, v ktorej sa rozloženie nastaví do režimu "
954
+ "pre malých zariadení, ako sú telefóny."
955
+
956
+ #: includes/icon-selector.php:4
957
+ msgid "Filter: "
958
+ msgstr "Filter: "
959
+
960
+ #: includes/js-config.php:16
961
+ msgid "What would you like to do?"
962
+ msgstr "Čo si prajete urobiť?"
963
+
964
+ #: includes/js-config.php:18
965
+ msgid "Change Template"
966
+ msgstr "Zmeniť šablónu"
967
+
968
+ #: includes/js-config.php:19
969
+ msgid ""
970
+ "Warning! Changing the template will replace your existing layout. Do you "
971
+ "really want to do this?"
972
+ msgstr ""
973
+ "Pozor! Zmenou šablóny nahradíte existujúce rozloženie. Naozaj to chcete "
974
+ "urobiť?"
975
+
976
+ #: includes/js-config.php:20
977
+ msgid "Column"
978
+ msgstr "Stĺpec"
979
+
980
+ #: includes/js-config.php:22
981
+ msgid ""
982
+ "Please select either a background layout or content layout before submitting."
983
+ msgstr "Najskôr zvoľte rozloženie pozadia alebo obsahu."
984
+
985
+ #: includes/js-config.php:23
986
+ msgid "Do you really want to delete this item?"
987
+ msgstr "Naozaj chcete túto položku odstrániť?"
988
+
989
+ #: includes/js-config.php:24
990
+ msgid ""
991
+ "Do you really want to delete this module? All content data will be "
992
+ "permanently deleted."
993
+ msgstr ""
994
+ "Naozaj chcete tento modul odstrániť? Všetky dáta jeho obsahu budu vymazané."
995
+
996
+ #: includes/js-config.php:25
997
+ msgid ""
998
+ "Do you really want to delete this row? All content data will be permanently "
999
+ "deleted."
1000
+ msgstr ""
1001
+ "Naozaj chcete odstrániť tento riadok? Všetok obsah riadku bude vymazaný."
1002
+
1003
+ #: includes/js-config.php:27
1004
+ msgid "Discard Draft"
1005
+ msgstr "Zahodiť koncept"
1006
+
1007
+ #: includes/js-config.php:28
1008
+ msgid ""
1009
+ "Do you really want to discard this draft? All of your changes that are not "
1010
+ "published will be lost."
1011
+ msgstr ""
1012
+ "Naozaj chcete zahodiť vytvorený koncept? Stratíte všetky zmeny, ktoré nie sú "
1013
+ "publikované."
1014
+
1015
+ #: includes/js-config.php:29
1016
+ msgid "Save Draft"
1017
+ msgstr "Uložiť koncept"
1018
+
1019
+ #: includes/js-config.php:30
1020
+ msgctxt "Duplicate page/post action label."
1021
+ msgid "Duplicate"
1022
+ msgstr "Duplikovať"
1023
+
1024
+ #: includes/js-config.php:31
1025
+ msgid "Duplicate This Page"
1026
+ msgstr "Duplikovať túto stránku"
1027
+
1028
+ #: includes/js-config.php:32
1029
+ msgid "Duplicate This Template"
1030
+ msgstr "Duplikovať túto šablónu"
1031
+
1032
+ #: includes/js-config.php:33
1033
+ msgid "Edit Global Settings"
1034
+ msgstr "Upraviť globálne nastavenia"
1035
+
1036
+ #: includes/js-config.php:34
1037
+ msgid "Drop a row layout or module to get started!"
1038
+ msgstr "Začnite vložením riadku alebo modulu!"
1039
+
1040
+ #: includes/js-config.php:35
1041
+ msgid "Full Size"
1042
+ msgstr "Pôvodná veľkosť"
1043
+
1044
+ #: includes/js-config.php:36
1045
+ msgid "Insert"
1046
+ msgstr "Vložiť"
1047
+
1048
+ #: includes/js-config.php:37
1049
+ msgid "Large"
1050
+ msgstr "Veľké"
1051
+
1052
+ #: includes/js-config.php:38
1053
+ msgid "Manage Templates"
1054
+ msgstr "Správa šablón"
1055
+
1056
+ #: includes/js-config.php:39
1057
+ msgid "Medium"
1058
+ msgstr "Stredné"
1059
+
1060
+ #: includes/js-config.php:40
1061
+ msgid "Module"
1062
+ msgstr "Modul"
1063
+
1064
+ #: includes/js-config.php:41
1065
+ msgid "Move"
1066
+ msgstr "Presunúť"
1067
+
1068
+ #: includes/js-config.php:42
1069
+ msgid "New Column"
1070
+ msgstr "Nový stĺpec"
1071
+
1072
+ #: includes/js-config.php:43
1073
+ msgid "New Row"
1074
+ msgstr "Nový riadok"
1075
+
1076
+ #: includes/js-config.php:44
1077
+ msgid "No results found."
1078
+ msgstr "Nenašli sa žiadne záznamy."
1079
+
1080
+ #: includes/js-config.php:45
1081
+ msgid "OK"
1082
+ msgstr "OK"
1083
+
1084
+ #: includes/js-config.php:46 modules/photo/photo.php:454
1085
+ msgid "Photo Page"
1086
+ msgstr "Stránka obrázku"
1087
+
1088
+ #: includes/js-config.php:47
1089
+ msgid "Photo Selected"
1090
+ msgstr "Obrázok bol zvolený"
1091
+
1092
+ #: includes/js-config.php:48
1093
+ msgid "Photos Selected"
1094
+ msgstr "Obrázky boli zvolené"
1095
+
1096
+ #: includes/js-config.php:49
1097
+ msgid "Publish Changes"
1098
+ msgstr "Publikovať zmeny"
1099
+
1100
+ #: includes/js-config.php:51
1101
+ msgid "Row"
1102
+ msgstr "Riadok"
1103
+
1104
+ #: includes/js-config.php:52 includes/row-settings.php:6
1105
+ msgid "Row Settings"
1106
+ msgstr "Nastavenia riadku"
1107
+
1108
+ #: includes/js-config.php:53
1109
+ msgid "Save Core Template"
1110
+ msgstr "Uložiť základnú šablónu"
1111
+
1112
+ #: includes/js-config.php:54 includes/ui.php:10
1113
+ #: includes/user-template-settings.php:4
1114
+ msgid "Save Template"
1115
+ msgstr "Uložiť šablónu"
1116
+
1117
+ #: includes/js-config.php:56
1118
+ msgid "Select Photos"
1119
+ msgstr "Zvoliť obrázky"
1120
+
1121
+ #: includes/js-config.php:59
1122
+ msgid "Append New Layout"
1123
+ msgstr "Pridať nové rozloženie"
1124
+
1125
+ #: includes/js-config.php:60
1126
+ msgid "Replace Existing Layout"
1127
+ msgstr "Nahradiť existujúce rozloženie"
1128
+
1129
+ #: includes/js-config.php:61
1130
+ msgid "Template Saved!"
1131
+ msgstr "Šablóna bola uložená!"
1132
+
1133
+ #: includes/js-config.php:62
1134
+ msgid "Thumbnail"
1135
+ msgstr "Miniatúra"
1136
+
1137
+ #: includes/js-config.php:63
1138
+ msgid ""
1139
+ "The settings you are currently editing will not be saved if you navigate "
1140
+ "away from this page."
1141
+ msgstr ""
1142
+ "Nastavenia, ktoré práve vykonávate, sa neuložia ak odídete z tejto stránky."
1143
+
1144
+ #: includes/loop-settings.php:19
1145
+ msgid "Post Type"
1146
+ msgstr "Typ článku"
1147
+
1148
+ #: includes/loop-settings.php:25
1149
+ msgid "Order By"
1150
+ msgstr "Zoradit podľa"
1151
+
1152
+ #: includes/loop-settings.php:27
1153
+ msgid "ID"
1154
+ msgstr "ID"
1155
+
1156
+ #: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
1157
+ #: modules/woocommerce/woocommerce.php:189
1158
+ msgid "Date"
1159
+ msgstr "Dátum"
1160
+
1161
+ #: includes/loop-settings.php:29
1162
+ msgid "Date Last Modified"
1163
+ msgstr "Dátum poslednej zmeny"
1164
+
1165
+ #: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
1166
+ #: modules/pricing-table/pricing-table.php:94
1167
+ msgid "Title"
1168
+ msgstr "Nadpis"
1169
+
1170
+ #: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
1171
+ msgid "Author"
1172
+ msgstr "Autor"
1173
+
1174
+ #: includes/loop-settings.php:32
1175
+ msgid "Comment Count"
1176
+ msgstr "Počet komentárov"
1177
+
1178
+ #: includes/loop-settings.php:33
1179
+ msgid "Menu Order"
1180
+ msgstr "Nastavené poradie"
1181
+
1182
+ #: includes/loop-settings.php:34
1183
+ msgid "Random"
1184
+ msgstr "Náhodne"
1185
+
1186
+ #: includes/loop-settings.php:41
1187
+ msgid "Order"
1188
+ msgstr "Zoradiť"
1189
+
1190
+ #: includes/loop-settings.php:43
1191
+ msgid "Descending"
1192
+ msgstr "Zostupne"
1193
+
1194
+ #: includes/loop-settings.php:44
1195
+ msgid "Ascending"
1196
+ msgstr "Vzostupne"
1197
+
1198
+ #: includes/loop-settings.php:52
1199
+ msgid "Filter"
1200
+ msgstr "Filter"
1201
+
1202
+ #: includes/loop-settings.php:63
1203
+ #, php-format
1204
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
1205
+ msgstr "%s: zadajte čiarkou oddelený zoznam. Zobrazia sa iba tieto %s."
1206
+
1207
+ #: includes/loop-settings.php:76
1208
+ #, php-format
1209
+ msgid ""
1210
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
1211
+ msgstr ""
1212
+ "%s: zadajte čiarkou oddelený zoznam. %s sa použije na filtrované zobrazenie "
1213
+ "článkov."
1214
+
1215
+ #: includes/loop-settings.php:90
1216
+ msgid "Authors"
1217
+ msgstr "Autori"
1218
+
1219
+ #: includes/loop-settings.php:91
1220
+ msgid ""
1221
+ "Enter a comma separated list of authors usernames. Only posts with these "
1222
+ "authors will be shown."
1223
+ msgstr ""
1224
+ "Zadajte čiarkou oddelený zoznam užívateľských mien autorov. Zobrazia sa iba "
1225
+ "články od týchto autorov."
1226
+
1227
+ #: includes/module-settings.php:14
1228
+ msgid ""
1229
+ "A custom CSS class that will be applied to this module. Spaces only, no dots."
1230
+ msgstr ""
1231
+ "Vlastná trieda CSS aplikovaná na tento modul. Nepoužívajte bodky, iba "
1232
+ "medzery."
1233
+
1234
+ #: includes/module-settings.php:30
1235
+ msgid "Choose whether to show or hide this module at different device sizes."
1236
+ msgstr ""
1237
+ "Vyberte, či chcete zobraziť alebo skryť tento modul na zariadeniach rôznych "
1238
+ "veľkostí."
1239
+
1240
+ #: includes/module-settings.php:91
1241
+ msgid "Animation"
1242
+ msgstr "Animácia"
1243
+
1244
+ #: includes/module-settings.php:97
1245
+ msgctxt "Animation style."
1246
+ msgid "None"
1247
+ msgstr "Žiadny"
1248
+
1249
+ #: includes/module-settings.php:98
1250
+ msgctxt "Animation style."
1251
+ msgid "Fade In"
1252
+ msgstr "Pozvoľna zobraziť"
1253
+
1254
+ #: includes/module-settings.php:99
1255
+ msgctxt "Animation style."
1256
+ msgid "Slide Left"
1257
+ msgstr "Vkĺznuť doľava"
1258
+
1259
+ #: includes/module-settings.php:100
1260
+ msgctxt "Animation style."
1261
+ msgid "Slide Right"
1262
+ msgstr "Vkĺznuť doprava"
1263
+
1264
+ #: includes/module-settings.php:101
1265
+ msgctxt "Animation style."
1266
+ msgid "Slide Up"
1267
+ msgstr "Vkĺznuť hore"
1268
+
1269
+ #: includes/module-settings.php:102
1270
+ msgctxt "Animation style."
1271
+ msgid "Slide Down"
1272
+ msgstr "Vkĺznut dole"
1273
+
1274
+ #: includes/module-settings.php:110
1275
+ #: modules/content-slider/content-slider.php:223
1276
+ #: modules/testimonials/testimonials.php:91
1277
+ msgid "Delay"
1278
+ msgstr "Oneskorenie"
1279
+
1280
+ #: includes/module-settings.php:114 includes/row-settings.php:266
1281
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
1282
+ #: modules/content-slider/content-slider.php:244
1283
+ #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1284
+ #: modules/slideshow/slideshow.php:581
1285
+ #: modules/testimonials/testimonials.php:95
1286
+ #: modules/testimonials/testimonials.php:112
1287
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1288
+ msgid "seconds"
1289
+ msgstr "(v sekundách)"
1290
+
1291
+ #: includes/module-settings.php:115
1292
+ msgid "The amount of time in seconds before this animation starts."
1293
+ msgstr "Čas v sekundách pred tým ako sa spustí animácia."
1294
+
1295
+ #: includes/multisite-settings.php:116
1296
+ msgid ""
1297
+ "Enter a comma separated list of the post types you would like the builder to "
1298
+ "work with."
1299
+ msgstr ""
1300
+ "Zadajte čiarkou oddelený zoznam typov článkou, s ktorými chcete editor "
1301
+ "stránok používať."
1302
+
1303
+ #: includes/multisite-settings.php:132
1304
+ msgid "Example: page, post, product"
1305
+ msgstr "Napríklad: page, post, product"
1306
+
1307
+ #: includes/row-settings.php:16 modules/button/button.php:146
1308
+ #: modules/content-slider/content-slider.php:477
1309
+ msgid "Width"
1310
+ msgstr "Šírka"
1311
+
1312
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1313
+ #: includes/row-settings.php:179
1314
+ msgid "Fixed"
1315
+ msgstr "Pevná"
1316
+
1317
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1318
+ #: modules/button/button.php:150 modules/callout/callout.php:554
1319
+ msgid "Full Width"
1320
+ msgstr "Celá šírka"
1321
+
1322
+ #: includes/row-settings.php:27
1323
+ msgid ""
1324
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
1325
+ "no wider than the Row Max Width set in the Global Settings."
1326
+ msgstr ""
1327
+ "Riadky s aplikovanou celou šírkou sa roztiahnu na šírku stránky. Pevná šírka "
1328
+ "riadku zabezpečí, že riadok nebude širší ako maximálna šírka riadku zadaná v "
1329
+ "globálnych nastaveniach."
1330
+
1331
+ #: includes/row-settings.php:34
1332
+ msgid "Content Width"
1333
+ msgstr "Šírka obsahu"
1334
+
1335
+ #: includes/row-settings.php:40
1336
+ msgid ""
1337
+ "Full width content spans the width of the page from edge to edge. Fixed "
1338
+ "content is no wider than the Row Max Width set in the Global Settings."
1339
+ msgstr ""
1340
+ "Obsah s aplikovanou celou šírkou sa roztiahne na šírku stránky. Pevná šírka "
1341
+ "obsahu zabezpečí, že obsah nebude širší ako maximálna šírka riadku zadaná v "
1342
+ "globálnych nastaveniach."
1343
+
1344
+ #: includes/row-settings.php:61
1345
+ msgid "Background"
1346
+ msgstr "Pozadie"
1347
+
1348
+ #: includes/row-settings.php:68 modules/content-slider/content-slider.php:332
1349
+ msgctxt "Background type."
1350
+ msgid "None"
1351
+ msgstr "Žiaden"
1352
+
1353
+ #: includes/row-settings.php:69
1354
+ msgctxt "Background type."
1355
+ msgid "Color"
1356
+ msgstr "Farba"
1357
+
1358
+ #: includes/row-settings.php:70
1359
+ msgctxt "Background type."
1360
+ msgid "Photo"
1361
+ msgstr "Obrázok"
1362
+
1363
+ #: includes/row-settings.php:71
1364
+ msgctxt "Background type."
1365
+ msgid "Video"
1366
+ msgstr "Video"
1367
+
1368
+ #: includes/row-settings.php:73
1369
+ msgctxt "Background type."
1370
+ msgid "Slideshow"
1371
+ msgstr "Prezentácia obrázkov"
1372
+
1373
+ #: includes/row-settings.php:77
1374
+ msgctxt "Background type."
1375
+ msgid "Parallax"
1376
+ msgstr "Paralaxa"
1377
+
1378
+ #: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
1379
+ msgid "Background Photo"
1380
+ msgstr "Obrázok pozadia"
1381
+
1382
+ #: includes/row-settings.php:133 includes/row-settings.php:321
1383
+ #: modules/callout/callout.php:314 modules/callout/callout.php:330
1384
+ #: modules/callout/callout.php:334
1385
+ #: modules/content-slider/content-slider.php:329
1386
+ #: modules/content-slider/content-slider.php:398
1387
+ #: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
1388
+ #: modules/photo/photo.php:392
1389
+ msgid "Photo"
1390
+ msgstr "Obrázok"
1391
+
1392
+ #: includes/row-settings.php:140
1393
+ msgid "Repeat"
1394
+ msgstr "Opakovanie"
1395
+
1396
+ #: includes/row-settings.php:143
1397
+ msgctxt "Background repeat."
1398
+ msgid "None"
1399
+ msgstr "Žiadne"
1400
+
1401
+ #: includes/row-settings.php:144
1402
+ msgctxt "Background repeat."
1403
+ msgid "Tile"
1404
+ msgstr "Dlaždice"
1405
+
1406
+ #: includes/row-settings.php:145
1407
+ msgctxt "Background repeat."
1408
+ msgid "Horizontal"
1409
+ msgstr "Horizontálne"
1410
+
1411
+ #: includes/row-settings.php:146
1412
+ msgctxt "Background repeat."
1413
+ msgid "Vertical"
1414
+ msgstr "Vertikálne"
1415
+
1416
+ #: includes/row-settings.php:148
1417
+ msgid ""
1418
+ "Repeat applies to how the image should display in the row background. "
1419
+ "Choosing none will display the image as uploaded. Tile will repeat the image "
1420
+ "as many times as needed to fill the row horizontally and vertically. You can "
1421
+ "also specify the image to only repeat horizontally or vertically."
1422
+ msgstr ""
1423
+ "Opakovanie určí, ako sa zobrazí obrázok na pozadí riadku. Ak nič nezvolíte, "
1424
+ "obrázok sa zobrazí ako je. Dlaždice zopakujú obrázok toľkokrát, aby vyplnil "
1425
+ "celú šírku a výšku riadku. Máte aj možnosť opakovať obrázok iba "
1426
+ "horizontálnym alebo vertikálnym smerom."
1427
+
1428
+ #: includes/row-settings.php:158
1429
+ msgid "Left Top"
1430
+ msgstr "Vľavo hore"
1431
+
1432
+ #: includes/row-settings.php:159
1433
+ msgid "Left Center"
1434
+ msgstr "Vľavo v strede"
1435
+
1436
+ #: includes/row-settings.php:160
1437
+ msgid "Left Bottom"
1438
+ msgstr "Vľavo dole"
1439
+
1440
+ #: includes/row-settings.php:161
1441
+ msgid "Right Top"
1442
+ msgstr "Vpravo hore"
1443
+
1444
+ #: includes/row-settings.php:162
1445
+ msgid "Right Center"
1446
+ msgstr "Vpravo v strede"
1447
+
1448
+ #: includes/row-settings.php:163
1449
+ msgid "Right Bottom"
1450
+ msgstr "Vpravo dole"
1451
+
1452
+ #: includes/row-settings.php:164
1453
+ msgid "Center Top"
1454
+ msgstr "V strede hore"
1455
+
1456
+ #: includes/row-settings.php:165 modules/button/button.php:176
1457
+ #: modules/callout/callout.php:249
1458
+ #: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
1459
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1460
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1461
+ #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1462
+ msgid "Center"
1463
+ msgstr "V strede"
1464
+
1465
+ #: includes/row-settings.php:166
1466
+ msgid "Center Bottom"
1467
+ msgstr "V strede dole"
1468
+
1469
+ #: includes/row-settings.php:168
1470
+ msgid "Position will tell the image where it should sit in the row background."
1471
+ msgstr "Pozíciou určíte, kde na pozadí riadku bude obrázok umiestnený."
1472
+
1473
+ #: includes/row-settings.php:175
1474
+ msgid "Attachment"
1475
+ msgstr "Pripojenie pozadia"
1476
+
1477
+ #: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
1478
+ msgid "Scroll"
1479
+ msgstr "Rolovať"
1480
+
1481
+ #: includes/row-settings.php:181
1482
+ msgid ""
1483
+ "Attachment will specify how the image reacts when scrolling a page. When "
1484
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1485
+ "the default setting. Fixed will allow the image to scroll within the row "
1486
+ "background if fill is selected in the scale setting."
1487
+ msgstr ""
1488
+ "Pripojenie pozadia určí ako bude obrázok reagovať na rolovanie stránky. Ak "
1489
+ "zvolíte rolovanie, čo je prednastavená hodnota, obrázok sa roluje spolu so "
1490
+ "stránkou. Pevné pripojenie zabráni obrázku rolovať spolu so stránkou, bude "
1491
+ "sa rolovaním postupne odkrývať."
1492
+
1493
+ #: includes/row-settings.php:188
1494
+ msgid "Scale"
1495
+ msgstr "Natiahnutie"
1496
+
1497
+ #: includes/row-settings.php:191
1498
+ msgctxt "Background scale."
1499
+ msgid "None"
1500
+ msgstr "Žiadne"
1501
+
1502
+ #: includes/row-settings.php:192
1503
+ msgid "Fit"
1504
+ msgstr "Prispôsobiť"
1505
+
1506
+ #: includes/row-settings.php:193
1507
+ msgid "Fill"
1508
+ msgstr "Vyplniť"
1509
+
1510
+ #: includes/row-settings.php:195
1511
+ msgid ""
1512
+ "Scale applies to how the image should display in the row background. You can "
1513
+ "select either fill or fit to the row background."
1514
+ msgstr ""
1515
+ "Natiahnutie pozadia určí, ako sa obrázok na pozadí riadku zobrazí. Môžete "
1516
+ "obrázok natiahnuť na celú šírku alebo ho prispôsobiť aby bol zobrazený na "
1517
+ "pozadí riadku celý."
1518
+
1519
+ #: includes/row-settings.php:203
1520
+ msgid "Background Video"
1521
+ msgstr "Video na pozadí"
1522
+
1523
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
1524
+ #: modules/video/video.php:19 modules/video/video.php:100
1525
+ msgid "Video"
1526
+ msgstr "Video"
1527
+
1528
+ #: includes/row-settings.php:208
1529
+ msgid ""
1530
+ "An HTML5 video to use as the background of this row. Supported types are "
1531
+ "MP4, WebM and Ogg."
1532
+ msgstr ""
1533
+ "Na pozadí tohto riadku sa zobrazí HTML5 video. Podporované sú MP4, WebM a "
1534
+ "Ogg video formáty."
1535
+
1536
+ #: includes/row-settings.php:215
1537
+ msgid "Fallback Photo"
1538
+ msgstr "Pomocný obrázok"
1539
+
1540
+ #: includes/row-settings.php:216
1541
+ msgid "A photo that will be displayed if the video fails to load."
1542
+ msgstr "Tento obrázok sa zobrazí v prípade, že sa video nenačíta."
1543
+
1544
+ #: includes/row-settings.php:224
1545
+ msgid "Background Slideshow"
1546
+ msgstr "Prezentácia obrázkov na pozadí"
1547
+
1548
+ #: includes/row-settings.php:228 modules/gallery/gallery.php:234
1549
+ #: modules/slideshow/slideshow.php:263
1550
+ msgid "Source"
1551
+ msgstr "Zdroj"
1552
+
1553
+ #: includes/row-settings.php:231 modules/gallery/gallery.php:237
1554
+ #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
1555
+ #: modules/video/video.php:86
1556
+ msgid "Media Library"
1557
+ msgstr "Knižnica multimédií"
1558
+
1559
+ #: includes/row-settings.php:234 modules/gallery/gallery.php:240
1560
+ #: modules/slideshow/slideshow.php:269
1561
+ msgid ""
1562
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
1563
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
1564
+ "accessed by using the get a link function in your SmugMug gallery."
1565
+ msgstr ""
1566
+ "Vyberte obrázky z multimediálnej knižnice WordPress alebo zadajte galériu na "
1567
+ "vašej SmugMug stránke pomocou URL odkazu na RSS kanál. Odkaz na RSS kanál je "
1568
+ "možné získať pomocou funkcie na získanie odkazov vo vašej SmugMug galérii."
1569
+
1570
+ #: includes/row-settings.php:249 modules/gallery/gallery.php:252
1571
+ #: modules/slideshow/slideshow.php:281
1572
+ msgid "Photos"
1573
+ msgstr "Obrázky"
1574
+
1575
+ #: includes/row-settings.php:256 modules/gallery/gallery.php:256
1576
+ #: modules/slideshow/slideshow.php:285
1577
+ msgid "Feed URL"
1578
+ msgstr "URL kanála"
1579
+
1580
+ #: includes/row-settings.php:263 includes/row-settings.php:328
1581
+ #: modules/slideshow/slideshow.php:382
1582
+ msgid "Speed"
1583
+ msgstr "Rýchlosť"
1584
+
1585
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:231
1586
+ #: modules/slideshow/slideshow.php:389
1587
+ #: modules/testimonials/testimonials.php:99
1588
+ msgid "Transition"
1589
+ msgstr "Prechod"
1590
+
1591
+ #: includes/row-settings.php:276
1592
+ msgctxt "Slideshow transition type."
1593
+ msgid "None"
1594
+ msgstr "Žiaden"
1595
+
1596
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
1597
+ #: modules/slideshow/slideshow.php:393
1598
+ #: modules/testimonials/testimonials.php:103
1599
+ msgid "Fade"
1600
+ msgstr "Prekrývanie"
1601
+
1602
+ #: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
1603
+ msgid "Ken Burns"
1604
+ msgstr "Ken Burns"
1605
+
1606
+ #: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
1607
+ msgid "Slide Horizontal"
1608
+ msgstr "Vkĺznuť horizontálne"
1609
+
1610
+ #: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
1611
+ msgid "Slide Vertical"
1612
+ msgstr "Vkĺznuť vertikálne"
1613
+
1614
+ #: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
1615
+ msgid "Blinds"
1616
+ msgstr "Žalúzie"
1617
+
1618
+ #: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
1619
+ msgid "Bars"
1620
+ msgstr "Pásiky"
1621
+
1622
+ #: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
1623
+ msgid "Random Bars"
1624
+ msgstr "Náhodné pásiky"
1625
+
1626
+ #: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
1627
+ msgid "Boxes"
1628
+ msgstr "Štvorce"
1629
+
1630
+ #: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
1631
+ msgid "Random Boxes"
1632
+ msgstr "Náhodné štvorce"
1633
+
1634
+ #: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
1635
+ msgid "Boxes Grow"
1636
+ msgstr "Rastúce štvorce"
1637
+
1638
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
1639
+ #: modules/slideshow/slideshow.php:407
1640
+ #: modules/testimonials/testimonials.php:108
1641
+ msgid "Transition Speed"
1642
+ msgstr "Rýchlosť prechodu"
1643
+
1644
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
1645
+ msgid "Randomize Photos"
1646
+ msgstr "Náhodné zoradenie obrázkov"
1647
+
1648
+ #: includes/row-settings.php:317
1649
+ msgid "Background Parallax"
1650
+ msgstr "Paralaxa pozadia"
1651
+
1652
+ #: includes/row-settings.php:331
1653
+ msgid "Fast"
1654
+ msgstr "Rýchlo"
1655
+
1656
+ #: includes/row-settings.php:332
1657
+ msgctxt "Speed."
1658
+ msgid "Medium"
1659
+ msgstr "Stredne"
1660
+
1661
+ #: includes/row-settings.php:333
1662
+ msgid "Slow"
1663
+ msgstr "Pomaly"
1664
+
1665
+ #: includes/row-settings.php:457
1666
+ msgid "Add a custom CSS selector here to apply additional styling to this row."
1667
+ msgstr ""
1668
+ "Zadajte vlastný CSS selector pre aplikáciu dodatočných štýlov na tento "
1669
+ "riadok."
1670
+
1671
+ #: includes/row-settings.php:473
1672
+ msgid "Choose whether to show or hide this row at different device sizes."
1673
+ msgstr ""
1674
+ "Zvoľte, či sa má tento riadok zobraziť na zariadeniach rôznych veľkostí."
1675
+
1676
+ #: includes/settings.php:62
1677
+ msgid "Save"
1678
+ msgstr "Uložiť"
1679
+
1680
+ #: includes/template-selector.php:3
1681
+ msgid "Layout Templates"
1682
+ msgstr "Šablóny rozloženia"
1683
+
1684
+ #: includes/template-selector.php:8
1685
+ msgid "Home Pages"
1686
+ msgstr "Úvodné stránky"
1687
+
1688
+ #: includes/template-selector.php:9
1689
+ msgid "Content Pages"
1690
+ msgstr "Obsahové stránky"
1691
+
1692
+ #: includes/template-selector.php:13
1693
+ msgid "Your Templates"
1694
+ msgstr "Vlastné šablóny"
1695
+
1696
+ #: includes/template-selector.php:47 includes/template-selector.php:77
1697
+ msgctxt "Template name."
1698
+ msgid "Blank"
1699
+ msgstr "Prázdna"
1700
+
1701
+ #: includes/template-selector.php:72
1702
+ msgid ""
1703
+ "You haven't saved any templates yet! To do so, create a layout and save it "
1704
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
1705
+ msgstr ""
1706
+ "Zatiaľ ste neuložili žiadnu šablónu. Ak chcete šablónu uložiť, vytvorte "
1707
+ "rozloženie a uložte ho ako šablónu pomocou <strong>Nástroje &rarr; Uložiť "
1708
+ "šablónu</strong>."
1709
+
1710
+ #: includes/template-settings.php:14 includes/user-template-settings.php:15
1711
+ msgctxt "Template name."
1712
+ msgid "Name"
1713
+ msgstr "Názov"
1714
+
1715
+ #: includes/template-settings.php:18
1716
+ msgid "Image Filename"
1717
+ msgstr "Súbor obrázku"
1718
+
1719
+ #: includes/template-settings.php:19
1720
+ msgid ""
1721
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
1722
+ "templates/\" directory."
1723
+ msgstr ""
1724
+ "Názov súboru obrázku, ako napríklad \"miniatura.jpg\", ktorý sa nachádza v "
1725
+ "adresári \"img/templates/\"."
1726
+
1727
+ #: includes/ui.php:7
1728
+ #, php-format
1729
+ msgid "Template: %s"
1730
+ msgstr "Šablóna: %s"
1731
+
1732
+ #: includes/ui.php:23
1733
+ msgid "Page Builder Demo"
1734
+ msgstr "Demo Editora stránok"
1735
+
1736
+ #: includes/ui.php:37
1737
+ msgid "Buy Now!"
1738
+ msgstr "Zakúpiť ihneď!"
1739
+
1740
+ #: includes/ui.php:39
1741
+ msgid "Upgrade!"
1742
+ msgstr "Aktualizovať!"
1743
+
1744
+ #: includes/ui.php:41
1745
+ msgid "Done"
1746
+ msgstr "Hotovo"
1747
+
1748
+ #: includes/ui.php:42
1749
+ msgid "Tools"
1750
+ msgstr "Nástroje"
1751
+
1752
+ #: includes/ui.php:46
1753
+ msgid "Add Content"
1754
+ msgstr "Pridať obsah"
1755
+
1756
+ #: includes/ui.php:64
1757
+ msgid "Row Layouts"
1758
+ msgstr "Stĺpce a riadky"
1759
+
1760
+ #: includes/ui.php:68
1761
+ msgid "1 Column"
1762
+ msgstr "1 stĺpec"
1763
+
1764
+ #: includes/ui.php:69
1765
+ msgid "2 Columns"
1766
+ msgstr "2 stĺpce"
1767
+
1768
+ #: includes/ui.php:70
1769
+ msgid "3 Columns"
1770
+ msgstr "3 stĺpce"
1771
+
1772
+ #: includes/ui.php:71
1773
+ msgid "4 Columns"
1774
+ msgstr "4 stĺpce"
1775
+
1776
+ #: includes/ui.php:72
1777
+ msgid "5 Columns"
1778
+ msgstr "5 stĺpcov"
1779
+
1780
+ #: includes/ui.php:73
1781
+ msgid "6 Columns"
1782
+ msgstr "6 stĺpcov"
1783
+
1784
+ #: includes/ui.php:74
1785
+ msgid "Left Sidebar"
1786
+ msgstr "Bočný panel vľavo"
1787
+
1788
+ #: includes/ui.php:75
1789
+ msgid "Right Sidebar"
1790
+ msgstr "Bočný panel vpravo"
1791
+
1792
+ #: includes/ui.php:76
1793
+ msgid "Left &amp; Right Sidebar"
1794
+ msgstr "Bočný panel vľavo a vpravo"
1795
+
1796
+ #: includes/ui.php:85 modules/widget/widget.php:16
1797
+ msgid "WordPress Widgets"
1798
+ msgstr "WordPress widgety"
1799
+
1800
+ #: includes/updater/classes/class-fl-updater.php:107
1801
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
1802
+ msgstr "<strong>AKTUALIZÁCIE NEPRÍSTUPNÉ!</strong>"
1803
+
1804
+ #: includes/updater/classes/class-fl-updater.php:109
1805
+ msgid "Please subscribe to enable automatic updates for this plugin."
1806
+ msgstr ""
1807
+ "Zaregistrujte sa pre aktiváciu automatických aktualizácií tohto modulu."
1808
+
1809
+ #: includes/updater/classes/class-fl-updater.php:111
1810
+ #: includes/updater/includes/form.php:6
1811
+ msgid "Subscribe Now"
1812
+ msgstr "Zaregistrovať sa"
1813
+
1814
+ #: includes/updater/includes/form.php:5
1815
+ msgid ""
1816
+ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
1817
+ "enable automatic updates."
1818
+ msgstr ""
1819
+ "AKTUALIZÁCIE NEPRÍSTUPNÉ! Zaregistrujte sa alebo zadajte váš licenčný kľúč "
1820
+ "pre aktiváciu automatických aktualizácií."
1821
+
1822
+ #: includes/updater/includes/form.php:11
1823
+ msgid "Updates &amp; Support Subscription"
1824
+ msgstr "Aktualziácie a technická podpora"
1825
+
1826
+ #: includes/updater/includes/form.php:14
1827
+ msgid "Active!"
1828
+ msgstr "Aktívne!"
1829
+
1830
+ #: includes/updater/includes/form.php:16
1831
+ msgid "Not Active!"
1832
+ msgstr "Nie sú aktívne!"
1833
+
1834
+ #: includes/updater/includes/form.php:22
1835
+ msgid "Email address saved!"
1836
+ msgstr "E-mailová adresa bola uložená!"
1837
+
1838
+ #: includes/updater/includes/form.php:27
1839
+ #, php-format
1840
+ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
1841
+ msgstr ""
1842
+ "Zadajte svoj <a%s>licenčný kľúč</a> pre aktiváciu automatických aktualizácií "
1843
+ "a technickej podpory."
1844
+
1845
+ #: includes/updater/includes/form.php:39
1846
+ msgid "Save Subscription Settings"
1847
+ msgstr "Uložiť nastavenia registrácie"
1848
+
1849
+ #: includes/user-template-settings.php:8
1850
+ msgid ""
1851
+ "Save the current layout as a template that can be reused under "
1852
+ "<strong>Templates &rarr; Your Templates</strong>."
1853
+ msgstr ""
1854
+ "Uložiť aktuálne rozloženie ako šablónu, ktorú budete môcť použiť neskôr a "
1855
+ "nájdete ju v <strong>Šablóny &rarr; Vlastné šablóny</strong>."
1856
+
1857
+ #: modules/accordion/accordion.php:14
1858
+ msgid "Accordion"
1859
+ msgstr "Akordeón"
1860
+
1861
+ #: modules/accordion/accordion.php:15
1862
+ msgid "Display a collapsible accordion of items."
1863
+ msgstr "Zobrazí rozbaľovací zoznam položiek."
1864
+
1865
+ #: modules/accordion/accordion.php:16 modules/button/button.php:16
1866
+ #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
1867
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
1868
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
1869
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
1870
+ #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
1871
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
1872
+ #: modules/slideshow/slideshow.php:16
1873
+ #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
1874
+ #: modules/testimonials/testimonials.php:16
1875
+ #: modules/woocommerce/woocommerce.php:18
1876
+ msgid "Advanced Modules"
1877
+ msgstr "Pokročilé moduly"
1878
+
1879
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
1880
+ msgid "Items"
1881
+ msgstr "Sekcie"
1882
+
1883
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
1884
+ msgid "Item"
1885
+ msgstr "Sekcia"
1886
+
1887
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
1888
+ msgid "Border Color"
1889
+ msgstr "Farba okraja"
1890
+
1891
+ #: modules/accordion/accordion.php:62
1892
+ msgid "Label Size"
1893
+ msgstr "Veľkosť nadpisu"
1894
+
1895
+ #: modules/accordion/accordion.php:65
1896
+ msgctxt "Label size."
1897
+ msgid "Small"
1898
+ msgstr "Malý"
1899
+
1900
+ #: modules/accordion/accordion.php:66
1901
+ msgctxt "Label size."
1902
+ msgid "Medium"
1903
+ msgstr "Stredný"
1904
+
1905
+ #: modules/accordion/accordion.php:67
1906
+ msgctxt "Label size."
1907
+ msgid "Large"
1908
+ msgstr "Veľký"
1909
+
1910
+ #: modules/accordion/accordion.php:75
1911
+ msgid "Item Spacing"
1912
+ msgstr "Odsadenie položiek"
1913
+
1914
+ #: modules/accordion/accordion.php:86
1915
+ msgid "Collapse Inactive"
1916
+ msgstr "Zbaliť neaktívne"
1917
+
1918
+ #: modules/accordion/accordion.php:92
1919
+ msgid ""
1920
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
1921
+ "multiple items to be open at the same time."
1922
+ msgstr ""
1923
+ "Pri potvrdení bude rozbalená iba jedna sekcia. Pri zamietnutí bude možné "
1924
+ "rozbaliť viacero sekcií naraz."
1925
+
1926
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
1927
+ msgid "Add Item"
1928
+ msgstr "Pridať sekciu"
1929
+
1930
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
1931
+ msgid "Label"
1932
+ msgstr "Nadpis"
1933
+
1934
+ #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
1935
+ #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
1936
+ #: modules/tabs/tabs.php:89
1937
+ msgid "Content"
1938
+ msgstr "Obsah"
1939
+
1940
+ #: modules/button/button.php:14 modules/callout/callout.php:477
1941
+ #: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
1942
+ #: modules/pricing-table/pricing-table.php:129
1943
+ msgid "Button"
1944
+ msgstr "Tlačidlo"
1945
+
1946
+ #: modules/button/button.php:15
1947
+ msgid "A simple call to action button."
1948
+ msgstr "Jednoduché tlačidlo pre vyvolanie akcie."
1949
+
1950
+ #: modules/button/button.php:54 modules/cta/cta.php:220
1951
+ msgid "Click Here"
1952
+ msgstr "Kliknite sem"
1953
+
1954
+ #: modules/button/button.php:62 modules/callout/callout.php:315
1955
+ #: modules/callout/callout.php:363 modules/callout/callout.php:367
1956
+ #: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
1957
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
1958
+ #: modules/icon/icon.php:34
1959
+ msgid "Icon"
1960
+ msgstr "Ikonka"
1961
+
1962
+ #: modules/button/button.php:68 modules/button/button.php:72
1963
+ #: modules/callout/callout.php:443 modules/callout/callout.php:447
1964
+ #: modules/content-slider/content-slider.php:567
1965
+ #: modules/content-slider/content-slider.php:571
1966
+ #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
1967
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
1968
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
1969
+ #: modules/slideshow/slideshow.php:343
1970
+ msgid "Link"
1971
+ msgstr "Odkaz"
1972
+
1973
+ #: modules/button/button.php:73
1974
+ msgid "http://www.example.com"
1975
+ msgstr "http://www.napriklad.com"
1976
+
1977
+ #: modules/button/button.php:80 modules/callout/callout.php:455
1978
+ #: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
1979
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
1980
+ #: modules/photo/photo.php:478
1981
+ msgid "Link Target"
1982
+ msgstr "Cieľ odkazu"
1983
+
1984
+ #: modules/button/button.php:83 modules/callout/callout.php:458
1985
+ #: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
1986
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
1987
+ #: modules/photo/photo.php:481
1988
+ msgid "Same Window"
1989
+ msgstr "Rovnaké okno"
1990
+
1991
+ #: modules/button/button.php:84 modules/callout/callout.php:459
1992
+ #: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
1993
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
1994
+ #: modules/photo/photo.php:482
1995
+ msgid "New Window"
1996
+ msgstr "Nové okno"
1997
+
1998
+ #: modules/button/button.php:98 modules/cta/cta.php:185
1999
+ #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
2000
+ #: modules/icon/icon.php:78
2001
+ msgid "Colors"
2002
+ msgstr "Farby"
2003
+
2004
+ #: modules/button/button.php:108 modules/callout/callout.php:407
2005
+ #: modules/callout/callout.php:512
2006
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
2007
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
2008
+ msgid "Background Hover Color"
2009
+ msgstr "Farba pozadia po prechode myšou"
2010
+
2011
+ #: modules/button/button.php:117 modules/callout/callout.php:521
2012
+ #: modules/content-slider/content-slider.php:522
2013
+ #: modules/content-slider/content-slider.php:635
2014
+ #: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
2015
+ #: modules/cta/cta.php:277 modules/heading/heading.php:77
2016
+ msgid "Text Color"
2017
+ msgstr "Farba textu"
2018
+
2019
+ #: modules/button/button.php:123 modules/callout/callout.php:527
2020
+ #: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
2021
+ msgid "Text Hover Color"
2022
+ msgstr "Farba textu po prechode myšou"
2023
+
2024
+ #: modules/button/button.php:132 modules/callout/callout.php:415
2025
+ #: modules/callout/callout.php:536
2026
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
2027
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
2028
+ msgid "Gradient"
2029
+ msgstr "Gradient"
2030
+
2031
+ #: modules/button/button.php:142 modules/callout/callout.php:242
2032
+ #: modules/cta/cta.php:102 modules/heading/heading.php:82
2033
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
2034
+ msgid "Structure"
2035
+ msgstr "Štruktúra"
2036
+
2037
+ #: modules/button/button.php:149 modules/callout/callout.php:553
2038
+ msgctxt "Width."
2039
+ msgid "Auto"
2040
+ msgstr "Automatická"
2041
+
2042
+ #: modules/button/button.php:165
2043
+ msgid "Custom Width"
2044
+ msgstr "Vlastná šírka"
2045
+
2046
+ #: modules/button/button.php:173 modules/cta/cta.php:120
2047
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
2048
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
2049
+ #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
2050
+ msgid "Alignment"
2051
+ msgstr "Zarovnanie"
2052
+
2053
+ #: modules/button/button.php:183 modules/callout/callout.php:559
2054
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
2055
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
2056
+ msgid "Font Size"
2057
+ msgstr "Veľkosť písma"
2058
+
2059
+ #: modules/button/button.php:199 modules/callout/callout.php:575
2060
+ #: modules/cta/cta.php:322
2061
+ msgid "Round Corners"
2062
+ msgstr "Zaoblené rohy"
2063
+
2064
+ #: modules/callout/callout.php:14
2065
+ msgid "Callout"
2066
+ msgstr "Promo"
2067
+
2068
+ #: modules/callout/callout.php:15
2069
+ msgid "A heading and snippet of text with an optional link, icon and image."
2070
+ msgstr "Nadpis a text s možnosťou nastavenia ikonky, obrázku a odkazu."
2071
+
2072
+ #: modules/callout/callout.php:214
2073
+ #: modules/content-slider/content-slider.php:407
2074
+ #: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
2075
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
2076
+ #: modules/testimonials/testimonials.php:56
2077
+ #: modules/testimonials/testimonials.php:61
2078
+ msgid "Heading"
2079
+ msgstr "Nadpis"
2080
+
2081
+ #: modules/callout/callout.php:246
2082
+ msgid "Overall Alignment"
2083
+ msgstr "Celkové zarovnanie"
2084
+
2085
+ #: modules/callout/callout.php:253
2086
+ msgid "The alignment that will apply to all elements within the callout."
2087
+ msgstr "Zarovnanie, ktoré sa aplikuje na všetky elementy v tomto promo module."
2088
+
2089
+ #: modules/callout/callout.php:261 modules/cta/cta.php:145
2090
+ msgid "Heading Structure"
2091
+ msgstr "Štruktúra nadpisu"
2092
+
2093
+ #: modules/callout/callout.php:265
2094
+ #: modules/content-slider/content-slider.php:426 modules/cta/cta.php:149
2095
+ msgid "Heading Tag"
2096
+ msgstr "HTML tag nadpisu"
2097
+
2098
+ #: modules/callout/callout.php:278
2099
+ #: modules/content-slider/content-slider.php:439
2100
+ #: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
2101
+ #: modules/testimonials/testimonials.php:69
2102
+ msgid "Heading Size"
2103
+ msgstr "Veľkosť nadpisu"
2104
+
2105
+ #: modules/callout/callout.php:292 modules/cta/cta.php:176
2106
+ msgid "Heading Custom Size"
2107
+ msgstr "Vlastná veľkosť nadpisu"
2108
+
2109
+ #: modules/callout/callout.php:310
2110
+ msgid "Image Type"
2111
+ msgstr "Typ obrázku"
2112
+
2113
+ #: modules/callout/callout.php:313
2114
+ msgctxt "Image type."
2115
+ msgid "None"
2116
+ msgstr "Žiadny"
2117
+
2118
+ #: modules/callout/callout.php:338 modules/photo/photo.php:401
2119
+ #: modules/slideshow/slideshow.php:312
2120
+ msgid "Crop"
2121
+ msgstr "Orezanie"
2122
+
2123
+ #: modules/callout/callout.php:341
2124
+ msgctxt "Crop"
2125
+ msgid "None"
2126
+ msgstr "Žiadne"
2127
+
2128
+ #: modules/callout/callout.php:342 modules/photo/photo.php:405
2129
+ msgid "Landscape"
2130
+ msgstr "Krajinka"
2131
+
2132
+ #: modules/callout/callout.php:343 modules/photo/photo.php:406
2133
+ msgid "Panorama"
2134
+ msgstr "Panoráma"
2135
+
2136
+ #: modules/callout/callout.php:344 modules/photo/photo.php:407
2137
+ msgid "Portrait"
2138
+ msgstr "Portrét"
2139
+
2140
+ #: modules/callout/callout.php:345 modules/photo/photo.php:408
2141
+ msgid "Square"
2142
+ msgstr "Štvorec"
2143
+
2144
+ #: modules/callout/callout.php:346 modules/photo/photo.php:409
2145
+ msgid "Circle"
2146
+ msgstr "Kruh"
2147
+
2148
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
2149
+ msgid "Above Heading"
2150
+ msgstr "Nad nadpisom"
2151
+
2152
+ #: modules/callout/callout.php:355 modules/callout/callout.php:375
2153
+ msgid "Below Heading"
2154
+ msgstr "Pod nadpisom"
2155
+
2156
+ #: modules/callout/callout.php:356 modules/callout/callout.php:378
2157
+ msgid "Left of Text and Heading"
2158
+ msgstr "Vľavo od nadpisu a textu"
2159
+
2160
+ #: modules/callout/callout.php:357 modules/callout/callout.php:379
2161
+ msgid "Right of Text and Heading"
2162
+ msgstr "Vpravo od nadpisu a textu"
2163
+
2164
+ #: modules/callout/callout.php:376
2165
+ msgid "Left of Heading"
2166
+ msgstr "Vľavo od nadpisu"
2167
+
2168
+ #: modules/callout/callout.php:377
2169
+ msgid "Right of Heading"
2170
+ msgstr "Vpravo od nadpisu"
2171
+
2172
+ #: modules/callout/callout.php:385
2173
+ msgid "Icon Colors"
2174
+ msgstr "Farba ikonky"
2175
+
2176
+ #: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
2177
+ #: modules/icon/icon.php:87
2178
+ msgid "Hover Color"
2179
+ msgstr "Farba po prechode myšou"
2180
+
2181
+ #: modules/callout/callout.php:425
2182
+ msgid "Icon Structure"
2183
+ msgstr "Štruktúra ikonky"
2184
+
2185
+ #: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
2186
+ #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2187
+ msgid "Size"
2188
+ msgstr "Veľkosť"
2189
+
2190
+ #: modules/callout/callout.php:440
2191
+ #: modules/content-slider/content-slider.php:564
2192
+ msgid "Call To Action"
2193
+ msgstr "Výzva k akcii"
2194
+
2195
+ #: modules/callout/callout.php:448
2196
+ msgid ""
2197
+ "The link applies to the entire module. If choosing a call to action type "
2198
+ "below, this link will also be used for the text or button."
2199
+ msgstr ""
2200
+ "Odkaz sa aplikuje na celý modul. Ak určíte typ výzvy k akcii, tento odkaz sa "
2201
+ "použije aj na text alebo tlačidlo."
2202
+
2203
+ #: modules/callout/callout.php:468
2204
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:14
2205
+ msgid "Call to Action"
2206
+ msgstr "Výzva k akcii"
2207
+
2208
+ #: modules/callout/callout.php:475
2209
+ #: modules/content-slider/content-slider.php:593
2210
+ msgctxt "Call to action."
2211
+ msgid "None"
2212
+ msgstr "Žiadna"
2213
+
2214
+ #: modules/callout/callout.php:496
2215
+ #: modules/content-slider/content-slider.php:614
2216
+ msgid "Button Icon"
2217
+ msgstr "Ikonka tlačidla"
2218
+
2219
+ #: modules/callout/callout.php:502
2220
+ #: modules/content-slider/content-slider.php:620 modules/cta/cta.php:258
2221
+ msgid "Button Colors"
2222
+ msgstr "Farba tlačidla"
2223
+
2224
+ #: modules/callout/callout.php:546
2225
+ #: modules/content-slider/content-slider.php:656 modules/cta/cta.php:302
2226
+ msgid "Button Structure"
2227
+ msgstr "Štruktúra tlačidla"
2228
+
2229
+ #: modules/callout/callout.php:550
2230
+ msgid "Button Width"
2231
+ msgstr "Šírka tlačidla"
2232
+
2233
+ #: modules/contact-form/contact-form.php:14
2234
+ msgid "Contact Form"
2235
+ msgstr "Kontaktný formulár"
2236
+
2237
+ #: modules/contact-form/contact-form.php:15
2238
+ msgid "A very simple contact form."
2239
+ msgstr "Veľmi jednoduchý kontaktný formulár."
2240
+
2241
+ #: modules/contact-form/contact-form.php:36
2242
+ msgid "Contact Form Submission"
2243
+ msgstr "Odoslanie kontaktného formulára"
2244
+
2245
+ #: modules/contact-form/contact-form.php:64
2246
+ msgid "Send To Email"
2247
+ msgstr "Odoslať na e-mailovú adresu"
2248
+
2249
+ #: modules/contact-form/contact-form.php:66
2250
+ msgid "example@mail.com"
2251
+ msgstr "priklad@posta.com"
2252
+
2253
+ #: modules/contact-form/contact-form.php:67
2254
+ msgid "The contact form will send to this e-mail"
2255
+ msgstr "Kontaktný formulár sa odošle na túto e-mailovú adresu"
2256
+
2257
+ #: modules/contact-form/includes/frontend.php:4
2258
+ msgctxt "Contact form field label."
2259
+ msgid "Name"
2260
+ msgstr "Meno"
2261
+
2262
+ #: modules/contact-form/includes/frontend.php:5
2263
+ msgid "Please enter your name."
2264
+ msgstr "Zadajte vaše meno."
2265
+
2266
+ #: modules/contact-form/includes/frontend.php:6
2267
+ msgid "Your name"
2268
+ msgstr "Vaše meno"
2269
+
2270
+ #: modules/contact-form/includes/frontend.php:10
2271
+ msgid "Email"
2272
+ msgstr "E-mail"
2273
+
2274
+ #: modules/contact-form/includes/frontend.php:11
2275
+ msgid "Please enter a valid email."
2276
+ msgstr "Zadajte vašu e-mailovú adresu."
2277
+
2278
+ #: modules/contact-form/includes/frontend.php:12
2279
+ msgid "Your email"
2280
+ msgstr "Váš e-mail"
2281
+
2282
+ #: modules/contact-form/includes/frontend.php:16
2283
+ msgid "Your Message"
2284
+ msgstr "Vaša správa"
2285
+
2286
+ #: modules/contact-form/includes/frontend.php:17
2287
+ msgid "Please enter a message."
2288
+ msgstr "Zadajte vašu správu."
2289
+
2290
+ #: modules/contact-form/includes/frontend.php:18
2291
+ msgid "Your message"
2292
+ msgstr "Vaša správa"
2293
+
2294
+ #: modules/contact-form/includes/frontend.php:23
2295
+ msgid "Send"
2296
+ msgstr "Odoslať"
2297
+
2298
+ #: modules/contact-form/includes/frontend.php:24
2299
+ msgid "Message Sent!"
2300
+ msgstr "Správa bola odoslaná!"
2301
+
2302
+ #: modules/contact-form/includes/frontend.php:25
2303
+ msgid "Message failed. Please try again."
2304
+ msgstr "Správu nebolo možné odoslať. Skúste znovu."
2305
+
2306
+ #: modules/content-slider/content-slider.php:14
2307
+ msgid "Content Slider"
2308
+ msgstr "Prezentácia obsahu"
2309
+
2310
+ #: modules/content-slider/content-slider.php:15
2311
+ msgid "Displays multiple slides with an optional heading and call to action."
2312
+ msgstr "Zobrazí viacero snímkov s nepovinným nadpisom a výzvou k akcii."
2313
+
2314
+ #: modules/content-slider/content-slider.php:191 modules/map/map.php:41
2315
+ #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2316
+ msgid "Height"
2317
+ msgstr "Výška"
2318
+
2319
+ #: modules/content-slider/content-slider.php:196
2320
+ msgid ""
2321
+ "This setting is the minimum height of the content slider. Content will "
2322
+ "expand the height automatically."
2323
+ msgstr ""
2324
+ "Nastavte minimálnu výšku prezentácie obsahu. Ak je obsah prezentácie vyšší, "
2325
+ "automaticky sa výška zväčší."
2326
+
2327
+ #: modules/content-slider/content-slider.php:200
2328
+ #: modules/slideshow/slideshow.php:373
2329
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2330
+ msgid "Auto Play"
2331
+ msgstr "Automatické prehrávanie"
2332
+
2333
+ #: modules/content-slider/content-slider.php:214
2334
+ msgid "Show Play/Pause"
2335
+ msgstr "Zobraziť tlačidlo prehrať/pauza"
2336
+
2337
+ #: modules/content-slider/content-slider.php:234
2338
+ #: modules/testimonials/testimonials.php:102
2339
+ msgctxt "Transition type."
2340
+ msgid "Slide"
2341
+ msgstr "Vkĺznutie"
2342
+
2343
+ #: modules/content-slider/content-slider.php:248
2344
+ #: modules/testimonials/testimonials.php:121
2345
+ msgid "Show Arrows"
2346
+ msgstr "Zobraziť šípky"
2347
+
2348
+ #: modules/content-slider/content-slider.php:257
2349
+ #: modules/testimonials/testimonials.php:151
2350
+ msgid "Show Dots"
2351
+ msgstr "Zobraziť bodky"
2352
+
2353
+ #: modules/content-slider/content-slider.php:271
2354
+ msgid "Max Content Width"
2355
+ msgstr "Maximálna šírka obsahu"
2356
+
2357
+ #: modules/content-slider/content-slider.php:276
2358
+ msgid "The max width that the content area will be within your slides."
2359
+ msgstr "Maximálna šírka obsahu v snímkoch."
2360
+
2361
+ #: modules/content-slider/content-slider.php:283
2362
+ msgid "Slides"
2363
+ msgstr "Snímky"
2364
+
2365
+ #: modules/content-slider/content-slider.php:290
2366
+ msgid "Slide"
2367
+ msgstr "Snímok"
2368
+
2369
+ #: modules/content-slider/content-slider.php:305
2370
+ msgid "Slide Settings"
2371
+ msgstr "Nastavenia snímku"
2372
+
2373
+ #: modules/content-slider/content-slider.php:315
2374
+ msgid "Slide Label"
2375
+ msgstr "Nadpis snímku"
2376
+
2377
+ #: modules/content-slider/content-slider.php:316
2378
+ msgid ""
2379
+ "A label to identify this slide on the Slides tab of the Content Slider "
2380
+ "settings."
2381
+ msgstr ""
2382
+ "Názov, ktorým tento snímok identifikujete v nastaveniach Prezentácie obsahu"
2383
+
2384
+ #: modules/content-slider/content-slider.php:321
2385
+ msgid "Background Layout"
2386
+ msgstr "Rozloženie pozadia"
2387
+
2388
+ #: modules/content-slider/content-slider.php:327
2389
+ msgid "This setting is for the entire background of your slide."
2390
+ msgstr "Toto nastavenie sa aplikuje na celkové pozadie snímku."
2391
+
2392
+ #: modules/content-slider/content-slider.php:362
2393
+ msgid "Background Video Code"
2394
+ msgstr "Video kód pozadia"
2395
+
2396
+ #: modules/content-slider/content-slider.php:368
2397
+ msgid "Content Layout"
2398
+ msgstr "Rozloženie obsahu"
2399
+
2400
+ #: modules/content-slider/content-slider.php:374
2401
+ msgid ""
2402
+ "This allows you to add content over or in addition to the background "
2403
+ "selection above. The location of the content layout can be selected in the "
2404
+ "style tab."
2405
+ msgstr ""
2406
+ "Toto nastavenie umožní pridať obsah nad pozadie nastavené vyššie. Pozíciu "
2407
+ "obsahu nastavíte na záložke štýlu."
2408
+
2409
+ #: modules/content-slider/content-slider.php:377
2410
+ msgid "Text &amp; Photo"
2411
+ msgstr "Text a obrázok"
2412
+
2413
+ #: modules/content-slider/content-slider.php:378
2414
+ msgid "Text &amp; Video"
2415
+ msgstr "Text a video"
2416
+
2417
+ #: modules/content-slider/content-slider.php:379
2418
+ msgctxt "Content type."
2419
+ msgid "None"
2420
+ msgstr "Žiadny"
2421
+
2422
+ #: modules/content-slider/content-slider.php:402 modules/video/video.php:132
2423
+ msgid "Video Embed Code"
2424
+ msgstr "Kód vloženého videa"
2425
+
2426
+ #: modules/content-slider/content-slider.php:462
2427
+ msgid "Text Position"
2428
+ msgstr "Pozícia textu"
2429
+
2430
+ #: modules/content-slider/content-slider.php:468
2431
+ msgid ""
2432
+ "The position will move the content layout selections left, right or center "
2433
+ "over the background of the slide."
2434
+ msgstr ""
2435
+ "Pozíciou nastavíte, či sa obsah zobrazí vľavo, vpravo alebo v strede nad "
2436
+ "pozadím snímku."
2437
+
2438
+ #: modules/content-slider/content-slider.php:485
2439
+ msgid "Top Margin"
2440
+ msgstr "Odsadenie zhora"
2441
+
2442
+ #: modules/content-slider/content-slider.php:493
2443
+ msgid "Bottom Margin"
2444
+ msgstr "Odsadenie zdola"
2445
+
2446
+ #: modules/content-slider/content-slider.php:501
2447
+ msgid "Left Margin"
2448
+ msgstr "Odsadenie zľava"
2449
+
2450
+ #: modules/content-slider/content-slider.php:509
2451
+ msgid "Right Margin"
2452
+ msgstr "Odsadenie zprava"
2453
+
2454
+ #: modules/content-slider/content-slider.php:518
2455
+ msgid "Text Colors"
2456
+ msgstr "Farby textu"
2457
+
2458
+ #: modules/content-slider/content-slider.php:528
2459
+ msgid "Text Shadow"
2460
+ msgstr "Tieň textu"
2461
+
2462
+ #: modules/content-slider/content-slider.php:537
2463
+ #: modules/content-slider/content-slider.php:725
2464
+ msgid "Text Background Color"
2465
+ msgstr "Farba pozadia textu"
2466
+
2467
+ #: modules/content-slider/content-slider.php:538
2468
+ msgid ""
2469
+ "The color applies to the overlay behind text over the background selections."
2470
+ msgstr "Farba sa aplikuje na prekrytie snímku textom."
2471
+
2472
+ #: modules/content-slider/content-slider.php:543
2473
+ msgid "Text Background Opacity"
2474
+ msgstr "Nepriehľadnosť pozadia textu"
2475
+
2476
+ #: modules/content-slider/content-slider.php:551
2477
+ msgid "Text Background Height"
2478
+ msgstr "Výška pozadia textu"
2479
+
2480
+ #: modules/content-slider/content-slider.php:553
2481
+ msgid ""
2482
+ "Auto will allow the overlay to fit however long the text content is. 100% "
2483
+ "will fit the overlay to the top and bottom of the slide."
2484
+ msgstr ""
2485
+ "Automatické nastavenie prispôsobí prekrytie dĺžke textu obsahu. 100% "
2486
+ "natiahne prekrytie od vrchu po spodok snímky."
2487
+
2488
+ #: modules/content-slider/content-slider.php:555
2489
+ msgctxt "Background height."
2490
+ msgid "Auto"
2491
+ msgstr "Automatická"
2492
+
2493
+ #: modules/content-slider/content-slider.php:572
2494
+ msgid ""
2495
+ "The link applies to the entire slide. If choosing a call to action type "
2496
+ "below, this link will also be used for the text or button."
2497
+ msgstr ""
2498
+ "Odkaz sa aplikuje na celý snímok. Ak zvolíte výzvu k akcii, tento odkaz sa "
2499
+ "taktiež použije na text alebo tlačidlo."
2500
+
2501
+ #: modules/content-slider/content-slider.php:676
2502
+ msgid "Border Radius"
2503
+ msgstr "Polomer okrajov"
2504
+
2505
+ #: modules/content-slider/content-slider.php:687
2506
+ msgctxt "Module settings form tab. Display on mobile devices."
2507
+ msgid "Mobile"
2508
+ msgstr "Mobilné zobrazenie"
2509
+
2510
+ #: modules/content-slider/content-slider.php:690
2511
+ msgid "Mobile Photo"
2512
+ msgstr "Obrázok pre mobilné zariadenia"
2513
+
2514
+ #: modules/content-slider/content-slider.php:696
2515
+ msgid ""
2516
+ "You can choose a different photo that the slide will change to on mobile "
2517
+ "devices or no photo if desired."
2518
+ msgstr ""
2519
+ "Môžete zvoliť zobrazenie odlišného obrázku na mobilných zariadeniach, alebo "
2520
+ "obrázok odstrániť."
2521
+
2522
+ #: modules/content-slider/content-slider.php:698
2523
+ msgid "Use Main Photo"
2524
+ msgstr "Použiť hlavný obrázok"
2525
+
2526
+ #: modules/content-slider/content-slider.php:699
2527
+ msgid "Choose Another Photo"
2528
+ msgstr "Zvoliť odlišný obrázok"
2529
+
2530
+ #: modules/content-slider/content-slider.php:700
2531
+ msgid "No Photo"
2532
+ msgstr "Žiaden obrázok"
2533
+
2534
+ #: modules/content-slider/content-slider.php:715
2535
+ msgid "Mobile Text Colors"
2536
+ msgstr "Farba textu na mobilných zariadeniach"
2537
+
2538
+ #: modules/cta/cta.php:15
2539
+ msgid "Display a heading, subheading and a button."
2540
+ msgstr "Zobrazí nadpis, podnadpis a tlačidlo."
2541
+
2542
+ #: modules/cta/cta.php:73
2543
+ msgid "Ready to find out more?"
2544
+ msgstr "Ste pripravení dozvedieť sa viac?"
2545
+
2546
+ #: modules/cta/cta.php:88
2547
+ msgid "Drop us a line today for a free quote!"
2548
+ msgstr "Napíšte nám ešte dnes pre bezplatnú konzultáciu!"
2549
+
2550
+ #: modules/cta/cta.php:106 modules/gallery/gallery.php:220
2551
+ #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
2552
+ #: modules/testimonials/testimonials.php:37
2553
+ #: modules/woocommerce/woocommerce.php:57
2554
+ msgid "Layout"
2555
+ msgstr "Rozloženie"
2556
+
2557
+ #: modules/cta/cta.php:109
2558
+ msgid "Inline"
2559
+ msgstr "V jednom riadku"
2560
+
2561
+ #: modules/cta/cta.php:110
2562
+ msgid "Stacked"
2563
+ msgstr "Naskladané"
2564
+
2565
+ #: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
2566
+ msgid "Spacing"
2567
+ msgstr "Rozostupy"
2568
+
2569
+ #: modules/cta/cta.php:201
2570
+ msgid "Background Opacity"
2571
+ msgstr "Nepriehľadnosť pozadia"
2572
+
2573
+ #: modules/cta/cta.php:234
2574
+ msgid "Button Link"
2575
+ msgstr "Odkaz tlačidla"
2576
+
2577
+ #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
2578
+ msgid "Gallery"
2579
+ msgstr "Galéria"
2580
+
2581
+ #: modules/gallery/gallery.php:15
2582
+ msgid "Display multiple photos in a gallery view."
2583
+ msgstr "Vytvorí galériu z viacerých obrázkov."
2584
+
2585
+ #: modules/gallery/gallery.php:223
2586
+ msgid "Collage"
2587
+ msgstr "Koláž"
2588
+
2589
+ #: modules/gallery/gallery.php:224
2590
+ msgctxt "Gallery layout: thumbnails."
2591
+ msgid "Thumbs"
2592
+ msgstr "Miniatúry"
2593
+
2594
+ #: modules/gallery/gallery.php:260
2595
+ msgid "Photo Size"
2596
+ msgstr "Veľkosť obrázku"
2597
+
2598
+ #: modules/gallery/gallery.php:263
2599
+ msgctxt "Photo size."
2600
+ msgid "Small"
2601
+ msgstr "Malý"
2602
+
2603
+ #: modules/gallery/gallery.php:264
2604
+ msgctxt "Photo size."
2605
+ msgid "Medium"
2606
+ msgstr "Stredný"
2607
+
2608
+ #: modules/gallery/gallery.php:265
2609
+ msgctxt "Photo size."
2610
+ msgid "Large"
2611
+ msgstr "Veľký"
2612
+
2613
+ #: modules/gallery/gallery.php:270
2614
+ msgid "Photo Spacing"
2615
+ msgstr "Rozostupy obrázkov"
2616
+
2617
+ #: modules/gallery/gallery.php:278
2618
+ msgid "Show Captions"
2619
+ msgstr "Zobraziť popisok"
2620
+
2621
+ #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
2622
+ msgid "Never"
2623
+ msgstr "Nikdy"
2624
+
2625
+ #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
2626
+ msgid "On Hover"
2627
+ msgstr "Po prechode myšou"
2628
+
2629
+ #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
2630
+ msgid "Below Photo"
2631
+ msgstr "Pod obrázkom"
2632
+
2633
+ #: modules/gallery/gallery.php:285
2634
+ msgid ""
2635
+ "The caption pulls from whatever text you put in the caption area in the "
2636
+ "media manager for each image. The caption is also pulled directly from "
2637
+ "SmugMug if you have captions set in your gallery."
2638
+ msgstr ""
2639
+ "Popisok zobrazí text, ktorý ste zadali do poľa \"Popisok\" pre daný obrázok "
2640
+ "v správcovi multimédií. Ak používate SmugMug galériu, popisok obrázku sa "
2641
+ "automaticky nastaví z popisku v SmugMug galérii."
2642
+
2643
+ #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
2644
+ msgid "Click Action"
2645
+ msgstr "Akcia kliknutia"
2646
+
2647
+ #: modules/gallery/gallery.php:292
2648
+ msgctxt "Click action."
2649
+ msgid "None"
2650
+ msgstr "Žiadna"
2651
+
2652
+ #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
2653
+ msgid "Lightbox"
2654
+ msgstr "Lightbox (zväčšenie obrázkov)"
2655
+
2656
+ #: modules/gallery/gallery.php:294
2657
+ msgid "Photo Link"
2658
+ msgstr "Odkaz na obrázok"
2659
+
2660
+ #: modules/heading/heading.php:15
2661
+ msgid "Display a title/page heading."
2662
+ msgstr "Zobraziť nadpis stránky"
2663
+
2664
+ #: modules/heading/heading.php:16 modules/photo/photo.php:27
2665
+ #: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
2666
+ #: modules/video/video.php:21
2667
+ msgid "Basic Modules"
2668
+ msgstr "Základné moduly"
2669
+
2670
+ #: modules/heading/heading.php:101
2671
+ msgid "HTML Tag"
2672
+ msgstr "HTML tag"
2673
+
2674
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
2675
+ msgid "Custom Font Size"
2676
+ msgstr "Vlastná veľkosť písma"
2677
+
2678
+ #: modules/heading/heading.php:137
2679
+ msgid "Mobile Structure"
2680
+ msgstr "Mobilné zobrazenie"
2681
+
2682
+ #: modules/heading/heading.php:158
2683
+ msgid "Custom Alignment"
2684
+ msgstr "Vlastné zarovnanie"
2685
+
2686
+ #: modules/html/html.php:14
2687
+ msgid "HTML"
2688
+ msgstr "HTML"
2689
+
2690
+ #: modules/html/html.php:15
2691
+ msgid "Display raw HTML code."
2692
+ msgstr "Zobrazí zadaný HTML kód."
2693
+
2694
+ #: modules/icon-group/icon-group.php:14
2695
+ msgid "Icon Group"
2696
+ msgstr "Skupina ikoniek"
2697
+
2698
+ #: modules/icon-group/icon-group.php:15
2699
+ msgid "Display a group of linked Font Awesome icons."
2700
+ msgstr "Zobrazí zvolenú skupinu ikoniek Font Awesome."
2701
+
2702
+ #: modules/icon-group/icon-group.php:27
2703
+ msgid "Icons"
2704
+ msgstr "Ikonky"
2705
+
2706
+ #: modules/icon-group/icon-group.php:125
2707
+ msgid "Add Icon"
2708
+ msgstr "Pridať ikonku"
2709
+
2710
+ #: modules/icon/icon.php:15
2711
+ msgid "Display an icon and optional title."
2712
+ msgstr "Zobrazí ikonku a nepovinný dodatočný nadpis."
2713
+
2714
+ #: modules/map/map.php:14
2715
+ msgid "Map"
2716
+ msgstr "Mapa"
2717
+
2718
+ #: modules/map/map.php:15
2719
+ msgid "Display a Google map."
2720
+ msgstr "Zobrazí mapu použitím Google Máp."
2721
+
2722
+ #: modules/map/map.php:33
2723
+ msgid "Address"
2724
+ msgstr "Adresa"
2725
+
2726
+ #: modules/map/map.php:34
2727
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
2728
+ msgstr "Bratislava, Slovenská republika"
2729
+
2730
+ #: modules/photo/photo.php:26
2731
+ msgid "Upload a photo or display one from the media library."
2732
+ msgstr "Nahrajte obrázok alebo použite existujúci z multimediálnej knižnice."
2733
+
2734
+ #: modules/photo/photo.php:375
2735
+ msgid "Photo Source"
2736
+ msgstr "Zdroj obrázku"
2737
+
2738
+ #: modules/photo/photo.php:379 modules/photo/photo.php:451
2739
+ msgid "URL"
2740
+ msgstr "URL adresa"
2741
+
2742
+ #: modules/photo/photo.php:396
2743
+ msgid "Photo URL"
2744
+ msgstr "URL adresa obrázku"
2745
+
2746
+ #: modules/photo/photo.php:397
2747
+ msgid "http://www.example.com/my-photo.jpg"
2748
+ msgstr "http://www.napriklad.com/moj-obrazok.jpg"
2749
+
2750
+ #: modules/photo/photo.php:404
2751
+ msgctxt "Crop."
2752
+ msgid "None"
2753
+ msgstr "Žiadne"
2754
+
2755
+ #: modules/photo/photo.php:425 modules/photo/photo.php:439
2756
+ msgid "Caption"
2757
+ msgstr "Popisok"
2758
+
2759
+ #: modules/photo/photo.php:429
2760
+ msgid "Show Caption"
2761
+ msgstr "Zobraziť popisok"
2762
+
2763
+ #: modules/photo/photo.php:448
2764
+ msgid "Link Type"
2765
+ msgstr "Typ odkazu"
2766
+
2767
+ #: modules/photo/photo.php:450
2768
+ msgctxt "Link type."
2769
+ msgid "None"
2770
+ msgstr "Žiadny"
2771
+
2772
+ #: modules/photo/photo.php:453
2773
+ msgid "Photo File"
2774
+ msgstr "Súbor obrázku"
2775
+
2776
+ #: modules/photo/photo.php:464
2777
+ msgid ""
2778
+ "Link type applies to how the image should be linked on click. You can choose "
2779
+ "a specific URL, the individual photo or a separate page with the photo."
2780
+ msgstr ""
2781
+ "Typ odkazu určí kam budete presmerovaný po kliknutí na obrázok. Môžete "
2782
+ "nastaviť špecifickú URL adresu, alebo sa zobrazí daný obrázok alebo stránka "
2783
+ "s daným obrázkom."
2784
+
2785
+ #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
2786
+ msgid "Link URL"
2787
+ msgstr "Odkaz URL"
2788
+
2789
+ #: modules/post-grid/includes/frontend.php:41
2790
+ msgid "No posts found."
2791
+ msgstr "Nenašli sa žiadne príspevky."
2792
+
2793
+ #: modules/post-grid/includes/post-feed.php:14
2794
+ #: modules/post-grid/includes/post-grid.php:24
2795
+ #, php-format
2796
+ msgctxt "%s stands for author name."
2797
+ msgid "By %s"
2798
+ msgstr "Autor: %s"
2799
+
2800
+ #: modules/post-grid/post-grid.php:14
2801
+ msgid "Posts"
2802
+ msgstr "Články"
2803
+
2804
+ #: modules/post-grid/post-grid.php:15
2805
+ msgid "Display a grid of your WordPress posts."
2806
+ msgstr "Zobrazí mriežku WordPress článkov."
2807
+
2808
+ #: modules/post-grid/post-grid.php:51
2809
+ msgid "Layout Style"
2810
+ msgstr "Štýl rozloženia"
2811
+
2812
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
2813
+ msgid "Grid"
2814
+ msgstr "Mriežka"
2815
+
2816
+ #: modules/post-grid/post-grid.php:56
2817
+ msgid "Feed"
2818
+ msgstr "Zoznam"
2819
+
2820
+ #: modules/post-grid/post-grid.php:71
2821
+ msgid "Pagination Style"
2822
+ msgstr "Štýl stránkovania"
2823
+
2824
+ #: modules/post-grid/post-grid.php:74
2825
+ msgid "Numbers"
2826
+ msgstr "Čísla"
2827
+
2828
+ #: modules/post-grid/post-grid.php:76
2829
+ msgctxt "Pagination style."
2830
+ msgid "None"
2831
+ msgstr "Žiadne"
2832
+
2833
+ #: modules/post-grid/post-grid.php:81
2834
+ msgid "Posts Per Page"
2835
+ msgstr "Počet článkov na stránku"
2836
+
2837
+ #: modules/post-grid/post-grid.php:92
2838
+ msgid "Post Width"
2839
+ msgstr "Šírka článkov"
2840
+
2841
+ #: modules/post-grid/post-grid.php:100
2842
+ msgid "Post Spacing"
2843
+ msgstr "Rozostupy článkov"
2844
+
2845
+ #: modules/post-grid/post-grid.php:109
2846
+ msgid "Featured Image"
2847
+ msgstr "Prezentačný obrázok"
2848
+
2849
+ #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
2850
+ #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
2851
+ #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
2852
+ msgid "Show"
2853
+ msgstr "Zobraziť"
2854
+
2855
+ #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
2856
+ #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
2857
+ #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
2858
+ msgid "Hide"
2859
+ msgstr "Skryť"
2860
+
2861
+ #: modules/post-grid/post-grid.php:130
2862
+ msgid "Above Text"
2863
+ msgstr "Nad textom"
2864
+
2865
+ #: modules/post-grid/post-grid.php:131
2866
+ msgid "Beside Text"
2867
+ msgstr "Vedľa textu"
2868
+
2869
+ #: modules/post-grid/post-grid.php:142
2870
+ msgid "Post Info"
2871
+ msgstr "Informácie o článku"
2872
+
2873
+ #: modules/post-grid/post-grid.php:169
2874
+ msgid "Date Format"
2875
+ msgstr "Formát dátumu"
2876
+
2877
+ #: modules/post-grid/post-grid.php:185
2878
+ msgid "Comments"
2879
+ msgstr "Komentáre"
2880
+
2881
+ #: modules/post-grid/post-grid.php:213
2882
+ msgid "More Link"
2883
+ msgstr "Odkaz \"Čítať ďalej\""
2884
+
2885
+ #: modules/post-grid/post-grid.php:227
2886
+ msgid "More Link Text"
2887
+ msgstr "Text odkazu \"Čítať ďalej\""
2888
+
2889
+ #: modules/post-grid/post-grid.php:228
2890
+ msgid "Read More"
2891
+ msgstr "Čítať ďalej"
2892
+
2893
+ #: modules/pricing-table/pricing-table.php:14
2894
+ msgid "Pricing Table"
2895
+ msgstr "Tabuľka cien"
2896
+
2897
+ #: modules/pricing-table/pricing-table.php:15
2898
+ msgid "A simple pricing table generator."
2899
+ msgstr "Jednoduchý generátor tabuľky cien."
2900
+
2901
+ #: modules/pricing-table/pricing-table.php:26
2902
+ msgid "Pricing Boxes"
2903
+ msgstr "Cenové boxíky"
2904
+
2905
+ #: modules/pricing-table/pricing-table.php:33
2906
+ msgid "Pricing Box"
2907
+ msgstr "Cenový box"
2908
+
2909
+ #: modules/pricing-table/pricing-table.php:50
2910
+ msgid "Box Spacing"
2911
+ msgstr "Rozostupy boxíkov"
2912
+
2913
+ #: modules/pricing-table/pricing-table.php:53
2914
+ #: modules/testimonials/testimonials.php:40
2915
+ msgid "Wide"
2916
+ msgstr "Široké"
2917
+
2918
+ #: modules/pricing-table/pricing-table.php:54
2919
+ msgid "Tight"
2920
+ msgstr "Úzke"
2921
+
2922
+ #: modules/pricing-table/pricing-table.php:59
2923
+ msgid "Features Min Height"
2924
+ msgstr "Minimálna výška vlastností"
2925
+
2926
+ #: modules/pricing-table/pricing-table.php:63
2927
+ msgid ""
2928
+ "Use this to normalize the height of your boxes when they have different "
2929
+ "numbers of features."
2930
+ msgstr ""
2931
+ "Použite toto nastavenie pre normalizáciu výšky boxíkov, ak obsahujú rôzny "
2932
+ "počet vlastností."
2933
+
2934
+ #: modules/pricing-table/pricing-table.php:67
2935
+ msgid "Border Size"
2936
+ msgstr "Veľkosť okraja"
2937
+
2938
+ #: modules/pricing-table/pricing-table.php:70
2939
+ msgctxt "Border size."
2940
+ msgid "Wide"
2941
+ msgstr "Široký"
2942
+
2943
+ #: modules/pricing-table/pricing-table.php:71
2944
+ msgctxt "Border size."
2945
+ msgid "Tight"
2946
+ msgstr "Úzky"
2947
+
2948
+ #: modules/pricing-table/pricing-table.php:84
2949
+ msgid "Add Pricing Box"
2950
+ msgstr "Pridať cenový box"
2951
+
2952
+ #: modules/pricing-table/pricing-table.php:98
2953
+ msgid "Title Size"
2954
+ msgstr "Veľkosť nadpisu"
2955
+
2956
+ #: modules/pricing-table/pricing-table.php:107
2957
+ msgid "Price Box"
2958
+ msgstr "Cenový box"
2959
+
2960
+ #: modules/pricing-table/pricing-table.php:111
2961
+ msgid "Price"
2962
+ msgstr "Cena"
2963
+
2964
+ #: modules/pricing-table/pricing-table.php:115
2965
+ msgid "Duration"
2966
+ msgstr "Trvanie"
2967
+
2968
+ #: modules/pricing-table/pricing-table.php:116
2969
+ msgid "per Year"
2970
+ msgstr "Ročne"
2971
+
2972
+ #: modules/pricing-table/pricing-table.php:120
2973
+ msgid "Price Size"
2974
+ msgstr "Veľkosť ceny"
2975
+
2976
+ #: modules/pricing-table/pricing-table.php:133
2977
+ msgid "Button Text"
2978
+ msgstr "Text tlačidla"
2979
+
2980
+ #: modules/pricing-table/pricing-table.php:137
2981
+ msgid "Button URL"
2982
+ msgstr "URL odkaz tlačidla"
2983
+
2984
+ #: modules/pricing-table/pricing-table.php:142
2985
+ msgctxt "Price features displayed in pricing box."
2986
+ msgid "Features"
2987
+ msgstr "Vlastnosti ceny"
2988
+
2989
+ #: modules/pricing-table/pricing-table.php:147
2990
+ msgid "One feature per line. HTML is okay."
2991
+ msgstr "Jedna vlastnosť na každý riadok. Môžete použiť HTML."
2992
+
2993
+ #: modules/pricing-table/pricing-table.php:162
2994
+ msgid "Box Background"
2995
+ msgstr "Pozadie boxu"
2996
+
2997
+ #: modules/pricing-table/pricing-table.php:167
2998
+ msgid "Box Foreground"
2999
+ msgstr "Popredie boxu"
3000
+
3001
+ #: modules/pricing-table/pricing-table.php:173
3002
+ msgid "Accent Color"
3003
+ msgstr "Akcentovaná farba"
3004
+
3005
+ #: modules/pricing-table/pricing-table.php:178
3006
+ msgid "Accent Text Color"
3007
+ msgstr "Farba textu na akcentovej farbe"
3008
+
3009
+ #: modules/pricing-table/pricing-table.php:182
3010
+ msgid "Box Top Margin"
3011
+ msgstr "Odsadenie boxu zhora"
3012
+
3013
+ #: modules/rich-text/rich-text.php:15
3014
+ msgid "A WYSIWYG text editor."
3015
+ msgstr "Textový editor."
3016
+
3017
+ #: modules/separator/separator.php:14
3018
+ msgid "Separator"
3019
+ msgstr "Oddeľovač"
3020
+
3021
+ #: modules/separator/separator.php:15
3022
+ msgid "A divider line to separate content."
3023
+ msgstr "Deliaca čiara pre oddelenie obsahu."
3024
+
3025
+ #: modules/separator/separator.php:85
3026
+ msgid ""
3027
+ "The type of border to use. Double borders must have a height of at least 3px "
3028
+ "to render properly."
3029
+ msgstr ""
3030
+ "Typ použitého okraja. Dvojité okraje musia mať výšku aspoň 3px pre správne "
3031
+ "zobrazenie."
3032
+
3033
+ #: modules/sidebar/includes/settings-general.php:5
3034
+ #: modules/sidebar/sidebar.php:14
3035
+ msgid "Sidebar"
3036
+ msgstr "Bočný panel"
3037
+
3038
+ #: modules/sidebar/sidebar.php:15
3039
+ msgid ""
3040
+ "Display a WordPress sidebar that has been registered by the current theme."
3041
+ msgstr "Zobrazí jeden z aktuálne registrovaných bočných panelov WordPress."
3042
+
3043
+ #: modules/slideshow/slideshow.php:14
3044
+ msgid "Slideshow"
3045
+ msgstr "Prezentácia obrázkov"
3046
+
3047
+ #: modules/slideshow/slideshow.php:15
3048
+ msgid "Display multiple photos in a slideshow view."
3049
+ msgstr "Zobrazí prezentáciu viacerých obrázkov."
3050
+
3051
+ #: modules/slideshow/slideshow.php:302
3052
+ msgid "Skin Color"
3053
+ msgstr "Farba vzhľadu"
3054
+
3055
+ #: modules/slideshow/slideshow.php:305
3056
+ msgctxt "Color."
3057
+ msgid "Light"
3058
+ msgstr "Svetlá"
3059
+
3060
+ #: modules/slideshow/slideshow.php:306
3061
+ msgctxt "Color."
3062
+ msgid "Dark"
3063
+ msgstr "Tmavá"
3064
+
3065
+ #: modules/slideshow/slideshow.php:308
3066
+ msgid ""
3067
+ "If your overall theme/images are lighter in color, light will display "
3068
+ "buttons in a darker color scheme and vice versa for dark."
3069
+ msgstr ""
3070
+ "Ak sú vaša téma alebo obrázky svetlejšej farby, voľbou svetlého vzhľadu "
3071
+ "zabezpečíte zobrazenie tmavších tlačidiel. Pri voľbe tmavšieho vzhľadu je to "
3072
+ "opačne."
3073
+
3074
+ #: modules/slideshow/slideshow.php:318
3075
+ msgid ""
3076
+ "Crop set to no will fit the slideshow images to the height you specify and "
3077
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
3078
+ "images to all sides of the content area while cropping the left and right to "
3079
+ "fit the height you specify."
3080
+ msgstr ""
3081
+ "Ak vypnete orezanie, obrázky sa prispôsobia nastavenej výške, kdežto ak "
3082
+ "povolíte orezanie, obrázky sa natiahnu a orežú na požadovanú výšku."
3083
+
3084
+ #: modules/slideshow/slideshow.php:322
3085
+ msgid "Disable Right-Click"
3086
+ msgstr "Zakázať kliknutie pravým tlačidlom myši"
3087
+
3088
+ #: modules/slideshow/slideshow.php:342
3089
+ msgctxt "Click action type."
3090
+ msgid "None"
3091
+ msgstr "Žiaden"
3092
+
3093
+ #: modules/slideshow/slideshow.php:366
3094
+ msgid "Playback"
3095
+ msgstr "Prehrávanie"
3096
+
3097
+ #: modules/slideshow/slideshow.php:392
3098
+ msgctxt "Slideshow transition."
3099
+ msgid "None"
3100
+ msgstr "Žiaden"
3101
+
3102
+ #: modules/slideshow/slideshow.php:429
3103
+ msgid "Controls"
3104
+ msgstr "Ovládanie"
3105
+
3106
+ #: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
3107
+ msgid "Navigation Arrows"
3108
+ msgstr "Navigačné šípky"
3109
+
3110
+ #: modules/slideshow/slideshow.php:442
3111
+ msgid ""
3112
+ "Navigational arrows allow the visitor to freely move through the images in "
3113
+ "your slideshow. These are larger arrows that overlay your slideshow images "
3114
+ "and are separate from the control bar navigational arrows."
3115
+ msgstr ""
3116
+ "Navigačné šípky umožňujú návštevníkom vašej stránky voľný pohyb medzi "
3117
+ "obrázkami prezentácie. Jedná sa o väčšie šípky prekrývajúce obrázky, nie "
3118
+ "teda o navigačné šípky v ovládacom paneli."
3119
+
3120
+ #: modules/slideshow/slideshow.php:447
3121
+ msgid "Control Bar"
3122
+ msgstr "Ovládací panel"
3123
+
3124
+ #: modules/slideshow/slideshow.php:451
3125
+ msgid "Nav Type"
3126
+ msgstr "Typ navigácie"
3127
+
3128
+ #: modules/slideshow/slideshow.php:454
3129
+ msgctxt "Nav type."
3130
+ msgid "None"
3131
+ msgstr "Žiadna"
3132
+
3133
+ #: modules/slideshow/slideshow.php:455
3134
+ msgid "Buttons"
3135
+ msgstr "Tlačidlá"
3136
+
3137
+ #: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
3138
+ msgid "Thumbs"
3139
+ msgstr "Miniatúry"
3140
+
3141
+ #: modules/slideshow/slideshow.php:471
3142
+ msgid "Nav Position"
3143
+ msgstr "Pozícia navigácie"
3144
+
3145
+ #: modules/slideshow/slideshow.php:481
3146
+ msgid "Control Bar Buttons"
3147
+ msgstr "Tlačidlá ovládacieho panelu"
3148
+
3149
+ #: modules/slideshow/slideshow.php:494
3150
+ msgid "Play Button"
3151
+ msgstr "Tlačidlo prehrávania"
3152
+
3153
+ #: modules/slideshow/slideshow.php:503
3154
+ msgid "Fullscreen Button"
3155
+ msgstr "Tlačidlo celej obrazovky"
3156
+
3157
+ #: modules/slideshow/slideshow.php:512
3158
+ msgid "Photo Count"
3159
+ msgstr "Počet obrázkov"
3160
+
3161
+ #: modules/slideshow/slideshow.php:521
3162
+ msgid "Thumbs Button"
3163
+ msgstr "Tlačidlo miniatúr"
3164
+
3165
+ #: modules/slideshow/slideshow.php:530
3166
+ msgid "Caption Button"
3167
+ msgstr "Tlačidlo popisku"
3168
+
3169
+ #: modules/slideshow/slideshow.php:539
3170
+ msgid "Social Button"
3171
+ msgstr "Tlačidlo sociálnych sietí"
3172
+
3173
+ #: modules/slideshow/slideshow.php:549
3174
+ msgid "Control Bar Overlay"
3175
+ msgstr "Prekrytie ovládacieho panelu"
3176
+
3177
+ #: modules/slideshow/slideshow.php:553
3178
+ msgid "Overlay Enabled"
3179
+ msgstr "Prekrytie aktivované"
3180
+
3181
+ #: modules/slideshow/slideshow.php:564
3182
+ msgid ""
3183
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
3184
+ "your slideshow images or site below the slideshow completely."
3185
+ msgstr ""
3186
+ "Prekrytie ovládacieho panelu určí, či tlačidlá ovládacieho panelu prekryjú "
3187
+ "prezentáciu obrázkov alebo budú umiestnené mimo samotnej prezentácie."
3188
+
3189
+ #: modules/slideshow/slideshow.php:568
3190
+ msgid "Overlay Hide"
3191
+ msgstr "Skrývanie prekrytia"
3192
+
3193
+ #: modules/slideshow/slideshow.php:574
3194
+ msgid ""
3195
+ "Overlay hide will hide the control bar after however many seconds you "
3196
+ "specify below. They will reappear upon mouse over."
3197
+ msgstr ""
3198
+ "Skrývanie prekrytia zabezpečí skrytie ovládacieho panelu po určitej dobe. "
3199
+ "Ovládací panel sa znovu zobrazí po prechode myšou."
3200
+
3201
+ #: modules/slideshow/slideshow.php:578
3202
+ msgid "Overlay Hide Delay"
3203
+ msgstr "Oneskorenie skrývania prekrytia"
3204
+
3205
+ #: modules/slideshow/slideshow.php:590
3206
+ msgid "Thumbs Size"
3207
+ msgstr "Veľkosť miniatúr"
3208
+
3209
+ #: modules/slideshow/slideshow.php:599
3210
+ msgid "Social"
3211
+ msgstr "Sociálne siete"
3212
+
3213
+ #: modules/slideshow/slideshow.php:603
3214
+ msgid "Facebook Button"
3215
+ msgstr "Tlačidlo Facebook"
3216
+
3217
+ #: modules/slideshow/slideshow.php:615
3218
+ msgid "Twitter Button"
3219
+ msgstr "Tlačidlo Twitter"
3220
+
3221
+ #: modules/slideshow/slideshow.php:627
3222
+ msgid "Google Plus Button"
3223
+ msgstr "Tlačidlo Google Plus"
3224
+
3225
+ #: modules/slideshow/slideshow.php:639
3226
+ msgid "Pinterest Button"
3227
+ msgstr "Tlačidlo Pinterest"
3228
+
3229
+ #: modules/social-buttons/social-buttons.php:14
3230
+ msgid "Social Buttons"
3231
+ msgstr "Tlačidlá sociálnych sietí"
3232
+
3233
+ #: modules/social-buttons/social-buttons.php:15
3234
+ msgid "Displays social buttons."
3235
+ msgstr "Zobrazí tlačidlá sociálnych sietí."
3236
+
3237
+ #: modules/social-buttons/social-buttons.php:71
3238
+ msgid "Target URL"
3239
+ msgstr "URL odkaz cieľa"
3240
+
3241
+ #: modules/social-buttons/social-buttons.php:75
3242
+ msgid "Current Page"
3243
+ msgstr "Aktuálna stánka"
3244
+
3245
+ #: modules/social-buttons/social-buttons.php:82
3246
+ msgid ""
3247
+ "The Target URL field correlates to the page you would like your social icons "
3248
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
3249
+ "whatever you put in this field."
3250
+ msgstr ""
3251
+ "URL odkaz cieľa určí, ktorá stránka bude zdieľaná danými ikonkami sociálnych "
3252
+ "sietí. Napríklad, ak zobrazíte Facebook ikonku, návštevník akoby stlačil "
3253
+ "tlačidlo \"Like\" pre odkaz, ktorý tu nastavíte."
3254
+
3255
+ #: modules/social-buttons/social-buttons.php:89
3256
+ msgid "Custom URL"
3257
+ msgstr "Vlastný odkaz URL"
3258
+
3259
+ #: modules/social-buttons/social-buttons.php:107
3260
+ msgid "Show Facebook"
3261
+ msgstr "Zobraziť Facebook"
3262
+
3263
+ #: modules/social-buttons/social-buttons.php:116
3264
+ msgid "Show Twitter"
3265
+ msgstr "Zobraziť Twitter"
3266
+
3267
+ #: modules/social-buttons/social-buttons.php:125
3268
+ msgid "Show Google+"
3269
+ msgstr "Zobraziť Google+"
3270
+
3271
+ #: modules/tabs/tabs.php:14
3272
+ msgid "Tabs"
3273
+ msgstr "Záložky"
3274
+
3275
+ #: modules/tabs/tabs.php:15
3276
+ msgid "Display a collection of tabbed content."
3277
+ msgstr "Zobrazí súbor záložiek s obsahom."
3278
+
3279
+ #: modules/tabs/tabs.php:55
3280
+ msgid "Horizontal"
3281
+ msgstr "Horizontálne"
3282
+
3283
+ #: modules/tabs/tabs.php:56
3284
+ msgid "Vertical"
3285
+ msgstr "Vertikálne"
3286
+
3287
+ #: modules/testimonials/testimonials.php:14
3288
+ #: modules/testimonials/testimonials.php:60
3289
+ #: modules/testimonials/testimonials.php:174
3290
+ msgid "Testimonials"
3291
+ msgstr "Posudky"
3292
+
3293
+ #: modules/testimonials/testimonials.php:15
3294
+ msgid "An animated tesimonials area."
3295
+ msgstr "Animovaná oblasť posudkov."
3296
+
3297
+ #: modules/testimonials/testimonials.php:41
3298
+ msgid "Compact"
3299
+ msgstr "Kompaktné"
3300
+
3301
+ #: modules/testimonials/testimonials.php:51
3302
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
3303
+ msgstr ""
3304
+ "Široké zobrazenie je pre 1 stĺpec v riadku, kompaktné je pre viacero stĺpcov "
3305
+ "v riadku."
3306
+
3307
+ #: modules/testimonials/testimonials.php:78
3308
+ msgid "Slider Settings"
3309
+ msgstr "Nastavnie prezentácie"
3310
+
3311
+ #: modules/testimonials/testimonials.php:135
3312
+ msgid "Arrow Color"
3313
+ msgstr "Farba šípky"
3314
+
3315
+ #: modules/testimonials/testimonials.php:165
3316
+ msgid "Dot Color"
3317
+ msgstr "Farba bodky"
3318
+
3319
+ #: modules/testimonials/testimonials.php:181
3320
+ msgid "Testimonial"
3321
+ msgstr "Posudok"
3322
+
3323
+ #: modules/testimonials/testimonials.php:197
3324
+ msgid "Add Testimonial"
3325
+ msgstr "Pridať posudok"
3326
+
3327
+ #: modules/video/video.php:20
3328
+ msgid "Render a WordPress or embedable video."
3329
+ msgstr "Zobrazí WordPress alebo vložené video."
3330
+
3331
+ #: modules/video/video.php:83
3332
+ msgid "Video Type"
3333
+ msgstr "Typ videa"
3334
+
3335
+ #: modules/video/video.php:87
3336
+ msgid "Embed"
3337
+ msgstr "Vložené"
3338
+
3339
+ #: modules/video/video.php:104
3340
+ msgctxt "Video preview/fallback image."
3341
+ msgid "Poster"
3342
+ msgstr "Náhľad"
3343
+
3344
+ #: modules/video/video.php:120
3345
+ msgid "Loop"
3346
+ msgstr "Prehrávať v slučke"
3347
+
3348
+ #: modules/widget/includes/frontend.php:35
3349
+ #: modules/widget/includes/settings-general.php:44
3350
+ #, php-format
3351
+ msgctxt "%s stands for widget slug."
3352
+ msgid "%s no longer exists."
3353
+ msgstr "%s už existuje."
3354
+
3355
+ #: modules/widget/widget.php:14
3356
+ msgid "Widget"
3357
+ msgstr "Widget"
3358
+
3359
+ #: modules/widget/widget.php:15
3360
+ msgid "Display a WordPress widget."
3361
+ msgstr "Zobrazí WordPress widget."
3362
+
3363
+ #: modules/woocommerce/woocommerce.php:16
3364
+ msgid "WooCommerce"
3365
+ msgstr "WooCommerce"
3366
+
3367
+ #: modules/woocommerce/woocommerce.php:17
3368
+ msgid "Display products or categories from your WooCommerce store."
3369
+ msgstr "Zobrazí produkty alebo kategórie z vášho WooCommerce obchodu."
3370
+
3371
+ #: modules/woocommerce/woocommerce.php:60
3372
+ msgid "Choose..."
3373
+ msgstr "Zvoľte..."
3374
+
3375
+ #: modules/woocommerce/woocommerce.php:61
3376
+ msgid "Single Product"
3377
+ msgstr "Jeden produkt"
3378
+
3379
+ #: modules/woocommerce/woocommerce.php:62
3380
+ #: modules/woocommerce/woocommerce.php:113
3381
+ msgid "Multiple Products"
3382
+ msgstr "Viacero produktov"
3383
+
3384
+ #: modules/woocommerce/woocommerce.php:63
3385
+ msgid "\"Add to Cart\" Button"
3386
+ msgstr "Tlačidlo \"Pridať do košíka\""
3387
+
3388
+ #: modules/woocommerce/woocommerce.php:64
3389
+ msgid "Categories"
3390
+ msgstr "Kategórie"
3391
+
3392
+ #: modules/woocommerce/woocommerce.php:65
3393
+ msgid "Cart"
3394
+ msgstr "Košík"
3395
+
3396
+ #: modules/woocommerce/woocommerce.php:66
3397
+ msgid "Checkout"
3398
+ msgstr "Pokladňa"
3399
+
3400
+ #: modules/woocommerce/woocommerce.php:67
3401
+ msgid "Order Tracking"
3402
+ msgstr "Sledovanie objednávky"
3403
+
3404
+ #: modules/woocommerce/woocommerce.php:68
3405
+ msgid "My Account"
3406
+ msgstr "Môj účet"
3407
+
3408
+ #: modules/woocommerce/woocommerce.php:87
3409
+ msgid "Product ID"
3410
+ msgstr "ID produktu"
3411
+
3412
+ #: modules/woocommerce/woocommerce.php:90
3413
+ msgid ""
3414
+ "As you add products in the WooCommerce Products area, each will be assigned "
3415
+ "a unique ID. You can find this unique product ID by visiting the Products "
3416
+ "area and rolling over the product. The unique ID will be the first attribute."
3417
+ msgstr ""
3418
+ "Počas pridávania nových produktov do WooCommerce bude každému z nich "
3419
+ "pridelené unikátne ID. Tento identifikátor môžete nájsť na stránke zoznamu "
3420
+ "produktov, presunom myši ponad daný produkt. ID identifikátor sa zobrazí ako "
3421
+ "prvý pod nadpisom produktu."
3422
+
3423
+ #: modules/woocommerce/woocommerce.php:94
3424
+ msgid "Parent Category ID"
3425
+ msgstr "ID nadradenej kategórie"
3426
+
3427
+ #: modules/woocommerce/woocommerce.php:97
3428
+ msgid ""
3429
+ "As you add product categories in the WooCommerce Products area, each will be "
3430
+ "assigned a unique ID. This ID can be found by hovering on the category in "
3431
+ "the categories area under Products and looking in the URL that is displayed "
3432
+ "in your browser. The ID will be the only number value in the URL."
3433
+ msgstr ""
3434
+ "Počas pridávania nových produktových kategórií do WooCommerce bude každej z "
3435
+ "nich pridelené unikátne ID. Toto ID nájdete na stránke kategórií v sekcii "
3436
+ "WooCommerce produktov ak presuniete myš nad názov kategórie a vyčítate ho z "
3437
+ "URL adresy, ktorá sa zobrazí vo vašom prehliadači. ID bude jediné číslo v "
3438
+ "tejto URL."
3439
+
3440
+ #: modules/woocommerce/woocommerce.php:101
3441
+ #: modules/woocommerce/woocommerce.php:172
3442
+ msgid "Columns"
3443
+ msgstr "Stĺpce"
3444
+
3445
+ #: modules/woocommerce/woocommerce.php:117
3446
+ msgid "Products Source"
3447
+ msgstr "Zdroj produktov"
3448
+
3449
+ #: modules/woocommerce/woocommerce.php:120
3450
+ msgid "Products IDs"
3451
+ msgstr "Identifikátory produktov"
3452
+
3453
+ #: modules/woocommerce/woocommerce.php:121
3454
+ msgid "Product Category"
3455
+ msgstr "Produktová kategória"
3456
+
3457
+ #: modules/woocommerce/woocommerce.php:122
3458
+ msgid "Recent Products"
3459
+ msgstr "Najnovšie produkty"
3460
+
3461
+ #: modules/woocommerce/woocommerce.php:123
3462
+ msgid "Featured Products"
3463
+ msgstr "Odporúčané produkty"
3464
+
3465
+ #: modules/woocommerce/woocommerce.php:124
3466
+ msgid "Sale Products"
3467
+ msgstr "Produkty vo výpredaji"
3468
+
3469
+ #: modules/woocommerce/woocommerce.php:125
3470
+ msgid "Best Selling Products"
3471
+ msgstr "Najpredávanejšie produkty"
3472
+
3473
+ #: modules/woocommerce/woocommerce.php:126
3474
+ msgid "Top Rated Products"
3475
+ msgstr "Najlepšie hodnotené produkty"
3476
+
3477
+ #: modules/woocommerce/woocommerce.php:154
3478
+ msgid "Product IDs"
3479
+ msgstr "Identifikátory produktov"
3480
+
3481
+ #: modules/woocommerce/woocommerce.php:156
3482
+ msgid ""
3483
+ "As you add products in the WooCommerce Products area, each will be assigned "
3484
+ "a unique ID. You can find this unique product ID by visiting the Products "
3485
+ "area and rolling over the product. The unique ID will be the first attribute "
3486
+ "and you can add several here separated by a comma."
3487
+ msgstr ""
3488
+ "Počas pridávania nových produktov do WooCommerce bude každému z nich "
3489
+ "pridelené unikátne ID. Tento identifikátor môžete nájsť na stránke zoznamu "
3490
+ "produktov, presunom myši ponad daný produkt. ID identifikátor sa zobrazí ako "
3491
+ "prvý pod nadpisom produktu. Do tohto poľa môžete pridať viacero ID produktov "
3492
+ "oddelených čiarkou."
3493
+
3494
+ #: modules/woocommerce/woocommerce.php:160
3495
+ msgid "Category Slug"
3496
+ msgstr "Slug kategórie"
3497
+
3498
+ #: modules/woocommerce/woocommerce.php:162
3499
+ msgid ""
3500
+ "As you add product categories in the WooCommerce Products area, each will be "
3501
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
3502
+ "found in the Categories area under WooCommerce Products. Several can be "
3503
+ "added here separated by a comma."
3504
+ msgstr ""
3505
+ "Počas pridávania nových produktových kategórií do WooCommerce bude každej z "
3506
+ "nich pridelený unikátny slug, ktorý môžete upraviť podľa potreby. Tieto "
3507
+ "slugy nájdete na stránke kategórií v sekcii WooCommerce produktov. Do tohto "
3508
+ "poľa môžete pridať viacero slugov oddelených čiarkou."
3509
+
3510
+ #: modules/woocommerce/woocommerce.php:166
3511
+ msgid "Number of Products"
3512
+ msgstr "Počet produktov"
3513
+
3514
+ #: modules/woocommerce/woocommerce.php:183
3515
+ msgid "Sort By"
3516
+ msgstr "Triediť podľa"
3517
+
3518
+ #: modules/woocommerce/woocommerce.php:186
3519
+ msgctxt "Sort by."
3520
+ msgid "Default"
3521
+ msgstr "Prednastavené"
3522
+
3523
+ #: modules/woocommerce/woocommerce.php:187
3524
+ msgid "Popularity"
3525
+ msgstr "Popularity"
3526
+
3527
+ #: modules/woocommerce/woocommerce.php:188
3528
+ msgid "Rating"
3529
+ msgstr "Hodnotenia"
3530
+
3531
+ #: modules/woocommerce/woocommerce.php:190
3532
+ msgid "Price: Low to High"
3533
+ msgstr "Ceny: od najnižšej po najvyššiu"
3534
+
3535
+ #: modules/woocommerce/woocommerce.php:191
3536
+ msgid "Price: High to Low"
3537
+ msgstr "Ceny: od najvyššej po najnižšiu"
3538
+
3539
+ #~ msgid "Upgrade Today!"
3540
+ #~ msgstr "Aktualizovať!"
3541
+
3542
+ #~ msgid "Add"
3543
+ #~ msgstr "Pridať"
3544
+
3545
+ #~ msgid " Settings"
3546
+ #~ msgstr "Nastavenia"
3547
+
3548
+ #~ msgid "Settings"
3549
+ #~ msgstr "Nastavenia"
3550
+
3551
+ #~ msgid "Mobile"
3552
+ #~ msgstr "Mobilné zobrazenia"
3553
+
3554
+ #~ msgid "Tag"
3555
+ #~ msgstr "HTML tag"
3556
+
3557
+ #~ msgid "Add Pricing Column"
3558
+ #~ msgstr "Pridať cenový box"
languages/xx_XX.pot ADDED
@@ -0,0 +1,3381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: {FL_BUILDER_NAME}\n"
4
+ "POT-Creation-Date: 2015-01-26 09:21-0800\n"
5
+ "PO-Revision-Date: 2015-01-26 09:21-0800\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: en_US\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.3\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: classes/class-fl-builder-admin.php:39
22
+ #, php-format
23
+ msgid ""
24
+ "This version of the <strong>Page Builder</strong> plugin is not compatible "
25
+ "with WordPress Multisite. <a%s>Please upgrade</a> to the Multisite version "
26
+ "of this plugin."
27
+ msgstr ""
28
+
29
+ #: classes/class-fl-builder-admin.php:49
30
+ msgid ""
31
+ "The <strong>Page Builder</strong> plugin requires WordPress version 3.5 or "
32
+ "greater. Please update WordPress before activating the plugin."
33
+ msgstr ""
34
+
35
+ #: classes/class-fl-builder-admin.php:90
36
+ #, php-format
37
+ msgid "Page Builder activated! <a%s>Click here</a> to enable remote updates."
38
+ msgstr ""
39
+
40
+ #: classes/class-fl-builder-admin.php:184
41
+ msgctxt "Plugin action link label."
42
+ msgid "Upgrade"
43
+ msgstr ""
44
+
45
+ #: classes/class-fl-builder-admin.php:197
46
+ #: classes/class-fl-builder-model.php:2435
47
+ msgid "Page Builder"
48
+ msgstr ""
49
+
50
+ #: classes/class-fl-builder-model.php:1852
51
+ #, php-format
52
+ msgctxt "%s stands for post/page title."
53
+ msgid "Copy of %s"
54
+ msgstr ""
55
+
56
+ #: classes/class-fl-builder-photo.php:75
57
+ msgctxt "Image size."
58
+ msgid "Full Size"
59
+ msgstr ""
60
+
61
+ #: classes/class-fl-builder-photo.php:76
62
+ msgctxt "Image size."
63
+ msgid "Large"
64
+ msgstr ""
65
+
66
+ #: classes/class-fl-builder-photo.php:77
67
+ msgctxt "Image size."
68
+ msgid "Medium"
69
+ msgstr ""
70
+
71
+ #: classes/class-fl-builder-photo.php:78
72
+ msgctxt "Image size."
73
+ msgid "Thumbnail"
74
+ msgstr ""
75
+
76
+ #: classes/class-fl-builder-templates.php:28
77
+ msgid "Page Builder Templates"
78
+ msgstr ""
79
+
80
+ #: classes/class-fl-builder.php:699
81
+ #, php-format
82
+ msgctxt "Field name to add."
83
+ msgid "Add %s"
84
+ msgstr ""
85
+
86
+ #: classes/class-fl-builder.php:762 classes/class-fl-builder.php:764
87
+ msgctxt "Custom post type label."
88
+ msgid "Layout Templates"
89
+ msgstr ""
90
+
91
+ #: classes/class-fl-builder.php:763 classes/class-fl-builder.php:765
92
+ msgctxt "Custom post type label."
93
+ msgid "Layout Template"
94
+ msgstr ""
95
+
96
+ #: classes/class-fl-builder.php:766
97
+ msgctxt "Custom post type label."
98
+ msgid "Add New"
99
+ msgstr ""
100
+
101
+ #: classes/class-fl-builder.php:767
102
+ msgctxt "Custom post type label."
103
+ msgid "Add New Layout Template"
104
+ msgstr ""
105
+
106
+ #: classes/class-fl-builder.php:768
107
+ msgctxt "Custom post type label."
108
+ msgid "New Layout Template"
109
+ msgstr ""
110
+
111
+ #: classes/class-fl-builder.php:769
112
+ msgctxt "Custom post type label."
113
+ msgid "Edit Layout Template"
114
+ msgstr ""
115
+
116
+ #: classes/class-fl-builder.php:770
117
+ msgctxt "Custom post type label."
118
+ msgid "View Layout Template"
119
+ msgstr ""
120
+
121
+ #: classes/class-fl-builder.php:771
122
+ msgctxt "Custom post type label."
123
+ msgid "All Layout Templates"
124
+ msgstr ""
125
+
126
+ #: classes/class-fl-builder.php:772
127
+ msgctxt "Custom post type label."
128
+ msgid "Search Layout Templates"
129
+ msgstr ""
130
+
131
+ #: classes/class-fl-builder.php:773
132
+ msgctxt "Custom post type label."
133
+ msgid "Parent Layout Templates:"
134
+ msgstr ""
135
+
136
+ #: classes/class-fl-builder.php:774
137
+ msgctxt "Custom post type label."
138
+ msgid "No layout templates found."
139
+ msgstr ""
140
+
141
+ #: classes/class-fl-builder.php:775
142
+ msgctxt "Custom post type label."
143
+ msgid "No layout templates found in Trash."
144
+ msgstr ""
145
+
146
+ #: classes/class-fl-builder.php:1113 includes/js-config.php:58
147
+ #, php-format
148
+ msgctxt "%s stands for module name."
149
+ msgid "%s Settings"
150
+ msgstr ""
151
+
152
+ #: includes/admin-branding.php:3 includes/admin-settings.php:36
153
+ #: includes/multisite-settings.php:23
154
+ msgid "Branding"
155
+ msgstr ""
156
+
157
+ #: includes/admin-branding.php:11
158
+ msgid "White label the page builder by entering a custom name below."
159
+ msgstr ""
160
+
161
+ #: includes/admin-branding.php:14
162
+ msgid ""
163
+ "Additionally, you may also add a custom icon by entering the URL of an image "
164
+ "below. Leave the field blank if you do not wish to use an icon."
165
+ msgstr ""
166
+
167
+ #: includes/admin-branding.php:18
168
+ msgid "Save Branding"
169
+ msgstr ""
170
+
171
+ #: includes/admin-edit-template.php:3
172
+ msgid "Edit Template"
173
+ msgstr ""
174
+
175
+ #: includes/admin-edit-template.php:8
176
+ msgctxt "Template edit form field label. Template name."
177
+ msgid "Name"
178
+ msgstr ""
179
+
180
+ #: includes/admin-edit-template.php:12 modules/callout/callout.php:303
181
+ #: modules/post-grid/post-grid.php:113
182
+ msgid "Image"
183
+ msgstr ""
184
+
185
+ #: includes/admin-edit-template.php:16 includes/row-settings.php:155
186
+ #: includes/template-settings.php:23 modules/callout/callout.php:351
187
+ #: modules/callout/callout.php:371
188
+ #: modules/content-slider/content-slider.php:466
189
+ #: modules/post-grid/post-grid.php:127
190
+ msgid "Position"
191
+ msgstr ""
192
+
193
+ #: includes/admin-edit-template.php:20 includes/template-settings.php:28
194
+ msgctxt "Template edit form field label. Is template premium one?"
195
+ msgid "Premium"
196
+ msgstr ""
197
+
198
+ #: includes/admin-edit-template.php:23 includes/admin-templates.php:30
199
+ #: includes/global-settings.php:18 includes/global-settings.php:87
200
+ #: includes/row-settings.php:307 includes/template-settings.php:31
201
+ #: modules/accordion/accordion.php:90 modules/button/button.php:135
202
+ #: modules/callout/callout.php:418 modules/callout/callout.php:539
203
+ #: modules/content-slider/content-slider.php:203
204
+ #: modules/content-slider/content-slider.php:217
205
+ #: modules/content-slider/content-slider.php:251
206
+ #: modules/content-slider/content-slider.php:260
207
+ #: modules/content-slider/content-slider.php:531
208
+ #: modules/content-slider/content-slider.php:649 modules/cta/cta.php:295
209
+ #: modules/icon-group/icon-group.php:80 modules/icon/icon.php:111
210
+ #: modules/slideshow/slideshow.php:315 modules/slideshow/slideshow.php:325
211
+ #: modules/slideshow/slideshow.php:376 modules/slideshow/slideshow.php:417
212
+ #: modules/slideshow/slideshow.php:439 modules/slideshow/slideshow.php:488
213
+ #: modules/slideshow/slideshow.php:497 modules/slideshow/slideshow.php:506
214
+ #: modules/slideshow/slideshow.php:515 modules/slideshow/slideshow.php:524
215
+ #: modules/slideshow/slideshow.php:533 modules/slideshow/slideshow.php:542
216
+ #: modules/slideshow/slideshow.php:556 modules/slideshow/slideshow.php:571
217
+ #: modules/slideshow/slideshow.php:606 modules/slideshow/slideshow.php:618
218
+ #: modules/slideshow/slideshow.php:630 modules/slideshow/slideshow.php:642
219
+ #: modules/social-buttons/social-buttons.php:111
220
+ #: modules/social-buttons/social-buttons.php:120
221
+ #: modules/social-buttons/social-buttons.php:129
222
+ #: modules/testimonials/testimonials.php:85
223
+ #: modules/testimonials/testimonials.php:124
224
+ #: modules/testimonials/testimonials.php:154 modules/video/video.php:111
225
+ #: modules/video/video.php:123
226
+ msgid "No"
227
+ msgstr ""
228
+
229
+ #: includes/admin-edit-template.php:24 includes/admin-templates.php:30
230
+ #: includes/global-settings.php:19 includes/global-settings.php:88
231
+ #: includes/row-settings.php:308 includes/template-settings.php:32
232
+ #: modules/accordion/accordion.php:89 modules/button/button.php:136
233
+ #: modules/callout/callout.php:419 modules/callout/callout.php:540
234
+ #: modules/content-slider/content-slider.php:204
235
+ #: modules/content-slider/content-slider.php:218
236
+ #: modules/content-slider/content-slider.php:252
237
+ #: modules/content-slider/content-slider.php:261
238
+ #: modules/content-slider/content-slider.php:532
239
+ #: modules/content-slider/content-slider.php:650 modules/cta/cta.php:296
240
+ #: modules/icon-group/icon-group.php:81 modules/icon/icon.php:112
241
+ #: modules/slideshow/slideshow.php:316 modules/slideshow/slideshow.php:326
242
+ #: modules/slideshow/slideshow.php:377 modules/slideshow/slideshow.php:418
243
+ #: modules/slideshow/slideshow.php:440 modules/slideshow/slideshow.php:489
244
+ #: modules/slideshow/slideshow.php:498 modules/slideshow/slideshow.php:507
245
+ #: modules/slideshow/slideshow.php:516 modules/slideshow/slideshow.php:525
246
+ #: modules/slideshow/slideshow.php:534 modules/slideshow/slideshow.php:543
247
+ #: modules/slideshow/slideshow.php:557 modules/slideshow/slideshow.php:572
248
+ #: modules/slideshow/slideshow.php:607 modules/slideshow/slideshow.php:619
249
+ #: modules/slideshow/slideshow.php:631 modules/slideshow/slideshow.php:643
250
+ #: modules/social-buttons/social-buttons.php:110
251
+ #: modules/social-buttons/social-buttons.php:119
252
+ #: modules/social-buttons/social-buttons.php:128
253
+ #: modules/testimonials/testimonials.php:86
254
+ #: modules/testimonials/testimonials.php:125
255
+ #: modules/testimonials/testimonials.php:155 modules/video/video.php:112
256
+ #: modules/video/video.php:124
257
+ msgid "Yes"
258
+ msgstr ""
259
+
260
+ #: includes/admin-edit-template.php:29 includes/template-settings.php:37
261
+ msgid "Category"
262
+ msgstr ""
263
+
264
+ #: includes/admin-edit-template.php:32 includes/template-settings.php:40
265
+ msgctxt "Templates category label."
266
+ msgid "Landing Pages"
267
+ msgstr ""
268
+
269
+ #: includes/admin-edit-template.php:33 includes/template-settings.php:41
270
+ msgctxt "Templates category label."
271
+ msgid "Company Info"
272
+ msgstr ""
273
+
274
+ #: includes/admin-edit-template.php:40
275
+ msgid "Update Template"
276
+ msgstr ""
277
+
278
+ #: includes/admin-posts.php:3 modules/rich-text/rich-text.php:14
279
+ msgid "Text Editor"
280
+ msgstr ""
281
+
282
+ #: includes/admin-posts.php:7
283
+ #, php-format
284
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
285
+ msgid "%s is currently active for this page."
286
+ msgstr ""
287
+
288
+ #: includes/admin-posts.php:8
289
+ #, php-format
290
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
291
+ msgid "Launch %s"
292
+ msgstr ""
293
+
294
+ #: includes/admin-settings.php:7 includes/global-settings.php:4
295
+ #: includes/multisite-settings.php:7
296
+ #, php-format
297
+ msgctxt "%s stands for custom branded \"Page Builder\" name."
298
+ msgid "%s Settings"
299
+ msgstr ""
300
+
301
+ #: includes/admin-settings.php:12 includes/multisite-settings.php:12
302
+ msgid "Settings updated!"
303
+ msgstr ""
304
+
305
+ #: includes/admin-settings.php:19 includes/multisite-settings.php:18
306
+ msgid "License"
307
+ msgstr ""
308
+
309
+ #: includes/admin-settings.php:23 includes/admin-settings.php:59
310
+ msgid "Upgrade"
311
+ msgstr ""
312
+
313
+ #: includes/admin-settings.php:26 includes/global-settings.php:67
314
+ #: includes/multisite-settings.php:19
315
+ msgid "Modules"
316
+ msgstr ""
317
+
318
+ #: includes/admin-settings.php:29 includes/multisite-settings.php:20
319
+ #: includes/ui.php:44
320
+ msgid "Templates"
321
+ msgstr ""
322
+
323
+ #: includes/admin-settings.php:32 includes/admin-settings.php:163
324
+ #: includes/multisite-settings.php:21 includes/multisite-settings.php:112
325
+ msgid "Post Types"
326
+ msgstr ""
327
+
328
+ #: includes/admin-settings.php:33 includes/multisite-settings.php:22
329
+ msgid "Editing"
330
+ msgstr ""
331
+
332
+ #: includes/admin-settings.php:40 includes/admin-settings.php:250
333
+ #: includes/admin-settings.php:262 includes/multisite-settings.php:24
334
+ #: includes/multisite-settings.php:172 includes/multisite-settings.php:184
335
+ msgid "Uninstall"
336
+ msgstr ""
337
+
338
+ #: includes/admin-settings.php:61
339
+ msgid ""
340
+ "You are currently running the lite version of the Beaver Builder plugin. "
341
+ "Upgrade today for access to premium features such as advanced modules, "
342
+ "templates, support and more!"
343
+ msgstr ""
344
+
345
+ #: includes/admin-settings.php:63
346
+ msgid "Upgrade Now"
347
+ msgstr ""
348
+
349
+ #: includes/admin-settings.php:65
350
+ msgid "Learn More"
351
+ msgstr ""
352
+
353
+ #: includes/admin-settings.php:74 includes/multisite-settings.php:39
354
+ msgid "Enabled Modules"
355
+ msgstr ""
356
+
357
+ #: includes/admin-settings.php:81 includes/admin-settings.php:132
358
+ #: includes/admin-settings.php:170 includes/admin-settings.php:222
359
+ msgid "Override network settings?"
360
+ msgstr ""
361
+
362
+ #: includes/admin-settings.php:87 includes/multisite-settings.php:45
363
+ msgid "Check or uncheck modules below to enable or disable them."
364
+ msgstr ""
365
+
366
+ #: includes/admin-settings.php:96 includes/multisite-settings.php:54
367
+ msgctxt "Plugin setup page: Modules."
368
+ msgid "All"
369
+ msgstr ""
370
+
371
+ #: includes/admin-settings.php:114 includes/multisite-settings.php:72
372
+ msgid "Save Module Settings"
373
+ msgstr ""
374
+
375
+ #: includes/admin-settings.php:125 includes/multisite-settings.php:82
376
+ #: includes/template-settings.php:4
377
+ msgid "Template Settings"
378
+ msgstr ""
379
+
380
+ #: includes/admin-settings.php:138 includes/multisite-settings.php:88
381
+ msgid "Enable or disable templates using the options below."
382
+ msgstr ""
383
+
384
+ #: includes/admin-settings.php:145 includes/multisite-settings.php:95
385
+ msgid "Enable All Templates"
386
+ msgstr ""
387
+
388
+ #: includes/admin-settings.php:146 includes/multisite-settings.php:96
389
+ msgid "Enable Core Templates Only"
390
+ msgstr ""
391
+
392
+ #: includes/admin-settings.php:147 includes/multisite-settings.php:97
393
+ msgid "Enable User Templates Only"
394
+ msgstr ""
395
+
396
+ #: includes/admin-settings.php:148 includes/multisite-settings.php:98
397
+ msgid "Disable All Templates"
398
+ msgstr ""
399
+
400
+ #: includes/admin-settings.php:152 includes/multisite-settings.php:102
401
+ msgid "Save Template Settings"
402
+ msgstr ""
403
+
404
+ #: includes/admin-settings.php:176
405
+ msgid "Select the post types you would like the builder to work with."
406
+ msgstr ""
407
+
408
+ #: includes/admin-settings.php:177 includes/multisite-settings.php:117
409
+ msgid "NOTE: Not all custom post types may be supported."
410
+ msgstr ""
411
+
412
+ #: includes/admin-settings.php:205 includes/multisite-settings.php:135
413
+ msgid "Save Post Types"
414
+ msgstr ""
415
+
416
+ #: includes/admin-settings.php:215 includes/multisite-settings.php:145
417
+ msgid "Editing Settings"
418
+ msgstr ""
419
+
420
+ #: includes/admin-settings.php:228 includes/multisite-settings.php:150
421
+ #, php-format
422
+ msgid ""
423
+ "Set the <a%s>capability</a> required for users to access advanced builder "
424
+ "editing such as adding, deleting or moving modules."
425
+ msgstr ""
426
+
427
+ #: includes/admin-settings.php:234 includes/multisite-settings.php:156
428
+ msgid "Save Editing Settings"
429
+ msgstr ""
430
+
431
+ #: includes/admin-settings.php:252 includes/multisite-settings.php:174
432
+ msgid ""
433
+ "Clicking the button below will uninstall the page builder plugin and delete "
434
+ "all of the data associated with it. You can uninstall or deactivate the page "
435
+ "builder from the plugins page instead if you do not wish to delete the data."
436
+ msgstr ""
437
+
438
+ #: includes/admin-settings.php:254 includes/admin-settings.php:257
439
+ #: includes/multisite-settings.php:176 includes/multisite-settings.php:179
440
+ #: includes/updater/includes/form.php:31
441
+ msgid "NOTE:"
442
+ msgstr ""
443
+
444
+ #: includes/admin-settings.php:254 includes/multisite-settings.php:176
445
+ msgid ""
446
+ "The builder does not delete the post meta <code>_fl_builder_data</code>, "
447
+ "<code>_fl_builder_draft</code> and <code>_fl_builder_enabled</code> in case "
448
+ "you want to reinstall it later. If you do, the builder will rebuild all of "
449
+ "its data using those meta values."
450
+ msgstr ""
451
+
452
+ #: includes/admin-settings.php:257 includes/multisite-settings.php:179
453
+ #: includes/updater/includes/form.php:31
454
+ msgid "This applies to all sites on the network."
455
+ msgstr ""
456
+
457
+ #: includes/admin-settings.php:276 includes/multisite-settings.php:198
458
+ msgid ""
459
+ "Please type \"uninstall\" in the box below to confirm that you really want "
460
+ "to uninstall the page builder and all of its data."
461
+ msgstr ""
462
+
463
+ #: includes/admin-templates.php:3
464
+ msgid "Page Builder Template"
465
+ msgstr ""
466
+
467
+ #: includes/admin-templates.php:10
468
+ msgctxt "Templates list column label."
469
+ msgid "Name"
470
+ msgstr ""
471
+
472
+ #: includes/admin-templates.php:11
473
+ msgctxt "Templates list column label."
474
+ msgid "Category"
475
+ msgstr ""
476
+
477
+ #: includes/admin-templates.php:12
478
+ msgctxt "Templates list column label. Is template premium one?"
479
+ msgid "Premium"
480
+ msgstr ""
481
+
482
+ #: includes/admin-templates.php:25 includes/field-photo.php:12
483
+ #: includes/template-selector.php:83
484
+ msgid "Edit"
485
+ msgstr ""
486
+
487
+ #: includes/admin-templates.php:27 includes/template-selector.php:84
488
+ msgid "Delete"
489
+ msgstr ""
490
+
491
+ #: includes/admin-templates.php:40 includes/js-config.php:26
492
+ msgid "Do you really want to delete this template?"
493
+ msgstr ""
494
+
495
+ #: includes/column-settings.php:4 includes/js-config.php:21
496
+ msgid "Column Settings"
497
+ msgstr ""
498
+
499
+ #: includes/column-settings.php:7 includes/module-settings.php:95
500
+ #: includes/row-settings.php:9 modules/accordion/accordion.php:45
501
+ #: modules/button/button.php:95 modules/callout/callout.php:239
502
+ #: modules/content-slider/content-slider.php:419 modules/cta/cta.php:99
503
+ #: modules/heading/heading.php:69 modules/icon-group/icon-group.php:44
504
+ #: modules/icon/icon.php:75 modules/pricing-table/pricing-table.php:43
505
+ #: modules/pricing-table/pricing-table.php:155
506
+ #: modules/separator/separator.php:72 modules/tabs/tabs.php:45
507
+ msgid "Style"
508
+ msgstr ""
509
+
510
+ #: includes/column-settings.php:14
511
+ msgid "Column Width"
512
+ msgstr ""
513
+
514
+ #: includes/column-settings.php:26 includes/row-settings.php:48
515
+ #: modules/button/button.php:53 modules/callout/callout.php:223
516
+ #: modules/callout/callout.php:476 modules/callout/callout.php:492
517
+ #: modules/content-slider/content-slider.php:376
518
+ #: modules/content-slider/content-slider.php:610 modules/cta/cta.php:82
519
+ #: modules/cta/cta.php:219
520
+ msgid "Text"
521
+ msgstr ""
522
+
523
+ #: includes/column-settings.php:30 includes/column-settings.php:43
524
+ #: includes/column-settings.php:100 includes/row-settings.php:52
525
+ #: includes/row-settings.php:109 includes/row-settings.php:379
526
+ #: modules/callout/callout.php:389
527
+ #: modules/content-slider/content-slider.php:331
528
+ #: modules/icon-group/icon-group.php:51 modules/icon/icon.php:82
529
+ #: modules/separator/separator.php:34
530
+ msgid "Color"
531
+ msgstr ""
532
+
533
+ #: includes/column-settings.php:39 includes/row-settings.php:105
534
+ #: modules/button/button.php:102 modules/callout/callout.php:402
535
+ #: modules/callout/callout.php:506
536
+ #: modules/content-slider/content-slider.php:357
537
+ #: modules/content-slider/content-slider.php:624 modules/cta/cta.php:195
538
+ #: modules/cta/cta.php:262 modules/icon-group/icon-group.php:64
539
+ #: modules/icon/icon.php:95
540
+ msgid "Background Color"
541
+ msgstr ""
542
+
543
+ #: includes/column-settings.php:51 includes/column-settings.php:108
544
+ #: includes/row-settings.php:117 includes/row-settings.php:387
545
+ #: modules/separator/separator.php:44
546
+ msgid "Opacity"
547
+ msgstr ""
548
+
549
+ #: includes/column-settings.php:63 includes/row-settings.php:342
550
+ msgid "Border"
551
+ msgstr ""
552
+
553
+ #: includes/column-settings.php:67 includes/row-settings.php:65
554
+ #: includes/row-settings.php:346 modules/callout/callout.php:472
555
+ #: modules/content-slider/content-slider.php:325
556
+ #: modules/content-slider/content-slider.php:372
557
+ #: modules/content-slider/content-slider.php:590
558
+ #: modules/content-slider/content-slider.php:694
559
+ #: modules/slideshow/slideshow.php:339
560
+ msgid "Type"
561
+ msgstr ""
562
+
563
+ #: includes/column-settings.php:69 includes/row-settings.php:348
564
+ msgid ""
565
+ "The type of border to use. Double borders must have a width of at least 3px "
566
+ "to render properly."
567
+ msgstr ""
568
+
569
+ #: includes/column-settings.php:71 includes/row-settings.php:350
570
+ msgctxt "Border type."
571
+ msgid "None"
572
+ msgstr ""
573
+
574
+ #: includes/column-settings.php:72 includes/row-settings.php:351
575
+ #: modules/separator/separator.php:75
576
+ msgctxt "Border type."
577
+ msgid "Solid"
578
+ msgstr ""
579
+
580
+ #: includes/column-settings.php:73 includes/row-settings.php:352
581
+ #: modules/separator/separator.php:76
582
+ msgctxt "Border type."
583
+ msgid "Dashed"
584
+ msgstr ""
585
+
586
+ #: includes/column-settings.php:74 includes/row-settings.php:353
587
+ #: modules/separator/separator.php:77
588
+ msgctxt "Border type."
589
+ msgid "Dotted"
590
+ msgstr ""
591
+
592
+ #: includes/column-settings.php:75 includes/row-settings.php:354
593
+ #: modules/separator/separator.php:78
594
+ msgctxt "Border type."
595
+ msgid "Double"
596
+ msgstr ""
597
+
598
+ #: includes/column-settings.php:119 includes/row-settings.php:398
599
+ msgid "Top Width"
600
+ msgstr ""
601
+
602
+ #: includes/column-settings.php:131 includes/row-settings.php:410
603
+ msgid "Bottom Width"
604
+ msgstr ""
605
+
606
+ #: includes/column-settings.php:143 includes/row-settings.php:422
607
+ msgid "Left Width"
608
+ msgstr ""
609
+
610
+ #: includes/column-settings.php:155 includes/row-settings.php:434
611
+ msgid "Right Width"
612
+ msgstr ""
613
+
614
+ #: includes/column-settings.php:170 includes/module-settings.php:6
615
+ #: includes/row-settings.php:449 modules/content-slider/content-slider.php:267
616
+ msgid "Advanced"
617
+ msgstr ""
618
+
619
+ #: includes/column-settings.php:177 includes/module-settings.php:13
620
+ #: includes/row-settings.php:456
621
+ msgid "CSS Class"
622
+ msgstr ""
623
+
624
+ #: includes/column-settings.php:178
625
+ msgid ""
626
+ "A custom CSS class that will be applied to this column. Spaces only, no dots."
627
+ msgstr ""
628
+
629
+ #: includes/column-settings.php:186 includes/global-settings.php:80
630
+ msgid "Responsive Layout"
631
+ msgstr ""
632
+
633
+ #: includes/column-settings.php:190 includes/module-settings.php:21
634
+ #: includes/row-settings.php:464 modules/slideshow/slideshow.php:290
635
+ msgid "Display"
636
+ msgstr ""
637
+
638
+ #: includes/column-settings.php:192 includes/module-settings.php:23
639
+ #: includes/row-settings.php:466
640
+ msgid "Always"
641
+ msgstr ""
642
+
643
+ #: includes/column-settings.php:193 includes/module-settings.php:24
644
+ #: includes/row-settings.php:467
645
+ msgid "Large Devices Only"
646
+ msgstr ""
647
+
648
+ #: includes/column-settings.php:194 includes/module-settings.php:25
649
+ #: includes/row-settings.php:468
650
+ msgid "Large &amp; Medium Devices Only"
651
+ msgstr ""
652
+
653
+ #: includes/column-settings.php:195 includes/module-settings.php:26
654
+ #: includes/row-settings.php:469
655
+ msgid "Medium Devices Only"
656
+ msgstr ""
657
+
658
+ #: includes/column-settings.php:196 includes/module-settings.php:27
659
+ #: includes/row-settings.php:470
660
+ msgid "Medium &amp; Small Devices Only"
661
+ msgstr ""
662
+
663
+ #: includes/column-settings.php:197 includes/module-settings.php:28
664
+ #: includes/row-settings.php:471
665
+ msgid "Small Devices Only"
666
+ msgstr ""
667
+
668
+ #: includes/column-settings.php:199
669
+ msgid "Choose whether to show or hide this column at different device sizes."
670
+ msgstr ""
671
+
672
+ #: includes/column-settings.php:206
673
+ msgid "Medium Device Width"
674
+ msgstr ""
675
+
676
+ #: includes/column-settings.php:207
677
+ msgid "The width of this column on medium devices such as tablets."
678
+ msgstr ""
679
+
680
+ #: includes/column-settings.php:209 includes/column-settings.php:237
681
+ #: modules/callout/callout.php:281
682
+ #: modules/content-slider/content-slider.php:442 modules/cta/cta.php:165
683
+ #: modules/heading/heading.php:117 modules/heading/heading.php:144
684
+ #: modules/heading/heading.php:174
685
+ msgid "Default"
686
+ msgstr ""
687
+
688
+ #: includes/column-settings.php:210 includes/column-settings.php:238
689
+ #: modules/button/button.php:151 modules/callout/callout.php:282
690
+ #: modules/content-slider/content-slider.php:443 modules/cta/cta.php:166
691
+ #: modules/heading/heading.php:118 modules/heading/heading.php:145
692
+ #: modules/heading/heading.php:175
693
+ #: modules/social-buttons/social-buttons.php:74
694
+ msgid "Custom"
695
+ msgstr ""
696
+
697
+ #: includes/column-settings.php:223
698
+ msgid "Custom Medium Device Width"
699
+ msgstr ""
700
+
701
+ #: includes/column-settings.php:234
702
+ msgid "Small Device Width"
703
+ msgstr ""
704
+
705
+ #: includes/column-settings.php:235
706
+ msgid "The width of this column on small devices such as phones."
707
+ msgstr ""
708
+
709
+ #: includes/column-settings.php:251
710
+ msgid "Custom Small Device Width"
711
+ msgstr ""
712
+
713
+ #: includes/column-settings.php:263 includes/global-settings.php:41
714
+ #: includes/global-settings.php:71 includes/module-settings.php:38
715
+ #: includes/row-settings.php:481
716
+ msgid "Margins"
717
+ msgstr ""
718
+
719
+ #: includes/column-settings.php:267 includes/column-settings.php:320
720
+ #: includes/module-settings.php:42 includes/row-settings.php:485
721
+ #: includes/row-settings.php:538 modules/slideshow/slideshow.php:475
722
+ msgid "Top"
723
+ msgstr ""
724
+
725
+ #: includes/column-settings.php:279 includes/column-settings.php:332
726
+ #: includes/module-settings.php:54 includes/row-settings.php:497
727
+ #: includes/row-settings.php:550 modules/slideshow/slideshow.php:474
728
+ msgid "Bottom"
729
+ msgstr ""
730
+
731
+ #: includes/column-settings.php:291 includes/column-settings.php:344
732
+ #: includes/module-settings.php:66 includes/row-settings.php:509
733
+ #: includes/row-settings.php:562 modules/button/button.php:177
734
+ #: modules/callout/callout.php:250
735
+ #: modules/content-slider/content-slider.php:470 modules/cta/cta.php:123
736
+ #: modules/heading/heading.php:89 modules/heading/heading.php:161
737
+ #: modules/icon-group/icon-group.php:111 modules/icon/icon.php:134
738
+ #: modules/photo/photo.php:417 modules/social-buttons/social-buttons.php:101
739
+ msgid "Left"
740
+ msgstr ""
741
+
742
+ #: includes/column-settings.php:303 includes/column-settings.php:356
743
+ #: includes/module-settings.php:78 includes/row-settings.php:521
744
+ #: includes/row-settings.php:574 modules/button/button.php:178
745
+ #: modules/callout/callout.php:251
746
+ #: modules/content-slider/content-slider.php:472 modules/cta/cta.php:125
747
+ #: modules/heading/heading.php:91 modules/heading/heading.php:163
748
+ #: modules/icon-group/icon-group.php:112 modules/icon/icon.php:135
749
+ #: modules/photo/photo.php:419 modules/social-buttons/social-buttons.php:102
750
+ msgid "Right"
751
+ msgstr ""
752
+
753
+ #: includes/column-settings.php:316 includes/global-settings.php:49
754
+ #: includes/row-settings.php:534 modules/button/button.php:191
755
+ #: modules/callout/callout.php:567
756
+ #: modules/content-slider/content-slider.php:668 modules/cta/cta.php:314
757
+ msgid "Padding"
758
+ msgstr ""
759
+
760
+ #: includes/field-form.php:17
761
+ #, php-format
762
+ msgctxt "%s stands for form field label."
763
+ msgid "Edit %s"
764
+ msgstr ""
765
+
766
+ #: includes/field-icon.php:2 includes/icon-selector.php:2
767
+ msgid "Select Icon"
768
+ msgstr ""
769
+
770
+ #: includes/field-icon.php:5 includes/field-photo.php:13
771
+ msgid "Replace"
772
+ msgstr ""
773
+
774
+ #: includes/field-icon.php:7 includes/js-config.php:50
775
+ msgid "Remove"
776
+ msgstr ""
777
+
778
+ #: includes/field-link.php:3
779
+ msgid "Select"
780
+ msgstr ""
781
+
782
+ #: includes/field-link.php:5
783
+ msgid "Enter a post title to search."
784
+ msgstr ""
785
+
786
+ #: includes/field-link.php:6 includes/field-suggest.php:7
787
+ msgid "Start typing..."
788
+ msgstr ""
789
+
790
+ #: includes/field-link.php:7 includes/icon-selector.php:27
791
+ #: includes/js-config.php:17 includes/settings.php:63
792
+ #: includes/template-selector.php:102 includes/ui.php:11
793
+ msgid "Cancel"
794
+ msgstr ""
795
+
796
+ #: includes/field-multiple-photos.php:8
797
+ #, php-format
798
+ msgid "1 Photo Selected"
799
+ msgid_plural "%d Photos Selected"
800
+ msgstr[0] ""
801
+ msgstr[1] ""
802
+
803
+ #: includes/field-multiple-photos.php:13
804
+ msgid "Create Gallery"
805
+ msgstr ""
806
+
807
+ #: includes/field-multiple-photos.php:14
808
+ msgid "Edit Gallery"
809
+ msgstr ""
810
+
811
+ #: includes/field-multiple-photos.php:15
812
+ msgid "Add Photos"
813
+ msgstr ""
814
+
815
+ #: includes/field-photo.php:3 includes/js-config.php:55
816
+ msgid "Select Photo"
817
+ msgstr ""
818
+
819
+ #: includes/field-video.php:3 includes/js-config.php:57
820
+ msgid "Select Video"
821
+ msgstr ""
822
+
823
+ #: includes/field-video.php:17
824
+ msgid "Replace Video"
825
+ msgstr ""
826
+
827
+ #: includes/global-settings.php:7 includes/template-settings.php:7
828
+ #: includes/user-template-settings.php:7 modules/accordion/accordion.php:110
829
+ #: modules/button/button.php:46 modules/callout/callout.php:207
830
+ #: modules/contact-form/contact-form.php:57
831
+ #: modules/content-slider/content-slider.php:184
832
+ #: modules/content-slider/content-slider.php:308 modules/cta/cta.php:65
833
+ #: modules/gallery/gallery.php:213 modules/heading/heading.php:26
834
+ #: modules/html/html.php:26 modules/icon-group/icon-group.php:128
835
+ #: modules/icon/icon.php:27 modules/map/map.php:26 modules/photo/photo.php:368
836
+ #: modules/pricing-table/pricing-table.php:87
837
+ #: modules/rich-text/rich-text.php:26 modules/separator/separator.php:27
838
+ #: modules/sidebar/sidebar.php:27 modules/slideshow/slideshow.php:256
839
+ #: modules/social-buttons/social-buttons.php:64 modules/tabs/tabs.php:77
840
+ #: modules/testimonials/testimonials.php:30
841
+ #: modules/testimonials/testimonials.php:200 modules/video/video.php:76
842
+ #: modules/widget/widget.php:64 modules/woocommerce/woocommerce.php:50
843
+ msgid "General"
844
+ msgstr ""
845
+
846
+ #: includes/global-settings.php:8
847
+ msgid "Note: These settings apply to all posts and pages."
848
+ msgstr ""
849
+
850
+ #: includes/global-settings.php:11
851
+ msgid "Default Page Heading"
852
+ msgstr ""
853
+
854
+ #: includes/global-settings.php:15
855
+ msgctxt ""
856
+ "General settings form field label. Intended meaning: \"Show page heading?\""
857
+ msgid "Show"
858
+ msgstr ""
859
+
860
+ #: includes/global-settings.php:26
861
+ msgid ""
862
+ "Choosing no will hide the default theme heading for the \"Page\" post type. "
863
+ "You will also be required to enter some basic CSS for this to work if you "
864
+ "choose no."
865
+ msgstr ""
866
+
867
+ #: includes/global-settings.php:30
868
+ msgid "CSS Selector"
869
+ msgstr ""
870
+
871
+ #: includes/global-settings.php:32
872
+ msgid "Enter a CSS selector for the default page heading to hide it."
873
+ msgstr ""
874
+
875
+ #: includes/global-settings.php:37
876
+ msgid "Rows"
877
+ msgstr ""
878
+
879
+ #: includes/global-settings.php:57
880
+ msgid "Max Width"
881
+ msgstr ""
882
+
883
+ #: includes/global-settings.php:62
884
+ msgid ""
885
+ "All rows will default to this width. You can override this and make a row "
886
+ "full width in the settings for each row."
887
+ msgstr ""
888
+
889
+ #: includes/global-settings.php:84
890
+ msgctxt ""
891
+ "General settings form field label. Intended meaning: \"Responsive layout "
892
+ "enabled?\""
893
+ msgid "Enabled"
894
+ msgstr ""
895
+
896
+ #: includes/global-settings.php:98
897
+ msgid "Medium Device Breakpoint"
898
+ msgstr ""
899
+
900
+ #: includes/global-settings.php:103
901
+ msgid ""
902
+ "The browser width at which the layout will adjust for medium devices such as "
903
+ "tablets."
904
+ msgstr ""
905
+
906
+ #: includes/global-settings.php:107
907
+ msgid "Small Device Breakpoint"
908
+ msgstr ""
909
+
910
+ #: includes/global-settings.php:112
911
+ msgid ""
912
+ "The browser width at which the layout will adjust for small devices such as "
913
+ "phones."
914
+ msgstr ""
915
+
916
+ #: includes/icon-selector.php:4
917
+ msgid "Filter: "
918
+ msgstr ""
919
+
920
+ #: includes/js-config.php:16
921
+ msgid "What would you like to do?"
922
+ msgstr ""
923
+
924
+ #: includes/js-config.php:18
925
+ msgid "Change Template"
926
+ msgstr ""
927
+
928
+ #: includes/js-config.php:19
929
+ msgid ""
930
+ "Warning! Changing the template will replace your existing layout. Do you "
931
+ "really want to do this?"
932
+ msgstr ""
933
+
934
+ #: includes/js-config.php:20
935
+ msgid "Column"
936
+ msgstr ""
937
+
938
+ #: includes/js-config.php:22
939
+ msgid ""
940
+ "Please select either a background layout or content layout before submitting."
941
+ msgstr ""
942
+
943
+ #: includes/js-config.php:23
944
+ msgid "Do you really want to delete this item?"
945
+ msgstr ""
946
+
947
+ #: includes/js-config.php:24
948
+ msgid ""
949
+ "Do you really want to delete this module? All content data will be "
950
+ "permanently deleted."
951
+ msgstr ""
952
+
953
+ #: includes/js-config.php:25
954
+ msgid ""
955
+ "Do you really want to delete this row? All content data will be permanently "
956
+ "deleted."
957
+ msgstr ""
958
+
959
+ #: includes/js-config.php:27
960
+ msgid "Discard Draft"
961
+ msgstr ""
962
+
963
+ #: includes/js-config.php:28
964
+ msgid ""
965
+ "Do you really want to discard this draft? All of your changes that are not "
966
+ "published will be lost."
967
+ msgstr ""
968
+
969
+ #: includes/js-config.php:29
970
+ msgid "Save Draft"
971
+ msgstr ""
972
+
973
+ #: includes/js-config.php:30
974
+ msgctxt "Duplicate page/post action label."
975
+ msgid "Duplicate"
976
+ msgstr ""
977
+
978
+ #: includes/js-config.php:31
979
+ msgid "Duplicate This Page"
980
+ msgstr ""
981
+
982
+ #: includes/js-config.php:32
983
+ msgid "Duplicate This Template"
984
+ msgstr ""
985
+
986
+ #: includes/js-config.php:33
987
+ msgid "Edit Global Settings"
988
+ msgstr ""
989
+
990
+ #: includes/js-config.php:34
991
+ msgid "Drop a row layout or module to get started!"
992
+ msgstr ""
993
+
994
+ #: includes/js-config.php:35
995
+ msgid "Full Size"
996
+ msgstr ""
997
+
998
+ #: includes/js-config.php:36
999
+ msgid "Insert"
1000
+ msgstr ""
1001
+
1002
+ #: includes/js-config.php:37
1003
+ msgid "Large"
1004
+ msgstr ""
1005
+
1006
+ #: includes/js-config.php:38
1007
+ msgid "Manage Templates"
1008
+ msgstr ""
1009
+
1010
+ #: includes/js-config.php:39
1011
+ msgid "Medium"
1012
+ msgstr ""
1013
+
1014
+ #: includes/js-config.php:40
1015
+ msgid "Module"
1016
+ msgstr ""
1017
+
1018
+ #: includes/js-config.php:41
1019
+ msgid "Move"
1020
+ msgstr ""
1021
+
1022
+ #: includes/js-config.php:42
1023
+ msgid "New Column"
1024
+ msgstr ""
1025
+
1026
+ #: includes/js-config.php:43
1027
+ msgid "New Row"
1028
+ msgstr ""
1029
+
1030
+ #: includes/js-config.php:44
1031
+ msgid "No results found."
1032
+ msgstr ""
1033
+
1034
+ #: includes/js-config.php:45
1035
+ msgid "OK"
1036
+ msgstr ""
1037
+
1038
+ #: includes/js-config.php:46 modules/photo/photo.php:454
1039
+ msgid "Photo Page"
1040
+ msgstr ""
1041
+
1042
+ #: includes/js-config.php:47
1043
+ msgid "Photo Selected"
1044
+ msgstr ""
1045
+
1046
+ #: includes/js-config.php:48
1047
+ msgid "Photos Selected"
1048
+ msgstr ""
1049
+
1050
+ #: includes/js-config.php:49
1051
+ msgid "Publish Changes"
1052
+ msgstr ""
1053
+
1054
+ #: includes/js-config.php:51
1055
+ msgid "Row"
1056
+ msgstr ""
1057
+
1058
+ #: includes/js-config.php:52 includes/row-settings.php:6
1059
+ msgid "Row Settings"
1060
+ msgstr ""
1061
+
1062
+ #: includes/js-config.php:53
1063
+ msgid "Save Core Template"
1064
+ msgstr ""
1065
+
1066
+ #: includes/js-config.php:54 includes/ui.php:10
1067
+ #: includes/user-template-settings.php:4
1068
+ msgid "Save Template"
1069
+ msgstr ""
1070
+
1071
+ #: includes/js-config.php:56
1072
+ msgid "Select Photos"
1073
+ msgstr ""
1074
+
1075
+ #: includes/js-config.php:59
1076
+ msgid "Append New Layout"
1077
+ msgstr ""
1078
+
1079
+ #: includes/js-config.php:60
1080
+ msgid "Replace Existing Layout"
1081
+ msgstr ""
1082
+
1083
+ #: includes/js-config.php:61
1084
+ msgid "Template Saved!"
1085
+ msgstr ""
1086
+
1087
+ #: includes/js-config.php:62
1088
+ msgid "Thumbnail"
1089
+ msgstr ""
1090
+
1091
+ #: includes/js-config.php:63
1092
+ msgid ""
1093
+ "The settings you are currently editing will not be saved if you navigate "
1094
+ "away from this page."
1095
+ msgstr ""
1096
+
1097
+ #: includes/loop-settings.php:19
1098
+ msgid "Post Type"
1099
+ msgstr ""
1100
+
1101
+ #: includes/loop-settings.php:25
1102
+ msgid "Order By"
1103
+ msgstr ""
1104
+
1105
+ #: includes/loop-settings.php:27
1106
+ msgid "ID"
1107
+ msgstr ""
1108
+
1109
+ #: includes/loop-settings.php:28 modules/post-grid/post-grid.php:155
1110
+ #: modules/woocommerce/woocommerce.php:189
1111
+ msgid "Date"
1112
+ msgstr ""
1113
+
1114
+ #: includes/loop-settings.php:29
1115
+ msgid "Date Last Modified"
1116
+ msgstr ""
1117
+
1118
+ #: includes/loop-settings.php:30 modules/pricing-table/pricing-table.php:90
1119
+ #: modules/pricing-table/pricing-table.php:94
1120
+ msgid "Title"
1121
+ msgstr ""
1122
+
1123
+ #: includes/loop-settings.php:31 modules/post-grid/post-grid.php:146
1124
+ msgid "Author"
1125
+ msgstr ""
1126
+
1127
+ #: includes/loop-settings.php:32
1128
+ msgid "Comment Count"
1129
+ msgstr ""
1130
+
1131
+ #: includes/loop-settings.php:33
1132
+ msgid "Menu Order"
1133
+ msgstr ""
1134
+
1135
+ #: includes/loop-settings.php:34
1136
+ msgid "Random"
1137
+ msgstr ""
1138
+
1139
+ #: includes/loop-settings.php:41
1140
+ msgid "Order"
1141
+ msgstr ""
1142
+
1143
+ #: includes/loop-settings.php:43
1144
+ msgid "Descending"
1145
+ msgstr ""
1146
+
1147
+ #: includes/loop-settings.php:44
1148
+ msgid "Ascending"
1149
+ msgstr ""
1150
+
1151
+ #: includes/loop-settings.php:52
1152
+ msgid "Filter"
1153
+ msgstr ""
1154
+
1155
+ #: includes/loop-settings.php:63
1156
+ #, php-format
1157
+ msgid "Enter a comma separated list of %s. Only these %s will be shown."
1158
+ msgstr ""
1159
+
1160
+ #: includes/loop-settings.php:76
1161
+ #, php-format
1162
+ msgid ""
1163
+ "Enter a comma separated list of %s. Only posts with these %s will be shown."
1164
+ msgstr ""
1165
+
1166
+ #: includes/loop-settings.php:90
1167
+ msgid "Authors"
1168
+ msgstr ""
1169
+
1170
+ #: includes/loop-settings.php:91
1171
+ msgid ""
1172
+ "Enter a comma separated list of authors usernames. Only posts with these "
1173
+ "authors will be shown."
1174
+ msgstr ""
1175
+
1176
+ #: includes/module-settings.php:14
1177
+ msgid ""
1178
+ "A custom CSS class that will be applied to this module. Spaces only, no dots."
1179
+ msgstr ""
1180
+
1181
+ #: includes/module-settings.php:30
1182
+ msgid "Choose whether to show or hide this module at different device sizes."
1183
+ msgstr ""
1184
+
1185
+ #: includes/module-settings.php:91
1186
+ msgid "Animation"
1187
+ msgstr ""
1188
+
1189
+ #: includes/module-settings.php:97
1190
+ msgctxt "Animation style."
1191
+ msgid "None"
1192
+ msgstr ""
1193
+
1194
+ #: includes/module-settings.php:98
1195
+ msgctxt "Animation style."
1196
+ msgid "Fade In"
1197
+ msgstr ""
1198
+
1199
+ #: includes/module-settings.php:99
1200
+ msgctxt "Animation style."
1201
+ msgid "Slide Left"
1202
+ msgstr ""
1203
+
1204
+ #: includes/module-settings.php:100
1205
+ msgctxt "Animation style."
1206
+ msgid "Slide Right"
1207
+ msgstr ""
1208
+
1209
+ #: includes/module-settings.php:101
1210
+ msgctxt "Animation style."
1211
+ msgid "Slide Up"
1212
+ msgstr ""
1213
+
1214
+ #: includes/module-settings.php:102
1215
+ msgctxt "Animation style."
1216
+ msgid "Slide Down"
1217
+ msgstr ""
1218
+
1219
+ #: includes/module-settings.php:110
1220
+ #: modules/content-slider/content-slider.php:223
1221
+ #: modules/testimonials/testimonials.php:91
1222
+ msgid "Delay"
1223
+ msgstr ""
1224
+
1225
+ #: includes/module-settings.php:114 includes/row-settings.php:266
1226
+ #: includes/row-settings.php:297 modules/content-slider/content-slider.php:227
1227
+ #: modules/content-slider/content-slider.php:244
1228
+ #: modules/slideshow/slideshow.php:385 modules/slideshow/slideshow.php:410
1229
+ #: modules/slideshow/slideshow.php:581
1230
+ #: modules/testimonials/testimonials.php:95
1231
+ #: modules/testimonials/testimonials.php:112
1232
+ msgctxt "Value unit for form field of time in seconds. Such as: \"5 seconds\""
1233
+ msgid "seconds"
1234
+ msgstr ""
1235
+
1236
+ #: includes/module-settings.php:115
1237
+ msgid "The amount of time in seconds before this animation starts."
1238
+ msgstr ""
1239
+
1240
+ #: includes/multisite-settings.php:116
1241
+ msgid ""
1242
+ "Enter a comma separated list of the post types you would like the builder to "
1243
+ "work with."
1244
+ msgstr ""
1245
+
1246
+ #: includes/multisite-settings.php:132
1247
+ msgid "Example: page, post, product"
1248
+ msgstr ""
1249
+
1250
+ #: includes/row-settings.php:16 modules/button/button.php:146
1251
+ #: modules/content-slider/content-slider.php:477
1252
+ msgid "Width"
1253
+ msgstr ""
1254
+
1255
+ #: includes/row-settings.php:19 includes/row-settings.php:37
1256
+ #: includes/row-settings.php:179
1257
+ msgid "Fixed"
1258
+ msgstr ""
1259
+
1260
+ #: includes/row-settings.php:20 includes/row-settings.php:38
1261
+ #: modules/button/button.php:150 modules/callout/callout.php:554
1262
+ msgid "Full Width"
1263
+ msgstr ""
1264
+
1265
+ #: includes/row-settings.php:27
1266
+ msgid ""
1267
+ "Full width rows span the width of the page from edge to edge. Fixed rows are "
1268
+ "no wider than the Row Max Width set in the Global Settings."
1269
+ msgstr ""
1270
+
1271
+ #: includes/row-settings.php:34
1272
+ msgid "Content Width"
1273
+ msgstr ""
1274
+
1275
+ #: includes/row-settings.php:40
1276
+ msgid ""
1277
+ "Full width content spans the width of the page from edge to edge. Fixed "
1278
+ "content is no wider than the Row Max Width set in the Global Settings."
1279
+ msgstr ""
1280
+
1281
+ #: includes/row-settings.php:61
1282
+ msgid "Background"
1283
+ msgstr ""
1284
+
1285
+ #: includes/row-settings.php:68 modules/content-slider/content-slider.php:332
1286
+ msgctxt "Background type."
1287
+ msgid "None"
1288
+ msgstr ""
1289
+
1290
+ #: includes/row-settings.php:69
1291
+ msgctxt "Background type."
1292
+ msgid "Color"
1293
+ msgstr ""
1294
+
1295
+ #: includes/row-settings.php:70
1296
+ msgctxt "Background type."
1297
+ msgid "Photo"
1298
+ msgstr ""
1299
+
1300
+ #: includes/row-settings.php:71
1301
+ msgctxt "Background type."
1302
+ msgid "Video"
1303
+ msgstr ""
1304
+
1305
+ #: includes/row-settings.php:73
1306
+ msgctxt "Background type."
1307
+ msgid "Slideshow"
1308
+ msgstr ""
1309
+
1310
+ #: includes/row-settings.php:77
1311
+ msgctxt "Background type."
1312
+ msgid "Parallax"
1313
+ msgstr ""
1314
+
1315
+ #: includes/row-settings.php:129 modules/content-slider/content-slider.php:353
1316
+ msgid "Background Photo"
1317
+ msgstr ""
1318
+
1319
+ #: includes/row-settings.php:133 includes/row-settings.php:321
1320
+ #: modules/callout/callout.php:314 modules/callout/callout.php:330
1321
+ #: modules/callout/callout.php:334
1322
+ #: modules/content-slider/content-slider.php:329
1323
+ #: modules/content-slider/content-slider.php:398
1324
+ #: modules/content-slider/content-slider.php:710 modules/photo/photo.php:25
1325
+ #: modules/photo/photo.php:392
1326
+ msgid "Photo"
1327
+ msgstr ""
1328
+
1329
+ #: includes/row-settings.php:140
1330
+ msgid "Repeat"
1331
+ msgstr ""
1332
+
1333
+ #: includes/row-settings.php:143
1334
+ msgctxt "Background repeat."
1335
+ msgid "None"
1336
+ msgstr ""
1337
+
1338
+ #: includes/row-settings.php:144
1339
+ msgctxt "Background repeat."
1340
+ msgid "Tile"
1341
+ msgstr ""
1342
+
1343
+ #: includes/row-settings.php:145
1344
+ msgctxt "Background repeat."
1345
+ msgid "Horizontal"
1346
+ msgstr ""
1347
+
1348
+ #: includes/row-settings.php:146
1349
+ msgctxt "Background repeat."
1350
+ msgid "Vertical"
1351
+ msgstr ""
1352
+
1353
+ #: includes/row-settings.php:148
1354
+ msgid ""
1355
+ "Repeat applies to how the image should display in the row background. "
1356
+ "Choosing none will display the image as uploaded. Tile will repeat the image "
1357
+ "as many times as needed to fill the row horizontally and vertically. You can "
1358
+ "also specify the image to only repeat horizontally or vertically."
1359
+ msgstr ""
1360
+
1361
+ #: includes/row-settings.php:158
1362
+ msgid "Left Top"
1363
+ msgstr ""
1364
+
1365
+ #: includes/row-settings.php:159
1366
+ msgid "Left Center"
1367
+ msgstr ""
1368
+
1369
+ #: includes/row-settings.php:160
1370
+ msgid "Left Bottom"
1371
+ msgstr ""
1372
+
1373
+ #: includes/row-settings.php:161
1374
+ msgid "Right Top"
1375
+ msgstr ""
1376
+
1377
+ #: includes/row-settings.php:162
1378
+ msgid "Right Center"
1379
+ msgstr ""
1380
+
1381
+ #: includes/row-settings.php:163
1382
+ msgid "Right Bottom"
1383
+ msgstr ""
1384
+
1385
+ #: includes/row-settings.php:164
1386
+ msgid "Center Top"
1387
+ msgstr ""
1388
+
1389
+ #: includes/row-settings.php:165 modules/button/button.php:176
1390
+ #: modules/callout/callout.php:249
1391
+ #: modules/content-slider/content-slider.php:471 modules/cta/cta.php:124
1392
+ #: modules/heading/heading.php:90 modules/heading/heading.php:162
1393
+ #: modules/icon-group/icon-group.php:110 modules/icon/icon.php:133
1394
+ #: modules/photo/photo.php:418 modules/social-buttons/social-buttons.php:100
1395
+ msgid "Center"
1396
+ msgstr ""
1397
+
1398
+ #: includes/row-settings.php:166
1399
+ msgid "Center Bottom"
1400
+ msgstr ""
1401
+
1402
+ #: includes/row-settings.php:168
1403
+ msgid "Position will tell the image where it should sit in the row background."
1404
+ msgstr ""
1405
+
1406
+ #: includes/row-settings.php:175
1407
+ msgid "Attachment"
1408
+ msgstr ""
1409
+
1410
+ #: includes/row-settings.php:178 modules/post-grid/post-grid.php:75
1411
+ msgid "Scroll"
1412
+ msgstr ""
1413
+
1414
+ #: includes/row-settings.php:181
1415
+ msgid ""
1416
+ "Attachment will specify how the image reacts when scrolling a page. When "
1417
+ "scrolling is selected, the image will scroll with page scrolling. This is "
1418
+ "the default setting. Fixed will allow the image to scroll within the row "
1419
+ "background if fill is selected in the scale setting."
1420
+ msgstr ""
1421
+
1422
+ #: includes/row-settings.php:188
1423
+ msgid "Scale"
1424
+ msgstr ""
1425
+
1426
+ #: includes/row-settings.php:191
1427
+ msgctxt "Background scale."
1428
+ msgid "None"
1429
+ msgstr ""
1430
+
1431
+ #: includes/row-settings.php:192
1432
+ msgid "Fit"
1433
+ msgstr ""
1434
+
1435
+ #: includes/row-settings.php:193
1436
+ msgid "Fill"
1437
+ msgstr ""
1438
+
1439
+ #: includes/row-settings.php:195
1440
+ msgid ""
1441
+ "Scale applies to how the image should display in the row background. You can "
1442
+ "select either fill or fit to the row background."
1443
+ msgstr ""
1444
+
1445
+ #: includes/row-settings.php:203
1446
+ msgid "Background Video"
1447
+ msgstr ""
1448
+
1449
+ #: includes/row-settings.php:207 modules/content-slider/content-slider.php:330
1450
+ #: modules/video/video.php:19 modules/video/video.php:100
1451
+ msgid "Video"
1452
+ msgstr ""
1453
+
1454
+ #: includes/row-settings.php:208
1455
+ msgid ""
1456
+ "An HTML5 video to use as the background of this row. Supported types are "
1457
+ "MP4, WebM and Ogg."
1458
+ msgstr ""
1459
+
1460
+ #: includes/row-settings.php:215
1461
+ msgid "Fallback Photo"
1462
+ msgstr ""
1463
+
1464
+ #: includes/row-settings.php:216
1465
+ msgid "A photo that will be displayed if the video fails to load."
1466
+ msgstr ""
1467
+
1468
+ #: includes/row-settings.php:224
1469
+ msgid "Background Slideshow"
1470
+ msgstr ""
1471
+
1472
+ #: includes/row-settings.php:228 modules/gallery/gallery.php:234
1473
+ #: modules/slideshow/slideshow.php:263
1474
+ msgid "Source"
1475
+ msgstr ""
1476
+
1477
+ #: includes/row-settings.php:231 modules/gallery/gallery.php:237
1478
+ #: modules/photo/photo.php:378 modules/slideshow/slideshow.php:266
1479
+ #: modules/video/video.php:86
1480
+ msgid "Media Library"
1481
+ msgstr ""
1482
+
1483
+ #: includes/row-settings.php:234 modules/gallery/gallery.php:240
1484
+ #: modules/slideshow/slideshow.php:269
1485
+ msgid ""
1486
+ "Pull images from the WordPress media library or a gallery on your SmugMug "
1487
+ "site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
1488
+ "accessed by using the get a link function in your SmugMug gallery."
1489
+ msgstr ""
1490
+
1491
+ #: includes/row-settings.php:249 modules/gallery/gallery.php:252
1492
+ #: modules/slideshow/slideshow.php:281
1493
+ msgid "Photos"
1494
+ msgstr ""
1495
+
1496
+ #: includes/row-settings.php:256 modules/gallery/gallery.php:256
1497
+ #: modules/slideshow/slideshow.php:285
1498
+ msgid "Feed URL"
1499
+ msgstr ""
1500
+
1501
+ #: includes/row-settings.php:263 includes/row-settings.php:328
1502
+ #: modules/slideshow/slideshow.php:382
1503
+ msgid "Speed"
1504
+ msgstr ""
1505
+
1506
+ #: includes/row-settings.php:273 modules/content-slider/content-slider.php:231
1507
+ #: modules/slideshow/slideshow.php:389
1508
+ #: modules/testimonials/testimonials.php:99
1509
+ msgid "Transition"
1510
+ msgstr ""
1511
+
1512
+ #: includes/row-settings.php:276
1513
+ msgctxt "Slideshow transition type."
1514
+ msgid "None"
1515
+ msgstr ""
1516
+
1517
+ #: includes/row-settings.php:277 modules/content-slider/content-slider.php:235
1518
+ #: modules/slideshow/slideshow.php:393
1519
+ #: modules/testimonials/testimonials.php:103
1520
+ msgid "Fade"
1521
+ msgstr ""
1522
+
1523
+ #: includes/row-settings.php:278 modules/slideshow/slideshow.php:394
1524
+ msgid "Ken Burns"
1525
+ msgstr ""
1526
+
1527
+ #: includes/row-settings.php:279 modules/slideshow/slideshow.php:395
1528
+ msgid "Slide Horizontal"
1529
+ msgstr ""
1530
+
1531
+ #: includes/row-settings.php:280 modules/slideshow/slideshow.php:396
1532
+ msgid "Slide Vertical"
1533
+ msgstr ""
1534
+
1535
+ #: includes/row-settings.php:281 modules/slideshow/slideshow.php:397
1536
+ msgid "Blinds"
1537
+ msgstr ""
1538
+
1539
+ #: includes/row-settings.php:282 modules/slideshow/slideshow.php:398
1540
+ msgid "Bars"
1541
+ msgstr ""
1542
+
1543
+ #: includes/row-settings.php:283 modules/slideshow/slideshow.php:399
1544
+ msgid "Random Bars"
1545
+ msgstr ""
1546
+
1547
+ #: includes/row-settings.php:284 modules/slideshow/slideshow.php:400
1548
+ msgid "Boxes"
1549
+ msgstr ""
1550
+
1551
+ #: includes/row-settings.php:285 modules/slideshow/slideshow.php:401
1552
+ msgid "Random Boxes"
1553
+ msgstr ""
1554
+
1555
+ #: includes/row-settings.php:286 modules/slideshow/slideshow.php:402
1556
+ msgid "Boxes Grow"
1557
+ msgstr ""
1558
+
1559
+ #: includes/row-settings.php:294 modules/content-slider/content-slider.php:240
1560
+ #: modules/slideshow/slideshow.php:407
1561
+ #: modules/testimonials/testimonials.php:108
1562
+ msgid "Transition Speed"
1563
+ msgstr ""
1564
+
1565
+ #: includes/row-settings.php:304 modules/slideshow/slideshow.php:414
1566
+ msgid "Randomize Photos"
1567
+ msgstr ""
1568
+
1569
+ #: includes/row-settings.php:317
1570
+ msgid "Background Parallax"
1571
+ msgstr ""
1572
+
1573
+ #: includes/row-settings.php:331
1574
+ msgid "Fast"
1575
+ msgstr ""
1576
+
1577
+ #: includes/row-settings.php:332
1578
+ msgctxt "Speed."
1579
+ msgid "Medium"
1580
+ msgstr ""
1581
+
1582
+ #: includes/row-settings.php:333
1583
+ msgid "Slow"
1584
+ msgstr ""
1585
+
1586
+ #: includes/row-settings.php:457
1587
+ msgid "Add a custom CSS selector here to apply additional styling to this row."
1588
+ msgstr ""
1589
+
1590
+ #: includes/row-settings.php:473
1591
+ msgid "Choose whether to show or hide this row at different device sizes."
1592
+ msgstr ""
1593
+
1594
+ #: includes/settings.php:62
1595
+ msgid "Save"
1596
+ msgstr ""
1597
+
1598
+ #: includes/template-selector.php:3
1599
+ msgid "Layout Templates"
1600
+ msgstr ""
1601
+
1602
+ #: includes/template-selector.php:8
1603
+ msgid "Home Pages"
1604
+ msgstr ""
1605
+
1606
+ #: includes/template-selector.php:9
1607
+ msgid "Content Pages"
1608
+ msgstr ""
1609
+
1610
+ #: includes/template-selector.php:13
1611
+ msgid "Your Templates"
1612
+ msgstr ""
1613
+
1614
+ #: includes/template-selector.php:47 includes/template-selector.php:77
1615
+ msgctxt "Template name."
1616
+ msgid "Blank"
1617
+ msgstr ""
1618
+
1619
+ #: includes/template-selector.php:72
1620
+ msgid ""
1621
+ "You haven't saved any templates yet! To do so, create a layout and save it "
1622
+ "as a template under <strong>Tools &rarr; Save Template</strong>."
1623
+ msgstr ""
1624
+
1625
+ #: includes/template-settings.php:14 includes/user-template-settings.php:15
1626
+ msgctxt "Template name."
1627
+ msgid "Name"
1628
+ msgstr ""
1629
+
1630
+ #: includes/template-settings.php:18
1631
+ msgid "Image Filename"
1632
+ msgstr ""
1633
+
1634
+ #: includes/template-settings.php:19
1635
+ msgid ""
1636
+ "The filename of the image such as \"thumb.jpg\" that resides in the \"img/"
1637
+ "templates/\" directory."
1638
+ msgstr ""
1639
+
1640
+ #: includes/ui.php:7
1641
+ #, php-format
1642
+ msgid "Template: %s"
1643
+ msgstr ""
1644
+
1645
+ #: includes/ui.php:23
1646
+ msgid "Page Builder Demo"
1647
+ msgstr ""
1648
+
1649
+ #: includes/ui.php:37
1650
+ msgid "Buy Now!"
1651
+ msgstr ""
1652
+
1653
+ #: includes/ui.php:39
1654
+ msgid "Upgrade!"
1655
+ msgstr ""
1656
+
1657
+ #: includes/ui.php:41
1658
+ msgid "Done"
1659
+ msgstr ""
1660
+
1661
+ #: includes/ui.php:42
1662
+ msgid "Tools"
1663
+ msgstr ""
1664
+
1665
+ #: includes/ui.php:46
1666
+ msgid "Add Content"
1667
+ msgstr ""
1668
+
1669
+ #: includes/ui.php:64
1670
+ msgid "Row Layouts"
1671
+ msgstr ""
1672
+
1673
+ #: includes/ui.php:68
1674
+ msgid "1 Column"
1675
+ msgstr ""
1676
+
1677
+ #: includes/ui.php:69
1678
+ msgid "2 Columns"
1679
+ msgstr ""
1680
+
1681
+ #: includes/ui.php:70
1682
+ msgid "3 Columns"
1683
+ msgstr ""
1684
+
1685
+ #: includes/ui.php:71
1686
+ msgid "4 Columns"
1687
+ msgstr ""
1688
+
1689
+ #: includes/ui.php:72
1690
+ msgid "5 Columns"
1691
+ msgstr ""
1692
+
1693
+ #: includes/ui.php:73
1694
+ msgid "6 Columns"
1695
+ msgstr ""
1696
+
1697
+ #: includes/ui.php:74
1698
+ msgid "Left Sidebar"
1699
+ msgstr ""
1700
+
1701
+ #: includes/ui.php:75
1702
+ msgid "Right Sidebar"
1703
+ msgstr ""
1704
+
1705
+ #: includes/ui.php:76
1706
+ msgid "Left &amp; Right Sidebar"
1707
+ msgstr ""
1708
+
1709
+ #: includes/ui.php:85 modules/widget/widget.php:16
1710
+ msgid "WordPress Widgets"
1711
+ msgstr ""
1712
+
1713
+ #: includes/updater/classes/class-fl-updater.php:107
1714
+ msgid "<strong>UPDATE UNAVAILABLE!</strong>"
1715
+ msgstr ""
1716
+
1717
+ #: includes/updater/classes/class-fl-updater.php:109
1718
+ msgid "Please subscribe to enable automatic updates for this plugin."
1719
+ msgstr ""
1720
+
1721
+ #: includes/updater/classes/class-fl-updater.php:111
1722
+ #: includes/updater/includes/form.php:6
1723
+ msgid "Subscribe Now"
1724
+ msgstr ""
1725
+
1726
+ #: includes/updater/includes/form.php:5
1727
+ msgid ""
1728
+ "UPDATES UNAVAILABLE! Please subscribe or enter your licence key below to "
1729
+ "enable automatic updates."
1730
+ msgstr ""
1731
+
1732
+ #: includes/updater/includes/form.php:11
1733
+ msgid "Updates &amp; Support Subscription"
1734
+ msgstr ""
1735
+
1736
+ #: includes/updater/includes/form.php:14
1737
+ msgid "Active!"
1738
+ msgstr ""
1739
+
1740
+ #: includes/updater/includes/form.php:16
1741
+ msgid "Not Active!"
1742
+ msgstr ""
1743
+
1744
+ #: includes/updater/includes/form.php:22
1745
+ msgid "Email address saved!"
1746
+ msgstr ""
1747
+
1748
+ #: includes/updater/includes/form.php:27
1749
+ #, php-format
1750
+ msgid "Enter your <a%s>licence key</a> to enable remote updates and support."
1751
+ msgstr ""
1752
+
1753
+ #: includes/updater/includes/form.php:39
1754
+ msgid "Save Subscription Settings"
1755
+ msgstr ""
1756
+
1757
+ #: includes/user-template-settings.php:8
1758
+ msgid ""
1759
+ "Save the current layout as a template that can be reused under "
1760
+ "<strong>Templates &rarr; Your Templates</strong>."
1761
+ msgstr ""
1762
+
1763
+ #: modules/accordion/accordion.php:14
1764
+ msgid "Accordion"
1765
+ msgstr ""
1766
+
1767
+ #: modules/accordion/accordion.php:15
1768
+ msgid "Display a collapsible accordion of items."
1769
+ msgstr ""
1770
+
1771
+ #: modules/accordion/accordion.php:16 modules/button/button.php:16
1772
+ #: modules/callout/callout.php:16 modules/contact-form/contact-form.php:16
1773
+ #: modules/content-slider/content-slider.php:16 modules/cta/cta.php:16
1774
+ #: modules/gallery/gallery.php:16 modules/html/html.php:16
1775
+ #: modules/icon-group/icon-group.php:16 modules/icon/icon.php:16
1776
+ #: modules/map/map.php:16 modules/post-grid/post-grid.php:16
1777
+ #: modules/pricing-table/pricing-table.php:16 modules/sidebar/sidebar.php:16
1778
+ #: modules/slideshow/slideshow.php:16
1779
+ #: modules/social-buttons/social-buttons.php:16 modules/tabs/tabs.php:16
1780
+ #: modules/testimonials/testimonials.php:16
1781
+ #: modules/woocommerce/woocommerce.php:18
1782
+ msgid "Advanced Modules"
1783
+ msgstr ""
1784
+
1785
+ #: modules/accordion/accordion.php:28 modules/tabs/tabs.php:28
1786
+ msgid "Items"
1787
+ msgstr ""
1788
+
1789
+ #: modules/accordion/accordion.php:35 modules/tabs/tabs.php:35
1790
+ msgid "Item"
1791
+ msgstr ""
1792
+
1793
+ #: modules/accordion/accordion.php:52 modules/tabs/tabs.php:61
1794
+ msgid "Border Color"
1795
+ msgstr ""
1796
+
1797
+ #: modules/accordion/accordion.php:62
1798
+ msgid "Label Size"
1799
+ msgstr ""
1800
+
1801
+ #: modules/accordion/accordion.php:65
1802
+ msgctxt "Label size."
1803
+ msgid "Small"
1804
+ msgstr ""
1805
+
1806
+ #: modules/accordion/accordion.php:66
1807
+ msgctxt "Label size."
1808
+ msgid "Medium"
1809
+ msgstr ""
1810
+
1811
+ #: modules/accordion/accordion.php:67
1812
+ msgctxt "Label size."
1813
+ msgid "Large"
1814
+ msgstr ""
1815
+
1816
+ #: modules/accordion/accordion.php:75
1817
+ msgid "Item Spacing"
1818
+ msgstr ""
1819
+
1820
+ #: modules/accordion/accordion.php:86
1821
+ msgid "Collapse Inactive"
1822
+ msgstr ""
1823
+
1824
+ #: modules/accordion/accordion.php:92
1825
+ msgid ""
1826
+ "Choosing yes will keep only one item open at a time. Choosing no will allow "
1827
+ "multiple items to be open at the same time."
1828
+ msgstr ""
1829
+
1830
+ #: modules/accordion/accordion.php:107 modules/tabs/tabs.php:74
1831
+ msgid "Add Item"
1832
+ msgstr ""
1833
+
1834
+ #: modules/accordion/accordion.php:117 modules/tabs/tabs.php:84
1835
+ msgid "Label"
1836
+ msgstr ""
1837
+
1838
+ #: modules/accordion/accordion.php:122 modules/post-grid/post-grid.php:195
1839
+ #: modules/post-grid/post-grid.php:199 modules/post-grid/post-grid.php:235
1840
+ #: modules/tabs/tabs.php:89
1841
+ msgid "Content"
1842
+ msgstr ""
1843
+
1844
+ #: modules/button/button.php:14 modules/callout/callout.php:477
1845
+ #: modules/content-slider/content-slider.php:595 modules/cta/cta.php:212
1846
+ #: modules/pricing-table/pricing-table.php:129
1847
+ msgid "Button"
1848
+ msgstr ""
1849
+
1850
+ #: modules/button/button.php:15
1851
+ msgid "A simple call to action button."
1852
+ msgstr ""
1853
+
1854
+ #: modules/button/button.php:54 modules/cta/cta.php:220
1855
+ msgid "Click Here"
1856
+ msgstr ""
1857
+
1858
+ #: modules/button/button.php:62 modules/callout/callout.php:315
1859
+ #: modules/callout/callout.php:363 modules/callout/callout.php:367
1860
+ #: modules/cta/cta.php:228 modules/icon-group/icon-group.php:34
1861
+ #: modules/icon-group/icon-group.php:135 modules/icon/icon.php:14
1862
+ #: modules/icon/icon.php:34
1863
+ msgid "Icon"
1864
+ msgstr ""
1865
+
1866
+ #: modules/button/button.php:68 modules/button/button.php:72
1867
+ #: modules/callout/callout.php:443 modules/callout/callout.php:447
1868
+ #: modules/content-slider/content-slider.php:567
1869
+ #: modules/content-slider/content-slider.php:571
1870
+ #: modules/content-slider/content-slider.php:594 modules/cta/cta.php:238
1871
+ #: modules/heading/heading.php:43 modules/heading/heading.php:47
1872
+ #: modules/icon-group/icon-group.php:139 modules/icon/icon.php:43
1873
+ #: modules/slideshow/slideshow.php:343
1874
+ msgid "Link"
1875
+ msgstr ""
1876
+
1877
+ #: modules/button/button.php:73
1878
+ msgid "http://www.example.com"
1879
+ msgstr ""
1880
+
1881
+ #: modules/button/button.php:80 modules/callout/callout.php:455
1882
+ #: modules/content-slider/content-slider.php:576 modules/cta/cta.php:245
1883
+ #: modules/heading/heading.php:54 modules/icon/icon.php:50
1884
+ #: modules/photo/photo.php:478
1885
+ msgid "Link Target"
1886
+ msgstr ""
1887
+
1888
+ #: modules/button/button.php:83 modules/callout/callout.php:458
1889
+ #: modules/content-slider/content-slider.php:579 modules/cta/cta.php:248
1890
+ #: modules/heading/heading.php:57 modules/icon/icon.php:53
1891
+ #: modules/photo/photo.php:481
1892
+ msgid "Same Window"
1893
+ msgstr ""
1894
+
1895
+ #: modules/button/button.php:84 modules/callout/callout.php:459
1896
+ #: modules/content-slider/content-slider.php:580 modules/cta/cta.php:249
1897
+ #: modules/heading/heading.php:58 modules/icon/icon.php:54
1898
+ #: modules/photo/photo.php:482
1899
+ msgid "New Window"
1900
+ msgstr ""
1901
+
1902
+ #: modules/button/button.php:98 modules/cta/cta.php:185
1903
+ #: modules/heading/heading.php:72 modules/icon-group/icon-group.php:47
1904
+ #: modules/icon/icon.php:78
1905
+ msgid "Colors"
1906
+ msgstr ""
1907
+
1908
+ #: modules/button/button.php:108 modules/callout/callout.php:407
1909
+ #: modules/callout/callout.php:512
1910
+ #: modules/content-slider/content-slider.php:630 modules/cta/cta.php:268
1911
+ #: modules/icon-group/icon-group.php:69 modules/icon/icon.php:100
1912
+ msgid "Background Hover Color"
1913
+ msgstr ""
1914
+
1915
+ #: modules/button/button.php:117 modules/callout/callout.php:521
1916
+ #: modules/content-slider/content-slider.php:522
1917
+ #: modules/content-slider/content-slider.php:635
1918
+ #: modules/content-slider/content-slider.php:719 modules/cta/cta.php:189
1919
+ #: modules/cta/cta.php:277 modules/heading/heading.php:77
1920
+ msgid "Text Color"
1921
+ msgstr ""
1922
+
1923
+ #: modules/button/button.php:123 modules/callout/callout.php:527
1924
+ #: modules/content-slider/content-slider.php:641 modules/cta/cta.php:283
1925
+ msgid "Text Hover Color"
1926
+ msgstr ""
1927
+
1928
+ #: modules/button/button.php:132 modules/callout/callout.php:415
1929
+ #: modules/callout/callout.php:536
1930
+ #: modules/content-slider/content-slider.php:646 modules/cta/cta.php:292
1931
+ #: modules/icon-group/icon-group.php:77 modules/icon/icon.php:108
1932
+ msgid "Gradient"
1933
+ msgstr ""
1934
+
1935
+ #: modules/button/button.php:142 modules/callout/callout.php:242
1936
+ #: modules/cta/cta.php:102 modules/heading/heading.php:82
1937
+ #: modules/icon-group/icon-group.php:87 modules/icon/icon.php:118
1938
+ msgid "Structure"
1939
+ msgstr ""
1940
+
1941
+ #: modules/button/button.php:149 modules/callout/callout.php:553
1942
+ msgctxt "Width."
1943
+ msgid "Auto"
1944
+ msgstr ""
1945
+
1946
+ #: modules/button/button.php:165
1947
+ msgid "Custom Width"
1948
+ msgstr ""
1949
+
1950
+ #: modules/button/button.php:173 modules/cta/cta.php:120
1951
+ #: modules/heading/heading.php:86 modules/heading/heading.php:141
1952
+ #: modules/icon-group/icon-group.php:107 modules/icon/icon.php:130
1953
+ #: modules/photo/photo.php:414 modules/social-buttons/social-buttons.php:97
1954
+ msgid "Alignment"
1955
+ msgstr ""
1956
+
1957
+ #: modules/button/button.php:183 modules/callout/callout.php:559
1958
+ #: modules/content-slider/content-slider.php:660 modules/cta/cta.php:306
1959
+ #: modules/heading/heading.php:114 modules/heading/heading.php:171
1960
+ msgid "Font Size"
1961
+ msgstr ""
1962
+
1963
+ #: modules/button/button.php:199 modules/callout/callout.php:575
1964
+ #: modules/cta/cta.php:322
1965
+ msgid "Round Corners"
1966
+ msgstr ""
1967
+
1968
+ #: modules/callout/callout.php:14
1969
+ msgid "Callout"
1970
+ msgstr ""
1971
+
1972
+ #: modules/callout/callout.php:15
1973
+ msgid "A heading and snippet of text with an optional link, icon and image."
1974
+ msgstr ""
1975
+
1976
+ #: modules/callout/callout.php:214
1977
+ #: modules/content-slider/content-slider.php:407
1978
+ #: modules/content-slider/content-slider.php:422 modules/cta/cta.php:72
1979
+ #: modules/heading/heading.php:14 modules/heading/heading.php:33
1980
+ #: modules/testimonials/testimonials.php:56
1981
+ #: modules/testimonials/testimonials.php:61
1982
+ msgid "Heading"
1983
+ msgstr ""
1984
+
1985
+ #: modules/callout/callout.php:246
1986
+ msgid "Overall Alignment"
1987
+ msgstr ""
1988
+
1989
+ #: modules/callout/callout.php:253
1990
+ msgid "The alignment that will apply to all elements within the callout."
1991
+ msgstr ""
1992
+
1993
+ #: modules/callout/callout.php:261 modules/cta/cta.php:145
1994
+ msgid "Heading Structure"
1995
+ msgstr ""
1996
+
1997
+ #: modules/callout/callout.php:265
1998
+ #: modules/content-slider/content-slider.php:426 modules/cta/cta.php:149
1999
+ msgid "Heading Tag"
2000
+ msgstr ""
2001
+
2002
+ #: modules/callout/callout.php:278
2003
+ #: modules/content-slider/content-slider.php:439
2004
+ #: modules/content-slider/content-slider.php:453 modules/cta/cta.php:162
2005
+ #: modules/testimonials/testimonials.php:69
2006
+ msgid "Heading Size"
2007
+ msgstr ""
2008
+
2009
+ #: modules/callout/callout.php:292 modules/cta/cta.php:176
2010
+ msgid "Heading Custom Size"
2011
+ msgstr ""
2012
+
2013
+ #: modules/callout/callout.php:310
2014
+ msgid "Image Type"
2015
+ msgstr ""
2016
+
2017
+ #: modules/callout/callout.php:313
2018
+ msgctxt "Image type."
2019
+ msgid "None"
2020
+ msgstr ""
2021
+
2022
+ #: modules/callout/callout.php:338 modules/photo/photo.php:401
2023
+ #: modules/slideshow/slideshow.php:312
2024
+ msgid "Crop"
2025
+ msgstr ""
2026
+
2027
+ #: modules/callout/callout.php:341
2028
+ msgctxt "Crop"
2029
+ msgid "None"
2030
+ msgstr ""
2031
+
2032
+ #: modules/callout/callout.php:342 modules/photo/photo.php:405
2033
+ msgid "Landscape"
2034
+ msgstr ""
2035
+
2036
+ #: modules/callout/callout.php:343 modules/photo/photo.php:406
2037
+ msgid "Panorama"
2038
+ msgstr ""
2039
+
2040
+ #: modules/callout/callout.php:344 modules/photo/photo.php:407
2041
+ msgid "Portrait"
2042
+ msgstr ""
2043
+
2044
+ #: modules/callout/callout.php:345 modules/photo/photo.php:408
2045
+ msgid "Square"
2046
+ msgstr ""
2047
+
2048
+ #: modules/callout/callout.php:346 modules/photo/photo.php:409
2049
+ msgid "Circle"
2050
+ msgstr ""
2051
+
2052
+ #: modules/callout/callout.php:354 modules/callout/callout.php:374
2053
+ msgid "Above Heading"
2054
+ msgstr ""
2055
+
2056
+ #: modules/callout/callout.php:355 modules/callout/callout.php:375
2057
+ msgid "Below Heading"
2058
+ msgstr ""
2059
+
2060
+ #: modules/callout/callout.php:356 modules/callout/callout.php:378
2061
+ msgid "Left of Text and Heading"
2062
+ msgstr ""
2063
+
2064
+ #: modules/callout/callout.php:357 modules/callout/callout.php:379
2065
+ msgid "Right of Text and Heading"
2066
+ msgstr ""
2067
+
2068
+ #: modules/callout/callout.php:376
2069
+ msgid "Left of Heading"
2070
+ msgstr ""
2071
+
2072
+ #: modules/callout/callout.php:377
2073
+ msgid "Right of Heading"
2074
+ msgstr ""
2075
+
2076
+ #: modules/callout/callout.php:385
2077
+ msgid "Icon Colors"
2078
+ msgstr ""
2079
+
2080
+ #: modules/callout/callout.php:394 modules/icon-group/icon-group.php:56
2081
+ #: modules/icon/icon.php:87
2082
+ msgid "Hover Color"
2083
+ msgstr ""
2084
+
2085
+ #: modules/callout/callout.php:425
2086
+ msgid "Icon Structure"
2087
+ msgstr ""
2088
+
2089
+ #: modules/callout/callout.php:429 modules/icon-group/icon-group.php:91
2090
+ #: modules/icon/icon.php:122 modules/post-grid/post-grid.php:136
2091
+ msgid "Size"
2092
+ msgstr ""
2093
+
2094
+ #: modules/callout/callout.php:440
2095
+ #: modules/content-slider/content-slider.php:564
2096
+ msgid "Call To Action"
2097
+ msgstr ""
2098
+
2099
+ #: modules/callout/callout.php:448
2100
+ msgid ""
2101
+ "The link applies to the entire module. If choosing a call to action type "
2102
+ "below, this link will also be used for the text or button."
2103
+ msgstr ""
2104
+
2105
+ #: modules/callout/callout.php:468
2106
+ #: modules/content-slider/content-slider.php:586 modules/cta/cta.php:14
2107
+ msgid "Call to Action"
2108
+ msgstr ""
2109
+
2110
+ #: modules/callout/callout.php:475
2111
+ #: modules/content-slider/content-slider.php:593
2112
+ msgctxt "Call to action."
2113
+ msgid "None"
2114
+ msgstr ""
2115
+
2116
+ #: modules/callout/callout.php:496
2117
+ #: modules/content-slider/content-slider.php:614
2118
+ msgid "Button Icon"
2119
+ msgstr ""
2120
+
2121
+ #: modules/callout/callout.php:502
2122
+ #: modules/content-slider/content-slider.php:620 modules/cta/cta.php:258
2123
+ msgid "Button Colors"
2124
+ msgstr ""
2125
+
2126
+ #: modules/callout/callout.php:546
2127
+ #: modules/content-slider/content-slider.php:656 modules/cta/cta.php:302
2128
+ msgid "Button Structure"
2129
+ msgstr ""
2130
+
2131
+ #: modules/callout/callout.php:550
2132
+ msgid "Button Width"
2133
+ msgstr ""
2134
+
2135
+ #: modules/contact-form/contact-form.php:14
2136
+ msgid "Contact Form"
2137
+ msgstr ""
2138
+
2139
+ #: modules/contact-form/contact-form.php:15
2140
+ msgid "A very simple contact form."
2141
+ msgstr ""
2142
+
2143
+ #: modules/contact-form/contact-form.php:36
2144
+ msgid "Contact Form Submission"
2145
+ msgstr ""
2146
+
2147
+ #: modules/contact-form/contact-form.php:64
2148
+ msgid "Send To Email"
2149
+ msgstr ""
2150
+
2151
+ #: modules/contact-form/contact-form.php:66
2152
+ msgid "example@mail.com"
2153
+ msgstr ""
2154
+
2155
+ #: modules/contact-form/contact-form.php:67
2156
+ msgid "The contact form will send to this e-mail"
2157
+ msgstr ""
2158
+
2159
+ #: modules/contact-form/includes/frontend.php:4
2160
+ msgctxt "Contact form field label."
2161
+ msgid "Name"
2162
+ msgstr ""
2163
+
2164
+ #: modules/contact-form/includes/frontend.php:5
2165
+ msgid "Please enter your name."
2166
+ msgstr ""
2167
+
2168
+ #: modules/contact-form/includes/frontend.php:6
2169
+ msgid "Your name"
2170
+ msgstr ""
2171
+
2172
+ #: modules/contact-form/includes/frontend.php:10
2173
+ msgid "Email"
2174
+ msgstr ""
2175
+
2176
+ #: modules/contact-form/includes/frontend.php:11
2177
+ msgid "Please enter a valid email."
2178
+ msgstr ""
2179
+
2180
+ #: modules/contact-form/includes/frontend.php:12
2181
+ msgid "Your email"
2182
+ msgstr ""
2183
+
2184
+ #: modules/contact-form/includes/frontend.php:16
2185
+ msgid "Your Message"
2186
+ msgstr ""
2187
+
2188
+ #: modules/contact-form/includes/frontend.php:17
2189
+ msgid "Please enter a message."
2190
+ msgstr ""
2191
+
2192
+ #: modules/contact-form/includes/frontend.php:18
2193
+ msgid "Your message"
2194
+ msgstr ""
2195
+
2196
+ #: modules/contact-form/includes/frontend.php:23
2197
+ msgid "Send"
2198
+ msgstr ""
2199
+
2200
+ #: modules/contact-form/includes/frontend.php:24
2201
+ msgid "Message Sent!"
2202
+ msgstr ""
2203
+
2204
+ #: modules/contact-form/includes/frontend.php:25
2205
+ msgid "Message failed. Please try again."
2206
+ msgstr ""
2207
+
2208
+ #: modules/content-slider/content-slider.php:14
2209
+ msgid "Content Slider"
2210
+ msgstr ""
2211
+
2212
+ #: modules/content-slider/content-slider.php:15
2213
+ msgid "Displays multiple slides with an optional heading and call to action."
2214
+ msgstr ""
2215
+
2216
+ #: modules/content-slider/content-slider.php:191 modules/map/map.php:41
2217
+ #: modules/separator/separator.php:58 modules/slideshow/slideshow.php:294
2218
+ msgid "Height"
2219
+ msgstr ""
2220
+
2221
+ #: modules/content-slider/content-slider.php:196
2222
+ msgid ""
2223
+ "This setting is the minimum height of the content slider. Content will "
2224
+ "expand the height automatically."
2225
+ msgstr ""
2226
+
2227
+ #: modules/content-slider/content-slider.php:200
2228
+ #: modules/slideshow/slideshow.php:373
2229
+ #: modules/testimonials/testimonials.php:82 modules/video/video.php:108
2230
+ msgid "Auto Play"
2231
+ msgstr ""
2232
+
2233
+ #: modules/content-slider/content-slider.php:214
2234
+ msgid "Show Play/Pause"
2235
+ msgstr ""
2236
+
2237
+ #: modules/content-slider/content-slider.php:234
2238
+ #: modules/testimonials/testimonials.php:102
2239
+ msgctxt "Transition type."
2240
+ msgid "Slide"
2241
+ msgstr ""
2242
+
2243
+ #: modules/content-slider/content-slider.php:248
2244
+ #: modules/testimonials/testimonials.php:121
2245
+ msgid "Show Arrows"
2246
+ msgstr ""
2247
+
2248
+ #: modules/content-slider/content-slider.php:257
2249
+ #: modules/testimonials/testimonials.php:151
2250
+ msgid "Show Dots"
2251
+ msgstr ""
2252
+
2253
+ #: modules/content-slider/content-slider.php:271
2254
+ msgid "Max Content Width"
2255
+ msgstr ""
2256
+
2257
+ #: modules/content-slider/content-slider.php:276
2258
+ msgid "The max width that the content area will be within your slides."
2259
+ msgstr ""
2260
+
2261
+ #: modules/content-slider/content-slider.php:283
2262
+ msgid "Slides"
2263
+ msgstr ""
2264
+
2265
+ #: modules/content-slider/content-slider.php:290
2266
+ msgid "Slide"
2267
+ msgstr ""
2268
+
2269
+ #: modules/content-slider/content-slider.php:305
2270
+ msgid "Slide Settings"
2271
+ msgstr ""
2272
+
2273
+ #: modules/content-slider/content-slider.php:315
2274
+ msgid "Slide Label"
2275
+ msgstr ""
2276
+
2277
+ #: modules/content-slider/content-slider.php:316
2278
+ msgid ""
2279
+ "A label to identify this slide on the Slides tab of the Content Slider "
2280
+ "settings."
2281
+ msgstr ""
2282
+
2283
+ #: modules/content-slider/content-slider.php:321
2284
+ msgid "Background Layout"
2285
+ msgstr ""
2286
+
2287
+ #: modules/content-slider/content-slider.php:327
2288
+ msgid "This setting is for the entire background of your slide."
2289
+ msgstr ""
2290
+
2291
+ #: modules/content-slider/content-slider.php:362
2292
+ msgid "Background Video Code"
2293
+ msgstr ""
2294
+
2295
+ #: modules/content-slider/content-slider.php:368
2296
+ msgid "Content Layout"
2297
+ msgstr ""
2298
+
2299
+ #: modules/content-slider/content-slider.php:374
2300
+ msgid ""
2301
+ "This allows you to add content over or in addition to the background "
2302
+ "selection above. The location of the content layout can be selected in the "
2303
+ "style tab."
2304
+ msgstr ""
2305
+
2306
+ #: modules/content-slider/content-slider.php:377
2307
+ msgid "Text &amp; Photo"
2308
+ msgstr ""
2309
+
2310
+ #: modules/content-slider/content-slider.php:378
2311
+ msgid "Text &amp; Video"
2312
+ msgstr ""
2313
+
2314
+ #: modules/content-slider/content-slider.php:379
2315
+ msgctxt "Content type."
2316
+ msgid "None"
2317
+ msgstr ""
2318
+
2319
+ #: modules/content-slider/content-slider.php:402 modules/video/video.php:132
2320
+ msgid "Video Embed Code"
2321
+ msgstr ""
2322
+
2323
+ #: modules/content-slider/content-slider.php:462
2324
+ msgid "Text Position"
2325
+ msgstr ""
2326
+
2327
+ #: modules/content-slider/content-slider.php:468
2328
+ msgid ""
2329
+ "The position will move the content layout selections left, right or center "
2330
+ "over the background of the slide."
2331
+ msgstr ""
2332
+
2333
+ #: modules/content-slider/content-slider.php:485
2334
+ msgid "Top Margin"
2335
+ msgstr ""
2336
+
2337
+ #: modules/content-slider/content-slider.php:493
2338
+ msgid "Bottom Margin"
2339
+ msgstr ""
2340
+
2341
+ #: modules/content-slider/content-slider.php:501
2342
+ msgid "Left Margin"
2343
+ msgstr ""
2344
+
2345
+ #: modules/content-slider/content-slider.php:509
2346
+ msgid "Right Margin"
2347
+ msgstr ""
2348
+
2349
+ #: modules/content-slider/content-slider.php:518
2350
+ msgid "Text Colors"
2351
+ msgstr ""
2352
+
2353
+ #: modules/content-slider/content-slider.php:528
2354
+ msgid "Text Shadow"
2355
+ msgstr ""
2356
+
2357
+ #: modules/content-slider/content-slider.php:537
2358
+ #: modules/content-slider/content-slider.php:725
2359
+ msgid "Text Background Color"
2360
+ msgstr ""
2361
+
2362
+ #: modules/content-slider/content-slider.php:538
2363
+ msgid ""
2364
+ "The color applies to the overlay behind text over the background selections."
2365
+ msgstr ""
2366
+
2367
+ #: modules/content-slider/content-slider.php:543
2368
+ msgid "Text Background Opacity"
2369
+ msgstr ""
2370
+
2371
+ #: modules/content-slider/content-slider.php:551
2372
+ msgid "Text Background Height"
2373
+ msgstr ""
2374
+
2375
+ #: modules/content-slider/content-slider.php:553
2376
+ msgid ""
2377
+ "Auto will allow the overlay to fit however long the text content is. 100% "
2378
+ "will fit the overlay to the top and bottom of the slide."
2379
+ msgstr ""
2380
+
2381
+ #: modules/content-slider/content-slider.php:555
2382
+ msgctxt "Background height."
2383
+ msgid "Auto"
2384
+ msgstr ""
2385
+
2386
+ #: modules/content-slider/content-slider.php:572
2387
+ msgid ""
2388
+ "The link applies to the entire slide. If choosing a call to action type "
2389
+ "below, this link will also be used for the text or button."
2390
+ msgstr ""
2391
+
2392
+ #: modules/content-slider/content-slider.php:676
2393
+ msgid "Border Radius"
2394
+ msgstr ""
2395
+
2396
+ #: modules/content-slider/content-slider.php:687
2397
+ msgctxt "Module settings form tab. Display on mobile devices."
2398
+ msgid "Mobile"
2399
+ msgstr ""
2400
+
2401
+ #: modules/content-slider/content-slider.php:690
2402
+ msgid "Mobile Photo"
2403
+ msgstr ""
2404
+
2405
+ #: modules/content-slider/content-slider.php:696
2406
+ msgid ""
2407
+ "You can choose a different photo that the slide will change to on mobile "
2408
+ "devices or no photo if desired."
2409
+ msgstr ""
2410
+
2411
+ #: modules/content-slider/content-slider.php:698
2412
+ msgid "Use Main Photo"
2413
+ msgstr ""
2414
+
2415
+ #: modules/content-slider/content-slider.php:699
2416
+ msgid "Choose Another Photo"
2417
+ msgstr ""
2418
+
2419
+ #: modules/content-slider/content-slider.php:700
2420
+ msgid "No Photo"
2421
+ msgstr ""
2422
+
2423
+ #: modules/content-slider/content-slider.php:715
2424
+ msgid "Mobile Text Colors"
2425
+ msgstr ""
2426
+
2427
+ #: modules/cta/cta.php:15
2428
+ msgid "Display a heading, subheading and a button."
2429
+ msgstr ""
2430
+
2431
+ #: modules/cta/cta.php:73
2432
+ msgid "Ready to find out more?"
2433
+ msgstr ""
2434
+
2435
+ #: modules/cta/cta.php:88
2436
+ msgid "Drop us a line today for a free quote!"
2437
+ msgstr ""
2438
+
2439
+ #: modules/cta/cta.php:106 modules/gallery/gallery.php:220
2440
+ #: modules/post-grid/post-grid.php:44 modules/tabs/tabs.php:52
2441
+ #: modules/testimonials/testimonials.php:37
2442
+ #: modules/woocommerce/woocommerce.php:57
2443
+ msgid "Layout"
2444
+ msgstr ""
2445
+
2446
+ #: modules/cta/cta.php:109
2447
+ msgid "Inline"
2448
+ msgstr ""
2449
+
2450
+ #: modules/cta/cta.php:110
2451
+ msgid "Stacked"
2452
+ msgstr ""
2453
+
2454
+ #: modules/cta/cta.php:130 modules/icon-group/icon-group.php:99
2455
+ msgid "Spacing"
2456
+ msgstr ""
2457
+
2458
+ #: modules/cta/cta.php:201
2459
+ msgid "Background Opacity"
2460
+ msgstr ""
2461
+
2462
+ #: modules/cta/cta.php:234
2463
+ msgid "Button Link"
2464
+ msgstr ""
2465
+
2466
+ #: modules/gallery/gallery.php:14 modules/post-grid/post-grid.php:55
2467
+ msgid "Gallery"
2468
+ msgstr ""
2469
+
2470
+ #: modules/gallery/gallery.php:15
2471
+ msgid "Display multiple photos in a gallery view."
2472
+ msgstr ""
2473
+
2474
+ #: modules/gallery/gallery.php:223
2475
+ msgid "Collage"
2476
+ msgstr ""
2477
+
2478
+ #: modules/gallery/gallery.php:224
2479
+ msgctxt "Gallery layout: thumbnails."
2480
+ msgid "Thumbs"
2481
+ msgstr ""
2482
+
2483
+ #: modules/gallery/gallery.php:260
2484
+ msgid "Photo Size"
2485
+ msgstr ""
2486
+
2487
+ #: modules/gallery/gallery.php:263
2488
+ msgctxt "Photo size."
2489
+ msgid "Small"
2490
+ msgstr ""
2491
+
2492
+ #: modules/gallery/gallery.php:264
2493
+ msgctxt "Photo size."
2494
+ msgid "Medium"
2495
+ msgstr ""
2496
+
2497
+ #: modules/gallery/gallery.php:265
2498
+ msgctxt "Photo size."
2499
+ msgid "Large"
2500
+ msgstr ""
2501
+
2502
+ #: modules/gallery/gallery.php:270
2503
+ msgid "Photo Spacing"
2504
+ msgstr ""
2505
+
2506
+ #: modules/gallery/gallery.php:278
2507
+ msgid "Show Captions"
2508
+ msgstr ""
2509
+
2510
+ #: modules/gallery/gallery.php:281 modules/photo/photo.php:432
2511
+ msgid "Never"
2512
+ msgstr ""
2513
+
2514
+ #: modules/gallery/gallery.php:282 modules/photo/photo.php:433
2515
+ msgid "On Hover"
2516
+ msgstr ""
2517
+
2518
+ #: modules/gallery/gallery.php:283 modules/photo/photo.php:434
2519
+ msgid "Below Photo"
2520
+ msgstr ""
2521
+
2522
+ #: modules/gallery/gallery.php:285
2523
+ msgid ""
2524
+ "The caption pulls from whatever text you put in the caption area in the "
2525
+ "media manager for each image. The caption is also pulled directly from "
2526
+ "SmugMug if you have captions set in your gallery."
2527
+ msgstr ""
2528
+
2529
+ #: modules/gallery/gallery.php:289 modules/slideshow/slideshow.php:335
2530
+ msgid "Click Action"
2531
+ msgstr ""
2532
+
2533
+ #: modules/gallery/gallery.php:292
2534
+ msgctxt "Click action."
2535
+ msgid "None"
2536
+ msgstr ""
2537
+
2538
+ #: modules/gallery/gallery.php:293 modules/photo/photo.php:452
2539
+ msgid "Lightbox"
2540
+ msgstr ""
2541
+
2542
+ #: modules/gallery/gallery.php:294
2543
+ msgid "Photo Link"
2544
+ msgstr ""
2545
+
2546
+ #: modules/heading/heading.php:15
2547
+ msgid "Display a title/page heading."
2548
+ msgstr ""
2549
+
2550
+ #: modules/heading/heading.php:16 modules/photo/photo.php:27
2551
+ #: modules/rich-text/rich-text.php:16 modules/separator/separator.php:16
2552
+ #: modules/video/video.php:21
2553
+ msgid "Basic Modules"
2554
+ msgstr ""
2555
+
2556
+ #: modules/heading/heading.php:101
2557
+ msgid "HTML Tag"
2558
+ msgstr ""
2559
+
2560
+ #: modules/heading/heading.php:128 modules/heading/heading.php:188
2561
+ msgid "Custom Font Size"
2562
+ msgstr ""
2563
+
2564
+ #: modules/heading/heading.php:137
2565
+ msgid "Mobile Structure"
2566
+ msgstr ""
2567
+
2568
+ #: modules/heading/heading.php:158
2569
+ msgid "Custom Alignment"
2570
+ msgstr ""
2571
+
2572
+ #: modules/html/html.php:14
2573
+ msgid "HTML"
2574
+ msgstr ""
2575
+
2576
+ #: modules/html/html.php:15
2577
+ msgid "Display raw HTML code."
2578
+ msgstr ""
2579
+
2580
+ #: modules/icon-group/icon-group.php:14
2581
+ msgid "Icon Group"
2582
+ msgstr ""
2583
+
2584
+ #: modules/icon-group/icon-group.php:15
2585
+ msgid "Display a group of linked Font Awesome icons."
2586
+ msgstr ""
2587
+
2588
+ #: modules/icon-group/icon-group.php:27
2589
+ msgid "Icons"
2590
+ msgstr ""
2591
+
2592
+ #: modules/icon-group/icon-group.php:125
2593
+ msgid "Add Icon"
2594
+ msgstr ""
2595
+
2596
+ #: modules/icon/icon.php:15
2597
+ msgid "Display an icon and optional title."
2598
+ msgstr ""
2599
+
2600
+ #: modules/map/map.php:14
2601
+ msgid "Map"
2602
+ msgstr ""
2603
+
2604
+ #: modules/map/map.php:15
2605
+ msgid "Display a Google map."
2606
+ msgstr ""
2607
+
2608
+ #: modules/map/map.php:33
2609
+ msgid "Address"
2610
+ msgstr ""
2611
+
2612
+ #: modules/map/map.php:34
2613
+ msgid "1865 Winchester Blvd #202 Campbell, CA 95008"
2614
+ msgstr ""
2615
+
2616
+ #: modules/photo/photo.php:26
2617
+ msgid "Upload a photo or display one from the media library."
2618
+ msgstr ""
2619
+
2620
+ #: modules/photo/photo.php:375
2621
+ msgid "Photo Source"
2622
+ msgstr ""
2623
+
2624
+ #: modules/photo/photo.php:379 modules/photo/photo.php:451
2625
+ msgid "URL"
2626
+ msgstr ""
2627
+
2628
+ #: modules/photo/photo.php:396
2629
+ msgid "Photo URL"
2630
+ msgstr ""
2631
+
2632
+ #: modules/photo/photo.php:397
2633
+ msgid "http://www.example.com/my-photo.jpg"
2634
+ msgstr ""
2635
+
2636
+ #: modules/photo/photo.php:404
2637
+ msgctxt "Crop."
2638
+ msgid "None"
2639
+ msgstr ""
2640
+
2641
+ #: modules/photo/photo.php:425 modules/photo/photo.php:439
2642
+ msgid "Caption"
2643
+ msgstr ""
2644
+
2645
+ #: modules/photo/photo.php:429
2646
+ msgid "Show Caption"
2647
+ msgstr ""
2648
+
2649
+ #: modules/photo/photo.php:448
2650
+ msgid "Link Type"
2651
+ msgstr ""
2652
+
2653
+ #: modules/photo/photo.php:450
2654
+ msgctxt "Link type."
2655
+ msgid "None"
2656
+ msgstr ""
2657
+
2658
+ #: modules/photo/photo.php:453
2659
+ msgid "Photo File"
2660
+ msgstr ""
2661
+
2662
+ #: modules/photo/photo.php:464
2663
+ msgid ""
2664
+ "Link type applies to how the image should be linked on click. You can choose "
2665
+ "a specific URL, the individual photo or a separate page with the photo."
2666
+ msgstr ""
2667
+
2668
+ #: modules/photo/photo.php:471 modules/slideshow/slideshow.php:356
2669
+ msgid "Link URL"
2670
+ msgstr ""
2671
+
2672
+ #: modules/post-grid/includes/frontend.php:41
2673
+ msgid "No posts found."
2674
+ msgstr ""
2675
+
2676
+ #: modules/post-grid/includes/post-feed.php:14
2677
+ #: modules/post-grid/includes/post-grid.php:24
2678
+ #, php-format
2679
+ msgctxt "%s stands for author name."
2680
+ msgid "By %s"
2681
+ msgstr ""
2682
+
2683
+ #: modules/post-grid/post-grid.php:14
2684
+ msgid "Posts"
2685
+ msgstr ""
2686
+
2687
+ #: modules/post-grid/post-grid.php:15
2688
+ msgid "Display a grid of your WordPress posts."
2689
+ msgstr ""
2690
+
2691
+ #: modules/post-grid/post-grid.php:51
2692
+ msgid "Layout Style"
2693
+ msgstr ""
2694
+
2695
+ #: modules/post-grid/post-grid.php:54 modules/post-grid/post-grid.php:88
2696
+ msgid "Grid"
2697
+ msgstr ""
2698
+
2699
+ #: modules/post-grid/post-grid.php:56
2700
+ msgid "Feed"
2701
+ msgstr ""
2702
+
2703
+ #: modules/post-grid/post-grid.php:71
2704
+ msgid "Pagination Style"
2705
+ msgstr ""
2706
+
2707
+ #: modules/post-grid/post-grid.php:74
2708
+ msgid "Numbers"
2709
+ msgstr ""
2710
+
2711
+ #: modules/post-grid/post-grid.php:76
2712
+ msgctxt "Pagination style."
2713
+ msgid "None"
2714
+ msgstr ""
2715
+
2716
+ #: modules/post-grid/post-grid.php:81
2717
+ msgid "Posts Per Page"
2718
+ msgstr ""
2719
+
2720
+ #: modules/post-grid/post-grid.php:92
2721
+ msgid "Post Width"
2722
+ msgstr ""
2723
+
2724
+ #: modules/post-grid/post-grid.php:100
2725
+ msgid "Post Spacing"
2726
+ msgstr ""
2727
+
2728
+ #: modules/post-grid/post-grid.php:109
2729
+ msgid "Featured Image"
2730
+ msgstr ""
2731
+
2732
+ #: modules/post-grid/post-grid.php:116 modules/post-grid/post-grid.php:149
2733
+ #: modules/post-grid/post-grid.php:158 modules/post-grid/post-grid.php:188
2734
+ #: modules/post-grid/post-grid.php:202 modules/post-grid/post-grid.php:216
2735
+ msgid "Show"
2736
+ msgstr ""
2737
+
2738
+ #: modules/post-grid/post-grid.php:117 modules/post-grid/post-grid.php:150
2739
+ #: modules/post-grid/post-grid.php:159 modules/post-grid/post-grid.php:189
2740
+ #: modules/post-grid/post-grid.php:203 modules/post-grid/post-grid.php:217
2741
+ msgid "Hide"
2742
+ msgstr ""
2743
+
2744
+ #: modules/post-grid/post-grid.php:130
2745
+ msgid "Above Text"
2746
+ msgstr ""
2747
+
2748
+ #: modules/post-grid/post-grid.php:131
2749
+ msgid "Beside Text"
2750
+ msgstr ""
2751
+
2752
+ #: modules/post-grid/post-grid.php:142
2753
+ msgid "Post Info"
2754
+ msgstr ""
2755
+
2756
+ #: modules/post-grid/post-grid.php:169
2757
+ msgid "Date Format"
2758
+ msgstr ""
2759
+
2760
+ #: modules/post-grid/post-grid.php:185
2761
+ msgid "Comments"
2762
+ msgstr ""
2763
+
2764
+ #: modules/post-grid/post-grid.php:213
2765
+ msgid "More Link"
2766
+ msgstr ""
2767
+
2768
+ #: modules/post-grid/post-grid.php:227
2769
+ msgid "More Link Text"
2770
+ msgstr ""
2771
+
2772
+ #: modules/post-grid/post-grid.php:228
2773
+ msgid "Read More"
2774
+ msgstr ""
2775
+
2776
+ #: modules/pricing-table/pricing-table.php:14
2777
+ msgid "Pricing Table"
2778
+ msgstr ""
2779
+
2780
+ #: modules/pricing-table/pricing-table.php:15
2781
+ msgid "A simple pricing table generator."
2782
+ msgstr ""
2783
+
2784
+ #: modules/pricing-table/pricing-table.php:26
2785
+ msgid "Pricing Boxes"
2786
+ msgstr ""
2787
+
2788
+ #: modules/pricing-table/pricing-table.php:33
2789
+ msgid "Pricing Box"
2790
+ msgstr ""
2791
+
2792
+ #: modules/pricing-table/pricing-table.php:50
2793
+ msgid "Box Spacing"
2794
+ msgstr ""
2795
+
2796
+ #: modules/pricing-table/pricing-table.php:53
2797
+ #: modules/testimonials/testimonials.php:40
2798
+ msgid "Wide"
2799
+ msgstr ""
2800
+
2801
+ #: modules/pricing-table/pricing-table.php:54
2802
+ msgid "Tight"
2803
+ msgstr ""
2804
+
2805
+ #: modules/pricing-table/pricing-table.php:59
2806
+ msgid "Features Min Height"
2807
+ msgstr ""
2808
+
2809
+ #: modules/pricing-table/pricing-table.php:63
2810
+ msgid ""
2811
+ "Use this to normalize the height of your boxes when they have different "
2812
+ "numbers of features."
2813
+ msgstr ""
2814
+
2815
+ #: modules/pricing-table/pricing-table.php:67
2816
+ msgid "Border Size"
2817
+ msgstr ""
2818
+
2819
+ #: modules/pricing-table/pricing-table.php:70
2820
+ msgctxt "Border size."
2821
+ msgid "Wide"
2822
+ msgstr ""
2823
+
2824
+ #: modules/pricing-table/pricing-table.php:71
2825
+ msgctxt "Border size."
2826
+ msgid "Tight"
2827
+ msgstr ""
2828
+
2829
+ #: modules/pricing-table/pricing-table.php:84
2830
+ msgid "Add Pricing Box"
2831
+ msgstr ""
2832
+
2833
+ #: modules/pricing-table/pricing-table.php:98
2834
+ msgid "Title Size"
2835
+ msgstr ""
2836
+
2837
+ #: modules/pricing-table/pricing-table.php:107
2838
+ msgid "Price Box"
2839
+ msgstr ""
2840
+
2841
+ #: modules/pricing-table/pricing-table.php:111
2842
+ msgid "Price"
2843
+ msgstr ""
2844
+
2845
+ #: modules/pricing-table/pricing-table.php:115
2846
+ msgid "Duration"
2847
+ msgstr ""
2848
+
2849
+ #: modules/pricing-table/pricing-table.php:116
2850
+ msgid "per Year"
2851
+ msgstr ""
2852
+
2853
+ #: modules/pricing-table/pricing-table.php:120
2854
+ msgid "Price Size"
2855
+ msgstr ""
2856
+
2857
+ #: modules/pricing-table/pricing-table.php:133
2858
+ msgid "Button Text"
2859
+ msgstr ""
2860
+
2861
+ #: modules/pricing-table/pricing-table.php:137
2862
+ msgid "Button URL"
2863
+ msgstr ""
2864
+
2865
+ #: modules/pricing-table/pricing-table.php:142
2866
+ msgctxt "Price features displayed in pricing box."
2867
+ msgid "Features"
2868
+ msgstr ""
2869
+
2870
+ #: modules/pricing-table/pricing-table.php:147
2871
+ msgid "One feature per line. HTML is okay."
2872
+ msgstr ""
2873
+
2874
+ #: modules/pricing-table/pricing-table.php:162
2875
+ msgid "Box Background"
2876
+ msgstr ""
2877
+
2878
+ #: modules/pricing-table/pricing-table.php:167
2879
+ msgid "Box Foreground"
2880
+ msgstr ""
2881
+
2882
+ #: modules/pricing-table/pricing-table.php:173
2883
+ msgid "Accent Color"
2884
+ msgstr ""
2885
+
2886
+ #: modules/pricing-table/pricing-table.php:178
2887
+ msgid "Accent Text Color"
2888
+ msgstr ""
2889
+
2890
+ #: modules/pricing-table/pricing-table.php:182
2891
+ msgid "Box Top Margin"
2892
+ msgstr ""
2893
+
2894
+ #: modules/rich-text/rich-text.php:15
2895
+ msgid "A WYSIWYG text editor."
2896
+ msgstr ""
2897
+
2898
+ #: modules/separator/separator.php:14
2899
+ msgid "Separator"
2900
+ msgstr ""
2901
+
2902
+ #: modules/separator/separator.php:15
2903
+ msgid "A divider line to separate content."
2904
+ msgstr ""
2905
+
2906
+ #: modules/separator/separator.php:85
2907
+ msgid ""
2908
+ "The type of border to use. Double borders must have a height of at least 3px "
2909
+ "to render properly."
2910
+ msgstr ""
2911
+
2912
+ #: modules/sidebar/includes/settings-general.php:5
2913
+ #: modules/sidebar/sidebar.php:14
2914
+ msgid "Sidebar"
2915
+ msgstr ""
2916
+
2917
+ #: modules/sidebar/sidebar.php:15
2918
+ msgid ""
2919
+ "Display a WordPress sidebar that has been registered by the current theme."
2920
+ msgstr ""
2921
+
2922
+ #: modules/slideshow/slideshow.php:14
2923
+ msgid "Slideshow"
2924
+ msgstr ""
2925
+
2926
+ #: modules/slideshow/slideshow.php:15
2927
+ msgid "Display multiple photos in a slideshow view."
2928
+ msgstr ""
2929
+
2930
+ #: modules/slideshow/slideshow.php:302
2931
+ msgid "Skin Color"
2932
+ msgstr ""
2933
+
2934
+ #: modules/slideshow/slideshow.php:305
2935
+ msgctxt "Color."
2936
+ msgid "Light"
2937
+ msgstr ""
2938
+
2939
+ #: modules/slideshow/slideshow.php:306
2940
+ msgctxt "Color."
2941
+ msgid "Dark"
2942
+ msgstr ""
2943
+
2944
+ #: modules/slideshow/slideshow.php:308
2945
+ msgid ""
2946
+ "If your overall theme/images are lighter in color, light will display "
2947
+ "buttons in a darker color scheme and vice versa for dark."
2948
+ msgstr ""
2949
+
2950
+ #: modules/slideshow/slideshow.php:318
2951
+ msgid ""
2952
+ "Crop set to no will fit the slideshow images to the height you specify and "
2953
+ "keep the width proportional, whereas crop set to yes will fit the slideshow "
2954
+ "images to all sides of the content area while cropping the left and right to "
2955
+ "fit the height you specify."
2956
+ msgstr ""
2957
+
2958
+ #: modules/slideshow/slideshow.php:322
2959
+ msgid "Disable Right-Click"
2960
+ msgstr ""
2961
+
2962
+ #: modules/slideshow/slideshow.php:342
2963
+ msgctxt "Click action type."
2964
+ msgid "None"
2965
+ msgstr ""
2966
+
2967
+ #: modules/slideshow/slideshow.php:366
2968
+ msgid "Playback"
2969
+ msgstr ""
2970
+
2971
+ #: modules/slideshow/slideshow.php:392
2972
+ msgctxt "Slideshow transition."
2973
+ msgid "None"
2974
+ msgstr ""
2975
+
2976
+ #: modules/slideshow/slideshow.php:429
2977
+ msgid "Controls"
2978
+ msgstr ""
2979
+
2980
+ #: modules/slideshow/slideshow.php:436 modules/slideshow/slideshow.php:485
2981
+ msgid "Navigation Arrows"
2982
+ msgstr ""
2983
+
2984
+ #: modules/slideshow/slideshow.php:442
2985
+ msgid ""
2986
+ "Navigational arrows allow the visitor to freely move through the images in "
2987
+ "your slideshow. These are larger arrows that overlay your slideshow images "
2988
+ "and are separate from the control bar navigational arrows."
2989
+ msgstr ""
2990
+
2991
+ #: modules/slideshow/slideshow.php:447
2992
+ msgid "Control Bar"
2993
+ msgstr ""
2994
+
2995
+ #: modules/slideshow/slideshow.php:451
2996
+ msgid "Nav Type"
2997
+ msgstr ""
2998
+
2999
+ #: modules/slideshow/slideshow.php:454
3000
+ msgctxt "Nav type."
3001
+ msgid "None"
3002
+ msgstr ""
3003
+
3004
+ #: modules/slideshow/slideshow.php:455
3005
+ msgid "Buttons"
3006
+ msgstr ""
3007
+
3008
+ #: modules/slideshow/slideshow.php:456 modules/slideshow/slideshow.php:586
3009
+ msgid "Thumbs"
3010
+ msgstr ""
3011
+
3012
+ #: modules/slideshow/slideshow.php:471
3013
+ msgid "Nav Position"
3014
+ msgstr ""
3015
+
3016
+ #: modules/slideshow/slideshow.php:481
3017
+ msgid "Control Bar Buttons"
3018
+ msgstr ""
3019
+
3020
+ #: modules/slideshow/slideshow.php:494
3021
+ msgid "Play Button"
3022
+ msgstr ""
3023
+
3024
+ #: modules/slideshow/slideshow.php:503
3025
+ msgid "Fullscreen Button"
3026
+ msgstr ""
3027
+
3028
+ #: modules/slideshow/slideshow.php:512
3029
+ msgid "Photo Count"
3030
+ msgstr ""
3031
+
3032
+ #: modules/slideshow/slideshow.php:521
3033
+ msgid "Thumbs Button"
3034
+ msgstr ""
3035
+
3036
+ #: modules/slideshow/slideshow.php:530
3037
+ msgid "Caption Button"
3038
+ msgstr ""
3039
+
3040
+ #: modules/slideshow/slideshow.php:539
3041
+ msgid "Social Button"
3042
+ msgstr ""
3043
+
3044
+ #: modules/slideshow/slideshow.php:549
3045
+ msgid "Control Bar Overlay"
3046
+ msgstr ""
3047
+
3048
+ #: modules/slideshow/slideshow.php:553
3049
+ msgid "Overlay Enabled"
3050
+ msgstr ""
3051
+
3052
+ #: modules/slideshow/slideshow.php:564
3053
+ msgid ""
3054
+ "Control bar overlay specifies if the control bar buttons you choose overlay "
3055
+ "your slideshow images or site below the slideshow completely."
3056
+ msgstr ""
3057
+
3058
+ #: modules/slideshow/slideshow.php:568
3059
+ msgid "Overlay Hide"
3060
+ msgstr ""
3061
+
3062
+ #: modules/slideshow/slideshow.php:574
3063
+ msgid ""
3064
+ "Overlay hide will hide the control bar after however many seconds you "
3065
+ "specify below. They will reappear upon mouse over."
3066
+ msgstr ""
3067
+
3068
+ #: modules/slideshow/slideshow.php:578
3069
+ msgid "Overlay Hide Delay"
3070
+ msgstr ""
3071
+
3072
+ #: modules/slideshow/slideshow.php:590
3073
+ msgid "Thumbs Size"
3074
+ msgstr ""
3075
+
3076
+ #: modules/slideshow/slideshow.php:599
3077
+ msgid "Social"
3078
+ msgstr ""
3079
+
3080
+ #: modules/slideshow/slideshow.php:603
3081
+ msgid "Facebook Button"
3082
+ msgstr ""
3083
+
3084
+ #: modules/slideshow/slideshow.php:615
3085
+ msgid "Twitter Button"
3086
+ msgstr ""
3087
+
3088
+ #: modules/slideshow/slideshow.php:627
3089
+ msgid "Google Plus Button"
3090
+ msgstr ""
3091
+
3092
+ #: modules/slideshow/slideshow.php:639
3093
+ msgid "Pinterest Button"
3094
+ msgstr ""
3095
+
3096
+ #: modules/social-buttons/social-buttons.php:14
3097
+ msgid "Social Buttons"
3098
+ msgstr ""
3099
+
3100
+ #: modules/social-buttons/social-buttons.php:15
3101
+ msgid "Displays social buttons."
3102
+ msgstr ""
3103
+
3104
+ #: modules/social-buttons/social-buttons.php:71
3105
+ msgid "Target URL"
3106
+ msgstr ""
3107
+
3108
+ #: modules/social-buttons/social-buttons.php:75
3109
+ msgid "Current Page"
3110
+ msgstr ""
3111
+
3112
+ #: modules/social-buttons/social-buttons.php:82
3113
+ msgid ""
3114
+ "The Target URL field correlates to the page you would like your social icons "
3115
+ "to interface with. For example, if you show Facebook, the user will \"Like\" "
3116
+ "whatever you put in this field."
3117
+ msgstr ""
3118
+
3119
+ #: modules/social-buttons/social-buttons.php:89
3120
+ msgid "Custom URL"
3121
+ msgstr ""
3122
+
3123
+ #: modules/social-buttons/social-buttons.php:107
3124
+ msgid "Show Facebook"
3125
+ msgstr ""
3126
+
3127
+ #: modules/social-buttons/social-buttons.php:116
3128
+ msgid "Show Twitter"
3129
+ msgstr ""
3130
+
3131
+ #: modules/social-buttons/social-buttons.php:125
3132
+ msgid "Show Google+"
3133
+ msgstr ""
3134
+
3135
+ #: modules/tabs/tabs.php:14
3136
+ msgid "Tabs"
3137
+ msgstr ""
3138
+
3139
+ #: modules/tabs/tabs.php:15
3140
+ msgid "Display a collection of tabbed content."
3141
+ msgstr ""
3142
+
3143
+ #: modules/tabs/tabs.php:55
3144
+ msgid "Horizontal"
3145
+ msgstr ""
3146
+
3147
+ #: modules/tabs/tabs.php:56
3148
+ msgid "Vertical"
3149
+ msgstr ""
3150
+
3151
+ #: modules/testimonials/testimonials.php:14
3152
+ #: modules/testimonials/testimonials.php:60
3153
+ #: modules/testimonials/testimonials.php:174
3154
+ msgid "Testimonials"
3155
+ msgstr ""
3156
+
3157
+ #: modules/testimonials/testimonials.php:15
3158
+ msgid "An animated tesimonials area."
3159
+ msgstr ""
3160
+
3161
+ #: modules/testimonials/testimonials.php:41
3162
+ msgid "Compact"
3163
+ msgstr ""
3164
+
3165
+ #: modules/testimonials/testimonials.php:51
3166
+ msgid "Wide is for 1 column rows, compact is for multi-column rows."
3167
+ msgstr ""
3168
+
3169
+ #: modules/testimonials/testimonials.php:78
3170
+ msgid "Slider Settings"
3171
+ msgstr ""
3172
+
3173
+ #: modules/testimonials/testimonials.php:135
3174
+ msgid "Arrow Color"
3175
+ msgstr ""
3176
+
3177
+ #: modules/testimonials/testimonials.php:165
3178
+ msgid "Dot Color"
3179
+ msgstr ""
3180
+
3181
+ #: modules/testimonials/testimonials.php:181
3182
+ msgid "Testimonial"
3183
+ msgstr ""
3184
+
3185
+ #: modules/testimonials/testimonials.php:197
3186
+ msgid "Add Testimonial"
3187
+ msgstr ""
3188
+
3189
+ #: modules/video/video.php:20
3190
+ msgid "Render a WordPress or embedable video."
3191
+ msgstr ""
3192
+
3193
+ #: modules/video/video.php:83
3194
+ msgid "Video Type"
3195
+ msgstr ""
3196
+
3197
+ #: modules/video/video.php:87
3198
+ msgid "Embed"
3199
+ msgstr ""
3200
+
3201
+ #: modules/video/video.php:104
3202
+ msgctxt "Video preview/fallback image."
3203
+ msgid "Poster"
3204
+ msgstr ""
3205
+
3206
+ #: modules/video/video.php:120
3207
+ msgid "Loop"
3208
+ msgstr ""
3209
+
3210
+ #: modules/widget/includes/frontend.php:35
3211
+ #: modules/widget/includes/settings-general.php:44
3212
+ #, php-format
3213
+ msgctxt "%s stands for widget slug."
3214
+ msgid "%s no longer exists."
3215
+ msgstr ""
3216
+
3217
+ #: modules/widget/widget.php:14
3218
+ msgid "Widget"
3219
+ msgstr ""
3220
+
3221
+ #: modules/widget/widget.php:15
3222
+ msgid "Display a WordPress widget."
3223
+ msgstr ""
3224
+
3225
+ #: modules/woocommerce/woocommerce.php:16
3226
+ msgid "WooCommerce"
3227
+ msgstr ""
3228
+
3229
+ #: modules/woocommerce/woocommerce.php:17
3230
+ msgid "Display products or categories from your WooCommerce store."
3231
+ msgstr ""
3232
+
3233
+ #: modules/woocommerce/woocommerce.php:60
3234
+ msgid "Choose..."
3235
+ msgstr ""
3236
+
3237
+ #: modules/woocommerce/woocommerce.php:61
3238
+ msgid "Single Product"
3239
+ msgstr ""
3240
+
3241
+ #: modules/woocommerce/woocommerce.php:62
3242
+ #: modules/woocommerce/woocommerce.php:113
3243
+ msgid "Multiple Products"
3244
+ msgstr ""
3245
+
3246
+ #: modules/woocommerce/woocommerce.php:63
3247
+ msgid "\"Add to Cart\" Button"
3248
+ msgstr ""
3249
+
3250
+ #: modules/woocommerce/woocommerce.php:64
3251
+ msgid "Categories"
3252
+ msgstr ""
3253
+
3254
+ #: modules/woocommerce/woocommerce.php:65
3255
+ msgid "Cart"
3256
+ msgstr ""
3257
+
3258
+ #: modules/woocommerce/woocommerce.php:66
3259
+ msgid "Checkout"
3260
+ msgstr ""
3261
+
3262
+ #: modules/woocommerce/woocommerce.php:67
3263
+ msgid "Order Tracking"
3264
+ msgstr ""
3265
+
3266
+ #: modules/woocommerce/woocommerce.php:68
3267
+ msgid "My Account"
3268
+ msgstr ""
3269
+
3270
+ #: modules/woocommerce/woocommerce.php:87
3271
+ msgid "Product ID"
3272
+ msgstr ""
3273
+
3274
+ #: modules/woocommerce/woocommerce.php:90
3275
+ msgid ""
3276
+ "As you add products in the WooCommerce Products area, each will be assigned "
3277
+ "a unique ID. You can find this unique product ID by visiting the Products "
3278
+ "area and rolling over the product. The unique ID will be the first attribute."
3279
+ msgstr ""
3280
+
3281
+ #: modules/woocommerce/woocommerce.php:94
3282
+ msgid "Parent Category ID"
3283
+ msgstr ""
3284
+
3285
+ #: modules/woocommerce/woocommerce.php:97
3286
+ msgid ""
3287
+ "As you add product categories in the WooCommerce Products area, each will be "
3288
+ "assigned a unique ID. This ID can be found by hovering on the category in "
3289
+ "the categories area under Products and looking in the URL that is displayed "
3290
+ "in your browser. The ID will be the only number value in the URL."
3291
+ msgstr ""
3292
+
3293
+ #: modules/woocommerce/woocommerce.php:101
3294
+ #: modules/woocommerce/woocommerce.php:172
3295
+ msgid "Columns"
3296
+ msgstr ""
3297
+
3298
+ #: modules/woocommerce/woocommerce.php:117
3299
+ msgid "Products Source"
3300
+ msgstr ""
3301
+
3302
+ #: modules/woocommerce/woocommerce.php:120
3303
+ msgid "Products IDs"
3304
+ msgstr ""
3305
+
3306
+ #: modules/woocommerce/woocommerce.php:121
3307
+ msgid "Product Category"
3308
+ msgstr ""
3309
+
3310
+ #: modules/woocommerce/woocommerce.php:122
3311
+ msgid "Recent Products"
3312
+ msgstr ""
3313
+
3314
+ #: modules/woocommerce/woocommerce.php:123
3315
+ msgid "Featured Products"
3316
+ msgstr ""
3317
+
3318
+ #: modules/woocommerce/woocommerce.php:124
3319
+ msgid "Sale Products"
3320
+ msgstr ""
3321
+
3322
+ #: modules/woocommerce/woocommerce.php:125
3323
+ msgid "Best Selling Products"
3324
+ msgstr ""
3325
+
3326
+ #: modules/woocommerce/woocommerce.php:126
3327
+ msgid "Top Rated Products"
3328
+ msgstr ""
3329
+
3330
+ #: modules/woocommerce/woocommerce.php:154
3331
+ msgid "Product IDs"
3332
+ msgstr ""
3333
+
3334
+ #: modules/woocommerce/woocommerce.php:156
3335
+ msgid ""
3336
+ "As you add products in the WooCommerce Products area, each will be assigned "
3337
+ "a unique ID. You can find this unique product ID by visiting the Products "
3338
+ "area and rolling over the product. The unique ID will be the first attribute "
3339
+ "and you can add several here separated by a comma."
3340
+ msgstr ""
3341
+
3342
+ #: modules/woocommerce/woocommerce.php:160
3343
+ msgid "Category Slug"
3344
+ msgstr ""
3345
+
3346
+ #: modules/woocommerce/woocommerce.php:162
3347
+ msgid ""
3348
+ "As you add product categories in the WooCommerce Products area, each will be "
3349
+ "assigned a unique slug or you can edit and add your own. These slugs can be "
3350
+ "found in the Categories area under WooCommerce Products. Several can be "
3351
+ "added here separated by a comma."
3352
+ msgstr ""
3353
+
3354
+ #: modules/woocommerce/woocommerce.php:166
3355
+ msgid "Number of Products"
3356
+ msgstr ""
3357
+
3358
+ #: modules/woocommerce/woocommerce.php:183
3359
+ msgid "Sort By"
3360
+ msgstr ""
3361
+
3362
+ #: modules/woocommerce/woocommerce.php:186
3363
+ msgctxt "Sort by."
3364
+ msgid "Default"
3365
+ msgstr ""
3366
+
3367
+ #: modules/woocommerce/woocommerce.php:187
3368
+ msgid "Popularity"
3369
+ msgstr ""
3370
+
3371
+ #: modules/woocommerce/woocommerce.php:188
3372
+ msgid "Rating"
3373
+ msgstr ""
3374
+
3375
+ #: modules/woocommerce/woocommerce.php:190
3376
+ msgid "Price: Low to High"
3377
+ msgstr ""
3378
+
3379
+ #: modules/woocommerce/woocommerce.php:191
3380
+ msgid "Price: High to Low"
3381
+ msgstr ""
modules/photo/js/settings.js CHANGED
@@ -7,7 +7,7 @@
7
  required: true
8
  }
9
  },
10
-
11
  init: function()
12
  {
13
  var form = $('.fl-builder-settings'),
@@ -15,14 +15,14 @@
15
  librarySource = form.find('select[name=photo_src]'),
16
  urlSource = form.find('input[name=photo_url]'),
17
  align = form.find('select[name=align]');
18
-
19
  // Init validation events.
20
  this._photoSourceChanged();
21
-
22
  // Validation events.
23
  photoSource.on('change', this._photoSourceChanged);
24
  },
25
-
26
  _photoSourceChanged: function()
27
  {
28
  var form = $('.fl-builder-settings'),
@@ -30,14 +30,14 @@
30
  photo = form.find('input[name=photo]'),
31
  photoUrl = form.find('input[name=photo_url]'),
32
  linkType = form.find('select[name=link_type]');
33
-
34
  photo.rules('remove');
35
  photoUrl.rules('remove');
36
  linkType.find('option[value=page]').remove();
37
-
38
  if(photoSource == 'library') {
39
  photo.rules('add', { required: true });
40
- linkType.append('<option value="page">Photo Page</option>');
41
  }
42
  else {
43
  photoUrl.rules('add', { required: true });
7
  required: true
8
  }
9
  },
10
+
11
  init: function()
12
  {
13
  var form = $('.fl-builder-settings'),
15
  librarySource = form.find('select[name=photo_src]'),
16
  urlSource = form.find('input[name=photo_url]'),
17
  align = form.find('select[name=align]');
18
+
19
  // Init validation events.
20
  this._photoSourceChanged();
21
+
22
  // Validation events.
23
  photoSource.on('change', this._photoSourceChanged);
24
  },
25
+
26
  _photoSourceChanged: function()
27
  {
28
  var form = $('.fl-builder-settings'),
30
  photo = form.find('input[name=photo]'),
31
  photoUrl = form.find('input[name=photo_url]'),
32
  linkType = form.find('select[name=link_type]');
33
+
34
  photo.rules('remove');
35
  photoUrl.rules('remove');
36
  linkType.find('option[value=page]').remove();
37
+
38
  if(photoSource == 'library') {
39
  photo.rules('add', { required: true });
40
+ linkType.append('<option value="page">' + FLBuilderStrings.photoPage + '</option>');
41
  }
42
  else {
43
  photoUrl.rules('add', { required: true });
modules/photo/photo.php CHANGED
@@ -5,20 +5,20 @@
5
  */
6
  class FLPhotoModule extends FLBuilderModule {
7
 
8
- /**
9
  * @property $data
10
- */
11
  public $data = null;
12
-
13
- /**
14
  * @property $_editor
15
  * @protected
16
- */
17
  protected $_editor = null;
18
 
19
- /**
20
  * @method __construct
21
- */
22
  public function __construct()
23
  {
24
  parent::__construct(array(
@@ -28,9 +28,9 @@ class FLPhotoModule extends FLBuilderModule {
28
  ));
29
  }
30
 
31
- /**
32
  * @method enqueue_scripts
33
- */
34
  public function enqueue_scripts()
35
  {
36
  if($this->settings && $this->settings->link_type == 'lightbox') {
@@ -39,42 +39,42 @@ class FLPhotoModule extends FLBuilderModule {
39
  }
40
  }
41
 
42
- /**
43
  * @method update
44
  * @param $settings {object}
45
- */
46
  public function update($settings)
47
  {
48
  // Make sure we have a photo_src property.
49
  if(!isset($settings->photo_src)) {
50
  $settings->photo_src = '';
51
  }
52
-
53
  // Cache the attachment data.
54
  $data = FLBuilderPhoto::get_attachment_data($settings->photo);
55
-
56
  if($data) {
57
  $settings->data = $data;
58
  }
59
-
60
  // Save a crop if necessary.
61
  $this->crop();
62
-
63
  return $settings;
64
  }
65
 
66
- /**
67
  * @method delete
68
- */
69
  public function delete()
70
  {
71
  $cropped_path = $this->_get_cropped_path();
72
-
73
  if(file_exists($cropped_path['path'])) {
74
  unlink($cropped_path['path']);
75
  }
76
  }
77
-
78
  /**
79
  * @method crop
80
  */
@@ -82,43 +82,43 @@ class FLPhotoModule extends FLBuilderModule {
82
  {
83
  // Delete an existing crop if it exists.
84
  $this->delete();
85
-
86
- // Do a crop.
87
  if(!empty($this->settings->crop)) {
88
 
89
  $editor = $this->_get_editor();
90
-
91
  if(!$editor || is_wp_error($editor)) {
92
  return false;
93
  }
94
-
95
  $cropped_path = $this->_get_cropped_path();
96
  $size = $editor->get_size();
97
  $new_width = $size['width'];
98
  $new_height = $size['height'];
99
-
100
  // Get the crop ratios.
101
  if($this->settings->crop == 'landscape') {
102
- $ratio_1 = 1.43;
103
- $ratio_2 = .7;
104
  }
105
  elseif($this->settings->crop == 'panorama') {
106
- $ratio_1 = 2;
107
- $ratio_2 = .5;
108
  }
109
  elseif($this->settings->crop == 'portrait') {
110
- $ratio_1 = .7;
111
  $ratio_2 = 1.43;
112
  }
113
  elseif($this->settings->crop == 'square') {
114
- $ratio_1 = 1;
115
  $ratio_2 = 1;
116
  }
117
  elseif($this->settings->crop == 'circle') {
118
- $ratio_1 = 1;
119
  $ratio_2 = 1;
120
  }
121
-
122
  // Get the new width or height.
123
  if($size['width'] / $size['height'] < $ratio_1) {
124
  $new_height = $size['width'] * $ratio_2;
@@ -126,30 +126,30 @@ class FLPhotoModule extends FLBuilderModule {
126
  else {
127
  $new_width = $size['height'] * $ratio_1;
128
  }
129
-
130
  // Make sure we have enough memory to crop.
131
  @ini_set('memory_limit', '300M');
132
-
133
  // Crop the photo.
134
  $editor->resize($new_width, $new_height, true);
135
-
136
  // Save the photo.
137
  $editor->save($cropped_path['path']);
138
-
139
  // Return the new url.
140
  return $cropped_path['url'];
141
  }
142
-
143
  return false;
144
  }
145
-
146
  /**
147
  * @method get_data
148
  */
149
  public function get_data()
150
  {
151
  if(!$this->data) {
152
-
153
  // Photo source is set to "url".
154
  if($this->settings->photo_source == 'url') {
155
  $this->data = new stdClass();
@@ -159,7 +159,7 @@ class FLPhotoModule extends FLBuilderModule {
159
  $this->data->url = $this->settings->photo_url;
160
  $this->settings->photo_src = $this->settings->photo_url;
161
  }
162
-
163
  // Photo source is set to "library".
164
  else if(is_object($this->settings->photo)) {
165
  $this->data = $this->settings->photo;
@@ -167,26 +167,26 @@ class FLPhotoModule extends FLBuilderModule {
167
  else {
168
  $this->data = FLBuilderPhoto::get_attachment_data($this->settings->photo);
169
  }
170
-
171
- // Data object is empty, use the settings cache.
172
  if(!$this->data && isset($this->settings->data)) {
173
  $this->data = $this->settings->data;
174
  }
175
  }
176
-
177
  return $this->data;
178
  }
179
-
180
  /**
181
  * @method get_src
182
  */
183
  public function get_src()
184
  {
185
  $src = $this->_get_uncropped_url();
186
-
187
- // Return a cropped photo.
188
  if($this->_has_source() && !empty($this->settings->crop)) {
189
-
190
  $cropped_path = $this->_get_cropped_path();
191
 
192
  // See if the cropped photo already exists.
@@ -201,27 +201,27 @@ class FLPhotoModule extends FLBuilderModule {
201
  elseif(stristr($src, FL_BUILDER_OLD_DEMO_URL)) {
202
  $src = $this->_get_cropped_demo_url();
203
  }
204
- // A cropped photo doesn't exist, try to create one.
205
  else {
206
-
207
  $url = $this->crop();
208
-
209
  if($url) {
210
  $src = $url;
211
  }
212
  }
213
  }
214
-
215
  return $src;
216
  }
217
-
218
  /**
219
  * @method get_link
220
  */
221
  public function get_link()
222
  {
223
  $photo = $this->get_data();
224
-
225
  if($this->settings->link_type == 'url') {
226
  $link = $this->settings->link_url;
227
  }
@@ -237,17 +237,17 @@ class FLPhotoModule extends FLBuilderModule {
237
  else {
238
  $link = '';
239
  }
240
-
241
  return $link;
242
  }
243
 
244
- /**
245
  * @method get_alt
246
  */
247
  public function get_alt()
248
  {
249
  $photo = $this->get_data();
250
-
251
  if(!empty($photo->alt)) {
252
  return htmlspecialchars($photo->alt);
253
  }
@@ -261,7 +261,7 @@ class FLPhotoModule extends FLBuilderModule {
261
  return htmlspecialchars($photo->title);
262
  }
263
  }
264
-
265
  /**
266
  * @method _has_source
267
  * @protected
@@ -274,10 +274,10 @@ class FLPhotoModule extends FLBuilderModule {
274
  else if($this->settings->photo_source == 'library' && !empty($this->settings->photo_src)) {
275
  return true;
276
  }
277
-
278
  return false;
279
  }
280
-
281
  /**
282
  * @method _get_editor
283
  * @protected
@@ -285,10 +285,10 @@ class FLPhotoModule extends FLBuilderModule {
285
  protected function _get_editor()
286
  {
287
  if($this->_has_source() && $this->_editor === null) {
288
-
289
  $url_path = $this->_get_uncropped_url();
290
  $file_path = str_ireplace(home_url(), ABSPATH, $url_path);
291
-
292
  if(file_exists($file_path)) {
293
  $this->_editor = wp_get_image_editor($file_path);
294
  }
@@ -296,10 +296,10 @@ class FLPhotoModule extends FLBuilderModule {
296
  $this->_editor = wp_get_image_editor($url_path);
297
  }
298
  }
299
-
300
  return $this->_editor;
301
  }
302
-
303
  /**
304
  * @method _get_cropped_path
305
  * @protected
@@ -309,7 +309,7 @@ class FLPhotoModule extends FLBuilderModule {
309
  $crop = empty($this->settings->crop) ? 'none' : $this->settings->crop;
310
  $url = $this->_get_uncropped_url();
311
  $cache_dir = FLBuilderModel::get_cache_dir();
312
-
313
  if(empty($url)) {
314
  $filename = uniqid(); // Return a file that doesn't exist.
315
  }
@@ -321,14 +321,14 @@ class FLPhotoModule extends FLBuilderModule {
321
  $new_ext = strtolower($ext);
322
  $filename = "{$name}-{$crop}.{$new_ext}";
323
  }
324
-
325
  return array(
326
  'filename' => $filename,
327
  'path' => $cache_dir['path'] . $filename,
328
  'url' => $cache_dir['url'] . $filename
329
  );
330
  }
331
-
332
  /**
333
  * @method _get_uncropped_url
334
  * @protected
@@ -344,10 +344,10 @@ class FLPhotoModule extends FLBuilderModule {
344
  else {
345
  $url = FL_BUILDER_URL . 'img/pixel.png';
346
  }
347
-
348
  return $url;
349
  }
350
-
351
  /**
352
  * @method _get_cropped_demo_url
353
  * @protected
@@ -355,7 +355,7 @@ class FLPhotoModule extends FLBuilderModule {
355
  protected function _get_cropped_demo_url()
356
  {
357
  $info = $this->_get_cropped_path();
358
-
359
  return FL_BUILDER_DEMO_CACHE_URL . $info['filename'];
360
  }
361
  }
@@ -394,14 +394,14 @@ FLBuilder::register_module('FLPhotoModule', array(
394
  'photo_url' => array(
395
  'type' => 'text',
396
  'label' => __('Photo URL', 'fl-builder'),
397
- 'placeholder' => 'http://www.example.com/my-photo.jpg'
398
  ),
399
  'crop' => array(
400
  'type' => 'select',
401
  'label' => __('Crop', 'fl-builder'),
402
  'default' => '',
403
  'options' => array(
404
- '' => __('None', 'fl-builder'),
405
  'landscape' => __('Landscape', 'fl-builder'),
406
  'panorama' => __('Panorama', 'fl-builder'),
407
  'portrait' => __('Portrait', 'fl-builder'),
@@ -422,7 +422,7 @@ FLBuilder::register_module('FLPhotoModule', array(
422
  )
423
  ),
424
  'caption' => array(
425
- 'title' => 'Caption',
426
  'fields' => array(
427
  'show_caption' => array(
428
  'type' => 'select',
@@ -438,7 +438,7 @@ FLBuilder::register_module('FLPhotoModule', array(
438
  'type' => 'text',
439
  'label' => __('Caption', 'fl-builder')
440
  )
441
- )
442
  ),
443
  'link' => array(
444
  'title' => 'Link',
@@ -447,7 +447,7 @@ FLBuilder::register_module('FLPhotoModule', array(
447
  'type' => 'select',
448
  'label' => __('Link Type', 'fl-builder'),
449
  'options' => array(
450
- '' => __('None', 'fl-builder'),
451
  'url' => __('URL', 'fl-builder'),
452
  'lightbox' => __('Lightbox', 'fl-builder'),
453
  'file' => __('Photo File', 'fl-builder'),
5
  */
6
  class FLPhotoModule extends FLBuilderModule {
7
 
8
+ /**
9
  * @property $data
10
+ */
11
  public $data = null;
12
+
13
+ /**
14
  * @property $_editor
15
  * @protected
16
+ */
17
  protected $_editor = null;
18
 
19
+ /**
20
  * @method __construct
21
+ */
22
  public function __construct()
23
  {
24
  parent::__construct(array(
28
  ));
29
  }
30
 
31
+ /**
32
  * @method enqueue_scripts
33
+ */
34
  public function enqueue_scripts()
35
  {
36
  if($this->settings && $this->settings->link_type == 'lightbox') {
39
  }
40
  }
41
 
42
+ /**
43
  * @method update
44
  * @param $settings {object}
45
+ */
46
  public function update($settings)
47
  {
48
  // Make sure we have a photo_src property.
49
  if(!isset($settings->photo_src)) {
50
  $settings->photo_src = '';
51
  }
52
+
53
  // Cache the attachment data.
54
  $data = FLBuilderPhoto::get_attachment_data($settings->photo);
55
+
56
  if($data) {
57
  $settings->data = $data;
58
  }
59
+
60
  // Save a crop if necessary.
61
  $this->crop();
62
+
63
  return $settings;
64
  }
65
 
66
+ /**
67
  * @method delete
68
+ */
69
  public function delete()
70
  {
71
  $cropped_path = $this->_get_cropped_path();
72
+
73
  if(file_exists($cropped_path['path'])) {
74
  unlink($cropped_path['path']);
75
  }
76
  }
77
+
78
  /**
79
  * @method crop
80
  */
82
  {
83
  // Delete an existing crop if it exists.
84
  $this->delete();
85
+
86
+ // Do a crop.
87
  if(!empty($this->settings->crop)) {
88
 
89
  $editor = $this->_get_editor();
90
+
91
  if(!$editor || is_wp_error($editor)) {
92
  return false;
93
  }
94
+
95
  $cropped_path = $this->_get_cropped_path();
96
  $size = $editor->get_size();
97
  $new_width = $size['width'];
98
  $new_height = $size['height'];
99
+
100
  // Get the crop ratios.
101
  if($this->settings->crop == 'landscape') {
102
+ $ratio_1 = 1.43;
103
+ $ratio_2 = .7;
104
  }
105
  elseif($this->settings->crop == 'panorama') {
106
+ $ratio_1 = 2;
107
+ $ratio_2 = .5;
108
  }
109
  elseif($this->settings->crop == 'portrait') {
110
+ $ratio_1 = .7;
111
  $ratio_2 = 1.43;
112
  }
113
  elseif($this->settings->crop == 'square') {
114
+ $ratio_1 = 1;
115
  $ratio_2 = 1;
116
  }
117
  elseif($this->settings->crop == 'circle') {
118
+ $ratio_1 = 1;
119
  $ratio_2 = 1;
120
  }
121
+
122
  // Get the new width or height.
123
  if($size['width'] / $size['height'] < $ratio_1) {
124
  $new_height = $size['width'] * $ratio_2;
126
  else {
127
  $new_width = $size['height'] * $ratio_1;
128
  }
129
+
130
  // Make sure we have enough memory to crop.
131
  @ini_set('memory_limit', '300M');
132
+
133
  // Crop the photo.
134
  $editor->resize($new_width, $new_height, true);
135
+
136
  // Save the photo.
137
  $editor->save($cropped_path['path']);
138
+
139
  // Return the new url.
140
  return $cropped_path['url'];
141
  }
142
+
143
  return false;
144
  }
145
+
146
  /**
147
  * @method get_data
148
  */
149
  public function get_data()
150
  {
151
  if(!$this->data) {
152
+
153
  // Photo source is set to "url".
154
  if($this->settings->photo_source == 'url') {
155
  $this->data = new stdClass();
159
  $this->data->url = $this->settings->photo_url;
160
  $this->settings->photo_src = $this->settings->photo_url;
161
  }
162
+
163
  // Photo source is set to "library".
164
  else if(is_object($this->settings->photo)) {
165
  $this->data = $this->settings->photo;
167
  else {
168
  $this->data = FLBuilderPhoto::get_attachment_data($this->settings->photo);
169
  }
170
+
171
+ // Data object is empty, use the settings cache.
172
  if(!$this->data && isset($this->settings->data)) {
173
  $this->data = $this->settings->data;
174
  }
175
  }
176
+
177
  return $this->data;
178
  }
179
+
180
  /**
181
  * @method get_src
182
  */
183
  public function get_src()
184
  {
185
  $src = $this->_get_uncropped_url();
186
+
187
+ // Return a cropped photo.
188
  if($this->_has_source() && !empty($this->settings->crop)) {
189
+
190
  $cropped_path = $this->_get_cropped_path();
191
 
192
  // See if the cropped photo already exists.
201
  elseif(stristr($src, FL_BUILDER_OLD_DEMO_URL)) {
202
  $src = $this->_get_cropped_demo_url();
203
  }
204
+ // A cropped photo doesn't exist, try to create one.
205
  else {
206
+
207
  $url = $this->crop();
208
+
209
  if($url) {
210
  $src = $url;
211
  }
212
  }
213
  }
214
+
215
  return $src;
216
  }
217
+
218
  /**
219
  * @method get_link
220
  */
221
  public function get_link()
222
  {
223
  $photo = $this->get_data();
224
+
225
  if($this->settings->link_type == 'url') {
226
  $link = $this->settings->link_url;
227
  }
237
  else {
238
  $link = '';
239
  }
240
+
241
  return $link;
242
  }
243
 
244
+ /**
245
  * @method get_alt
246
  */
247
  public function get_alt()
248
  {
249
  $photo = $this->get_data();
250
+
251
  if(!empty($photo->alt)) {
252
  return htmlspecialchars($photo->alt);
253
  }
261
  return htmlspecialchars($photo->title);
262
  }
263
  }
264
+
265
  /**
266
  * @method _has_source
267
  * @protected
274
  else if($this->settings->photo_source == 'library' && !empty($this->settings->photo_src)) {
275
  return true;
276
  }
277
+
278
  return false;
279
  }
280
+
281
  /**
282
  * @method _get_editor
283
  * @protected
285
  protected function _get_editor()
286
  {
287
  if($this->_has_source() && $this->_editor === null) {
288
+
289
  $url_path = $this->_get_uncropped_url();
290
  $file_path = str_ireplace(home_url(), ABSPATH, $url_path);
291
+
292
  if(file_exists($file_path)) {
293
  $this->_editor = wp_get_image_editor($file_path);
294
  }
296
  $this->_editor = wp_get_image_editor($url_path);
297
  }
298
  }
299
+
300
  return $this->_editor;
301
  }
302
+
303
  /**
304
  * @method _get_cropped_path
305
  * @protected
309
  $crop = empty($this->settings->crop) ? 'none' : $this->settings->crop;
310
  $url = $this->_get_uncropped_url();
311
  $cache_dir = FLBuilderModel::get_cache_dir();
312
+
313
  if(empty($url)) {
314
  $filename = uniqid(); // Return a file that doesn't exist.
315
  }
321
  $new_ext = strtolower($ext);
322
  $filename = "{$name}-{$crop}.{$new_ext}";
323
  }
324
+
325
  return array(
326
  'filename' => $filename,
327
  'path' => $cache_dir['path'] . $filename,
328
  'url' => $cache_dir['url'] . $filename
329
  );
330
  }
331
+
332
  /**
333
  * @method _get_uncropped_url
334
  * @protected
344
  else {
345
  $url = FL_BUILDER_URL . 'img/pixel.png';
346
  }
347
+
348
  return $url;
349
  }
350
+
351
  /**
352
  * @method _get_cropped_demo_url
353
  * @protected
355
  protected function _get_cropped_demo_url()
356
  {
357
  $info = $this->_get_cropped_path();
358
+
359
  return FL_BUILDER_DEMO_CACHE_URL . $info['filename'];
360
  }
361
  }
394
  'photo_url' => array(
395
  'type' => 'text',
396
  'label' => __('Photo URL', 'fl-builder'),
397
+ 'placeholder' => __( 'http://www.example.com/my-photo.jpg', 'fl-builder' )
398
  ),
399
  'crop' => array(
400
  'type' => 'select',
401
  'label' => __('Crop', 'fl-builder'),
402
  'default' => '',
403
  'options' => array(
404
+ '' => _x( 'None', 'Crop.', 'fl-builder' ),
405
  'landscape' => __('Landscape', 'fl-builder'),
406
  'panorama' => __('Panorama', 'fl-builder'),
407
  'portrait' => __('Portrait', 'fl-builder'),
422
  )
423
  ),
424
  'caption' => array(
425
+ 'title' => __('Caption', 'fl-builder'),
426
  'fields' => array(
427
  'show_caption' => array(
428
  'type' => 'select',
438
  'type' => 'text',
439
  'label' => __('Caption', 'fl-builder')
440
  )
441
+ )
442
  ),
443
  'link' => array(
444
  'title' => 'Link',
447
  'type' => 'select',
448
  'label' => __('Link Type', 'fl-builder'),
449
  'options' => array(
450
+ '' => _x( 'None', 'Link type.', 'fl-builder' ),
451
  'url' => __('URL', 'fl-builder'),
452
  'lightbox' => __('Lightbox', 'fl-builder'),
453
  'file' => __('Photo File', 'fl-builder'),
modules/video/video.php CHANGED
@@ -5,14 +5,14 @@
5
  */
6
  class FLVideoModule extends FLBuilderModule {
7
 
8
- /**
9
  * @property $data
10
- */
11
  public $data = null;
12
 
13
- /**
14
  * @method __construct
15
- */
16
  public function __construct()
17
  {
18
  parent::__construct(array(
@@ -20,7 +20,7 @@ class FLVideoModule extends FLBuilderModule {
20
  'description' => __('Render a WordPress or embedable video.', 'fl-builder'),
21
  'category' => __('Basic Modules', 'fl-builder')
22
  ));
23
-
24
  $this->add_js('jquery-fitvids');
25
  }
26
 
@@ -30,7 +30,7 @@ class FLVideoModule extends FLBuilderModule {
30
  public function get_data()
31
  {
32
  if(!$this->data) {
33
-
34
  $this->data = FLBuilderPhoto::get_attachment_data($this->settings->video);
35
 
36
  if(!$this->data && isset($this->settings->data)) {
@@ -38,32 +38,32 @@ class FLVideoModule extends FLBuilderModule {
38
  }
39
  if($this->data) {
40
  $parts = explode('.', $this->data->filename);
41
- $this->data->extension = array_pop($parts);
42
  $this->data->poster = isset($this->settings->poster_src) ? $this->settings->poster_src : '';
43
  $this->data->loop = isset($this->settings->loop) && $this->settings->loop ? ' loop="yes"' : '';
44
  $this->data->autoplay = isset($this->settings->autoplay) && $this->settings->autoplay ? ' autoplay="yes"' : '';
45
  }
46
  }
47
-
48
  return $this->data;
49
  }
50
 
51
- /**
52
  * @method update
53
  * @param $settings {object}
54
- */
55
  public function update($settings)
56
  {
57
  // Cache the attachment data.
58
  if($settings->video_type == 'media_library') {
59
-
60
  $video = FLBuilderPhoto::get_attachment_data($settings->video);
61
 
62
  if($video) {
63
  $settings->data = $video;
64
  }
65
  }
66
-
67
  return $settings;
68
  }
69
  }
@@ -97,11 +97,11 @@ FLBuilder::register_module('FLVideoModule', array(
97
  ),
98
  'video' => array(
99
  'type' => 'video',
100
- 'label' => 'Video'
101
  ),
102
  'poster' => array(
103
  'type' => 'photo',
104
- 'label' => 'Poster'
105
  ),
106
  'autoplay' => array(
107
  'type' => 'select',
@@ -129,7 +129,7 @@ FLBuilder::register_module('FLVideoModule', array(
129
  ),
130
  'embed_code' => array(
131
  'type' => 'textarea',
132
- 'label' => 'Embed Code',
133
  'rows' => '6'
134
  )
135
  )
5
  */
6
  class FLVideoModule extends FLBuilderModule {
7
 
8
+ /**
9
  * @property $data
10
+ */
11
  public $data = null;
12
 
13
+ /**
14
  * @method __construct
15
+ */
16
  public function __construct()
17
  {
18
  parent::__construct(array(
20
  'description' => __('Render a WordPress or embedable video.', 'fl-builder'),
21
  'category' => __('Basic Modules', 'fl-builder')
22
  ));
23
+
24
  $this->add_js('jquery-fitvids');
25
  }
26
 
30
  public function get_data()
31
  {
32
  if(!$this->data) {
33
+
34
  $this->data = FLBuilderPhoto::get_attachment_data($this->settings->video);
35
 
36
  if(!$this->data && isset($this->settings->data)) {
38
  }
39
  if($this->data) {
40
  $parts = explode('.', $this->data->filename);
41
+ $this->data->extension = array_pop($parts);
42
  $this->data->poster = isset($this->settings->poster_src) ? $this->settings->poster_src : '';
43
  $this->data->loop = isset($this->settings->loop) && $this->settings->loop ? ' loop="yes"' : '';
44
  $this->data->autoplay = isset($this->settings->autoplay) && $this->settings->autoplay ? ' autoplay="yes"' : '';
45
  }
46
  }
47
+
48
  return $this->data;
49
  }
50
 
51
+ /**
52
  * @method update
53
  * @param $settings {object}
54
+ */
55
  public function update($settings)
56
  {
57
  // Cache the attachment data.
58
  if($settings->video_type == 'media_library') {
59
+
60
  $video = FLBuilderPhoto::get_attachment_data($settings->video);
61
 
62
  if($video) {
63
  $settings->data = $video;
64
  }
65
  }
66
+
67
  return $settings;
68
  }
69
  }
97
  ),
98
  'video' => array(
99
  'type' => 'video',
100
+ 'label' => __( 'Video', 'fl-builder' )
101
  ),
102
  'poster' => array(
103
  'type' => 'photo',
104
+ 'label' => _x( 'Poster', 'Video preview/fallback image.', 'fl-builder' )
105
  ),
106
  'autoplay' => array(
107
  'type' => 'select',
129
  ),
130
  'embed_code' => array(
131
  'type' => 'textarea',
132
+ 'label' => __( 'Video Embed Code', 'fl-builder' ),
133
  'rows' => '6'
134
  )
135
  )
modules/widget/includes/frontend.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="fl-widget">
2
- <?php
3
-
4
  global $wp_widget_factory;
5
 
6
  // Get builder post data.
@@ -15,24 +15,25 @@ else if(isset($post_data['widget']) && FLBuilderModel::is_builder_active()) {
15
  }
16
 
17
  if(isset($widget_slug) && isset($wp_widget_factory->widgets[$widget_slug])) {
18
-
19
  // Widget instance
20
  $factory_instance = $wp_widget_factory->widgets[$widget_slug];
21
  $widget_class = get_class($factory_instance);
22
  $widget_instance = new $widget_class($factory_instance->id_base, $factory_instance->name, $factory_instance->widget_options);
23
-
24
  // Widget settings
25
  $settings_key = 'widget-' . $widget_instance->id_base;
26
  $widget_settings = isset($settings->$settings_key) ? (array)$settings->$settings_key : array();
27
-
28
  // Render the widget
29
  wp_cache_flush($widget_slug, 'widget');
30
- the_widget($widget_slug, $widget_settings, array('widget_id' => $module->node));
31
  }
32
  else if(isset($widget_slug) && FLBuilderModel::is_builder_active()) {
33
 
34
- // Widget doesn't exist!
35
- echo $widget_slug . __(' no longer exists.');
 
36
  }
37
 
38
  ?>
1
  <div class="fl-widget">
2
+ <?php
3
+
4
  global $wp_widget_factory;
5
 
6
  // Get builder post data.
15
  }
16
 
17
  if(isset($widget_slug) && isset($wp_widget_factory->widgets[$widget_slug])) {
18
+
19
  // Widget instance
20
  $factory_instance = $wp_widget_factory->widgets[$widget_slug];
21
  $widget_class = get_class($factory_instance);
22
  $widget_instance = new $widget_class($factory_instance->id_base, $factory_instance->name, $factory_instance->widget_options);
23
+
24
  // Widget settings
25
  $settings_key = 'widget-' . $widget_instance->id_base;
26
  $widget_settings = isset($settings->$settings_key) ? (array)$settings->$settings_key : array();
27
+
28
  // Render the widget
29
  wp_cache_flush($widget_slug, 'widget');
30
+ the_widget($widget_slug, $widget_settings, array('widget_id' => $module->node));
31
  }
32
  else if(isset($widget_slug) && FLBuilderModel::is_builder_active()) {
33
 
34
+ // Widget doesn't exist!
35
+ printf( _x( '%s no longer exists.', '%s stands for widget slug.', 'fl-builder' ), $widget_slug );
36
+
37
  }
38
 
39
  ?>
modules/widget/includes/settings-general.php CHANGED
@@ -1,5 +1,5 @@
1
- <?php
2
-
3
  global $wp_widget_factory;
4
 
5
  // Get builder post data.
@@ -19,28 +19,28 @@ if(isset($widget_slug) && isset($wp_widget_factory->widgets[$widget_slug])) {
19
  $factory_instance = $wp_widget_factory->widgets[$widget_slug];
20
  $widget_class = get_class($factory_instance);
21
  $widget_instance = new $widget_class($factory_instance->id_base, $factory_instance->name, $factory_instance->widget_options);
22
-
23
  // Widget settings
24
  $settings_key = 'widget-' . $widget_instance->id_base;
25
  $widget_settings = array();
26
-
27
  if(isset($settings->$settings_key)) {
28
  $widget_settings = (array)$settings->$settings_key;
29
  }
30
 
31
  // Widget title
32
  echo '<h3 class="fl-builder-settings-title">' . $widget_instance->name . '</h3>';
33
-
34
  // Widget form
35
  echo '<div class="fl-field" data-preview=\'{"type":"widget"}\'>';
36
  $widget_instance->form($widget_settings);
37
- echo '<input type="hidden" name="widget" value="' . $widget_slug . '" />';
38
  echo '</div>';
39
  }
40
- else if(isset($widget_slug)) {
41
 
42
  // Widget doesn't exist!
43
  echo '<div class="fl-builder-widget-missing">';
44
- echo $widget_slug . __(' no longer exists.');
45
  echo '</div>';
46
  }
1
+ <?php
2
+
3
  global $wp_widget_factory;
4
 
5
  // Get builder post data.
19
  $factory_instance = $wp_widget_factory->widgets[$widget_slug];
20
  $widget_class = get_class($factory_instance);
21
  $widget_instance = new $widget_class($factory_instance->id_base, $factory_instance->name, $factory_instance->widget_options);
22
+
23
  // Widget settings
24
  $settings_key = 'widget-' . $widget_instance->id_base;
25
  $widget_settings = array();
26
+
27
  if(isset($settings->$settings_key)) {
28
  $widget_settings = (array)$settings->$settings_key;
29
  }
30
 
31
  // Widget title
32
  echo '<h3 class="fl-builder-settings-title">' . $widget_instance->name . '</h3>';
33
+
34
  // Widget form
35
  echo '<div class="fl-field" data-preview=\'{"type":"widget"}\'>';
36
  $widget_instance->form($widget_settings);
37
+ echo '<input type="hidden" name="widget" value="' . $widget_slug . '" />';
38
  echo '</div>';
39
  }
40
+ else if(isset($widget_slug)) {
41
 
42
  // Widget doesn't exist!
43
  echo '<div class="fl-builder-widget-missing">';
44
+ printf( _x( '%s no longer exists.', '%s stands for widget slug.', 'fl-builder' ), $widget_slug );
45
  echo '</div>';
46
  }
modules/widget/widget.php CHANGED
@@ -17,6 +17,43 @@ class FLWidgetModule extends FLBuilderModule {
17
  'editor_export' => false
18
  ));
19
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
 
22
  /**
17
  'editor_export' => false
18
  ));
19
  }
20
+
21
+ /**
22
+ * @method update
23
+ */
24
+ public function update( $settings )
25
+ {
26
+ global $wp_widget_factory;
27
+
28
+ // Make sure we have a widget.
29
+ if ( ! isset( $settings->widget ) || ! isset( $wp_widget_factory->widgets[ $settings->widget ] ) ) {
30
+ return $settings;
31
+ }
32
+
33
+ // Get the widget instance.
34
+ $factory = $wp_widget_factory->widgets[ $settings->widget ];
35
+ $class = get_class( $factory );
36
+ $instance = new $class( $factory->id_base, $factory->name, $factory->widget_options );
37
+
38
+ // Get the widget settings.
39
+ $settings_key = 'widget-' . $instance->id_base;
40
+ $widget_settings = array();
41
+
42
+ if ( isset( $settings->$settings_key ) ) {
43
+ $widget_settings = ( array )$settings->$settings_key;
44
+ }
45
+
46
+ // Run the widget update method.
47
+ $widget_settings = $instance->update( $widget_settings, array() );
48
+
49
+ // Save the widget settings as an object.
50
+ if ( is_array( $widget_settings ) ) {
51
+ $settings->$settings_key = ( object )$widget_settings;
52
+ }
53
+
54
+ // Return the settings.
55
+ return $settings;
56
+ }
57
  }
58
 
59
  /**