Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | WordPress Page Builder – Beaver Builder |
Version | 1.3.9 |
Comparing to | |
See all releases |
Code changes from version 1.3.8.2 to 1.3.9
- changelog.txt +16 -0
- classes/FLBuilder.php +11 -11
- classes/FLBuilderAdmin.php +29 -1
- classes/FLBuilderAdminSettings.php +21 -0
- classes/FLBuilderAutoSuggest.php +36 -2
- classes/FLBuilderModel.php +40 -9
- css/fl-builder-admin-settings.css +1 -0
- css/fl-builder.css +41 -2
- fl-builder.php +3 -2
- includes/admin-settings.php +33 -3
- includes/field-link.php +9 -0
- includes/js-config.php +5 -3
- includes/updater-config.php +1 -1
- js/fl-builder-preview.js +3 -3
- js/fl-builder.js +117 -18
- lang/fl-builder-xx_XX.mo +0 -0
- lang/fl-builder-xx_XX.pot +2039 -1548
- modules/photo/photo.php +1 -2
changelog.txt
CHANGED
@@ -1,3 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<h4>1.3.8</h4>
|
2 |
<p><strong>Enhancements</strong></p>
|
3 |
<ul>
|
1 |
+
<h4>1.3.9</h4>
|
2 |
+
<p><strong>Enhancements</strong></p>
|
3 |
+
<ul>
|
4 |
+
<li>Clicking a Beaver Builder theme header link now asks if you want to publish before launching the builder on a new page.</li>
|
5 |
+
<li>Added support for multiple builder layouts on the same page.</li>
|
6 |
+
<li>Color picker hex inputs now accept the # symbol.</li>
|
7 |
+
<li>Added a new link field that allows you to search for a post of any type to link to.</li>
|
8 |
+
<li>Added white labeling to the plugins page.</li>
|
9 |
+
<li>Added an admin setting for disabling advanced editing functionality such as adding, deleting and moving modules.</li>
|
10 |
+
</ul>
|
11 |
+
<p><strong>Bug Fixes</strong></p>
|
12 |
+
<ul>
|
13 |
+
<li>Fixed a compatibility issue with themes that use older versions of Option Tree.</li>
|
14 |
+
<li>Removed deprecated like_escape function from FLBuilderLoop class.</li>
|
15 |
+
</ul>
|
16 |
+
|
17 |
<h4>1.3.8</h4>
|
18 |
<p><strong>Enhancements</strong></p>
|
19 |
<ul>
|
classes/FLBuilder.php
CHANGED
@@ -197,7 +197,8 @@ final class FLBuilder {
|
|
197 |
*/
|
198 |
static public function layout_styles_scripts()
|
199 |
{
|
200 |
-
|
|
|
201 |
|
202 |
$ver = FL_BUILDER_VERSION;
|
203 |
$css_url = FL_BUILDER_URL . 'css/';
|
@@ -230,11 +231,8 @@ final class FLBuilder {
|
|
230 |
}
|
231 |
|
232 |
// Enqueue assets for posts in the main query.
|
233 |
-
|
234 |
-
|
235 |
-
the_post();
|
236 |
-
self::enqueue_layout_styles_scripts();
|
237 |
-
}
|
238 |
}
|
239 |
|
240 |
// Enqueue assets for posts via the fl_builder_global_posts filter.
|
@@ -245,8 +243,7 @@ final class FLBuilder {
|
|
245 |
$posts = get_posts(array('post__in' => $post_ids, 'post_type' => 'any'));
|
246 |
|
247 |
foreach($posts as $post) {
|
248 |
-
|
249 |
-
self::enqueue_layout_styles_scripts();
|
250 |
}
|
251 |
}
|
252 |
|
@@ -257,11 +254,10 @@ final class FLBuilder {
|
|
257 |
/**
|
258 |
* @method enqueue_layout_styles_scripts
|
259 |
*/
|
260 |
-
static public function enqueue_layout_styles_scripts()
|
261 |
{
|
262 |
if(FLBuilderModel::is_builder_enabled()) {
|
263 |
|
264 |
-
$post_id = FLBuilderModel::get_post_id();
|
265 |
$rows = FLBuilderModel::get_nodes('row');
|
266 |
$modules = FLBuilderModel::get_all_modules();
|
267 |
$asset_info = FLBuilderModel::get_asset_info();
|
@@ -385,6 +381,9 @@ final class FLBuilder {
|
|
385 |
if(FLBuilderModel::is_builder_enabled()) {
|
386 |
$classes[] = 'fl-builder';
|
387 |
}
|
|
|
|
|
|
|
388 |
|
389 |
return $classes;
|
390 |
}
|
@@ -527,6 +526,7 @@ final class FLBuilder {
|
|
527 |
{
|
528 |
global $post;
|
529 |
|
|
|
530 |
$enabled = FLBuilderModel::is_builder_enabled();
|
531 |
$ajax = defined('DOING_AJAX');
|
532 |
$global_posts = FLBuilderModel::get_global_posts();
|
@@ -541,7 +541,7 @@ final class FLBuilder {
|
|
541 |
|
542 |
// Render the content.
|
543 |
ob_start();
|
544 |
-
echo '<div class="fl-builder-content">';
|
545 |
self::render_rows();
|
546 |
echo '</div>';
|
547 |
$content = do_shortcode(ob_get_clean());
|
197 |
*/
|
198 |
static public function layout_styles_scripts()
|
199 |
{
|
200 |
+
global $wp_query;
|
201 |
+
global $post;
|
202 |
|
203 |
$ver = FL_BUILDER_VERSION;
|
204 |
$css_url = FL_BUILDER_URL . 'css/';
|
231 |
}
|
232 |
|
233 |
// Enqueue assets for posts in the main query.
|
234 |
+
foreach($wp_query->posts as $post) {
|
235 |
+
self::enqueue_layout_styles_scripts($post->ID);
|
|
|
|
|
|
|
236 |
}
|
237 |
|
238 |
// Enqueue assets for posts via the fl_builder_global_posts filter.
|
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 |
|
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();
|
381 |
if(FLBuilderModel::is_builder_enabled()) {
|
382 |
$classes[] = 'fl-builder';
|
383 |
}
|
384 |
+
if(FLBuilderModel::is_builder_active() && !current_user_can(FLBuilderModel::get_editing_capability())) {
|
385 |
+
$classes[] = 'fl-builder-simple';
|
386 |
+
}
|
387 |
|
388 |
return $classes;
|
389 |
}
|
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();
|
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());
|
classes/FLBuilderAdmin.php
CHANGED
@@ -131,7 +131,7 @@ final class FLBuilderAdmin {
|
|
131 |
if(file_exists($ms_class)) {
|
132 |
require_once $ms_class;
|
133 |
}
|
134 |
-
if(file_exists($ms_settings_class) &&
|
135 |
require_once $ms_settings_class;
|
136 |
}
|
137 |
|
@@ -183,4 +183,32 @@ final class FLBuilderAdmin {
|
|
183 |
|
184 |
return $actions;
|
185 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
}
|
131 |
if(file_exists($ms_class)) {
|
132 |
require_once $ms_class;
|
133 |
}
|
134 |
+
if(file_exists($ms_settings_class) && FL_BUILDER_VERSION != '{FL_BUILDER_VERSION}') {
|
135 |
require_once $ms_settings_class;
|
136 |
}
|
137 |
|
183 |
|
184 |
return $actions;
|
185 |
}
|
186 |
+
|
187 |
+
/**
|
188 |
+
* @method white_label_plugins_page
|
189 |
+
*/
|
190 |
+
static public function white_label_plugins_page($plugins)
|
191 |
+
{
|
192 |
+
$branding = FLBuilderModel::get_branding();
|
193 |
+
|
194 |
+
if($branding != __('Page Builder', 'fl-builder')) {
|
195 |
+
|
196 |
+
if(isset($plugins['fl-builder/fl-builder.php'])) {
|
197 |
+
$plugins['fl-builder/fl-builder.php']['Name'] = $branding;
|
198 |
+
$plugins['fl-builder/fl-builder.php']['Title'] = $branding;
|
199 |
+
$plugins['fl-builder/fl-builder.php']['Author'] = '';
|
200 |
+
$plugins['fl-builder/fl-builder.php']['AuthorName'] = '';
|
201 |
+
$plugins['fl-builder/fl-builder.php']['PluginURI'] = '';
|
202 |
+
}
|
203 |
+
else if(isset($plugins['bb-plugin/fl-builder.php'])) {
|
204 |
+
$plugins['bb-plugin/fl-builder.php']['Name'] = $branding;
|
205 |
+
$plugins['bb-plugin/fl-builder.php']['Title'] = $branding;
|
206 |
+
$plugins['bb-plugin/fl-builder.php']['Author'] = '';
|
207 |
+
$plugins['bb-plugin/fl-builder.php']['AuthorName'] = '';
|
208 |
+
$plugins['bb-plugin/fl-builder.php']['PluginURI'] = '';
|
209 |
+
}
|
210 |
+
}
|
211 |
+
|
212 |
+
return $plugins;
|
213 |
+
}
|
214 |
}
|
classes/FLBuilderAdminSettings.php
CHANGED
@@ -72,6 +72,7 @@ final class FLBuilderAdminSettings {
|
|
72 |
self::saveEnabledModules();
|
73 |
self::saveEnabledTemplates();
|
74 |
self::saveEnabledPostTypes();
|
|
|
75 |
self::saveBranding();
|
76 |
self::uninstall();
|
77 |
}
|
@@ -144,6 +145,26 @@ final class FLBuilderAdminSettings {
|
|
144 |
}
|
145 |
}
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
/**
|
148 |
* @method saveBranding
|
149 |
* @private
|
72 |
self::saveEnabledModules();
|
73 |
self::saveEnabledTemplates();
|
74 |
self::saveEnabledPostTypes();
|
75 |
+
self::saveEditingCapability();
|
76 |
self::saveBranding();
|
77 |
self::uninstall();
|
78 |
}
|
145 |
}
|
146 |
}
|
147 |
|
148 |
+
/**
|
149 |
+
* @method saveEditingCapability
|
150 |
+
* @private
|
151 |
+
*/
|
152 |
+
static private function saveEditingCapability()
|
153 |
+
{
|
154 |
+
if(isset($_POST['fl-editing-nonce']) && wp_verify_nonce($_POST['fl-editing-nonce'], 'editing')) {
|
155 |
+
|
156 |
+
if(class_exists('FLBuilderMultisiteSettings') && !isset($_POST['fl-override-ms'])) {
|
157 |
+
delete_option('_fl_builder_editing_capability');
|
158 |
+
}
|
159 |
+
else {
|
160 |
+
|
161 |
+
$capability = sanitize_text_field($_POST['fl-editing-capability']);
|
162 |
+
|
163 |
+
update_option('_fl_builder_editing_capability', $capability);
|
164 |
+
}
|
165 |
+
}
|
166 |
+
}
|
167 |
+
|
168 |
/**
|
169 |
* @method saveBranding
|
170 |
* @private
|
classes/FLBuilderAutoSuggest.php
CHANGED
@@ -27,6 +27,10 @@ final class FLBuilderAutoSuggest {
|
|
27 |
case 'fl_as_users':
|
28 |
$data = self::users();
|
29 |
break;
|
|
|
|
|
|
|
|
|
30 |
}
|
31 |
|
32 |
if(isset($data)) {
|
@@ -75,7 +79,7 @@ final class FLBuilderAutoSuggest {
|
|
75 |
global $wpdb;
|
76 |
|
77 |
$data = array();
|
78 |
-
$like =
|
79 |
$type = esc_sql($_REQUEST['fl_as_action_data']);
|
80 |
|
81 |
$posts = $wpdb->get_results("
|
@@ -162,7 +166,7 @@ final class FLBuilderAutoSuggest {
|
|
162 |
global $wpdb;
|
163 |
|
164 |
$data = array();
|
165 |
-
$like =
|
166 |
$users = $wpdb->get_results("SELECT * FROM {$wpdb->users} WHERE user_login LIKE '%{$like}%'");
|
167 |
|
168 |
foreach($users as $user) {
|
@@ -190,6 +194,36 @@ final class FLBuilderAutoSuggest {
|
|
190 |
}
|
191 |
}
|
192 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
return $data;
|
194 |
}
|
195 |
}
|
27 |
case 'fl_as_users':
|
28 |
$data = self::users();
|
29 |
break;
|
30 |
+
|
31 |
+
case 'fl_as_links':
|
32 |
+
$data = self::links();
|
33 |
+
break;
|
34 |
}
|
35 |
|
36 |
if(isset($data)) {
|
79 |
global $wpdb;
|
80 |
|
81 |
$data = array();
|
82 |
+
$like = esc_sql($wpdb->esc_like(urldecode($_REQUEST['fl_as_query'])));
|
83 |
$type = esc_sql($_REQUEST['fl_as_action_data']);
|
84 |
|
85 |
$posts = $wpdb->get_results("
|
166 |
global $wpdb;
|
167 |
|
168 |
$data = array();
|
169 |
+
$like = esc_sql($wpdb->esc_like(urldecode($_REQUEST['fl_as_query'])));
|
170 |
$users = $wpdb->get_results("SELECT * FROM {$wpdb->users} WHERE user_login LIKE '%{$like}%'");
|
171 |
|
172 |
foreach($users as $user) {
|
194 |
}
|
195 |
}
|
196 |
|
197 |
+
return $data;
|
198 |
+
}
|
199 |
+
|
200 |
+
/**
|
201 |
+
* @method links
|
202 |
+
*/
|
203 |
+
static public function links()
|
204 |
+
{
|
205 |
+
global $wpdb;
|
206 |
+
|
207 |
+
$data = array();
|
208 |
+
$like = esc_sql($wpdb->esc_like(urldecode($_REQUEST['fl_as_query'])));
|
209 |
+
$types = FLBuilderLoop::post_types();
|
210 |
+
$slugs = array();
|
211 |
+
|
212 |
+
foreach($types as $slug => $type) {
|
213 |
+
$slugs[] = esc_sql($slug);
|
214 |
+
}
|
215 |
+
|
216 |
+
$posts = $wpdb->get_results("
|
217 |
+
SELECT ID, post_title FROM {$wpdb->posts}
|
218 |
+
WHERE post_title LIKE '%{$like}%'
|
219 |
+
AND post_type IN ('" . implode("','", $slugs) . "')
|
220 |
+
AND post_status = 'publish'
|
221 |
+
");
|
222 |
+
|
223 |
+
foreach($posts as $post) {
|
224 |
+
$data[] = array('name' => $post->post_title, 'value' => get_permalink($post->ID));
|
225 |
+
}
|
226 |
+
|
227 |
return $data;
|
228 |
}
|
229 |
}
|
classes/FLBuilderModel.php
CHANGED
@@ -949,25 +949,26 @@ final class FLBuilderModel {
|
|
949 |
$col_groups = self::get_child_nodes($node_id);
|
950 |
$new_nodes = array();
|
951 |
|
952 |
-
// Set the new row id.
|
953 |
-
$row->node = $new_row_id;
|
954 |
-
|
955 |
// Add the new row.
|
956 |
-
$layout_data[$new_row_id]
|
|
|
|
|
957 |
|
958 |
// Get the new child nodes.
|
959 |
foreach($col_groups as $col_group_id => $col_group) {
|
960 |
|
961 |
-
$new_nodes[$col_group_id]
|
962 |
-
$cols
|
963 |
|
964 |
foreach($cols as $col_id => $col) {
|
965 |
|
966 |
-
$new_nodes[$col_id]
|
967 |
-
$
|
|
|
968 |
|
969 |
foreach($modules as $module_id => $module) {
|
970 |
-
$new_nodes[$module_id]
|
|
|
971 |
}
|
972 |
}
|
973 |
}
|
@@ -2442,6 +2443,35 @@ final class FLBuilderModel {
|
|
2442 |
}
|
2443 |
}
|
2444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2445 |
/**
|
2446 |
* We don't delete _fl_builder_enabled, _fl_builder_data and _fl_builder_draft
|
2447 |
* so layouts can be recovered should the plugin be installed again.
|
@@ -2458,6 +2488,7 @@ final class FLBuilderModel {
|
|
2458 |
delete_option('_fl_builder_enabled_templates');
|
2459 |
delete_option('_fl_builder_post_types');
|
2460 |
delete_option('_fl_builder_branding');
|
|
|
2461 |
|
2462 |
// Delete cache files and folders.
|
2463 |
$cache_dir = self::get_cache_dir();
|
949 |
$col_groups = self::get_child_nodes($node_id);
|
950 |
$new_nodes = array();
|
951 |
|
|
|
|
|
|
|
952 |
// Add the new row.
|
953 |
+
$layout_data[$new_row_id] = clone $row;
|
954 |
+
$layout_data[$new_row_id]->settings = clone $row->settings;
|
955 |
+
$layout_data[$new_row_id]->node = $new_row_id;
|
956 |
|
957 |
// Get the new child nodes.
|
958 |
foreach($col_groups as $col_group_id => $col_group) {
|
959 |
|
960 |
+
$new_nodes[$col_group_id] = clone $col_group;
|
961 |
+
$cols = self::get_child_nodes($col_group_id);
|
962 |
|
963 |
foreach($cols as $col_id => $col) {
|
964 |
|
965 |
+
$new_nodes[$col_id] = clone $col;
|
966 |
+
$new_nodes[$col_id]->settings = clone $col->settings;
|
967 |
+
$modules = self::get_child_nodes($col_id);
|
968 |
|
969 |
foreach($modules as $module_id => $module) {
|
970 |
+
$new_nodes[$module_id] = clone $module;
|
971 |
+
$new_nodes[$module_id]->settings = clone $module->settings;
|
972 |
}
|
973 |
}
|
974 |
}
|
2443 |
}
|
2444 |
}
|
2445 |
|
2446 |
+
/**
|
2447 |
+
* @method get_editing_capability
|
2448 |
+
*/
|
2449 |
+
static public function get_editing_capability()
|
2450 |
+
{
|
2451 |
+
$key = '_fl_builder_editing_capability';
|
2452 |
+
$default = 'edit_posts';
|
2453 |
+
|
2454 |
+
// Get the value.
|
2455 |
+
if(is_network_admin()) {
|
2456 |
+
$value = get_site_option($key);
|
2457 |
+
}
|
2458 |
+
else if(class_exists('FLBuilderMultisiteSettings')) {
|
2459 |
+
$value = get_option($key);
|
2460 |
+
$value = !$value ? get_site_option($key) : $value;
|
2461 |
+
}
|
2462 |
+
else {
|
2463 |
+
$value = get_option($key);
|
2464 |
+
}
|
2465 |
+
|
2466 |
+
// Return the value.
|
2467 |
+
if(!$value) {
|
2468 |
+
return $default;
|
2469 |
+
}
|
2470 |
+
else {
|
2471 |
+
return $value;
|
2472 |
+
}
|
2473 |
+
}
|
2474 |
+
|
2475 |
/**
|
2476 |
* We don't delete _fl_builder_enabled, _fl_builder_data and _fl_builder_draft
|
2477 |
* so layouts can be recovered should the plugin be installed again.
|
2488 |
delete_option('_fl_builder_enabled_templates');
|
2489 |
delete_option('_fl_builder_post_types');
|
2490 |
delete_option('_fl_builder_branding');
|
2491 |
+
delete_option('_fl_builder_editing_capability');
|
2492 |
|
2493 |
// Delete cache files and folders.
|
2494 |
$cache_dir = self::get_cache_dir();
|
css/fl-builder-admin-settings.css
CHANGED
@@ -71,6 +71,7 @@ h2.fl-settings-content-header {
|
|
71 |
|
72 |
.fl-settings-form {
|
73 |
display: none;
|
|
|
74 |
}
|
75 |
.fl-settings-form-header {
|
76 |
margin-bottom: 20px !important;
|
71 |
|
72 |
.fl-settings-form {
|
73 |
display: none;
|
74 |
+
max-width: 450px;
|
75 |
}
|
76 |
.fl-settings-form-header {
|
77 |
margin-bottom: 20px !important;
|
css/fl-builder.css
CHANGED
@@ -28,6 +28,19 @@ html.fl-builder-edit {
|
|
28 |
z-index: 200000;
|
29 |
}
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
/* Responsive Utilities
|
32 |
------------------------------------------------------ */
|
33 |
|
@@ -89,6 +102,11 @@ html.fl-builder-edit {
|
|
89 |
line-height: 28px !important;
|
90 |
padding: 0 12px 2px;
|
91 |
}
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
/* Builder Bar
|
94 |
------------------------------------------------------ */
|
@@ -763,12 +781,12 @@ form.fl-builder-settings {
|
|
763 |
|
764 |
/* Text Field */
|
765 |
.fl-builder-settings-fields input.text-full {
|
766 |
-
width:
|
767 |
}
|
768 |
|
769 |
/* Textarea */
|
770 |
.fl-builder-settings-fields textarea {
|
771 |
-
width:
|
772 |
}
|
773 |
|
774 |
/* Color Picker */
|
@@ -1016,6 +1034,27 @@ form.fl-builder-settings {
|
|
1016 |
max-width: 100%;
|
1017 |
}
|
1018 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
/* Tooltips */
|
1020 |
.fl-help-tooltip {
|
1021 |
display: inline-block;
|
28 |
z-index: 200000;
|
29 |
}
|
30 |
|
31 |
+
/* Simple UI
|
32 |
+
------------------------------------------------------ */
|
33 |
+
|
34 |
+
.fl-builder-simple .fl-builder-tools-button,
|
35 |
+
.fl-builder-simple .fl-builder-add-content-button,
|
36 |
+
.fl-builder-simple .fl-builder-panel,
|
37 |
+
.fl-builder-simple .fl-block-overlay-actions .fl-block-move,
|
38 |
+
.fl-builder-simple .fl-block-overlay-actions .fl-block-copy,
|
39 |
+
.fl-builder-simple .fl-block-overlay-actions .fl-block-remove,
|
40 |
+
.fl-builder-simple .fl-col-highlight {
|
41 |
+
display: none !important;
|
42 |
+
}
|
43 |
+
|
44 |
/* Responsive Utilities
|
45 |
------------------------------------------------------ */
|
46 |
|
102 |
line-height: 28px !important;
|
103 |
padding: 0 12px 2px;
|
104 |
}
|
105 |
+
.fl-builder-button-small {
|
106 |
+
font-size: 11px !important;
|
107 |
+
line-height: 24px !important;
|
108 |
+
height: 24px;
|
109 |
+
}
|
110 |
|
111 |
/* Builder Bar
|
112 |
------------------------------------------------------ */
|
781 |
|
782 |
/* Text Field */
|
783 |
.fl-builder-settings-fields input.text-full {
|
784 |
+
width: 97%;
|
785 |
}
|
786 |
|
787 |
/* Textarea */
|
788 |
.fl-builder-settings-fields textarea {
|
789 |
+
width: 97%;
|
790 |
}
|
791 |
|
792 |
/* Color Picker */
|
1034 |
max-width: 100%;
|
1035 |
}
|
1036 |
|
1037 |
+
/* Link Field */
|
1038 |
+
.fl-link-field-input {
|
1039 |
+
width: 244px !important;
|
1040 |
+
}
|
1041 |
+
.fl-link-field-search {
|
1042 |
+
display: none;
|
1043 |
+
border: 1px solid #dfdfdf;
|
1044 |
+
border-radius: 3px;
|
1045 |
+
-moz-border-radius: 3px;
|
1046 |
+
-webkit-border-radius: 3px;
|
1047 |
+
margin: 4px 0 0 0;
|
1048 |
+
padding: 10px;
|
1049 |
+
}
|
1050 |
+
.fl-link-field-search-title {
|
1051 |
+
display: block;
|
1052 |
+
margin: 0 0 3px 2px;
|
1053 |
+
}
|
1054 |
+
.fl-link-field-search-cancel {
|
1055 |
+
margin-top: 6px;
|
1056 |
+
}
|
1057 |
+
|
1058 |
/* Tooltips */
|
1059 |
.fl-help-tooltip {
|
1060 |
display: inline-block;
|
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.3.
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com
|
9 |
* Copyright: (c) 2014 Beaver Builder
|
@@ -11,7 +11,7 @@
|
|
11 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
* Text Domain: fl-builder
|
13 |
*/
|
14 |
-
define('FL_BUILDER_VERSION', '1.3.
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
@@ -69,6 +69,7 @@ add_filter('redirect_post_location', 'FLBuilderAdminPo
|
|
69 |
add_filter('page_row_actions', 'FLBuilderAdminPosts::render_row_actions_link');
|
70 |
add_filter('post_row_actions', 'FLBuilderAdminPosts::render_row_actions_link');
|
71 |
add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'FLBuilderAdmin::render_plugin_action_links');
|
|
|
72 |
|
73 |
/* AJAX Actions */
|
74 |
add_action('fl_ajax_fl_builder_update', 'FLBuilderModel::update');
|
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.3.9
|
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.3.9');
|
15 |
define('FL_BUILDER_DIR', plugin_dir_path(__FILE__));
|
16 |
define('FL_BUILDER_URL', plugins_url('/', __FILE__));
|
17 |
define('FL_BUILDER_LITE', true);
|
69 |
add_filter('page_row_actions', 'FLBuilderAdminPosts::render_row_actions_link');
|
70 |
add_filter('post_row_actions', 'FLBuilderAdminPosts::render_row_actions_link');
|
71 |
add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'FLBuilderAdmin::render_plugin_action_links');
|
72 |
+
add_filter('all_plugins', 'FLBuilderAdmin::white_label_plugins_page');
|
73 |
|
74 |
/* AJAX Actions */
|
75 |
add_action('fl_ajax_fl_builder_update', 'FLBuilderModel::update');
|
includes/admin-settings.php
CHANGED
@@ -30,6 +30,7 @@
|
|
30 |
<?php endif; ?>
|
31 |
|
32 |
<li><a href="#post-types"><?php _e('Post Types', 'fl-builder'); ?></a></li>
|
|
|
33 |
|
34 |
<?php if(!class_exists('FLBuilderMultisiteSettings') && file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
|
35 |
<li><a href="#branding"><?php _e('Branding', 'fl-builder'); ?></a></li>
|
@@ -57,7 +58,7 @@
|
|
57 |
|
58 |
<h3 class="fl-settings-form-header"><?php _e('Upgrade', 'fl-builder'); ?></h3>
|
59 |
|
60 |
-
<p
|
61 |
|
62 |
<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;">
|
63 |
|
@@ -207,6 +208,35 @@
|
|
207 |
</form>
|
208 |
</div>
|
209 |
<!-- POST TYPES -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
|
211 |
<?php if(file_exists(FL_BUILDER_DIR . 'includes/admin-branding.php')) : ?>
|
212 |
<!-- BRANDING -->
|
@@ -219,9 +249,9 @@
|
|
219 |
|
220 |
<h3 class="fl-settings-form-header"><?php _e('Uninstall', 'fl-builder'); ?></h3>
|
221 |
|
222 |
-
<p
|
223 |
|
224 |
-
<p
|
225 |
|
226 |
<?php if(is_multisite()) : ?>
|
227 |
<p><strong style="color:#ff0000;"><?php _e('NOTE:'); ?></strong> <?php _e('This applies to all sites on the network.', 'fl-builder'); ?></p>
|
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>
|
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 |
|
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 -->
|
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>
|
includes/field-link.php
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="fl-link-field">
|
2 |
+
<input type="text" name="<?php echo $name; ?>" value="<?php echo esc_url($value); ?>" class="text fl-link-field-input" placeholder="http://www.example.com" />
|
3 |
+
<span class="fl-link-field-select fl-builder-button fl-builder-button-small" href="javascript:void(0);" onclick="return false;"><?php _e('Select', 'fl-builder'); ?></span>
|
4 |
+
<div class="fl-link-field-search">
|
5 |
+
<span class="fl-link-field-search-title"><?php _e('Enter a post title to search.', 'fl-builder'); ?></span>
|
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>
|
includes/js-config.php
CHANGED
@@ -2,11 +2,13 @@
|
|
2 |
|
3 |
var FLBuilderConfig = {
|
4 |
ajaxUrl: '<?php wp_reset_query(); global $post; echo get_permalink($post->ID); ?>',
|
5 |
-
|
6 |
homeUrl: '<?php echo home_url(); ?>',
|
7 |
-
|
|
|
8 |
postType: '<?php echo get_post_type(); ?>',
|
9 |
-
|
|
|
10 |
};
|
11 |
|
12 |
var FLBuilderStrings = {
|
2 |
|
3 |
var FLBuilderConfig = {
|
4 |
ajaxUrl: '<?php wp_reset_query(); global $post; echo get_permalink($post->ID); ?>',
|
5 |
+
enabledTemplates: '<?php echo FLBuilderModel::get_enabled_templates(); ?>',
|
6 |
homeUrl: '<?php echo home_url(); ?>',
|
7 |
+
lite: <?php if(FL_BUILDER_LITE === true) echo 'true'; else echo 'false'; ?>,
|
8 |
+
postId: <?php echo FLBuilderModel::get_post_id(); ?>,
|
9 |
postType: '<?php echo get_post_type(); ?>',
|
10 |
+
simpleUi: <?php if(!current_user_can(FLBuilderModel::get_editing_capability())) echo 'true'; else echo 'false'; ?>,
|
11 |
+
upgradeUrl: '<?php echo FL_BUILDER_UPGRADE_URL; ?>'
|
12 |
};
|
13 |
|
14 |
var FLBuilderStrings = {
|
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.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.3.9',
|
7 |
'slug' => 'bb-plugin',
|
8 |
'type' => 'plugin'
|
9 |
));
|
js/fl-builder-preview.js
CHANGED
@@ -126,8 +126,8 @@ var FLBuilderPreview;
|
|
126 |
$.extend(this.classes, {
|
127 |
settings : '.fl-builder-' + this.type + '-settings',
|
128 |
settingsHeader : '.fl-builder-' + this.type + '-settings .fl-lightbox-header',
|
129 |
-
node :
|
130 |
-
content :
|
131 |
});
|
132 |
|
133 |
// Elements
|
@@ -206,7 +206,7 @@ var FLBuilderPreview;
|
|
206 |
var post = $('#fl-post-id').val(),
|
207 |
css = $('#fl-builder-layout-' + post + '-css').attr('href'),
|
208 |
js = $('script[src*="/fl-builder/' + post + '"]').attr('src'),
|
209 |
-
html = $(
|
210 |
|
211 |
this.state = {
|
212 |
css : css,
|
126 |
$.extend(this.classes, {
|
127 |
settings : '.fl-builder-' + this.type + '-settings',
|
128 |
settingsHeader : '.fl-builder-' + this.type + '-settings .fl-lightbox-header',
|
129 |
+
node : FLBuilder._contentClass + ' .fl-node-' + this.nodeId,
|
130 |
+
content : FLBuilder._contentClass + ' .fl-node-' + this.nodeId + ' ' + contentClass
|
131 |
});
|
132 |
|
133 |
// Elements
|
206 |
var post = $('#fl-post-id').val(),
|
207 |
css = $('#fl-builder-layout-' + post + '-css').attr('href'),
|
208 |
js = $('script[src*="/fl-builder/' + post + '"]').attr('src'),
|
209 |
+
html = $(FLBuilder._contentClass).html();
|
210 |
|
211 |
this.state = {
|
212 |
css : css,
|
js/fl-builder.js
CHANGED
@@ -27,6 +27,12 @@ var FLBuilder;
|
|
27 |
*/
|
28 |
_addModuleAfterRowRender : null,
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
/**
|
31 |
* @param _dragEnabled
|
32 |
* @private
|
@@ -141,10 +147,8 @@ var FLBuilder;
|
|
141 |
*/
|
142 |
_init: function()
|
143 |
{
|
144 |
-
$('html').addClass('fl-builder-edit');
|
145 |
-
$('body').addClass('fl-builder');
|
146 |
-
|
147 |
FLBuilder._lockPost();
|
|
|
148 |
FLBuilder._initMediaUploader();
|
149 |
FLBuilder._initOverflowFix();
|
150 |
FLBuilder._initScrollbars();
|
@@ -174,6 +178,22 @@ var FLBuilder;
|
|
174 |
}
|
175 |
},
|
176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
/**
|
178 |
* @method _initMediaUploader
|
179 |
* @private
|
@@ -189,7 +209,7 @@ var FLBuilder;
|
|
189 |
*/
|
190 |
_initOverflowFix: function()
|
191 |
{
|
192 |
-
$(
|
193 |
},
|
194 |
|
195 |
/**
|
@@ -249,20 +269,20 @@ var FLBuilder;
|
|
249 |
|
250 |
// Row layouts from the builder panel.
|
251 |
$('.fl-builder-rows').sortable($.extend({}, defaults, {
|
252 |
-
connectWith: '
|
253 |
items: '.fl-builder-block-row',
|
254 |
stop: FLBuilder._rowDragStop
|
255 |
}));
|
256 |
|
257 |
// Modules from the builder panel.
|
258 |
$('.fl-builder-modules, .fl-builder-widgets').sortable($.extend({}, defaults, {
|
259 |
-
connectWith: '
|
260 |
items: '.fl-builder-block-module',
|
261 |
stop: FLBuilder._moduleDragStop
|
262 |
}));
|
263 |
|
264 |
// Row position.
|
265 |
-
$(
|
266 |
handle: '.fl-row-overlay .fl-block-overlay-actions .fl-block-move',
|
267 |
helper: FLBuilder._rowDragHelper,
|
268 |
items: '.fl-row',
|
@@ -279,7 +299,7 @@ var FLBuilder;
|
|
279 |
|
280 |
// Module position.
|
281 |
$('.fl-col-content').sortable($.extend({}, defaults, {
|
282 |
-
connectWith: '
|
283 |
handle: '.fl-module-overlay .fl-block-overlay-actions .fl-block-move',
|
284 |
helper: FLBuilder._moduleDragHelper,
|
285 |
items: '.fl-module',
|
@@ -408,6 +428,10 @@ var FLBuilder;
|
|
408 |
/* Layout Fields */
|
409 |
$('body').delegate('.fl-layout-field-option', 'click', FLBuilder._layoutFieldClicked);
|
410 |
|
|
|
|
|
|
|
|
|
411 |
/* Loop Builder */
|
412 |
$('body').delegate('.fl-loop-builder select[name=post_type]', 'change', FLBuilder._loopBuilderPostTypeChange);
|
413 |
},
|
@@ -822,7 +846,7 @@ var FLBuilder;
|
|
822 |
*/
|
823 |
_initTemplateSelector: function()
|
824 |
{
|
825 |
-
var rows = $(
|
826 |
|
827 |
if(rows.length === 0) {
|
828 |
FLBuilder._showTemplateSelector();
|
@@ -867,7 +891,7 @@ var FLBuilder;
|
|
867 |
var template = $(this),
|
868 |
index = template.closest('.fl-template-preview').attr('data-index');
|
869 |
|
870 |
-
if($(
|
871 |
|
872 |
if(index == 0) {
|
873 |
if(confirm(FLBuilderStrings.changeTemplateMessage)) {
|
@@ -895,7 +919,7 @@ var FLBuilder;
|
|
895 |
{
|
896 |
var id = $(this).attr('data-id');
|
897 |
|
898 |
-
if($(
|
899 |
|
900 |
if(id == 'blank') {
|
901 |
if(confirm(FLBuilderStrings.changeTemplateMessage)) {
|
@@ -1109,7 +1133,7 @@ var FLBuilder;
|
|
1109 |
*/
|
1110 |
_setupEmptyLayout: function()
|
1111 |
{
|
1112 |
-
var content = $(
|
1113 |
|
1114 |
content.removeClass('fl-builder-empty');
|
1115 |
content.find('.fl-builder-empty-message').remove();
|
@@ -1146,7 +1170,7 @@ var FLBuilder;
|
|
1146 |
var post = $('#fl-post-id').val(),
|
1147 |
head = $('head').eq(0),
|
1148 |
body = $('body').eq(0),
|
1149 |
-
content = $(
|
1150 |
loader = $('<img src="' + data.css + '" />'),
|
1151 |
oldCss = $('#fl-builder-layout-' + post + '-css'),
|
1152 |
oldJs = $('script[src*="/fl-builder/' + post + '"]'),
|
@@ -1355,7 +1379,7 @@ var FLBuilder;
|
|
1355 |
FLBuilder._dragging = true;
|
1356 |
|
1357 |
// Refresh sortables.
|
1358 |
-
$(
|
1359 |
$('.fl-row-content').sortable('refreshPositions');
|
1360 |
$('.fl-col-content').sortable('refreshPositions');
|
1361 |
},
|
@@ -1389,7 +1413,7 @@ var FLBuilder;
|
|
1389 |
title = FLBuilderStrings.newColumn;
|
1390 |
}
|
1391 |
}
|
1392 |
-
else if(parent.hasClass(
|
1393 |
if(ui.item.hasClass('fl-builder-block-row')) {
|
1394 |
title = ui.item.text();
|
1395 |
}
|
@@ -1613,7 +1637,7 @@ var FLBuilder;
|
|
1613 |
*/
|
1614 |
_addRowComplete: function(response)
|
1615 |
{
|
1616 |
-
var content = $(
|
1617 |
rows = $('.fl-row'),
|
1618 |
row = $(response),
|
1619 |
module = null,
|
@@ -2000,7 +2024,7 @@ var FLBuilder;
|
|
2000 |
else if(ui.item.hasClass('fl-builder-block')) {
|
2001 |
|
2002 |
// A new module was dropped into a row position.
|
2003 |
-
if(parent.hasClass(
|
2004 |
parentId = 0;
|
2005 |
}
|
2006 |
// A new module was dropped into a column position.
|
@@ -2019,7 +2043,7 @@ var FLBuilder;
|
|
2019 |
ui.item.remove();
|
2020 |
}
|
2021 |
// A module was dropped into the main layout.
|
2022 |
-
else if(parent.hasClass(
|
2023 |
FLBuilder._addModuleAfterRowRender = ui.item;
|
2024 |
FLBuilder._addRow('1-col', ui.item.index());
|
2025 |
ui.item.remove();
|
@@ -2314,6 +2338,7 @@ var FLBuilder;
|
|
2314 |
FLBuilder._initSelectFields();
|
2315 |
FLBuilder._initMultipleFields();
|
2316 |
FLBuilder._initAutoSuggestFields();
|
|
|
2317 |
},
|
2318 |
|
2319 |
/**
|
@@ -3332,6 +3357,80 @@ var FLBuilder;
|
|
3332 |
option.siblings('input').val(option.attr('data-value'));
|
3333 |
},
|
3334 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3335 |
/* Loop Builder
|
3336 |
----------------------------------------------------------*/
|
3337 |
|
27 |
*/
|
28 |
_addModuleAfterRowRender : null,
|
29 |
|
30 |
+
/**
|
31 |
+
* @param _contentClass
|
32 |
+
* @private
|
33 |
+
*/
|
34 |
+
_contentClass : false,
|
35 |
+
|
36 |
/**
|
37 |
* @param _dragEnabled
|
38 |
* @private
|
147 |
*/
|
148 |
_init: function()
|
149 |
{
|
|
|
|
|
|
|
150 |
FLBuilder._lockPost();
|
151 |
+
FLBuilder._initClassNames();
|
152 |
FLBuilder._initMediaUploader();
|
153 |
FLBuilder._initOverflowFix();
|
154 |
FLBuilder._initScrollbars();
|
178 |
}
|
179 |
},
|
180 |
|
181 |
+
/**
|
182 |
+
* @method _initClassNames
|
183 |
+
* @private
|
184 |
+
*/
|
185 |
+
_initClassNames: function()
|
186 |
+
{
|
187 |
+
$('html').addClass('fl-builder-edit');
|
188 |
+
$('body').addClass('fl-builder');
|
189 |
+
|
190 |
+
if(FLBuilderConfig.simpleUi) {
|
191 |
+
$('body').addClass('fl-builder-simple');
|
192 |
+
}
|
193 |
+
|
194 |
+
FLBuilder._contentClass = '.fl-builder-content-' + FLBuilderConfig.postId;
|
195 |
+
},
|
196 |
+
|
197 |
/**
|
198 |
* @method _initMediaUploader
|
199 |
* @private
|
209 |
*/
|
210 |
_initOverflowFix: function()
|
211 |
{
|
212 |
+
$(FLBuilder._contentClass).parents().css('overflow', 'visible');
|
213 |
},
|
214 |
|
215 |
/**
|
269 |
|
270 |
// Row layouts from the builder panel.
|
271 |
$('.fl-builder-rows').sortable($.extend({}, defaults, {
|
272 |
+
connectWith: FLBuilder._contentClass + ', .fl-row-content',
|
273 |
items: '.fl-builder-block-row',
|
274 |
stop: FLBuilder._rowDragStop
|
275 |
}));
|
276 |
|
277 |
// Modules from the builder panel.
|
278 |
$('.fl-builder-modules, .fl-builder-widgets').sortable($.extend({}, defaults, {
|
279 |
+
connectWith: FLBuilder._contentClass + ', .fl-row-content, .fl-col-content',
|
280 |
items: '.fl-builder-block-module',
|
281 |
stop: FLBuilder._moduleDragStop
|
282 |
}));
|
283 |
|
284 |
// Row position.
|
285 |
+
$(FLBuilder._contentClass).sortable($.extend({}, defaults, {
|
286 |
handle: '.fl-row-overlay .fl-block-overlay-actions .fl-block-move',
|
287 |
helper: FLBuilder._rowDragHelper,
|
288 |
items: '.fl-row',
|
299 |
|
300 |
// Module position.
|
301 |
$('.fl-col-content').sortable($.extend({}, defaults, {
|
302 |
+
connectWith: FLBuilder._contentClass + ', .fl-row-content, .fl-col-content',
|
303 |
handle: '.fl-module-overlay .fl-block-overlay-actions .fl-block-move',
|
304 |
helper: FLBuilder._moduleDragHelper,
|
305 |
items: '.fl-module',
|
428 |
/* Layout Fields */
|
429 |
$('body').delegate('.fl-layout-field-option', 'click', FLBuilder._layoutFieldClicked);
|
430 |
|
431 |
+
/* Links Fields */
|
432 |
+
$('body').delegate('.fl-link-field-select', 'click', FLBuilder._linkFieldSelectClicked);
|
433 |
+
$('body').delegate('.fl-link-field-search-cancel', 'click', FLBuilder._linkFieldSelectCancelClicked);
|
434 |
+
|
435 |
/* Loop Builder */
|
436 |
$('body').delegate('.fl-loop-builder select[name=post_type]', 'change', FLBuilder._loopBuilderPostTypeChange);
|
437 |
},
|
846 |
*/
|
847 |
_initTemplateSelector: function()
|
848 |
{
|
849 |
+
var rows = $(FLBuilder._contentClass).find('.fl-row');
|
850 |
|
851 |
if(rows.length === 0) {
|
852 |
FLBuilder._showTemplateSelector();
|
891 |
var template = $(this),
|
892 |
index = template.closest('.fl-template-preview').attr('data-index');
|
893 |
|
894 |
+
if($(FLBuilder._contentClass).children('.fl-row').length > 0) {
|
895 |
|
896 |
if(index == 0) {
|
897 |
if(confirm(FLBuilderStrings.changeTemplateMessage)) {
|
919 |
{
|
920 |
var id = $(this).attr('data-id');
|
921 |
|
922 |
+
if($(FLBuilder._contentClass).children('.fl-row').length > 0) {
|
923 |
|
924 |
if(id == 'blank') {
|
925 |
if(confirm(FLBuilderStrings.changeTemplateMessage)) {
|
1133 |
*/
|
1134 |
_setupEmptyLayout: function()
|
1135 |
{
|
1136 |
+
var content = $(FLBuilder._contentClass);
|
1137 |
|
1138 |
content.removeClass('fl-builder-empty');
|
1139 |
content.find('.fl-builder-empty-message').remove();
|
1170 |
var post = $('#fl-post-id').val(),
|
1171 |
head = $('head').eq(0),
|
1172 |
body = $('body').eq(0),
|
1173 |
+
content = $(FLBuilder._contentClass),
|
1174 |
loader = $('<img src="' + data.css + '" />'),
|
1175 |
oldCss = $('#fl-builder-layout-' + post + '-css'),
|
1176 |
oldJs = $('script[src*="/fl-builder/' + post + '"]'),
|
1379 |
FLBuilder._dragging = true;
|
1380 |
|
1381 |
// Refresh sortables.
|
1382 |
+
$(FLBuilder._contentClass).sortable('refreshPositions');
|
1383 |
$('.fl-row-content').sortable('refreshPositions');
|
1384 |
$('.fl-col-content').sortable('refreshPositions');
|
1385 |
},
|
1413 |
title = FLBuilderStrings.newColumn;
|
1414 |
}
|
1415 |
}
|
1416 |
+
else if(parent.hasClass(FLBuilder._contentClass)) {
|
1417 |
if(ui.item.hasClass('fl-builder-block-row')) {
|
1418 |
title = ui.item.text();
|
1419 |
}
|
1637 |
*/
|
1638 |
_addRowComplete: function(response)
|
1639 |
{
|
1640 |
+
var content = $(FLBuilder._contentClass),
|
1641 |
rows = $('.fl-row'),
|
1642 |
row = $(response),
|
1643 |
module = null,
|
2024 |
else if(ui.item.hasClass('fl-builder-block')) {
|
2025 |
|
2026 |
// A new module was dropped into a row position.
|
2027 |
+
if(parent.hasClass(FLBuilder._contentClass)) {
|
2028 |
parentId = 0;
|
2029 |
}
|
2030 |
// A new module was dropped into a column position.
|
2043 |
ui.item.remove();
|
2044 |
}
|
2045 |
// A module was dropped into the main layout.
|
2046 |
+
else if(parent.hasClass(FLBuilder._contentClass)) {
|
2047 |
FLBuilder._addModuleAfterRowRender = ui.item;
|
2048 |
FLBuilder._addRow('1-col', ui.item.index());
|
2049 |
ui.item.remove();
|
2338 |
FLBuilder._initSelectFields();
|
2339 |
FLBuilder._initMultipleFields();
|
2340 |
FLBuilder._initAutoSuggestFields();
|
2341 |
+
FLBuilder._initLinkFields();
|
2342 |
},
|
2343 |
|
2344 |
/**
|
3357 |
option.siblings('input').val(option.attr('data-value'));
|
3358 |
},
|
3359 |
|
3360 |
+
/* Link Fields
|
3361 |
+
----------------------------------------------------------*/
|
3362 |
+
|
3363 |
+
/**
|
3364 |
+
* @method _initLinkFields
|
3365 |
+
* @private
|
3366 |
+
*/
|
3367 |
+
_initLinkFields: function()
|
3368 |
+
{
|
3369 |
+
$('.fl-link-field').each(FLBuilder._initLinkField);
|
3370 |
+
},
|
3371 |
+
|
3372 |
+
/**
|
3373 |
+
* @method _initLinkField
|
3374 |
+
* @private
|
3375 |
+
*/
|
3376 |
+
_initLinkField: function()
|
3377 |
+
{
|
3378 |
+
var wrap = $(this),
|
3379 |
+
searchInput = wrap.find('.fl-link-field-search-input');
|
3380 |
+
|
3381 |
+
searchInput.autoSuggest(FLBuilder._ajaxUrl({
|
3382 |
+
'fl_action' : 'fl_builder_autosuggest',
|
3383 |
+
'fl_as_action' : 'fl_as_links'
|
3384 |
+
}), {
|
3385 |
+
asHtmlID : searchInput.attr('name'),
|
3386 |
+
selectedItemProp : 'name',
|
3387 |
+
searchObjProps : 'name',
|
3388 |
+
minChars : 3,
|
3389 |
+
keyDelay : 1000,
|
3390 |
+
fadeOut : false,
|
3391 |
+
usePlaceholder : true,
|
3392 |
+
emptyText : FLBuilderStrings.noResultsFound,
|
3393 |
+
showResultListWhenNoMatch : true,
|
3394 |
+
queryParam : 'fl_as_query',
|
3395 |
+
selectionLimit : 1,
|
3396 |
+
afterSelectionAdd : FLBuilder._updateLinkField
|
3397 |
+
});
|
3398 |
+
},
|
3399 |
+
|
3400 |
+
/**
|
3401 |
+
* @method _updateLinkField
|
3402 |
+
* @private
|
3403 |
+
*/
|
3404 |
+
_updateLinkField: function(element, item, selections)
|
3405 |
+
{
|
3406 |
+
var wrap = element.closest('.fl-link-field'),
|
3407 |
+
search = wrap.find('.fl-link-field-search'),
|
3408 |
+
searchInput = wrap.find('.fl-link-field-search-input'),
|
3409 |
+
field = wrap.find('.fl-link-field-input');
|
3410 |
+
|
3411 |
+
field.val(item.value).trigger('keyup');
|
3412 |
+
searchInput.autoSuggest('remove', item.value);
|
3413 |
+
search.hide();
|
3414 |
+
},
|
3415 |
+
|
3416 |
+
/**
|
3417 |
+
* @method _linkFieldSelectClicked
|
3418 |
+
* @private
|
3419 |
+
*/
|
3420 |
+
_linkFieldSelectClicked: function()
|
3421 |
+
{
|
3422 |
+
$(this).parent().find('.fl-link-field-search').show();
|
3423 |
+
},
|
3424 |
+
|
3425 |
+
/**
|
3426 |
+
* @method _linkFieldSelectCancelClicked
|
3427 |
+
* @private
|
3428 |
+
*/
|
3429 |
+
_linkFieldSelectCancelClicked: function()
|
3430 |
+
{
|
3431 |
+
$(this).parent().hide();
|
3432 |
+
},
|
3433 |
+
|
3434 |
/* Loop Builder
|
3435 |
----------------------------------------------------------*/
|
3436 |
|
lang/fl-builder-xx_XX.mo
ADDED
Binary file
|
lang/fl-builder-xx_XX.pot
CHANGED
@@ -1,2662 +1,3153 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: FastLine Page Builder\n"
|
4 |
-
"POT-Creation-Date: 2014-
|
5 |
-
"PO-Revision-Date: 2014-
|
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.
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ./\n"
|
15 |
"X-Poedit-SearchPath-0: ..\n"
|
16 |
|
17 |
-
#: ../classes/
|
18 |
-
|
19 |
-
msgid ""
|
20 |
-
"This version of the <strong>FastLine Page Builder</strong> plugin is not "
|
21 |
-
"compatible with WordPress Multisite. <a href=\"%s\" target=\"_blank\">Please "
|
22 |
-
"upgrade</a> to the Multisite version of this plugin."
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: ../classes/FLBuilderAdmin.php:50
|
26 |
-
msgid ""
|
27 |
-
"The <strong>FastLine Page Builder</strong> plugin requires WordPress version "
|
28 |
-
"3.5 or greater. Please update WordPress before activating the plugin."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: ../classes/FLBuilderAdmin.php:85
|
32 |
-
#, php-format
|
33 |
-
msgid ""
|
34 |
-
"FastLine Page Builder activated! <a href=\"%s\">Click here</a> to enable "
|
35 |
-
"remote updates."
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
#: ../classes/FLBuilderAdmin.php:220 ../classes/FLBuilderAdmin.php:275
|
39 |
-
#: ../classes/FLBuilder.php:351 ../includes/ui.php:3
|
40 |
-
#: ../includes/admin-posts.php:4
|
41 |
-
msgid "Page Builder"
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: ../classes/FLBuilderAdmin.php:288
|
45 |
-
msgid "Upgrade"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: ../classes/FLBuilder.php:
|
49 |
msgid "Add New Layout Template"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: ../classes/FLBuilder.php:
|
53 |
msgid "New Layout Template"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: ../classes/FLBuilder.php:
|
57 |
msgid "Edit Layout Template"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: ../classes/FLBuilder.php:
|
61 |
msgid "View Layout Template"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: ../classes/FLBuilder.php:
|
65 |
msgid "All Layout Templates"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: ../classes/FLBuilder.php:
|
69 |
msgid "Search Layout Templates"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: ../classes/FLBuilder.php:
|
73 |
msgid "Parent Layout Templates:"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: ../classes/FLBuilder.php:
|
77 |
msgid "No layout templates found."
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: ../classes/FLBuilder.php:
|
81 |
msgid "No layout templates found in Trash."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: ../classes/FLBuilder.php:
|
85 |
msgid " Settings"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: ../classes/
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
msgid "Large"
|
95 |
-
msgstr ""
|
96 |
-
|
97 |
-
#: ../classes/FLBuilderPhoto.php:49 ../modules/gallery/gallery.php:260
|
98 |
-
#: ../modules/accordion/accordion.php:61 ../includes/js-config.php:34
|
99 |
-
#: ../includes/row-settings.php:269
|
100 |
-
msgid "Medium"
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: ../classes/FLBuilderPhoto.php:50 ../includes/js-config.php:55
|
104 |
-
msgid "Thumbnail"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: ../classes/
|
108 |
-
msgid "
|
|
|
|
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: ../
|
112 |
-
|
113 |
-
|
114 |
-
|
|
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ../
|
118 |
-
|
|
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../
|
122 |
-
|
123 |
-
#: ../modules/content-slider/content-slider.php:16
|
124 |
-
#: ../modules/woocommerce/woocommerce.php:18
|
125 |
-
#: ../modules/social-buttons/social-buttons.php:16
|
126 |
-
#: ../modules/sidebar/sidebar.php:16 ../modules/icon-group/icon-group.php:16
|
127 |
-
#: ../modules/cta/cta.php:16 ../modules/html/html.php:16
|
128 |
-
#: ../modules/icon/icon.php:16 ../modules/callout/callout.php:16
|
129 |
-
#: ../modules/testimonials/testimonials.php:16
|
130 |
-
#: ../modules/slideshow/slideshow.php:16 ../modules/gallery/gallery.php:16
|
131 |
-
#: ../modules/accordion/accordion.php:16
|
132 |
-
msgid "Advanced Modules"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: ../
|
136 |
-
|
137 |
-
#: ../modules/contact-form/contact-form.php:57
|
138 |
-
#: ../modules/content-slider/content-slider.php:183
|
139 |
-
#: ../modules/content-slider/content-slider.php:307
|
140 |
-
#: ../modules/woocommerce/woocommerce.php:50
|
141 |
-
#: ../modules/social-buttons/social-buttons.php:62
|
142 |
-
#: ../modules/sidebar/sidebar.php:27 ../modules/icon-group/icon-group.php:124
|
143 |
-
#: ../modules/cta/cta.php:64 ../modules/video/video.php:75
|
144 |
-
#: ../modules/html/html.php:26 ../modules/widget/widget.php:27
|
145 |
-
#: ../modules/icon/icon.php:29 ../modules/callout/callout.php:206
|
146 |
-
#: ../modules/testimonials/testimonials.php:30
|
147 |
-
#: ../modules/testimonials/testimonials.php:191 ../modules/photo/photo.php:313
|
148 |
-
#: ../modules/slideshow/slideshow.php:256 ../modules/heading/heading.php:26
|
149 |
-
#: ../modules/gallery/gallery.php:209 ../modules/accordion/accordion.php:86
|
150 |
-
#: ../modules/separator/separator.php:27
|
151 |
-
#: ../includes/user-template-settings.php:7 ../includes/global-settings.php:7
|
152 |
-
msgid "General"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: ../
|
156 |
-
|
157 |
-
#: ../modules/content-slider/content-slider.php:610 ../modules/cta/cta.php:76
|
158 |
-
#: ../modules/cta/cta.php:202 ../modules/callout/callout.php:218
|
159 |
-
#: ../modules/callout/callout.php:452 ../modules/callout/callout.php:468
|
160 |
-
#: ../includes/row-settings.php:42 ../includes/column-settings.php:23
|
161 |
-
msgid "Text"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../
|
165 |
-
#: ../modules/
|
166 |
-
|
167 |
-
#: ../modules/callout/callout.php:350 ../modules/callout/callout.php:354
|
168 |
-
msgid "Icon"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ../
|
172 |
-
#: ../
|
173 |
-
#: ../modules/
|
174 |
-
|
175 |
-
#: ../modules/icon-group/icon-group.php:135 ../modules/cta/cta.php:211
|
176 |
-
#: ../modules/icon/icon.php:45 ../modules/callout/callout.php:424
|
177 |
-
#: ../modules/callout/callout.php:428 ../modules/slideshow/slideshow.php:340
|
178 |
-
#: ../modules/heading/heading.php:38 ../modules/heading/heading.php:42
|
179 |
-
msgid "Link"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: ../
|
183 |
-
|
184 |
-
#: ../modules/icon/icon.php:50 ../modules/callout/callout.php:434
|
185 |
-
#: ../modules/photo/photo.php:416 ../modules/heading/heading.php:47
|
186 |
-
msgid "Link Target"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../
|
190 |
-
|
191 |
-
#: ../modules/icon/icon.php:53 ../modules/callout/callout.php:437
|
192 |
-
#: ../modules/photo/photo.php:419 ../modules/heading/heading.php:50
|
193 |
-
msgid "Same Window"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: ../
|
197 |
-
#: ../
|
198 |
-
|
199 |
-
#: ../modules/photo/photo.php:420 ../modules/heading/heading.php:51
|
200 |
-
msgid "New Window"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ../
|
204 |
-
|
205 |
-
#: ../modules/icon-group/icon-group.php:46 ../modules/cta/cta.php:88
|
206 |
-
#: ../modules/icon/icon.php:72 ../modules/callout/callout.php:230
|
207 |
-
#: ../modules/heading/heading.php:59 ../modules/accordion/accordion.php:45
|
208 |
-
#: ../modules/separator/separator.php:55 ../includes/row-settings.php:9
|
209 |
-
#: ../includes/column-settings.php:7 ../includes/module-settings.php:74
|
210 |
-
msgid "Style"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ../
|
220 |
-
|
221 |
-
#: ../modules/content-slider/content-slider.php:619
|
222 |
-
#: ../modules/icon-group/icon-group.php:63 ../modules/cta/cta.php:178
|
223 |
-
#: ../modules/cta/cta.php:230 ../modules/icon/icon.php:89
|
224 |
-
#: ../modules/callout/callout.php:386 ../modules/callout/callout.php:477
|
225 |
-
#: ../includes/row-settings.php:93 ../includes/column-settings.php:33
|
226 |
-
msgid "Background Color"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: ../
|
230 |
-
#: ../
|
231 |
-
#: ../
|
232 |
-
#: ../modules/
|
233 |
-
|
234 |
-
msgid "Background Hover Color"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: ../modules/
|
238 |
-
#: ../modules/
|
239 |
-
|
240 |
-
#: ../modules/content-slider/content-slider.php:714 ../modules/cta/cta.php:172
|
241 |
-
#: ../modules/cta/cta.php:242 ../modules/callout/callout.php:489
|
242 |
-
#: ../modules/heading/heading.php:67
|
243 |
-
msgid "Text Color"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../
|
247 |
-
#: ../
|
248 |
-
#: ../modules/callout/callout.php:
|
249 |
-
|
|
|
|
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../
|
253 |
-
#: ../
|
254 |
-
|
255 |
-
#: ../modules/icon/icon.php:99 ../modules/callout/callout.php:396
|
256 |
-
#: ../modules/callout/callout.php:501
|
257 |
-
msgid "Gradient"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../
|
|
|
|
|
|
|
|
|
261 |
#: ../modules/content-slider/content-slider.php:202
|
262 |
#: ../modules/content-slider/content-slider.php:216
|
263 |
#: ../modules/content-slider/content-slider.php:250
|
264 |
#: ../modules/content-slider/content-slider.php:259
|
265 |
#: ../modules/content-slider/content-slider.php:530
|
266 |
-
#: ../modules/content-slider/content-slider.php:
|
267 |
-
#: ../modules/
|
268 |
-
#: ../modules/social-buttons/social-buttons.php:112
|
269 |
-
#: ../modules/social-buttons/social-buttons.php:121
|
270 |
-
#: ../modules/icon-group/icon-group.php:76 ../modules/cta/cta.php:257
|
271 |
-
#: ../modules/video/video.php:110 ../modules/video/video.php:119
|
272 |
-
#: ../modules/icon/icon.php:102 ../modules/callout/callout.php:399
|
273 |
-
#: ../modules/callout/callout.php:504
|
274 |
-
#: ../modules/testimonials/testimonials.php:81
|
275 |
-
#: ../modules/testimonials/testimonials.php:120
|
276 |
-
#: ../modules/testimonials/testimonials.php:145
|
277 |
#: ../modules/slideshow/slideshow.php:315
|
278 |
#: ../modules/slideshow/slideshow.php:325
|
279 |
-
#: ../modules/slideshow/slideshow.php:
|
280 |
-
#: ../modules/slideshow/slideshow.php:
|
281 |
-
#: ../modules/slideshow/slideshow.php:
|
282 |
-
#: ../modules/slideshow/slideshow.php:
|
283 |
-
#: ../modules/slideshow/slideshow.php:
|
284 |
-
#: ../modules/slideshow/slideshow.php:
|
285 |
-
#: ../modules/slideshow/slideshow.php:
|
286 |
-
#: ../modules/slideshow/slideshow.php:
|
287 |
-
#: ../modules/slideshow/slideshow.php:
|
288 |
-
#: ../modules/slideshow/slideshow.php:
|
289 |
-
#: ../modules/slideshow/slideshow.php:
|
290 |
-
#: ../modules/slideshow/slideshow.php:
|
291 |
-
#: ../modules/slideshow/slideshow.php:
|
292 |
-
#: ../modules/slideshow/slideshow.php:
|
293 |
-
#: ../modules/slideshow/slideshow.php:
|
294 |
-
#: ../modules/slideshow/slideshow.php:
|
295 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
msgid "No"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../
|
|
|
|
|
|
|
|
|
300 |
#: ../modules/content-slider/content-slider.php:203
|
301 |
#: ../modules/content-slider/content-slider.php:217
|
302 |
#: ../modules/content-slider/content-slider.php:251
|
303 |
#: ../modules/content-slider/content-slider.php:260
|
304 |
#: ../modules/content-slider/content-slider.php:531
|
305 |
-
#: ../modules/content-slider/content-slider.php:
|
306 |
-
#: ../modules/
|
307 |
-
#: ../modules/social-buttons/social-buttons.php:111
|
308 |
-
#: ../modules/social-buttons/social-buttons.php:120
|
309 |
-
#: ../modules/icon-group/icon-group.php:77 ../modules/cta/cta.php:258
|
310 |
-
#: ../modules/video/video.php:111 ../modules/video/video.php:120
|
311 |
-
#: ../modules/icon/icon.php:103 ../modules/callout/callout.php:400
|
312 |
-
#: ../modules/callout/callout.php:505
|
313 |
-
#: ../modules/testimonials/testimonials.php:82
|
314 |
-
#: ../modules/testimonials/testimonials.php:121
|
315 |
-
#: ../modules/testimonials/testimonials.php:146
|
316 |
#: ../modules/slideshow/slideshow.php:316
|
317 |
#: ../modules/slideshow/slideshow.php:326
|
318 |
-
#: ../modules/slideshow/slideshow.php:
|
319 |
-
#: ../modules/slideshow/slideshow.php:
|
320 |
-
#: ../modules/slideshow/slideshow.php:
|
321 |
-
#: ../modules/slideshow/slideshow.php:
|
322 |
-
#: ../modules/slideshow/slideshow.php:
|
323 |
-
#: ../modules/slideshow/slideshow.php:
|
324 |
-
#: ../modules/slideshow/slideshow.php:
|
325 |
-
#: ../modules/slideshow/slideshow.php:
|
326 |
-
#: ../modules/slideshow/slideshow.php:
|
327 |
-
#: ../modules/slideshow/slideshow.php:
|
328 |
-
#: ../modules/slideshow/slideshow.php:
|
329 |
-
#: ../modules/slideshow/slideshow.php:
|
330 |
-
#: ../modules/slideshow/slideshow.php:
|
331 |
-
#: ../modules/slideshow/slideshow.php:
|
332 |
-
#: ../modules/slideshow/slideshow.php:
|
333 |
-
#: ../modules/slideshow/slideshow.php:
|
334 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
msgid "Yes"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: ../
|
339 |
-
#: ../
|
340 |
-
|
341 |
-
msgid "Structure"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: ../
|
345 |
-
|
346 |
-
#: ../includes/row-settings.php:16
|
347 |
-
msgid "Width"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: ../
|
351 |
-
|
352 |
-
#: ../modules/callout/callout.php:518
|
353 |
-
msgid "Auto"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ../
|
357 |
-
|
358 |
-
msgid "Full Width"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: ../modules/
|
362 |
-
|
363 |
-
#: ../modules/social-buttons/social-buttons.php:72 ../modules/cta/cta.php:149
|
364 |
-
#: ../modules/callout/callout.php:270 ../modules/heading/heading.php:103
|
365 |
-
#: ../modules/heading/heading.php:130 ../modules/heading/heading.php:154
|
366 |
-
msgid "Custom"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: ../
|
370 |
-
msgid "
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: ../
|
374 |
-
|
375 |
-
#: ../modules/content-slider/content-slider.php:194
|
376 |
-
#: ../modules/content-slider/content-slider.php:274
|
377 |
-
#: ../modules/content-slider/content-slider.php:456
|
378 |
-
#: ../modules/content-slider/content-slider.php:486
|
379 |
-
#: ../modules/content-slider/content-slider.php:494
|
380 |
-
#: ../modules/content-slider/content-slider.php:502
|
381 |
-
#: ../modules/content-slider/content-slider.php:510
|
382 |
-
#: ../modules/content-slider/content-slider.php:659
|
383 |
-
#: ../modules/content-slider/content-slider.php:667
|
384 |
-
#: ../modules/content-slider/content-slider.php:675
|
385 |
-
#: ../modules/icon-group/icon-group.php:91
|
386 |
-
#: ../modules/icon-group/icon-group.php:99 ../modules/cta/cta.php:123
|
387 |
-
#: ../modules/cta/cta.php:163 ../modules/cta/cta.php:272
|
388 |
-
#: ../modules/cta/cta.php:280 ../modules/cta/cta.php:288
|
389 |
-
#: ../modules/icon/icon.php:117 ../modules/callout/callout.php:284
|
390 |
-
#: ../modules/callout/callout.php:414 ../modules/callout/callout.php:528
|
391 |
-
#: ../modules/callout/callout.php:536 ../modules/callout/callout.php:544
|
392 |
-
#: ../modules/testimonials/testimonials.php:69
|
393 |
-
#: ../modules/slideshow/slideshow.php:298
|
394 |
-
#: ../modules/slideshow/slideshow.php:583 ../modules/heading/heading.php:117
|
395 |
-
#: ../modules/heading/heading.php:168 ../modules/gallery/gallery.php:270
|
396 |
-
#: ../includes/row-settings.php:325 ../includes/row-settings.php:334
|
397 |
-
#: ../includes/row-settings.php:343 ../includes/row-settings.php:352
|
398 |
-
#: ../includes/row-settings.php:391 ../includes/row-settings.php:400
|
399 |
-
#: ../includes/row-settings.php:409 ../includes/row-settings.php:418
|
400 |
-
#: ../includes/row-settings.php:432 ../includes/row-settings.php:441
|
401 |
-
#: ../includes/row-settings.php:450 ../includes/row-settings.php:459
|
402 |
-
#: ../includes/column-settings.php:100 ../includes/column-settings.php:109
|
403 |
-
#: ../includes/column-settings.php:118 ../includes/column-settings.php:127
|
404 |
-
#: ../includes/column-settings.php:166 ../includes/column-settings.php:175
|
405 |
-
#: ../includes/column-settings.php:184 ../includes/column-settings.php:193
|
406 |
-
#: ../includes/column-settings.php:207 ../includes/column-settings.php:216
|
407 |
-
#: ../includes/column-settings.php:225 ../includes/column-settings.php:234
|
408 |
-
#: ../includes/global-settings.php:45 ../includes/global-settings.php:53
|
409 |
-
#: ../includes/global-settings.php:61 ../includes/global-settings.php:75
|
410 |
-
#: ../includes/global-settings.php:102 ../includes/module-settings.php:35
|
411 |
-
#: ../includes/module-settings.php:44 ../includes/module-settings.php:53
|
412 |
-
#: ../includes/module-settings.php:62
|
413 |
-
msgid "px"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: ../
|
417 |
-
#: ../
|
418 |
-
|
419 |
-
#: ../modules/icon/icon.php:121 ../modules/photo/photo.php:358
|
420 |
-
#: ../modules/heading/heading.php:76 ../modules/heading/heading.php:126
|
421 |
-
msgid "Alignment"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../
|
425 |
-
|
426 |
-
#: ../modules/social-buttons/social-buttons.php:92
|
427 |
-
#: ../modules/icon-group/icon-group.php:106 ../modules/cta/cta.php:113
|
428 |
-
#: ../modules/icon/icon.php:124 ../modules/callout/callout.php:240
|
429 |
-
#: ../modules/photo/photo.php:362 ../modules/heading/heading.php:80
|
430 |
-
#: ../modules/heading/heading.php:144
|
431 |
-
msgid "Center"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../
|
435 |
-
|
436 |
-
#: ../modules/social-buttons/social-buttons.php:93
|
437 |
-
#: ../modules/icon-group/icon-group.php:107 ../modules/cta/cta.php:112
|
438 |
-
#: ../modules/icon/icon.php:125 ../modules/callout/callout.php:241
|
439 |
-
#: ../modules/photo/photo.php:361 ../modules/heading/heading.php:79
|
440 |
-
#: ../modules/heading/heading.php:143 ../includes/row-settings.php:407
|
441 |
-
#: ../includes/row-settings.php:448 ../includes/column-settings.php:182
|
442 |
-
#: ../includes/column-settings.php:223 ../includes/module-settings.php:51
|
443 |
-
msgid "Left"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: ../
|
447 |
-
#: ../
|
448 |
-
|
449 |
-
#: ../modules/icon-group/icon-group.php:108 ../modules/cta/cta.php:114
|
450 |
-
#: ../modules/icon/icon.php:126 ../modules/callout/callout.php:242
|
451 |
-
#: ../modules/photo/photo.php:363 ../modules/heading/heading.php:81
|
452 |
-
#: ../modules/heading/heading.php:145 ../includes/row-settings.php:416
|
453 |
-
#: ../includes/row-settings.php:457 ../includes/column-settings.php:191
|
454 |
-
#: ../includes/column-settings.php:232 ../includes/module-settings.php:60
|
455 |
-
msgid "Right"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: ../
|
459 |
-
#: ../
|
460 |
-
|
461 |
-
#: ../modules/heading/heading.php:150
|
462 |
-
msgid "Font Size"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../
|
466 |
-
#: ../
|
467 |
-
#: ../
|
468 |
-
|
469 |
-
msgid "Padding"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: ../
|
473 |
-
|
474 |
-
msgid "Round Corners"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../
|
478 |
-
|
|
|
|
|
|
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../
|
482 |
-
msgid "
|
|
|
|
|
|
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../
|
486 |
-
msgid "
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../
|
490 |
-
msgid "
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../
|
494 |
-
|
495 |
-
#: ../modules/separator/separator.php:47
|
496 |
-
msgid "Height"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: ../
|
500 |
-
|
|
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: ../
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: ../
|
508 |
-
|
509 |
-
#: ../modules/separator/separator.php:16
|
510 |
-
msgid "Basic Modules"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../
|
514 |
-
|
|
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../
|
518 |
-
msgid "
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../
|
522 |
-
msgid "
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../
|
526 |
-
msgid "
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../
|
530 |
-
msgid "
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../
|
534 |
-
msgid "
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../
|
538 |
-
|
539 |
-
msgid "Name"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../
|
543 |
-
msgid "
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: ../
|
547 |
-
msgid "
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: ../
|
551 |
-
msgid "
|
|
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: ../
|
555 |
-
msgid "
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: ../
|
559 |
-
msgid "
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: ../
|
563 |
-
msgid "
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: ../
|
567 |
-
msgid "
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: ../
|
571 |
-
msgid "
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: ../
|
575 |
-
msgid ""
|
576 |
-
"This setting is the minimum height of the content slider. Content will "
|
577 |
-
"expand the height automatically."
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: ../
|
581 |
-
|
582 |
-
#: ../modules/slideshow/slideshow.php:365
|
583 |
-
msgid "Auto Play"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: ../
|
587 |
-
msgid "
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: ../
|
591 |
-
|
592 |
-
#: ../includes/module-settings.php:86
|
593 |
-
msgid "Delay"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: ../
|
597 |
-
|
598 |
-
#: ../modules/testimonials/testimonials.php:91
|
599 |
-
#: ../modules/testimonials/testimonials.php:108
|
600 |
-
msgid "Seconds"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../
|
604 |
-
|
605 |
-
#: ../modules/slideshow/slideshow.php:381 ../includes/row-settings.php:222
|
606 |
-
msgid "Transition"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../
|
610 |
-
|
611 |
-
#: ../modules/slideshow/slideshow.php:399 ../includes/row-settings.php:240
|
612 |
-
msgid "Transition Speed"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: ../
|
616 |
-
|
617 |
-
|
|
|
|
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: ../
|
621 |
-
#: ../
|
622 |
-
|
|
|
|
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../
|
626 |
-
|
627 |
-
|
628 |
-
|
|
|
|
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: ../
|
632 |
-
|
|
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: ../
|
636 |
-
msgid "
|
|
|
|
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: ../
|
640 |
-
msgid "
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: ../
|
644 |
-
|
|
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: ../
|
648 |
-
msgid "
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: ../
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../
|
656 |
-
|
657 |
-
|
658 |
-
|
|
|
|
|
|
|
|
|
|
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../
|
666 |
-
#: ../modules/content-slider/content-slider.php:
|
667 |
-
#: ../modules/content-slider/content-slider.php:
|
668 |
-
|
669 |
-
#: ../modules/callout/callout.php:448 ../modules/slideshow/slideshow.php:336
|
670 |
-
#: ../includes/row-settings.php:56 ../includes/row-settings.php:280
|
671 |
-
#: ../includes/column-settings.php:55
|
672 |
-
msgid "Type"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: ../
|
676 |
-
|
|
|
|
|
|
|
|
|
|
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: ../
|
680 |
-
#: ../
|
681 |
-
#: ../
|
682 |
-
#: ../
|
683 |
-
#: ../modules/
|
684 |
-
#: ../modules/
|
685 |
-
#: ../
|
686 |
-
msgid "
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../
|
690 |
-
#: ../modules/
|
691 |
-
#: ../
|
692 |
-
|
|
|
|
|
|
|
|
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../
|
696 |
-
#: ../
|
697 |
-
#: ../modules/
|
698 |
-
|
699 |
-
#: ../includes/row-settings.php:97 ../includes/row-settings.php:310
|
700 |
-
#: ../includes/column-settings.php:27 ../includes/column-settings.php:37
|
701 |
-
#: ../includes/column-settings.php:85
|
702 |
-
msgid "Color"
|
703 |
msgstr ""
|
704 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
705 |
#: ../modules/content-slider/content-slider.php:331
|
706 |
#: ../modules/content-slider/content-slider.php:378
|
707 |
-
#: ../modules/content-slider/content-slider.php:
|
708 |
-
#: ../modules/
|
709 |
-
#: ../modules/
|
710 |
-
#: ../modules/
|
711 |
-
#: ../modules/slideshow/slideshow.php:
|
712 |
-
#: ../modules/slideshow/slideshow.php:
|
713 |
-
#: ../includes/row-settings.php:59 ../includes/row-settings.php:122
|
714 |
-
#: ../includes/row-settings.php:161 ../includes/row-settings.php:225
|
715 |
-
#: ../includes/row-settings.php:284 ../includes/column-settings.php:59
|
716 |
-
#: ../includes/module-settings.php:76
|
717 |
msgid "None"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../
|
721 |
-
#: ../
|
722 |
-
msgid "
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../
|
726 |
-
|
|
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../
|
730 |
-
|
|
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
734 |
msgid ""
|
735 |
-
"
|
736 |
-
"selection above. The location of the content layout can be selected in the "
|
737 |
-
"style tab."
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: ../
|
741 |
-
|
|
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: ../
|
745 |
-
|
|
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: ../
|
749 |
-
|
|
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: ../
|
753 |
-
#: ../
|
754 |
-
|
755 |
-
#: ../modules/testimonials/testimonials.php:56
|
756 |
-
#: ../modules/testimonials/testimonials.php:61
|
757 |
-
#: ../modules/heading/heading.php:14 ../modules/heading/heading.php:33
|
758 |
-
msgid "Heading"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../
|
762 |
-
|
763 |
-
|
|
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: ../
|
767 |
-
#: ../
|
768 |
-
#: ../
|
769 |
-
|
770 |
-
msgid "Heading Size"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../
|
774 |
-
#: ../
|
775 |
-
#: ../
|
776 |
-
|
777 |
-
msgid "Default"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../
|
781 |
-
|
|
|
|
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: ../
|
785 |
-
#: ../
|
786 |
-
#: ../includes/row-settings.php:
|
787 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
791 |
msgid ""
|
792 |
-
"
|
793 |
-
"
|
|
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../
|
797 |
-
|
798 |
-
#: ../includes/column-settings.php:16
|
799 |
-
msgid "%"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../
|
803 |
-
msgid "
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../
|
807 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: ../
|
811 |
-
msgid "
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: ../
|
815 |
-
msgid "
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: ../
|
819 |
-
msgid "
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: ../
|
823 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: ../
|
827 |
-
#: ../modules/content-slider/content-slider.php:
|
828 |
-
|
|
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../
|
832 |
-
msgid ""
|
833 |
-
"The color applies to the overlay behind text over the background selections."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../
|
837 |
-
msgid "
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../
|
841 |
-
|
|
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: ../
|
845 |
-
msgid ""
|
846 |
-
"Auto will allow the overlay to fit however long the text content is. 100% "
|
847 |
-
"will fit the overlay to the top and bottom of the slide."
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../
|
851 |
-
|
852 |
-
msgid "Call To Action"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: ../
|
856 |
-
msgid ""
|
857 |
-
"The link applies to the entire slide. If choosing a call to action type "
|
858 |
-
"below, this link will also be used for the text or button."
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: ../
|
862 |
-
|
863 |
-
msgid "Call to Action"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../
|
867 |
-
|
868 |
-
|
|
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: ../
|
872 |
-
|
873 |
-
msgid "Button Structure"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: ../
|
877 |
-
msgid "
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../
|
881 |
-
msgid "
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: ../
|
885 |
-
msgid "
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: ../
|
889 |
-
msgid ""
|
890 |
-
"You can choose a different photo that the slide will change to on mobile "
|
891 |
-
"devices or no photo if desired."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../
|
895 |
-
msgid "
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../
|
899 |
-
msgid "
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: ../
|
903 |
-
msgid "
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: ../
|
907 |
-
msgid "
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: ../
|
911 |
-
msgid "
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: ../
|
915 |
-
msgid "
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: ../
|
919 |
-
|
920 |
-
#: ../modules/gallery/gallery.php:216
|
921 |
-
msgid "Layout"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: ../
|
925 |
-
msgid "
|
|
|
|
|
|
|
|
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: ../
|
929 |
-
msgid "
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: ../
|
933 |
-
|
934 |
-
msgid "Multiple Products"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: ../
|
938 |
-
msgid "
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: ../
|
942 |
-
msgid "
|
|
|
|
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: ../
|
946 |
-
msgid "
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: ../
|
950 |
-
msgid "
|
|
|
|
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: ../
|
954 |
-
msgid "
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: ../
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: ../
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: ../modules/
|
966 |
-
|
|
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: ../modules/
|
970 |
-
|
|
|
|
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: ../modules/
|
974 |
-
|
|
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: ../modules/
|
978 |
-
|
|
|
|
|
|
|
|
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: ../modules/
|
982 |
-
|
|
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: ../modules/
|
986 |
-
|
|
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: ../
|
990 |
-
|
991 |
-
|
992 |
-
"a unique ID. You can find this unique product ID by visiting the Products "
|
993 |
-
"area and rolling over the product. The unique ID will be the first attribute."
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: ../
|
997 |
-
|
|
|
|
|
|
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: ../
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
"in your browser. The ID will be the only number value in the URL."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: ../modules/
|
1009 |
-
|
1010 |
-
msgid "Columns"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: ../modules/
|
1014 |
-
|
1015 |
-
msgid "1"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: ../modules/
|
1019 |
-
|
1020 |
-
msgid "2"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: ../modules/
|
1024 |
-
|
1025 |
-
msgid "3"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: ../modules/
|
1029 |
-
|
1030 |
-
msgid "4"
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: ../modules/
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: ../modules/
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: ../modules/
|
1042 |
-
msgid "
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: ../modules/
|
1046 |
-
msgid "
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: ../modules/
|
1050 |
-
msgid "
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: ../
|
1054 |
-
|
|
|
|
|
|
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: ../modules/
|
1058 |
-
msgid "
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: ../
|
1062 |
-
msgid "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: ../
|
1066 |
-
msgid "
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: ../
|
1070 |
-
msgid ""
|
1071 |
-
"As you add products in the WooCommerce Products area, each will be assigned "
|
1072 |
-
"a unique ID. You can find this unique product ID by visiting the Products "
|
1073 |
-
"area and rolling over the product. The unique ID will be the first attribute "
|
1074 |
-
"and you can add several here separated by a comma."
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: ../
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: ../
|
1082 |
msgid ""
|
1083 |
-
"
|
1084 |
-
"
|
1085 |
-
"found in the Categories area under WooCommerce Products. Several can be "
|
1086 |
-
"added here separated by a comma."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: ../
|
1090 |
-
msgid "
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: ../
|
1094 |
-
msgid "
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: ../
|
1098 |
-
msgid "
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: ../
|
1102 |
-
msgid "
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: ../
|
1106 |
-
msgid "
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: ../
|
1110 |
-
msgid "
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: ../
|
1114 |
-
msgid "
|
|
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: ../
|
1118 |
-
msgid "
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: ../
|
1122 |
-
msgid "
|
|
|
|
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: ../
|
1126 |
-
msgid "
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: ../
|
1130 |
-
msgid "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: ../
|
1134 |
-
msgid ""
|
1135 |
-
"The Target URL field correlates to the page you would like your social icons "
|
1136 |
-
"to interface with. For example, if you show Facebook, the user will \"Like\" "
|
1137 |
-
"whatever you put in this field."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: ../
|
1141 |
-
msgid "
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../
|
1145 |
-
msgid "
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../
|
1149 |
-
msgid "
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: ../
|
1153 |
-
msgid "
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: ../
|
1157 |
-
|
1158 |
-
msgid "Sidebar"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: ../
|
1162 |
-
msgid ""
|
1163 |
-
"Display a WordPress sidebar that has been registered by the current theme."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: ../
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: ../
|
1171 |
-
msgid "
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: ../
|
1175 |
-
msgid "
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: ../
|
1179 |
-
|
1180 |
-
msgid "Hover Color"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: ../
|
1184 |
-
|
1185 |
-
msgid "Size"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: ../
|
1189 |
-
msgid "
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: ../
|
1193 |
-
msgid "
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: ../
|
1197 |
-
msgid "
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: ../
|
1201 |
-
msgid "
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: ../
|
1205 |
-
msgid "
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: ../
|
1209 |
-
msgid "
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: ../
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: ../
|
1217 |
-
msgid "
|
|
|
|
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: ../
|
1221 |
-
msgid "
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: ../
|
1225 |
-
msgid "
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: ../
|
1229 |
-
msgid "
|
|
|
|
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: ../modules/
|
1233 |
-
|
1234 |
-
#: ../includes/row-settings.php:192
|
1235 |
-
msgid "Media Library"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: ../modules/
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: ../modules/
|
1243 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: ../modules/
|
1247 |
-
msgid "
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: ../modules/
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: ../modules/
|
1255 |
-
msgid "
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: ../modules/
|
1259 |
-
msgid "
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: ../modules/
|
1263 |
-
msgid "
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: ../modules/
|
1267 |
-
msgid "
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: ../modules/
|
1271 |
-
msgid "
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: ../modules/
|
1275 |
-
msgid "
|
|
|
|
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: ../modules/
|
1279 |
-
msgid "
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: ../modules/
|
1283 |
-
msgid "
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: ../modules/
|
1287 |
-
|
|
|
|
|
|
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: ../modules/callout/callout.php:
|
1291 |
-
|
|
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: ../modules/
|
1295 |
-
msgid "
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../modules/
|
1299 |
-
|
1300 |
-
msgid "Crop"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: ../modules/
|
1304 |
-
|
|
|
|
|
|
|
|
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: ../modules/
|
1308 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: ../modules/
|
1312 |
-
|
|
|
|
|
|
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: ../modules/
|
1316 |
-
|
|
|
|
|
|
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: ../modules/
|
1320 |
-
|
|
|
|
|
|
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: ../modules/
|
1324 |
-
|
|
|
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: ../modules/
|
1328 |
-
|
|
|
|
|
|
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: ../modules/
|
1332 |
-
|
|
|
|
|
|
|
|
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: ../modules/callout/callout.php:
|
1336 |
-
|
|
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: ../modules/callout/callout.php:
|
1340 |
-
|
|
|
|
|
|
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: ../modules/callout/callout.php:
|
1344 |
-
|
|
|
|
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: ../modules/callout/callout.php:
|
1348 |
-
|
|
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: ../modules/callout/callout.php:
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
|
|
|
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: ../modules/
|
1358 |
-
msgid "
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: ../modules/
|
1362 |
-
#: ../modules/
|
1363 |
-
|
|
|
|
|
|
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: ../modules/
|
1367 |
-
|
|
|
|
|
|
|
|
|
|
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: ../modules/
|
1371 |
-
|
|
|
|
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: ../modules/
|
1375 |
-
|
|
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: ../modules/
|
1379 |
-
msgid "
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: ../modules/
|
1383 |
-
msgid "
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: ../modules/
|
1387 |
-
|
|
|
|
|
|
|
|
|
|
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: ../modules/
|
1391 |
-
msgid "
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: ../modules/
|
1395 |
-
msgid "
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: ../modules/
|
1399 |
-
msgid "
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: ../modules/
|
1403 |
-
|
|
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: ../modules/
|
1407 |
-
|
|
|
|
|
|
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: ../modules/
|
1411 |
-
|
|
|
|
|
|
|
|
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: ../modules/
|
1415 |
-
msgid "
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: ../modules/
|
1419 |
-
msgid "
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: ../modules/
|
1423 |
-
|
|
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: ../modules/
|
1427 |
-
msgid "
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: ../modules/
|
1431 |
-
msgid "
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: ../modules/photo/photo.php:
|
1435 |
-
msgid "
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: ../modules/photo/photo.php:
|
1439 |
-
msgid "
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: ../modules/photo/photo.php:
|
1443 |
-
msgid "
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: ../modules/
|
1447 |
-
msgid "
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: ../modules/
|
1451 |
-
msgid ""
|
1452 |
-
"Link type applies to how the image should be linked on click. You can choose "
|
1453 |
-
"a specific URL, the individual photo or a separate page with the photo."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: ../modules/
|
1457 |
-
msgid "
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: ../modules/
|
1461 |
-
msgid "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: ../modules/
|
1465 |
-
msgid "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: ../modules/
|
1469 |
-
|
1470 |
-
msgid "Source"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: ../modules/
|
1474 |
-
|
1475 |
-
msgid "SmugMug"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: ../modules/
|
1479 |
-
#: ../
|
1480 |
-
msgid ""
|
1481 |
-
"Pull images from the WordPress media library or a gallery on your SmugMug "
|
1482 |
-
"site by inserting the RSS feed URL from SmugMug. The RSS feed URL can be "
|
1483 |
-
"accessed by using the get a link function in your SmugMug gallery."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: ../modules/
|
1487 |
-
|
1488 |
-
msgid "Photos"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: ../modules/
|
1492 |
-
#: ../
|
1493 |
-
msgid "
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: ../modules/
|
1497 |
-
#: ../
|
1498 |
-
msgid "
|
1499 |
msgstr ""
|
1500 |
|
1501 |
-
#: ../modules/
|
1502 |
-
msgid "
|
|
|
|
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: ../modules/
|
1506 |
-
|
|
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: ../modules/
|
1510 |
-
|
|
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: ../modules/
|
1514 |
-
|
1515 |
-
"
|
1516 |
-
"buttons in a darker color scheme and vice versa for dark."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: ../modules/
|
1520 |
-
msgid ""
|
1521 |
-
"Crop set to no will fit the slideshow images to the height you specify and "
|
1522 |
-
"keep the width proportional, whereas crop set to yes will fit the slideshow "
|
1523 |
-
"images to all sides of the content area while cropping the left and right to "
|
1524 |
-
"fit the height you specify."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: ../modules/
|
1528 |
-
msgid "
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: ../modules/
|
1532 |
-
msgid "
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: ../modules/
|
1536 |
-
msgid "
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: ../modules/
|
1540 |
-
|
1541 |
-
msgid "Speed"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: ../modules/
|
1545 |
-
|
1546 |
-
#: ../modules/slideshow/slideshow.php:570 ../includes/row-settings.php:218
|
1547 |
-
#: ../includes/row-settings.php:243
|
1548 |
-
msgid "seconds"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: ../modules/
|
1552 |
-
msgid "
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: ../modules/
|
1556 |
-
msgid "
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: ../modules/
|
1560 |
-
msgid "
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: ../modules/
|
1564 |
-
msgid "
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: ../modules/
|
1568 |
-
msgid "
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: ../modules/
|
1572 |
-
msgid "
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: ../modules/
|
1576 |
-
msgid "
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: ../modules/
|
1580 |
-
msgid "
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: ../modules/
|
1584 |
-
msgid "
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: ../modules/
|
1588 |
-
|
|
|
|
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: ../modules/
|
1592 |
-
msgid "
|
|
|
|
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: ../modules/
|
1596 |
-
|
|
|
|
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: ../modules/
|
1600 |
-
|
1601 |
-
msgid "Navigation Arrows"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: ../modules/
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: ../modules/
|
1612 |
-
|
|
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: ../modules/
|
1616 |
-
|
|
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: ../modules/
|
1620 |
-
msgid "
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: ../modules/
|
1624 |
-
|
1625 |
-
msgid "Thumbs"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: ../modules/
|
1629 |
-
msgid "
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: ../modules/
|
1633 |
-
|
1634 |
-
#: ../includes/column-settings.php:214 ../includes/module-settings.php:42
|
1635 |
-
msgid "Bottom"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: ../modules/
|
1639 |
-
|
1640 |
-
#: ../includes/column-settings.php:205 ../includes/module-settings.php:33
|
1641 |
-
msgid "Top"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: ../modules/
|
1645 |
-
msgid "
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: ../modules/
|
1649 |
-
msgid "
|
|
|
|
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: ../modules/
|
1653 |
-
msgid "
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: ../modules/
|
1657 |
-
msgid "
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: ../modules/
|
1661 |
-
msgid "
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: ../modules/
|
1665 |
-
msgid "
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: ../modules/
|
1669 |
-
msgid "
|
|
|
|
|
|
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#: ../modules/
|
1673 |
-
msgid "
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: ../modules/
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: ../modules/
|
1681 |
-
msgid ""
|
1682 |
-
"Control bar overlay specifies if the control bar buttons you choose overlay "
|
1683 |
-
"your slideshow images or site below the slideshow completely."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: ../modules/
|
1687 |
-
msgid "
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: ../modules/
|
1691 |
msgid ""
|
1692 |
-
"
|
1693 |
-
"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: ../modules/
|
1697 |
-
msgid "
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: ../modules/
|
1701 |
-
msgid "
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: ../modules/
|
1705 |
-
msgid "
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: ../modules/
|
1709 |
-
msgid "
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: ../modules/
|
1713 |
-
msgid "
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: ../modules/
|
1717 |
-
msgid "
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: ../modules/
|
1721 |
-
|
|
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: ../modules/
|
1725 |
-
msgid "
|
|
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: ../modules/
|
1729 |
-
msgid "
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: ../modules/
|
1733 |
-
msgid "
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: ../modules/
|
1737 |
-
msgid "
|
|
|
|
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: ../modules/
|
1741 |
-
msgid "
|
|
|
|
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: ../modules/
|
1745 |
-
msgid "
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: ../modules/
|
1749 |
-
msgid "
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: ../modules/
|
1753 |
-
msgid "
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#: ../modules/
|
1757 |
-
msgid "
|
|
|
|
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: ../modules/
|
1761 |
-
msgid "
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: ../modules/
|
1765 |
-
msgid "
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#: ../modules/
|
1769 |
-
msgid "
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#: ../modules/
|
1773 |
-
msgid "
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#: ../modules/
|
1777 |
-
msgid "
|
1778 |
msgstr ""
|
1779 |
|
1780 |
-
#: ../modules/
|
1781 |
-
msgid "
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: ../modules/
|
1785 |
-
msgid "
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: ../modules/
|
1789 |
-
|
|
|
|
|
|
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: ../modules/
|
1793 |
-
msgid "
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: ../modules/
|
1797 |
-
msgid "
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: ../modules/
|
1801 |
-
msgid ""
|
1802 |
-
"The caption pulls from whatever text you put in the caption area in the "
|
1803 |
-
"media manager for each image. The caption is also pulled directly from "
|
1804 |
-
"SmugMug if you have captions set in your gallery."
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: ../modules/
|
1808 |
-
msgid "
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: ../modules/
|
1812 |
-
msgid "
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: ../modules/
|
1816 |
-
msgid "
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: ../modules/
|
1820 |
-
msgid "Display
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: ../modules/
|
1824 |
-
msgid "
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: ../modules/
|
1828 |
-
|
|
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: ../modules/
|
1832 |
-
msgid "
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: ../modules/
|
1836 |
-
msgid "
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: ../modules/
|
1840 |
-
msgid "
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: ../modules/
|
1844 |
-
msgid "
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: ../modules/
|
1848 |
-
msgid "
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: ../modules/
|
1852 |
-
msgid "
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: ../modules/
|
1856 |
-
msgid "
|
|
|
|
|
|
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: ../modules/
|
1860 |
-
msgid "
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: ../modules/
|
1864 |
-
|
1865 |
-
#: ../includes/column-settings.php:90
|
1866 |
-
msgid "Opacity"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: ../modules/
|
1870 |
-
|
1871 |
-
msgid "Solid"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: ../modules/
|
1875 |
-
|
1876 |
-
msgid "Dashed"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: ../modules/
|
1880 |
-
#: ../
|
1881 |
-
|
|
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: ../modules/
|
1885 |
-
|
1886 |
-
msgid "Double"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: ../modules/
|
1890 |
-
msgid ""
|
1891 |
-
"The type of border to use. Double borders must have a height of at least 3px "
|
1892 |
-
"to render properly."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: ../
|
1896 |
-
msgid "
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: ../
|
1900 |
-
msgid ""
|
1901 |
-
"Save the current layout as a template that can be reused under Tools > "
|
1902 |
-
"Manage Templates."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: ../
|
1906 |
-
msgid "
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: ../
|
1910 |
-
|
1911 |
-
msgid "Cancel"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: ../
|
1915 |
-
msgid "
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: ../
|
1919 |
-
msgid ""
|
1920 |
-
"Warning! Changing the template will replace your existing layout. Do you "
|
1921 |
-
"really want to do this?"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: ../
|
1925 |
-
msgid "
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: ../
|
1929 |
-
msgid "
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: ../
|
1933 |
-
msgid ""
|
1934 |
-
"Please select either a background layout or content layout before submitting."
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: ../
|
1938 |
-
msgid "
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: ../
|
1942 |
-
msgid ""
|
1943 |
-
"Do you really want to delete this module? All content data will be "
|
1944 |
-
"permanently deleted."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: ../
|
1948 |
-
msgid ""
|
1949 |
-
"Do you really want to delete this row? All content data will be permanently "
|
1950 |
-
"deleted."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: ../
|
1954 |
-
msgid "
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: ../
|
1958 |
-
msgid "
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: ../
|
1962 |
-
msgid ""
|
1963 |
-
"Do you really want to discard this draft? All of your changes that are not "
|
1964 |
-
"published will be lost."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: ../
|
1968 |
-
msgid "
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: ../
|
1972 |
-
msgid "
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: ../
|
1976 |
-
msgid "
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: ../
|
1980 |
-
msgid "
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: ../
|
1984 |
-
msgid "
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: ../
|
1988 |
-
msgid "
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: ../
|
1992 |
-
msgid "
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: ../
|
1996 |
-
msgid "
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: ../
|
2000 |
-
msgid "
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: ../
|
2004 |
-
msgid "
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: ../
|
2008 |
-
msgid "
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: ../
|
2012 |
-
msgid "
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: ../
|
2016 |
-
msgid "
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: ../
|
2020 |
-
msgid "
|
|
|
|
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: ../
|
2024 |
-
msgid "
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: ../includes/
|
2028 |
-
msgid "
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: ../
|
2032 |
-
|
|
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: ../includes/
|
2036 |
-
|
|
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: ../
|
2040 |
-
msgid "
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: ../
|
2044 |
-
msgid "
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: ../
|
2048 |
-
msgid "
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: ../
|
2052 |
-
msgid "
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: ../
|
2056 |
-
msgid "
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: ../
|
2060 |
-
msgid "
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: ../
|
2064 |
-
msgid "
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: ../
|
2068 |
-
msgid "
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: ../
|
2072 |
-
msgid "
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: ../
|
2076 |
-
msgid ""
|
2077 |
-
"The settings you are currently editing will not be saved if you navigate "
|
2078 |
-
"away from this page."
|
2079 |
msgstr ""
|
2080 |
|
2081 |
-
#: ../
|
2082 |
-
|
2083 |
-
msgid "Edit"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: ../
|
2087 |
-
|
|
|
|
|
|
|
|
|
|
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: ../
|
2091 |
-
msgid "
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: ../
|
2095 |
-
msgid "
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: ../
|
2099 |
-
msgid "
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: ../
|
2103 |
-
msgid "
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: ../
|
2107 |
-
msgid "
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: ../
|
2111 |
-
msgid "
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: ../
|
2115 |
-
msgid "
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: ../
|
2119 |
-
msgid "
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: ../
|
2123 |
-
msgid "
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: ../
|
2127 |
-
msgid "
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: ../
|
2131 |
-
msgid "
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: ../
|
2135 |
-
|
|
|
|
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: ../
|
2139 |
-
|
|
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: ../
|
2143 |
-
msgid "
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: ../
|
2147 |
-
msgid "
|
|
|
|
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: ../
|
2151 |
-
msgid "
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: ../
|
2155 |
-
msgid "
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: ../
|
2159 |
-
msgid "
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: ../
|
2163 |
-
msgid "
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: ../
|
2167 |
-
msgid "
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: ../
|
2171 |
-
msgid "
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: ../
|
2175 |
-
msgid "
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: ../
|
2179 |
-
msgid "
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: ../
|
2183 |
-
msgid "
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: ../
|
2187 |
-
|
2188 |
-
msgid "Fixed"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: ../
|
2192 |
-
msgid ""
|
2193 |
-
"Full width rows span the width of the page from edge to edge. Fixed rows are "
|
2194 |
-
"no wider than the Row Max Width set in the Global Settings."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: ../
|
2198 |
-
msgid "
|
2199 |
msgstr ""
|
2200 |
|
2201 |
-
#: ../
|
2202 |
-
msgid ""
|
2203 |
-
"Full width content spans the width of the page from edge to edge. Fixed "
|
2204 |
-
"content is no wider than the Row Max Width set in the Global Settings."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: ../
|
2208 |
-
msgid "
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: ../
|
2212 |
-
msgid "
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: ../
|
2216 |
-
msgid "
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: ../
|
2220 |
-
msgid "
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: ../
|
2224 |
-
msgid "
|
|
|
|
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: ../includes/
|
2228 |
-
|
|
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: ../
|
2232 |
msgid ""
|
2233 |
-
"
|
2234 |
-
"Choosing none will display the image as uploaded. Tile will repeat the image "
|
2235 |
-
"as many times as needed to fill the row horizontally and vertically. You can "
|
2236 |
-
"also specify the image to only repeat horizontally or vertically."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: ../
|
2240 |
-
msgid "
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: ../
|
2244 |
-
msgid "
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: ../
|
2248 |
-
msgid "
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: ../
|
2252 |
-
msgid "
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: ../
|
2256 |
-
msgid "
|
|
|
|
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: ../
|
2260 |
-
msgid "
|
|
|
|
|
|
|
|
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: ../
|
2264 |
-
msgid "
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: ../
|
2268 |
-
msgid "
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: ../
|
2272 |
-
msgid "
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: ../
|
2276 |
-
|
|
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: ../
|
2280 |
-
msgid "
|
|
|
|
|
|
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: ../
|
2284 |
-
msgid "
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: ../
|
2288 |
-
msgid ""
|
2289 |
-
"Attachment will specify how the image reacts when scrolling a page. When "
|
2290 |
-
"scrolling is selected, the image will scroll with page scrolling. This is "
|
2291 |
-
"the default setting. Fixed will allow the image to scroll within the row "
|
2292 |
-
"background if fill is selected in the scale setting."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: ../
|
2296 |
-
msgid "
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: ../
|
2300 |
-
msgid "
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: ../
|
2304 |
-
msgid "
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: ../
|
2308 |
-
msgid ""
|
2309 |
-
|
2310 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: ../
|
2314 |
-
msgid "
|
2315 |
msgstr ""
|
2316 |
|
2317 |
-
#: ../
|
2318 |
-
msgid ""
|
2319 |
-
"An HTML5 video to use as the background of this row. Supported types are "
|
2320 |
-
"MP4, WebM and Ogg."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: ../
|
2324 |
-
msgid "
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: ../
|
2328 |
-
msgid "
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: ../
|
2332 |
-
msgid "
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: ../
|
2336 |
-
msgid "
|
|
|
|
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: ../
|
2340 |
-
msgid "
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: ../
|
2344 |
-
msgid "
|
|
|
|
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: ../
|
2348 |
-
msgid "
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: ../
|
2352 |
-
msgid ""
|
2353 |
-
"The type of border to use. Double borders must have a width of at least 3px "
|
2354 |
-
"to render properly."
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: ../
|
2358 |
-
msgid "
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: ../
|
2362 |
-
msgid "
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#: ../
|
2366 |
-
msgid "
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: ../
|
2370 |
-
msgid "
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: ../
|
2374 |
-
|
2375 |
-
msgid "CSS Class"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: ../
|
2379 |
-
msgid "
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: ../
|
2383 |
-
|
2384 |
-
msgid "Always"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: ../
|
2388 |
-
|
2389 |
-
msgid "Desktop Only"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#: ../
|
2393 |
-
|
2394 |
-
msgid "Mobile Only"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: ../
|
2398 |
msgid ""
|
2399 |
-
"
|
2400 |
-
"
|
|
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: ../
|
2404 |
-
|
2405 |
-
#: ../includes/module-settings.php:29
|
2406 |
-
msgid "Margins"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: ../
|
2410 |
-
msgid "
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: ../
|
2414 |
-
msgid ""
|
2415 |
-
"A custom CSS class that will be applied to this column. Spaces only, no dots."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: ../
|
2419 |
-
msgid ""
|
2420 |
-
"Choose whether to always show this column, only show it on the desktop view "
|
2421 |
-
"or only show it on the mobile view."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
-
#: ../
|
2425 |
-
msgid "
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: ../
|
2429 |
-
msgid "
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: ../
|
2433 |
-
|
|
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: ../
|
2437 |
-
msgid "
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: ../
|
2441 |
-
msgid ""
|
2442 |
-
"You haven't saved any templates yet! To do so, create a layout and save it "
|
2443 |
-
"as a template under Tools > Save Template."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: ../
|
2447 |
-
msgid "
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: ../
|
2451 |
-
msgid "
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: ../
|
2455 |
-
msgid "
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: ../
|
2459 |
-
msgid "
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: ../
|
2463 |
-
msgid "
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: ../
|
2467 |
-
msgid "
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: ../
|
2471 |
-
msgid ""
|
2472 |
-
"These settings apply to all posts and pages where the builder is active."
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: ../
|
2476 |
-
msgid "
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: ../
|
2480 |
-
msgid "
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: ../
|
2484 |
-
msgid ""
|
2485 |
-
"Choosing no will hide the default theme heading for the \"Page\" post type. "
|
2486 |
-
"You will also be required to enter some basic CSS for this to work if you "
|
2487 |
-
"choose no."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: ../includes/
|
2491 |
-
|
|
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: ../
|
2495 |
-
msgid "
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: ../
|
2499 |
-
msgid "
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: ../
|
2503 |
-
msgid "
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: ../
|
2507 |
-
msgid ""
|
2508 |
-
"All rows will default to this width. You can override this and make a row "
|
2509 |
-
"full width in the settings for each row."
|
2510 |
msgstr ""
|
2511 |
|
2512 |
-
#: ../
|
2513 |
-
msgid "
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: ../
|
2517 |
-
msgid "
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: ../
|
2521 |
-
|
|
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: ../
|
2525 |
-
msgid "
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: ../
|
2529 |
-
msgid "
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: ../
|
2533 |
-
msgid "
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#: ../
|
2537 |
-
|
2538 |
-
msgid "Uninstall"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: ../
|
2542 |
-
msgid "
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#: ../
|
2546 |
-
msgid "
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#: ../
|
2550 |
-
msgid "
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: ../
|
2554 |
-
msgid "
|
|
|
|
|
|
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: ../
|
|
|
|
|
|
|
|
|
2558 |
msgid ""
|
2559 |
-
"
|
2560 |
-
"
|
2561 |
-
"
|
2562 |
-
"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: ../
|
2566 |
-
|
|
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: ../
|
2570 |
-
|
2571 |
-
|
2572 |
-
"\"_fl_builder_enabled\" in case you want to reinstall it later. If you do, "
|
2573 |
-
"the builder will rebuild all of its data using those meta values."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: ../
|
2577 |
-
|
|
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: ../
|
2581 |
-
|
2582 |
-
|
2583 |
-
"to uninstall the page builder and all of its data."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: ../
|
2587 |
-
|
|
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: ../
|
2591 |
-
msgid "
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: ../
|
2595 |
-
msgid ""
|
2596 |
-
"A custom CSS class that will be applied to this module. Spaces only, no dots."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: ../
|
2600 |
-
msgid ""
|
2601 |
-
"Choose whether to always show this module, only show it on the desktop view "
|
2602 |
-
"or only show it on the mobile view."
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: ../
|
2606 |
-
msgid "
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: ../
|
2610 |
-
msgid "
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: ../
|
2614 |
-
msgid "
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: ../
|
2618 |
-
msgid "
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: ../
|
2622 |
-
msgid "
|
2623 |
msgstr ""
|
2624 |
|
2625 |
-
#: ../
|
2626 |
-
msgid "
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#: ../
|
2630 |
-
msgid "
|
|
|
|
|
|
|
|
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#: ../
|
2634 |
-
msgid "
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: ../
|
2638 |
-
msgid "
|
|
|
|
|
|
|
|
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: ../
|
2642 |
-
msgid "
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: ../
|
2646 |
-
msgid "
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: ../
|
2650 |
-
msgid ""
|
2651 |
-
"Enter the email address you used to signup for <a href=\"http://themes."
|
2652 |
-
"fastlinemedia.com\" target=\"_blank\">FastLine Themes</a> to enable remote "
|
2653 |
-
"updates."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: ../
|
2657 |
-
msgid "
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: ../
|
2661 |
-
msgid "
|
|
|
|
|
|
|
|
|
2662 |
msgstr ""
|
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 & drop of rows or modules."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ../includes/admin-settings.php:235
|
391 |
+
msgid "Enable Drag & Drop"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ../includes/admin-settings.php:236
|
395 |
+
msgid "Disable Drag & 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 & 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 & 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 & Photo"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: ../modules/content-slider/content-slider.php:377
|
2159 |
+
msgid "Text & 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 ""
|
modules/photo/photo.php
CHANGED
@@ -467,9 +467,8 @@ FLBuilder::register_module('FLPhotoModule', array(
|
|
467 |
)
|
468 |
),
|
469 |
'link_url' => array(
|
470 |
-
'type' => '
|
471 |
'label' => __('Link URL', 'fl-builder'),
|
472 |
-
'placeholder' => 'http://www.example.com',
|
473 |
'preview' => array(
|
474 |
'type' => 'none'
|
475 |
)
|
467 |
)
|
468 |
),
|
469 |
'link_url' => array(
|
470 |
+
'type' => 'link',
|
471 |
'label' => __('Link URL', 'fl-builder'),
|
|
|
472 |
'preview' => array(
|
473 |
'type' => 'none'
|
474 |
)
|